@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.
Files changed (36) hide show
  1. package/README.md +3 -1
  2. package/dist/nodes/generated/api/PlanningCenterApi.node.js +10 -0
  3. package/dist/nodes/generated/api/PlanningCenterApi.node.js.map +1 -1
  4. package/dist/nodes/generated/calendar/PlanningCenterCalendar.node.js +194 -0
  5. package/dist/nodes/generated/calendar/PlanningCenterCalendar.node.js.map +1 -1
  6. package/dist/nodes/generated/check-ins/PlanningCenterCheckIns.node.js +171 -0
  7. package/dist/nodes/generated/check-ins/PlanningCenterCheckIns.node.js.map +1 -1
  8. package/dist/nodes/generated/current/PlanningCenterCurrent.node.js +5 -0
  9. package/dist/nodes/generated/current/PlanningCenterCurrent.node.js.map +1 -1
  10. package/dist/nodes/generated/giving/PlanningCenterGiving.node.js +152 -0
  11. package/dist/nodes/generated/giving/PlanningCenterGiving.node.js.map +1 -1
  12. package/dist/nodes/generated/groups/PlanningCenterGroups.node.js +102 -0
  13. package/dist/nodes/generated/groups/PlanningCenterGroups.node.js.map +1 -1
  14. package/dist/nodes/generated/people/PlanningCenterPeople.node.js +524 -3
  15. package/dist/nodes/generated/people/PlanningCenterPeople.node.js.map +1 -1
  16. package/dist/nodes/generated/publishing/PlanningCenterPublishing.node.js +77 -0
  17. package/dist/nodes/generated/publishing/PlanningCenterPublishing.node.js.map +1 -1
  18. package/dist/nodes/generated/registrations/PlanningCenterRegistrations.node.js +41 -0
  19. package/dist/nodes/generated/registrations/PlanningCenterRegistrations.node.js.map +1 -1
  20. package/dist/nodes/generated/services/PlanningCenterServices.node.js +437 -0
  21. package/dist/nodes/generated/services/PlanningCenterServices.node.js.map +1 -1
  22. package/dist/nodes/generated/webhooks/PlanningCenterWebhooks.node.js +17 -3
  23. package/dist/nodes/generated/webhooks/PlanningCenterWebhooks.node.js.map +1 -1
  24. package/dist/src/generator/effectiveOpenApi.d.ts +3 -1
  25. package/dist/src/generator/effectiveOpenApi.js +6 -8
  26. package/dist/src/generator/effectiveOpenApi.js.map +1 -1
  27. package/dist/src/generator/model.d.ts +2 -0
  28. package/dist/src/generator/openapi.js +11 -1
  29. package/dist/src/generator/openapi.js.map +1 -1
  30. package/dist/src/generator/render.js +1 -0
  31. package/dist/src/generator/render.js.map +1 -1
  32. package/dist/tests/effectiveOpenApi.test.js +4 -2
  33. package/dist/tests/effectiveOpenApi.test.js.map +1 -1
  34. package/dist/tests/generator.test.js +22 -2
  35. package/dist/tests/generator.test.js.map +1 -1
  36. package/package.json +1 -1
