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