calendar events features

This commit is contained in:
2025-09-26 16:01:49 +09:00
parent 86b5df6c10
commit 6f969dbd1a
9 changed files with 421 additions and 86 deletions

View File

@@ -0,0 +1,56 @@
{
"entries": [
{
"id": "uuid-1",
"date": "2025-09-10",
"type": "MENSTRUATION",
"mood": "GOOD",
"symptoms": ["CRAMPS", "FATIGUE"],
"notes": "День начала цикла",
"flow_intensity": 3,
"is_predicted": false
},
{
"id": "uuid-2",
"date": "2025-09-11",
"type": "MENSTRUATION",
"mood": "NEUTRAL",
"symptoms": ["CRAMPS"],
"notes": "",
"flow_intensity": 2,
"is_predicted": false
},
{
"id": "uuid-3",
"date": "2025-09-12",
"type": "MENSTRUATION",
"mood": "GOOD",
"symptoms": [],
"notes": "",
"flow_intensity": 1,
"is_predicted": false
},
{
"id": "uuid-4",
"date": "2025-10-08",
"type": "MENSTRUATION",
"is_predicted": true
},
{
"id": "uuid-5",
"date": "2025-09-24",
"type": "OVULATION",
"is_predicted": true
}
],
"cycle_info": {
"average_cycle_length": 28,
"average_period_length": 5,
"last_period_start": "2025-09-10",
"next_period_predicted": "2025-10-08",
"next_ovulation_predicted": "2025-09-24",
"fertile_window_start": "2025-09-21",
"fertile_window_end": "2025-09-25"
}
}