@@ -12,6 +12,7 @@ const OPERATIONS = [
12
12
  "resource": "Batch Group",
13
13
  "operation": "List Batch Groups",
14
14
  "description": "GET /batch_groups",
15
+ "stability": "official",
15
16
  "method": "GET",
16
17
  "path": "/giving/v2/batch_groups",
17
18
  "deprecated": false,
@@ -136,6 +137,7 @@ const OPERATIONS = [
136
137
  "resource": "Batch Group",
137
138
  "operation": "List Batches (via Batch Group)",
138
139
  "description": "GET /batch_groups/{batch_group_id}/batches",
140
+ "stability": "official",
139
141
  "method": "GET",
140
142
  "path": "/giving/v2/batch_groups/{batch_group_id}/batches",
141
143
  "deprecated": false,
@@ -287,6 +289,7 @@ const OPERATIONS = [
287
289
  "resource": "Batch Group",
288
290
  "operation": "List Owner (via Batch Group)",
289
291
  "description": "GET /batch_groups/{batch_group_id}/owner",
292
+ "stability": "official",
290
293
  "method": "GET",
291
294
  "path": "/giving/v2/batch_groups/{batch_group_id}/owner",
292
295
  "deprecated": false,
@@ -330,6 +333,7 @@ const OPERATIONS = [
330
333
  "resource": "Batch Group",
331
334
  "operation": "Get Batch (via Batch Group)",
332
335
  "description": "GET /batch_groups/{batch_group_id}/batches/{batch_id}",
336
+ "stability": "official",
333
337
  "method": "GET",
334
338
  "path": "/giving/v2/batch_groups/{batch_group_id}/batches/{batch_id}",
335
339
  "deprecated": false,
@@ -426,6 +430,7 @@ const OPERATIONS = [
426
430
  "resource": "Batch Group",
427
431
  "operation": "Get Batch Group",
428
432
  "description": "GET /batch_groups/{batch_group_id}",
433
+ "stability": "official",
429
434
  "method": "GET",
430
435
  "path": "/giving/v2/batch_groups/{batch_group_id}",
431
436
  "deprecated": false,
@@ -486,6 +491,7 @@ const OPERATIONS = [
486
491
  "resource": "Batch Group",
487
492
  "operation": "Get Owner (via Batch Group)",
488
493
  "description": "GET /batch_groups/{batch_group_id}/owner/{owner_id}",
494
+ "stability": "official",
489
495
  "method": "GET",
490
496
  "path": "/giving/v2/batch_groups/{batch_group_id}/owner/{owner_id}",
491
497
  "deprecated": false,
@@ -537,6 +543,7 @@ const OPERATIONS = [
537
543
  "jsonApiType": "Batch",
538
544
  "operation": "Create Batch (via Batch Group)",
539
545
  "description": "POST /batch_groups/{batch_group_id}/batches",
546
+ "stability": "official",
540
547
  "method": "POST",
541
548
  "path": "/giving/v2/batch_groups/{batch_group_id}/batches",
542
549
  "deprecated": false,
@@ -632,6 +639,7 @@ const OPERATIONS = [
632
639
  "jsonApiType": "BatchGroup",
633
640
  "operation": "Create Batch Group",
634
641
  "description": "POST /batch_groups",
642
+ "stability": "official",
635
643
  "method": "POST",
636
644
  "path": "/giving/v2/batch_groups",
637
645
  "deprecated": false,
@@ -673,6 +681,7 @@ const OPERATIONS = [
673
681
  "resource": "Batch Group",
674
682
  "operation": "Create Commit (via Batch Group)",
675
683
  "description": "POST /batch_groups/{batch_group_id}/commit",
684
+ "stability": "official",
676
685
  "method": "POST",
677
686
  "path": "/giving/v2/batch_groups/{batch_group_id}/commit",
678
687
  "deprecated": false,
@@ -717,6 +726,7 @@ const OPERATIONS = [
717
726
  "jsonApiType": "Batch",
718
727
  "operation": "Update Batch (via Batch Group)",
719
728
  "description": "PATCH /batch_groups/{batch_group_id}/batches/{batch_id}",
729
+ "stability": "official",
720
730
  "method": "PATCH",
721
731
  "path": "/giving/v2/batch_groups/{batch_group_id}/batches/{batch_id}",
722
732
  "deprecated": false,
@@ -853,6 +863,7 @@ const OPERATIONS = [
853
863
  "jsonApiType": "BatchGroup",
854
864
  "operation": "Update Batch Group",
855
865
  "description": "PATCH /batch_groups/{batch_group_id}",
866
+ "stability": "official",
856
867
  "method": "PATCH",
857
868
  "path": "/giving/v2/batch_groups/{batch_group_id}",
858
869
  "deprecated": false,
@@ -922,6 +933,7 @@ const OPERATIONS = [
922
933
  "jsonApiType": "Person",
923
934
  "operation": "Update Owner (via Batch Group)",
924
935
  "description": "PATCH /batch_groups/{batch_group_id}/owner/{owner_id}",
936
+ "stability": "official",
925
937
  "method": "PATCH",
926
938
  "path": "/giving/v2/batch_groups/{batch_group_id}/owner/{owner_id}",
927
939
  "deprecated": false,
@@ -980,6 +992,7 @@ const OPERATIONS = [
980
992
  "resource": "Batch Group",
981
993
  "operation": "Delete Batch (via Batch Group)",
982
994
  "description": "DELETE /batch_groups/{batch_group_id}/batches/{batch_id}",
995
+ "stability": "official",
983
996
  "method": "DELETE",
984
997
  "path": "/giving/v2/batch_groups/{batch_group_id}/batches/{batch_id}",
985
998
  "deprecated": false,
@@ -1059,6 +1072,7 @@ const OPERATIONS = [
1059
1072
  "resource": "Batch Group",
1060
1073
  "operation": "Delete Batch Group",
1061
1074
  "description": "DELETE /batch_groups/{batch_group_id}",
1075
+ "stability": "official",
1062
1076
  "method": "DELETE",
1063
1077
  "path": "/giving/v2/batch_groups/{batch_group_id}",
1064
1078
  "deprecated": false,
@@ -1102,6 +1116,7 @@ const OPERATIONS = [
1102
1116
  "resource": "Batch",
1103
1117
  "operation": "List Batch Group (via Batch)",
1104
1118
  "description": "GET /batches/{batch_id}/batch_group",
1119
+ "stability": "official",
1105
1120
  "method": "GET",
1106
1121
  "path": "/giving/v2/batches/{batch_id}/batch_group",
1107
1122
  "deprecated": false,
@@ -1246,6 +1261,7 @@ const OPERATIONS = [
1246
1261
  "resource": "Batch",
1247
1262
  "operation": "List Batches",
1248
1263
  "description": "GET /batches",
1264
+ "stability": "official",
1249
1265
  "method": "GET",
1250
1266
  "path": "/giving/v2/batches",
1251
1267
  "deprecated": false,
@@ -1370,6 +1386,7 @@ const OPERATIONS = [
1370
1386
  "resource": "Batch",
1371
1387
  "operation": "List Donations (via Batch)",
1372
1388
  "description": "GET /batches/{batch_id}/donations",
1389
+ "stability": "official",
1373
1390
  "method": "GET",
1374
1391
  "path": "/giving/v2/batches/{batch_id}/donations",
1375
1392
  "deprecated": false,
@@ -1721,6 +1738,7 @@ const OPERATIONS = [
1721
1738
  "resource": "Batch",
1722
1739
  "operation": "List Owner (via Batch)",
1723
1740
  "description": "GET /batches/{batch_id}/owner",
1741
+ "stability": "official",
1724
1742
  "method": "GET",
1725
1743
  "path": "/giving/v2/batches/{batch_id}/owner",
1726
1744
  "deprecated": false,
@@ -1764,6 +1782,7 @@ const OPERATIONS = [
1764
1782
  "resource": "Batch",
1765
1783
  "operation": "Get Batch Group (via Batch)",
1766
1784
  "description": "GET /batches/{batch_id}/batch_group/{batch_group_id}",
1785
+ "stability": "official",
1767
1786
  "method": "GET",
1768
1787
  "path": "/giving/v2/batches/{batch_id}/batch_group/{batch_group_id}",
1769
1788
  "deprecated": false,
@@ -1860,6 +1879,7 @@ const OPERATIONS = [
1860
1879
  "resource": "Batch",
1861
1880
  "operation": "Get Batch",
1862
1881
  "description": "GET /batches/{batch_id}",
1882
+ "stability": "official",
1863
1883
  "method": "GET",
1864
1884
  "path": "/giving/v2/batches/{batch_id}",
1865
1885
  "deprecated": false,
@@ -1920,6 +1940,7 @@ const OPERATIONS = [
1920
1940
  "resource": "Batch",
1921
1941
  "operation": "Get Donation (via Batch)",
1922
1942
  "description": "GET /batches/{batch_id}/donations/{donation_id}",
1943
+ "stability": "official",
1923
1944
  "method": "GET",
1924
1945
  "path": "/giving/v2/batches/{batch_id}/donations/{donation_id}",
1925
1946
  "deprecated": false,
@@ -2011,6 +2032,7 @@ const OPERATIONS = [
2011
2032
  "resource": "Batch",
2012
2033
  "operation": "Get Owner (via Batch)",
2013
2034
  "description": "GET /batches/{batch_id}/owner/{owner_id}",
2035
+ "stability": "official",
2014
2036
  "method": "GET",
2015
2037
  "path": "/giving/v2/batches/{batch_id}/owner/{owner_id}",
2016
2038
  "deprecated": false,
@@ -2062,6 +2084,7 @@ const OPERATIONS = [
2062
2084
  "jsonApiType": "Batch",
2063
2085
  "operation": "Create Batch",
2064
2086
  "description": "POST /batches",
2087
+ "stability": "official",
2065
2088
  "method": "POST",
2066
2089
  "path": "/giving/v2/batches",
2067
2090
  "deprecated": false,
@@ -2129,6 +2152,7 @@ const OPERATIONS = [
2129
2152
  "resource": "Batch",
2130
2153
  "operation": "Create Commit (via Batch)",
2131
2154
  "description": "POST /batches/{batch_id}/commit",
2155
+ "stability": "official",
2132
2156
  "method": "POST",
2133
2157
  "path": "/giving/v2/batches/{batch_id}/commit",
2134
2158
  "deprecated": false,
@@ -2173,6 +2197,7 @@ const OPERATIONS = [
2173
2197
  "jsonApiType": "Donation",
2174
2198
  "operation": "Create Donation (via Batch)",
2175
2199
  "description": "POST /batches/{batch_id}/donations",
2200
+ "stability": "official",
2176
2201
  "method": "POST",
2177
2202
  "path": "/giving/v2/batches/{batch_id}/donations",
2178
2203
  "deprecated": false,
@@ -2499,6 +2524,7 @@ const OPERATIONS = [
2499
2524
  "jsonApiType": "BatchGroup",
2500
2525
  "operation": "Update Batch Group (via Batch)",
2501
2526
  "description": "PATCH /batches/{batch_id}/batch_group/{batch_group_id}",
2527
+ "stability": "official",
2502
2528
  "method": "PATCH",
2503
2529
  "path": "/giving/v2/batches/{batch_id}/batch_group/{batch_group_id}",
2504
2530
  "deprecated": false,
@@ -2604,6 +2630,7 @@ const OPERATIONS = [
2604
2630
  "jsonApiType": "Batch",
2605
2631
  "operation": "Update Batch",
2606
2632
  "description": "PATCH /batches/{batch_id}",
2633
+ "stability": "official",
2607
2634
  "method": "PATCH",
2608
2635
  "path": "/giving/v2/batches/{batch_id}",
2609
2636
  "deprecated": false,
@@ -2704,6 +2731,7 @@ const OPERATIONS = [
2704
2731
  "jsonApiType": "Donation",
2705
2732
  "operation": "Update Donation (via Batch)",
2706
2733
  "description": "PATCH /batches/{batch_id}/donations/{donation_id}",
2734
+ "stability": "official",
2707
2735
  "method": "PATCH",
2708
2736
  "path": "/giving/v2/batches/{batch_id}/donations/{donation_id}",
2709
2737
  "deprecated": false,
@@ -3071,6 +3099,7 @@ const OPERATIONS = [
3071
3099
  "jsonApiType": "Person",
3072
3100
  "operation": "Update Owner (via Batch)",
3073
3101
  "description": "PATCH /batches/{batch_id}/owner/{owner_id}",
3102
+ "stability": "official",
3074
3103
  "method": "PATCH",
3075
3104
  "path": "/giving/v2/batches/{batch_id}/owner/{owner_id}",
3076
3105
  "deprecated": false,
@@ -3129,6 +3158,7 @@ const OPERATIONS = [
3129
3158
  "resource": "Batch",
3130
3159
  "operation": "Delete Batch Group (via Batch)",
3131
3160
  "description": "DELETE /batches/{batch_id}/batch_group/{batch_group_id}",
3161
+ "stability": "official",
3132
3162
  "method": "DELETE",
3133
3163
  "path": "/giving/v2/batches/{batch_id}/batch_group/{batch_group_id}",
3134
3164
  "deprecated": false,
@@ -3208,6 +3238,7 @@ const OPERATIONS = [
3208
3238
  "resource": "Batch",
3209
3239
  "operation": "Delete Batch",
3210
3240
  "description": "DELETE /batches/{batch_id}",
3241
+ "stability": "official",
3211
3242
  "method": "DELETE",
3212
3243
  "path": "/giving/v2/batches/{batch_id}",
3213
3244
  "deprecated": false,
@@ -3251,6 +3282,7 @@ const OPERATIONS = [
3251
3282
  "resource": "Batch",
3252
3283
  "operation": "Delete Donation (via Batch)",
3253
3284
  "description": "DELETE /batches/{batch_id}/donations/{donation_id}",
3285
+ "stability": "official",
3254
3286
  "method": "DELETE",
3255
3287
  "path": "/giving/v2/batches/{batch_id}/donations/{donation_id}",
3256
3288
  "deprecated": false,
@@ -3325,6 +3357,7 @@ const OPERATIONS = [
3325
3357
  "resource": "Campus",
3326
3358
  "operation": "List Campuses",
3327
3359
  "description": "GET /campuses",
3360
+ "stability": "official",
3328
3361
  "method": "GET",
3329
3362
  "path": "/giving/v2/campuses",
3330
3363
  "deprecated": false,
@@ -3341,6 +3374,7 @@ const OPERATIONS = [
3341
3374
  "resource": "Campus",
3342
3375
  "operation": "List Donations (via Campus)",
3343
3376
  "description": "GET /campuses/{campus_id}/donations",
3377
+ "stability": "official",
3344
3378
  "method": "GET",
3345
3379
  "path": "/giving/v2/campuses/{campus_id}/donations",
3346
3380
  "deprecated": false,
@@ -3692,6 +3726,7 @@ const OPERATIONS = [
3692
3726
  "resource": "Campus",
3693
3727
  "operation": "Get Campus",
3694
3728
  "description": "GET /campuses/{campus_id}",
3729
+ "stability": "official",
3695
3730
  "method": "GET",
3696
3731
  "path": "/giving/v2/campuses/{campus_id}",
3697
3732
  "deprecated": false,
@@ -3735,6 +3770,7 @@ const OPERATIONS = [
3735
3770
  "resource": "Campus",
3736
3771
  "operation": "Get Donation (via Campus)",
3737
3772
  "description": "GET /campuses/{campus_id}/donations/{donation_id}",
3773
+ "stability": "official",
3738
3774
  "method": "GET",
3739
3775
  "path": "/giving/v2/campuses/{campus_id}/donations/{donation_id}",
3740
3776
  "deprecated": false,
@@ -3832,6 +3868,7 @@ const OPERATIONS = [
3832
3868
  "jsonApiType": "Donation",
3833
3869
  "operation": "Update Donation (via Campus)",
3834
3870
  "description": "PATCH /campuses/{campus_id}/donations/{donation_id}",
3871
+ "stability": "official",
3835
3872
  "method": "PATCH",
3836
3873
  "path": "/giving/v2/campuses/{campus_id}/donations/{donation_id}",
3837
3874
  "deprecated": false,
@@ -4193,6 +4230,7 @@ const OPERATIONS = [
4193
4230
  "resource": "Campus",
4194
4231
  "operation": "Delete Donation (via Campus)",
4195
4232
  "description": "DELETE /campuses/{campus_id}/donations/{donation_id}",
4233
+ "stability": "official",
4196
4234
  "method": "DELETE",
4197
4235
  "path": "/giving/v2/campuses/{campus_id}/donations/{donation_id}",
4198
4236
  "deprecated": false,
@@ -4272,6 +4310,7 @@ const OPERATIONS = [
4272
4310
  "resource": "Donation",
4273
4311
  "operation": "List Campus (via Donation)",
4274
4312
  "description": "GET /donations/{donation_id}/campus",
4313
+ "stability": "official",
4275
4314
  "method": "GET",
4276
4315
  "path": "/giving/v2/donations/{donation_id}/campus",
4277
4316
  "deprecated": false,
@@ -4315,6 +4354,7 @@ const OPERATIONS = [
4315
4354
  "resource": "Donation",
4316
4355
  "operation": "List Designation (via Designation Refund)",
4317
4356
  "description": "GET /donations/{donation_id}/refund/designation_refunds/{designation_refund_id}/designation",
4357
+ "stability": "official",
4318
4358
  "method": "GET",
4319
4359
  "path": "/giving/v2/donations/{donation_id}/refund/designation_refunds/{designation_refund_id}/designation",
4320
4360
  "deprecated": false,
@@ -4441,6 +4481,7 @@ const OPERATIONS = [
4441
4481
  "resource": "Donation",
4442
4482
  "operation": "List Designation Refunds (via Refund)",
4443
4483
  "description": "GET /donations/{donation_id}/refund/designation_refunds",
4484
+ "stability": "official",
4444
4485
  "method": "GET",
4445
4486
  "path": "/giving/v2/donations/{donation_id}/refund/designation_refunds",
4446
4487
  "deprecated": false,
@@ -4501,6 +4542,7 @@ const OPERATIONS = [
4501
4542
  "resource": "Donation",
4502
4543
  "operation": "List Designations (via Donation)",
4503
4544
  "description": "GET /donations/{donation_id}/designations",
4545
+ "stability": "official",
4504
4546
  "method": "GET",
4505
4547
  "path": "/giving/v2/donations/{donation_id}/designations",
4506
4548
  "deprecated": false,
@@ -4596,6 +4638,7 @@ const OPERATIONS = [
4596
4638
  "resource": "Donation",
4597
4639
  "operation": "List Donations",
4598
4640
  "description": "GET /donations",
4641
+ "stability": "official",
4599
4642
  "method": "GET",
4600
4643
  "path": "/giving/v2/donations",
4601
4644
  "deprecated": false,
@@ -4927,6 +4970,7 @@ const OPERATIONS = [
4927
4970
  "resource": "Donation",
4928
4971
  "operation": "List Fund (via Donation Designation)",
4929
4972
  "description": "GET /donations/{donation_id}/designations/{designation_id}/fund",
4973
+ "stability": "official",
4930
4974
  "method": "GET",
4931
4975
  "path": "/giving/v2/donations/{donation_id}/designations/{designation_id}/fund",
4932
4976
  "deprecated": false,
@@ -5062,6 +5106,7 @@ const OPERATIONS = [
5062
5106
  "resource": "Donation",
5063
5107
  "operation": "List Labels (via Donation)",
5064
5108
  "description": "GET /donations/{donation_id}/labels",
5109
+ "stability": "official",
5065
5110
  "method": "GET",
5066
5111
  "path": "/giving/v2/donations/{donation_id}/labels",
5067
5112
  "deprecated": false,
@@ -5105,6 +5150,7 @@ const OPERATIONS = [
5105
5150
  "resource": "Donation",
5106
5151
  "operation": "Get Campus (via Donation)",
5107
5152
  "description": "GET /donations/{donation_id}/campus/{campus_id}",
5153
+ "stability": "official",
5108
5154
  "method": "GET",
5109
5155
  "path": "/giving/v2/donations/{donation_id}/campus/{campus_id}",
5110
5156
  "deprecated": false,
@@ -5184,6 +5230,7 @@ const OPERATIONS = [
5184
5230
  "resource": "Donation",
5185
5231
  "operation": "Get Designation (via Designation Refund)",
5186
5232
  "description": "GET /donations/{donation_id}/refund/designation_refunds/{designation_refund_id}/designation/{designation_id}",
5233
+ "stability": "official",
5187
5234
  "method": "GET",
5188
5235
  "path": "/giving/v2/donations/{donation_id}/refund/designation_refunds/{designation_refund_id}/designation/{designation_id}",
5189
5236
  "deprecated": false,
@@ -5310,6 +5357,7 @@ const OPERATIONS = [
5310
5357
  "resource": "Donation",
5311
5358
  "operation": "Get Designation (via Donation)",
5312
5359
  "description": "GET /donations/{donation_id}/designations/{designation_id}",
5360
+ "stability": "official",
5313
5361
  "method": "GET",
5314
5362
  "path": "/giving/v2/donations/{donation_id}/designations/{designation_id}",
5315
5363
  "deprecated": false,
@@ -5401,6 +5449,7 @@ const OPERATIONS = [
5401
5449
  "resource": "Donation",
5402
5450
  "operation": "Get Designation Refund (via Refund)",
5403
5451
  "description": "GET /donations/{donation_id}/refund/designation_refunds/{designation_refund_id}",
5452
+ "stability": "official",
5404
5453
  "method": "GET",
5405
5454
  "path": "/giving/v2/donations/{donation_id}/refund/designation_refunds/{designation_refund_id}",
5406
5455
  "deprecated": false,
@@ -5492,6 +5541,7 @@ const OPERATIONS = [
5492
5541
  "resource": "Donation",
5493
5542
  "operation": "Get Donation",
5494
5543
  "description": "GET /donations/{donation_id}",
5544
+ "stability": "official",
5495
5545
  "method": "GET",
5496
5546
  "path": "/giving/v2/donations/{donation_id}",
5497
5547
  "deprecated": false,
@@ -5552,6 +5602,7 @@ const OPERATIONS = [
5552
5602
  "resource": "Donation",
5553
5603
  "operation": "Get Fund (via Donation Designation)",
5554
5604
  "description": "GET /donations/{donation_id}/designations/{designation_id}/fund/{fund_id}",
5605
+ "stability": "official",
5555
5606
  "method": "GET",
5556
5607
  "path": "/giving/v2/donations/{donation_id}/designations/{designation_id}/fund/{fund_id}",
5557
5608
  "deprecated": false,
@@ -5662,6 +5713,7 @@ const OPERATIONS = [
5662
5713
  "resource": "Donation",
5663
5714
  "operation": "Get Label (via Donation)",
5664
5715
  "description": "GET /donations/{donation_id}/labels/{label_id}",
5716
+ "stability": "official",
5665
5717
  "method": "GET",
5666
5718
  "path": "/giving/v2/donations/{donation_id}/labels/{label_id}",
5667
5719
  "deprecated": false,
@@ -5736,6 +5788,7 @@ const OPERATIONS = [
5736
5788
  "resource": "Donation",
5737
5789
  "operation": "Get Note (via Donation)",
5738
5790
  "description": "GET /donations/{donation_id}/note",
5791
+ "stability": "official",
5739
5792
  "method": "GET",
5740
5793
  "path": "/giving/v2/donations/{donation_id}/note",
5741
5794
  "deprecated": false,
@@ -5779,6 +5832,7 @@ const OPERATIONS = [
5779
5832
  "resource": "Donation",
5780
5833
  "operation": "Get Refund (via Donation)",
5781
5834
  "description": "GET /donations/{donation_id}/refund",
5835
+ "stability": "official",
5782
5836
  "method": "GET",
5783
5837
  "path": "/giving/v2/donations/{donation_id}/refund",
5784
5838
  "deprecated": false,
@@ -5839,6 +5893,7 @@ const OPERATIONS = [
5839
5893
  "resource": "Donation",
5840
5894
  "operation": "Create Issue Refund (via Donation)",
5841
5895
  "description": "POST /donations/{donation_id}/issue_refund",
5896
+ "stability": "official",
5842
5897
  "method": "POST",
5843
5898
  "path": "/giving/v2/donations/{donation_id}/issue_refund",
5844
5899
  "deprecated": false,
@@ -5883,6 +5938,7 @@ const OPERATIONS = [
5883
5938
  "jsonApiType": "Donation",
5884
5939
  "operation": "Update Donation",
5885
5940
  "description": "PATCH /donations/{donation_id}",
5941
+ "stability": "official",
5886
5942
  "method": "PATCH",
5887
5943
  "path": "/giving/v2/donations/{donation_id}",
5888
5944
  "deprecated": false,
@@ -6209,6 +6265,7 @@ const OPERATIONS = [
6209
6265
  "jsonApiType": "Fund",
6210
6266
  "operation": "Update Fund (via Donation Designation)",
6211
6267
  "description": "PATCH /donations/{donation_id}/designations/{designation_id}/fund/{fund_id}",
6268
+ "stability": "official",
6212
6269
  "method": "PATCH",
6213
6270
  "path": "/giving/v2/donations/{donation_id}/designations/{designation_id}/fund/{fund_id}",
6214
6271
  "deprecated": false,
@@ -6356,6 +6413,7 @@ const OPERATIONS = [
6356
6413
  "jsonApiType": "Label",
6357
6414
  "operation": "Update Label (via Donation)",
6358
6415
  "description": "PATCH /donations/{donation_id}/labels/{label_id}",
6416
+ "stability": "official",
6359
6417
  "method": "PATCH",
6360
6418
  "path": "/giving/v2/donations/{donation_id}/labels/{label_id}",
6361
6419
  "deprecated": false,
@@ -6438,6 +6496,7 @@ const OPERATIONS = [
6438
6496
  "resource": "Donation",
6439
6497
  "operation": "Delete Donation",
6440
6498
  "description": "DELETE /donations/{donation_id}",
6499
+ "stability": "official",
6441
6500
  "method": "DELETE",
6442
6501
  "path": "/giving/v2/donations/{donation_id}",
6443
6502
  "deprecated": false,
@@ -6481,6 +6540,7 @@ const OPERATIONS = [
6481
6540
  "resource": "Donation",
6482
6541
  "operation": "Delete Fund (via Donation Designation)",
6483
6542
  "description": "DELETE /donations/{donation_id}/designations/{designation_id}/fund/{fund_id}",
6543
+ "stability": "official",
6484
6544
  "method": "DELETE",
6485
6545
  "path": "/giving/v2/donations/{donation_id}/designations/{designation_id}/fund/{fund_id}",
6486
6546
  "deprecated": false,
@@ -6591,6 +6651,7 @@ const OPERATIONS = [
6591
6651
  "resource": "Donation",
6592
6652
  "operation": "Delete Label (via Donation)",
6593
6653
  "description": "DELETE /donations/{donation_id}/labels/{label_id}",
6654
+ "stability": "official",
6594
6655
  "method": "DELETE",
6595
6656
  "path": "/giving/v2/donations/{donation_id}/labels/{label_id}",
6596
6657
  "deprecated": false,
@@ -6665,6 +6726,7 @@ const OPERATIONS = [
6665
6726
  "resource": "Fund",
6666
6727
  "operation": "List Funds",
6667
6728
  "description": "GET /funds",
6729
+ "stability": "official",
6668
6730
  "method": "GET",
6669
6731
  "path": "/giving/v2/funds",
6670
6732
  "deprecated": false,
@@ -6733,6 +6795,7 @@ const OPERATIONS = [
6733
6795
  "resource": "Fund",
6734
6796
  "operation": "Get Fund",
6735
6797
  "description": "GET /funds/{fund_id}",
6798
+ "stability": "official",
6736
6799
  "method": "GET",
6737
6800
  "path": "/giving/v2/funds/{fund_id}",
6738
6801
  "deprecated": false,
@@ -6778,6 +6841,7 @@ const OPERATIONS = [
6778
6841
  "jsonApiType": "Fund",
6779
6842
  "operation": "Create Fund",
6780
6843
  "description": "POST /funds",
6844
+ "stability": "official",
6781
6845
  "method": "POST",
6782
6846
  "path": "/giving/v2/funds",
6783
6847
  "deprecated": false,
@@ -6831,6 +6895,7 @@ const OPERATIONS = [
6831
6895
  "jsonApiType": "Fund",
6832
6896
  "operation": "Update Fund",
6833
6897
  "description": "PATCH /funds/{fund_id}",
6898
+ "stability": "official",
6834
6899
  "method": "PATCH",
6835
6900
  "path": "/giving/v2/funds/{fund_id}",
6836
6901
  "deprecated": false,
@@ -6911,6 +6976,7 @@ const OPERATIONS = [
6911
6976
  "resource": "Fund",
6912
6977
  "operation": "Delete Fund",
6913
6978
  "description": "DELETE /funds/{fund_id}",
6979
+ "stability": "official",
6914
6980
  "method": "DELETE",
6915
6981
  "path": "/giving/v2/funds/{fund_id}",
6916
6982
  "deprecated": false,
@@ -6955,6 +7021,7 @@ const OPERATIONS = [
6955
7021
  "resource": "In Kind Donation",
6956
7022
  "operation": "List Campus (via In Kind Donation)",
6957
7023
  "description": "GET /in_kind_donations/{in_kind_donation_id}/campus",
7024
+ "stability": "official",
6958
7025
  "method": "GET",
6959
7026
  "path": "/giving/v2/in_kind_donations/{in_kind_donation_id}/campus",
6960
7027
  "deprecated": false,
@@ -6998,6 +7065,7 @@ const OPERATIONS = [
6998
7065
  "resource": "In Kind Donation",
6999
7066
  "operation": "List Fund (via In Kind Donation)",
7000
7067
  "description": "GET /in_kind_donations/{in_kind_donation_id}/fund",
7068
+ "stability": "official",
7001
7069
  "method": "GET",
7002
7070
  "path": "/giving/v2/in_kind_donations/{in_kind_donation_id}/fund",
7003
7071
  "deprecated": false,
@@ -7098,6 +7166,7 @@ const OPERATIONS = [
7098
7166
  "resource": "In Kind Donation",
7099
7167
  "operation": "List In Kind Donations",
7100
7168
  "description": "GET /in_kind_donations",
7169
+ "stability": "official",
7101
7170
  "method": "GET",
7102
7171
  "path": "/giving/v2/in_kind_donations",
7103
7172
  "deprecated": false,
@@ -7388,6 +7457,7 @@ const OPERATIONS = [
7388
7457
  "resource": "In Kind Donation",
7389
7458
  "operation": "List Person (via In Kind Donation)",
7390
7459
  "description": "GET /in_kind_donations/{in_kind_donation_id}/person",
7460
+ "stability": "official",
7391
7461
  "method": "GET",
7392
7462
  "path": "/giving/v2/in_kind_donations/{in_kind_donation_id}/person",
7393
7463
  "deprecated": false,
@@ -7431,6 +7501,7 @@ const OPERATIONS = [
7431
7501
  "resource": "In Kind Donation",
7432
7502
  "operation": "Get Campus (via In Kind Donation)",
7433
7503
  "description": "GET /in_kind_donations/{in_kind_donation_id}/campus/{campus_id}",
7504
+ "stability": "official",
7434
7505
  "method": "GET",
7435
7506
  "path": "/giving/v2/in_kind_donations/{in_kind_donation_id}/campus/{campus_id}",
7436
7507
  "deprecated": false,
@@ -7505,6 +7576,7 @@ const OPERATIONS = [
7505
7576
  "resource": "In Kind Donation",
7506
7577
  "operation": "Get Fund (via In Kind Donation)",
7507
7578
  "description": "GET /in_kind_donations/{in_kind_donation_id}/fund/{fund_id}",
7579
+ "stability": "official",
7508
7580
  "method": "GET",
7509
7581
  "path": "/giving/v2/in_kind_donations/{in_kind_donation_id}/fund/{fund_id}",
7510
7582
  "deprecated": false,
@@ -7580,6 +7652,7 @@ const OPERATIONS = [
7580
7652
  "resource": "In Kind Donation",
7581
7653
  "operation": "Get In Kind Donation",
7582
7654
  "description": "GET /in_kind_donations/{in_kind_donation_id}",
7655
+ "stability": "official",
7583
7656
  "method": "GET",
7584
7657
  "path": "/giving/v2/in_kind_donations/{in_kind_donation_id}",
7585
7658
  "deprecated": false,
@@ -7640,6 +7713,7 @@ const OPERATIONS = [
7640
7713
  "resource": "In Kind Donation",
7641
7714
  "operation": "Get Person (via In Kind Donation)",
7642
7715
  "description": "GET /in_kind_donations/{in_kind_donation_id}/person/{person_id}",
7716
+ "stability": "official",
7643
7717
  "method": "GET",
7644
7718
  "path": "/giving/v2/in_kind_donations/{in_kind_donation_id}/person/{person_id}",
7645
7719
  "deprecated": false,
@@ -7724,6 +7798,7 @@ const OPERATIONS = [
7724
7798
  "jsonApiType": "InKindDonation",
7725
7799
  "operation": "Create In Kind Donation",
7726
7800
  "description": "POST /in_kind_donations",
7801
+ "stability": "official",
7727
7802
  "method": "POST",
7728
7803
  "path": "/giving/v2/in_kind_donations",
7729
7804
  "deprecated": false,
@@ -7975,6 +8050,7 @@ const OPERATIONS = [
7975
8050
  "jsonApiType": "Fund",
7976
8051
  "operation": "Update Fund (via In Kind Donation)",
7977
8052
  "description": "PATCH /in_kind_donations/{in_kind_donation_id}/fund/{fund_id}",
8053
+ "stability": "official",
7978
8054
  "method": "PATCH",
7979
8055
  "path": "/giving/v2/in_kind_donations/{in_kind_donation_id}/fund/{fund_id}",
7980
8056
  "deprecated": false,
@@ -8087,6 +8163,7 @@ const OPERATIONS = [
8087
8163
  "jsonApiType": "InKindDonation",
8088
8164
  "operation": "Update In Kind Donation",
8089
8165
  "description": "PATCH /in_kind_donations/{in_kind_donation_id}",
8166
+ "stability": "official",
8090
8167
  "method": "PATCH",
8091
8168
  "path": "/giving/v2/in_kind_donations/{in_kind_donation_id}",
8092
8169
  "deprecated": false,
@@ -8395,6 +8472,7 @@ const OPERATIONS = [
8395
8472
  "jsonApiType": "Person",
8396
8473
  "operation": "Update Person (via In Kind Donation)",
8397
8474
  "description": "PATCH /in_kind_donations/{in_kind_donation_id}/person/{person_id}",
8475
+ "stability": "official",
8398
8476
  "method": "PATCH",
8399
8477
  "path": "/giving/v2/in_kind_donations/{in_kind_donation_id}/person/{person_id}",
8400
8478
  "deprecated": false,
@@ -8486,6 +8564,7 @@ const OPERATIONS = [
8486
8564
  "resource": "In Kind Donation",
8487
8565
  "operation": "Delete Fund (via In Kind Donation)",
8488
8566
  "description": "DELETE /in_kind_donations/{in_kind_donation_id}/fund/{fund_id}",
8567
+ "stability": "official",
8489
8568
  "method": "DELETE",
8490
8569
  "path": "/giving/v2/in_kind_donations/{in_kind_donation_id}/fund/{fund_id}",
8491
8570
  "deprecated": false,
@@ -8561,6 +8640,7 @@ const OPERATIONS = [
8561
8640
  "resource": "In Kind Donation",
8562
8641
  "operation": "Delete In Kind Donation",
8563
8642
  "description": "DELETE /in_kind_donations/{in_kind_donation_id}",
8643
+ "stability": "official",
8564
8644
  "method": "DELETE",
8565
8645
  "path": "/giving/v2/in_kind_donations/{in_kind_donation_id}",
8566
8646
  "deprecated": false,
@@ -8604,6 +8684,7 @@ const OPERATIONS = [
8604
8684
  "resource": "Label",
8605
8685
  "operation": "List Labels",
8606
8686
  "description": "GET /labels",
8687
+ "stability": "official",
8607
8688
  "method": "GET",
8608
8689
  "path": "/giving/v2/labels",
8609
8690
  "deprecated": false,
@@ -8620,6 +8701,7 @@ const OPERATIONS = [
8620
8701
  "resource": "Label",
8621
8702
  "operation": "Get Label",
8622
8703
  "description": "GET /labels/{label_id}",
8704
+ "stability": "official",
8623
8705
  "method": "GET",
8624
8706
  "path": "/giving/v2/labels/{label_id}",
8625
8707
  "deprecated": false,
@@ -8664,6 +8746,7 @@ const OPERATIONS = [
8664
8746
  "jsonApiType": "Label",
8665
8747
  "operation": "Create Label",
8666
8748
  "description": "POST /labels",
8749
+ "stability": "official",
8667
8750
  "method": "POST",
8668
8751
  "path": "/giving/v2/labels",
8669
8752
  "deprecated": false,
@@ -8689,6 +8772,7 @@ const OPERATIONS = [
8689
8772
  "jsonApiType": "Label",
8690
8773
  "operation": "Update Label",
8691
8774
  "description": "PATCH /labels/{label_id}",
8775
+ "stability": "official",
8692
8776
  "method": "PATCH",
8693
8777
  "path": "/giving/v2/labels/{label_id}",
8694
8778
  "deprecated": false,
@@ -8740,6 +8824,7 @@ const OPERATIONS = [
8740
8824
  "resource": "Label",
8741
8825
  "operation": "Delete Label",
8742
8826
  "description": "DELETE /labels/{label_id}",
8827
+ "stability": "official",
8743
8828
  "method": "DELETE",
8744
8829
  "path": "/giving/v2/labels/{label_id}",
8745
8830
  "deprecated": false,
@@ -8783,6 +8868,7 @@ const OPERATIONS = [
8783
8868
  "resource": "Payment Source",
8784
8869
  "operation": "List Donations (via Payment Source)",
8785
8870
  "description": "GET /payment_sources/{payment_source_id}/donations",
8871
+ "stability": "official",
8786
8872
  "method": "GET",
8787
8873
  "path": "/giving/v2/payment_sources/{payment_source_id}/donations",
8788
8874
  "deprecated": false,
@@ -9134,6 +9220,7 @@ const OPERATIONS = [
9134
9220
  "resource": "Payment Source",
9135
9221
  "operation": "List Payment Sources",
9136
9222
  "description": "GET /payment_sources",
9223
+ "stability": "official",
9137
9224
  "method": "GET",
9138
9225
  "path": "/giving/v2/payment_sources",
9139
9226
  "deprecated": false,
@@ -9150,6 +9237,7 @@ const OPERATIONS = [
9150
9237
  "resource": "Payment Source",
9151
9238
  "operation": "Get Donation (via Payment Source)",
9152
9239
  "description": "GET /payment_sources/{payment_source_id}/donations/{donation_id}",
9240
+ "stability": "official",
9153
9241
  "method": "GET",
9154
9242
  "path": "/giving/v2/payment_sources/{payment_source_id}/donations/{donation_id}",
9155
9243
  "deprecated": false,
@@ -9241,6 +9329,7 @@ const OPERATIONS = [
9241
9329
  "resource": "Payment Source",
9242
9330
  "operation": "Get Payment Source",
9243
9331
  "description": "GET /payment_sources/{payment_source_id}",
9332
+ "stability": "official",
9244
9333
  "method": "GET",
9245
9334
  "path": "/giving/v2/payment_sources/{payment_source_id}",
9246
9335
  "deprecated": false,
@@ -9285,6 +9374,7 @@ const OPERATIONS = [
9285
9374
  "jsonApiType": "PaymentSource",
9286
9375
  "operation": "Create Payment Source",
9287
9376
  "description": "POST /payment_sources",
9377
+ "stability": "official",
9288
9378
  "method": "POST",
9289
9379
  "path": "/giving/v2/payment_sources",
9290
9380
  "deprecated": false,
@@ -9324,6 +9414,7 @@ const OPERATIONS = [
9324
9414
  "jsonApiType": "Donation",
9325
9415
  "operation": "Update Donation (via Payment Source)",
9326
9416
  "description": "PATCH /payment_sources/{payment_source_id}/donations/{donation_id}",
9417
+ "stability": "official",
9327
9418
  "method": "PATCH",
9328
9419
  "path": "/giving/v2/payment_sources/{payment_source_id}/donations/{donation_id}",
9329
9420
  "deprecated": false,
@@ -9681,6 +9772,7 @@ const OPERATIONS = [
9681
9772
  "jsonApiType": "PaymentSource",
9682
9773
  "operation": "Update Payment Source",
9683
9774
  "description": "PATCH /payment_sources/{payment_source_id}",
9775
+ "stability": "official",
9684
9776
  "method": "PATCH",
9685
9777
  "path": "/giving/v2/payment_sources/{payment_source_id}",
9686
9778
  "deprecated": false,
@@ -9746,6 +9838,7 @@ const OPERATIONS = [
9746
9838
  "resource": "Payment Source",
9747
9839
  "operation": "Delete Donation (via Payment Source)",
9748
9840
  "description": "DELETE /payment_sources/{payment_source_id}/donations/{donation_id}",
9841
+ "stability": "official",
9749
9842
  "method": "DELETE",
9750
9843
  "path": "/giving/v2/payment_sources/{payment_source_id}/donations/{donation_id}",
9751
9844
  "deprecated": false,
@@ -9820,6 +9913,7 @@ const OPERATIONS = [
9820
9913
  "resource": "Payment Source",
9821
9914
  "operation": "Delete Payment Source",
9822
9915
  "description": "DELETE /payment_sources/{payment_source_id}",
9916
+ "stability": "official",
9823
9917
  "method": "DELETE",
9824
9918
  "path": "/giving/v2/payment_sources/{payment_source_id}",
9825
9919
  "deprecated": false,
@@ -9863,6 +9957,7 @@ const OPERATIONS = [
9863
9957
  "resource": "Person",
9864
9958
  "operation": "List Batch Groups (via Person)",
9865
9959
  "description": "GET /people/{person_id}/batch_groups",
9960
+ "stability": "official",
9866
9961
  "method": "GET",
9867
9962
  "path": "/giving/v2/people/{person_id}/batch_groups",
9868
9963
  "deprecated": false,
@@ -10018,6 +10113,7 @@ const OPERATIONS = [
10018
10113
  "resource": "Person",
10019
10114
  "operation": "List Batches (via Person)",
10020
10115
  "description": "GET /people/{person_id}/batches",
10116
+ "stability": "official",
10021
10117
  "method": "GET",
10022
10118
  "path": "/giving/v2/people/{person_id}/batches",
10023
10119
  "deprecated": false,
@@ -10173,6 +10269,7 @@ const OPERATIONS = [
10173
10269
  "resource": "Person",
10174
10270
  "operation": "List Donations (via Person)",
10175
10271
  "description": "GET /people/{person_id}/donations",
10272
+ "stability": "official",
10176
10273
  "method": "GET",
10177
10274
  "path": "/giving/v2/people/{person_id}/donations",
10178
10275
  "deprecated": false,
@@ -10528,6 +10625,7 @@ const OPERATIONS = [
10528
10625
  "resource": "Person",
10529
10626
  "operation": "List Fund (via Pledge Campaign)",
10530
10627
  "description": "GET /people/{person_id}/pledges/{pledge_id}/pledge_campaign/{pledge_campaign_id}/fund",
10628
+ "stability": "official",
10531
10629
  "method": "GET",
10532
10630
  "path": "/giving/v2/people/{person_id}/pledges/{pledge_id}/pledge_campaign/{pledge_campaign_id}/fund",
10533
10631
  "deprecated": false,
@@ -10706,6 +10804,7 @@ const OPERATIONS = [
10706
10804
  "resource": "Person",
10707
10805
  "operation": "List In Kind Donations (via Person)",
10708
10806
  "description": "GET /people/{person_id}/in_kind_donations",
10807
+ "stability": "official",
10709
10808
  "method": "GET",
10710
10809
  "path": "/giving/v2/people/{person_id}/in_kind_donations",
10711
10810
  "deprecated": false,
@@ -11027,6 +11126,7 @@ const OPERATIONS = [
11027
11126
  "resource": "Person",
11028
11127
  "operation": "List Joint Giver (via Pledge)",
11029
11128
  "description": "GET /people/{person_id}/pledges/{pledge_id}/joint_giver",
11129
+ "stability": "official",
11030
11130
  "method": "GET",
11031
11131
  "path": "/giving/v2/people/{person_id}/pledges/{pledge_id}/joint_giver",
11032
11132
  "deprecated": false,
@@ -11105,6 +11205,7 @@ const OPERATIONS = [
11105
11205
  "resource": "Person",
11106
11206
  "operation": "List Payment Methods (via Person)",
11107
11207
  "description": "GET /people/{person_id}/payment_methods",
11208
+ "stability": "official",
11108
11209
  "method": "GET",
11109
11210
  "path": "/giving/v2/people/{person_id}/payment_methods",
11110
11211
  "deprecated": false,
@@ -11152,6 +11253,7 @@ const OPERATIONS = [
11152
11253
  "resource": "Person",
11153
11254
  "operation": "List People",
11154
11255
  "description": "GET /people",
11256
+ "stability": "official",
11155
11257
  "method": "GET",
11156
11258
  "path": "/giving/v2/people",
11157
11259
  "deprecated": false,
@@ -11176,6 +11278,7 @@ const OPERATIONS = [
11176
11278
  "resource": "Person",
11177
11279
  "operation": "List Pledge Campaign (via Pledge)",
11178
11280
  "description": "GET /people/{person_id}/pledges/{pledge_id}/pledge_campaign",
11281
+ "stability": "official",
11179
11282
  "method": "GET",
11180
11283
  "path": "/giving/v2/people/{person_id}/pledges/{pledge_id}/pledge_campaign",
11181
11284
  "deprecated": false,
@@ -11459,6 +11562,7 @@ const OPERATIONS = [
11459
11562
  "resource": "Person",
11460
11563
  "operation": "List Pledges (via Person)",
11461
11564
  "description": "GET /people/{person_id}/pledges",
11565
+ "stability": "official",
11462
11566
  "method": "GET",
11463
11567
  "path": "/giving/v2/people/{person_id}/pledges",
11464
11568
  "deprecated": false,
@@ -11676,6 +11780,7 @@ const OPERATIONS = [
11676
11780
  "resource": "Person",
11677
11781
  "operation": "List Pledges (via Pledge Campaign)",
11678
11782
  "description": "GET /people/{person_id}/pledges/{pledge_id}/pledge_campaign/{pledge_campaign_id}/pledges",
11783
+ "stability": "official",
11679
11784
  "method": "GET",
11680
11785
  "path": "/giving/v2/people/{person_id}/pledges/{pledge_id}/pledge_campaign/{pledge_campaign_id}/pledges",
11681
11786
  "deprecated": false,
@@ -11959,6 +12064,7 @@ const OPERATIONS = [
11959
12064
  "resource": "Person",
11960
12065
  "operation": "List Primary Campus (via Person)",
11961
12066
  "description": "GET /people/{person_id}/primary_campus",
12067
+ "stability": "official",
11962
12068
  "method": "GET",
11963
12069
  "path": "/giving/v2/people/{person_id}/primary_campus",
11964
12070
  "deprecated": false,
@@ -12006,6 +12112,7 @@ const OPERATIONS = [
12006
12112
  "resource": "Person",
12007
12113
  "operation": "List Recurring Donations (via Payment Method)",
12008
12114
  "description": "GET /people/{person_id}/payment_methods/{payment_method_id}/recurring_donations",
12115
+ "stability": "official",
12009
12116
  "method": "GET",
12010
12117
  "path": "/giving/v2/people/{person_id}/payment_methods/{payment_method_id}/recurring_donations",
12011
12118
  "deprecated": false,
@@ -12101,6 +12208,7 @@ const OPERATIONS = [
12101
12208
  "resource": "Person",
12102
12209
  "operation": "List Recurring Donations (via Person)",
12103
12210
  "description": "GET /people/{person_id}/recurring_donations",
12211
+ "stability": "official",
12104
12212
  "method": "GET",
12105
12213
  "path": "/giving/v2/people/{person_id}/recurring_donations",
12106
12214
  "deprecated": false,
@@ -12165,6 +12273,7 @@ const OPERATIONS = [
12165
12273
  "resource": "Person",
12166
12274
  "operation": "Get Batch (via Person)",
12167
12275
  "description": "GET /people/{person_id}/batches/{batch_id}",
12276
+ "stability": "official",
12168
12277
  "method": "GET",
12169
12278
  "path": "/giving/v2/people/{person_id}/batches/{batch_id}",
12170
12279
  "deprecated": false,
@@ -12265,6 +12374,7 @@ const OPERATIONS = [
12265
12374
  "resource": "Person",
12266
12375
  "operation": "Get Batch Group (via Person)",
12267
12376
  "description": "GET /people/{person_id}/batch_groups/{batch_group_id}",
12377
+ "stability": "official",
12268
12378
  "method": "GET",
12269
12379
  "path": "/giving/v2/people/{person_id}/batch_groups/{batch_group_id}",
12270
12380
  "deprecated": false,
@@ -12365,6 +12475,7 @@ const OPERATIONS = [
12365
12475
  "resource": "Person",
12366
12476
  "operation": "Get Donation (via Person)",
12367
12477
  "description": "GET /people/{person_id}/donations/{donation_id}",
12478
+ "stability": "official",
12368
12479
  "method": "GET",
12369
12480
  "path": "/giving/v2/people/{person_id}/donations/{donation_id}",
12370
12481
  "deprecated": false,
@@ -12460,6 +12571,7 @@ const OPERATIONS = [
12460
12571
  "resource": "Person",
12461
12572
  "operation": "Get Fund (via Pledge Campaign)",
12462
12573
  "description": "GET /people/{person_id}/pledges/{pledge_id}/pledge_campaign/{pledge_campaign_id}/fund/{fund_id}",
12574
+ "stability": "official",
12463
12575
  "method": "GET",
12464
12576
  "path": "/giving/v2/people/{person_id}/pledges/{pledge_id}/pledge_campaign/{pledge_campaign_id}/fund/{fund_id}",
12465
12577
  "deprecated": false,
@@ -12613,6 +12725,7 @@ const OPERATIONS = [
12613
12725
  "resource": "Person",
12614
12726
  "operation": "Get In Kind Donation (via Person)",
12615
12727
  "description": "GET /people/{person_id}/in_kind_donations/{in_kind_donation_id}",
12728
+ "stability": "official",
12616
12729
  "method": "GET",
12617
12730
  "path": "/giving/v2/people/{person_id}/in_kind_donations/{in_kind_donation_id}",
12618
12731
  "deprecated": false,
@@ -12713,6 +12826,7 @@ const OPERATIONS = [
12713
12826
  "resource": "Person",
12714
12827
  "operation": "Get Joint Giver (via Pledge)",
12715
12828
  "description": "GET /people/{person_id}/pledges/{pledge_id}/joint_giver/{joint_giver_id}",
12829
+ "stability": "official",
12716
12830
  "method": "GET",
12717
12831
  "path": "/giving/v2/people/{person_id}/pledges/{pledge_id}/joint_giver/{joint_giver_id}",
12718
12832
  "deprecated": false,
@@ -12798,6 +12912,7 @@ const OPERATIONS = [
12798
12912
  "resource": "Person",
12799
12913
  "operation": "Get Me",
12800
12914
  "description": "GET /me",
12915
+ "stability": "official",
12801
12916
  "method": "GET",
12802
12917
  "path": "/giving/v2/me",
12803
12918
  "deprecated": false,
@@ -12814,6 +12929,7 @@ const OPERATIONS = [
12814
12929
  "resource": "Person",
12815
12930
  "operation": "Get Payment Method (via Person)",
12816
12931
  "description": "GET /people/{person_id}/payment_methods/{payment_method_id}",
12932
+ "stability": "official",
12817
12933
  "method": "GET",
12818
12934
  "path": "/giving/v2/people/{person_id}/payment_methods/{payment_method_id}",
12819
12935
  "deprecated": false,
@@ -12892,6 +13008,7 @@ const OPERATIONS = [
12892
13008
  "resource": "Person",
12893
13009
  "operation": "Get Person",
12894
13010
  "description": "GET /people/{person_id}",
13011
+ "stability": "official",
12895
13012
  "method": "GET",
12896
13013
  "path": "/giving/v2/people/{person_id}",
12897
13014
  "deprecated": false,
@@ -12939,6 +13056,7 @@ const OPERATIONS = [
12939
13056
  "resource": "Person",
12940
13057
  "operation": "Get Pledge (via Person)",
12941
13058
  "description": "GET /people/{person_id}/pledges/{pledge_id}",
13059
+ "stability": "official",
12942
13060
  "method": "GET",
12943
13061
  "path": "/giving/v2/people/{person_id}/pledges/{pledge_id}",
12944
13062
  "deprecated": false,
@@ -13034,6 +13152,7 @@ const OPERATIONS = [
13034
13152
  "resource": "Person",
13035
13153
  "operation": "Get Pledge (via Pledge Campaign)",
13036
13154
  "description": "GET /people/{person_id}/pledges/{pledge_id}/pledge_campaign/{pledge_campaign_id}/pledges/{pledge_id}",
13155
+ "stability": "official",
13037
13156
  "method": "GET",
13038
13157
  "path": "/giving/v2/people/{person_id}/pledges/{pledge_id}/pledge_campaign/{pledge_campaign_id}/pledges/{pledge_id}",
13039
13158
  "deprecated": false,
@@ -13164,6 +13283,7 @@ const OPERATIONS = [
13164
13283
  "resource": "Person",
13165
13284
  "operation": "Get Pledge Campaign (via Pledge)",
13166
13285
  "description": "GET /people/{person_id}/pledges/{pledge_id}/pledge_campaign/{pledge_campaign_id}",
13286
+ "stability": "official",
13167
13287
  "method": "GET",
13168
13288
  "path": "/giving/v2/people/{person_id}/pledges/{pledge_id}/pledge_campaign/{pledge_campaign_id}",
13169
13289
  "deprecated": false,
@@ -13294,6 +13414,7 @@ const OPERATIONS = [
13294
13414
  "resource": "Person",
13295
13415
  "operation": "Get Primary Campus (via Person)",
13296
13416
  "description": "GET /people/{person_id}/primary_campus/{primary_campus_id}",
13417
+ "stability": "official",
13297
13418
  "method": "GET",
13298
13419
  "path": "/giving/v2/people/{person_id}/primary_campus/{primary_campus_id}",
13299
13420
  "deprecated": false,
@@ -13348,6 +13469,7 @@ const OPERATIONS = [
13348
13469
  "resource": "Person",
13349
13470
  "operation": "Get Recurring Donation (via Payment Method)",
13350
13471
  "description": "GET /people/{person_id}/payment_methods/{payment_method_id}/recurring_donations/{recurring_donation_id}",
13472
+ "stability": "official",
13351
13473
  "method": "GET",
13352
13474
  "path": "/giving/v2/people/{person_id}/payment_methods/{payment_method_id}/recurring_donations/{recurring_donation_id}",
13353
13475
  "deprecated": false,
@@ -13478,6 +13600,7 @@ const OPERATIONS = [
13478
13600
  "resource": "Person",
13479
13601
  "operation": "Get Recurring Donation (via Person)",
13480
13602
  "description": "GET /people/{person_id}/recurring_donations/{recurring_donation_id}",
13603
+ "stability": "official",
13481
13604
  "method": "GET",
13482
13605
  "path": "/giving/v2/people/{person_id}/recurring_donations/{recurring_donation_id}",
13483
13606
  "deprecated": false,
@@ -13574,6 +13697,7 @@ const OPERATIONS = [
13574
13697
  "jsonApiType": "Pledge",
13575
13698
  "operation": "Create Pledge (via Person)",
13576
13699
  "description": "POST /people/{person_id}/pledges",
13700
+ "stability": "official",
13577
13701
  "method": "POST",
13578
13702
  "path": "/giving/v2/people/{person_id}/pledges",
13579
13703
  "deprecated": false,
@@ -13722,6 +13846,7 @@ const OPERATIONS = [
13722
13846
  "jsonApiType": "Batch",
13723
13847
  "operation": "Update Batch (via Person)",
13724
13848
  "description": "PATCH /people/{person_id}/batches/{batch_id}",
13849
+ "stability": "official",
13725
13850
  "method": "PATCH",
13726
13851
  "path": "/giving/v2/people/{person_id}/batches/{batch_id}",
13727
13852
  "deprecated": false,
@@ -13862,6 +13987,7 @@ const OPERATIONS = [
13862
13987
  "jsonApiType": "BatchGroup",
13863
13988
  "operation": "Update Batch Group (via Person)",
13864
13989
  "description": "PATCH /people/{person_id}/batch_groups/{batch_group_id}",
13990
+ "stability": "official",
13865
13991
  "method": "PATCH",
13866
13992
  "path": "/giving/v2/people/{person_id}/batch_groups/{batch_group_id}",
13867
13993
  "deprecated": false,
@@ -13971,6 +14097,7 @@ const OPERATIONS = [
13971
14097
  "jsonApiType": "Donation",
13972
14098
  "operation": "Update Donation (via Person)",
13973
14099
  "description": "PATCH /people/{person_id}/donations/{donation_id}",
14100
+ "stability": "official",
13974
14101
  "method": "PATCH",
13975
14102
  "path": "/giving/v2/people/{person_id}/donations/{donation_id}",
13976
14103
  "deprecated": false,
@@ -14337,6 +14464,7 @@ const OPERATIONS = [
14337
14464
  "jsonApiType": "Fund",
14338
14465
  "operation": "Update Fund (via Pledge Campaign)",
14339
14466
  "description": "PATCH /people/{person_id}/pledges/{pledge_id}/pledge_campaign/{pledge_campaign_id}/fund/{fund_id}",
14467
+ "stability": "official",
14340
14468
  "method": "PATCH",
14341
14469
  "path": "/giving/v2/people/{person_id}/pledges/{pledge_id}/pledge_campaign/{pledge_campaign_id}/fund/{fund_id}",
14342
14470
  "deprecated": false,
@@ -14527,6 +14655,7 @@ const OPERATIONS = [
14527
14655
  "jsonApiType": "InKindDonation",
14528
14656
  "operation": "Update In Kind Donation (via Person)",
14529
14657
  "description": "PATCH /people/{person_id}/in_kind_donations/{in_kind_donation_id}",
14658
+ "stability": "official",
14530
14659
  "method": "PATCH",
14531
14660
  "path": "/giving/v2/people/{person_id}/in_kind_donations/{in_kind_donation_id}",
14532
14661
  "deprecated": false,
@@ -14875,6 +15004,7 @@ const OPERATIONS = [
14875
15004
  "jsonApiType": "Person",
14876
15005
  "operation": "Update Joint Giver (via Pledge)",
14877
15006
  "description": "PATCH /people/{person_id}/pledges/{pledge_id}/joint_giver/{joint_giver_id}",
15007
+ "stability": "official",
14878
15008
  "method": "PATCH",
14879
15009
  "path": "/giving/v2/people/{person_id}/pledges/{pledge_id}/joint_giver/{joint_giver_id}",
14880
15010
  "deprecated": false,
@@ -14969,6 +15099,7 @@ const OPERATIONS = [
14969
15099
  "jsonApiType": "Person",
14970
15100
  "operation": "Update Person",
14971
15101
  "description": "PATCH /people/{person_id}",
15102
+ "stability": "official",
14972
15103
  "method": "PATCH",
14973
15104
  "path": "/giving/v2/people/{person_id}",
14974
15105
  "deprecated": false,
@@ -15025,6 +15156,7 @@ const OPERATIONS = [
15025
15156
  "jsonApiType": "Pledge",
15026
15157
  "operation": "Update Pledge (via Person)",
15027
15158
  "description": "PATCH /people/{person_id}/pledges/{pledge_id}",
15159
+ "stability": "official",
15028
15160
  "method": "PATCH",
15029
15161
  "path": "/giving/v2/people/{person_id}/pledges/{pledge_id}",
15030
15162
  "deprecated": false,
@@ -15129,6 +15261,7 @@ const OPERATIONS = [
15129
15261
  "jsonApiType": "Pledge",
15130
15262
  "operation": "Update Pledge (via Pledge Campaign)",
15131
15263
  "description": "PATCH /people/{person_id}/pledges/{pledge_id}/pledge_campaign/{pledge_campaign_id}/pledges/{pledge_id}",
15264
+ "stability": "official",
15132
15265
  "method": "PATCH",
15133
15266
  "path": "/giving/v2/people/{person_id}/pledges/{pledge_id}/pledge_campaign/{pledge_campaign_id}/pledges/{pledge_id}",
15134
15267
  "deprecated": false,
@@ -15268,6 +15401,7 @@ const OPERATIONS = [
15268
15401
  "jsonApiType": "PledgeCampaign",
15269
15402
  "operation": "Update Pledge Campaign (via Pledge)",
15270
15403
  "description": "PATCH /people/{person_id}/pledges/{pledge_id}/pledge_campaign/{pledge_campaign_id}",
15404
+ "stability": "official",
15271
15405
  "method": "PATCH",
15272
15406
  "path": "/giving/v2/people/{person_id}/pledges/{pledge_id}/pledge_campaign/{pledge_campaign_id}",
15273
15407
  "deprecated": false,
@@ -15522,6 +15656,7 @@ const OPERATIONS = [
15522
15656
  "resource": "Person",
15523
15657
  "operation": "Delete Batch (via Person)",
15524
15658
  "description": "DELETE /people/{person_id}/batches/{batch_id}",
15659
+ "stability": "official",
15525
15660
  "method": "DELETE",
15526
15661
  "path": "/giving/v2/people/{person_id}/batches/{batch_id}",
15527
15662
  "deprecated": false,
@@ -15605,6 +15740,7 @@ const OPERATIONS = [
15605
15740
  "resource": "Person",
15606
15741
  "operation": "Delete Batch Group (via Person)",
15607
15742
  "description": "DELETE /people/{person_id}/batch_groups/{batch_group_id}",
15743
+ "stability": "official",
15608
15744
  "method": "DELETE",
15609
15745
  "path": "/giving/v2/people/{person_id}/batch_groups/{batch_group_id}",
15610
15746
  "deprecated": false,
@@ -15688,6 +15824,7 @@ const OPERATIONS = [
15688
15824
  "resource": "Person",
15689
15825
  "operation": "Delete Donation (via Person)",
15690
15826
  "description": "DELETE /people/{person_id}/donations/{donation_id}",
15827
+ "stability": "official",
15691
15828
  "method": "DELETE",
15692
15829
  "path": "/giving/v2/people/{person_id}/donations/{donation_id}",
15693
15830
  "deprecated": false,
@@ -15766,6 +15903,7 @@ const OPERATIONS = [
15766
15903
  "resource": "Person",
15767
15904
  "operation": "Delete Fund (via Pledge Campaign)",
15768
15905
  "description": "DELETE /people/{person_id}/pledges/{pledge_id}/pledge_campaign/{pledge_campaign_id}/fund/{fund_id}",
15906
+ "stability": "official",
15769
15907
  "method": "DELETE",
15770
15908
  "path": "/giving/v2/people/{person_id}/pledges/{pledge_id}/pledge_campaign/{pledge_campaign_id}/fund/{fund_id}",
15771
15909
  "deprecated": false,
@@ -15919,6 +16057,7 @@ const OPERATIONS = [
15919
16057
  "resource": "Person",
15920
16058
  "operation": "Delete In Kind Donation (via Person)",
15921
16059
  "description": "DELETE /people/{person_id}/in_kind_donations/{in_kind_donation_id}",
16060
+ "stability": "official",
15922
16061
  "method": "DELETE",
15923
16062
  "path": "/giving/v2/people/{person_id}/in_kind_donations/{in_kind_donation_id}",
15924
16063
  "deprecated": false,
@@ -16002,6 +16141,7 @@ const OPERATIONS = [
16002
16141
  "resource": "Person",
16003
16142
  "operation": "Delete Pledge (via Person)",
16004
16143
  "description": "DELETE /people/{person_id}/pledges/{pledge_id}",
16144
+ "stability": "official",
16005
16145
  "method": "DELETE",
16006
16146
  "path": "/giving/v2/people/{person_id}/pledges/{pledge_id}",
16007
16147
  "deprecated": false,
@@ -16080,6 +16220,7 @@ const OPERATIONS = [
16080
16220
  "resource": "Person",
16081
16221
  "operation": "Delete Pledge (via Pledge Campaign)",
16082
16222
  "description": "DELETE /people/{person_id}/pledges/{pledge_id}/pledge_campaign/{pledge_campaign_id}/pledges/{pledge_id}",
16223
+ "stability": "official",
16083
16224
  "method": "DELETE",
16084
16225
  "path": "/giving/v2/people/{person_id}/pledges/{pledge_id}/pledge_campaign/{pledge_campaign_id}/pledges/{pledge_id}",
16085
16226
  "deprecated": false,
@@ -16193,6 +16334,7 @@ const OPERATIONS = [
16193
16334
  "resource": "Person",
16194
16335
  "operation": "Delete Pledge Campaign (via Pledge)",
16195
16336
  "description": "DELETE /people/{person_id}/pledges/{pledge_id}/pledge_campaign/{pledge_campaign_id}",
16337
+ "stability": "official",
16196
16338
  "method": "DELETE",
16197
16339
  "path": "/giving/v2/people/{person_id}/pledges/{pledge_id}/pledge_campaign/{pledge_campaign_id}",
16198
16340
  "deprecated": false,
@@ -16306,6 +16448,7 @@ const OPERATIONS = [
16306
16448
  "resource": "Recurring Donation",
16307
16449
  "operation": "List Designations (via Recurring Donation)",
16308
16450
  "description": "GET /recurring_donations/{recurring_donation_id}/designations",
16451
+ "stability": "official",
16309
16452
  "method": "GET",
16310
16453
  "path": "/giving/v2/recurring_donations/{recurring_donation_id}/designations",
16311
16454
  "deprecated": false,
@@ -16366,6 +16509,7 @@ const OPERATIONS = [
16366
16509
  "resource": "Recurring Donation",
16367
16510
  "operation": "List Fund (via Recurring Donation Designation)",
16368
16511
  "description": "GET /recurring_donations/{recurring_donation_id}/designations/{recurring_donation_designation_id}/fund",
16512
+ "stability": "official",
16369
16513
  "method": "GET",
16370
16514
  "path": "/giving/v2/recurring_donations/{recurring_donation_id}/designations/{recurring_donation_designation_id}/fund",
16371
16515
  "deprecated": false,
@@ -16501,6 +16645,7 @@ const OPERATIONS = [
16501
16645
  "resource": "Recurring Donation",
16502
16646
  "operation": "List Payment Method (via Recurring Donation)",
16503
16647
  "description": "GET /recurring_donations/{recurring_donation_id}/payment_method",
16648
+ "stability": "official",
16504
16649
  "method": "GET",
16505
16650
  "path": "/giving/v2/recurring_donations/{recurring_donation_id}/payment_method",
16506
16651
  "deprecated": false,
@@ -16544,6 +16689,7 @@ const OPERATIONS = [
16544
16689
  "resource": "Recurring Donation",
16545
16690
  "operation": "List Recurring Donations",
16546
16691
  "description": "GET /recurring_donations",
16692
+ "stability": "official",
16547
16693
  "method": "GET",
16548
16694
  "path": "/giving/v2/recurring_donations",
16549
16695
  "deprecated": false,
@@ -16577,6 +16723,7 @@ const OPERATIONS = [
16577
16723
  "resource": "Recurring Donation",
16578
16724
  "operation": "Get Designation (via Recurring Donation)",
16579
16725
  "description": "GET /recurring_donations/{recurring_donation_id}/designations/{designation_id}",
16726
+ "stability": "official",
16580
16727
  "method": "GET",
16581
16728
  "path": "/giving/v2/recurring_donations/{recurring_donation_id}/designations/{designation_id}",
16582
16729
  "deprecated": false,
@@ -16644,6 +16791,7 @@ const OPERATIONS = [
16644
16791
  "resource": "Recurring Donation",
16645
16792
  "operation": "Get Fund (via Recurring Donation Designation)",
16646
16793
  "description": "GET /recurring_donations/{recurring_donation_id}/designations/{recurring_donation_designation_id}/fund/{fund_id}",
16794
+ "stability": "official",
16647
16795
  "method": "GET",
16648
16796
  "path": "/giving/v2/recurring_donations/{recurring_donation_id}/designations/{recurring_donation_designation_id}/fund/{fund_id}",
16649
16797
  "deprecated": false,
@@ -16754,6 +16902,7 @@ const OPERATIONS = [
16754
16902
  "resource": "Recurring Donation",
16755
16903
  "operation": "Get Payment Method (via Recurring Donation)",
16756
16904
  "description": "GET /recurring_donations/{recurring_donation_id}/payment_method/{payment_method_id}",
16905
+ "stability": "official",
16757
16906
  "method": "GET",
16758
16907
  "path": "/giving/v2/recurring_donations/{recurring_donation_id}/payment_method/{payment_method_id}",
16759
16908
  "deprecated": false,
@@ -16828,6 +16977,7 @@ const OPERATIONS = [
16828
16977
  "resource": "Recurring Donation",
16829
16978
  "operation": "Get Recurring Donation",
16830
16979
  "description": "GET /recurring_donations/{recurring_donation_id}",
16980
+ "stability": "official",
16831
16981
  "method": "GET",
16832
16982
  "path": "/giving/v2/recurring_donations/{recurring_donation_id}",
16833
16983
  "deprecated": false,
@@ -16889,6 +17039,7 @@ const OPERATIONS = [
16889
17039
  "jsonApiType": "Fund",
16890
17040
  "operation": "Update Fund (via Recurring Donation Designation)",
16891
17041
  "description": "PATCH /recurring_donations/{recurring_donation_id}/designations/{recurring_donation_designation_id}/fund/{fund_id}",
17042
+ "stability": "official",
16892
17043
  "method": "PATCH",
16893
17044
  "path": "/giving/v2/recurring_donations/{recurring_donation_id}/designations/{recurring_donation_designation_id}/fund/{fund_id}",
16894
17045
  "deprecated": false,
@@ -17035,6 +17186,7 @@ const OPERATIONS = [
17035
17186
  "resource": "Recurring Donation",
17036
17187
  "operation": "Delete Fund (via Recurring Donation Designation)",
17037
17188
  "description": "DELETE /recurring_donations/{recurring_donation_id}/designations/{recurring_donation_designation_id}/fund/{fund_id}",
17189
+ "stability": "official",
17038
17190
  "method": "DELETE",
17039
17191
  "path": "/giving/v2/recurring_donations/{recurring_donation_id}/designations/{recurring_donation_designation_id}/fund/{fund_id}",
17040
17192
  "deprecated": false,