benji-sdk 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,2 +1,3684 @@
|
|
|
1
1
|
// This file is auto-generated by generate-method-metadata.mjs
|
|
2
|
-
export const methodMetadata = {
|
|
2
|
+
export const methodMetadata = {
|
|
3
|
+
"Mood.moodGet": {
|
|
4
|
+
"operationId": "mood-get",
|
|
5
|
+
"summary": "Get mood log",
|
|
6
|
+
"description": "Get a single mood log by ID",
|
|
7
|
+
"httpMethod": "POST",
|
|
8
|
+
"path": "/mood/get",
|
|
9
|
+
"exampleInput": {
|
|
10
|
+
"body": {
|
|
11
|
+
"id": "item_123"
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"Mood.moodList": {
|
|
16
|
+
"operationId": "mood-list",
|
|
17
|
+
"summary": "List mood logs",
|
|
18
|
+
"description": "List mood logs for a date range",
|
|
19
|
+
"httpMethod": "POST",
|
|
20
|
+
"path": "/mood/list",
|
|
21
|
+
"exampleInput": {
|
|
22
|
+
"body": {
|
|
23
|
+
"date": {
|
|
24
|
+
"year": 1,
|
|
25
|
+
"month": 1,
|
|
26
|
+
"day": 1
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
"Mood.moodGetForWidget": {
|
|
32
|
+
"operationId": "mood-getForWidget",
|
|
33
|
+
"summary": "Get mood widget data",
|
|
34
|
+
"description": "Get aggregated mood data for widgets",
|
|
35
|
+
"httpMethod": "POST",
|
|
36
|
+
"path": "/mood/widget",
|
|
37
|
+
"exampleInput": {
|
|
38
|
+
"body": {
|
|
39
|
+
"date": {
|
|
40
|
+
"year": 1,
|
|
41
|
+
"month": 1,
|
|
42
|
+
"day": 1
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
"Mood.moodCreate": {
|
|
48
|
+
"operationId": "mood-create",
|
|
49
|
+
"summary": "Create mood log",
|
|
50
|
+
"description": "Create a new mood log",
|
|
51
|
+
"httpMethod": "POST",
|
|
52
|
+
"path": "/mood",
|
|
53
|
+
"exampleInput": {
|
|
54
|
+
"body": {
|
|
55
|
+
"mood": 4
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
},
|
|
59
|
+
"Mood.moodUpdate": {
|
|
60
|
+
"operationId": "mood-update",
|
|
61
|
+
"summary": "Update mood log",
|
|
62
|
+
"description": "Update an existing mood log",
|
|
63
|
+
"httpMethod": "POST",
|
|
64
|
+
"path": "/mood/update",
|
|
65
|
+
"exampleInput": {
|
|
66
|
+
"body": {
|
|
67
|
+
"id": "item_123",
|
|
68
|
+
"data": {
|
|
69
|
+
"note": "Example",
|
|
70
|
+
"mood": 4
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
"Mood.moodDelete": {
|
|
76
|
+
"operationId": "mood-delete",
|
|
77
|
+
"summary": "Delete mood log",
|
|
78
|
+
"description": "Delete a mood log",
|
|
79
|
+
"httpMethod": "POST",
|
|
80
|
+
"path": "/mood/delete",
|
|
81
|
+
"exampleInput": {
|
|
82
|
+
"body": {
|
|
83
|
+
"id": "item_123"
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
"Mood.moodDeleteMany": {
|
|
88
|
+
"operationId": "mood-deleteMany",
|
|
89
|
+
"summary": "Delete multiple mood logs",
|
|
90
|
+
"description": "Delete multiple mood logs",
|
|
91
|
+
"httpMethod": "POST",
|
|
92
|
+
"path": "/mood/delete-many",
|
|
93
|
+
"exampleInput": {
|
|
94
|
+
"body": {
|
|
95
|
+
"ids": [
|
|
96
|
+
"item_123"
|
|
97
|
+
]
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
},
|
|
101
|
+
"Mood.moodDeleteAll": {
|
|
102
|
+
"operationId": "mood-deleteAll",
|
|
103
|
+
"summary": "Delete all mood logs",
|
|
104
|
+
"description": "Delete all mood logs for the user",
|
|
105
|
+
"httpMethod": "POST",
|
|
106
|
+
"path": "/mood/delete-all",
|
|
107
|
+
"exampleInput": {
|
|
108
|
+
"body": {}
|
|
109
|
+
}
|
|
110
|
+
},
|
|
111
|
+
"PainEvents.painEventsBodyParts": {
|
|
112
|
+
"operationId": "painEvents-bodyParts",
|
|
113
|
+
"summary": "List body parts",
|
|
114
|
+
"description": "List available pain event body parts",
|
|
115
|
+
"httpMethod": "POST",
|
|
116
|
+
"path": "/pain-events/body-parts/list"
|
|
117
|
+
},
|
|
118
|
+
"PainEvents.painEventsRecentBodyParts": {
|
|
119
|
+
"operationId": "painEvents-recentBodyParts",
|
|
120
|
+
"summary": "Recent body parts",
|
|
121
|
+
"description": "List recently used pain event body parts",
|
|
122
|
+
"httpMethod": "POST",
|
|
123
|
+
"path": "/pain-events/recent-body-parts"
|
|
124
|
+
},
|
|
125
|
+
"PainEvents.painEventsGet": {
|
|
126
|
+
"operationId": "painEvents-get",
|
|
127
|
+
"summary": "Get pain event",
|
|
128
|
+
"description": "Get a single pain event by ID",
|
|
129
|
+
"httpMethod": "POST",
|
|
130
|
+
"path": "/pain-events/get",
|
|
131
|
+
"exampleInput": {
|
|
132
|
+
"body": {
|
|
133
|
+
"id": "item_123"
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
},
|
|
137
|
+
"PainEvents.painEventsList": {
|
|
138
|
+
"operationId": "painEvents-list",
|
|
139
|
+
"summary": "List pain events",
|
|
140
|
+
"description": "List pain events for a date range",
|
|
141
|
+
"httpMethod": "POST",
|
|
142
|
+
"path": "/pain-events/list",
|
|
143
|
+
"exampleInput": {
|
|
144
|
+
"body": {
|
|
145
|
+
"date": {
|
|
146
|
+
"year": 1,
|
|
147
|
+
"month": 1,
|
|
148
|
+
"day": 1
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
},
|
|
153
|
+
"PainEvents.painEventsCreate": {
|
|
154
|
+
"operationId": "painEvents-create",
|
|
155
|
+
"summary": "Create pain event",
|
|
156
|
+
"description": "Create a new pain event",
|
|
157
|
+
"httpMethod": "POST",
|
|
158
|
+
"path": "/pain-events",
|
|
159
|
+
"exampleInput": {
|
|
160
|
+
"body": {
|
|
161
|
+
"date": {
|
|
162
|
+
"timezone": "Europe/Warsaw",
|
|
163
|
+
"dateInUsersTimezone": "2026-03-30"
|
|
164
|
+
},
|
|
165
|
+
"painLevel": 1,
|
|
166
|
+
"bodyPartId": "bodypart_123"
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
},
|
|
170
|
+
"PainEvents.painEventsUpdate": {
|
|
171
|
+
"operationId": "painEvents-update",
|
|
172
|
+
"summary": "Update pain event",
|
|
173
|
+
"description": "Update an existing pain event",
|
|
174
|
+
"httpMethod": "POST",
|
|
175
|
+
"path": "/pain-events/update",
|
|
176
|
+
"exampleInput": {
|
|
177
|
+
"body": {
|
|
178
|
+
"id": "item_123",
|
|
179
|
+
"data": {
|
|
180
|
+
"date": {
|
|
181
|
+
"timezone": "Europe/Warsaw",
|
|
182
|
+
"dateInUsersTimezone": "2026-03-30"
|
|
183
|
+
},
|
|
184
|
+
"painLevel": 1
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
},
|
|
189
|
+
"PainEvents.painEventsDelete": {
|
|
190
|
+
"operationId": "painEvents-delete",
|
|
191
|
+
"summary": "Delete pain event",
|
|
192
|
+
"description": "Delete a pain event",
|
|
193
|
+
"httpMethod": "POST",
|
|
194
|
+
"path": "/pain-events/delete",
|
|
195
|
+
"exampleInput": {
|
|
196
|
+
"body": {
|
|
197
|
+
"id": "item_123"
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
},
|
|
201
|
+
"PainEvents.painEventsDeleteMany": {
|
|
202
|
+
"operationId": "painEvents-deleteMany",
|
|
203
|
+
"summary": "Delete multiple pain events",
|
|
204
|
+
"description": "Delete multiple pain events",
|
|
205
|
+
"httpMethod": "POST",
|
|
206
|
+
"path": "/pain-events/delete-many",
|
|
207
|
+
"exampleInput": {
|
|
208
|
+
"body": {
|
|
209
|
+
"ids": [
|
|
210
|
+
"item_123"
|
|
211
|
+
]
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
},
|
|
215
|
+
"Trips.tripsGet": {
|
|
216
|
+
"operationId": "trips-get",
|
|
217
|
+
"summary": "Get trip",
|
|
218
|
+
"description": "Get a single trip by ID",
|
|
219
|
+
"httpMethod": "POST",
|
|
220
|
+
"path": "/trips/get",
|
|
221
|
+
"exampleInput": {
|
|
222
|
+
"body": {
|
|
223
|
+
"id": "item_123"
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
},
|
|
227
|
+
"Trips.tripsList": {
|
|
228
|
+
"operationId": "trips-list",
|
|
229
|
+
"summary": "List trips",
|
|
230
|
+
"description": "List trips for the current user",
|
|
231
|
+
"httpMethod": "POST",
|
|
232
|
+
"path": "/trips/list"
|
|
233
|
+
},
|
|
234
|
+
"Trips.tripsCreate": {
|
|
235
|
+
"operationId": "trips-create",
|
|
236
|
+
"summary": "Create trip",
|
|
237
|
+
"description": "Create a new trip",
|
|
238
|
+
"httpMethod": "POST",
|
|
239
|
+
"path": "/trips",
|
|
240
|
+
"exampleInput": {
|
|
241
|
+
"body": {
|
|
242
|
+
"name": "Example"
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
},
|
|
246
|
+
"Trips.tripsUpdate": {
|
|
247
|
+
"operationId": "trips-update",
|
|
248
|
+
"summary": "Update trip",
|
|
249
|
+
"description": "Update an existing trip",
|
|
250
|
+
"httpMethod": "POST",
|
|
251
|
+
"path": "/trips/update",
|
|
252
|
+
"exampleInput": {
|
|
253
|
+
"body": {
|
|
254
|
+
"id": "item_123",
|
|
255
|
+
"data": {
|
|
256
|
+
"name": "Example",
|
|
257
|
+
"transportMethod": "Other"
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
},
|
|
262
|
+
"Trips.tripsDelete": {
|
|
263
|
+
"operationId": "trips-delete",
|
|
264
|
+
"summary": "Delete trip",
|
|
265
|
+
"description": "Delete a trip",
|
|
266
|
+
"httpMethod": "POST",
|
|
267
|
+
"path": "/trips/delete",
|
|
268
|
+
"exampleInput": {
|
|
269
|
+
"body": {
|
|
270
|
+
"id": "item_123"
|
|
271
|
+
}
|
|
272
|
+
}
|
|
273
|
+
},
|
|
274
|
+
"Trips.tripsDeleteMany": {
|
|
275
|
+
"operationId": "trips-deleteMany",
|
|
276
|
+
"summary": "Delete multiple trips",
|
|
277
|
+
"description": "Delete multiple trips",
|
|
278
|
+
"httpMethod": "POST",
|
|
279
|
+
"path": "/trips/delete-many",
|
|
280
|
+
"exampleInput": {
|
|
281
|
+
"body": {
|
|
282
|
+
"ids": [
|
|
283
|
+
"item_123"
|
|
284
|
+
]
|
|
285
|
+
}
|
|
286
|
+
}
|
|
287
|
+
},
|
|
288
|
+
"PackingActivities.packingActivitiesGet": {
|
|
289
|
+
"operationId": "packingActivities-get",
|
|
290
|
+
"summary": "Get packing activity",
|
|
291
|
+
"description": "Get a single packing activity by ID",
|
|
292
|
+
"httpMethod": "POST",
|
|
293
|
+
"path": "/packing-activities/get",
|
|
294
|
+
"exampleInput": {
|
|
295
|
+
"body": {
|
|
296
|
+
"id": "item_123"
|
|
297
|
+
}
|
|
298
|
+
}
|
|
299
|
+
},
|
|
300
|
+
"PackingActivities.packingActivitiesList": {
|
|
301
|
+
"operationId": "packingActivities-list",
|
|
302
|
+
"summary": "List packing activities",
|
|
303
|
+
"description": "List packing activities for the current user",
|
|
304
|
+
"httpMethod": "POST",
|
|
305
|
+
"path": "/packing-activities/list"
|
|
306
|
+
},
|
|
307
|
+
"PackingActivities.packingActivitiesCreate": {
|
|
308
|
+
"operationId": "packingActivities-create",
|
|
309
|
+
"summary": "Create packing activity",
|
|
310
|
+
"description": "Create a new packing activity",
|
|
311
|
+
"httpMethod": "POST",
|
|
312
|
+
"path": "/packing-activities",
|
|
313
|
+
"exampleInput": {
|
|
314
|
+
"body": {
|
|
315
|
+
"name": "Example"
|
|
316
|
+
}
|
|
317
|
+
}
|
|
318
|
+
},
|
|
319
|
+
"PackingActivities.packingActivitiesUpdate": {
|
|
320
|
+
"operationId": "packingActivities-update",
|
|
321
|
+
"summary": "Update packing activity",
|
|
322
|
+
"description": "Update an existing packing activity",
|
|
323
|
+
"httpMethod": "POST",
|
|
324
|
+
"path": "/packing-activities/update",
|
|
325
|
+
"exampleInput": {
|
|
326
|
+
"body": {
|
|
327
|
+
"id": "item_123",
|
|
328
|
+
"data": {
|
|
329
|
+
"emoji": "string",
|
|
330
|
+
"name": "Example"
|
|
331
|
+
}
|
|
332
|
+
}
|
|
333
|
+
}
|
|
334
|
+
},
|
|
335
|
+
"PackingActivities.packingActivitiesDelete": {
|
|
336
|
+
"operationId": "packingActivities-delete",
|
|
337
|
+
"summary": "Delete packing activity",
|
|
338
|
+
"description": "Delete a packing activity",
|
|
339
|
+
"httpMethod": "POST",
|
|
340
|
+
"path": "/packing-activities/delete",
|
|
341
|
+
"exampleInput": {
|
|
342
|
+
"body": {
|
|
343
|
+
"id": "item_123"
|
|
344
|
+
}
|
|
345
|
+
}
|
|
346
|
+
},
|
|
347
|
+
"PackingActivities.packingActivitiesDeleteMany": {
|
|
348
|
+
"operationId": "packingActivities-deleteMany",
|
|
349
|
+
"summary": "Delete multiple packing activities",
|
|
350
|
+
"description": "Delete multiple packing activities",
|
|
351
|
+
"httpMethod": "POST",
|
|
352
|
+
"path": "/packing-activities/delete-many",
|
|
353
|
+
"exampleInput": {
|
|
354
|
+
"body": {
|
|
355
|
+
"ids": [
|
|
356
|
+
"item_123"
|
|
357
|
+
]
|
|
358
|
+
}
|
|
359
|
+
}
|
|
360
|
+
},
|
|
361
|
+
"PackingActivities.packingActivitiesExists": {
|
|
362
|
+
"operationId": "packingActivities-exists",
|
|
363
|
+
"summary": "Check packing activity exists",
|
|
364
|
+
"description": "Check whether a packing activity exists",
|
|
365
|
+
"httpMethod": "POST",
|
|
366
|
+
"path": "/packing-activities/exists",
|
|
367
|
+
"exampleInput": {
|
|
368
|
+
"body": {
|
|
369
|
+
"id": "item_123"
|
|
370
|
+
}
|
|
371
|
+
}
|
|
372
|
+
},
|
|
373
|
+
"PackingItems.packingItemsGet": {
|
|
374
|
+
"operationId": "packingItems-get",
|
|
375
|
+
"summary": "Get packing item",
|
|
376
|
+
"description": "Get a single packing item by ID",
|
|
377
|
+
"httpMethod": "POST",
|
|
378
|
+
"path": "/packing-items/get",
|
|
379
|
+
"exampleInput": {
|
|
380
|
+
"body": {
|
|
381
|
+
"id": "item_123"
|
|
382
|
+
}
|
|
383
|
+
}
|
|
384
|
+
},
|
|
385
|
+
"PackingItems.packingItemsList": {
|
|
386
|
+
"operationId": "packingItems-list",
|
|
387
|
+
"summary": "List packing items",
|
|
388
|
+
"description": "List packing items for the current user",
|
|
389
|
+
"httpMethod": "POST",
|
|
390
|
+
"path": "/packing-items/list",
|
|
391
|
+
"exampleInput": {
|
|
392
|
+
"body": {
|
|
393
|
+
"tripId": "trip_123",
|
|
394
|
+
"activityId": "activity_123"
|
|
395
|
+
}
|
|
396
|
+
}
|
|
397
|
+
},
|
|
398
|
+
"PackingItems.packingItemsCreate": {
|
|
399
|
+
"operationId": "packingItems-create",
|
|
400
|
+
"summary": "Create packing item",
|
|
401
|
+
"description": "Create a new packing item",
|
|
402
|
+
"httpMethod": "POST",
|
|
403
|
+
"path": "/packing-items",
|
|
404
|
+
"exampleInput": {
|
|
405
|
+
"body": {
|
|
406
|
+
"name": "Example"
|
|
407
|
+
}
|
|
408
|
+
}
|
|
409
|
+
},
|
|
410
|
+
"PackingItems.packingItemsUpdate": {
|
|
411
|
+
"operationId": "packingItems-update",
|
|
412
|
+
"summary": "Update packing item",
|
|
413
|
+
"description": "Update an existing packing item",
|
|
414
|
+
"httpMethod": "POST",
|
|
415
|
+
"path": "/packing-items/update",
|
|
416
|
+
"exampleInput": {
|
|
417
|
+
"body": {
|
|
418
|
+
"id": "item_123",
|
|
419
|
+
"data": {
|
|
420
|
+
"defaultQuantity": 1,
|
|
421
|
+
"quantityPerDay": true
|
|
422
|
+
}
|
|
423
|
+
}
|
|
424
|
+
}
|
|
425
|
+
},
|
|
426
|
+
"PackingItems.packingItemsDelete": {
|
|
427
|
+
"operationId": "packingItems-delete",
|
|
428
|
+
"summary": "Delete packing item",
|
|
429
|
+
"description": "Delete a packing item",
|
|
430
|
+
"httpMethod": "POST",
|
|
431
|
+
"path": "/packing-items/delete",
|
|
432
|
+
"exampleInput": {
|
|
433
|
+
"body": {
|
|
434
|
+
"id": "item_123"
|
|
435
|
+
}
|
|
436
|
+
}
|
|
437
|
+
},
|
|
438
|
+
"PackingItems.packingItemsDeleteMany": {
|
|
439
|
+
"operationId": "packingItems-deleteMany",
|
|
440
|
+
"summary": "Delete multiple packing items",
|
|
441
|
+
"description": "Delete multiple packing items",
|
|
442
|
+
"httpMethod": "POST",
|
|
443
|
+
"path": "/packing-items/delete-many",
|
|
444
|
+
"exampleInput": {
|
|
445
|
+
"body": {
|
|
446
|
+
"ids": [
|
|
447
|
+
"item_123"
|
|
448
|
+
]
|
|
449
|
+
}
|
|
450
|
+
}
|
|
451
|
+
},
|
|
452
|
+
"Transports.transportsGet": {
|
|
453
|
+
"operationId": "transports-get",
|
|
454
|
+
"summary": "Get transport",
|
|
455
|
+
"description": "Get a single transport by ID",
|
|
456
|
+
"httpMethod": "POST",
|
|
457
|
+
"path": "/transports/get",
|
|
458
|
+
"exampleInput": {
|
|
459
|
+
"body": {
|
|
460
|
+
"id": "item_123"
|
|
461
|
+
}
|
|
462
|
+
}
|
|
463
|
+
},
|
|
464
|
+
"Transports.transportsList": {
|
|
465
|
+
"operationId": "transports-list",
|
|
466
|
+
"summary": "List transports",
|
|
467
|
+
"description": "List transports for the current user",
|
|
468
|
+
"httpMethod": "POST",
|
|
469
|
+
"path": "/transports/list",
|
|
470
|
+
"exampleInput": {
|
|
471
|
+
"body": {
|
|
472
|
+
"onlyFuture": true
|
|
473
|
+
}
|
|
474
|
+
}
|
|
475
|
+
},
|
|
476
|
+
"Transports.transportsCreate": {
|
|
477
|
+
"operationId": "transports-create",
|
|
478
|
+
"summary": "Create transport",
|
|
479
|
+
"description": "Create a new transport",
|
|
480
|
+
"httpMethod": "POST",
|
|
481
|
+
"path": "/transports",
|
|
482
|
+
"exampleInput": {
|
|
483
|
+
"body": {
|
|
484
|
+
"name": "Example"
|
|
485
|
+
}
|
|
486
|
+
}
|
|
487
|
+
},
|
|
488
|
+
"Transports.transportsUpdate": {
|
|
489
|
+
"operationId": "transports-update",
|
|
490
|
+
"summary": "Update transport",
|
|
491
|
+
"description": "Update an existing transport",
|
|
492
|
+
"httpMethod": "POST",
|
|
493
|
+
"path": "/transports/update",
|
|
494
|
+
"exampleInput": {
|
|
495
|
+
"body": {
|
|
496
|
+
"id": "item_123",
|
|
497
|
+
"data": {
|
|
498
|
+
"type": "Plane",
|
|
499
|
+
"name": "Example"
|
|
500
|
+
}
|
|
501
|
+
}
|
|
502
|
+
}
|
|
503
|
+
},
|
|
504
|
+
"Transports.transportsDelete": {
|
|
505
|
+
"operationId": "transports-delete",
|
|
506
|
+
"summary": "Delete transport",
|
|
507
|
+
"description": "Delete a transport",
|
|
508
|
+
"httpMethod": "POST",
|
|
509
|
+
"path": "/transports/delete",
|
|
510
|
+
"exampleInput": {
|
|
511
|
+
"body": {
|
|
512
|
+
"id": "item_123"
|
|
513
|
+
}
|
|
514
|
+
}
|
|
515
|
+
},
|
|
516
|
+
"Transports.transportsDeleteMany": {
|
|
517
|
+
"operationId": "transports-deleteMany",
|
|
518
|
+
"summary": "Delete multiple transports",
|
|
519
|
+
"description": "Delete multiple transports",
|
|
520
|
+
"httpMethod": "POST",
|
|
521
|
+
"path": "/transports/delete-many",
|
|
522
|
+
"exampleInput": {
|
|
523
|
+
"body": {
|
|
524
|
+
"ids": [
|
|
525
|
+
"item_123"
|
|
526
|
+
]
|
|
527
|
+
}
|
|
528
|
+
}
|
|
529
|
+
},
|
|
530
|
+
"Transports.transportsExists": {
|
|
531
|
+
"operationId": "transports-exists",
|
|
532
|
+
"summary": "Check transport exists",
|
|
533
|
+
"description": "Check whether a transport exists",
|
|
534
|
+
"httpMethod": "POST",
|
|
535
|
+
"path": "/transports/exists",
|
|
536
|
+
"exampleInput": {
|
|
537
|
+
"body": {
|
|
538
|
+
"id": "item_123"
|
|
539
|
+
}
|
|
540
|
+
}
|
|
541
|
+
},
|
|
542
|
+
"Stays.staysGet": {
|
|
543
|
+
"operationId": "stays-get",
|
|
544
|
+
"summary": "Get stay",
|
|
545
|
+
"description": "Get a single stay by ID",
|
|
546
|
+
"httpMethod": "POST",
|
|
547
|
+
"path": "/stays/get",
|
|
548
|
+
"exampleInput": {
|
|
549
|
+
"body": {
|
|
550
|
+
"id": "item_123"
|
|
551
|
+
}
|
|
552
|
+
}
|
|
553
|
+
},
|
|
554
|
+
"Stays.staysList": {
|
|
555
|
+
"operationId": "stays-list",
|
|
556
|
+
"summary": "List stays",
|
|
557
|
+
"description": "List stays for the current user",
|
|
558
|
+
"httpMethod": "POST",
|
|
559
|
+
"path": "/stays/list",
|
|
560
|
+
"exampleInput": {
|
|
561
|
+
"body": {
|
|
562
|
+
"onlyFuture": true
|
|
563
|
+
}
|
|
564
|
+
}
|
|
565
|
+
},
|
|
566
|
+
"Stays.staysCreate": {
|
|
567
|
+
"operationId": "stays-create",
|
|
568
|
+
"summary": "Create stay",
|
|
569
|
+
"description": "Create a new stay",
|
|
570
|
+
"httpMethod": "POST",
|
|
571
|
+
"path": "/stays",
|
|
572
|
+
"exampleInput": {
|
|
573
|
+
"body": {
|
|
574
|
+
"name": "Example"
|
|
575
|
+
}
|
|
576
|
+
}
|
|
577
|
+
},
|
|
578
|
+
"Stays.staysUpdate": {
|
|
579
|
+
"operationId": "stays-update",
|
|
580
|
+
"summary": "Update stay",
|
|
581
|
+
"description": "Update an existing stay",
|
|
582
|
+
"httpMethod": "POST",
|
|
583
|
+
"path": "/stays/update",
|
|
584
|
+
"exampleInput": {
|
|
585
|
+
"body": {
|
|
586
|
+
"id": "item_123",
|
|
587
|
+
"data": {
|
|
588
|
+
"type": "Hotel",
|
|
589
|
+
"name": "Example"
|
|
590
|
+
}
|
|
591
|
+
}
|
|
592
|
+
}
|
|
593
|
+
},
|
|
594
|
+
"Stays.staysDelete": {
|
|
595
|
+
"operationId": "stays-delete",
|
|
596
|
+
"summary": "Delete stay",
|
|
597
|
+
"description": "Delete a stay",
|
|
598
|
+
"httpMethod": "POST",
|
|
599
|
+
"path": "/stays/delete",
|
|
600
|
+
"exampleInput": {
|
|
601
|
+
"body": {
|
|
602
|
+
"id": "item_123"
|
|
603
|
+
}
|
|
604
|
+
}
|
|
605
|
+
},
|
|
606
|
+
"Stays.staysDeleteMany": {
|
|
607
|
+
"operationId": "stays-deleteMany",
|
|
608
|
+
"summary": "Delete multiple stays",
|
|
609
|
+
"description": "Delete multiple stays",
|
|
610
|
+
"httpMethod": "POST",
|
|
611
|
+
"path": "/stays/delete-many",
|
|
612
|
+
"exampleInput": {
|
|
613
|
+
"body": {
|
|
614
|
+
"ids": [
|
|
615
|
+
"item_123"
|
|
616
|
+
]
|
|
617
|
+
}
|
|
618
|
+
}
|
|
619
|
+
},
|
|
620
|
+
"PlannerEvents.plannerEventsGet": {
|
|
621
|
+
"operationId": "plannerEvents-get",
|
|
622
|
+
"summary": "Get planner event",
|
|
623
|
+
"description": "Get a single planner event by ID",
|
|
624
|
+
"httpMethod": "POST",
|
|
625
|
+
"path": "/planner-events/get",
|
|
626
|
+
"exampleInput": {
|
|
627
|
+
"body": {
|
|
628
|
+
"id": "item_123"
|
|
629
|
+
}
|
|
630
|
+
}
|
|
631
|
+
},
|
|
632
|
+
"PlannerEvents.plannerEventsList": {
|
|
633
|
+
"operationId": "plannerEvents-list",
|
|
634
|
+
"summary": "List planner events",
|
|
635
|
+
"description": "List planner events for the current user",
|
|
636
|
+
"httpMethod": "POST",
|
|
637
|
+
"path": "/planner-events/list",
|
|
638
|
+
"exampleInput": {
|
|
639
|
+
"body": {
|
|
640
|
+
"startDate": "2026-03-30",
|
|
641
|
+
"endDate": "2026-03-30"
|
|
642
|
+
}
|
|
643
|
+
}
|
|
644
|
+
},
|
|
645
|
+
"PlannerEvents.plannerEventsCreate": {
|
|
646
|
+
"operationId": "plannerEvents-create",
|
|
647
|
+
"summary": "Create planner event",
|
|
648
|
+
"description": "Create a new planner event",
|
|
649
|
+
"httpMethod": "POST",
|
|
650
|
+
"path": "/planner-events",
|
|
651
|
+
"exampleInput": {
|
|
652
|
+
"body": {
|
|
653
|
+
"start": {
|
|
654
|
+
"timezone": "Europe/Warsaw",
|
|
655
|
+
"dateInUsersTimezone": "2026-03-30"
|
|
656
|
+
}
|
|
657
|
+
}
|
|
658
|
+
}
|
|
659
|
+
},
|
|
660
|
+
"PlannerEvents.plannerEventsUpdate": {
|
|
661
|
+
"operationId": "plannerEvents-update",
|
|
662
|
+
"summary": "Update planner event",
|
|
663
|
+
"description": "Update an existing planner event",
|
|
664
|
+
"httpMethod": "POST",
|
|
665
|
+
"path": "/planner-events/update",
|
|
666
|
+
"exampleInput": {
|
|
667
|
+
"body": {
|
|
668
|
+
"id": "item_123",
|
|
669
|
+
"data": {
|
|
670
|
+
"title": "Example",
|
|
671
|
+
"emoji": "string"
|
|
672
|
+
}
|
|
673
|
+
}
|
|
674
|
+
}
|
|
675
|
+
},
|
|
676
|
+
"PlannerEvents.plannerEventsDelete": {
|
|
677
|
+
"operationId": "plannerEvents-delete",
|
|
678
|
+
"summary": "Delete planner event",
|
|
679
|
+
"description": "Delete a planner event",
|
|
680
|
+
"httpMethod": "POST",
|
|
681
|
+
"path": "/planner-events/delete",
|
|
682
|
+
"exampleInput": {
|
|
683
|
+
"body": {
|
|
684
|
+
"id": "item_123"
|
|
685
|
+
}
|
|
686
|
+
}
|
|
687
|
+
},
|
|
688
|
+
"PlannerEvents.plannerEventsDeleteMany": {
|
|
689
|
+
"operationId": "plannerEvents-deleteMany",
|
|
690
|
+
"summary": "Delete multiple planner events",
|
|
691
|
+
"description": "Delete multiple planner events",
|
|
692
|
+
"httpMethod": "POST",
|
|
693
|
+
"path": "/planner-events/delete-many",
|
|
694
|
+
"exampleInput": {
|
|
695
|
+
"body": {
|
|
696
|
+
"ids": [
|
|
697
|
+
"item_123"
|
|
698
|
+
]
|
|
699
|
+
}
|
|
700
|
+
}
|
|
701
|
+
},
|
|
702
|
+
"Todos.todosGet": {
|
|
703
|
+
"operationId": "todos-get",
|
|
704
|
+
"summary": "Get todo",
|
|
705
|
+
"description": "Get a single todo by ID",
|
|
706
|
+
"httpMethod": "POST",
|
|
707
|
+
"path": "/todos/get",
|
|
708
|
+
"exampleInput": {
|
|
709
|
+
"body": {
|
|
710
|
+
"id": "item_123"
|
|
711
|
+
}
|
|
712
|
+
}
|
|
713
|
+
},
|
|
714
|
+
"Todos.todosList": {
|
|
715
|
+
"operationId": "todos-list",
|
|
716
|
+
"summary": "List todos",
|
|
717
|
+
"description": "List todos with filters",
|
|
718
|
+
"httpMethod": "POST",
|
|
719
|
+
"path": "/todos/list",
|
|
720
|
+
"exampleInput": {
|
|
721
|
+
"body": {
|
|
722
|
+
"screen": "today",
|
|
723
|
+
"date": "2026-03-30"
|
|
724
|
+
}
|
|
725
|
+
}
|
|
726
|
+
},
|
|
727
|
+
"Todos.todosByTag": {
|
|
728
|
+
"operationId": "todos-byTag",
|
|
729
|
+
"summary": "List todos by tag",
|
|
730
|
+
"description": "List todos filtered by tag ID",
|
|
731
|
+
"httpMethod": "POST",
|
|
732
|
+
"path": "/todos/by-tag/list",
|
|
733
|
+
"exampleInput": {
|
|
734
|
+
"body": {
|
|
735
|
+
"tagId": "tag_123"
|
|
736
|
+
}
|
|
737
|
+
}
|
|
738
|
+
},
|
|
739
|
+
"Todos.todosByProject": {
|
|
740
|
+
"operationId": "todos-byProject",
|
|
741
|
+
"summary": "List todos by project",
|
|
742
|
+
"description": "List todos filtered by project ID",
|
|
743
|
+
"httpMethod": "POST",
|
|
744
|
+
"path": "/todos/by-project/list",
|
|
745
|
+
"exampleInput": {
|
|
746
|
+
"body": {
|
|
747
|
+
"projectId": "project_123"
|
|
748
|
+
}
|
|
749
|
+
}
|
|
750
|
+
},
|
|
751
|
+
"Todos.todosByList": {
|
|
752
|
+
"operationId": "todos-byList",
|
|
753
|
+
"summary": "List todos by list",
|
|
754
|
+
"description": "List todos filtered by list ID",
|
|
755
|
+
"httpMethod": "POST",
|
|
756
|
+
"path": "/todos/by-list/list",
|
|
757
|
+
"exampleInput": {
|
|
758
|
+
"body": {
|
|
759
|
+
"listId": "list_123"
|
|
760
|
+
}
|
|
761
|
+
}
|
|
762
|
+
},
|
|
763
|
+
"Todos.todosExists": {
|
|
764
|
+
"operationId": "todos-exists",
|
|
765
|
+
"summary": "Check todo existence",
|
|
766
|
+
"description": "Check if a todo exists",
|
|
767
|
+
"httpMethod": "POST",
|
|
768
|
+
"path": "/todos/exists",
|
|
769
|
+
"exampleInput": {
|
|
770
|
+
"body": {
|
|
771
|
+
"id": "item_123"
|
|
772
|
+
}
|
|
773
|
+
}
|
|
774
|
+
},
|
|
775
|
+
"Todos.todosCreate": {
|
|
776
|
+
"operationId": "todos-create",
|
|
777
|
+
"summary": "Create todo",
|
|
778
|
+
"description": "Create a new todo",
|
|
779
|
+
"httpMethod": "POST",
|
|
780
|
+
"path": "/todos",
|
|
781
|
+
"exampleInput": {
|
|
782
|
+
"body": {
|
|
783
|
+
"title": "Example"
|
|
784
|
+
}
|
|
785
|
+
}
|
|
786
|
+
},
|
|
787
|
+
"Todos.todosUpdate": {
|
|
788
|
+
"operationId": "todos-update",
|
|
789
|
+
"summary": "Update todo",
|
|
790
|
+
"description": "Update an existing todo",
|
|
791
|
+
"httpMethod": "POST",
|
|
792
|
+
"path": "/todos/update",
|
|
793
|
+
"exampleInput": {
|
|
794
|
+
"body": {
|
|
795
|
+
"id": "item_123",
|
|
796
|
+
"data": {
|
|
797
|
+
"title": "Example",
|
|
798
|
+
"description": "Example"
|
|
799
|
+
}
|
|
800
|
+
}
|
|
801
|
+
}
|
|
802
|
+
},
|
|
803
|
+
"Todos.todosToggle": {
|
|
804
|
+
"operationId": "todos-toggle",
|
|
805
|
+
"summary": "Toggle todo completion",
|
|
806
|
+
"description": "Toggle the completion status of a todo",
|
|
807
|
+
"httpMethod": "POST",
|
|
808
|
+
"path": "/todos/toggle",
|
|
809
|
+
"exampleInput": {
|
|
810
|
+
"body": {
|
|
811
|
+
"id": "item_123"
|
|
812
|
+
}
|
|
813
|
+
}
|
|
814
|
+
},
|
|
815
|
+
"Todos.todosDelete": {
|
|
816
|
+
"operationId": "todos-delete",
|
|
817
|
+
"summary": "Delete todo",
|
|
818
|
+
"description": "Delete a todo",
|
|
819
|
+
"httpMethod": "POST",
|
|
820
|
+
"path": "/todos/delete",
|
|
821
|
+
"exampleInput": {
|
|
822
|
+
"body": {
|
|
823
|
+
"id": "item_123"
|
|
824
|
+
}
|
|
825
|
+
}
|
|
826
|
+
},
|
|
827
|
+
"Todos.todosDeleteMany": {
|
|
828
|
+
"operationId": "todos-deleteMany",
|
|
829
|
+
"summary": "Delete multiple todos",
|
|
830
|
+
"description": "Delete multiple todos",
|
|
831
|
+
"httpMethod": "POST",
|
|
832
|
+
"path": "/todos/delete-many",
|
|
833
|
+
"exampleInput": {
|
|
834
|
+
"body": {
|
|
835
|
+
"ids": [
|
|
836
|
+
"item_123"
|
|
837
|
+
]
|
|
838
|
+
}
|
|
839
|
+
}
|
|
840
|
+
},
|
|
841
|
+
"Todos.todosQuickUpdateMany": {
|
|
842
|
+
"operationId": "todos-quickUpdateMany",
|
|
843
|
+
"summary": "Quick update multiple todos",
|
|
844
|
+
"description": "Quickly update multiple todos with common fields",
|
|
845
|
+
"httpMethod": "POST",
|
|
846
|
+
"path": "/todos/quick-update-many",
|
|
847
|
+
"exampleInput": {
|
|
848
|
+
"body": {
|
|
849
|
+
"ids": [
|
|
850
|
+
"item_123"
|
|
851
|
+
],
|
|
852
|
+
"data": {
|
|
853
|
+
"title": "Example",
|
|
854
|
+
"description": "Example"
|
|
855
|
+
}
|
|
856
|
+
}
|
|
857
|
+
}
|
|
858
|
+
},
|
|
859
|
+
"Todos.todosAssign": {
|
|
860
|
+
"operationId": "todos-assign",
|
|
861
|
+
"summary": "Assign user to todo",
|
|
862
|
+
"description": "Assign a user to a todo",
|
|
863
|
+
"httpMethod": "POST",
|
|
864
|
+
"path": "/todos/assign",
|
|
865
|
+
"exampleInput": {
|
|
866
|
+
"body": {
|
|
867
|
+
"todoId": "todo_123",
|
|
868
|
+
"userId": "user_123"
|
|
869
|
+
}
|
|
870
|
+
}
|
|
871
|
+
},
|
|
872
|
+
"Todos.todosUnassign": {
|
|
873
|
+
"operationId": "todos-unassign",
|
|
874
|
+
"summary": "Unassign user from todo",
|
|
875
|
+
"description": "Unassign a user from a todo",
|
|
876
|
+
"httpMethod": "POST",
|
|
877
|
+
"path": "/todos/unassign",
|
|
878
|
+
"exampleInput": {
|
|
879
|
+
"body": {
|
|
880
|
+
"todoId": "todo_123",
|
|
881
|
+
"userId": "user_123"
|
|
882
|
+
}
|
|
883
|
+
}
|
|
884
|
+
},
|
|
885
|
+
"Todos.todosAssignableUsers": {
|
|
886
|
+
"operationId": "todos-assignableUsers",
|
|
887
|
+
"summary": "Get assignable users",
|
|
888
|
+
"description": "Get all users that can be assigned to todos (from shared lists/projects)",
|
|
889
|
+
"httpMethod": "POST",
|
|
890
|
+
"path": "/todos/assignable-users"
|
|
891
|
+
},
|
|
892
|
+
"Todos.todosPossibleAssignees": {
|
|
893
|
+
"operationId": "todos-possibleAssignees",
|
|
894
|
+
"summary": "Get possible assignees",
|
|
895
|
+
"description": "Get possible assignees for a specific list or project",
|
|
896
|
+
"httpMethod": "POST",
|
|
897
|
+
"path": "/todos/possible-assignees",
|
|
898
|
+
"exampleInput": {
|
|
899
|
+
"body": {
|
|
900
|
+
"listId": "list_123",
|
|
901
|
+
"projectId": "project_123"
|
|
902
|
+
}
|
|
903
|
+
}
|
|
904
|
+
},
|
|
905
|
+
"Assignments.todosAssign": {
|
|
906
|
+
"operationId": "todos-assign",
|
|
907
|
+
"summary": "Assign user to todo",
|
|
908
|
+
"description": "Assign a user to a todo",
|
|
909
|
+
"httpMethod": "POST",
|
|
910
|
+
"path": "/todos/assign",
|
|
911
|
+
"exampleInput": {
|
|
912
|
+
"body": {
|
|
913
|
+
"todoId": "todo_123",
|
|
914
|
+
"userId": "user_123"
|
|
915
|
+
}
|
|
916
|
+
}
|
|
917
|
+
},
|
|
918
|
+
"Assignments.todosUnassign": {
|
|
919
|
+
"operationId": "todos-unassign",
|
|
920
|
+
"summary": "Unassign user from todo",
|
|
921
|
+
"description": "Unassign a user from a todo",
|
|
922
|
+
"httpMethod": "POST",
|
|
923
|
+
"path": "/todos/unassign",
|
|
924
|
+
"exampleInput": {
|
|
925
|
+
"body": {
|
|
926
|
+
"todoId": "todo_123",
|
|
927
|
+
"userId": "user_123"
|
|
928
|
+
}
|
|
929
|
+
}
|
|
930
|
+
},
|
|
931
|
+
"Assignments.todosAssignableUsers": {
|
|
932
|
+
"operationId": "todos-assignableUsers",
|
|
933
|
+
"summary": "Get assignable users",
|
|
934
|
+
"description": "Get all users that can be assigned to todos (from shared lists/projects)",
|
|
935
|
+
"httpMethod": "POST",
|
|
936
|
+
"path": "/todos/assignable-users"
|
|
937
|
+
},
|
|
938
|
+
"Assignments.todosPossibleAssignees": {
|
|
939
|
+
"operationId": "todos-possibleAssignees",
|
|
940
|
+
"summary": "Get possible assignees",
|
|
941
|
+
"description": "Get possible assignees for a specific list or project",
|
|
942
|
+
"httpMethod": "POST",
|
|
943
|
+
"path": "/todos/possible-assignees",
|
|
944
|
+
"exampleInput": {
|
|
945
|
+
"body": {
|
|
946
|
+
"listId": "list_123",
|
|
947
|
+
"projectId": "project_123"
|
|
948
|
+
}
|
|
949
|
+
}
|
|
950
|
+
},
|
|
951
|
+
"Tags.tagsList": {
|
|
952
|
+
"operationId": "tags-list",
|
|
953
|
+
"summary": "List tags",
|
|
954
|
+
"description": "List tags for the current user",
|
|
955
|
+
"httpMethod": "POST",
|
|
956
|
+
"path": "/tags/list",
|
|
957
|
+
"exampleInput": {
|
|
958
|
+
"body": {
|
|
959
|
+
"taskType": "personal"
|
|
960
|
+
}
|
|
961
|
+
}
|
|
962
|
+
},
|
|
963
|
+
"Tags.tagsGet": {
|
|
964
|
+
"operationId": "tags-get",
|
|
965
|
+
"summary": "Get tag",
|
|
966
|
+
"description": "Get a single tag by ID",
|
|
967
|
+
"httpMethod": "POST",
|
|
968
|
+
"path": "/tags/get",
|
|
969
|
+
"exampleInput": {
|
|
970
|
+
"body": {
|
|
971
|
+
"id": "item_123"
|
|
972
|
+
}
|
|
973
|
+
}
|
|
974
|
+
},
|
|
975
|
+
"Tags.tagsCreate": {
|
|
976
|
+
"operationId": "tags-create",
|
|
977
|
+
"summary": "Create tag",
|
|
978
|
+
"description": "Create a new tag",
|
|
979
|
+
"httpMethod": "POST",
|
|
980
|
+
"path": "/tags",
|
|
981
|
+
"exampleInput": {
|
|
982
|
+
"body": {
|
|
983
|
+
"name": "Example"
|
|
984
|
+
}
|
|
985
|
+
}
|
|
986
|
+
},
|
|
987
|
+
"Tags.tagsUpdate": {
|
|
988
|
+
"operationId": "tags-update",
|
|
989
|
+
"summary": "Update tag",
|
|
990
|
+
"description": "Update an existing tag",
|
|
991
|
+
"httpMethod": "POST",
|
|
992
|
+
"path": "/tags/update",
|
|
993
|
+
"exampleInput": {
|
|
994
|
+
"body": {
|
|
995
|
+
"id": "item_123",
|
|
996
|
+
"data": {
|
|
997
|
+
"name": "Example",
|
|
998
|
+
"points": 1
|
|
999
|
+
}
|
|
1000
|
+
}
|
|
1001
|
+
}
|
|
1002
|
+
},
|
|
1003
|
+
"Tags.tagsDelete": {
|
|
1004
|
+
"operationId": "tags-delete",
|
|
1005
|
+
"summary": "Delete tag",
|
|
1006
|
+
"description": "Delete a tag",
|
|
1007
|
+
"httpMethod": "POST",
|
|
1008
|
+
"path": "/tags/delete",
|
|
1009
|
+
"exampleInput": {
|
|
1010
|
+
"body": {
|
|
1011
|
+
"id": "item_123"
|
|
1012
|
+
}
|
|
1013
|
+
}
|
|
1014
|
+
},
|
|
1015
|
+
"Tags.tagsExists": {
|
|
1016
|
+
"operationId": "tags-exists",
|
|
1017
|
+
"summary": "Check tag exists",
|
|
1018
|
+
"description": "Check whether a tag exists",
|
|
1019
|
+
"httpMethod": "POST",
|
|
1020
|
+
"path": "/tags/exists",
|
|
1021
|
+
"exampleInput": {
|
|
1022
|
+
"body": {
|
|
1023
|
+
"id": "item_123"
|
|
1024
|
+
}
|
|
1025
|
+
}
|
|
1026
|
+
},
|
|
1027
|
+
"Tags.tagsForTodoForm": {
|
|
1028
|
+
"operationId": "tags-forTodoForm",
|
|
1029
|
+
"summary": "Tags for todo form",
|
|
1030
|
+
"description": "List tags, tag groups, and favorites for the todo form",
|
|
1031
|
+
"httpMethod": "POST",
|
|
1032
|
+
"path": "/tags/for-todo-form",
|
|
1033
|
+
"exampleInput": {
|
|
1034
|
+
"body": {
|
|
1035
|
+
"taskType": "personal"
|
|
1036
|
+
}
|
|
1037
|
+
}
|
|
1038
|
+
},
|
|
1039
|
+
"Tags.tagsFavorites": {
|
|
1040
|
+
"operationId": "tags-favorites",
|
|
1041
|
+
"summary": "Favorite tags",
|
|
1042
|
+
"description": "List favorite tags by usage",
|
|
1043
|
+
"httpMethod": "POST",
|
|
1044
|
+
"path": "/tags/favorites",
|
|
1045
|
+
"exampleInput": {
|
|
1046
|
+
"body": {
|
|
1047
|
+
"limit": 10,
|
|
1048
|
+
"taskType": "personal"
|
|
1049
|
+
}
|
|
1050
|
+
}
|
|
1051
|
+
},
|
|
1052
|
+
"Projects.projectsList": {
|
|
1053
|
+
"operationId": "projects-list",
|
|
1054
|
+
"summary": "List projects",
|
|
1055
|
+
"description": "List projects for the current user",
|
|
1056
|
+
"httpMethod": "POST",
|
|
1057
|
+
"path": "/projects/list",
|
|
1058
|
+
"exampleInput": {
|
|
1059
|
+
"body": {
|
|
1060
|
+
"taskType": "personal"
|
|
1061
|
+
}
|
|
1062
|
+
}
|
|
1063
|
+
},
|
|
1064
|
+
"Projects.projectsGet": {
|
|
1065
|
+
"operationId": "projects-get",
|
|
1066
|
+
"summary": "Get project",
|
|
1067
|
+
"description": "Get a single project by ID",
|
|
1068
|
+
"httpMethod": "POST",
|
|
1069
|
+
"path": "/projects/get",
|
|
1070
|
+
"exampleInput": {
|
|
1071
|
+
"body": {
|
|
1072
|
+
"id": "item_123"
|
|
1073
|
+
}
|
|
1074
|
+
}
|
|
1075
|
+
},
|
|
1076
|
+
"Projects.projectsCreate": {
|
|
1077
|
+
"operationId": "projects-create",
|
|
1078
|
+
"summary": "Create project",
|
|
1079
|
+
"description": "Create a new project",
|
|
1080
|
+
"httpMethod": "POST",
|
|
1081
|
+
"path": "/projects",
|
|
1082
|
+
"exampleInput": {
|
|
1083
|
+
"body": {
|
|
1084
|
+
"name": "Example"
|
|
1085
|
+
}
|
|
1086
|
+
}
|
|
1087
|
+
},
|
|
1088
|
+
"Projects.projectsUpdate": {
|
|
1089
|
+
"operationId": "projects-update",
|
|
1090
|
+
"summary": "Update project",
|
|
1091
|
+
"description": "Update an existing project",
|
|
1092
|
+
"httpMethod": "POST",
|
|
1093
|
+
"path": "/projects/update",
|
|
1094
|
+
"exampleInput": {
|
|
1095
|
+
"body": {
|
|
1096
|
+
"id": "item_123",
|
|
1097
|
+
"data": {
|
|
1098
|
+
"name": "Example",
|
|
1099
|
+
"description": "Example"
|
|
1100
|
+
}
|
|
1101
|
+
}
|
|
1102
|
+
}
|
|
1103
|
+
},
|
|
1104
|
+
"Projects.projectsDelete": {
|
|
1105
|
+
"operationId": "projects-delete",
|
|
1106
|
+
"summary": "Delete project",
|
|
1107
|
+
"description": "Delete a project",
|
|
1108
|
+
"httpMethod": "POST",
|
|
1109
|
+
"path": "/projects/delete",
|
|
1110
|
+
"exampleInput": {
|
|
1111
|
+
"body": {
|
|
1112
|
+
"id": "item_123"
|
|
1113
|
+
}
|
|
1114
|
+
}
|
|
1115
|
+
},
|
|
1116
|
+
"Projects.projectsExists": {
|
|
1117
|
+
"operationId": "projects-exists",
|
|
1118
|
+
"summary": "Check project exists",
|
|
1119
|
+
"description": "Check whether a project exists",
|
|
1120
|
+
"httpMethod": "POST",
|
|
1121
|
+
"path": "/projects/exists",
|
|
1122
|
+
"exampleInput": {
|
|
1123
|
+
"body": {
|
|
1124
|
+
"id": "item_123"
|
|
1125
|
+
}
|
|
1126
|
+
}
|
|
1127
|
+
},
|
|
1128
|
+
"Projects.projectsForTodoForm": {
|
|
1129
|
+
"operationId": "projects-forTodoForm",
|
|
1130
|
+
"summary": "Projects for todo form",
|
|
1131
|
+
"description": "List projects for the todo form",
|
|
1132
|
+
"httpMethod": "POST",
|
|
1133
|
+
"path": "/projects/for-todo-form",
|
|
1134
|
+
"exampleInput": {
|
|
1135
|
+
"body": {
|
|
1136
|
+
"taskType": "personal"
|
|
1137
|
+
}
|
|
1138
|
+
}
|
|
1139
|
+
},
|
|
1140
|
+
"TodoLists.todoListsList": {
|
|
1141
|
+
"operationId": "todoLists-list",
|
|
1142
|
+
"summary": "List todo lists",
|
|
1143
|
+
"description": "List todo lists for the current user",
|
|
1144
|
+
"httpMethod": "POST",
|
|
1145
|
+
"path": "/todo-lists/list",
|
|
1146
|
+
"exampleInput": {
|
|
1147
|
+
"body": {
|
|
1148
|
+
"taskType": "personal"
|
|
1149
|
+
}
|
|
1150
|
+
}
|
|
1151
|
+
},
|
|
1152
|
+
"TodoLists.todoListsGet": {
|
|
1153
|
+
"operationId": "todoLists-get",
|
|
1154
|
+
"summary": "Get todo list",
|
|
1155
|
+
"description": "Get a single todo list by ID",
|
|
1156
|
+
"httpMethod": "POST",
|
|
1157
|
+
"path": "/todo-lists/get",
|
|
1158
|
+
"exampleInput": {
|
|
1159
|
+
"body": {
|
|
1160
|
+
"id": "item_123"
|
|
1161
|
+
}
|
|
1162
|
+
}
|
|
1163
|
+
},
|
|
1164
|
+
"TodoLists.todoListsFavorites": {
|
|
1165
|
+
"operationId": "todoLists-favorites",
|
|
1166
|
+
"summary": "Favorite todo lists",
|
|
1167
|
+
"description": "List favorite todo lists by usage",
|
|
1168
|
+
"httpMethod": "POST",
|
|
1169
|
+
"path": "/todo-lists/favorites",
|
|
1170
|
+
"exampleInput": {
|
|
1171
|
+
"body": {
|
|
1172
|
+
"limit": 10,
|
|
1173
|
+
"taskType": "personal"
|
|
1174
|
+
}
|
|
1175
|
+
}
|
|
1176
|
+
},
|
|
1177
|
+
"TodoLists.todoListsCreate": {
|
|
1178
|
+
"operationId": "todoLists-create",
|
|
1179
|
+
"summary": "Create todo list",
|
|
1180
|
+
"description": "Create a new todo list",
|
|
1181
|
+
"httpMethod": "POST",
|
|
1182
|
+
"path": "/todo-lists",
|
|
1183
|
+
"exampleInput": {
|
|
1184
|
+
"body": {
|
|
1185
|
+
"name": "Example"
|
|
1186
|
+
}
|
|
1187
|
+
}
|
|
1188
|
+
},
|
|
1189
|
+
"TodoLists.todoListsUpdate": {
|
|
1190
|
+
"operationId": "todoLists-update",
|
|
1191
|
+
"summary": "Update todo list",
|
|
1192
|
+
"description": "Update an existing todo list",
|
|
1193
|
+
"httpMethod": "POST",
|
|
1194
|
+
"path": "/todo-lists/update",
|
|
1195
|
+
"exampleInput": {
|
|
1196
|
+
"body": {
|
|
1197
|
+
"id": "item_123",
|
|
1198
|
+
"data": {
|
|
1199
|
+
"name": "Example",
|
|
1200
|
+
"emoji": "string"
|
|
1201
|
+
}
|
|
1202
|
+
}
|
|
1203
|
+
}
|
|
1204
|
+
},
|
|
1205
|
+
"TodoLists.todoListsDelete": {
|
|
1206
|
+
"operationId": "todoLists-delete",
|
|
1207
|
+
"summary": "Delete todo list",
|
|
1208
|
+
"description": "Delete a todo list",
|
|
1209
|
+
"httpMethod": "POST",
|
|
1210
|
+
"path": "/todo-lists/delete",
|
|
1211
|
+
"exampleInput": {
|
|
1212
|
+
"body": {
|
|
1213
|
+
"id": "item_123"
|
|
1214
|
+
}
|
|
1215
|
+
}
|
|
1216
|
+
},
|
|
1217
|
+
"TodoLists.todoListsExists": {
|
|
1218
|
+
"operationId": "todoLists-exists",
|
|
1219
|
+
"summary": "Check todo list exists",
|
|
1220
|
+
"description": "Check whether a todo list exists",
|
|
1221
|
+
"httpMethod": "POST",
|
|
1222
|
+
"path": "/todo-lists/exists",
|
|
1223
|
+
"exampleInput": {
|
|
1224
|
+
"body": {
|
|
1225
|
+
"id": "item_123"
|
|
1226
|
+
}
|
|
1227
|
+
}
|
|
1228
|
+
},
|
|
1229
|
+
"TodoLists.todoListsForTodoForm": {
|
|
1230
|
+
"operationId": "todoLists-forTodoForm",
|
|
1231
|
+
"summary": "Todo lists for todo form",
|
|
1232
|
+
"description": "List todo lists for the todo form",
|
|
1233
|
+
"httpMethod": "POST",
|
|
1234
|
+
"path": "/todo-lists/for-todo-form",
|
|
1235
|
+
"exampleInput": {
|
|
1236
|
+
"body": {
|
|
1237
|
+
"taskType": "personal"
|
|
1238
|
+
}
|
|
1239
|
+
}
|
|
1240
|
+
},
|
|
1241
|
+
"Habits.habitsGetHabitsAndCompletions": {
|
|
1242
|
+
"operationId": "habits-getHabitsAndCompletions",
|
|
1243
|
+
"summary": "Get habits with completions",
|
|
1244
|
+
"description": "Get habits with completions for a date range",
|
|
1245
|
+
"httpMethod": "POST",
|
|
1246
|
+
"path": "/habits/with-completions",
|
|
1247
|
+
"exampleInput": {
|
|
1248
|
+
"body": {
|
|
1249
|
+
"dateFrom": "2026-03-30",
|
|
1250
|
+
"dateTo": "2026-03-30"
|
|
1251
|
+
}
|
|
1252
|
+
}
|
|
1253
|
+
},
|
|
1254
|
+
"Habits.habitsGetHabitsForCurrentUser": {
|
|
1255
|
+
"operationId": "habits-getHabitsForCurrentUser",
|
|
1256
|
+
"summary": "Get all habits",
|
|
1257
|
+
"description": "Get all habits for the authenticated user",
|
|
1258
|
+
"httpMethod": "POST",
|
|
1259
|
+
"path": "/habits/list"
|
|
1260
|
+
},
|
|
1261
|
+
"Habits.habitsGet": {
|
|
1262
|
+
"operationId": "habits-get",
|
|
1263
|
+
"summary": "Get single habit",
|
|
1264
|
+
"description": "Get a single habit by ID",
|
|
1265
|
+
"httpMethod": "POST",
|
|
1266
|
+
"path": "/habits/get",
|
|
1267
|
+
"exampleInput": {
|
|
1268
|
+
"body": {
|
|
1269
|
+
"id": "item_123"
|
|
1270
|
+
}
|
|
1271
|
+
}
|
|
1272
|
+
},
|
|
1273
|
+
"Habits.habitsCreate": {
|
|
1274
|
+
"operationId": "habits-create",
|
|
1275
|
+
"summary": "Create habit",
|
|
1276
|
+
"description": "Create a new habit",
|
|
1277
|
+
"httpMethod": "POST",
|
|
1278
|
+
"path": "/habits",
|
|
1279
|
+
"exampleInput": {
|
|
1280
|
+
"body": {
|
|
1281
|
+
"name": "Example"
|
|
1282
|
+
}
|
|
1283
|
+
}
|
|
1284
|
+
},
|
|
1285
|
+
"Habits.habitsUpdate": {
|
|
1286
|
+
"operationId": "habits-update",
|
|
1287
|
+
"summary": "Update habit",
|
|
1288
|
+
"description": "Update an existing habit",
|
|
1289
|
+
"httpMethod": "POST",
|
|
1290
|
+
"path": "/habits/update",
|
|
1291
|
+
"exampleInput": {
|
|
1292
|
+
"body": {
|
|
1293
|
+
"id": "item_123",
|
|
1294
|
+
"data": {
|
|
1295
|
+
"name": "Example",
|
|
1296
|
+
"emoji": "string"
|
|
1297
|
+
}
|
|
1298
|
+
}
|
|
1299
|
+
}
|
|
1300
|
+
},
|
|
1301
|
+
"Habits.habitsDelete": {
|
|
1302
|
+
"operationId": "habits-delete",
|
|
1303
|
+
"summary": "Delete habit",
|
|
1304
|
+
"description": "Delete a habit",
|
|
1305
|
+
"httpMethod": "POST",
|
|
1306
|
+
"path": "/habits/delete",
|
|
1307
|
+
"exampleInput": {
|
|
1308
|
+
"body": {
|
|
1309
|
+
"id": "item_123"
|
|
1310
|
+
}
|
|
1311
|
+
}
|
|
1312
|
+
},
|
|
1313
|
+
"Habits.habitsDuplicate": {
|
|
1314
|
+
"operationId": "habits-duplicate",
|
|
1315
|
+
"summary": "Duplicate habit",
|
|
1316
|
+
"description": "Duplicate an existing habit",
|
|
1317
|
+
"httpMethod": "POST",
|
|
1318
|
+
"path": "/habits/duplicate",
|
|
1319
|
+
"exampleInput": {
|
|
1320
|
+
"body": {
|
|
1321
|
+
"id": "item_123"
|
|
1322
|
+
}
|
|
1323
|
+
}
|
|
1324
|
+
},
|
|
1325
|
+
"Habits.habitsLogHabitOnDay": {
|
|
1326
|
+
"operationId": "habits-logHabitOnDay",
|
|
1327
|
+
"summary": "Log habit",
|
|
1328
|
+
"description": "Log a habit completion or failure for a specific day",
|
|
1329
|
+
"httpMethod": "POST",
|
|
1330
|
+
"path": "/habits/log",
|
|
1331
|
+
"exampleInput": {
|
|
1332
|
+
"body": {
|
|
1333
|
+
"habitId": "habit_123"
|
|
1334
|
+
}
|
|
1335
|
+
}
|
|
1336
|
+
},
|
|
1337
|
+
"Habits.habitsLogManyHabitsOnDay": {
|
|
1338
|
+
"operationId": "habits-logManyHabitsOnDay",
|
|
1339
|
+
"summary": "Log many habits",
|
|
1340
|
+
"description": "Log multiple habits for a specific day",
|
|
1341
|
+
"httpMethod": "POST",
|
|
1342
|
+
"path": "/habits/log-many",
|
|
1343
|
+
"exampleInput": {
|
|
1344
|
+
"body": {
|
|
1345
|
+
"habitIds": [
|
|
1346
|
+
"habit_123"
|
|
1347
|
+
],
|
|
1348
|
+
"completionType": "Done"
|
|
1349
|
+
}
|
|
1350
|
+
}
|
|
1351
|
+
},
|
|
1352
|
+
"Habits.habitsGetHabitScoreForWidget": {
|
|
1353
|
+
"operationId": "habits-getHabitScoreForWidget",
|
|
1354
|
+
"summary": "Get habit score for widget",
|
|
1355
|
+
"description": "Get aggregated habit score for the widget",
|
|
1356
|
+
"httpMethod": "POST",
|
|
1357
|
+
"path": "/habits/score/widget"
|
|
1358
|
+
},
|
|
1359
|
+
"Hydration.hydrationLogsDelete": {
|
|
1360
|
+
"operationId": "hydrationLogs-delete",
|
|
1361
|
+
"summary": "Delete hydration log",
|
|
1362
|
+
"description": "Delete a hydration log",
|
|
1363
|
+
"httpMethod": "DELETE",
|
|
1364
|
+
"path": "/hydration/logs/{id}",
|
|
1365
|
+
"exampleInput": {
|
|
1366
|
+
"path": {
|
|
1367
|
+
"id": "item_123"
|
|
1368
|
+
}
|
|
1369
|
+
}
|
|
1370
|
+
},
|
|
1371
|
+
"Hydration.hydrationLogsUpdate": {
|
|
1372
|
+
"operationId": "hydrationLogs-update",
|
|
1373
|
+
"summary": "Update hydration log",
|
|
1374
|
+
"description": "Update an existing hydration log",
|
|
1375
|
+
"httpMethod": "PATCH",
|
|
1376
|
+
"path": "/hydration/logs/{id}",
|
|
1377
|
+
"exampleInput": {
|
|
1378
|
+
"path": {
|
|
1379
|
+
"id": "item_123"
|
|
1380
|
+
},
|
|
1381
|
+
"body": {
|
|
1382
|
+
"data": {
|
|
1383
|
+
"name": "Example",
|
|
1384
|
+
"amount": 1
|
|
1385
|
+
}
|
|
1386
|
+
}
|
|
1387
|
+
}
|
|
1388
|
+
},
|
|
1389
|
+
"Hydration.hydrationLogsGet": {
|
|
1390
|
+
"operationId": "hydrationLogs-get",
|
|
1391
|
+
"summary": "Get hydration log",
|
|
1392
|
+
"description": "Get a single hydration log by ID",
|
|
1393
|
+
"httpMethod": "POST",
|
|
1394
|
+
"path": "/hydration/logs/{id}",
|
|
1395
|
+
"exampleInput": {
|
|
1396
|
+
"path": {
|
|
1397
|
+
"id": "item_123"
|
|
1398
|
+
}
|
|
1399
|
+
}
|
|
1400
|
+
},
|
|
1401
|
+
"Hydration.hydrationLogsList": {
|
|
1402
|
+
"operationId": "hydrationLogs-list",
|
|
1403
|
+
"summary": "List hydration logs",
|
|
1404
|
+
"description": "List hydration logs for a date range",
|
|
1405
|
+
"httpMethod": "POST",
|
|
1406
|
+
"path": "/hydration/logs/list",
|
|
1407
|
+
"exampleInput": {
|
|
1408
|
+
"body": {
|
|
1409
|
+
"date": {
|
|
1410
|
+
"year": 1,
|
|
1411
|
+
"month": 1,
|
|
1412
|
+
"day": 1
|
|
1413
|
+
}
|
|
1414
|
+
}
|
|
1415
|
+
}
|
|
1416
|
+
},
|
|
1417
|
+
"Hydration.hydrationLogsCreate": {
|
|
1418
|
+
"operationId": "hydrationLogs-create",
|
|
1419
|
+
"summary": "Create hydration log",
|
|
1420
|
+
"description": "Create a new hydration log",
|
|
1421
|
+
"httpMethod": "POST",
|
|
1422
|
+
"path": "/hydration/logs",
|
|
1423
|
+
"exampleInput": {
|
|
1424
|
+
"body": {
|
|
1425
|
+
"amount": 1
|
|
1426
|
+
}
|
|
1427
|
+
}
|
|
1428
|
+
},
|
|
1429
|
+
"Hydration.hydrationLogsDeleteMany": {
|
|
1430
|
+
"operationId": "hydrationLogs-deleteMany",
|
|
1431
|
+
"summary": "Delete multiple hydration logs",
|
|
1432
|
+
"description": "Delete multiple hydration logs",
|
|
1433
|
+
"httpMethod": "POST",
|
|
1434
|
+
"path": "/hydration/logs/delete-many",
|
|
1435
|
+
"exampleInput": {
|
|
1436
|
+
"body": {
|
|
1437
|
+
"ids": [
|
|
1438
|
+
"item_123"
|
|
1439
|
+
]
|
|
1440
|
+
}
|
|
1441
|
+
}
|
|
1442
|
+
},
|
|
1443
|
+
"Hydration.hydrationLogsGetStats": {
|
|
1444
|
+
"operationId": "hydrationLogs-getStats",
|
|
1445
|
+
"summary": "Get hydration stats",
|
|
1446
|
+
"description": "Get hydration stats for a date",
|
|
1447
|
+
"httpMethod": "POST",
|
|
1448
|
+
"path": "/hydration/stats",
|
|
1449
|
+
"exampleInput": {
|
|
1450
|
+
"body": {
|
|
1451
|
+
"date": {
|
|
1452
|
+
"year": 1,
|
|
1453
|
+
"month": 1,
|
|
1454
|
+
"day": 1
|
|
1455
|
+
}
|
|
1456
|
+
}
|
|
1457
|
+
}
|
|
1458
|
+
},
|
|
1459
|
+
"Hydration.hydrationGoalsDelete": {
|
|
1460
|
+
"operationId": "hydrationGoals-delete",
|
|
1461
|
+
"summary": "Delete hydration goal",
|
|
1462
|
+
"description": "Delete a hydration goal by ID.",
|
|
1463
|
+
"httpMethod": "DELETE",
|
|
1464
|
+
"path": "/hydration/goals/{id}",
|
|
1465
|
+
"exampleInput": {
|
|
1466
|
+
"path": {
|
|
1467
|
+
"id": "item_123"
|
|
1468
|
+
}
|
|
1469
|
+
}
|
|
1470
|
+
},
|
|
1471
|
+
"Hydration.hydrationGoalsUpdate": {
|
|
1472
|
+
"operationId": "hydrationGoals-update",
|
|
1473
|
+
"summary": "Update hydration goal",
|
|
1474
|
+
"description": "Update an existing hydration goal.",
|
|
1475
|
+
"httpMethod": "PATCH",
|
|
1476
|
+
"path": "/hydration/goals/{id}",
|
|
1477
|
+
"exampleInput": {
|
|
1478
|
+
"path": {
|
|
1479
|
+
"id": "item_123"
|
|
1480
|
+
},
|
|
1481
|
+
"body": {
|
|
1482
|
+
"data": {
|
|
1483
|
+
"date": {
|
|
1484
|
+
"timezone": "Europe/Warsaw",
|
|
1485
|
+
"dateInUsersTimezone": "2026-03-30"
|
|
1486
|
+
},
|
|
1487
|
+
"amount": 1
|
|
1488
|
+
}
|
|
1489
|
+
}
|
|
1490
|
+
}
|
|
1491
|
+
},
|
|
1492
|
+
"Hydration.hydrationGoalsGet": {
|
|
1493
|
+
"operationId": "hydrationGoals-get",
|
|
1494
|
+
"summary": "Get hydration goal",
|
|
1495
|
+
"description": "Get a single hydration goal by ID.",
|
|
1496
|
+
"httpMethod": "POST",
|
|
1497
|
+
"path": "/hydration/goals/{id}",
|
|
1498
|
+
"exampleInput": {
|
|
1499
|
+
"path": {
|
|
1500
|
+
"id": "item_123"
|
|
1501
|
+
}
|
|
1502
|
+
}
|
|
1503
|
+
},
|
|
1504
|
+
"Hydration.hydrationGoalsList": {
|
|
1505
|
+
"operationId": "hydrationGoals-list",
|
|
1506
|
+
"summary": "List hydration goals",
|
|
1507
|
+
"description": "List hydration goals for the current user.",
|
|
1508
|
+
"httpMethod": "POST",
|
|
1509
|
+
"path": "/hydration/goals/list"
|
|
1510
|
+
},
|
|
1511
|
+
"Hydration.hydrationGoalsGetForDate": {
|
|
1512
|
+
"operationId": "hydrationGoals-getForDate",
|
|
1513
|
+
"summary": "Get hydration goal for date",
|
|
1514
|
+
"description": "Get the active hydration goal for a date.",
|
|
1515
|
+
"httpMethod": "POST",
|
|
1516
|
+
"path": "/hydration/goals/for-date",
|
|
1517
|
+
"exampleInput": {
|
|
1518
|
+
"body": {
|
|
1519
|
+
"date": "2026-03-30"
|
|
1520
|
+
}
|
|
1521
|
+
}
|
|
1522
|
+
},
|
|
1523
|
+
"Hydration.hydrationGoalsCreate": {
|
|
1524
|
+
"operationId": "hydrationGoals-create",
|
|
1525
|
+
"summary": "Create hydration goal",
|
|
1526
|
+
"description": "Create a new hydration goal for the current user.",
|
|
1527
|
+
"httpMethod": "POST",
|
|
1528
|
+
"path": "/hydration/goals",
|
|
1529
|
+
"exampleInput": {
|
|
1530
|
+
"body": {
|
|
1531
|
+
"date": {
|
|
1532
|
+
"timezone": "Europe/Warsaw",
|
|
1533
|
+
"dateInUsersTimezone": "2026-03-30"
|
|
1534
|
+
},
|
|
1535
|
+
"amount": 1
|
|
1536
|
+
}
|
|
1537
|
+
}
|
|
1538
|
+
},
|
|
1539
|
+
"Fasting.fastingDelete": {
|
|
1540
|
+
"operationId": "fasting-delete",
|
|
1541
|
+
"summary": "Delete fast",
|
|
1542
|
+
"description": "Delete a fast",
|
|
1543
|
+
"httpMethod": "DELETE",
|
|
1544
|
+
"path": "/fasting/fasts/{id}",
|
|
1545
|
+
"exampleInput": {
|
|
1546
|
+
"path": {
|
|
1547
|
+
"id": "item_123"
|
|
1548
|
+
}
|
|
1549
|
+
}
|
|
1550
|
+
},
|
|
1551
|
+
"Fasting.fastingUpdate": {
|
|
1552
|
+
"operationId": "fasting-update",
|
|
1553
|
+
"summary": "Update fast",
|
|
1554
|
+
"description": "Update an existing fast",
|
|
1555
|
+
"httpMethod": "PATCH",
|
|
1556
|
+
"path": "/fasting/fasts/{id}",
|
|
1557
|
+
"exampleInput": {
|
|
1558
|
+
"path": {
|
|
1559
|
+
"id": "item_123"
|
|
1560
|
+
},
|
|
1561
|
+
"body": {
|
|
1562
|
+
"data": {
|
|
1563
|
+
"goal": 1,
|
|
1564
|
+
"startTime": {
|
|
1565
|
+
"timezone": "Europe/Warsaw",
|
|
1566
|
+
"dateInUsersTimezone": "2026-03-30"
|
|
1567
|
+
}
|
|
1568
|
+
}
|
|
1569
|
+
}
|
|
1570
|
+
}
|
|
1571
|
+
},
|
|
1572
|
+
"Fasting.fastingGet": {
|
|
1573
|
+
"operationId": "fasting-get",
|
|
1574
|
+
"summary": "Get fast",
|
|
1575
|
+
"description": "Get a single fast by ID",
|
|
1576
|
+
"httpMethod": "POST",
|
|
1577
|
+
"path": "/fasting/fasts/{id}",
|
|
1578
|
+
"exampleInput": {
|
|
1579
|
+
"path": {
|
|
1580
|
+
"id": "item_123"
|
|
1581
|
+
}
|
|
1582
|
+
}
|
|
1583
|
+
},
|
|
1584
|
+
"Fasting.fastingList": {
|
|
1585
|
+
"operationId": "fasting-list",
|
|
1586
|
+
"summary": "List fasts",
|
|
1587
|
+
"description": "List fasts for a date range",
|
|
1588
|
+
"httpMethod": "POST",
|
|
1589
|
+
"path": "/fasting/fasts/list",
|
|
1590
|
+
"exampleInput": {
|
|
1591
|
+
"body": {
|
|
1592
|
+
"dateFrom": "2026-03-30",
|
|
1593
|
+
"dateTo": "2026-03-30"
|
|
1594
|
+
}
|
|
1595
|
+
}
|
|
1596
|
+
},
|
|
1597
|
+
"Fasting.fastingGetActive": {
|
|
1598
|
+
"operationId": "fasting-getActive",
|
|
1599
|
+
"summary": "Get active fast",
|
|
1600
|
+
"description": "Get the currently active fast",
|
|
1601
|
+
"httpMethod": "POST",
|
|
1602
|
+
"path": "/fasting/active"
|
|
1603
|
+
},
|
|
1604
|
+
"Fasting.fastingGetStats": {
|
|
1605
|
+
"operationId": "fasting-getStats",
|
|
1606
|
+
"summary": "Get fasting stats",
|
|
1607
|
+
"description": "Get fasting statistics",
|
|
1608
|
+
"httpMethod": "POST",
|
|
1609
|
+
"path": "/fasting/stats"
|
|
1610
|
+
},
|
|
1611
|
+
"Fasting.fastingGetDashboardInfo": {
|
|
1612
|
+
"operationId": "fasting-getDashboardInfo",
|
|
1613
|
+
"summary": "Get dashboard info",
|
|
1614
|
+
"description": "Get fasting information for the dashboard",
|
|
1615
|
+
"httpMethod": "POST",
|
|
1616
|
+
"path": "/fasting/dashboard"
|
|
1617
|
+
},
|
|
1618
|
+
"Fasting.fastingStart": {
|
|
1619
|
+
"operationId": "fasting-start",
|
|
1620
|
+
"summary": "Start fast",
|
|
1621
|
+
"description": "Start a new fast",
|
|
1622
|
+
"httpMethod": "POST",
|
|
1623
|
+
"path": "/fasting/start",
|
|
1624
|
+
"exampleInput": {
|
|
1625
|
+
"body": {
|
|
1626
|
+
"hours": 16,
|
|
1627
|
+
"startTime": {
|
|
1628
|
+
"timezone": "Europe/Warsaw",
|
|
1629
|
+
"dateInUsersTimezone": "2026-03-30"
|
|
1630
|
+
}
|
|
1631
|
+
}
|
|
1632
|
+
}
|
|
1633
|
+
},
|
|
1634
|
+
"Fasting.fastingEnd": {
|
|
1635
|
+
"operationId": "fasting-end",
|
|
1636
|
+
"summary": "End fast",
|
|
1637
|
+
"description": "End an active fast",
|
|
1638
|
+
"httpMethod": "POST",
|
|
1639
|
+
"path": "/fasting/end",
|
|
1640
|
+
"exampleInput": {
|
|
1641
|
+
"body": {
|
|
1642
|
+
"fastId": "fast_123"
|
|
1643
|
+
}
|
|
1644
|
+
}
|
|
1645
|
+
},
|
|
1646
|
+
"Food.foodLogsDelete": {
|
|
1647
|
+
"operationId": "foodLogs-delete",
|
|
1648
|
+
"summary": "Delete food log",
|
|
1649
|
+
"description": "Delete a food log by ID.",
|
|
1650
|
+
"httpMethod": "DELETE",
|
|
1651
|
+
"path": "/food/logs/{id}",
|
|
1652
|
+
"exampleInput": {
|
|
1653
|
+
"path": {
|
|
1654
|
+
"id": "item_123"
|
|
1655
|
+
}
|
|
1656
|
+
}
|
|
1657
|
+
},
|
|
1658
|
+
"Food.foodLogsUpdate": {
|
|
1659
|
+
"operationId": "foodLogs-update",
|
|
1660
|
+
"summary": "Update food log",
|
|
1661
|
+
"description": "Update an existing food log.",
|
|
1662
|
+
"httpMethod": "PATCH",
|
|
1663
|
+
"path": "/food/logs/{id}",
|
|
1664
|
+
"exampleInput": {
|
|
1665
|
+
"path": {
|
|
1666
|
+
"id": "item_123"
|
|
1667
|
+
},
|
|
1668
|
+
"body": {
|
|
1669
|
+
"data": {
|
|
1670
|
+
"title": "Example",
|
|
1671
|
+
"reasons": [
|
|
1672
|
+
"Hungry"
|
|
1673
|
+
]
|
|
1674
|
+
}
|
|
1675
|
+
}
|
|
1676
|
+
}
|
|
1677
|
+
},
|
|
1678
|
+
"Food.foodLogsGet": {
|
|
1679
|
+
"operationId": "foodLogs-get",
|
|
1680
|
+
"summary": "Get food log",
|
|
1681
|
+
"description": "Get a single food log by ID.",
|
|
1682
|
+
"httpMethod": "POST",
|
|
1683
|
+
"path": "/food/logs/{id}",
|
|
1684
|
+
"exampleInput": {
|
|
1685
|
+
"path": {
|
|
1686
|
+
"id": "item_123"
|
|
1687
|
+
}
|
|
1688
|
+
}
|
|
1689
|
+
},
|
|
1690
|
+
"Food.foodLogsList": {
|
|
1691
|
+
"operationId": "foodLogs-list",
|
|
1692
|
+
"summary": "List food logs",
|
|
1693
|
+
"description": "List food logs for a date range.",
|
|
1694
|
+
"httpMethod": "POST",
|
|
1695
|
+
"path": "/food/logs/list",
|
|
1696
|
+
"exampleInput": {
|
|
1697
|
+
"body": {
|
|
1698
|
+
"date": {
|
|
1699
|
+
"year": 1,
|
|
1700
|
+
"month": 1,
|
|
1701
|
+
"day": 1
|
|
1702
|
+
}
|
|
1703
|
+
}
|
|
1704
|
+
}
|
|
1705
|
+
},
|
|
1706
|
+
"Food.foodLogsCreate": {
|
|
1707
|
+
"operationId": "foodLogs-create",
|
|
1708
|
+
"summary": "Create food log",
|
|
1709
|
+
"description": "Create a new food log.",
|
|
1710
|
+
"httpMethod": "POST",
|
|
1711
|
+
"path": "/food/logs",
|
|
1712
|
+
"exampleInput": {
|
|
1713
|
+
"body": {
|
|
1714
|
+
"portionSize": 1,
|
|
1715
|
+
"healthiness": 1
|
|
1716
|
+
}
|
|
1717
|
+
}
|
|
1718
|
+
},
|
|
1719
|
+
"Food.foodLogsDeleteMany": {
|
|
1720
|
+
"operationId": "foodLogs-deleteMany",
|
|
1721
|
+
"summary": "Delete multiple food logs",
|
|
1722
|
+
"description": "Delete multiple food logs by ID.",
|
|
1723
|
+
"httpMethod": "POST",
|
|
1724
|
+
"path": "/food/logs/delete-many",
|
|
1725
|
+
"exampleInput": {
|
|
1726
|
+
"body": {
|
|
1727
|
+
"ids": [
|
|
1728
|
+
"item_123"
|
|
1729
|
+
]
|
|
1730
|
+
}
|
|
1731
|
+
}
|
|
1732
|
+
},
|
|
1733
|
+
"Food.foodLogsGetCaloriesStats": {
|
|
1734
|
+
"operationId": "foodLogs-getCaloriesStats",
|
|
1735
|
+
"summary": "Get food calories stats",
|
|
1736
|
+
"description": "Get total calories and calorie goal stats for a date.",
|
|
1737
|
+
"httpMethod": "POST",
|
|
1738
|
+
"path": "/food/stats/calories",
|
|
1739
|
+
"exampleInput": {
|
|
1740
|
+
"body": {
|
|
1741
|
+
"date": {
|
|
1742
|
+
"year": 1,
|
|
1743
|
+
"month": 1,
|
|
1744
|
+
"day": 1
|
|
1745
|
+
}
|
|
1746
|
+
}
|
|
1747
|
+
}
|
|
1748
|
+
},
|
|
1749
|
+
"Food.foodLogsGetProteinStats": {
|
|
1750
|
+
"operationId": "foodLogs-getProteinStats",
|
|
1751
|
+
"summary": "Get food protein stats",
|
|
1752
|
+
"description": "Get total protein and protein goal stats for a date.",
|
|
1753
|
+
"httpMethod": "POST",
|
|
1754
|
+
"path": "/food/stats/protein",
|
|
1755
|
+
"exampleInput": {
|
|
1756
|
+
"body": {
|
|
1757
|
+
"date": {
|
|
1758
|
+
"year": 1,
|
|
1759
|
+
"month": 1,
|
|
1760
|
+
"day": 1
|
|
1761
|
+
}
|
|
1762
|
+
}
|
|
1763
|
+
}
|
|
1764
|
+
},
|
|
1765
|
+
"Food.foodLogsGetCarbsStats": {
|
|
1766
|
+
"operationId": "foodLogs-getCarbsStats",
|
|
1767
|
+
"summary": "Get food carbs stats",
|
|
1768
|
+
"description": "Get total carbs and carbs goal stats for a date.",
|
|
1769
|
+
"httpMethod": "POST",
|
|
1770
|
+
"path": "/food/stats/carbs",
|
|
1771
|
+
"exampleInput": {
|
|
1772
|
+
"body": {
|
|
1773
|
+
"date": {
|
|
1774
|
+
"year": 1,
|
|
1775
|
+
"month": 1,
|
|
1776
|
+
"day": 1
|
|
1777
|
+
}
|
|
1778
|
+
}
|
|
1779
|
+
}
|
|
1780
|
+
},
|
|
1781
|
+
"WeightLogs.weightLogsGet": {
|
|
1782
|
+
"operationId": "weightLogs-get",
|
|
1783
|
+
"summary": "Get weight log",
|
|
1784
|
+
"description": "Get a single weight log by ID.",
|
|
1785
|
+
"httpMethod": "POST",
|
|
1786
|
+
"path": "/weight-logs/get",
|
|
1787
|
+
"exampleInput": {
|
|
1788
|
+
"body": {
|
|
1789
|
+
"id": "item_123"
|
|
1790
|
+
}
|
|
1791
|
+
}
|
|
1792
|
+
},
|
|
1793
|
+
"WeightLogs.weightLogsList": {
|
|
1794
|
+
"operationId": "weightLogs-list",
|
|
1795
|
+
"summary": "List weight logs",
|
|
1796
|
+
"description": "Get weight logs for the user, optionally filtered by date range.",
|
|
1797
|
+
"httpMethod": "POST",
|
|
1798
|
+
"path": "/weight-logs/list",
|
|
1799
|
+
"exampleInput": {
|
|
1800
|
+
"body": {
|
|
1801
|
+
"date": "2026-03-30",
|
|
1802
|
+
"dateFrom": "2026-03-30"
|
|
1803
|
+
}
|
|
1804
|
+
}
|
|
1805
|
+
},
|
|
1806
|
+
"WeightLogs.weightLogsCreate": {
|
|
1807
|
+
"operationId": "weightLogs-create",
|
|
1808
|
+
"summary": "Create weight log",
|
|
1809
|
+
"description": "Create a new weight log entry.",
|
|
1810
|
+
"httpMethod": "POST",
|
|
1811
|
+
"path": "/weight-logs/create",
|
|
1812
|
+
"exampleInput": {
|
|
1813
|
+
"body": {
|
|
1814
|
+
"weight": 1,
|
|
1815
|
+
"fatPercentage": 1,
|
|
1816
|
+
"musclePercentage": 1
|
|
1817
|
+
}
|
|
1818
|
+
}
|
|
1819
|
+
},
|
|
1820
|
+
"WeightLogs.weightLogsUpdate": {
|
|
1821
|
+
"operationId": "weightLogs-update",
|
|
1822
|
+
"summary": "Update weight log",
|
|
1823
|
+
"description": "Update an existing weight log.",
|
|
1824
|
+
"httpMethod": "POST",
|
|
1825
|
+
"path": "/weight-logs/update",
|
|
1826
|
+
"exampleInput": {
|
|
1827
|
+
"body": {
|
|
1828
|
+
"id": "item_123",
|
|
1829
|
+
"data": {
|
|
1830
|
+
"weight": 1,
|
|
1831
|
+
"fatPercentage": 1
|
|
1832
|
+
}
|
|
1833
|
+
}
|
|
1834
|
+
}
|
|
1835
|
+
},
|
|
1836
|
+
"WeightLogs.weightLogsDelete": {
|
|
1837
|
+
"operationId": "weightLogs-delete",
|
|
1838
|
+
"summary": "Delete weight log",
|
|
1839
|
+
"description": "Delete a weight log by ID.",
|
|
1840
|
+
"httpMethod": "POST",
|
|
1841
|
+
"path": "/weight-logs/delete",
|
|
1842
|
+
"exampleInput": {
|
|
1843
|
+
"body": {
|
|
1844
|
+
"id": "item_123"
|
|
1845
|
+
}
|
|
1846
|
+
}
|
|
1847
|
+
},
|
|
1848
|
+
"WeightLogs.weightLogsDeleteMany": {
|
|
1849
|
+
"operationId": "weightLogs-deleteMany",
|
|
1850
|
+
"summary": "Delete many weight logs",
|
|
1851
|
+
"description": "Delete multiple weight log entries.",
|
|
1852
|
+
"httpMethod": "POST",
|
|
1853
|
+
"path": "/weight-logs/delete-many",
|
|
1854
|
+
"exampleInput": {
|
|
1855
|
+
"body": {
|
|
1856
|
+
"ids": [
|
|
1857
|
+
"item_123"
|
|
1858
|
+
]
|
|
1859
|
+
}
|
|
1860
|
+
}
|
|
1861
|
+
},
|
|
1862
|
+
"WeightLogs.weightLogsGetSettings": {
|
|
1863
|
+
"operationId": "weightLogs-getSettings",
|
|
1864
|
+
"summary": "Get weight settings",
|
|
1865
|
+
"description": "Get user weight unit preferences.",
|
|
1866
|
+
"httpMethod": "POST",
|
|
1867
|
+
"path": "/weight-logs/settings/get"
|
|
1868
|
+
},
|
|
1869
|
+
"WeightLogs.weightLogsUpdateWeightUnit": {
|
|
1870
|
+
"operationId": "weightLogs-updateWeightUnit",
|
|
1871
|
+
"summary": "Update weight settings",
|
|
1872
|
+
"description": "Update user weight unit preference.",
|
|
1873
|
+
"httpMethod": "POST",
|
|
1874
|
+
"path": "/weight-logs/settings/update",
|
|
1875
|
+
"exampleInput": {
|
|
1876
|
+
"body": {
|
|
1877
|
+
"weightUnit": "kg"
|
|
1878
|
+
}
|
|
1879
|
+
}
|
|
1880
|
+
},
|
|
1881
|
+
"WeightLogs.weightLogsGetWeightsForWidget": {
|
|
1882
|
+
"operationId": "weightLogs-getWeightsForWidget",
|
|
1883
|
+
"summary": "Get weights for widget",
|
|
1884
|
+
"description": "Get recent weight data points for widget charts.",
|
|
1885
|
+
"httpMethod": "POST",
|
|
1886
|
+
"path": "/weight-logs/widget"
|
|
1887
|
+
},
|
|
1888
|
+
"WeightLogs.weightLogsGetCurrentActiveGoal": {
|
|
1889
|
+
"operationId": "weightLogs-getCurrentActiveGoal",
|
|
1890
|
+
"summary": "Get current weight goal",
|
|
1891
|
+
"description": "Get the active weight goal with start and current weight context.",
|
|
1892
|
+
"httpMethod": "POST",
|
|
1893
|
+
"path": "/weight-logs/current-goal"
|
|
1894
|
+
},
|
|
1895
|
+
"Workouts.workoutsDelete": {
|
|
1896
|
+
"operationId": "workouts-delete",
|
|
1897
|
+
"summary": "Delete workout",
|
|
1898
|
+
"description": "Delete a workout",
|
|
1899
|
+
"httpMethod": "DELETE",
|
|
1900
|
+
"path": "/workouts/{id}",
|
|
1901
|
+
"exampleInput": {
|
|
1902
|
+
"path": {
|
|
1903
|
+
"id": "item_123"
|
|
1904
|
+
}
|
|
1905
|
+
}
|
|
1906
|
+
},
|
|
1907
|
+
"Workouts.workoutsUpdate": {
|
|
1908
|
+
"operationId": "workouts-update",
|
|
1909
|
+
"summary": "Update workout",
|
|
1910
|
+
"description": "Update an existing workout",
|
|
1911
|
+
"httpMethod": "PATCH",
|
|
1912
|
+
"path": "/workouts/{id}",
|
|
1913
|
+
"exampleInput": {
|
|
1914
|
+
"path": {
|
|
1915
|
+
"id": "item_123"
|
|
1916
|
+
},
|
|
1917
|
+
"body": {
|
|
1918
|
+
"data": {
|
|
1919
|
+
"name": "Example",
|
|
1920
|
+
"startedAt": {
|
|
1921
|
+
"timezone": "Europe/Warsaw",
|
|
1922
|
+
"dateInUsersTimezone": "2026-03-30"
|
|
1923
|
+
}
|
|
1924
|
+
}
|
|
1925
|
+
}
|
|
1926
|
+
}
|
|
1927
|
+
},
|
|
1928
|
+
"Workouts.workoutsGet": {
|
|
1929
|
+
"operationId": "workouts-get",
|
|
1930
|
+
"summary": "Get workout",
|
|
1931
|
+
"description": "Get a single workout by ID",
|
|
1932
|
+
"httpMethod": "POST",
|
|
1933
|
+
"path": "/workouts/{id}",
|
|
1934
|
+
"exampleInput": {
|
|
1935
|
+
"path": {
|
|
1936
|
+
"id": "item_123"
|
|
1937
|
+
}
|
|
1938
|
+
}
|
|
1939
|
+
},
|
|
1940
|
+
"Workouts.workoutsList": {
|
|
1941
|
+
"operationId": "workouts-list",
|
|
1942
|
+
"summary": "List workouts",
|
|
1943
|
+
"description": "List workouts for a date range",
|
|
1944
|
+
"httpMethod": "POST",
|
|
1945
|
+
"path": "/workouts/list",
|
|
1946
|
+
"exampleInput": {
|
|
1947
|
+
"body": {
|
|
1948
|
+
"dateFrom": "2026-03-30",
|
|
1949
|
+
"dateTo": "2026-03-30"
|
|
1950
|
+
}
|
|
1951
|
+
}
|
|
1952
|
+
},
|
|
1953
|
+
"Workouts.workoutsCreate": {
|
|
1954
|
+
"operationId": "workouts-create",
|
|
1955
|
+
"summary": "Create workout",
|
|
1956
|
+
"description": "Create a new workout",
|
|
1957
|
+
"httpMethod": "POST",
|
|
1958
|
+
"path": "/workouts",
|
|
1959
|
+
"exampleInput": {
|
|
1960
|
+
"body": {
|
|
1961
|
+
"name": "Example",
|
|
1962
|
+
"startedAt": {
|
|
1963
|
+
"timezone": "Europe/Warsaw",
|
|
1964
|
+
"dateInUsersTimezone": "2026-03-30"
|
|
1965
|
+
}
|
|
1966
|
+
}
|
|
1967
|
+
}
|
|
1968
|
+
},
|
|
1969
|
+
"Workouts.workoutsInProgress": {
|
|
1970
|
+
"operationId": "workouts-inProgress",
|
|
1971
|
+
"summary": "Get in-progress workout",
|
|
1972
|
+
"description": "Get the currently in-progress workout",
|
|
1973
|
+
"httpMethod": "POST",
|
|
1974
|
+
"path": "/workouts/in-progress"
|
|
1975
|
+
},
|
|
1976
|
+
"Workouts.workoutsStart": {
|
|
1977
|
+
"operationId": "workouts-start",
|
|
1978
|
+
"summary": "Start workout",
|
|
1979
|
+
"description": "Start a new workout",
|
|
1980
|
+
"httpMethod": "POST",
|
|
1981
|
+
"path": "/workouts/start",
|
|
1982
|
+
"exampleInput": {
|
|
1983
|
+
"body": {
|
|
1984
|
+
"name": "Example"
|
|
1985
|
+
}
|
|
1986
|
+
}
|
|
1987
|
+
},
|
|
1988
|
+
"Workouts.workoutsEnd": {
|
|
1989
|
+
"operationId": "workouts-end",
|
|
1990
|
+
"summary": "End workout",
|
|
1991
|
+
"description": "End an in-progress workout",
|
|
1992
|
+
"httpMethod": "POST",
|
|
1993
|
+
"path": "/workouts/end",
|
|
1994
|
+
"exampleInput": {
|
|
1995
|
+
"body": {
|
|
1996
|
+
"id": "item_123"
|
|
1997
|
+
}
|
|
1998
|
+
}
|
|
1999
|
+
},
|
|
2000
|
+
"Workouts.workoutsDuplicate": {
|
|
2001
|
+
"operationId": "workouts-duplicate",
|
|
2002
|
+
"summary": "Duplicate workout",
|
|
2003
|
+
"description": "Duplicate an existing workout",
|
|
2004
|
+
"httpMethod": "POST",
|
|
2005
|
+
"path": "/workouts/{id}/duplicate",
|
|
2006
|
+
"exampleInput": {
|
|
2007
|
+
"path": {
|
|
2008
|
+
"id": "item_123"
|
|
2009
|
+
}
|
|
2010
|
+
}
|
|
2011
|
+
},
|
|
2012
|
+
"Workouts.workoutsGetWithDetails": {
|
|
2013
|
+
"operationId": "workouts-getWithDetails",
|
|
2014
|
+
"summary": "Get workout with details",
|
|
2015
|
+
"description": "Get a workout with full details (exercises, sets)",
|
|
2016
|
+
"httpMethod": "POST",
|
|
2017
|
+
"path": "/workouts/{id}/details",
|
|
2018
|
+
"exampleInput": {
|
|
2019
|
+
"path": {
|
|
2020
|
+
"id": "item_123"
|
|
2021
|
+
}
|
|
2022
|
+
}
|
|
2023
|
+
},
|
|
2024
|
+
"Workouts.workoutsUpdateName": {
|
|
2025
|
+
"operationId": "workouts-updateName",
|
|
2026
|
+
"summary": "Update workout name",
|
|
2027
|
+
"description": "Update the name of a workout",
|
|
2028
|
+
"httpMethod": "PATCH",
|
|
2029
|
+
"path": "/workouts/{id}/name",
|
|
2030
|
+
"exampleInput": {
|
|
2031
|
+
"path": {
|
|
2032
|
+
"id": "item_123"
|
|
2033
|
+
},
|
|
2034
|
+
"body": {
|
|
2035
|
+
"name": "Example"
|
|
2036
|
+
}
|
|
2037
|
+
}
|
|
2038
|
+
},
|
|
2039
|
+
"Workouts.workoutsActiveUsers": {
|
|
2040
|
+
"operationId": "workouts-activeUsers",
|
|
2041
|
+
"summary": "Get active users",
|
|
2042
|
+
"description": "Get users who are currently working out",
|
|
2043
|
+
"httpMethod": "POST",
|
|
2044
|
+
"path": "/workouts/active-users"
|
|
2045
|
+
},
|
|
2046
|
+
"Workouts.workoutsSubmitComplete": {
|
|
2047
|
+
"operationId": "workouts-submitComplete",
|
|
2048
|
+
"summary": "Submit complete workout",
|
|
2049
|
+
"description": "Submit a complete workout with all exercises and sets",
|
|
2050
|
+
"httpMethod": "POST",
|
|
2051
|
+
"path": "/workouts/submit-complete",
|
|
2052
|
+
"exampleInput": {
|
|
2053
|
+
"body": {
|
|
2054
|
+
"name": "Example",
|
|
2055
|
+
"startedAt": "string",
|
|
2056
|
+
"endedAt": "string"
|
|
2057
|
+
}
|
|
2058
|
+
}
|
|
2059
|
+
},
|
|
2060
|
+
"Journal.journalEntriesList": {
|
|
2061
|
+
"operationId": "journalEntries-list",
|
|
2062
|
+
"summary": "List journal entries",
|
|
2063
|
+
"description": "List journal entries for a date range",
|
|
2064
|
+
"httpMethod": "POST",
|
|
2065
|
+
"path": "/journal/entries/list",
|
|
2066
|
+
"exampleInput": {
|
|
2067
|
+
"body": {
|
|
2068
|
+
"encryptionKey": "string",
|
|
2069
|
+
"dateFrom": "2026-03-30"
|
|
2070
|
+
}
|
|
2071
|
+
}
|
|
2072
|
+
},
|
|
2073
|
+
"Journal.journalEntriesStats": {
|
|
2074
|
+
"operationId": "journalEntries-stats",
|
|
2075
|
+
"summary": "Get journal stats",
|
|
2076
|
+
"description": "Get statistics for journal entries",
|
|
2077
|
+
"httpMethod": "POST",
|
|
2078
|
+
"path": "/journal/stats",
|
|
2079
|
+
"exampleInput": {
|
|
2080
|
+
"body": {
|
|
2081
|
+
"encryptionKey": "string"
|
|
2082
|
+
}
|
|
2083
|
+
}
|
|
2084
|
+
},
|
|
2085
|
+
"Journal.journalEntriesDelete": {
|
|
2086
|
+
"operationId": "journalEntries-delete",
|
|
2087
|
+
"summary": "Delete journal entry",
|
|
2088
|
+
"description": "Delete a journal entry",
|
|
2089
|
+
"httpMethod": "DELETE",
|
|
2090
|
+
"path": "/journal/entries/{id}",
|
|
2091
|
+
"exampleInput": {
|
|
2092
|
+
"path": {
|
|
2093
|
+
"id": "item_123"
|
|
2094
|
+
}
|
|
2095
|
+
}
|
|
2096
|
+
},
|
|
2097
|
+
"Journal.journalEntriesUpdate": {
|
|
2098
|
+
"operationId": "journalEntries-update",
|
|
2099
|
+
"summary": "Update journal entry",
|
|
2100
|
+
"description": "Update an existing journal entry",
|
|
2101
|
+
"httpMethod": "PATCH",
|
|
2102
|
+
"path": "/journal/entries/{id}",
|
|
2103
|
+
"exampleInput": {
|
|
2104
|
+
"path": {
|
|
2105
|
+
"id": "item_123"
|
|
2106
|
+
},
|
|
2107
|
+
"body": {
|
|
2108
|
+
"data": {
|
|
2109
|
+
"title": "Example",
|
|
2110
|
+
"content": "Example"
|
|
2111
|
+
}
|
|
2112
|
+
}
|
|
2113
|
+
}
|
|
2114
|
+
},
|
|
2115
|
+
"Journal.journalEntriesGet": {
|
|
2116
|
+
"operationId": "journalEntries-get",
|
|
2117
|
+
"summary": "Get journal entry",
|
|
2118
|
+
"description": "Get a single journal entry",
|
|
2119
|
+
"httpMethod": "POST",
|
|
2120
|
+
"path": "/journal/entries/{id}",
|
|
2121
|
+
"exampleInput": {
|
|
2122
|
+
"path": {
|
|
2123
|
+
"id": "item_123"
|
|
2124
|
+
},
|
|
2125
|
+
"body": {
|
|
2126
|
+
"encryptionKey": "string"
|
|
2127
|
+
}
|
|
2128
|
+
}
|
|
2129
|
+
},
|
|
2130
|
+
"Journal.journalEntriesGetForDecrypting": {
|
|
2131
|
+
"operationId": "journalEntries-getForDecrypting",
|
|
2132
|
+
"summary": "Get entry for decrypting",
|
|
2133
|
+
"description": "Get entry for decrypting without persisting changes",
|
|
2134
|
+
"httpMethod": "POST",
|
|
2135
|
+
"path": "/journal/entries/{id}/decrypt-preview",
|
|
2136
|
+
"exampleInput": {
|
|
2137
|
+
"path": {
|
|
2138
|
+
"id": "item_123"
|
|
2139
|
+
},
|
|
2140
|
+
"body": {
|
|
2141
|
+
"encryptionKey": "string"
|
|
2142
|
+
}
|
|
2143
|
+
}
|
|
2144
|
+
},
|
|
2145
|
+
"Journal.journalEntriesCreate": {
|
|
2146
|
+
"operationId": "journalEntries-create",
|
|
2147
|
+
"summary": "Create journal entry",
|
|
2148
|
+
"description": "Create a new journal entry",
|
|
2149
|
+
"httpMethod": "POST",
|
|
2150
|
+
"path": "/journal/entries",
|
|
2151
|
+
"exampleInput": {
|
|
2152
|
+
"body": {
|
|
2153
|
+
"content": "Example"
|
|
2154
|
+
}
|
|
2155
|
+
}
|
|
2156
|
+
},
|
|
2157
|
+
"Journal.journalEntriesDeleteMany": {
|
|
2158
|
+
"operationId": "journalEntries-deleteMany",
|
|
2159
|
+
"summary": "Delete multiple entries",
|
|
2160
|
+
"description": "Delete multiple journal entries",
|
|
2161
|
+
"httpMethod": "POST",
|
|
2162
|
+
"path": "/journal/entries/delete-many",
|
|
2163
|
+
"exampleInput": {
|
|
2164
|
+
"body": {
|
|
2165
|
+
"ids": [
|
|
2166
|
+
"item_123"
|
|
2167
|
+
]
|
|
2168
|
+
}
|
|
2169
|
+
}
|
|
2170
|
+
},
|
|
2171
|
+
"Journal.journalEntriesUpdateManyEncryption": {
|
|
2172
|
+
"operationId": "journalEntries-updateManyEncryption",
|
|
2173
|
+
"summary": "Update encryption status",
|
|
2174
|
+
"description": "Update encryption status for multiple entries",
|
|
2175
|
+
"httpMethod": "POST",
|
|
2176
|
+
"path": "/journal/entries/update-many-encryption",
|
|
2177
|
+
"exampleInput": {
|
|
2178
|
+
"body": {
|
|
2179
|
+
"ids": [
|
|
2180
|
+
"item_123"
|
|
2181
|
+
],
|
|
2182
|
+
"encrypted": true
|
|
2183
|
+
}
|
|
2184
|
+
}
|
|
2185
|
+
},
|
|
2186
|
+
"Journal.journalEntriesEncryptMany": {
|
|
2187
|
+
"operationId": "journalEntries-encryptMany",
|
|
2188
|
+
"summary": "Encrypt multiple entries",
|
|
2189
|
+
"description": "Encrypt multiple journal entries",
|
|
2190
|
+
"httpMethod": "POST",
|
|
2191
|
+
"path": "/journal/entries/encrypt-many",
|
|
2192
|
+
"exampleInput": {
|
|
2193
|
+
"body": {
|
|
2194
|
+
"ids": [
|
|
2195
|
+
"item_123"
|
|
2196
|
+
],
|
|
2197
|
+
"encryptionKey": "string"
|
|
2198
|
+
}
|
|
2199
|
+
}
|
|
2200
|
+
},
|
|
2201
|
+
"Journal.journalEntriesEncrypt": {
|
|
2202
|
+
"operationId": "journalEntries-encrypt",
|
|
2203
|
+
"summary": "Encrypt entry",
|
|
2204
|
+
"description": "Encrypt a single journal entry",
|
|
2205
|
+
"httpMethod": "POST",
|
|
2206
|
+
"path": "/journal/entries/{id}/encrypt",
|
|
2207
|
+
"exampleInput": {
|
|
2208
|
+
"path": {
|
|
2209
|
+
"id": "item_123"
|
|
2210
|
+
},
|
|
2211
|
+
"body": {
|
|
2212
|
+
"encryptionKey": "string"
|
|
2213
|
+
}
|
|
2214
|
+
}
|
|
2215
|
+
},
|
|
2216
|
+
"Journal.journalEntriesDecrypt": {
|
|
2217
|
+
"operationId": "journalEntries-decrypt",
|
|
2218
|
+
"summary": "Decrypt entry",
|
|
2219
|
+
"description": "Permanently decrypt a journal entry",
|
|
2220
|
+
"httpMethod": "POST",
|
|
2221
|
+
"path": "/journal/entries/{id}/decrypt",
|
|
2222
|
+
"exampleInput": {
|
|
2223
|
+
"path": {
|
|
2224
|
+
"id": "item_123"
|
|
2225
|
+
},
|
|
2226
|
+
"body": {
|
|
2227
|
+
"encryptionKey": "string"
|
|
2228
|
+
}
|
|
2229
|
+
}
|
|
2230
|
+
},
|
|
2231
|
+
"Journal.journalEntriesToggleEncryption": {
|
|
2232
|
+
"operationId": "journalEntries-toggleEncryption",
|
|
2233
|
+
"summary": "Toggle encryption flag",
|
|
2234
|
+
"description": "Toggle encryption flag without processing content",
|
|
2235
|
+
"httpMethod": "POST",
|
|
2236
|
+
"path": "/journal/entries/{id}/toggle-encryption",
|
|
2237
|
+
"exampleInput": {
|
|
2238
|
+
"path": {
|
|
2239
|
+
"id": "item_123"
|
|
2240
|
+
}
|
|
2241
|
+
}
|
|
2242
|
+
},
|
|
2243
|
+
"PlannerEventLists.plannerEventListsList": {
|
|
2244
|
+
"operationId": "plannerEventLists-list",
|
|
2245
|
+
"summary": "List planner event lists",
|
|
2246
|
+
"description": "List planner event lists for the current user",
|
|
2247
|
+
"httpMethod": "POST",
|
|
2248
|
+
"path": "/planner-event-lists/list"
|
|
2249
|
+
},
|
|
2250
|
+
"PlannerEventLists.plannerEventListsHasSharedLists": {
|
|
2251
|
+
"operationId": "plannerEventLists-hasSharedLists",
|
|
2252
|
+
"summary": "Check if user has shared planner event lists",
|
|
2253
|
+
"description": "Returns whether the current user has planner event lists shared with them",
|
|
2254
|
+
"httpMethod": "POST",
|
|
2255
|
+
"path": "/planner-event-lists/has-shared-lists"
|
|
2256
|
+
},
|
|
2257
|
+
"PlannerEventLists.plannerEventListsDelete": {
|
|
2258
|
+
"operationId": "plannerEventLists-delete",
|
|
2259
|
+
"summary": "Delete planner event list",
|
|
2260
|
+
"description": "Delete a planner event list",
|
|
2261
|
+
"httpMethod": "DELETE",
|
|
2262
|
+
"path": "/planner-event-lists/{id}",
|
|
2263
|
+
"exampleInput": {
|
|
2264
|
+
"path": {
|
|
2265
|
+
"id": "item_123"
|
|
2266
|
+
}
|
|
2267
|
+
}
|
|
2268
|
+
},
|
|
2269
|
+
"PlannerEventLists.plannerEventListsUpdate": {
|
|
2270
|
+
"operationId": "plannerEventLists-update",
|
|
2271
|
+
"summary": "Update planner event list",
|
|
2272
|
+
"description": "Update an existing planner event list",
|
|
2273
|
+
"httpMethod": "PATCH",
|
|
2274
|
+
"path": "/planner-event-lists/{id}",
|
|
2275
|
+
"exampleInput": {
|
|
2276
|
+
"path": {
|
|
2277
|
+
"id": "item_123"
|
|
2278
|
+
},
|
|
2279
|
+
"body": {
|
|
2280
|
+
"data": {
|
|
2281
|
+
"name": "Example",
|
|
2282
|
+
"emoji": "string"
|
|
2283
|
+
}
|
|
2284
|
+
}
|
|
2285
|
+
}
|
|
2286
|
+
},
|
|
2287
|
+
"PlannerEventLists.plannerEventListsGet": {
|
|
2288
|
+
"operationId": "plannerEventLists-get",
|
|
2289
|
+
"summary": "Get planner event list",
|
|
2290
|
+
"description": "Get a single planner event list by ID",
|
|
2291
|
+
"httpMethod": "POST",
|
|
2292
|
+
"path": "/planner-event-lists/{id}",
|
|
2293
|
+
"exampleInput": {
|
|
2294
|
+
"path": {
|
|
2295
|
+
"id": "item_123"
|
|
2296
|
+
}
|
|
2297
|
+
}
|
|
2298
|
+
},
|
|
2299
|
+
"PlannerEventLists.plannerEventListsCreate": {
|
|
2300
|
+
"operationId": "plannerEventLists-create",
|
|
2301
|
+
"summary": "Create planner event list",
|
|
2302
|
+
"description": "Create a new planner event list",
|
|
2303
|
+
"httpMethod": "POST",
|
|
2304
|
+
"path": "/planner-event-lists",
|
|
2305
|
+
"exampleInput": {
|
|
2306
|
+
"body": {
|
|
2307
|
+
"name": "Example"
|
|
2308
|
+
}
|
|
2309
|
+
}
|
|
2310
|
+
},
|
|
2311
|
+
"TodoViews.todoViewsDone": {
|
|
2312
|
+
"operationId": "todoViews-done",
|
|
2313
|
+
"summary": "List completed todos",
|
|
2314
|
+
"description": "List completed todos for the current user.",
|
|
2315
|
+
"httpMethod": "POST",
|
|
2316
|
+
"path": "/todo-views/done",
|
|
2317
|
+
"exampleInput": {
|
|
2318
|
+
"body": {
|
|
2319
|
+
"taskType": "personal"
|
|
2320
|
+
}
|
|
2321
|
+
}
|
|
2322
|
+
},
|
|
2323
|
+
"TodoViews.todoViewsTrash": {
|
|
2324
|
+
"operationId": "todoViews-trash",
|
|
2325
|
+
"summary": "List trashed todos",
|
|
2326
|
+
"description": "List deleted todos for the current user.",
|
|
2327
|
+
"httpMethod": "POST",
|
|
2328
|
+
"path": "/todo-views/trash",
|
|
2329
|
+
"exampleInput": {
|
|
2330
|
+
"body": {
|
|
2331
|
+
"skip": 1,
|
|
2332
|
+
"take": 1
|
|
2333
|
+
}
|
|
2334
|
+
}
|
|
2335
|
+
},
|
|
2336
|
+
"TodoViews.todoViewsPaused": {
|
|
2337
|
+
"operationId": "todoViews-paused",
|
|
2338
|
+
"summary": "List paused todos",
|
|
2339
|
+
"description": "List paused todos for the current user.",
|
|
2340
|
+
"httpMethod": "POST",
|
|
2341
|
+
"path": "/todo-views/paused",
|
|
2342
|
+
"exampleInput": {
|
|
2343
|
+
"body": {
|
|
2344
|
+
"taskType": "personal"
|
|
2345
|
+
}
|
|
2346
|
+
}
|
|
2347
|
+
},
|
|
2348
|
+
"TodoViews.todoViewsRecurring": {
|
|
2349
|
+
"operationId": "todoViews-recurring",
|
|
2350
|
+
"summary": "List recurring todos",
|
|
2351
|
+
"description": "List recurring todos for the current user.",
|
|
2352
|
+
"httpMethod": "POST",
|
|
2353
|
+
"path": "/todo-views/recurring",
|
|
2354
|
+
"exampleInput": {
|
|
2355
|
+
"body": {
|
|
2356
|
+
"taskType": "personal"
|
|
2357
|
+
}
|
|
2358
|
+
}
|
|
2359
|
+
},
|
|
2360
|
+
"TodoViews.todoViewsSharing": {
|
|
2361
|
+
"operationId": "todoViews-sharing",
|
|
2362
|
+
"summary": "Get todo list sharing info",
|
|
2363
|
+
"description": "Get sharing details for a todo list visible to the current user.",
|
|
2364
|
+
"httpMethod": "POST",
|
|
2365
|
+
"path": "/todo-views/sharing",
|
|
2366
|
+
"exampleInput": {
|
|
2367
|
+
"body": {
|
|
2368
|
+
"listId": "list_123"
|
|
2369
|
+
}
|
|
2370
|
+
}
|
|
2371
|
+
},
|
|
2372
|
+
"ProjectSections.projectSectionsDelete": {
|
|
2373
|
+
"operationId": "projectSections-delete",
|
|
2374
|
+
"summary": "Delete project section",
|
|
2375
|
+
"description": "Delete a project section and optionally its todos.",
|
|
2376
|
+
"httpMethod": "DELETE",
|
|
2377
|
+
"path": "/project-sections/{id}",
|
|
2378
|
+
"exampleInput": {
|
|
2379
|
+
"path": {
|
|
2380
|
+
"id": "item_123"
|
|
2381
|
+
},
|
|
2382
|
+
"query": {
|
|
2383
|
+
"deleteTodos": true
|
|
2384
|
+
}
|
|
2385
|
+
}
|
|
2386
|
+
},
|
|
2387
|
+
"ProjectSections.projectSectionsUpdate": {
|
|
2388
|
+
"operationId": "projectSections-update",
|
|
2389
|
+
"summary": "Update project section",
|
|
2390
|
+
"description": "Update a project section visible to the current user.",
|
|
2391
|
+
"httpMethod": "PATCH",
|
|
2392
|
+
"path": "/project-sections/{id}",
|
|
2393
|
+
"exampleInput": {
|
|
2394
|
+
"path": {
|
|
2395
|
+
"id": "item_123"
|
|
2396
|
+
},
|
|
2397
|
+
"body": {
|
|
2398
|
+
"data": {
|
|
2399
|
+
"name": "Example"
|
|
2400
|
+
}
|
|
2401
|
+
}
|
|
2402
|
+
}
|
|
2403
|
+
},
|
|
2404
|
+
"TodoListSections.todoListSectionsDelete": {
|
|
2405
|
+
"operationId": "todoListSections-delete",
|
|
2406
|
+
"summary": "Delete todo list section",
|
|
2407
|
+
"description": "Delete a todo list section and optionally its todos.",
|
|
2408
|
+
"httpMethod": "DELETE",
|
|
2409
|
+
"path": "/todo-list-sections/{id}",
|
|
2410
|
+
"exampleInput": {
|
|
2411
|
+
"path": {
|
|
2412
|
+
"id": "item_123"
|
|
2413
|
+
},
|
|
2414
|
+
"query": {
|
|
2415
|
+
"deleteTodos": true
|
|
2416
|
+
}
|
|
2417
|
+
}
|
|
2418
|
+
},
|
|
2419
|
+
"TodoListSections.todoListSectionsUpdate": {
|
|
2420
|
+
"operationId": "todoListSections-update",
|
|
2421
|
+
"summary": "Update todo list section",
|
|
2422
|
+
"description": "Update a todo list section visible to the current user.",
|
|
2423
|
+
"httpMethod": "PATCH",
|
|
2424
|
+
"path": "/todo-list-sections/{id}",
|
|
2425
|
+
"exampleInput": {
|
|
2426
|
+
"path": {
|
|
2427
|
+
"id": "item_123"
|
|
2428
|
+
},
|
|
2429
|
+
"body": {
|
|
2430
|
+
"data": {
|
|
2431
|
+
"name": "Example"
|
|
2432
|
+
}
|
|
2433
|
+
}
|
|
2434
|
+
}
|
|
2435
|
+
},
|
|
2436
|
+
"Countdowns.countdownsList": {
|
|
2437
|
+
"operationId": "countdowns-list",
|
|
2438
|
+
"summary": "List countdowns",
|
|
2439
|
+
"description": "List countdowns for the current user",
|
|
2440
|
+
"httpMethod": "POST",
|
|
2441
|
+
"path": "/countdowns/list"
|
|
2442
|
+
},
|
|
2443
|
+
"Countdowns.countdownsDelete": {
|
|
2444
|
+
"operationId": "countdowns-delete",
|
|
2445
|
+
"summary": "Delete countdown",
|
|
2446
|
+
"description": "Delete a countdown",
|
|
2447
|
+
"httpMethod": "DELETE",
|
|
2448
|
+
"path": "/countdowns/{id}",
|
|
2449
|
+
"exampleInput": {
|
|
2450
|
+
"path": {
|
|
2451
|
+
"id": "item_123"
|
|
2452
|
+
}
|
|
2453
|
+
}
|
|
2454
|
+
},
|
|
2455
|
+
"Countdowns.countdownsUpdate": {
|
|
2456
|
+
"operationId": "countdowns-update",
|
|
2457
|
+
"summary": "Update countdown",
|
|
2458
|
+
"description": "Update an existing countdown",
|
|
2459
|
+
"httpMethod": "PATCH",
|
|
2460
|
+
"path": "/countdowns/{id}",
|
|
2461
|
+
"exampleInput": {
|
|
2462
|
+
"path": {
|
|
2463
|
+
"id": "item_123"
|
|
2464
|
+
},
|
|
2465
|
+
"body": {
|
|
2466
|
+
"data": {
|
|
2467
|
+
"title": "Example",
|
|
2468
|
+
"emoji": "string"
|
|
2469
|
+
}
|
|
2470
|
+
}
|
|
2471
|
+
}
|
|
2472
|
+
},
|
|
2473
|
+
"Countdowns.countdownsGet": {
|
|
2474
|
+
"operationId": "countdowns-get",
|
|
2475
|
+
"summary": "Get countdown",
|
|
2476
|
+
"description": "Get a single countdown by ID",
|
|
2477
|
+
"httpMethod": "POST",
|
|
2478
|
+
"path": "/countdowns/{id}",
|
|
2479
|
+
"exampleInput": {
|
|
2480
|
+
"path": {
|
|
2481
|
+
"id": "item_123"
|
|
2482
|
+
}
|
|
2483
|
+
}
|
|
2484
|
+
},
|
|
2485
|
+
"Countdowns.countdownsCreate": {
|
|
2486
|
+
"operationId": "countdowns-create",
|
|
2487
|
+
"summary": "Create countdown",
|
|
2488
|
+
"description": "Create a new countdown",
|
|
2489
|
+
"httpMethod": "POST",
|
|
2490
|
+
"path": "/countdowns",
|
|
2491
|
+
"exampleInput": {
|
|
2492
|
+
"body": {
|
|
2493
|
+
"title": "Example",
|
|
2494
|
+
"emoji": "string"
|
|
2495
|
+
}
|
|
2496
|
+
}
|
|
2497
|
+
},
|
|
2498
|
+
"Locations.locationsDelete": {
|
|
2499
|
+
"operationId": "locations-delete",
|
|
2500
|
+
"summary": "Delete location",
|
|
2501
|
+
"description": "Delete a location by ID.",
|
|
2502
|
+
"httpMethod": "DELETE",
|
|
2503
|
+
"path": "/locations/{id}",
|
|
2504
|
+
"exampleInput": {
|
|
2505
|
+
"path": {
|
|
2506
|
+
"id": "item_123"
|
|
2507
|
+
}
|
|
2508
|
+
}
|
|
2509
|
+
},
|
|
2510
|
+
"Locations.locationsUpdate": {
|
|
2511
|
+
"operationId": "locations-update",
|
|
2512
|
+
"summary": "Update location",
|
|
2513
|
+
"description": "Update an existing location.",
|
|
2514
|
+
"httpMethod": "PATCH",
|
|
2515
|
+
"path": "/locations/{id}",
|
|
2516
|
+
"exampleInput": {
|
|
2517
|
+
"path": {
|
|
2518
|
+
"id": "item_123"
|
|
2519
|
+
},
|
|
2520
|
+
"body": {
|
|
2521
|
+
"data": {
|
|
2522
|
+
"name": "Example",
|
|
2523
|
+
"emoji": "string"
|
|
2524
|
+
}
|
|
2525
|
+
}
|
|
2526
|
+
}
|
|
2527
|
+
},
|
|
2528
|
+
"Locations.locationsGet": {
|
|
2529
|
+
"operationId": "locations-get",
|
|
2530
|
+
"summary": "Get location",
|
|
2531
|
+
"description": "Get a single location by ID.",
|
|
2532
|
+
"httpMethod": "POST",
|
|
2533
|
+
"path": "/locations/{id}",
|
|
2534
|
+
"exampleInput": {
|
|
2535
|
+
"path": {
|
|
2536
|
+
"id": "item_123"
|
|
2537
|
+
}
|
|
2538
|
+
}
|
|
2539
|
+
},
|
|
2540
|
+
"Locations.locationsList": {
|
|
2541
|
+
"operationId": "locations-list",
|
|
2542
|
+
"summary": "List locations",
|
|
2543
|
+
"description": "List locations for the current user.",
|
|
2544
|
+
"httpMethod": "POST",
|
|
2545
|
+
"path": "/locations/list",
|
|
2546
|
+
"exampleInput": {
|
|
2547
|
+
"body": {}
|
|
2548
|
+
}
|
|
2549
|
+
},
|
|
2550
|
+
"Locations.locationsCreate": {
|
|
2551
|
+
"operationId": "locations-create",
|
|
2552
|
+
"summary": "Create location",
|
|
2553
|
+
"description": "Create a new location.",
|
|
2554
|
+
"httpMethod": "POST",
|
|
2555
|
+
"path": "/locations",
|
|
2556
|
+
"exampleInput": {
|
|
2557
|
+
"body": {
|
|
2558
|
+
"name": "Example"
|
|
2559
|
+
}
|
|
2560
|
+
}
|
|
2561
|
+
},
|
|
2562
|
+
"Goals.goalsDelete": {
|
|
2563
|
+
"operationId": "goals-delete",
|
|
2564
|
+
"summary": "Delete goal",
|
|
2565
|
+
"description": "Delete a goal.",
|
|
2566
|
+
"httpMethod": "DELETE",
|
|
2567
|
+
"path": "/goals/{id}",
|
|
2568
|
+
"exampleInput": {
|
|
2569
|
+
"path": {
|
|
2570
|
+
"id": "item_123"
|
|
2571
|
+
}
|
|
2572
|
+
}
|
|
2573
|
+
},
|
|
2574
|
+
"Goals.goalsUpdate": {
|
|
2575
|
+
"operationId": "goals-update",
|
|
2576
|
+
"summary": "Update goal",
|
|
2577
|
+
"description": "Update an existing goal.",
|
|
2578
|
+
"httpMethod": "PATCH",
|
|
2579
|
+
"path": "/goals/{id}",
|
|
2580
|
+
"exampleInput": {
|
|
2581
|
+
"path": {
|
|
2582
|
+
"id": "item_123"
|
|
2583
|
+
},
|
|
2584
|
+
"body": {
|
|
2585
|
+
"data": {
|
|
2586
|
+
"name": "Example",
|
|
2587
|
+
"dueDate": {
|
|
2588
|
+
"timezone": "Europe/Warsaw",
|
|
2589
|
+
"dateInUsersTimezone": "2026-03-30"
|
|
2590
|
+
}
|
|
2591
|
+
}
|
|
2592
|
+
}
|
|
2593
|
+
}
|
|
2594
|
+
},
|
|
2595
|
+
"Goals.goalsGet": {
|
|
2596
|
+
"operationId": "goals-get",
|
|
2597
|
+
"summary": "Get goal",
|
|
2598
|
+
"description": "Fetch a goal by id.",
|
|
2599
|
+
"httpMethod": "POST",
|
|
2600
|
+
"path": "/goals/{id}",
|
|
2601
|
+
"exampleInput": {
|
|
2602
|
+
"path": {
|
|
2603
|
+
"id": "item_123"
|
|
2604
|
+
}
|
|
2605
|
+
}
|
|
2606
|
+
},
|
|
2607
|
+
"Goals.goalsList": {
|
|
2608
|
+
"operationId": "goals-list",
|
|
2609
|
+
"summary": "List goals",
|
|
2610
|
+
"description": "List all goals for the current user.",
|
|
2611
|
+
"httpMethod": "POST",
|
|
2612
|
+
"path": "/goals/list"
|
|
2613
|
+
},
|
|
2614
|
+
"Goals.goalsPublicList": {
|
|
2615
|
+
"operationId": "goals-publicList",
|
|
2616
|
+
"summary": "List public goals",
|
|
2617
|
+
"description": "List public goals for a user by username.",
|
|
2618
|
+
"httpMethod": "POST",
|
|
2619
|
+
"path": "/goals/public/{username}",
|
|
2620
|
+
"exampleInput": {
|
|
2621
|
+
"path": {
|
|
2622
|
+
"username": "Example"
|
|
2623
|
+
}
|
|
2624
|
+
}
|
|
2625
|
+
},
|
|
2626
|
+
"Goals.goalsCreate": {
|
|
2627
|
+
"operationId": "goals-create",
|
|
2628
|
+
"summary": "Create goal",
|
|
2629
|
+
"description": "Create a new goal.",
|
|
2630
|
+
"httpMethod": "POST",
|
|
2631
|
+
"path": "/goals",
|
|
2632
|
+
"exampleInput": {
|
|
2633
|
+
"body": {
|
|
2634
|
+
"name": "Example"
|
|
2635
|
+
}
|
|
2636
|
+
}
|
|
2637
|
+
},
|
|
2638
|
+
"Goals.goalsDeleteMany": {
|
|
2639
|
+
"operationId": "goals-deleteMany",
|
|
2640
|
+
"summary": "Delete many goals",
|
|
2641
|
+
"description": "Delete multiple goals by ids.",
|
|
2642
|
+
"httpMethod": "POST",
|
|
2643
|
+
"path": "/goals/delete-many",
|
|
2644
|
+
"exampleInput": {
|
|
2645
|
+
"body": {
|
|
2646
|
+
"ids": [
|
|
2647
|
+
"item_123"
|
|
2648
|
+
]
|
|
2649
|
+
}
|
|
2650
|
+
}
|
|
2651
|
+
},
|
|
2652
|
+
"BloodPressureLogs.bloodPressureLogsList": {
|
|
2653
|
+
"operationId": "bloodPressureLogs-list",
|
|
2654
|
+
"summary": "List blood pressure logs",
|
|
2655
|
+
"description": "Get blood pressure logs for the current user, optionally filtered by date range.",
|
|
2656
|
+
"httpMethod": "POST",
|
|
2657
|
+
"path": "/blood-pressure-logs/list",
|
|
2658
|
+
"exampleInput": {
|
|
2659
|
+
"body": {
|
|
2660
|
+
"dateFrom": "2026-03-30",
|
|
2661
|
+
"dateTo": "2026-03-30"
|
|
2662
|
+
}
|
|
2663
|
+
}
|
|
2664
|
+
},
|
|
2665
|
+
"BloodPressureLogs.bloodPressureLogsGet": {
|
|
2666
|
+
"operationId": "bloodPressureLogs-get",
|
|
2667
|
+
"summary": "Get blood pressure log",
|
|
2668
|
+
"description": "Get a single blood pressure log by ID.",
|
|
2669
|
+
"httpMethod": "POST",
|
|
2670
|
+
"path": "/blood-pressure-logs/get",
|
|
2671
|
+
"exampleInput": {
|
|
2672
|
+
"body": {
|
|
2673
|
+
"id": "item_123"
|
|
2674
|
+
}
|
|
2675
|
+
}
|
|
2676
|
+
},
|
|
2677
|
+
"BloodPressureLogs.bloodPressureLogsCreate": {
|
|
2678
|
+
"operationId": "bloodPressureLogs-create",
|
|
2679
|
+
"summary": "Create blood pressure log",
|
|
2680
|
+
"description": "Create a new blood pressure log entry.",
|
|
2681
|
+
"httpMethod": "POST",
|
|
2682
|
+
"path": "/blood-pressure-logs/create",
|
|
2683
|
+
"exampleInput": {
|
|
2684
|
+
"body": {
|
|
2685
|
+
"systolic": 1,
|
|
2686
|
+
"diastolic": 1
|
|
2687
|
+
}
|
|
2688
|
+
}
|
|
2689
|
+
},
|
|
2690
|
+
"BloodPressureLogs.bloodPressureLogsUpdate": {
|
|
2691
|
+
"operationId": "bloodPressureLogs-update",
|
|
2692
|
+
"summary": "Update blood pressure log",
|
|
2693
|
+
"description": "Update an existing blood pressure log.",
|
|
2694
|
+
"httpMethod": "POST",
|
|
2695
|
+
"path": "/blood-pressure-logs/update",
|
|
2696
|
+
"exampleInput": {
|
|
2697
|
+
"body": {
|
|
2698
|
+
"id": "item_123",
|
|
2699
|
+
"data": {
|
|
2700
|
+
"systolic": 1,
|
|
2701
|
+
"diastolic": 1
|
|
2702
|
+
}
|
|
2703
|
+
}
|
|
2704
|
+
}
|
|
2705
|
+
},
|
|
2706
|
+
"BloodPressureLogs.bloodPressureLogsDelete": {
|
|
2707
|
+
"operationId": "bloodPressureLogs-delete",
|
|
2708
|
+
"summary": "Delete blood pressure log",
|
|
2709
|
+
"description": "Delete a blood pressure log by ID.",
|
|
2710
|
+
"httpMethod": "POST",
|
|
2711
|
+
"path": "/blood-pressure-logs/delete",
|
|
2712
|
+
"exampleInput": {
|
|
2713
|
+
"body": {
|
|
2714
|
+
"id": "item_123"
|
|
2715
|
+
}
|
|
2716
|
+
}
|
|
2717
|
+
},
|
|
2718
|
+
"BloodPressureLogs.bloodPressureLogsDeleteMany": {
|
|
2719
|
+
"operationId": "bloodPressureLogs-deleteMany",
|
|
2720
|
+
"summary": "Delete multiple blood pressure logs",
|
|
2721
|
+
"description": "Delete blood pressure logs in bulk.",
|
|
2722
|
+
"httpMethod": "POST",
|
|
2723
|
+
"path": "/blood-pressure-logs/delete-many",
|
|
2724
|
+
"exampleInput": {
|
|
2725
|
+
"body": {
|
|
2726
|
+
"ids": [
|
|
2727
|
+
"item_123"
|
|
2728
|
+
]
|
|
2729
|
+
}
|
|
2730
|
+
}
|
|
2731
|
+
},
|
|
2732
|
+
"HydrationTemplates.hydrationTemplatesGet": {
|
|
2733
|
+
"operationId": "hydrationTemplates-get",
|
|
2734
|
+
"summary": "Get hydration template",
|
|
2735
|
+
"description": "Get a single hydration template by ID.",
|
|
2736
|
+
"httpMethod": "POST",
|
|
2737
|
+
"path": "/hydration-templates/get",
|
|
2738
|
+
"exampleInput": {
|
|
2739
|
+
"body": {
|
|
2740
|
+
"id": "item_123"
|
|
2741
|
+
}
|
|
2742
|
+
}
|
|
2743
|
+
},
|
|
2744
|
+
"HydrationTemplates.hydrationTemplatesList": {
|
|
2745
|
+
"operationId": "hydrationTemplates-list",
|
|
2746
|
+
"summary": "List hydration templates",
|
|
2747
|
+
"description": "List hydration templates for the current user.",
|
|
2748
|
+
"httpMethod": "POST",
|
|
2749
|
+
"path": "/hydration-templates/list"
|
|
2750
|
+
},
|
|
2751
|
+
"HydrationTemplates.hydrationTemplatesCreate": {
|
|
2752
|
+
"operationId": "hydrationTemplates-create",
|
|
2753
|
+
"summary": "Create hydration template",
|
|
2754
|
+
"description": "Create a new hydration template.",
|
|
2755
|
+
"httpMethod": "POST",
|
|
2756
|
+
"path": "/hydration-templates",
|
|
2757
|
+
"exampleInput": {
|
|
2758
|
+
"body": {
|
|
2759
|
+
"name": "Example",
|
|
2760
|
+
"amount": 1,
|
|
2761
|
+
"type": "Water"
|
|
2762
|
+
}
|
|
2763
|
+
}
|
|
2764
|
+
},
|
|
2765
|
+
"HydrationTemplates.hydrationTemplatesUpdate": {
|
|
2766
|
+
"operationId": "hydrationTemplates-update",
|
|
2767
|
+
"summary": "Update hydration template",
|
|
2768
|
+
"description": "Update an existing hydration template.",
|
|
2769
|
+
"httpMethod": "PATCH",
|
|
2770
|
+
"path": "/hydration-templates/update",
|
|
2771
|
+
"exampleInput": {
|
|
2772
|
+
"body": {
|
|
2773
|
+
"id": "item_123",
|
|
2774
|
+
"data": {
|
|
2775
|
+
"name": "Example",
|
|
2776
|
+
"amount": 1
|
|
2777
|
+
}
|
|
2778
|
+
}
|
|
2779
|
+
}
|
|
2780
|
+
},
|
|
2781
|
+
"HydrationTemplates.hydrationTemplatesDelete": {
|
|
2782
|
+
"operationId": "hydrationTemplates-delete",
|
|
2783
|
+
"summary": "Delete hydration template",
|
|
2784
|
+
"description": "Delete a hydration template.",
|
|
2785
|
+
"httpMethod": "DELETE",
|
|
2786
|
+
"path": "/hydration-templates/delete",
|
|
2787
|
+
"exampleInput": {
|
|
2788
|
+
"query": {
|
|
2789
|
+
"id": "item_123"
|
|
2790
|
+
}
|
|
2791
|
+
}
|
|
2792
|
+
},
|
|
2793
|
+
"HydrationTemplates.hydrationTemplatesDeleteMany": {
|
|
2794
|
+
"operationId": "hydrationTemplates-deleteMany",
|
|
2795
|
+
"summary": "Delete multiple hydration templates",
|
|
2796
|
+
"description": "Delete multiple hydration templates.",
|
|
2797
|
+
"httpMethod": "POST",
|
|
2798
|
+
"path": "/hydration-templates/delete-many",
|
|
2799
|
+
"exampleInput": {
|
|
2800
|
+
"body": {
|
|
2801
|
+
"ids": [
|
|
2802
|
+
"item_123"
|
|
2803
|
+
]
|
|
2804
|
+
}
|
|
2805
|
+
}
|
|
2806
|
+
},
|
|
2807
|
+
"FoodTemplates.foodTemplatesGet": {
|
|
2808
|
+
"operationId": "foodTemplates-get",
|
|
2809
|
+
"summary": "Get food template",
|
|
2810
|
+
"description": "Get a single food template by ID.",
|
|
2811
|
+
"httpMethod": "POST",
|
|
2812
|
+
"path": "/food-templates/get",
|
|
2813
|
+
"exampleInput": {
|
|
2814
|
+
"body": {
|
|
2815
|
+
"id": "item_123"
|
|
2816
|
+
}
|
|
2817
|
+
}
|
|
2818
|
+
},
|
|
2819
|
+
"FoodTemplates.foodTemplatesList": {
|
|
2820
|
+
"operationId": "foodTemplates-list",
|
|
2821
|
+
"summary": "List food templates",
|
|
2822
|
+
"description": "List food templates for the current user.",
|
|
2823
|
+
"httpMethod": "POST",
|
|
2824
|
+
"path": "/food-templates/list"
|
|
2825
|
+
},
|
|
2826
|
+
"FoodTemplates.foodTemplatesCreate": {
|
|
2827
|
+
"operationId": "foodTemplates-create",
|
|
2828
|
+
"summary": "Create food template",
|
|
2829
|
+
"description": "Create a new food template.",
|
|
2830
|
+
"httpMethod": "POST",
|
|
2831
|
+
"path": "/food-templates",
|
|
2832
|
+
"exampleInput": {
|
|
2833
|
+
"body": {
|
|
2834
|
+
"title": "Example"
|
|
2835
|
+
}
|
|
2836
|
+
}
|
|
2837
|
+
},
|
|
2838
|
+
"FoodTemplates.foodTemplatesUpdate": {
|
|
2839
|
+
"operationId": "foodTemplates-update",
|
|
2840
|
+
"summary": "Update food template",
|
|
2841
|
+
"description": "Update an existing food template.",
|
|
2842
|
+
"httpMethod": "PATCH",
|
|
2843
|
+
"path": "/food-templates/update",
|
|
2844
|
+
"exampleInput": {
|
|
2845
|
+
"body": {
|
|
2846
|
+
"id": "item_123",
|
|
2847
|
+
"data": {
|
|
2848
|
+
"title": "Example",
|
|
2849
|
+
"shortName": "Example"
|
|
2850
|
+
}
|
|
2851
|
+
}
|
|
2852
|
+
}
|
|
2853
|
+
},
|
|
2854
|
+
"FoodTemplates.foodTemplatesDelete": {
|
|
2855
|
+
"operationId": "foodTemplates-delete",
|
|
2856
|
+
"summary": "Delete food template",
|
|
2857
|
+
"description": "Delete a food template.",
|
|
2858
|
+
"httpMethod": "DELETE",
|
|
2859
|
+
"path": "/food-templates/delete",
|
|
2860
|
+
"exampleInput": {
|
|
2861
|
+
"query": {
|
|
2862
|
+
"id": "item_123"
|
|
2863
|
+
}
|
|
2864
|
+
}
|
|
2865
|
+
},
|
|
2866
|
+
"FoodTemplates.foodTemplatesDeleteMany": {
|
|
2867
|
+
"operationId": "foodTemplates-deleteMany",
|
|
2868
|
+
"summary": "Delete multiple food templates",
|
|
2869
|
+
"description": "Delete multiple food templates.",
|
|
2870
|
+
"httpMethod": "POST",
|
|
2871
|
+
"path": "/food-templates/delete-many",
|
|
2872
|
+
"exampleInput": {
|
|
2873
|
+
"body": {
|
|
2874
|
+
"ids": [
|
|
2875
|
+
"item_123"
|
|
2876
|
+
]
|
|
2877
|
+
}
|
|
2878
|
+
}
|
|
2879
|
+
},
|
|
2880
|
+
"IngredientLists.ingredientListsList": {
|
|
2881
|
+
"operationId": "ingredientLists-list",
|
|
2882
|
+
"summary": "List ingredient lists",
|
|
2883
|
+
"description": "List ingredient lists visible to the current user.",
|
|
2884
|
+
"httpMethod": "POST",
|
|
2885
|
+
"path": "/ingredient-lists/list"
|
|
2886
|
+
},
|
|
2887
|
+
"IngredientLists.ingredientListsDelete": {
|
|
2888
|
+
"operationId": "ingredientLists-delete",
|
|
2889
|
+
"summary": "Delete ingredient list",
|
|
2890
|
+
"description": "Delete a single ingredient list.",
|
|
2891
|
+
"httpMethod": "DELETE",
|
|
2892
|
+
"path": "/ingredient-lists/{id}",
|
|
2893
|
+
"exampleInput": {
|
|
2894
|
+
"path": {
|
|
2895
|
+
"id": "item_123"
|
|
2896
|
+
}
|
|
2897
|
+
}
|
|
2898
|
+
},
|
|
2899
|
+
"IngredientLists.ingredientListsUpdate": {
|
|
2900
|
+
"operationId": "ingredientLists-update",
|
|
2901
|
+
"summary": "Update ingredient list",
|
|
2902
|
+
"description": "Update an existing ingredient list.",
|
|
2903
|
+
"httpMethod": "PATCH",
|
|
2904
|
+
"path": "/ingredient-lists/{id}",
|
|
2905
|
+
"exampleInput": {
|
|
2906
|
+
"path": {
|
|
2907
|
+
"id": "item_123"
|
|
2908
|
+
},
|
|
2909
|
+
"body": {
|
|
2910
|
+
"data": {
|
|
2911
|
+
"name": "Example",
|
|
2912
|
+
"emoji": "string"
|
|
2913
|
+
}
|
|
2914
|
+
}
|
|
2915
|
+
}
|
|
2916
|
+
},
|
|
2917
|
+
"IngredientLists.ingredientListsGet": {
|
|
2918
|
+
"operationId": "ingredientLists-get",
|
|
2919
|
+
"summary": "Get ingredient list",
|
|
2920
|
+
"description": "Get a single ingredient list by ID.",
|
|
2921
|
+
"httpMethod": "POST",
|
|
2922
|
+
"path": "/ingredient-lists/{id}",
|
|
2923
|
+
"exampleInput": {
|
|
2924
|
+
"path": {
|
|
2925
|
+
"id": "item_123"
|
|
2926
|
+
}
|
|
2927
|
+
}
|
|
2928
|
+
},
|
|
2929
|
+
"IngredientLists.ingredientListsCreate": {
|
|
2930
|
+
"operationId": "ingredientLists-create",
|
|
2931
|
+
"summary": "Create ingredient list",
|
|
2932
|
+
"description": "Create a new ingredient list.",
|
|
2933
|
+
"httpMethod": "POST",
|
|
2934
|
+
"path": "/ingredient-lists",
|
|
2935
|
+
"exampleInput": {
|
|
2936
|
+
"body": {
|
|
2937
|
+
"name": "Example"
|
|
2938
|
+
}
|
|
2939
|
+
}
|
|
2940
|
+
},
|
|
2941
|
+
"IngredientLists.ingredientListsDeleteMany": {
|
|
2942
|
+
"operationId": "ingredientLists-deleteMany",
|
|
2943
|
+
"summary": "Delete many ingredient lists",
|
|
2944
|
+
"description": "Delete multiple ingredient lists visible to the current user.",
|
|
2945
|
+
"httpMethod": "POST",
|
|
2946
|
+
"path": "/ingredient-lists/delete-many",
|
|
2947
|
+
"exampleInput": {
|
|
2948
|
+
"body": {
|
|
2949
|
+
"ids": [
|
|
2950
|
+
"item_123"
|
|
2951
|
+
]
|
|
2952
|
+
}
|
|
2953
|
+
}
|
|
2954
|
+
},
|
|
2955
|
+
"MealPlans.mealPlansDelete": {
|
|
2956
|
+
"operationId": "mealPlans-delete",
|
|
2957
|
+
"summary": "Delete meal plan",
|
|
2958
|
+
"description": "Delete a meal plan",
|
|
2959
|
+
"httpMethod": "DELETE",
|
|
2960
|
+
"path": "/meal-plans/{id}",
|
|
2961
|
+
"exampleInput": {
|
|
2962
|
+
"path": {
|
|
2963
|
+
"id": "item_123"
|
|
2964
|
+
}
|
|
2965
|
+
}
|
|
2966
|
+
},
|
|
2967
|
+
"MealPlans.mealPlansUpdate": {
|
|
2968
|
+
"operationId": "mealPlans-update",
|
|
2969
|
+
"summary": "Update meal plan",
|
|
2970
|
+
"description": "Update an existing meal plan",
|
|
2971
|
+
"httpMethod": "PATCH",
|
|
2972
|
+
"path": "/meal-plans/{id}",
|
|
2973
|
+
"exampleInput": {
|
|
2974
|
+
"path": {
|
|
2975
|
+
"id": "item_123"
|
|
2976
|
+
},
|
|
2977
|
+
"body": {
|
|
2978
|
+
"data": {
|
|
2979
|
+
"name": "Example",
|
|
2980
|
+
"emoji": "string"
|
|
2981
|
+
}
|
|
2982
|
+
}
|
|
2983
|
+
}
|
|
2984
|
+
},
|
|
2985
|
+
"MealPlans.mealPlansGet": {
|
|
2986
|
+
"operationId": "mealPlans-get",
|
|
2987
|
+
"summary": "Get meal plan",
|
|
2988
|
+
"description": "Get a single meal plan by ID",
|
|
2989
|
+
"httpMethod": "POST",
|
|
2990
|
+
"path": "/meal-plans/{id}",
|
|
2991
|
+
"exampleInput": {
|
|
2992
|
+
"path": {
|
|
2993
|
+
"id": "item_123"
|
|
2994
|
+
}
|
|
2995
|
+
}
|
|
2996
|
+
},
|
|
2997
|
+
"MealPlans.mealPlansList": {
|
|
2998
|
+
"operationId": "mealPlans-list",
|
|
2999
|
+
"summary": "List meal plans",
|
|
3000
|
+
"description": "List meal plans for current user",
|
|
3001
|
+
"httpMethod": "POST",
|
|
3002
|
+
"path": "/meal-plans/list"
|
|
3003
|
+
},
|
|
3004
|
+
"MealPlans.mealPlansCreate": {
|
|
3005
|
+
"operationId": "mealPlans-create",
|
|
3006
|
+
"summary": "Create meal plan",
|
|
3007
|
+
"description": "Create a new meal plan",
|
|
3008
|
+
"httpMethod": "POST",
|
|
3009
|
+
"path": "/meal-plans",
|
|
3010
|
+
"exampleInput": {
|
|
3011
|
+
"body": {
|
|
3012
|
+
"name": "Example",
|
|
3013
|
+
"emoji": "string"
|
|
3014
|
+
}
|
|
3015
|
+
}
|
|
3016
|
+
},
|
|
3017
|
+
"MealPlans.mealPlansDeleteMany": {
|
|
3018
|
+
"operationId": "mealPlans-deleteMany",
|
|
3019
|
+
"summary": "Delete many meal plans",
|
|
3020
|
+
"description": "Delete multiple meal plans",
|
|
3021
|
+
"httpMethod": "POST",
|
|
3022
|
+
"path": "/meal-plans/delete-many",
|
|
3023
|
+
"exampleInput": {
|
|
3024
|
+
"body": {
|
|
3025
|
+
"ids": [
|
|
3026
|
+
"item_123"
|
|
3027
|
+
]
|
|
3028
|
+
}
|
|
3029
|
+
}
|
|
3030
|
+
},
|
|
3031
|
+
"Contacts.contactsList": {
|
|
3032
|
+
"operationId": "contacts-list",
|
|
3033
|
+
"summary": "List contact relationships",
|
|
3034
|
+
"description": "List all contact relationships for the current user, ordered by activity.",
|
|
3035
|
+
"httpMethod": "POST",
|
|
3036
|
+
"path": "/contacts/list",
|
|
3037
|
+
"exampleInput": {
|
|
3038
|
+
"body": {}
|
|
3039
|
+
}
|
|
3040
|
+
},
|
|
3041
|
+
"Contacts.contactsGet": {
|
|
3042
|
+
"operationId": "contacts-get",
|
|
3043
|
+
"summary": "Get a contact relationship",
|
|
3044
|
+
"description": "Get a single contact relationship by id for the current user.",
|
|
3045
|
+
"httpMethod": "POST",
|
|
3046
|
+
"path": "/contacts/get",
|
|
3047
|
+
"exampleInput": {
|
|
3048
|
+
"body": {
|
|
3049
|
+
"id": "item_123"
|
|
3050
|
+
}
|
|
3051
|
+
}
|
|
3052
|
+
},
|
|
3053
|
+
"Contacts.contactsCreate": {
|
|
3054
|
+
"operationId": "contacts-create",
|
|
3055
|
+
"summary": "Create a contact relationship",
|
|
3056
|
+
"description": "Create a new contact (or update an existing one) and relationship entry.",
|
|
3057
|
+
"httpMethod": "POST",
|
|
3058
|
+
"path": "/contacts/create",
|
|
3059
|
+
"exampleInput": {
|
|
3060
|
+
"body": {
|
|
3061
|
+
"name": "Example"
|
|
3062
|
+
}
|
|
3063
|
+
}
|
|
3064
|
+
},
|
|
3065
|
+
"Contacts.contactsUpdate": {
|
|
3066
|
+
"operationId": "contacts-update",
|
|
3067
|
+
"summary": "Update a contact relationship",
|
|
3068
|
+
"description": "Update relationship metadata and contact fields.",
|
|
3069
|
+
"httpMethod": "POST",
|
|
3070
|
+
"path": "/contacts/update",
|
|
3071
|
+
"exampleInput": {
|
|
3072
|
+
"body": {
|
|
3073
|
+
"id": "item_123",
|
|
3074
|
+
"data": {
|
|
3075
|
+
"contactId": "contact_123",
|
|
3076
|
+
"name": "Example"
|
|
3077
|
+
}
|
|
3078
|
+
}
|
|
3079
|
+
}
|
|
3080
|
+
},
|
|
3081
|
+
"Contacts.contactsDelete": {
|
|
3082
|
+
"operationId": "contacts-delete",
|
|
3083
|
+
"summary": "Delete a contact relationship",
|
|
3084
|
+
"description": "Delete a single user contact relationship.",
|
|
3085
|
+
"httpMethod": "POST",
|
|
3086
|
+
"path": "/contacts/delete",
|
|
3087
|
+
"exampleInput": {
|
|
3088
|
+
"body": {
|
|
3089
|
+
"id": "item_123"
|
|
3090
|
+
}
|
|
3091
|
+
}
|
|
3092
|
+
},
|
|
3093
|
+
"Contacts.contactsDeleteMany": {
|
|
3094
|
+
"operationId": "contacts-deleteMany",
|
|
3095
|
+
"summary": "Delete multiple contact relationships",
|
|
3096
|
+
"description": "Delete multiple user contact relationships.",
|
|
3097
|
+
"httpMethod": "POST",
|
|
3098
|
+
"path": "/contacts/delete-many",
|
|
3099
|
+
"exampleInput": {
|
|
3100
|
+
"body": {
|
|
3101
|
+
"ids": [
|
|
3102
|
+
"item_123"
|
|
3103
|
+
]
|
|
3104
|
+
}
|
|
3105
|
+
}
|
|
3106
|
+
},
|
|
3107
|
+
"WeightGoals.weightGoalsDelete": {
|
|
3108
|
+
"operationId": "weightGoals-delete",
|
|
3109
|
+
"summary": "Delete weight goal",
|
|
3110
|
+
"description": "Delete a weight goal by ID.",
|
|
3111
|
+
"httpMethod": "DELETE",
|
|
3112
|
+
"path": "/weight/goals/{id}",
|
|
3113
|
+
"exampleInput": {
|
|
3114
|
+
"path": {
|
|
3115
|
+
"id": "item_123"
|
|
3116
|
+
}
|
|
3117
|
+
}
|
|
3118
|
+
},
|
|
3119
|
+
"WeightGoals.weightGoalsUpdate": {
|
|
3120
|
+
"operationId": "weightGoals-update",
|
|
3121
|
+
"summary": "Update weight goal",
|
|
3122
|
+
"description": "Update an existing weight goal.",
|
|
3123
|
+
"httpMethod": "PATCH",
|
|
3124
|
+
"path": "/weight/goals/{id}",
|
|
3125
|
+
"exampleInput": {
|
|
3126
|
+
"path": {
|
|
3127
|
+
"id": "item_123"
|
|
3128
|
+
},
|
|
3129
|
+
"body": {
|
|
3130
|
+
"data": {
|
|
3131
|
+
"amount": 1,
|
|
3132
|
+
"startsOn": {
|
|
3133
|
+
"timezone": "Europe/Warsaw",
|
|
3134
|
+
"dateInUsersTimezone": "2026-03-30"
|
|
3135
|
+
}
|
|
3136
|
+
}
|
|
3137
|
+
}
|
|
3138
|
+
}
|
|
3139
|
+
},
|
|
3140
|
+
"WeightGoals.weightGoalsGet": {
|
|
3141
|
+
"operationId": "weightGoals-get",
|
|
3142
|
+
"summary": "Get weight goal",
|
|
3143
|
+
"description": "Get a single weight goal by ID.",
|
|
3144
|
+
"httpMethod": "POST",
|
|
3145
|
+
"path": "/weight/goals/{id}",
|
|
3146
|
+
"exampleInput": {
|
|
3147
|
+
"path": {
|
|
3148
|
+
"id": "item_123"
|
|
3149
|
+
}
|
|
3150
|
+
}
|
|
3151
|
+
},
|
|
3152
|
+
"WeightGoals.weightGoalsList": {
|
|
3153
|
+
"operationId": "weightGoals-list",
|
|
3154
|
+
"summary": "List weight goals",
|
|
3155
|
+
"description": "List weight goals for the current user.",
|
|
3156
|
+
"httpMethod": "POST",
|
|
3157
|
+
"path": "/weight/goals/list"
|
|
3158
|
+
},
|
|
3159
|
+
"WeightGoals.weightGoalsCreate": {
|
|
3160
|
+
"operationId": "weightGoals-create",
|
|
3161
|
+
"summary": "Create weight goal",
|
|
3162
|
+
"description": "Create a new weight goal.",
|
|
3163
|
+
"httpMethod": "POST",
|
|
3164
|
+
"path": "/weight/goals",
|
|
3165
|
+
"exampleInput": {
|
|
3166
|
+
"body": {
|
|
3167
|
+
"amount": 1,
|
|
3168
|
+
"startsOn": {
|
|
3169
|
+
"timezone": "Europe/Warsaw",
|
|
3170
|
+
"dateInUsersTimezone": "2026-03-30"
|
|
3171
|
+
}
|
|
3172
|
+
}
|
|
3173
|
+
}
|
|
3174
|
+
},
|
|
3175
|
+
"WeightGoals.weightGoalsDeleteMany": {
|
|
3176
|
+
"operationId": "weightGoals-deleteMany",
|
|
3177
|
+
"summary": "Delete multiple weight goals",
|
|
3178
|
+
"description": "Delete multiple weight goals by ID.",
|
|
3179
|
+
"httpMethod": "POST",
|
|
3180
|
+
"path": "/weight/goals/delete-many",
|
|
3181
|
+
"exampleInput": {
|
|
3182
|
+
"body": {
|
|
3183
|
+
"ids": [
|
|
3184
|
+
"item_123"
|
|
3185
|
+
]
|
|
3186
|
+
}
|
|
3187
|
+
}
|
|
3188
|
+
},
|
|
3189
|
+
"WeightGoals.weightGoalsGetForDate": {
|
|
3190
|
+
"operationId": "weightGoals-getForDate",
|
|
3191
|
+
"summary": "Get weight goal for date",
|
|
3192
|
+
"description": "Get the active weight goal for a date.",
|
|
3193
|
+
"httpMethod": "POST",
|
|
3194
|
+
"path": "/weight/goals/for-date",
|
|
3195
|
+
"exampleInput": {
|
|
3196
|
+
"body": {
|
|
3197
|
+
"date": "2026-03-30"
|
|
3198
|
+
}
|
|
3199
|
+
}
|
|
3200
|
+
},
|
|
3201
|
+
"Problems.problemsList": {
|
|
3202
|
+
"operationId": "problems-list",
|
|
3203
|
+
"summary": "List problems",
|
|
3204
|
+
"description": "List all problems for the current user.",
|
|
3205
|
+
"httpMethod": "GET",
|
|
3206
|
+
"path": "/problems"
|
|
3207
|
+
},
|
|
3208
|
+
"Problems.problemsCreate": {
|
|
3209
|
+
"operationId": "problems-create",
|
|
3210
|
+
"summary": "Create problem",
|
|
3211
|
+
"description": "Create a new problem.",
|
|
3212
|
+
"httpMethod": "POST",
|
|
3213
|
+
"path": "/problems",
|
|
3214
|
+
"exampleInput": {
|
|
3215
|
+
"body": {
|
|
3216
|
+
"name": "Example"
|
|
3217
|
+
}
|
|
3218
|
+
}
|
|
3219
|
+
},
|
|
3220
|
+
"Problems.problemsDelete": {
|
|
3221
|
+
"operationId": "problems-delete",
|
|
3222
|
+
"summary": "Delete problem",
|
|
3223
|
+
"description": "Delete a problem and all related logs.",
|
|
3224
|
+
"httpMethod": "DELETE",
|
|
3225
|
+
"path": "/problems/{id}",
|
|
3226
|
+
"exampleInput": {
|
|
3227
|
+
"path": {
|
|
3228
|
+
"id": "item_123"
|
|
3229
|
+
}
|
|
3230
|
+
}
|
|
3231
|
+
},
|
|
3232
|
+
"Problems.problemsGet": {
|
|
3233
|
+
"operationId": "problems-get",
|
|
3234
|
+
"summary": "Get problem",
|
|
3235
|
+
"description": "Fetch a problem by id.",
|
|
3236
|
+
"httpMethod": "GET",
|
|
3237
|
+
"path": "/problems/{id}",
|
|
3238
|
+
"exampleInput": {
|
|
3239
|
+
"path": {
|
|
3240
|
+
"id": "item_123"
|
|
3241
|
+
}
|
|
3242
|
+
}
|
|
3243
|
+
},
|
|
3244
|
+
"Problems.problemsUpdate": {
|
|
3245
|
+
"operationId": "problems-update",
|
|
3246
|
+
"summary": "Update problem",
|
|
3247
|
+
"description": "Update an existing problem.",
|
|
3248
|
+
"httpMethod": "PATCH",
|
|
3249
|
+
"path": "/problems/{id}",
|
|
3250
|
+
"exampleInput": {
|
|
3251
|
+
"path": {
|
|
3252
|
+
"id": "item_123"
|
|
3253
|
+
},
|
|
3254
|
+
"body": {
|
|
3255
|
+
"data": {
|
|
3256
|
+
"name": "Example",
|
|
3257
|
+
"emoji": "string"
|
|
3258
|
+
}
|
|
3259
|
+
}
|
|
3260
|
+
}
|
|
3261
|
+
},
|
|
3262
|
+
"Problems.problemsDeleteMany": {
|
|
3263
|
+
"operationId": "problems-deleteMany",
|
|
3264
|
+
"summary": "Delete many problems",
|
|
3265
|
+
"description": "Delete multiple problems.",
|
|
3266
|
+
"httpMethod": "POST",
|
|
3267
|
+
"path": "/problems/delete-many",
|
|
3268
|
+
"exampleInput": {
|
|
3269
|
+
"body": {
|
|
3270
|
+
"ids": [
|
|
3271
|
+
"item_123"
|
|
3272
|
+
]
|
|
3273
|
+
}
|
|
3274
|
+
}
|
|
3275
|
+
},
|
|
3276
|
+
"Problems.problemsListLogs": {
|
|
3277
|
+
"operationId": "problems-listLogs",
|
|
3278
|
+
"summary": "List problem logs",
|
|
3279
|
+
"description": "List logs for a problem.",
|
|
3280
|
+
"httpMethod": "GET",
|
|
3281
|
+
"path": "/problems/{problemId}/logs",
|
|
3282
|
+
"exampleInput": {
|
|
3283
|
+
"path": {
|
|
3284
|
+
"problemId": "problem_123"
|
|
3285
|
+
}
|
|
3286
|
+
}
|
|
3287
|
+
},
|
|
3288
|
+
"Problems.problemsCreateLog": {
|
|
3289
|
+
"operationId": "problems-createLog",
|
|
3290
|
+
"summary": "Create problem log",
|
|
3291
|
+
"description": "Create a new problem log entry.",
|
|
3292
|
+
"httpMethod": "POST",
|
|
3293
|
+
"path": "/problems/{problemId}/logs",
|
|
3294
|
+
"exampleInput": {
|
|
3295
|
+
"path": {
|
|
3296
|
+
"problemId": "problem_123"
|
|
3297
|
+
},
|
|
3298
|
+
"body": {
|
|
3299
|
+
"note": "Example",
|
|
3300
|
+
"date": {
|
|
3301
|
+
"timezone": "Europe/Warsaw",
|
|
3302
|
+
"dateInUsersTimezone": "2026-03-30"
|
|
3303
|
+
}
|
|
3304
|
+
}
|
|
3305
|
+
}
|
|
3306
|
+
},
|
|
3307
|
+
"Activities.activitiesGet": {
|
|
3308
|
+
"operationId": "activities-get",
|
|
3309
|
+
"summary": "Get activity",
|
|
3310
|
+
"description": "Get a single activity by ID.",
|
|
3311
|
+
"httpMethod": "POST",
|
|
3312
|
+
"path": "/activities/get",
|
|
3313
|
+
"exampleInput": {
|
|
3314
|
+
"body": {
|
|
3315
|
+
"id": "item_123"
|
|
3316
|
+
}
|
|
3317
|
+
}
|
|
3318
|
+
},
|
|
3319
|
+
"Activities.activitiesList": {
|
|
3320
|
+
"operationId": "activities-list",
|
|
3321
|
+
"summary": "List activities",
|
|
3322
|
+
"description": "List activities for the current user.",
|
|
3323
|
+
"httpMethod": "POST",
|
|
3324
|
+
"path": "/activities/list"
|
|
3325
|
+
},
|
|
3326
|
+
"Activities.activitiesCreate": {
|
|
3327
|
+
"operationId": "activities-create",
|
|
3328
|
+
"summary": "Create activity",
|
|
3329
|
+
"description": "Create a new activity.",
|
|
3330
|
+
"httpMethod": "POST",
|
|
3331
|
+
"path": "/activities",
|
|
3332
|
+
"exampleInput": {
|
|
3333
|
+
"body": {
|
|
3334
|
+
"name": "Example"
|
|
3335
|
+
}
|
|
3336
|
+
}
|
|
3337
|
+
},
|
|
3338
|
+
"Activities.activitiesUpdate": {
|
|
3339
|
+
"operationId": "activities-update",
|
|
3340
|
+
"summary": "Update activity",
|
|
3341
|
+
"description": "Update an existing activity.",
|
|
3342
|
+
"httpMethod": "PATCH",
|
|
3343
|
+
"path": "/activities/update",
|
|
3344
|
+
"exampleInput": {
|
|
3345
|
+
"body": {
|
|
3346
|
+
"id": "item_123",
|
|
3347
|
+
"data": {
|
|
3348
|
+
"name": "Example",
|
|
3349
|
+
"emoji": "string"
|
|
3350
|
+
}
|
|
3351
|
+
}
|
|
3352
|
+
}
|
|
3353
|
+
},
|
|
3354
|
+
"Activities.activitiesDelete": {
|
|
3355
|
+
"operationId": "activities-delete",
|
|
3356
|
+
"summary": "Delete activity",
|
|
3357
|
+
"description": "Delete an activity.",
|
|
3358
|
+
"httpMethod": "DELETE",
|
|
3359
|
+
"path": "/activities/delete",
|
|
3360
|
+
"exampleInput": {
|
|
3361
|
+
"query": {
|
|
3362
|
+
"id": "item_123"
|
|
3363
|
+
}
|
|
3364
|
+
}
|
|
3365
|
+
},
|
|
3366
|
+
"MacroGoals.macroGoalsDelete": {
|
|
3367
|
+
"operationId": "macroGoals-delete",
|
|
3368
|
+
"summary": "Delete macro goal",
|
|
3369
|
+
"description": "Delete a macro goal by ID.",
|
|
3370
|
+
"httpMethod": "DELETE",
|
|
3371
|
+
"path": "/macro/goals/{id}",
|
|
3372
|
+
"exampleInput": {
|
|
3373
|
+
"path": {
|
|
3374
|
+
"id": "item_123"
|
|
3375
|
+
}
|
|
3376
|
+
}
|
|
3377
|
+
},
|
|
3378
|
+
"MacroGoals.macroGoalsUpdate": {
|
|
3379
|
+
"operationId": "macroGoals-update",
|
|
3380
|
+
"summary": "Update macro goal",
|
|
3381
|
+
"description": "Update an existing macro goal.",
|
|
3382
|
+
"httpMethod": "PATCH",
|
|
3383
|
+
"path": "/macro/goals/{id}",
|
|
3384
|
+
"exampleInput": {
|
|
3385
|
+
"path": {
|
|
3386
|
+
"id": "item_123"
|
|
3387
|
+
},
|
|
3388
|
+
"body": {
|
|
3389
|
+
"data": {
|
|
3390
|
+
"date": {
|
|
3391
|
+
"timezone": "Europe/Warsaw",
|
|
3392
|
+
"dateInUsersTimezone": "2026-03-30"
|
|
3393
|
+
},
|
|
3394
|
+
"calories": 1
|
|
3395
|
+
}
|
|
3396
|
+
}
|
|
3397
|
+
}
|
|
3398
|
+
},
|
|
3399
|
+
"MacroGoals.macroGoalsGet": {
|
|
3400
|
+
"operationId": "macroGoals-get",
|
|
3401
|
+
"summary": "Get macro goal",
|
|
3402
|
+
"description": "Get a single macro goal by ID.",
|
|
3403
|
+
"httpMethod": "POST",
|
|
3404
|
+
"path": "/macro/goals/{id}",
|
|
3405
|
+
"exampleInput": {
|
|
3406
|
+
"path": {
|
|
3407
|
+
"id": "item_123"
|
|
3408
|
+
}
|
|
3409
|
+
}
|
|
3410
|
+
},
|
|
3411
|
+
"MacroGoals.macroGoalsList": {
|
|
3412
|
+
"operationId": "macroGoals-list",
|
|
3413
|
+
"summary": "List macro goals",
|
|
3414
|
+
"description": "List macro goals for the current user.",
|
|
3415
|
+
"httpMethod": "POST",
|
|
3416
|
+
"path": "/macro/goals/list"
|
|
3417
|
+
},
|
|
3418
|
+
"MacroGoals.macroGoalsGetForDate": {
|
|
3419
|
+
"operationId": "macroGoals-getForDate",
|
|
3420
|
+
"summary": "Get macro goal for date",
|
|
3421
|
+
"description": "Get the macro goal active for a date.",
|
|
3422
|
+
"httpMethod": "POST",
|
|
3423
|
+
"path": "/macro/goals/for-date",
|
|
3424
|
+
"exampleInput": {
|
|
3425
|
+
"body": {
|
|
3426
|
+
"date": "2026-03-30"
|
|
3427
|
+
}
|
|
3428
|
+
}
|
|
3429
|
+
},
|
|
3430
|
+
"MacroGoals.macroGoalsCreate": {
|
|
3431
|
+
"operationId": "macroGoals-create",
|
|
3432
|
+
"summary": "Create macro goal",
|
|
3433
|
+
"description": "Create a new macro goal for the current user.",
|
|
3434
|
+
"httpMethod": "POST",
|
|
3435
|
+
"path": "/macro/goals",
|
|
3436
|
+
"exampleInput": {
|
|
3437
|
+
"body": {
|
|
3438
|
+
"date": {
|
|
3439
|
+
"timezone": "Europe/Warsaw",
|
|
3440
|
+
"dateInUsersTimezone": "2026-03-30"
|
|
3441
|
+
}
|
|
3442
|
+
}
|
|
3443
|
+
}
|
|
3444
|
+
},
|
|
3445
|
+
"Homes.homesList": {
|
|
3446
|
+
"operationId": "homes-list",
|
|
3447
|
+
"summary": "List homes",
|
|
3448
|
+
"description": "List homes shared with or owned by the current user.",
|
|
3449
|
+
"httpMethod": "GET",
|
|
3450
|
+
"path": "/homes"
|
|
3451
|
+
},
|
|
3452
|
+
"Homes.homesCreate": {
|
|
3453
|
+
"operationId": "homes-create",
|
|
3454
|
+
"summary": "Create home",
|
|
3455
|
+
"description": "Create a home for the current user.",
|
|
3456
|
+
"httpMethod": "POST",
|
|
3457
|
+
"path": "/homes",
|
|
3458
|
+
"exampleInput": {
|
|
3459
|
+
"body": {
|
|
3460
|
+
"name": "Example"
|
|
3461
|
+
}
|
|
3462
|
+
}
|
|
3463
|
+
},
|
|
3464
|
+
"Homes.homesDelete": {
|
|
3465
|
+
"operationId": "homes-delete",
|
|
3466
|
+
"summary": "Delete home",
|
|
3467
|
+
"description": "Delete a home and its dependent rooms, floors, chores, members and invites.",
|
|
3468
|
+
"httpMethod": "DELETE",
|
|
3469
|
+
"path": "/homes/{id}",
|
|
3470
|
+
"exampleInput": {
|
|
3471
|
+
"path": {
|
|
3472
|
+
"id": "item_123"
|
|
3473
|
+
}
|
|
3474
|
+
}
|
|
3475
|
+
},
|
|
3476
|
+
"Homes.homesGet": {
|
|
3477
|
+
"operationId": "homes-get",
|
|
3478
|
+
"summary": "Get home",
|
|
3479
|
+
"description": "Fetch a single home with nested room and chore data.",
|
|
3480
|
+
"httpMethod": "GET",
|
|
3481
|
+
"path": "/homes/{id}",
|
|
3482
|
+
"exampleInput": {
|
|
3483
|
+
"path": {
|
|
3484
|
+
"id": "item_123"
|
|
3485
|
+
}
|
|
3486
|
+
}
|
|
3487
|
+
},
|
|
3488
|
+
"Homes.homesUpdate": {
|
|
3489
|
+
"operationId": "homes-update",
|
|
3490
|
+
"summary": "Update home",
|
|
3491
|
+
"description": "Update home data if user has edit permission.",
|
|
3492
|
+
"httpMethod": "PATCH",
|
|
3493
|
+
"path": "/homes/{id}",
|
|
3494
|
+
"exampleInput": {
|
|
3495
|
+
"path": {
|
|
3496
|
+
"id": "item_123"
|
|
3497
|
+
},
|
|
3498
|
+
"body": {
|
|
3499
|
+
"data": {
|
|
3500
|
+
"name": "Example"
|
|
3501
|
+
}
|
|
3502
|
+
}
|
|
3503
|
+
}
|
|
3504
|
+
},
|
|
3505
|
+
"Ingredients.ingredientsList": {
|
|
3506
|
+
"operationId": "ingredients-list",
|
|
3507
|
+
"summary": "List ingredients",
|
|
3508
|
+
"description": "List ingredients visible to the current user.",
|
|
3509
|
+
"httpMethod": "POST",
|
|
3510
|
+
"path": "/ingredients/list",
|
|
3511
|
+
"exampleInput": {
|
|
3512
|
+
"body": {
|
|
3513
|
+
"ingredientListId": "ingredientlist_123",
|
|
3514
|
+
"status": "InStock"
|
|
3515
|
+
}
|
|
3516
|
+
}
|
|
3517
|
+
},
|
|
3518
|
+
"Ingredients.ingredientsGet": {
|
|
3519
|
+
"operationId": "ingredients-get",
|
|
3520
|
+
"summary": "Get ingredient",
|
|
3521
|
+
"description": "Get a single ingredient by ID.",
|
|
3522
|
+
"httpMethod": "POST",
|
|
3523
|
+
"path": "/ingredients/get",
|
|
3524
|
+
"exampleInput": {
|
|
3525
|
+
"body": {
|
|
3526
|
+
"id": "item_123"
|
|
3527
|
+
}
|
|
3528
|
+
}
|
|
3529
|
+
},
|
|
3530
|
+
"Ingredients.ingredientsCreate": {
|
|
3531
|
+
"operationId": "ingredients-create",
|
|
3532
|
+
"summary": "Create ingredient",
|
|
3533
|
+
"description": "Create a new ingredient.",
|
|
3534
|
+
"httpMethod": "POST",
|
|
3535
|
+
"path": "/ingredients",
|
|
3536
|
+
"exampleInput": {
|
|
3537
|
+
"body": {
|
|
3538
|
+
"name": "Example"
|
|
3539
|
+
}
|
|
3540
|
+
}
|
|
3541
|
+
},
|
|
3542
|
+
"Ingredients.ingredientsUpdate": {
|
|
3543
|
+
"operationId": "ingredients-update",
|
|
3544
|
+
"summary": "Update ingredient",
|
|
3545
|
+
"description": "Update an existing ingredient.",
|
|
3546
|
+
"httpMethod": "PATCH",
|
|
3547
|
+
"path": "/ingredients/update",
|
|
3548
|
+
"exampleInput": {
|
|
3549
|
+
"body": {
|
|
3550
|
+
"id": "item_123",
|
|
3551
|
+
"data": {
|
|
3552
|
+
"name": "Example",
|
|
3553
|
+
"emoji": "string"
|
|
3554
|
+
}
|
|
3555
|
+
}
|
|
3556
|
+
}
|
|
3557
|
+
},
|
|
3558
|
+
"Ingredients.ingredientsDelete": {
|
|
3559
|
+
"operationId": "ingredients-delete",
|
|
3560
|
+
"summary": "Delete ingredient",
|
|
3561
|
+
"description": "Delete a single ingredient.",
|
|
3562
|
+
"httpMethod": "DELETE",
|
|
3563
|
+
"path": "/ingredients/delete",
|
|
3564
|
+
"exampleInput": {
|
|
3565
|
+
"query": {
|
|
3566
|
+
"id": "item_123"
|
|
3567
|
+
}
|
|
3568
|
+
}
|
|
3569
|
+
},
|
|
3570
|
+
"Ingredients.ingredientsDeleteMany": {
|
|
3571
|
+
"operationId": "ingredients-deleteMany",
|
|
3572
|
+
"summary": "Delete many ingredients",
|
|
3573
|
+
"description": "Delete multiple ingredients.",
|
|
3574
|
+
"httpMethod": "POST",
|
|
3575
|
+
"path": "/ingredients/delete-many",
|
|
3576
|
+
"exampleInput": {
|
|
3577
|
+
"body": {
|
|
3578
|
+
"ids": [
|
|
3579
|
+
"item_123"
|
|
3580
|
+
]
|
|
3581
|
+
}
|
|
3582
|
+
}
|
|
3583
|
+
},
|
|
3584
|
+
"Ingredients.ingredientsListOrphans": {
|
|
3585
|
+
"operationId": "ingredients-listOrphans",
|
|
3586
|
+
"summary": "List orphan ingredients",
|
|
3587
|
+
"description": "List ingredients not assigned to any ingredient list.",
|
|
3588
|
+
"httpMethod": "POST",
|
|
3589
|
+
"path": "/ingredients/orphans"
|
|
3590
|
+
},
|
|
3591
|
+
"Ingredients.ingredientsUpdateMany": {
|
|
3592
|
+
"operationId": "ingredients-updateMany",
|
|
3593
|
+
"summary": "Update many ingredients",
|
|
3594
|
+
"description": "Update multiple ingredients.",
|
|
3595
|
+
"httpMethod": "PATCH",
|
|
3596
|
+
"path": "/ingredients/update-many",
|
|
3597
|
+
"exampleInput": {
|
|
3598
|
+
"body": {
|
|
3599
|
+
"ids": [
|
|
3600
|
+
"item_123"
|
|
3601
|
+
],
|
|
3602
|
+
"data": {
|
|
3603
|
+
"name": "Example",
|
|
3604
|
+
"emoji": "string"
|
|
3605
|
+
}
|
|
3606
|
+
}
|
|
3607
|
+
}
|
|
3608
|
+
},
|
|
3609
|
+
"Ingredients.ingredientsAddToShoppingList": {
|
|
3610
|
+
"operationId": "ingredients-addToShoppingList",
|
|
3611
|
+
"summary": "Mark ingredients to buy",
|
|
3612
|
+
"description": "Mark selected ingredients as 'to buy'.",
|
|
3613
|
+
"httpMethod": "PATCH",
|
|
3614
|
+
"path": "/ingredients/add-to-shopping-list",
|
|
3615
|
+
"exampleInput": {
|
|
3616
|
+
"body": {
|
|
3617
|
+
"ids": [
|
|
3618
|
+
"item_123"
|
|
3619
|
+
]
|
|
3620
|
+
}
|
|
3621
|
+
}
|
|
3622
|
+
},
|
|
3623
|
+
"Dashboards.dashboardsList": {
|
|
3624
|
+
"operationId": "dashboards-list",
|
|
3625
|
+
"summary": "List dashboards",
|
|
3626
|
+
"description": "List dashboards for the current user.",
|
|
3627
|
+
"httpMethod": "POST",
|
|
3628
|
+
"path": "/dashboards/list"
|
|
3629
|
+
},
|
|
3630
|
+
"Dashboards.dashboardsDelete": {
|
|
3631
|
+
"operationId": "dashboards-delete",
|
|
3632
|
+
"summary": "Delete dashboard",
|
|
3633
|
+
"description": "Delete a dashboard by ID.",
|
|
3634
|
+
"httpMethod": "DELETE",
|
|
3635
|
+
"path": "/dashboards/{id}",
|
|
3636
|
+
"exampleInput": {
|
|
3637
|
+
"path": {
|
|
3638
|
+
"id": "item_123"
|
|
3639
|
+
}
|
|
3640
|
+
}
|
|
3641
|
+
},
|
|
3642
|
+
"Dashboards.dashboardsUpdate": {
|
|
3643
|
+
"operationId": "dashboards-update",
|
|
3644
|
+
"summary": "Update dashboard",
|
|
3645
|
+
"description": "Update an existing dashboard.",
|
|
3646
|
+
"httpMethod": "PATCH",
|
|
3647
|
+
"path": "/dashboards/{id}",
|
|
3648
|
+
"exampleInput": {
|
|
3649
|
+
"path": {
|
|
3650
|
+
"id": "item_123"
|
|
3651
|
+
},
|
|
3652
|
+
"body": {
|
|
3653
|
+
"data": {
|
|
3654
|
+
"name": "Example",
|
|
3655
|
+
"json": {}
|
|
3656
|
+
}
|
|
3657
|
+
}
|
|
3658
|
+
}
|
|
3659
|
+
},
|
|
3660
|
+
"Dashboards.dashboardsGet": {
|
|
3661
|
+
"operationId": "dashboards-get",
|
|
3662
|
+
"summary": "Get dashboard",
|
|
3663
|
+
"description": "Get a single dashboard by ID.",
|
|
3664
|
+
"httpMethod": "POST",
|
|
3665
|
+
"path": "/dashboards/{id}",
|
|
3666
|
+
"exampleInput": {
|
|
3667
|
+
"path": {
|
|
3668
|
+
"id": "item_123"
|
|
3669
|
+
}
|
|
3670
|
+
}
|
|
3671
|
+
},
|
|
3672
|
+
"Dashboards.dashboardsCreate": {
|
|
3673
|
+
"operationId": "dashboards-create",
|
|
3674
|
+
"summary": "Create dashboard",
|
|
3675
|
+
"description": "Create a new dashboard.",
|
|
3676
|
+
"httpMethod": "POST",
|
|
3677
|
+
"path": "/dashboards",
|
|
3678
|
+
"exampleInput": {
|
|
3679
|
+
"body": {
|
|
3680
|
+
"name": "Example"
|
|
3681
|
+
}
|
|
3682
|
+
}
|
|
3683
|
+
}
|
|
3684
|
+
};
|