@hobokengrace/n8n-nodes-pco 0.2.0 → 0.2.1
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.
- package/README.md +3 -1
- package/dist/nodes/generated/api/PlanningCenterApi.node.js +10 -0
- package/dist/nodes/generated/api/PlanningCenterApi.node.js.map +1 -1
- package/dist/nodes/generated/calendar/PlanningCenterCalendar.node.js +194 -0
- package/dist/nodes/generated/calendar/PlanningCenterCalendar.node.js.map +1 -1
- package/dist/nodes/generated/check-ins/PlanningCenterCheckIns.node.js +171 -0
- package/dist/nodes/generated/check-ins/PlanningCenterCheckIns.node.js.map +1 -1
- package/dist/nodes/generated/current/PlanningCenterCurrent.node.js +5 -0
- package/dist/nodes/generated/current/PlanningCenterCurrent.node.js.map +1 -1
- package/dist/nodes/generated/giving/PlanningCenterGiving.node.js +152 -0
- package/dist/nodes/generated/giving/PlanningCenterGiving.node.js.map +1 -1
- package/dist/nodes/generated/groups/PlanningCenterGroups.node.js +102 -0
- package/dist/nodes/generated/groups/PlanningCenterGroups.node.js.map +1 -1
- package/dist/nodes/generated/people/PlanningCenterPeople.node.js +524 -3
- package/dist/nodes/generated/people/PlanningCenterPeople.node.js.map +1 -1
- package/dist/nodes/generated/publishing/PlanningCenterPublishing.node.js +77 -0
- package/dist/nodes/generated/publishing/PlanningCenterPublishing.node.js.map +1 -1
- package/dist/nodes/generated/registrations/PlanningCenterRegistrations.node.js +41 -0
- package/dist/nodes/generated/registrations/PlanningCenterRegistrations.node.js.map +1 -1
- package/dist/nodes/generated/services/PlanningCenterServices.node.js +437 -0
- package/dist/nodes/generated/services/PlanningCenterServices.node.js.map +1 -1
- package/dist/nodes/generated/webhooks/PlanningCenterWebhooks.node.js +17 -3
- package/dist/nodes/generated/webhooks/PlanningCenterWebhooks.node.js.map +1 -1
- package/dist/src/generator/effectiveOpenApi.d.ts +3 -1
- package/dist/src/generator/effectiveOpenApi.js +6 -8
- package/dist/src/generator/effectiveOpenApi.js.map +1 -1
- package/dist/src/generator/model.d.ts +2 -0
- package/dist/src/generator/openapi.js +11 -1
- package/dist/src/generator/openapi.js.map +1 -1
- package/dist/src/generator/render.js +1 -0
- package/dist/src/generator/render.js.map +1 -1
- package/dist/tests/effectiveOpenApi.test.js +4 -2
- package/dist/tests/effectiveOpenApi.test.js.map +1 -1
- package/dist/tests/generator.test.js +22 -2
- package/dist/tests/generator.test.js.map +1 -1
- package/package.json +1 -1
|
@@ -12,6 +12,7 @@ const OPERATIONS = [
|
|
|
12
12
|
"resource": "Attachment",
|
|
13
13
|
"operation": "List Attachments",
|
|
14
14
|
"description": "GET /attachments",
|
|
15
|
+
"stability": "official",
|
|
15
16
|
"method": "GET",
|
|
16
17
|
"path": "/calendar/v2/attachments",
|
|
17
18
|
"deprecated": false,
|
|
@@ -213,6 +214,7 @@ const OPERATIONS = [
|
|
|
213
214
|
"resource": "Attachment",
|
|
214
215
|
"operation": "List Event (via Attachment)",
|
|
215
216
|
"description": "GET /attachments/{attachment_id}/event",
|
|
217
|
+
"stability": "official",
|
|
216
218
|
"method": "GET",
|
|
217
219
|
"path": "/calendar/v2/attachments/{attachment_id}/event",
|
|
218
220
|
"deprecated": false,
|
|
@@ -427,6 +429,7 @@ const OPERATIONS = [
|
|
|
427
429
|
"resource": "Attachment",
|
|
428
430
|
"operation": "Get Attachment",
|
|
429
431
|
"description": "GET /attachments/{attachment_id}",
|
|
432
|
+
"stability": "official",
|
|
430
433
|
"method": "GET",
|
|
431
434
|
"path": "/calendar/v2/attachments/{attachment_id}",
|
|
432
435
|
"deprecated": false,
|
|
@@ -488,6 +491,7 @@ const OPERATIONS = [
|
|
|
488
491
|
"resource": "Attachment",
|
|
489
492
|
"operation": "Get Event (via Attachment)",
|
|
490
493
|
"description": "GET /attachments/{attachment_id}/event/{event_id}",
|
|
494
|
+
"stability": "official",
|
|
491
495
|
"method": "GET",
|
|
492
496
|
"path": "/calendar/v2/attachments/{attachment_id}/event/{event_id}",
|
|
493
497
|
"deprecated": false,
|
|
@@ -586,6 +590,7 @@ const OPERATIONS = [
|
|
|
586
590
|
"resource": "Calendar",
|
|
587
591
|
"operation": "List Calendars",
|
|
588
592
|
"description": "GET /calendars",
|
|
593
|
+
"stability": "official",
|
|
589
594
|
"method": "GET",
|
|
590
595
|
"path": "/calendar/v2/calendars",
|
|
591
596
|
"deprecated": false,
|
|
@@ -619,6 +624,7 @@ const OPERATIONS = [
|
|
|
619
624
|
"resource": "Calendar",
|
|
620
625
|
"operation": "List Events (via Calendar)",
|
|
621
626
|
"description": "GET /calendars/{calendar_id}/events",
|
|
627
|
+
"stability": "official",
|
|
622
628
|
"method": "GET",
|
|
623
629
|
"path": "/calendar/v2/calendars/{calendar_id}/events",
|
|
624
630
|
"deprecated": false,
|
|
@@ -832,6 +838,7 @@ const OPERATIONS = [
|
|
|
832
838
|
"resource": "Calendar",
|
|
833
839
|
"operation": "Get Calendar",
|
|
834
840
|
"description": "GET /calendars/{calendar_id}",
|
|
841
|
+
"stability": "official",
|
|
835
842
|
"method": "GET",
|
|
836
843
|
"path": "/calendar/v2/calendars/{calendar_id}",
|
|
837
844
|
"deprecated": false,
|
|
@@ -875,6 +882,7 @@ const OPERATIONS = [
|
|
|
875
882
|
"resource": "Calendar",
|
|
876
883
|
"operation": "Get Event (via Calendar)",
|
|
877
884
|
"description": "GET /calendars/{calendar_id}/events/{event_id}",
|
|
885
|
+
"stability": "official",
|
|
878
886
|
"method": "GET",
|
|
879
887
|
"path": "/calendar/v2/calendars/{calendar_id}/events/{event_id}",
|
|
880
888
|
"deprecated": false,
|
|
@@ -972,6 +980,7 @@ const OPERATIONS = [
|
|
|
972
980
|
"resource": "Conflict",
|
|
973
981
|
"operation": "List Conflicts",
|
|
974
982
|
"description": "GET /conflicts",
|
|
983
|
+
"stability": "official",
|
|
975
984
|
"method": "GET",
|
|
976
985
|
"path": "/calendar/v2/conflicts",
|
|
977
986
|
"deprecated": false,
|
|
@@ -1062,6 +1071,7 @@ const OPERATIONS = [
|
|
|
1062
1071
|
"resource": "Conflict",
|
|
1063
1072
|
"operation": "List Resolved By (via Conflict)",
|
|
1064
1073
|
"description": "GET /conflicts/{conflict_id}/resolved_by",
|
|
1074
|
+
"stability": "official",
|
|
1065
1075
|
"method": "GET",
|
|
1066
1076
|
"path": "/calendar/v2/conflicts/{conflict_id}/resolved_by",
|
|
1067
1077
|
"deprecated": false,
|
|
@@ -1275,6 +1285,7 @@ const OPERATIONS = [
|
|
|
1275
1285
|
"resource": "Conflict",
|
|
1276
1286
|
"operation": "List Resource (via Conflict)",
|
|
1277
1287
|
"description": "GET /conflicts/{conflict_id}/resource",
|
|
1288
|
+
"stability": "official",
|
|
1278
1289
|
"method": "GET",
|
|
1279
1290
|
"path": "/calendar/v2/conflicts/{conflict_id}/resource",
|
|
1280
1291
|
"deprecated": false,
|
|
@@ -1543,6 +1554,7 @@ const OPERATIONS = [
|
|
|
1543
1554
|
"resource": "Conflict",
|
|
1544
1555
|
"operation": "List Winner (via Conflict)",
|
|
1545
1556
|
"description": "GET /conflicts/{conflict_id}/winner",
|
|
1557
|
+
"stability": "official",
|
|
1546
1558
|
"method": "GET",
|
|
1547
1559
|
"path": "/calendar/v2/conflicts/{conflict_id}/winner",
|
|
1548
1560
|
"deprecated": false,
|
|
@@ -1756,6 +1768,7 @@ const OPERATIONS = [
|
|
|
1756
1768
|
"resource": "Conflict",
|
|
1757
1769
|
"operation": "Get Conflict",
|
|
1758
1770
|
"description": "GET /conflicts/{conflict_id}",
|
|
1771
|
+
"stability": "official",
|
|
1759
1772
|
"method": "GET",
|
|
1760
1773
|
"path": "/calendar/v2/conflicts/{conflict_id}",
|
|
1761
1774
|
"deprecated": false,
|
|
@@ -1816,6 +1829,7 @@ const OPERATIONS = [
|
|
|
1816
1829
|
"resource": "Conflict",
|
|
1817
1830
|
"operation": "Get Resolved By (via Conflict)",
|
|
1818
1831
|
"description": "GET /conflicts/{conflict_id}/resolved_by/{resolved_by_id}",
|
|
1832
|
+
"stability": "official",
|
|
1819
1833
|
"method": "GET",
|
|
1820
1834
|
"path": "/calendar/v2/conflicts/{conflict_id}/resolved_by/{resolved_by_id}",
|
|
1821
1835
|
"deprecated": false,
|
|
@@ -1883,6 +1897,7 @@ const OPERATIONS = [
|
|
|
1883
1897
|
"resource": "Conflict",
|
|
1884
1898
|
"operation": "Get Resource (via Conflict)",
|
|
1885
1899
|
"description": "GET /conflicts/{conflict_id}/resource/{resource_id}",
|
|
1900
|
+
"stability": "official",
|
|
1886
1901
|
"method": "GET",
|
|
1887
1902
|
"path": "/calendar/v2/conflicts/{conflict_id}/resource/{resource_id}",
|
|
1888
1903
|
"deprecated": false,
|
|
@@ -1980,6 +1995,7 @@ const OPERATIONS = [
|
|
|
1980
1995
|
"resource": "Conflict",
|
|
1981
1996
|
"operation": "Get Winner (via Conflict)",
|
|
1982
1997
|
"description": "GET /conflicts/{conflict_id}/winner/{winner_id}",
|
|
1998
|
+
"stability": "official",
|
|
1983
1999
|
"method": "GET",
|
|
1984
2000
|
"path": "/calendar/v2/conflicts/{conflict_id}/winner/{winner_id}",
|
|
1985
2001
|
"deprecated": false,
|
|
@@ -2048,6 +2064,7 @@ const OPERATIONS = [
|
|
|
2048
2064
|
"jsonApiType": "Resource",
|
|
2049
2065
|
"operation": "Update Resource (via Conflict)",
|
|
2050
2066
|
"description": "PATCH /conflicts/{conflict_id}/resource/{resource_id}",
|
|
2067
|
+
"stability": "official",
|
|
2051
2068
|
"method": "PATCH",
|
|
2052
2069
|
"path": "/calendar/v2/conflicts/{conflict_id}/resource/{resource_id}",
|
|
2053
2070
|
"deprecated": false,
|
|
@@ -2227,6 +2244,7 @@ const OPERATIONS = [
|
|
|
2227
2244
|
"resource": "Conflict",
|
|
2228
2245
|
"operation": "Delete Resource (via Conflict)",
|
|
2229
2246
|
"description": "DELETE /conflicts/{conflict_id}/resource/{resource_id}",
|
|
2247
|
+
"stability": "official",
|
|
2230
2248
|
"method": "DELETE",
|
|
2231
2249
|
"path": "/calendar/v2/conflicts/{conflict_id}/resource/{resource_id}",
|
|
2232
2250
|
"deprecated": false,
|
|
@@ -2307,6 +2325,7 @@ const OPERATIONS = [
|
|
|
2307
2325
|
"resource": "Event Instance",
|
|
2308
2326
|
"operation": "List Event (via Event Instance)",
|
|
2309
2327
|
"description": "GET /event_instances/{event_instance_id}/event",
|
|
2328
|
+
"stability": "official",
|
|
2310
2329
|
"method": "GET",
|
|
2311
2330
|
"path": "/calendar/v2/event_instances/{event_instance_id}/event",
|
|
2312
2331
|
"deprecated": false,
|
|
@@ -2520,6 +2539,7 @@ const OPERATIONS = [
|
|
|
2520
2539
|
"resource": "Event Instance",
|
|
2521
2540
|
"operation": "List Event (via Event Time)",
|
|
2522
2541
|
"description": "GET /event_instances/{event_instance_id}/event_times/{event_time_id}/event",
|
|
2542
|
+
"stability": "official",
|
|
2523
2543
|
"method": "GET",
|
|
2524
2544
|
"path": "/calendar/v2/event_instances/{event_instance_id}/event_times/{event_time_id}/event",
|
|
2525
2545
|
"deprecated": false,
|
|
@@ -2764,6 +2784,7 @@ const OPERATIONS = [
|
|
|
2764
2784
|
"resource": "Event Instance",
|
|
2765
2785
|
"operation": "List Event Instances",
|
|
2766
2786
|
"description": "GET /event_instances",
|
|
2787
|
+
"stability": "official",
|
|
2767
2788
|
"method": "GET",
|
|
2768
2789
|
"path": "/calendar/v2/event_instances",
|
|
2769
2790
|
"deprecated": false,
|
|
@@ -3095,6 +3116,7 @@ const OPERATIONS = [
|
|
|
3095
3116
|
"resource": "Event Instance",
|
|
3096
3117
|
"operation": "List Event Times (via Event Instance)",
|
|
3097
3118
|
"description": "GET /event_instances/{event_instance_id}/event_times",
|
|
3119
|
+
"stability": "official",
|
|
3098
3120
|
"method": "GET",
|
|
3099
3121
|
"path": "/calendar/v2/event_instances/{event_instance_id}/event_times",
|
|
3100
3122
|
"deprecated": false,
|
|
@@ -3308,6 +3330,7 @@ const OPERATIONS = [
|
|
|
3308
3330
|
"resource": "Event Instance",
|
|
3309
3331
|
"operation": "List Resource Bookings (via Event Instance)",
|
|
3310
3332
|
"description": "GET /event_instances/{event_instance_id}/resource_bookings",
|
|
3333
|
+
"stability": "official",
|
|
3311
3334
|
"method": "GET",
|
|
3312
3335
|
"path": "/calendar/v2/event_instances/{event_instance_id}/resource_bookings",
|
|
3313
3336
|
"deprecated": false,
|
|
@@ -3701,6 +3724,7 @@ const OPERATIONS = [
|
|
|
3701
3724
|
"resource": "Event Instance",
|
|
3702
3725
|
"operation": "List Tags (via Event Instance)",
|
|
3703
3726
|
"description": "GET /event_instances/{event_instance_id}/tags",
|
|
3727
|
+
"stability": "official",
|
|
3704
3728
|
"method": "GET",
|
|
3705
3729
|
"path": "/calendar/v2/event_instances/{event_instance_id}/tags",
|
|
3706
3730
|
"deprecated": false,
|
|
@@ -3969,6 +3993,7 @@ const OPERATIONS = [
|
|
|
3969
3993
|
"resource": "Event Instance",
|
|
3970
3994
|
"operation": "Get Event (via Event Instance)",
|
|
3971
3995
|
"description": "GET /event_instances/{event_instance_id}/event/{event_id}",
|
|
3996
|
+
"stability": "official",
|
|
3972
3997
|
"method": "GET",
|
|
3973
3998
|
"path": "/calendar/v2/event_instances/{event_instance_id}/event/{event_id}",
|
|
3974
3999
|
"deprecated": false,
|
|
@@ -4066,6 +4091,7 @@ const OPERATIONS = [
|
|
|
4066
4091
|
"resource": "Event Instance",
|
|
4067
4092
|
"operation": "Get Event (via Event Time)",
|
|
4068
4093
|
"description": "GET /event_instances/{event_instance_id}/event_times/{event_time_id}/event/{event_id}",
|
|
4094
|
+
"stability": "official",
|
|
4069
4095
|
"method": "GET",
|
|
4070
4096
|
"path": "/calendar/v2/event_instances/{event_instance_id}/event_times/{event_time_id}/event/{event_id}",
|
|
4071
4097
|
"deprecated": false,
|
|
@@ -4198,6 +4224,7 @@ const OPERATIONS = [
|
|
|
4198
4224
|
"resource": "Event Instance",
|
|
4199
4225
|
"operation": "Get Event Instance",
|
|
4200
4226
|
"description": "GET /event_instances/{event_instance_id}",
|
|
4227
|
+
"stability": "official",
|
|
4201
4228
|
"method": "GET",
|
|
4202
4229
|
"path": "/calendar/v2/event_instances/{event_instance_id}",
|
|
4203
4230
|
"deprecated": false,
|
|
@@ -4258,6 +4285,7 @@ const OPERATIONS = [
|
|
|
4258
4285
|
"resource": "Event Instance",
|
|
4259
4286
|
"operation": "Get Resource Booking (via Event Instance)",
|
|
4260
4287
|
"description": "GET /event_instances/{event_instance_id}/resource_bookings/{resource_booking_id}",
|
|
4288
|
+
"stability": "official",
|
|
4261
4289
|
"method": "GET",
|
|
4262
4290
|
"path": "/calendar/v2/event_instances/{event_instance_id}/resource_bookings/{resource_booking_id}",
|
|
4263
4291
|
"deprecated": false,
|
|
@@ -4349,6 +4377,7 @@ const OPERATIONS = [
|
|
|
4349
4377
|
"resource": "Event Instance",
|
|
4350
4378
|
"operation": "Get Tag (via Event Instance)",
|
|
4351
4379
|
"description": "GET /event_instances/{event_instance_id}/tags/{tag_id}",
|
|
4380
|
+
"stability": "official",
|
|
4352
4381
|
"method": "GET",
|
|
4353
4382
|
"path": "/calendar/v2/event_instances/{event_instance_id}/tags/{tag_id}",
|
|
4354
4383
|
"deprecated": false,
|
|
@@ -4447,6 +4476,7 @@ const OPERATIONS = [
|
|
|
4447
4476
|
"jsonApiType": "Tag",
|
|
4448
4477
|
"operation": "Create Tag (via Event Instance)",
|
|
4449
4478
|
"description": "POST /event_instances/{event_instance_id}/tags",
|
|
4479
|
+
"stability": "official",
|
|
4450
4480
|
"method": "POST",
|
|
4451
4481
|
"path": "/calendar/v2/event_instances/{event_instance_id}/tags",
|
|
4452
4482
|
"deprecated": false,
|
|
@@ -4571,6 +4601,7 @@ const OPERATIONS = [
|
|
|
4571
4601
|
"jsonApiType": "Tag",
|
|
4572
4602
|
"operation": "Update Tag (via Event Instance)",
|
|
4573
4603
|
"description": "PATCH /event_instances/{event_instance_id}/tags/{tag_id}",
|
|
4604
|
+
"stability": "official",
|
|
4574
4605
|
"method": "PATCH",
|
|
4575
4606
|
"path": "/calendar/v2/event_instances/{event_instance_id}/tags/{tag_id}",
|
|
4576
4607
|
"deprecated": false,
|
|
@@ -4736,6 +4767,7 @@ const OPERATIONS = [
|
|
|
4736
4767
|
"resource": "Event Instance",
|
|
4737
4768
|
"operation": "Delete Tag (via Event Instance)",
|
|
4738
4769
|
"description": "DELETE /event_instances/{event_instance_id}/tags/{tag_id}",
|
|
4770
|
+
"stability": "official",
|
|
4739
4771
|
"method": "DELETE",
|
|
4740
4772
|
"path": "/calendar/v2/event_instances/{event_instance_id}/tags/{tag_id}",
|
|
4741
4773
|
"deprecated": false,
|
|
@@ -4816,6 +4848,7 @@ const OPERATIONS = [
|
|
|
4816
4848
|
"resource": "Event Resource Request",
|
|
4817
4849
|
"operation": "List Answers (via Event Resource Request)",
|
|
4818
4850
|
"description": "GET /event_resource_requests/{event_resource_request_id}/answers",
|
|
4851
|
+
"stability": "official",
|
|
4819
4852
|
"method": "GET",
|
|
4820
4853
|
"path": "/calendar/v2/event_resource_requests/{event_resource_request_id}/answers",
|
|
4821
4854
|
"deprecated": false,
|
|
@@ -4859,6 +4892,7 @@ const OPERATIONS = [
|
|
|
4859
4892
|
"resource": "Event Resource Request",
|
|
4860
4893
|
"operation": "List Created By (via Event Resource Request)",
|
|
4861
4894
|
"description": "GET /event_resource_requests/{event_resource_request_id}/created_by",
|
|
4895
|
+
"stability": "official",
|
|
4862
4896
|
"method": "GET",
|
|
4863
4897
|
"path": "/calendar/v2/event_resource_requests/{event_resource_request_id}/created_by",
|
|
4864
4898
|
"deprecated": false,
|
|
@@ -5072,6 +5106,7 @@ const OPERATIONS = [
|
|
|
5072
5106
|
"resource": "Event Resource Request",
|
|
5073
5107
|
"operation": "List Event (via Event Resource Request)",
|
|
5074
5108
|
"description": "GET /event_resource_requests/{event_resource_request_id}/event",
|
|
5109
|
+
"stability": "official",
|
|
5075
5110
|
"method": "GET",
|
|
5076
5111
|
"path": "/calendar/v2/event_resource_requests/{event_resource_request_id}/event",
|
|
5077
5112
|
"deprecated": false,
|
|
@@ -5285,6 +5320,7 @@ const OPERATIONS = [
|
|
|
5285
5320
|
"resource": "Event Resource Request",
|
|
5286
5321
|
"operation": "List Event Resource Requests",
|
|
5287
5322
|
"description": "GET /event_resource_requests",
|
|
5323
|
+
"stability": "official",
|
|
5288
5324
|
"method": "GET",
|
|
5289
5325
|
"path": "/calendar/v2/event_resource_requests",
|
|
5290
5326
|
"deprecated": false,
|
|
@@ -5491,6 +5527,7 @@ const OPERATIONS = [
|
|
|
5491
5527
|
"resource": "Event Resource Request",
|
|
5492
5528
|
"operation": "List Resource (via Event Resource Request)",
|
|
5493
5529
|
"description": "GET /event_resource_requests/{event_resource_request_id}/resource",
|
|
5530
|
+
"stability": "official",
|
|
5494
5531
|
"method": "GET",
|
|
5495
5532
|
"path": "/calendar/v2/event_resource_requests/{event_resource_request_id}/resource",
|
|
5496
5533
|
"deprecated": false,
|
|
@@ -5759,6 +5796,7 @@ const OPERATIONS = [
|
|
|
5759
5796
|
"resource": "Event Resource Request",
|
|
5760
5797
|
"operation": "List Resource Bookings (via Event Resource Request)",
|
|
5761
5798
|
"description": "GET /event_resource_requests/{event_resource_request_id}/resource_bookings",
|
|
5799
|
+
"stability": "official",
|
|
5762
5800
|
"method": "GET",
|
|
5763
5801
|
"path": "/calendar/v2/event_resource_requests/{event_resource_request_id}/resource_bookings",
|
|
5764
5802
|
"deprecated": false,
|
|
@@ -6157,6 +6195,7 @@ const OPERATIONS = [
|
|
|
6157
6195
|
"resource": "Event Resource Request",
|
|
6158
6196
|
"operation": "List Room Setup (via Event Resource Request)",
|
|
6159
6197
|
"description": "GET /event_resource_requests/{event_resource_request_id}/room_setup",
|
|
6198
|
+
"stability": "official",
|
|
6160
6199
|
"method": "GET",
|
|
6161
6200
|
"path": "/calendar/v2/event_resource_requests/{event_resource_request_id}/room_setup",
|
|
6162
6201
|
"deprecated": false,
|
|
@@ -6385,6 +6424,7 @@ const OPERATIONS = [
|
|
|
6385
6424
|
"resource": "Event Resource Request",
|
|
6386
6425
|
"operation": "List Updated By (via Event Resource Request)",
|
|
6387
6426
|
"description": "GET /event_resource_requests/{event_resource_request_id}/updated_by",
|
|
6427
|
+
"stability": "official",
|
|
6388
6428
|
"method": "GET",
|
|
6389
6429
|
"path": "/calendar/v2/event_resource_requests/{event_resource_request_id}/updated_by",
|
|
6390
6430
|
"deprecated": false,
|
|
@@ -6598,6 +6638,7 @@ const OPERATIONS = [
|
|
|
6598
6638
|
"resource": "Event Resource Request",
|
|
6599
6639
|
"operation": "Get Answer (via Event Resource Request)",
|
|
6600
6640
|
"description": "GET /event_resource_requests/{event_resource_request_id}/answers/{answer_id}",
|
|
6641
|
+
"stability": "official",
|
|
6601
6642
|
"method": "GET",
|
|
6602
6643
|
"path": "/calendar/v2/event_resource_requests/{event_resource_request_id}/answers/{answer_id}",
|
|
6603
6644
|
"deprecated": false,
|
|
@@ -6648,6 +6689,7 @@ const OPERATIONS = [
|
|
|
6648
6689
|
"resource": "Event Resource Request",
|
|
6649
6690
|
"operation": "Get Created By (via Event Resource Request)",
|
|
6650
6691
|
"description": "GET /event_resource_requests/{event_resource_request_id}/created_by/{created_by_id}",
|
|
6692
|
+
"stability": "official",
|
|
6651
6693
|
"method": "GET",
|
|
6652
6694
|
"path": "/calendar/v2/event_resource_requests/{event_resource_request_id}/created_by/{created_by_id}",
|
|
6653
6695
|
"deprecated": false,
|
|
@@ -6715,6 +6757,7 @@ const OPERATIONS = [
|
|
|
6715
6757
|
"resource": "Event Resource Request",
|
|
6716
6758
|
"operation": "Get Event (via Event Resource Request)",
|
|
6717
6759
|
"description": "GET /event_resource_requests/{event_resource_request_id}/event/{event_id}",
|
|
6760
|
+
"stability": "official",
|
|
6718
6761
|
"method": "GET",
|
|
6719
6762
|
"path": "/calendar/v2/event_resource_requests/{event_resource_request_id}/event/{event_id}",
|
|
6720
6763
|
"deprecated": false,
|
|
@@ -6812,6 +6855,7 @@ const OPERATIONS = [
|
|
|
6812
6855
|
"resource": "Event Resource Request",
|
|
6813
6856
|
"operation": "Get Event Resource Request",
|
|
6814
6857
|
"description": "GET /event_resource_requests/{event_resource_request_id}",
|
|
6858
|
+
"stability": "official",
|
|
6815
6859
|
"method": "GET",
|
|
6816
6860
|
"path": "/calendar/v2/event_resource_requests/{event_resource_request_id}",
|
|
6817
6861
|
"deprecated": false,
|
|
@@ -6872,6 +6916,7 @@ const OPERATIONS = [
|
|
|
6872
6916
|
"resource": "Event Resource Request",
|
|
6873
6917
|
"operation": "Get Resource (via Event Resource Request)",
|
|
6874
6918
|
"description": "GET /event_resource_requests/{event_resource_request_id}/resource/{resource_id}",
|
|
6919
|
+
"stability": "official",
|
|
6875
6920
|
"method": "GET",
|
|
6876
6921
|
"path": "/calendar/v2/event_resource_requests/{event_resource_request_id}/resource/{resource_id}",
|
|
6877
6922
|
"deprecated": false,
|
|
@@ -6969,6 +7014,7 @@ const OPERATIONS = [
|
|
|
6969
7014
|
"resource": "Event Resource Request",
|
|
6970
7015
|
"operation": "Get Resource Booking (via Event Resource Request)",
|
|
6971
7016
|
"description": "GET /event_resource_requests/{event_resource_request_id}/resource_bookings/{resource_booking_id}",
|
|
7017
|
+
"stability": "official",
|
|
6972
7018
|
"method": "GET",
|
|
6973
7019
|
"path": "/calendar/v2/event_resource_requests/{event_resource_request_id}/resource_bookings/{resource_booking_id}",
|
|
6974
7020
|
"deprecated": false,
|
|
@@ -7065,6 +7111,7 @@ const OPERATIONS = [
|
|
|
7065
7111
|
"resource": "Event Resource Request",
|
|
7066
7112
|
"operation": "Get Room Setup (via Event Resource Request)",
|
|
7067
7113
|
"description": "GET /event_resource_requests/{event_resource_request_id}/room_setup/{room_setup_id}",
|
|
7114
|
+
"stability": "official",
|
|
7068
7115
|
"method": "GET",
|
|
7069
7116
|
"path": "/calendar/v2/event_resource_requests/{event_resource_request_id}/room_setup/{room_setup_id}",
|
|
7070
7117
|
"deprecated": false,
|
|
@@ -7157,6 +7204,7 @@ const OPERATIONS = [
|
|
|
7157
7204
|
"resource": "Event Resource Request",
|
|
7158
7205
|
"operation": "Get Updated By (via Event Resource Request)",
|
|
7159
7206
|
"description": "GET /event_resource_requests/{event_resource_request_id}/updated_by/{updated_by_id}",
|
|
7207
|
+
"stability": "official",
|
|
7160
7208
|
"method": "GET",
|
|
7161
7209
|
"path": "/calendar/v2/event_resource_requests/{event_resource_request_id}/updated_by/{updated_by_id}",
|
|
7162
7210
|
"deprecated": false,
|
|
@@ -7225,6 +7273,7 @@ const OPERATIONS = [
|
|
|
7225
7273
|
"jsonApiType": "Resource",
|
|
7226
7274
|
"operation": "Update Resource (via Event Resource Request)",
|
|
7227
7275
|
"description": "PATCH /event_resource_requests/{event_resource_request_id}/resource/{resource_id}",
|
|
7276
|
+
"stability": "official",
|
|
7228
7277
|
"method": "PATCH",
|
|
7229
7278
|
"path": "/calendar/v2/event_resource_requests/{event_resource_request_id}/resource/{resource_id}",
|
|
7230
7279
|
"deprecated": false,
|
|
@@ -7404,6 +7453,7 @@ const OPERATIONS = [
|
|
|
7404
7453
|
"resource": "Event Resource Request",
|
|
7405
7454
|
"operation": "Delete Resource (via Event Resource Request)",
|
|
7406
7455
|
"description": "DELETE /event_resource_requests/{event_resource_request_id}/resource/{resource_id}",
|
|
7456
|
+
"stability": "official",
|
|
7407
7457
|
"method": "DELETE",
|
|
7408
7458
|
"path": "/calendar/v2/event_resource_requests/{event_resource_request_id}/resource/{resource_id}",
|
|
7409
7459
|
"deprecated": false,
|
|
@@ -7484,6 +7534,7 @@ const OPERATIONS = [
|
|
|
7484
7534
|
"resource": "Event",
|
|
7485
7535
|
"operation": "List Attachments (via Event)",
|
|
7486
7536
|
"description": "GET /events/{event_id}/attachments",
|
|
7537
|
+
"stability": "official",
|
|
7487
7538
|
"method": "GET",
|
|
7488
7539
|
"path": "/calendar/v2/events/{event_id}/attachments",
|
|
7489
7540
|
"deprecated": false,
|
|
@@ -7713,6 +7764,7 @@ const OPERATIONS = [
|
|
|
7713
7764
|
"resource": "Event",
|
|
7714
7765
|
"operation": "List Calendar (via Event)",
|
|
7715
7766
|
"description": "GET /events/{event_id}/calendar",
|
|
7767
|
+
"stability": "official",
|
|
7716
7768
|
"method": "GET",
|
|
7717
7769
|
"path": "/calendar/v2/events/{event_id}/calendar",
|
|
7718
7770
|
"deprecated": false,
|
|
@@ -7774,6 +7826,7 @@ const OPERATIONS = [
|
|
|
7774
7826
|
"resource": "Event",
|
|
7775
7827
|
"operation": "List Conflicts (via Event)",
|
|
7776
7828
|
"description": "GET /events/{event_id}/conflicts",
|
|
7829
|
+
"stability": "official",
|
|
7777
7830
|
"method": "GET",
|
|
7778
7831
|
"path": "/calendar/v2/events/{event_id}/conflicts",
|
|
7779
7832
|
"deprecated": false,
|
|
@@ -7885,6 +7938,7 @@ const OPERATIONS = [
|
|
|
7885
7938
|
"resource": "Event",
|
|
7886
7939
|
"operation": "List Event Connections (via Event)",
|
|
7887
7940
|
"description": "GET /events/{event_id}/event_connections",
|
|
7941
|
+
"stability": "official",
|
|
7888
7942
|
"method": "GET",
|
|
7889
7943
|
"path": "/calendar/v2/events/{event_id}/event_connections",
|
|
7890
7944
|
"deprecated": false,
|
|
@@ -7929,6 +7983,7 @@ const OPERATIONS = [
|
|
|
7929
7983
|
"resource": "Event",
|
|
7930
7984
|
"operation": "List Event Instances (via Event)",
|
|
7931
7985
|
"description": "GET /events/{event_id}/event_instances",
|
|
7986
|
+
"stability": "official",
|
|
7932
7987
|
"method": "GET",
|
|
7933
7988
|
"path": "/calendar/v2/events/{event_id}/event_instances",
|
|
7934
7989
|
"deprecated": false,
|
|
@@ -8288,6 +8343,7 @@ const OPERATIONS = [
|
|
|
8288
8343
|
"resource": "Event",
|
|
8289
8344
|
"operation": "List Event Resource Requests (via Event)",
|
|
8290
8345
|
"description": "GET /events/{event_id}/event_resource_requests",
|
|
8346
|
+
"stability": "official",
|
|
8291
8347
|
"method": "GET",
|
|
8292
8348
|
"path": "/calendar/v2/events/{event_id}/event_resource_requests",
|
|
8293
8349
|
"deprecated": false,
|
|
@@ -8522,6 +8578,7 @@ const OPERATIONS = [
|
|
|
8522
8578
|
"resource": "Event",
|
|
8523
8579
|
"operation": "List Events",
|
|
8524
8580
|
"description": "GET /events",
|
|
8581
|
+
"stability": "official",
|
|
8525
8582
|
"method": "GET",
|
|
8526
8583
|
"path": "/calendar/v2/events",
|
|
8527
8584
|
"deprecated": false,
|
|
@@ -8715,6 +8772,7 @@ const OPERATIONS = [
|
|
|
8715
8772
|
"resource": "Event",
|
|
8716
8773
|
"operation": "List Feed (via Event)",
|
|
8717
8774
|
"description": "GET /events/{event_id}/feed",
|
|
8775
|
+
"stability": "official",
|
|
8718
8776
|
"method": "GET",
|
|
8719
8777
|
"path": "/calendar/v2/events/{event_id}/feed",
|
|
8720
8778
|
"deprecated": false,
|
|
@@ -8776,6 +8834,7 @@ const OPERATIONS = [
|
|
|
8776
8834
|
"resource": "Event",
|
|
8777
8835
|
"operation": "List Owner (via Event)",
|
|
8778
8836
|
"description": "GET /events/{event_id}/owner",
|
|
8837
|
+
"stability": "official",
|
|
8779
8838
|
"method": "GET",
|
|
8780
8839
|
"path": "/calendar/v2/events/{event_id}/owner",
|
|
8781
8840
|
"deprecated": false,
|
|
@@ -8990,6 +9049,7 @@ const OPERATIONS = [
|
|
|
8990
9049
|
"resource": "Event",
|
|
8991
9050
|
"operation": "List Resource Bookings (via Event)",
|
|
8992
9051
|
"description": "GET /events/{event_id}/resource_bookings",
|
|
9052
|
+
"stability": "official",
|
|
8993
9053
|
"method": "GET",
|
|
8994
9054
|
"path": "/calendar/v2/events/{event_id}/resource_bookings",
|
|
8995
9055
|
"deprecated": false,
|
|
@@ -9384,6 +9444,7 @@ const OPERATIONS = [
|
|
|
9384
9444
|
"resource": "Event",
|
|
9385
9445
|
"operation": "List Tags (via Event)",
|
|
9386
9446
|
"description": "GET /events/{event_id}/tags",
|
|
9447
|
+
"stability": "official",
|
|
9387
9448
|
"method": "GET",
|
|
9388
9449
|
"path": "/calendar/v2/events/{event_id}/tags",
|
|
9389
9450
|
"deprecated": false,
|
|
@@ -9653,6 +9714,7 @@ const OPERATIONS = [
|
|
|
9653
9714
|
"resource": "Event",
|
|
9654
9715
|
"operation": "Get Attachment (via Event)",
|
|
9655
9716
|
"description": "GET /events/{event_id}/attachments/{attachment_id}",
|
|
9717
|
+
"stability": "official",
|
|
9656
9718
|
"method": "GET",
|
|
9657
9719
|
"path": "/calendar/v2/events/{event_id}/attachments/{attachment_id}",
|
|
9658
9720
|
"deprecated": false,
|
|
@@ -9751,6 +9813,7 @@ const OPERATIONS = [
|
|
|
9751
9813
|
"resource": "Event",
|
|
9752
9814
|
"operation": "Get Calendar (via Event)",
|
|
9753
9815
|
"description": "GET /events/{event_id}/calendar/{calendar_id}",
|
|
9816
|
+
"stability": "official",
|
|
9754
9817
|
"method": "GET",
|
|
9755
9818
|
"path": "/calendar/v2/events/{event_id}/calendar/{calendar_id}",
|
|
9756
9819
|
"deprecated": false,
|
|
@@ -9831,6 +9894,7 @@ const OPERATIONS = [
|
|
|
9831
9894
|
"resource": "Event",
|
|
9832
9895
|
"operation": "Get Conflict (via Event)",
|
|
9833
9896
|
"description": "GET /events/{event_id}/conflicts/{conflict_id}",
|
|
9897
|
+
"stability": "official",
|
|
9834
9898
|
"method": "GET",
|
|
9835
9899
|
"path": "/calendar/v2/events/{event_id}/conflicts/{conflict_id}",
|
|
9836
9900
|
"deprecated": false,
|
|
@@ -9928,6 +9992,7 @@ const OPERATIONS = [
|
|
|
9928
9992
|
"resource": "Event",
|
|
9929
9993
|
"operation": "Get Event Connection (via Event)",
|
|
9930
9994
|
"description": "GET /events/{event_id}/event_connections/{event_connection_id}",
|
|
9995
|
+
"stability": "official",
|
|
9931
9996
|
"method": "GET",
|
|
9932
9997
|
"path": "/calendar/v2/events/{event_id}/event_connections/{event_connection_id}",
|
|
9933
9998
|
"deprecated": false,
|
|
@@ -10003,6 +10068,7 @@ const OPERATIONS = [
|
|
|
10003
10068
|
"resource": "Event",
|
|
10004
10069
|
"operation": "Get Event Instance (via Event)",
|
|
10005
10070
|
"description": "GET /events/{event_id}/event_instances/{event_instance_id}",
|
|
10071
|
+
"stability": "official",
|
|
10006
10072
|
"method": "GET",
|
|
10007
10073
|
"path": "/calendar/v2/events/{event_id}/event_instances/{event_instance_id}",
|
|
10008
10074
|
"deprecated": false,
|
|
@@ -10100,6 +10166,7 @@ const OPERATIONS = [
|
|
|
10100
10166
|
"resource": "Event",
|
|
10101
10167
|
"operation": "Get Event Resource Request (via Event)",
|
|
10102
10168
|
"description": "GET /events/{event_id}/event_resource_requests/{event_resource_request_id}",
|
|
10169
|
+
"stability": "official",
|
|
10103
10170
|
"method": "GET",
|
|
10104
10171
|
"path": "/calendar/v2/events/{event_id}/event_resource_requests/{event_resource_request_id}",
|
|
10105
10172
|
"deprecated": false,
|
|
@@ -10197,6 +10264,7 @@ const OPERATIONS = [
|
|
|
10197
10264
|
"resource": "Event",
|
|
10198
10265
|
"operation": "Get Event",
|
|
10199
10266
|
"description": "GET /events/{event_id}",
|
|
10267
|
+
"stability": "official",
|
|
10200
10268
|
"method": "GET",
|
|
10201
10269
|
"path": "/calendar/v2/events/{event_id}",
|
|
10202
10270
|
"deprecated": false,
|
|
@@ -10258,6 +10326,7 @@ const OPERATIONS = [
|
|
|
10258
10326
|
"resource": "Event",
|
|
10259
10327
|
"operation": "Get Feed (via Event)",
|
|
10260
10328
|
"description": "GET /events/{event_id}/feed/{feed_id}",
|
|
10329
|
+
"stability": "official",
|
|
10261
10330
|
"method": "GET",
|
|
10262
10331
|
"path": "/calendar/v2/events/{event_id}/feed/{feed_id}",
|
|
10263
10332
|
"deprecated": false,
|
|
@@ -10333,6 +10402,7 @@ const OPERATIONS = [
|
|
|
10333
10402
|
"resource": "Event",
|
|
10334
10403
|
"operation": "Get Owner (via Event)",
|
|
10335
10404
|
"description": "GET /events/{event_id}/owner/{owner_id}",
|
|
10405
|
+
"stability": "official",
|
|
10336
10406
|
"method": "GET",
|
|
10337
10407
|
"path": "/calendar/v2/events/{event_id}/owner/{owner_id}",
|
|
10338
10408
|
"deprecated": false,
|
|
@@ -10401,6 +10471,7 @@ const OPERATIONS = [
|
|
|
10401
10471
|
"resource": "Event",
|
|
10402
10472
|
"operation": "Get Resource Booking (via Event)",
|
|
10403
10473
|
"description": "GET /events/{event_id}/resource_bookings/{resource_booking_id}",
|
|
10474
|
+
"stability": "official",
|
|
10404
10475
|
"method": "GET",
|
|
10405
10476
|
"path": "/calendar/v2/events/{event_id}/resource_bookings/{resource_booking_id}",
|
|
10406
10477
|
"deprecated": false,
|
|
@@ -10493,6 +10564,7 @@ const OPERATIONS = [
|
|
|
10493
10564
|
"resource": "Event",
|
|
10494
10565
|
"operation": "Get Tag (via Event)",
|
|
10495
10566
|
"description": "GET /events/{event_id}/tags/{tag_id}",
|
|
10567
|
+
"stability": "official",
|
|
10496
10568
|
"method": "GET",
|
|
10497
10569
|
"path": "/calendar/v2/events/{event_id}/tags/{tag_id}",
|
|
10498
10570
|
"deprecated": false,
|
|
@@ -10592,6 +10664,7 @@ const OPERATIONS = [
|
|
|
10592
10664
|
"jsonApiType": "EventConnection",
|
|
10593
10665
|
"operation": "Create Event Connection (via Event)",
|
|
10594
10666
|
"description": "POST /events/{event_id}/event_connections",
|
|
10667
|
+
"stability": "official",
|
|
10595
10668
|
"method": "POST",
|
|
10596
10669
|
"path": "/calendar/v2/events/{event_id}/event_connections",
|
|
10597
10670
|
"deprecated": false,
|
|
@@ -10673,6 +10746,7 @@ const OPERATIONS = [
|
|
|
10673
10746
|
"jsonApiType": "Tag",
|
|
10674
10747
|
"operation": "Create Tag (via Event)",
|
|
10675
10748
|
"description": "POST /events/{event_id}/tags",
|
|
10749
|
+
"stability": "official",
|
|
10676
10750
|
"method": "POST",
|
|
10677
10751
|
"path": "/calendar/v2/events/{event_id}/tags",
|
|
10678
10752
|
"deprecated": false,
|
|
@@ -10798,6 +10872,7 @@ const OPERATIONS = [
|
|
|
10798
10872
|
"jsonApiType": "EventConnection",
|
|
10799
10873
|
"operation": "Update Event Connection (via Event)",
|
|
10800
10874
|
"description": "PATCH /events/{event_id}/event_connections/{event_connection_id}",
|
|
10875
|
+
"stability": "official",
|
|
10801
10876
|
"method": "PATCH",
|
|
10802
10877
|
"path": "/calendar/v2/events/{event_id}/event_connections/{event_connection_id}",
|
|
10803
10878
|
"deprecated": false,
|
|
@@ -10910,6 +10985,7 @@ const OPERATIONS = [
|
|
|
10910
10985
|
"jsonApiType": "Tag",
|
|
10911
10986
|
"operation": "Update Tag (via Event)",
|
|
10912
10987
|
"description": "PATCH /events/{event_id}/tags/{tag_id}",
|
|
10988
|
+
"stability": "official",
|
|
10913
10989
|
"method": "PATCH",
|
|
10914
10990
|
"path": "/calendar/v2/events/{event_id}/tags/{tag_id}",
|
|
10915
10991
|
"deprecated": false,
|
|
@@ -11076,6 +11152,7 @@ const OPERATIONS = [
|
|
|
11076
11152
|
"resource": "Event",
|
|
11077
11153
|
"operation": "Delete Event Connection (via Event)",
|
|
11078
11154
|
"description": "DELETE /events/{event_id}/event_connections/{event_connection_id}",
|
|
11155
|
+
"stability": "official",
|
|
11079
11156
|
"method": "DELETE",
|
|
11080
11157
|
"path": "/calendar/v2/events/{event_id}/event_connections/{event_connection_id}",
|
|
11081
11158
|
"deprecated": false,
|
|
@@ -11151,6 +11228,7 @@ const OPERATIONS = [
|
|
|
11151
11228
|
"resource": "Event",
|
|
11152
11229
|
"operation": "Delete Tag (via Event)",
|
|
11153
11230
|
"description": "DELETE /events/{event_id}/tags/{tag_id}",
|
|
11231
|
+
"stability": "official",
|
|
11154
11232
|
"method": "DELETE",
|
|
11155
11233
|
"path": "/calendar/v2/events/{event_id}/tags/{tag_id}",
|
|
11156
11234
|
"deprecated": false,
|
|
@@ -11232,6 +11310,7 @@ const OPERATIONS = [
|
|
|
11232
11310
|
"resource": "Feed",
|
|
11233
11311
|
"operation": "List Feeds",
|
|
11234
11312
|
"description": "GET /feeds",
|
|
11313
|
+
"stability": "official",
|
|
11235
11314
|
"method": "GET",
|
|
11236
11315
|
"path": "/calendar/v2/feeds",
|
|
11237
11316
|
"deprecated": false,
|
|
@@ -11265,6 +11344,7 @@ const OPERATIONS = [
|
|
|
11265
11344
|
"resource": "Feed",
|
|
11266
11345
|
"operation": "Get Feed",
|
|
11267
11346
|
"description": "GET /feeds/{feed_id}",
|
|
11347
|
+
"stability": "official",
|
|
11268
11348
|
"method": "GET",
|
|
11269
11349
|
"path": "/calendar/v2/feeds/{feed_id}",
|
|
11270
11350
|
"deprecated": false,
|
|
@@ -11308,6 +11388,7 @@ const OPERATIONS = [
|
|
|
11308
11388
|
"resource": "Job Status",
|
|
11309
11389
|
"operation": "List Job Statuses",
|
|
11310
11390
|
"description": "GET /job_statuses",
|
|
11391
|
+
"stability": "official",
|
|
11311
11392
|
"method": "GET",
|
|
11312
11393
|
"path": "/calendar/v2/job_statuses",
|
|
11313
11394
|
"deprecated": false,
|
|
@@ -11324,6 +11405,7 @@ const OPERATIONS = [
|
|
|
11324
11405
|
"resource": "Job Status",
|
|
11325
11406
|
"operation": "Get Job Status",
|
|
11326
11407
|
"description": "GET /job_statuses/{job_status_id}",
|
|
11408
|
+
"stability": "official",
|
|
11327
11409
|
"method": "GET",
|
|
11328
11410
|
"path": "/calendar/v2/job_statuses/{job_status_id}",
|
|
11329
11411
|
"deprecated": false,
|
|
@@ -11367,6 +11449,7 @@ const OPERATIONS = [
|
|
|
11367
11449
|
"resource": "Person",
|
|
11368
11450
|
"operation": "List Event Resource Requests (via Person)",
|
|
11369
11451
|
"description": "GET /people/{person_id}/event_resource_requests",
|
|
11452
|
+
"stability": "official",
|
|
11370
11453
|
"method": "GET",
|
|
11371
11454
|
"path": "/calendar/v2/people/{person_id}/event_resource_requests",
|
|
11372
11455
|
"deprecated": false,
|
|
@@ -11611,6 +11694,7 @@ const OPERATIONS = [
|
|
|
11611
11694
|
"resource": "Person",
|
|
11612
11695
|
"operation": "List Organization (via Person)",
|
|
11613
11696
|
"description": "GET /people/{person_id}/organization",
|
|
11697
|
+
"stability": "official",
|
|
11614
11698
|
"method": "GET",
|
|
11615
11699
|
"path": "/calendar/v2/people/{person_id}/organization",
|
|
11616
11700
|
"deprecated": false,
|
|
@@ -11658,6 +11742,7 @@ const OPERATIONS = [
|
|
|
11658
11742
|
"resource": "Person",
|
|
11659
11743
|
"operation": "List People",
|
|
11660
11744
|
"description": "GET /people",
|
|
11745
|
+
"stability": "official",
|
|
11661
11746
|
"method": "GET",
|
|
11662
11747
|
"path": "/calendar/v2/people",
|
|
11663
11748
|
"deprecated": false,
|
|
@@ -11851,6 +11936,7 @@ const OPERATIONS = [
|
|
|
11851
11936
|
"resource": "Person",
|
|
11852
11937
|
"operation": "Get Event Resource Request (via Person)",
|
|
11853
11938
|
"description": "GET /people/{person_id}/event_resource_requests/{event_resource_request_id}",
|
|
11939
|
+
"stability": "official",
|
|
11854
11940
|
"method": "GET",
|
|
11855
11941
|
"path": "/calendar/v2/people/{person_id}/event_resource_requests/{event_resource_request_id}",
|
|
11856
11942
|
"deprecated": false,
|
|
@@ -11951,6 +12037,7 @@ const OPERATIONS = [
|
|
|
11951
12037
|
"resource": "Person",
|
|
11952
12038
|
"operation": "Get Me",
|
|
11953
12039
|
"description": "GET /me",
|
|
12040
|
+
"stability": "official",
|
|
11954
12041
|
"method": "GET",
|
|
11955
12042
|
"path": "/calendar/v2/me",
|
|
11956
12043
|
"deprecated": false,
|
|
@@ -11984,6 +12071,7 @@ const OPERATIONS = [
|
|
|
11984
12071
|
"resource": "Person",
|
|
11985
12072
|
"operation": "Get Organization (via Person)",
|
|
11986
12073
|
"description": "GET /people/{person_id}/organization/{organization_id}",
|
|
12074
|
+
"stability": "official",
|
|
11987
12075
|
"method": "GET",
|
|
11988
12076
|
"path": "/calendar/v2/people/{person_id}/organization/{organization_id}",
|
|
11989
12077
|
"deprecated": false,
|
|
@@ -12062,6 +12150,7 @@ const OPERATIONS = [
|
|
|
12062
12150
|
"resource": "Person",
|
|
12063
12151
|
"operation": "Get Person",
|
|
12064
12152
|
"description": "GET /people/{person_id}",
|
|
12153
|
+
"stability": "official",
|
|
12065
12154
|
"method": "GET",
|
|
12066
12155
|
"path": "/calendar/v2/people/{person_id}",
|
|
12067
12156
|
"deprecated": false,
|
|
@@ -12126,6 +12215,7 @@ const OPERATIONS = [
|
|
|
12126
12215
|
"resource": "Report Template",
|
|
12127
12216
|
"operation": "List Report Templates",
|
|
12128
12217
|
"description": "GET /report_templates",
|
|
12218
|
+
"stability": "official",
|
|
12129
12219
|
"method": "GET",
|
|
12130
12220
|
"path": "/calendar/v2/report_templates",
|
|
12131
12221
|
"deprecated": false,
|
|
@@ -12142,6 +12232,7 @@ const OPERATIONS = [
|
|
|
12142
12232
|
"resource": "Report Template",
|
|
12143
12233
|
"operation": "Get Report Template",
|
|
12144
12234
|
"description": "GET /report_templates/{report_template_id}",
|
|
12235
|
+
"stability": "official",
|
|
12145
12236
|
"method": "GET",
|
|
12146
12237
|
"path": "/calendar/v2/report_templates/{report_template_id}",
|
|
12147
12238
|
"deprecated": false,
|
|
@@ -12186,6 +12277,7 @@ const OPERATIONS = [
|
|
|
12186
12277
|
"jsonApiType": "ReportTemplate",
|
|
12187
12278
|
"operation": "Create Report Template",
|
|
12188
12279
|
"description": "POST /report_templates",
|
|
12280
|
+
"stability": "official",
|
|
12189
12281
|
"method": "POST",
|
|
12190
12282
|
"path": "/calendar/v2/report_templates",
|
|
12191
12283
|
"deprecated": false,
|
|
@@ -12225,6 +12317,7 @@ const OPERATIONS = [
|
|
|
12225
12317
|
"jsonApiType": "ReportTemplate",
|
|
12226
12318
|
"operation": "Update Report Template",
|
|
12227
12319
|
"description": "PATCH /report_templates/{report_template_id}",
|
|
12320
|
+
"stability": "official",
|
|
12228
12321
|
"method": "PATCH",
|
|
12229
12322
|
"path": "/calendar/v2/report_templates/{report_template_id}",
|
|
12230
12323
|
"deprecated": false,
|
|
@@ -12290,6 +12383,7 @@ const OPERATIONS = [
|
|
|
12290
12383
|
"resource": "Report Template",
|
|
12291
12384
|
"operation": "Delete Report Template",
|
|
12292
12385
|
"description": "DELETE /report_templates/{report_template_id}",
|
|
12386
|
+
"stability": "official",
|
|
12293
12387
|
"method": "DELETE",
|
|
12294
12388
|
"path": "/calendar/v2/report_templates/{report_template_id}",
|
|
12295
12389
|
"deprecated": false,
|
|
@@ -12333,6 +12427,7 @@ const OPERATIONS = [
|
|
|
12333
12427
|
"resource": "Resource Approval Group",
|
|
12334
12428
|
"operation": "List Event Resource Requests (via Resource Approval Group)",
|
|
12335
12429
|
"description": "GET /resource_approval_groups/{resource_approval_group_id}/event_resource_requests",
|
|
12430
|
+
"stability": "official",
|
|
12336
12431
|
"method": "GET",
|
|
12337
12432
|
"path": "/calendar/v2/resource_approval_groups/{resource_approval_group_id}/event_resource_requests",
|
|
12338
12433
|
"deprecated": false,
|
|
@@ -12579,6 +12674,7 @@ const OPERATIONS = [
|
|
|
12579
12674
|
"resource": "Resource Approval Group",
|
|
12580
12675
|
"operation": "List People (via Resource Approval Group)",
|
|
12581
12676
|
"description": "GET /resource_approval_groups/{resource_approval_group_id}/people",
|
|
12677
|
+
"stability": "official",
|
|
12582
12678
|
"method": "GET",
|
|
12583
12679
|
"path": "/calendar/v2/resource_approval_groups/{resource_approval_group_id}/people",
|
|
12584
12680
|
"deprecated": false,
|
|
@@ -12793,6 +12889,7 @@ const OPERATIONS = [
|
|
|
12793
12889
|
"resource": "Resource Approval Group",
|
|
12794
12890
|
"operation": "List Required Approvals (via Resource Approval Group)",
|
|
12795
12891
|
"description": "GET /resource_approval_groups/{resource_approval_group_id}/required_approvals",
|
|
12892
|
+
"stability": "official",
|
|
12796
12893
|
"method": "GET",
|
|
12797
12894
|
"path": "/calendar/v2/resource_approval_groups/{resource_approval_group_id}/required_approvals",
|
|
12798
12895
|
"deprecated": false,
|
|
@@ -12861,6 +12958,7 @@ const OPERATIONS = [
|
|
|
12861
12958
|
"resource": "Resource Approval Group",
|
|
12862
12959
|
"operation": "List Resource (via Required Approval)",
|
|
12863
12960
|
"description": "GET /resource_approval_groups/{resource_approval_group_id}/required_approvals/{required_approval_id}/resource",
|
|
12961
|
+
"stability": "official",
|
|
12864
12962
|
"method": "GET",
|
|
12865
12963
|
"path": "/calendar/v2/resource_approval_groups/{resource_approval_group_id}/required_approvals/{required_approval_id}/resource",
|
|
12866
12964
|
"deprecated": false,
|
|
@@ -13165,6 +13263,7 @@ const OPERATIONS = [
|
|
|
13165
13263
|
"resource": "Resource Approval Group",
|
|
13166
13264
|
"operation": "List Resource Approval Groups",
|
|
13167
13265
|
"description": "GET /resource_approval_groups",
|
|
13266
|
+
"stability": "official",
|
|
13168
13267
|
"method": "GET",
|
|
13169
13268
|
"path": "/calendar/v2/resource_approval_groups",
|
|
13170
13269
|
"deprecated": false,
|
|
@@ -13401,6 +13500,7 @@ const OPERATIONS = [
|
|
|
13401
13500
|
"resource": "Resource Approval Group",
|
|
13402
13501
|
"operation": "List Resources (via Resource Approval Group)",
|
|
13403
13502
|
"description": "GET /resource_approval_groups/{resource_approval_group_id}/resources",
|
|
13503
|
+
"stability": "official",
|
|
13404
13504
|
"method": "GET",
|
|
13405
13505
|
"path": "/calendar/v2/resource_approval_groups/{resource_approval_group_id}/resources",
|
|
13406
13506
|
"deprecated": false,
|
|
@@ -13677,6 +13777,7 @@ const OPERATIONS = [
|
|
|
13677
13777
|
"resource": "Resource Approval Group",
|
|
13678
13778
|
"operation": "Get Event Resource Request (via Resource Approval Group)",
|
|
13679
13779
|
"description": "GET /resource_approval_groups/{resource_approval_group_id}/event_resource_requests/{event_resource_request_id}",
|
|
13780
|
+
"stability": "official",
|
|
13680
13781
|
"method": "GET",
|
|
13681
13782
|
"path": "/calendar/v2/resource_approval_groups/{resource_approval_group_id}/event_resource_requests/{event_resource_request_id}",
|
|
13682
13783
|
"deprecated": false,
|
|
@@ -13769,6 +13870,7 @@ const OPERATIONS = [
|
|
|
13769
13870
|
"resource": "Resource Approval Group",
|
|
13770
13871
|
"operation": "Get Person (via Resource Approval Group)",
|
|
13771
13872
|
"description": "GET /resource_approval_groups/{resource_approval_group_id}/people/{person_id}",
|
|
13873
|
+
"stability": "official",
|
|
13772
13874
|
"method": "GET",
|
|
13773
13875
|
"path": "/calendar/v2/resource_approval_groups/{resource_approval_group_id}/people/{person_id}",
|
|
13774
13876
|
"deprecated": false,
|
|
@@ -13865,6 +13967,7 @@ const OPERATIONS = [
|
|
|
13865
13967
|
"resource": "Resource Approval Group",
|
|
13866
13968
|
"operation": "Get Required Approval (via Resource Approval Group)",
|
|
13867
13969
|
"description": "GET /resource_approval_groups/{resource_approval_group_id}/required_approvals/{required_approval_id}",
|
|
13970
|
+
"stability": "official",
|
|
13868
13971
|
"method": "GET",
|
|
13869
13972
|
"path": "/calendar/v2/resource_approval_groups/{resource_approval_group_id}/required_approvals/{required_approval_id}",
|
|
13870
13973
|
"deprecated": false,
|
|
@@ -13957,6 +14060,7 @@ const OPERATIONS = [
|
|
|
13957
14060
|
"resource": "Resource Approval Group",
|
|
13958
14061
|
"operation": "Get Resource (via Required Approval)",
|
|
13959
14062
|
"description": "GET /resource_approval_groups/{resource_approval_group_id}/required_approvals/{required_approval_id}/resource/{resource_id}",
|
|
14063
|
+
"stability": "official",
|
|
13960
14064
|
"method": "GET",
|
|
13961
14065
|
"path": "/calendar/v2/resource_approval_groups/{resource_approval_group_id}/required_approvals/{required_approval_id}/resource/{resource_id}",
|
|
13962
14066
|
"deprecated": false,
|
|
@@ -14090,6 +14194,7 @@ const OPERATIONS = [
|
|
|
14090
14194
|
"resource": "Resource Approval Group",
|
|
14091
14195
|
"operation": "Get Resource (via Resource Approval Group)",
|
|
14092
14196
|
"description": "GET /resource_approval_groups/{resource_approval_group_id}/resources/{resource_id}",
|
|
14197
|
+
"stability": "official",
|
|
14093
14198
|
"method": "GET",
|
|
14094
14199
|
"path": "/calendar/v2/resource_approval_groups/{resource_approval_group_id}/resources/{resource_id}",
|
|
14095
14200
|
"deprecated": false,
|
|
@@ -14188,6 +14293,7 @@ const OPERATIONS = [
|
|
|
14188
14293
|
"resource": "Resource Approval Group",
|
|
14189
14294
|
"operation": "Get Resource Approval Group",
|
|
14190
14295
|
"description": "GET /resource_approval_groups/{resource_approval_group_id}",
|
|
14296
|
+
"stability": "official",
|
|
14191
14297
|
"method": "GET",
|
|
14192
14298
|
"path": "/calendar/v2/resource_approval_groups/{resource_approval_group_id}",
|
|
14193
14299
|
"deprecated": false,
|
|
@@ -14250,6 +14356,7 @@ const OPERATIONS = [
|
|
|
14250
14356
|
"jsonApiType": "Resource",
|
|
14251
14357
|
"operation": "Update Resource (via Required Approval)",
|
|
14252
14358
|
"description": "PATCH /resource_approval_groups/{resource_approval_group_id}/required_approvals/{required_approval_id}/resource/{resource_id}",
|
|
14359
|
+
"stability": "official",
|
|
14253
14360
|
"method": "PATCH",
|
|
14254
14361
|
"path": "/calendar/v2/resource_approval_groups/{resource_approval_group_id}/required_approvals/{required_approval_id}/resource/{resource_id}",
|
|
14255
14362
|
"deprecated": false,
|
|
@@ -14466,6 +14573,7 @@ const OPERATIONS = [
|
|
|
14466
14573
|
"jsonApiType": "Resource",
|
|
14467
14574
|
"operation": "Update Resource (via Resource Approval Group)",
|
|
14468
14575
|
"description": "PATCH /resource_approval_groups/{resource_approval_group_id}/resources/{resource_id}",
|
|
14576
|
+
"stability": "official",
|
|
14469
14577
|
"method": "PATCH",
|
|
14470
14578
|
"path": "/calendar/v2/resource_approval_groups/{resource_approval_group_id}/resources/{resource_id}",
|
|
14471
14579
|
"deprecated": false,
|
|
@@ -14646,6 +14754,7 @@ const OPERATIONS = [
|
|
|
14646
14754
|
"resource": "Resource Approval Group",
|
|
14647
14755
|
"operation": "Delete Resource (via Required Approval)",
|
|
14648
14756
|
"description": "DELETE /resource_approval_groups/{resource_approval_group_id}/required_approvals/{required_approval_id}/resource/{resource_id}",
|
|
14757
|
+
"stability": "official",
|
|
14649
14758
|
"method": "DELETE",
|
|
14650
14759
|
"path": "/calendar/v2/resource_approval_groups/{resource_approval_group_id}/required_approvals/{required_approval_id}/resource/{resource_id}",
|
|
14651
14760
|
"deprecated": false,
|
|
@@ -14762,6 +14871,7 @@ const OPERATIONS = [
|
|
|
14762
14871
|
"resource": "Resource Approval Group",
|
|
14763
14872
|
"operation": "Delete Resource (via Resource Approval Group)",
|
|
14764
14873
|
"description": "DELETE /resource_approval_groups/{resource_approval_group_id}/resources/{resource_id}",
|
|
14874
|
+
"stability": "official",
|
|
14765
14875
|
"method": "DELETE",
|
|
14766
14876
|
"path": "/calendar/v2/resource_approval_groups/{resource_approval_group_id}/resources/{resource_id}",
|
|
14767
14877
|
"deprecated": false,
|
|
@@ -14843,6 +14953,7 @@ const OPERATIONS = [
|
|
|
14843
14953
|
"resource": "Resource Booking",
|
|
14844
14954
|
"operation": "List Event Resource Request (via Resource Booking)",
|
|
14845
14955
|
"description": "GET /resource_bookings/{resource_booking_id}/event_resource_request",
|
|
14956
|
+
"stability": "official",
|
|
14846
14957
|
"method": "GET",
|
|
14847
14958
|
"path": "/calendar/v2/resource_bookings/{resource_booking_id}/event_resource_request",
|
|
14848
14959
|
"deprecated": false,
|
|
@@ -15081,6 +15192,7 @@ const OPERATIONS = [
|
|
|
15081
15192
|
"resource": "Resource Booking",
|
|
15082
15193
|
"operation": "List Resource (via Resource Booking)",
|
|
15083
15194
|
"description": "GET /resource_bookings/{resource_booking_id}/resource",
|
|
15195
|
+
"stability": "official",
|
|
15084
15196
|
"method": "GET",
|
|
15085
15197
|
"path": "/calendar/v2/resource_bookings/{resource_booking_id}/resource",
|
|
15086
15198
|
"deprecated": false,
|
|
@@ -15349,6 +15461,7 @@ const OPERATIONS = [
|
|
|
15349
15461
|
"resource": "Resource Booking",
|
|
15350
15462
|
"operation": "List Resource Bookings",
|
|
15351
15463
|
"description": "GET /resource_bookings",
|
|
15464
|
+
"stability": "official",
|
|
15352
15465
|
"method": "GET",
|
|
15353
15466
|
"path": "/calendar/v2/resource_bookings",
|
|
15354
15467
|
"deprecated": false,
|
|
@@ -15715,6 +15828,7 @@ const OPERATIONS = [
|
|
|
15715
15828
|
"resource": "Resource Booking",
|
|
15716
15829
|
"operation": "Get Event Resource Request (via Resource Booking)",
|
|
15717
15830
|
"description": "GET /resource_bookings/{resource_booking_id}/event_resource_request/{event_resource_request_id}",
|
|
15831
|
+
"stability": "official",
|
|
15718
15832
|
"method": "GET",
|
|
15719
15833
|
"path": "/calendar/v2/resource_bookings/{resource_booking_id}/event_resource_request/{event_resource_request_id}",
|
|
15720
15834
|
"deprecated": false,
|
|
@@ -15811,6 +15925,7 @@ const OPERATIONS = [
|
|
|
15811
15925
|
"resource": "Resource Booking",
|
|
15812
15926
|
"operation": "Get Resource (via Resource Booking)",
|
|
15813
15927
|
"description": "GET /resource_bookings/{resource_booking_id}/resource/{resource_id}",
|
|
15928
|
+
"stability": "official",
|
|
15814
15929
|
"method": "GET",
|
|
15815
15930
|
"path": "/calendar/v2/resource_bookings/{resource_booking_id}/resource/{resource_id}",
|
|
15816
15931
|
"deprecated": false,
|
|
@@ -15908,6 +16023,7 @@ const OPERATIONS = [
|
|
|
15908
16023
|
"resource": "Resource Booking",
|
|
15909
16024
|
"operation": "Get Resource Booking",
|
|
15910
16025
|
"description": "GET /resource_bookings/{resource_booking_id}",
|
|
16026
|
+
"stability": "official",
|
|
15911
16027
|
"method": "GET",
|
|
15912
16028
|
"path": "/calendar/v2/resource_bookings/{resource_booking_id}",
|
|
15913
16029
|
"deprecated": false,
|
|
@@ -15969,6 +16085,7 @@ const OPERATIONS = [
|
|
|
15969
16085
|
"jsonApiType": "Resource",
|
|
15970
16086
|
"operation": "Update Resource (via Resource Booking)",
|
|
15971
16087
|
"description": "PATCH /resource_bookings/{resource_booking_id}/resource/{resource_id}",
|
|
16088
|
+
"stability": "official",
|
|
15972
16089
|
"method": "PATCH",
|
|
15973
16090
|
"path": "/calendar/v2/resource_bookings/{resource_booking_id}/resource/{resource_id}",
|
|
15974
16091
|
"deprecated": false,
|
|
@@ -16148,6 +16265,7 @@ const OPERATIONS = [
|
|
|
16148
16265
|
"resource": "Resource Booking",
|
|
16149
16266
|
"operation": "Delete Resource (via Resource Booking)",
|
|
16150
16267
|
"description": "DELETE /resource_bookings/{resource_booking_id}/resource/{resource_id}",
|
|
16268
|
+
"stability": "official",
|
|
16151
16269
|
"method": "DELETE",
|
|
16152
16270
|
"path": "/calendar/v2/resource_bookings/{resource_booking_id}/resource/{resource_id}",
|
|
16153
16271
|
"deprecated": false,
|
|
@@ -16228,6 +16346,7 @@ const OPERATIONS = [
|
|
|
16228
16346
|
"resource": "Resource Folder",
|
|
16229
16347
|
"operation": "List Resource Folders",
|
|
16230
16348
|
"description": "GET /resource_folders",
|
|
16349
|
+
"stability": "official",
|
|
16231
16350
|
"method": "GET",
|
|
16232
16351
|
"path": "/calendar/v2/resource_folders",
|
|
16233
16352
|
"deprecated": false,
|
|
@@ -16436,6 +16555,7 @@ const OPERATIONS = [
|
|
|
16436
16555
|
"resource": "Resource Folder",
|
|
16437
16556
|
"operation": "List Resources (via Resource Folder)",
|
|
16438
16557
|
"description": "GET /resource_folders/{resource_folder_id}/resources",
|
|
16558
|
+
"stability": "official",
|
|
16439
16559
|
"method": "GET",
|
|
16440
16560
|
"path": "/calendar/v2/resource_folders/{resource_folder_id}/resources",
|
|
16441
16561
|
"deprecated": false,
|
|
@@ -16705,6 +16825,7 @@ const OPERATIONS = [
|
|
|
16705
16825
|
"resource": "Resource Folder",
|
|
16706
16826
|
"operation": "Get Resource (via Resource Folder)",
|
|
16707
16827
|
"description": "GET /resource_folders/{resource_folder_id}/resources/{resource_id}",
|
|
16828
|
+
"stability": "official",
|
|
16708
16829
|
"method": "GET",
|
|
16709
16830
|
"path": "/calendar/v2/resource_folders/{resource_folder_id}/resources/{resource_id}",
|
|
16710
16831
|
"deprecated": false,
|
|
@@ -16803,6 +16924,7 @@ const OPERATIONS = [
|
|
|
16803
16924
|
"resource": "Resource Folder",
|
|
16804
16925
|
"operation": "Get Resource Folder",
|
|
16805
16926
|
"description": "GET /resource_folders/{resource_folder_id}",
|
|
16927
|
+
"stability": "official",
|
|
16806
16928
|
"method": "GET",
|
|
16807
16929
|
"path": "/calendar/v2/resource_folders/{resource_folder_id}",
|
|
16808
16930
|
"deprecated": false,
|
|
@@ -16865,6 +16987,7 @@ const OPERATIONS = [
|
|
|
16865
16987
|
"jsonApiType": "ResourceFolder",
|
|
16866
16988
|
"operation": "Create Resource Folder",
|
|
16867
16989
|
"description": "POST /resource_folders",
|
|
16990
|
+
"stability": "official",
|
|
16868
16991
|
"method": "POST",
|
|
16869
16992
|
"path": "/calendar/v2/resource_folders",
|
|
16870
16993
|
"deprecated": false,
|
|
@@ -16941,6 +17064,7 @@ const OPERATIONS = [
|
|
|
16941
17064
|
"jsonApiType": "Resource",
|
|
16942
17065
|
"operation": "Update Resource (via Resource Folder)",
|
|
16943
17066
|
"description": "PATCH /resource_folders/{resource_folder_id}/resources/{resource_id}",
|
|
17067
|
+
"stability": "official",
|
|
16944
17068
|
"method": "PATCH",
|
|
16945
17069
|
"path": "/calendar/v2/resource_folders/{resource_folder_id}/resources/{resource_id}",
|
|
16946
17070
|
"deprecated": false,
|
|
@@ -17122,6 +17246,7 @@ const OPERATIONS = [
|
|
|
17122
17246
|
"jsonApiType": "ResourceFolder",
|
|
17123
17247
|
"operation": "Update Resource Folder",
|
|
17124
17248
|
"description": "PATCH /resource_folders/{resource_folder_id}",
|
|
17249
|
+
"stability": "official",
|
|
17125
17250
|
"method": "PATCH",
|
|
17126
17251
|
"path": "/calendar/v2/resource_folders/{resource_folder_id}",
|
|
17127
17252
|
"deprecated": false,
|
|
@@ -17218,6 +17343,7 @@ const OPERATIONS = [
|
|
|
17218
17343
|
"resource": "Resource Folder",
|
|
17219
17344
|
"operation": "Delete Resource (via Resource Folder)",
|
|
17220
17345
|
"description": "DELETE /resource_folders/{resource_folder_id}/resources/{resource_id}",
|
|
17346
|
+
"stability": "official",
|
|
17221
17347
|
"method": "DELETE",
|
|
17222
17348
|
"path": "/calendar/v2/resource_folders/{resource_folder_id}/resources/{resource_id}",
|
|
17223
17349
|
"deprecated": false,
|
|
@@ -17299,6 +17425,7 @@ const OPERATIONS = [
|
|
|
17299
17425
|
"resource": "Resource Folder",
|
|
17300
17426
|
"operation": "Delete Resource Folder",
|
|
17301
17427
|
"description": "DELETE /resource_folders/{resource_folder_id}",
|
|
17428
|
+
"stability": "official",
|
|
17302
17429
|
"method": "DELETE",
|
|
17303
17430
|
"path": "/calendar/v2/resource_folders/{resource_folder_id}",
|
|
17304
17431
|
"deprecated": false,
|
|
@@ -17343,6 +17470,7 @@ const OPERATIONS = [
|
|
|
17343
17470
|
"resource": "Resource Question",
|
|
17344
17471
|
"operation": "List Resource Questions",
|
|
17345
17472
|
"description": "GET /resource_questions",
|
|
17473
|
+
"stability": "official",
|
|
17346
17474
|
"method": "GET",
|
|
17347
17475
|
"path": "/calendar/v2/resource_questions",
|
|
17348
17476
|
"deprecated": false,
|
|
@@ -17499,6 +17627,7 @@ const OPERATIONS = [
|
|
|
17499
17627
|
"resource": "Resource Question",
|
|
17500
17628
|
"operation": "Get Resource Question",
|
|
17501
17629
|
"description": "GET /resource_questions/{resource_question_id}",
|
|
17630
|
+
"stability": "official",
|
|
17502
17631
|
"method": "GET",
|
|
17503
17632
|
"path": "/calendar/v2/resource_questions/{resource_question_id}",
|
|
17504
17633
|
"deprecated": false,
|
|
@@ -17543,6 +17672,7 @@ const OPERATIONS = [
|
|
|
17543
17672
|
"jsonApiType": "ResourceQuestion",
|
|
17544
17673
|
"operation": "Update Resource Question",
|
|
17545
17674
|
"description": "PATCH /resource_questions/{resource_question_id}",
|
|
17675
|
+
"stability": "official",
|
|
17546
17676
|
"method": "PATCH",
|
|
17547
17677
|
"path": "/calendar/v2/resource_questions/{resource_question_id}",
|
|
17548
17678
|
"deprecated": false,
|
|
@@ -17636,6 +17766,7 @@ const OPERATIONS = [
|
|
|
17636
17766
|
"resource": "Resource Question",
|
|
17637
17767
|
"operation": "Delete Resource Question",
|
|
17638
17768
|
"description": "DELETE /resource_questions/{resource_question_id}",
|
|
17769
|
+
"stability": "official",
|
|
17639
17770
|
"method": "DELETE",
|
|
17640
17771
|
"path": "/calendar/v2/resource_questions/{resource_question_id}",
|
|
17641
17772
|
"deprecated": false,
|
|
@@ -17679,6 +17810,7 @@ const OPERATIONS = [
|
|
|
17679
17810
|
"resource": "Resource",
|
|
17680
17811
|
"operation": "List Conflicts (via Resource)",
|
|
17681
17812
|
"description": "GET /resources/{resource_id}/conflicts",
|
|
17813
|
+
"stability": "official",
|
|
17682
17814
|
"method": "GET",
|
|
17683
17815
|
"path": "/calendar/v2/resources/{resource_id}/conflicts",
|
|
17684
17816
|
"deprecated": false,
|
|
@@ -17755,6 +17887,7 @@ const OPERATIONS = [
|
|
|
17755
17887
|
"resource": "Resource",
|
|
17756
17888
|
"operation": "List Event Resource Requests (via Resource)",
|
|
17757
17889
|
"description": "GET /resources/{resource_id}/event_resource_requests",
|
|
17890
|
+
"stability": "official",
|
|
17758
17891
|
"method": "GET",
|
|
17759
17892
|
"path": "/calendar/v2/resources/{resource_id}/event_resource_requests",
|
|
17760
17893
|
"deprecated": false,
|
|
@@ -17954,6 +18087,7 @@ const OPERATIONS = [
|
|
|
17954
18087
|
"resource": "Resource",
|
|
17955
18088
|
"operation": "List Required Approvals (via Resource)",
|
|
17956
18089
|
"description": "GET /resources/{resource_id}/required_approvals",
|
|
18090
|
+
"stability": "official",
|
|
17957
18091
|
"method": "GET",
|
|
17958
18092
|
"path": "/calendar/v2/resources/{resource_id}/required_approvals",
|
|
17959
18093
|
"deprecated": false,
|
|
@@ -18015,6 +18149,7 @@ const OPERATIONS = [
|
|
|
18015
18149
|
"resource": "Resource",
|
|
18016
18150
|
"operation": "List Resource Approval Groups (via Resource)",
|
|
18017
18151
|
"description": "GET /resources/{resource_id}/resource_approval_groups",
|
|
18152
|
+
"stability": "official",
|
|
18018
18153
|
"method": "GET",
|
|
18019
18154
|
"path": "/calendar/v2/resources/{resource_id}/resource_approval_groups",
|
|
18020
18155
|
"deprecated": false,
|
|
@@ -18284,6 +18419,7 @@ const OPERATIONS = [
|
|
|
18284
18419
|
"resource": "Resource",
|
|
18285
18420
|
"operation": "List Resource Bookings (via Resource)",
|
|
18286
18421
|
"description": "GET /resources/{resource_id}/resource_bookings",
|
|
18422
|
+
"stability": "official",
|
|
18287
18423
|
"method": "GET",
|
|
18288
18424
|
"path": "/calendar/v2/resources/{resource_id}/resource_bookings",
|
|
18289
18425
|
"deprecated": false,
|
|
@@ -18643,6 +18779,7 @@ const OPERATIONS = [
|
|
|
18643
18779
|
"resource": "Resource",
|
|
18644
18780
|
"operation": "List Resource Folder (via Resource)",
|
|
18645
18781
|
"description": "GET /resources/{resource_id}/resource_folder",
|
|
18782
|
+
"stability": "official",
|
|
18646
18783
|
"method": "GET",
|
|
18647
18784
|
"path": "/calendar/v2/resources/{resource_id}/resource_folder",
|
|
18648
18785
|
"deprecated": false,
|
|
@@ -18872,6 +19009,7 @@ const OPERATIONS = [
|
|
|
18872
19009
|
"resource": "Resource",
|
|
18873
19010
|
"operation": "List Resource Questions (via Resource)",
|
|
18874
19011
|
"description": "GET /resources/{resource_id}/resource_questions",
|
|
19012
|
+
"stability": "official",
|
|
18875
19013
|
"method": "GET",
|
|
18876
19014
|
"path": "/calendar/v2/resources/{resource_id}/resource_questions",
|
|
18877
19015
|
"deprecated": false,
|
|
@@ -19056,6 +19194,7 @@ const OPERATIONS = [
|
|
|
19056
19194
|
"resource": "Resource",
|
|
19057
19195
|
"operation": "List Resources",
|
|
19058
19196
|
"description": "GET /resources",
|
|
19197
|
+
"stability": "official",
|
|
19059
19198
|
"method": "GET",
|
|
19060
19199
|
"path": "/calendar/v2/resources",
|
|
19061
19200
|
"deprecated": false,
|
|
@@ -19299,6 +19438,7 @@ const OPERATIONS = [
|
|
|
19299
19438
|
"resource": "Resource",
|
|
19300
19439
|
"operation": "List Room Setups (via Resource)",
|
|
19301
19440
|
"description": "GET /resources/{resource_id}/room_setups",
|
|
19441
|
+
"stability": "official",
|
|
19302
19442
|
"method": "GET",
|
|
19303
19443
|
"path": "/calendar/v2/resources/{resource_id}/room_setups",
|
|
19304
19444
|
"deprecated": false,
|
|
@@ -19528,6 +19668,7 @@ const OPERATIONS = [
|
|
|
19528
19668
|
"resource": "Resource",
|
|
19529
19669
|
"operation": "Get Conflict (via Resource)",
|
|
19530
19670
|
"description": "GET /resources/{resource_id}/conflicts/{conflict_id}",
|
|
19671
|
+
"stability": "official",
|
|
19531
19672
|
"method": "GET",
|
|
19532
19673
|
"path": "/calendar/v2/resources/{resource_id}/conflicts/{conflict_id}",
|
|
19533
19674
|
"deprecated": false,
|
|
@@ -19625,6 +19766,7 @@ const OPERATIONS = [
|
|
|
19625
19766
|
"resource": "Resource",
|
|
19626
19767
|
"operation": "Get Event Resource Request (via Resource)",
|
|
19627
19768
|
"description": "GET /resources/{resource_id}/event_resource_requests/{event_resource_request_id}",
|
|
19769
|
+
"stability": "official",
|
|
19628
19770
|
"method": "GET",
|
|
19629
19771
|
"path": "/calendar/v2/resources/{resource_id}/event_resource_requests/{event_resource_request_id}",
|
|
19630
19772
|
"deprecated": false,
|
|
@@ -19722,6 +19864,7 @@ const OPERATIONS = [
|
|
|
19722
19864
|
"resource": "Resource",
|
|
19723
19865
|
"operation": "Get Required Approval (via Resource)",
|
|
19724
19866
|
"description": "GET /resources/{resource_id}/required_approvals/{required_approval_id}",
|
|
19867
|
+
"stability": "official",
|
|
19725
19868
|
"method": "GET",
|
|
19726
19869
|
"path": "/calendar/v2/resources/{resource_id}/required_approvals/{required_approval_id}",
|
|
19727
19870
|
"deprecated": false,
|
|
@@ -19814,6 +19957,7 @@ const OPERATIONS = [
|
|
|
19814
19957
|
"resource": "Resource",
|
|
19815
19958
|
"operation": "Get Resource Approval Group (via Resource)",
|
|
19816
19959
|
"description": "GET /resources/{resource_id}/resource_approval_groups/{resource_approval_group_id}",
|
|
19960
|
+
"stability": "official",
|
|
19817
19961
|
"method": "GET",
|
|
19818
19962
|
"path": "/calendar/v2/resources/{resource_id}/resource_approval_groups/{resource_approval_group_id}",
|
|
19819
19963
|
"deprecated": false,
|
|
@@ -19912,6 +20056,7 @@ const OPERATIONS = [
|
|
|
19912
20056
|
"resource": "Resource",
|
|
19913
20057
|
"operation": "Get Resource Booking (via Resource)",
|
|
19914
20058
|
"description": "GET /resources/{resource_id}/resource_bookings/{resource_booking_id}",
|
|
20059
|
+
"stability": "official",
|
|
19915
20060
|
"method": "GET",
|
|
19916
20061
|
"path": "/calendar/v2/resources/{resource_id}/resource_bookings/{resource_booking_id}",
|
|
19917
20062
|
"deprecated": false,
|
|
@@ -20009,6 +20154,7 @@ const OPERATIONS = [
|
|
|
20009
20154
|
"resource": "Resource",
|
|
20010
20155
|
"operation": "Get Resource Folder (via Resource)",
|
|
20011
20156
|
"description": "GET /resources/{resource_id}/resource_folder/{resource_folder_id}",
|
|
20157
|
+
"stability": "official",
|
|
20012
20158
|
"method": "GET",
|
|
20013
20159
|
"path": "/calendar/v2/resources/{resource_id}/resource_folder/{resource_folder_id}",
|
|
20014
20160
|
"deprecated": false,
|
|
@@ -20107,6 +20253,7 @@ const OPERATIONS = [
|
|
|
20107
20253
|
"resource": "Resource",
|
|
20108
20254
|
"operation": "Get Resource Question (via Resource)",
|
|
20109
20255
|
"description": "GET /resources/{resource_id}/resource_questions/{resource_question_id}",
|
|
20256
|
+
"stability": "official",
|
|
20110
20257
|
"method": "GET",
|
|
20111
20258
|
"path": "/calendar/v2/resources/{resource_id}/resource_questions/{resource_question_id}",
|
|
20112
20259
|
"deprecated": false,
|
|
@@ -20182,6 +20329,7 @@ const OPERATIONS = [
|
|
|
20182
20329
|
"resource": "Resource",
|
|
20183
20330
|
"operation": "Get Resource",
|
|
20184
20331
|
"description": "GET /resources/{resource_id}",
|
|
20332
|
+
"stability": "official",
|
|
20185
20333
|
"method": "GET",
|
|
20186
20334
|
"path": "/calendar/v2/resources/{resource_id}",
|
|
20187
20335
|
"deprecated": false,
|
|
@@ -20243,6 +20391,7 @@ const OPERATIONS = [
|
|
|
20243
20391
|
"resource": "Resource",
|
|
20244
20392
|
"operation": "Get Room Setup (via Resource)",
|
|
20245
20393
|
"description": "GET /resources/{resource_id}/room_setups/{room_setup_id}",
|
|
20394
|
+
"stability": "official",
|
|
20246
20395
|
"method": "GET",
|
|
20247
20396
|
"path": "/calendar/v2/resources/{resource_id}/room_setups/{room_setup_id}",
|
|
20248
20397
|
"deprecated": false,
|
|
@@ -20337,6 +20486,7 @@ const OPERATIONS = [
|
|
|
20337
20486
|
"jsonApiType": "ResourceFolder",
|
|
20338
20487
|
"operation": "Create Resource Folder (via Resource)",
|
|
20339
20488
|
"description": "POST /resources/{resource_id}/resource_folder",
|
|
20489
|
+
"stability": "official",
|
|
20340
20490
|
"method": "POST",
|
|
20341
20491
|
"path": "/calendar/v2/resources/{resource_id}/resource_folder",
|
|
20342
20492
|
"deprecated": false,
|
|
@@ -20446,6 +20596,7 @@ const OPERATIONS = [
|
|
|
20446
20596
|
"jsonApiType": "ResourceQuestion",
|
|
20447
20597
|
"operation": "Create Resource Question (via Resource)",
|
|
20448
20598
|
"description": "POST /resources/{resource_id}/resource_questions",
|
|
20599
|
+
"stability": "official",
|
|
20449
20600
|
"method": "POST",
|
|
20450
20601
|
"path": "/calendar/v2/resources/{resource_id}/resource_questions",
|
|
20451
20602
|
"deprecated": false,
|
|
@@ -20541,6 +20692,7 @@ const OPERATIONS = [
|
|
|
20541
20692
|
"jsonApiType": "Resource",
|
|
20542
20693
|
"operation": "Create Resource",
|
|
20543
20694
|
"description": "POST /resources",
|
|
20695
|
+
"stability": "official",
|
|
20544
20696
|
"method": "POST",
|
|
20545
20697
|
"path": "/calendar/v2/resources",
|
|
20546
20698
|
"deprecated": false,
|
|
@@ -20666,6 +20818,7 @@ const OPERATIONS = [
|
|
|
20666
20818
|
"jsonApiType": "ResourceFolder",
|
|
20667
20819
|
"operation": "Update Resource Folder (via Resource)",
|
|
20668
20820
|
"description": "PATCH /resources/{resource_id}/resource_folder/{resource_folder_id}",
|
|
20821
|
+
"stability": "official",
|
|
20669
20822
|
"method": "PATCH",
|
|
20670
20823
|
"path": "/calendar/v2/resources/{resource_id}/resource_folder/{resource_folder_id}",
|
|
20671
20824
|
"deprecated": false,
|
|
@@ -20805,6 +20958,7 @@ const OPERATIONS = [
|
|
|
20805
20958
|
"jsonApiType": "ResourceQuestion",
|
|
20806
20959
|
"operation": "Update Resource Question (via Resource)",
|
|
20807
20960
|
"description": "PATCH /resources/{resource_id}/resource_questions/{resource_question_id}",
|
|
20961
|
+
"stability": "official",
|
|
20808
20962
|
"method": "PATCH",
|
|
20809
20963
|
"path": "/calendar/v2/resources/{resource_id}/resource_questions/{resource_question_id}",
|
|
20810
20964
|
"deprecated": false,
|
|
@@ -20931,6 +21085,7 @@ const OPERATIONS = [
|
|
|
20931
21085
|
"jsonApiType": "Resource",
|
|
20932
21086
|
"operation": "Update Resource",
|
|
20933
21087
|
"description": "PATCH /resources/{resource_id}",
|
|
21088
|
+
"stability": "official",
|
|
20934
21089
|
"method": "PATCH",
|
|
20935
21090
|
"path": "/calendar/v2/resources/{resource_id}",
|
|
20936
21091
|
"deprecated": false,
|
|
@@ -21074,6 +21229,7 @@ const OPERATIONS = [
|
|
|
21074
21229
|
"resource": "Resource",
|
|
21075
21230
|
"operation": "Delete Resource Folder (via Resource)",
|
|
21076
21231
|
"description": "DELETE /resources/{resource_id}/resource_folder/{resource_folder_id}",
|
|
21232
|
+
"stability": "official",
|
|
21077
21233
|
"method": "DELETE",
|
|
21078
21234
|
"path": "/calendar/v2/resources/{resource_id}/resource_folder/{resource_folder_id}",
|
|
21079
21235
|
"deprecated": false,
|
|
@@ -21155,6 +21311,7 @@ const OPERATIONS = [
|
|
|
21155
21311
|
"resource": "Resource",
|
|
21156
21312
|
"operation": "Delete Resource Question (via Resource)",
|
|
21157
21313
|
"description": "DELETE /resources/{resource_id}/resource_questions/{resource_question_id}",
|
|
21314
|
+
"stability": "official",
|
|
21158
21315
|
"method": "DELETE",
|
|
21159
21316
|
"path": "/calendar/v2/resources/{resource_id}/resource_questions/{resource_question_id}",
|
|
21160
21317
|
"deprecated": false,
|
|
@@ -21230,6 +21387,7 @@ const OPERATIONS = [
|
|
|
21230
21387
|
"resource": "Resource",
|
|
21231
21388
|
"operation": "Delete Resource",
|
|
21232
21389
|
"description": "DELETE /resources/{resource_id}",
|
|
21390
|
+
"stability": "official",
|
|
21233
21391
|
"method": "DELETE",
|
|
21234
21392
|
"path": "/calendar/v2/resources/{resource_id}",
|
|
21235
21393
|
"deprecated": false,
|
|
@@ -21274,6 +21432,7 @@ const OPERATIONS = [
|
|
|
21274
21432
|
"resource": "Room Setup",
|
|
21275
21433
|
"operation": "List Containing Resource (via Room Setup)",
|
|
21276
21434
|
"description": "GET /room_setups/{room_setup_id}/containing_resource",
|
|
21435
|
+
"stability": "official",
|
|
21277
21436
|
"method": "GET",
|
|
21278
21437
|
"path": "/calendar/v2/room_setups/{room_setup_id}/containing_resource",
|
|
21279
21438
|
"deprecated": false,
|
|
@@ -21318,6 +21477,7 @@ const OPERATIONS = [
|
|
|
21318
21477
|
"resource": "Room Setup",
|
|
21319
21478
|
"operation": "List Resource (via Resource Suggestion)",
|
|
21320
21479
|
"description": "GET /room_setups/{room_setup_id}/resource_suggestions/{resource_suggestion_id}/resource",
|
|
21480
|
+
"stability": "official",
|
|
21321
21481
|
"method": "GET",
|
|
21322
21482
|
"path": "/calendar/v2/room_setups/{room_setup_id}/resource_suggestions/{resource_suggestion_id}/resource",
|
|
21323
21483
|
"deprecated": false,
|
|
@@ -21622,6 +21782,7 @@ const OPERATIONS = [
|
|
|
21622
21782
|
"resource": "Room Setup",
|
|
21623
21783
|
"operation": "List Resource Suggestions (via Room Setup)",
|
|
21624
21784
|
"description": "GET /room_setups/{room_setup_id}/resource_suggestions",
|
|
21785
|
+
"stability": "official",
|
|
21625
21786
|
"method": "GET",
|
|
21626
21787
|
"path": "/calendar/v2/room_setups/{room_setup_id}/resource_suggestions",
|
|
21627
21788
|
"deprecated": false,
|
|
@@ -21718,6 +21879,7 @@ const OPERATIONS = [
|
|
|
21718
21879
|
"resource": "Room Setup",
|
|
21719
21880
|
"operation": "List Room Setups",
|
|
21720
21881
|
"description": "GET /room_setups",
|
|
21882
|
+
"stability": "official",
|
|
21721
21883
|
"method": "GET",
|
|
21722
21884
|
"path": "/calendar/v2/room_setups",
|
|
21723
21885
|
"deprecated": false,
|
|
@@ -21926,6 +22088,7 @@ const OPERATIONS = [
|
|
|
21926
22088
|
"resource": "Room Setup",
|
|
21927
22089
|
"operation": "Get Containing Resource (via Room Setup)",
|
|
21928
22090
|
"description": "GET /room_setups/{room_setup_id}/containing_resource/{containing_resource_id}",
|
|
22091
|
+
"stability": "official",
|
|
21929
22092
|
"method": "GET",
|
|
21930
22093
|
"path": "/calendar/v2/room_setups/{room_setup_id}/containing_resource/{containing_resource_id}",
|
|
21931
22094
|
"deprecated": false,
|
|
@@ -22001,6 +22164,7 @@ const OPERATIONS = [
|
|
|
22001
22164
|
"resource": "Room Setup",
|
|
22002
22165
|
"operation": "Get Resource (via Resource Suggestion)",
|
|
22003
22166
|
"description": "GET /room_setups/{room_setup_id}/resource_suggestions/{resource_suggestion_id}/resource/{resource_id}",
|
|
22167
|
+
"stability": "official",
|
|
22004
22168
|
"method": "GET",
|
|
22005
22169
|
"path": "/calendar/v2/room_setups/{room_setup_id}/resource_suggestions/{resource_suggestion_id}/resource/{resource_id}",
|
|
22006
22170
|
"deprecated": false,
|
|
@@ -22134,6 +22298,7 @@ const OPERATIONS = [
|
|
|
22134
22298
|
"resource": "Room Setup",
|
|
22135
22299
|
"operation": "Get Resource Suggestion (via Room Setup)",
|
|
22136
22300
|
"description": "GET /room_setups/{room_setup_id}/resource_suggestions/{resource_suggestion_id}",
|
|
22301
|
+
"stability": "official",
|
|
22137
22302
|
"method": "GET",
|
|
22138
22303
|
"path": "/calendar/v2/room_setups/{room_setup_id}/resource_suggestions/{resource_suggestion_id}",
|
|
22139
22304
|
"deprecated": false,
|
|
@@ -22226,6 +22391,7 @@ const OPERATIONS = [
|
|
|
22226
22391
|
"resource": "Room Setup",
|
|
22227
22392
|
"operation": "Get Room Setup",
|
|
22228
22393
|
"description": "GET /room_setups/{room_setup_id}",
|
|
22394
|
+
"stability": "official",
|
|
22229
22395
|
"method": "GET",
|
|
22230
22396
|
"path": "/calendar/v2/room_setups/{room_setup_id}",
|
|
22231
22397
|
"deprecated": false,
|
|
@@ -22288,6 +22454,7 @@ const OPERATIONS = [
|
|
|
22288
22454
|
"jsonApiType": "Resource",
|
|
22289
22455
|
"operation": "Update Resource (via Resource Suggestion)",
|
|
22290
22456
|
"description": "PATCH /room_setups/{room_setup_id}/resource_suggestions/{resource_suggestion_id}/resource/{resource_id}",
|
|
22457
|
+
"stability": "official",
|
|
22291
22458
|
"method": "PATCH",
|
|
22292
22459
|
"path": "/calendar/v2/room_setups/{room_setup_id}/resource_suggestions/{resource_suggestion_id}/resource/{resource_id}",
|
|
22293
22460
|
"deprecated": false,
|
|
@@ -22503,6 +22670,7 @@ const OPERATIONS = [
|
|
|
22503
22670
|
"resource": "Room Setup",
|
|
22504
22671
|
"operation": "Delete Resource (via Resource Suggestion)",
|
|
22505
22672
|
"description": "DELETE /room_setups/{room_setup_id}/resource_suggestions/{resource_suggestion_id}/resource/{resource_id}",
|
|
22673
|
+
"stability": "official",
|
|
22506
22674
|
"method": "DELETE",
|
|
22507
22675
|
"path": "/calendar/v2/room_setups/{room_setup_id}/resource_suggestions/{resource_suggestion_id}/resource/{resource_id}",
|
|
22508
22676
|
"deprecated": false,
|
|
@@ -22619,6 +22787,7 @@ const OPERATIONS = [
|
|
|
22619
22787
|
"resource": "Tag Group",
|
|
22620
22788
|
"operation": "List Events (via Tag Group)",
|
|
22621
22789
|
"description": "GET /tag_groups/{tag_group_id}/events",
|
|
22790
|
+
"stability": "official",
|
|
22622
22791
|
"method": "GET",
|
|
22623
22792
|
"path": "/calendar/v2/tag_groups/{tag_group_id}/events",
|
|
22624
22793
|
"deprecated": false,
|
|
@@ -22833,6 +23002,7 @@ const OPERATIONS = [
|
|
|
22833
23002
|
"resource": "Tag Group",
|
|
22834
23003
|
"operation": "List Tag Groups",
|
|
22835
23004
|
"description": "GET /tag_groups",
|
|
23005
|
+
"stability": "official",
|
|
22836
23006
|
"method": "GET",
|
|
22837
23007
|
"path": "/calendar/v2/tag_groups",
|
|
22838
23008
|
"deprecated": false,
|
|
@@ -23041,6 +23211,7 @@ const OPERATIONS = [
|
|
|
23041
23211
|
"resource": "Tag Group",
|
|
23042
23212
|
"operation": "List Tags (via Tag Group)",
|
|
23043
23213
|
"description": "GET /tag_groups/{tag_group_id}/tags",
|
|
23214
|
+
"stability": "official",
|
|
23044
23215
|
"method": "GET",
|
|
23045
23216
|
"path": "/calendar/v2/tag_groups/{tag_group_id}/tags",
|
|
23046
23217
|
"deprecated": false,
|
|
@@ -23310,6 +23481,7 @@ const OPERATIONS = [
|
|
|
23310
23481
|
"resource": "Tag Group",
|
|
23311
23482
|
"operation": "Get Event (via Tag Group)",
|
|
23312
23483
|
"description": "GET /tag_groups/{tag_group_id}/events/{event_id}",
|
|
23484
|
+
"stability": "official",
|
|
23313
23485
|
"method": "GET",
|
|
23314
23486
|
"path": "/calendar/v2/tag_groups/{tag_group_id}/events/{event_id}",
|
|
23315
23487
|
"deprecated": false,
|
|
@@ -23403,6 +23575,7 @@ const OPERATIONS = [
|
|
|
23403
23575
|
"resource": "Tag Group",
|
|
23404
23576
|
"operation": "Get Tag (via Tag Group)",
|
|
23405
23577
|
"description": "GET /tag_groups/{tag_group_id}/tags/{tag_id}",
|
|
23578
|
+
"stability": "official",
|
|
23406
23579
|
"method": "GET",
|
|
23407
23580
|
"path": "/calendar/v2/tag_groups/{tag_group_id}/tags/{tag_id}",
|
|
23408
23581
|
"deprecated": false,
|
|
@@ -23501,6 +23674,7 @@ const OPERATIONS = [
|
|
|
23501
23674
|
"resource": "Tag Group",
|
|
23502
23675
|
"operation": "Get Tag Group",
|
|
23503
23676
|
"description": "GET /tag_groups/{tag_group_id}",
|
|
23677
|
+
"stability": "official",
|
|
23504
23678
|
"method": "GET",
|
|
23505
23679
|
"path": "/calendar/v2/tag_groups/{tag_group_id}",
|
|
23506
23680
|
"deprecated": false,
|
|
@@ -23563,6 +23737,7 @@ const OPERATIONS = [
|
|
|
23563
23737
|
"jsonApiType": "Tag",
|
|
23564
23738
|
"operation": "Create Tag (via Tag Group)",
|
|
23565
23739
|
"description": "POST /tag_groups/{tag_group_id}/tags",
|
|
23740
|
+
"stability": "official",
|
|
23566
23741
|
"method": "POST",
|
|
23567
23742
|
"path": "/calendar/v2/tag_groups/{tag_group_id}/tags",
|
|
23568
23743
|
"deprecated": false,
|
|
@@ -23688,6 +23863,7 @@ const OPERATIONS = [
|
|
|
23688
23863
|
"jsonApiType": "TagGroup",
|
|
23689
23864
|
"operation": "Create Tag Group",
|
|
23690
23865
|
"description": "POST /tag_groups",
|
|
23866
|
+
"stability": "official",
|
|
23691
23867
|
"method": "POST",
|
|
23692
23868
|
"path": "/calendar/v2/tag_groups",
|
|
23693
23869
|
"deprecated": false,
|
|
@@ -23737,6 +23913,7 @@ const OPERATIONS = [
|
|
|
23737
23913
|
"jsonApiType": "Tag",
|
|
23738
23914
|
"operation": "Update Tag (via Tag Group)",
|
|
23739
23915
|
"description": "PATCH /tag_groups/{tag_group_id}/tags/{tag_id}",
|
|
23916
|
+
"stability": "official",
|
|
23740
23917
|
"method": "PATCH",
|
|
23741
23918
|
"path": "/calendar/v2/tag_groups/{tag_group_id}/tags/{tag_id}",
|
|
23742
23919
|
"deprecated": false,
|
|
@@ -23904,6 +24081,7 @@ const OPERATIONS = [
|
|
|
23904
24081
|
"jsonApiType": "TagGroup",
|
|
23905
24082
|
"operation": "Update Tag Group",
|
|
23906
24083
|
"description": "PATCH /tag_groups/{tag_group_id}",
|
|
24084
|
+
"stability": "official",
|
|
23907
24085
|
"method": "PATCH",
|
|
23908
24086
|
"path": "/calendar/v2/tag_groups/{tag_group_id}",
|
|
23909
24087
|
"deprecated": false,
|
|
@@ -23980,6 +24158,7 @@ const OPERATIONS = [
|
|
|
23980
24158
|
"resource": "Tag Group",
|
|
23981
24159
|
"operation": "Delete Tag (via Tag Group)",
|
|
23982
24160
|
"description": "DELETE /tag_groups/{tag_group_id}/tags/{tag_id}",
|
|
24161
|
+
"stability": "official",
|
|
23983
24162
|
"method": "DELETE",
|
|
23984
24163
|
"path": "/calendar/v2/tag_groups/{tag_group_id}/tags/{tag_id}",
|
|
23985
24164
|
"deprecated": false,
|
|
@@ -24061,6 +24240,7 @@ const OPERATIONS = [
|
|
|
24061
24240
|
"resource": "Tag Group",
|
|
24062
24241
|
"operation": "Delete Tag Group",
|
|
24063
24242
|
"description": "DELETE /tag_groups/{tag_group_id}",
|
|
24243
|
+
"stability": "official",
|
|
24064
24244
|
"method": "DELETE",
|
|
24065
24245
|
"path": "/calendar/v2/tag_groups/{tag_group_id}",
|
|
24066
24246
|
"deprecated": false,
|
|
@@ -24105,6 +24285,7 @@ const OPERATIONS = [
|
|
|
24105
24285
|
"resource": "Tags",
|
|
24106
24286
|
"operation": "List Event Instances (via Tag)",
|
|
24107
24287
|
"description": "GET /tags/{tag_id}/event_instances",
|
|
24288
|
+
"stability": "official",
|
|
24108
24289
|
"method": "GET",
|
|
24109
24290
|
"path": "/calendar/v2/tags/{tag_id}/event_instances",
|
|
24110
24291
|
"deprecated": false,
|
|
@@ -24457,6 +24638,7 @@ const OPERATIONS = [
|
|
|
24457
24638
|
"resource": "Tags",
|
|
24458
24639
|
"operation": "List Events (via Tag)",
|
|
24459
24640
|
"description": "GET /tags/{tag_id}/events",
|
|
24641
|
+
"stability": "official",
|
|
24460
24642
|
"method": "GET",
|
|
24461
24643
|
"path": "/calendar/v2/tags/{tag_id}/events",
|
|
24462
24644
|
"deprecated": false,
|
|
@@ -24671,6 +24853,7 @@ const OPERATIONS = [
|
|
|
24671
24853
|
"resource": "Tags",
|
|
24672
24854
|
"operation": "List Tag Group (via Tag)",
|
|
24673
24855
|
"description": "GET /tags/{tag_id}/tag_group",
|
|
24856
|
+
"stability": "official",
|
|
24674
24857
|
"method": "GET",
|
|
24675
24858
|
"path": "/calendar/v2/tags/{tag_id}/tag_group",
|
|
24676
24859
|
"deprecated": false,
|
|
@@ -24900,6 +25083,7 @@ const OPERATIONS = [
|
|
|
24900
25083
|
"resource": "Tags",
|
|
24901
25084
|
"operation": "List Tags",
|
|
24902
25085
|
"description": "GET /tags",
|
|
25086
|
+
"stability": "official",
|
|
24903
25087
|
"method": "GET",
|
|
24904
25088
|
"path": "/calendar/v2/tags",
|
|
24905
25089
|
"deprecated": false,
|
|
@@ -25143,6 +25327,7 @@ const OPERATIONS = [
|
|
|
25143
25327
|
"resource": "Tags",
|
|
25144
25328
|
"operation": "Get Event (via Tag)",
|
|
25145
25329
|
"description": "GET /tags/{tag_id}/events/{event_id}",
|
|
25330
|
+
"stability": "official",
|
|
25146
25331
|
"method": "GET",
|
|
25147
25332
|
"path": "/calendar/v2/tags/{tag_id}/events/{event_id}",
|
|
25148
25333
|
"deprecated": false,
|
|
@@ -25241,6 +25426,7 @@ const OPERATIONS = [
|
|
|
25241
25426
|
"resource": "Tags",
|
|
25242
25427
|
"operation": "Get Event Instance (via Tag)",
|
|
25243
25428
|
"description": "GET /tags/{tag_id}/event_instances/{event_instance_id}",
|
|
25429
|
+
"stability": "official",
|
|
25244
25430
|
"method": "GET",
|
|
25245
25431
|
"path": "/calendar/v2/tags/{tag_id}/event_instances/{event_instance_id}",
|
|
25246
25432
|
"deprecated": false,
|
|
@@ -25338,6 +25524,7 @@ const OPERATIONS = [
|
|
|
25338
25524
|
"resource": "Tags",
|
|
25339
25525
|
"operation": "Get Tag Group (via Tag)",
|
|
25340
25526
|
"description": "GET /tags/{tag_id}/tag_group/{tag_group_id}",
|
|
25527
|
+
"stability": "official",
|
|
25341
25528
|
"method": "GET",
|
|
25342
25529
|
"path": "/calendar/v2/tags/{tag_id}/tag_group/{tag_group_id}",
|
|
25343
25530
|
"deprecated": false,
|
|
@@ -25436,6 +25623,7 @@ const OPERATIONS = [
|
|
|
25436
25623
|
"resource": "Tags",
|
|
25437
25624
|
"operation": "Get Tag",
|
|
25438
25625
|
"description": "GET /tags/{tag_id}",
|
|
25626
|
+
"stability": "official",
|
|
25439
25627
|
"method": "GET",
|
|
25440
25628
|
"path": "/calendar/v2/tags/{tag_id}",
|
|
25441
25629
|
"deprecated": false,
|
|
@@ -25498,6 +25686,7 @@ const OPERATIONS = [
|
|
|
25498
25686
|
"jsonApiType": "TagGroup",
|
|
25499
25687
|
"operation": "Create Tag Group (via Tag)",
|
|
25500
25688
|
"description": "POST /tags/{tag_id}/tag_group",
|
|
25689
|
+
"stability": "official",
|
|
25501
25690
|
"method": "POST",
|
|
25502
25691
|
"path": "/calendar/v2/tags/{tag_id}/tag_group",
|
|
25503
25692
|
"deprecated": false,
|
|
@@ -25575,6 +25764,7 @@ const OPERATIONS = [
|
|
|
25575
25764
|
"jsonApiType": "Tag",
|
|
25576
25765
|
"operation": "Create Tag",
|
|
25577
25766
|
"description": "POST /tags",
|
|
25767
|
+
"stability": "official",
|
|
25578
25768
|
"method": "POST",
|
|
25579
25769
|
"path": "/calendar/v2/tags",
|
|
25580
25770
|
"deprecated": false,
|
|
@@ -25672,6 +25862,7 @@ const OPERATIONS = [
|
|
|
25672
25862
|
"jsonApiType": "TagGroup",
|
|
25673
25863
|
"operation": "Update Tag Group (via Tag)",
|
|
25674
25864
|
"description": "PATCH /tags/{tag_id}/tag_group/{tag_group_id}",
|
|
25865
|
+
"stability": "official",
|
|
25675
25866
|
"method": "PATCH",
|
|
25676
25867
|
"path": "/calendar/v2/tags/{tag_id}/tag_group/{tag_group_id}",
|
|
25677
25868
|
"deprecated": false,
|
|
@@ -25786,6 +25977,7 @@ const OPERATIONS = [
|
|
|
25786
25977
|
"jsonApiType": "Tag",
|
|
25787
25978
|
"operation": "Update Tag",
|
|
25788
25979
|
"description": "PATCH /tags/{tag_id}",
|
|
25980
|
+
"stability": "official",
|
|
25789
25981
|
"method": "PATCH",
|
|
25790
25982
|
"path": "/calendar/v2/tags/{tag_id}",
|
|
25791
25983
|
"deprecated": false,
|
|
@@ -25915,6 +26107,7 @@ const OPERATIONS = [
|
|
|
25915
26107
|
"resource": "Tags",
|
|
25916
26108
|
"operation": "Delete Tag Group (via Tag)",
|
|
25917
26109
|
"description": "DELETE /tags/{tag_id}/tag_group/{tag_group_id}",
|
|
26110
|
+
"stability": "official",
|
|
25918
26111
|
"method": "DELETE",
|
|
25919
26112
|
"path": "/calendar/v2/tags/{tag_id}/tag_group/{tag_group_id}",
|
|
25920
26113
|
"deprecated": false,
|
|
@@ -25996,6 +26189,7 @@ const OPERATIONS = [
|
|
|
25996
26189
|
"resource": "Tags",
|
|
25997
26190
|
"operation": "Delete Tag",
|
|
25998
26191
|
"description": "DELETE /tags/{tag_id}",
|
|
26192
|
+
"stability": "official",
|
|
25999
26193
|
"method": "DELETE",
|
|
26000
26194
|
"path": "/calendar/v2/tags/{tag_id}",
|
|
26001
26195
|
"deprecated": false,
|