chargebee 3.7.0 → 3.8.0
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/CHANGELOG.md +65 -0
- package/cjs/environment.js +1 -1
- package/cjs/resources/api_endpoints.js +2094 -258
- package/esm/environment.js +1 -1
- package/esm/resources/api_endpoints.js +2094 -258
- package/package.json +1 -1
- package/types/core.d.ts +4 -0
- package/types/index.d.ts +1 -0
- package/types/resources/Configuration.d.ts +1 -0
- package/types/resources/CreditNote.d.ts +10 -1
- package/types/resources/CreditNoteEstimate.d.ts +1 -1
- package/types/resources/Estimate.d.ts +10 -0
- package/types/resources/Invoice.d.ts +40 -4
- package/types/resources/InvoiceEstimate.d.ts +1 -1
- package/types/resources/Item.d.ts +2 -1
- package/types/resources/OmnichannelSubscriptionItem.d.ts +6 -0
- package/types/resources/Quote.d.ts +139 -4
- package/types/resources/QuoteLineGroup.d.ts +1 -1
- package/types/resources/QuotedRamp.d.ts +93 -0
- package/types/resources/Subscription.d.ts +2 -0
|
@@ -14,6 +14,9 @@ export const Endpoints = {
|
|
|
14
14
|
additional_information: 1,
|
|
15
15
|
billing_address: 1,
|
|
16
16
|
},
|
|
17
|
+
{
|
|
18
|
+
isIdempotent: true,
|
|
19
|
+
},
|
|
17
20
|
],
|
|
18
21
|
[
|
|
19
22
|
'createForCustomer',
|
|
@@ -27,6 +30,9 @@ export const Endpoints = {
|
|
|
27
30
|
meta_data: 0,
|
|
28
31
|
additional_information: 1,
|
|
29
32
|
},
|
|
33
|
+
{
|
|
34
|
+
isIdempotent: true,
|
|
35
|
+
},
|
|
30
36
|
],
|
|
31
37
|
[
|
|
32
38
|
'createWithItems',
|
|
@@ -40,8 +46,11 @@ export const Endpoints = {
|
|
|
40
46
|
meta_data: 0,
|
|
41
47
|
additional_information: 1,
|
|
42
48
|
},
|
|
49
|
+
{
|
|
50
|
+
isIdempotent: true,
|
|
51
|
+
},
|
|
43
52
|
],
|
|
44
|
-
['list', 'GET', '/subscriptions', null, false, null, false, {}],
|
|
53
|
+
['list', 'GET', '/subscriptions', null, false, null, false, {}, {}],
|
|
45
54
|
[
|
|
46
55
|
'subscriptionsForCustomer',
|
|
47
56
|
'GET',
|
|
@@ -51,6 +60,7 @@ export const Endpoints = {
|
|
|
51
60
|
null,
|
|
52
61
|
false,
|
|
53
62
|
{},
|
|
63
|
+
{},
|
|
54
64
|
],
|
|
55
65
|
[
|
|
56
66
|
'contractTermsForSubscription',
|
|
@@ -61,6 +71,7 @@ export const Endpoints = {
|
|
|
61
71
|
null,
|
|
62
72
|
false,
|
|
63
73
|
{},
|
|
74
|
+
{},
|
|
64
75
|
],
|
|
65
76
|
[
|
|
66
77
|
'listDiscounts',
|
|
@@ -71,8 +82,9 @@ export const Endpoints = {
|
|
|
71
82
|
null,
|
|
72
83
|
false,
|
|
73
84
|
{},
|
|
85
|
+
{},
|
|
74
86
|
],
|
|
75
|
-
['retrieve', 'GET', '/subscriptions', null, true, null, false, {}],
|
|
87
|
+
['retrieve', 'GET', '/subscriptions', null, true, null, false, {}, {}],
|
|
76
88
|
[
|
|
77
89
|
'retrieveWithScheduledChanges',
|
|
78
90
|
'GET',
|
|
@@ -82,6 +94,7 @@ export const Endpoints = {
|
|
|
82
94
|
null,
|
|
83
95
|
false,
|
|
84
96
|
{},
|
|
97
|
+
{},
|
|
85
98
|
],
|
|
86
99
|
[
|
|
87
100
|
'removeScheduledChanges',
|
|
@@ -92,6 +105,9 @@ export const Endpoints = {
|
|
|
92
105
|
null,
|
|
93
106
|
false,
|
|
94
107
|
{},
|
|
108
|
+
{
|
|
109
|
+
isIdempotent: true,
|
|
110
|
+
},
|
|
95
111
|
],
|
|
96
112
|
[
|
|
97
113
|
'removeScheduledCancellation',
|
|
@@ -102,6 +118,9 @@ export const Endpoints = {
|
|
|
102
118
|
null,
|
|
103
119
|
false,
|
|
104
120
|
{},
|
|
121
|
+
{
|
|
122
|
+
isIdempotent: true,
|
|
123
|
+
},
|
|
105
124
|
],
|
|
106
125
|
[
|
|
107
126
|
'removeCoupons',
|
|
@@ -112,6 +131,9 @@ export const Endpoints = {
|
|
|
112
131
|
null,
|
|
113
132
|
false,
|
|
114
133
|
{},
|
|
134
|
+
{
|
|
135
|
+
isIdempotent: true,
|
|
136
|
+
},
|
|
115
137
|
],
|
|
116
138
|
[
|
|
117
139
|
'update',
|
|
@@ -125,6 +147,9 @@ export const Endpoints = {
|
|
|
125
147
|
meta_data: 0,
|
|
126
148
|
additional_information: 1,
|
|
127
149
|
},
|
|
150
|
+
{
|
|
151
|
+
isIdempotent: true,
|
|
152
|
+
},
|
|
128
153
|
],
|
|
129
154
|
[
|
|
130
155
|
'updateForItems',
|
|
@@ -138,6 +163,9 @@ export const Endpoints = {
|
|
|
138
163
|
meta_data: 0,
|
|
139
164
|
additional_information: 1,
|
|
140
165
|
},
|
|
166
|
+
{
|
|
167
|
+
isIdempotent: true,
|
|
168
|
+
},
|
|
141
169
|
],
|
|
142
170
|
[
|
|
143
171
|
'changeTermEnd',
|
|
@@ -148,6 +176,9 @@ export const Endpoints = {
|
|
|
148
176
|
null,
|
|
149
177
|
false,
|
|
150
178
|
{},
|
|
179
|
+
{
|
|
180
|
+
isIdempotent: true,
|
|
181
|
+
},
|
|
151
182
|
],
|
|
152
183
|
[
|
|
153
184
|
'reactivate',
|
|
@@ -160,6 +191,9 @@ export const Endpoints = {
|
|
|
160
191
|
{
|
|
161
192
|
additional_information: 1,
|
|
162
193
|
},
|
|
194
|
+
{
|
|
195
|
+
isIdempotent: true,
|
|
196
|
+
},
|
|
163
197
|
],
|
|
164
198
|
[
|
|
165
199
|
'addChargeAtTermEnd',
|
|
@@ -170,6 +204,9 @@ export const Endpoints = {
|
|
|
170
204
|
null,
|
|
171
205
|
false,
|
|
172
206
|
{},
|
|
207
|
+
{
|
|
208
|
+
isIdempotent: true,
|
|
209
|
+
},
|
|
173
210
|
],
|
|
174
211
|
[
|
|
175
212
|
'chargeAddonAtTermEnd',
|
|
@@ -180,6 +217,9 @@ export const Endpoints = {
|
|
|
180
217
|
null,
|
|
181
218
|
false,
|
|
182
219
|
{},
|
|
220
|
+
{
|
|
221
|
+
isIdempotent: true,
|
|
222
|
+
},
|
|
183
223
|
],
|
|
184
224
|
[
|
|
185
225
|
'chargeFutureRenewals',
|
|
@@ -190,6 +230,9 @@ export const Endpoints = {
|
|
|
190
230
|
null,
|
|
191
231
|
false,
|
|
192
232
|
{},
|
|
233
|
+
{
|
|
234
|
+
isIdempotent: true,
|
|
235
|
+
},
|
|
193
236
|
],
|
|
194
237
|
[
|
|
195
238
|
'editAdvanceInvoiceSchedule',
|
|
@@ -200,6 +243,9 @@ export const Endpoints = {
|
|
|
200
243
|
null,
|
|
201
244
|
false,
|
|
202
245
|
{},
|
|
246
|
+
{
|
|
247
|
+
isIdempotent: true,
|
|
248
|
+
},
|
|
203
249
|
],
|
|
204
250
|
[
|
|
205
251
|
'retrieveAdvanceInvoiceSchedule',
|
|
@@ -210,6 +256,7 @@ export const Endpoints = {
|
|
|
210
256
|
null,
|
|
211
257
|
false,
|
|
212
258
|
{},
|
|
259
|
+
{},
|
|
213
260
|
],
|
|
214
261
|
[
|
|
215
262
|
'removeAdvanceInvoiceSchedule',
|
|
@@ -220,6 +267,9 @@ export const Endpoints = {
|
|
|
220
267
|
null,
|
|
221
268
|
false,
|
|
222
269
|
{},
|
|
270
|
+
{
|
|
271
|
+
isIdempotent: true,
|
|
272
|
+
},
|
|
223
273
|
],
|
|
224
274
|
[
|
|
225
275
|
'regenerateInvoice',
|
|
@@ -230,6 +280,9 @@ export const Endpoints = {
|
|
|
230
280
|
null,
|
|
231
281
|
false,
|
|
232
282
|
{},
|
|
283
|
+
{
|
|
284
|
+
isIdempotent: true,
|
|
285
|
+
},
|
|
233
286
|
],
|
|
234
287
|
[
|
|
235
288
|
'importSubscription',
|
|
@@ -243,6 +296,9 @@ export const Endpoints = {
|
|
|
243
296
|
meta_data: 0,
|
|
244
297
|
additional_information: 1,
|
|
245
298
|
},
|
|
299
|
+
{
|
|
300
|
+
isIdempotent: true,
|
|
301
|
+
},
|
|
246
302
|
],
|
|
247
303
|
[
|
|
248
304
|
'importForCustomer',
|
|
@@ -255,6 +311,9 @@ export const Endpoints = {
|
|
|
255
311
|
{
|
|
256
312
|
meta_data: 0,
|
|
257
313
|
},
|
|
314
|
+
{
|
|
315
|
+
isIdempotent: true,
|
|
316
|
+
},
|
|
258
317
|
],
|
|
259
318
|
[
|
|
260
319
|
'importContractTerm',
|
|
@@ -265,6 +324,9 @@ export const Endpoints = {
|
|
|
265
324
|
null,
|
|
266
325
|
false,
|
|
267
326
|
{},
|
|
327
|
+
{
|
|
328
|
+
isIdempotent: true,
|
|
329
|
+
},
|
|
268
330
|
],
|
|
269
331
|
[
|
|
270
332
|
'importUnbilledCharges',
|
|
@@ -275,6 +337,9 @@ export const Endpoints = {
|
|
|
275
337
|
null,
|
|
276
338
|
false,
|
|
277
339
|
{},
|
|
340
|
+
{
|
|
341
|
+
isIdempotent: true,
|
|
342
|
+
},
|
|
278
343
|
],
|
|
279
344
|
[
|
|
280
345
|
'importForItems',
|
|
@@ -287,6 +352,9 @@ export const Endpoints = {
|
|
|
287
352
|
{
|
|
288
353
|
meta_data: 0,
|
|
289
354
|
},
|
|
355
|
+
{
|
|
356
|
+
isIdempotent: true,
|
|
357
|
+
},
|
|
290
358
|
],
|
|
291
359
|
[
|
|
292
360
|
'overrideBillingProfile',
|
|
@@ -297,10 +365,49 @@ export const Endpoints = {
|
|
|
297
365
|
null,
|
|
298
366
|
false,
|
|
299
367
|
{},
|
|
368
|
+
{
|
|
369
|
+
isIdempotent: true,
|
|
370
|
+
},
|
|
371
|
+
],
|
|
372
|
+
[
|
|
373
|
+
'delete',
|
|
374
|
+
'POST',
|
|
375
|
+
'/subscriptions',
|
|
376
|
+
'/delete',
|
|
377
|
+
true,
|
|
378
|
+
null,
|
|
379
|
+
false,
|
|
380
|
+
{},
|
|
381
|
+
{
|
|
382
|
+
isIdempotent: true,
|
|
383
|
+
},
|
|
384
|
+
],
|
|
385
|
+
[
|
|
386
|
+
'pause',
|
|
387
|
+
'POST',
|
|
388
|
+
'/subscriptions',
|
|
389
|
+
'/pause',
|
|
390
|
+
true,
|
|
391
|
+
null,
|
|
392
|
+
false,
|
|
393
|
+
{},
|
|
394
|
+
{
|
|
395
|
+
isIdempotent: true,
|
|
396
|
+
},
|
|
397
|
+
],
|
|
398
|
+
[
|
|
399
|
+
'cancel',
|
|
400
|
+
'POST',
|
|
401
|
+
'/subscriptions',
|
|
402
|
+
'/cancel',
|
|
403
|
+
true,
|
|
404
|
+
null,
|
|
405
|
+
false,
|
|
406
|
+
{},
|
|
407
|
+
{
|
|
408
|
+
isIdempotent: true,
|
|
409
|
+
},
|
|
300
410
|
],
|
|
301
|
-
['delete', 'POST', '/subscriptions', '/delete', true, null, false, {}],
|
|
302
|
-
['pause', 'POST', '/subscriptions', '/pause', true, null, false, {}],
|
|
303
|
-
['cancel', 'POST', '/subscriptions', '/cancel', true, null, false, {}],
|
|
304
411
|
[
|
|
305
412
|
'cancelForItems',
|
|
306
413
|
'POST',
|
|
@@ -310,6 +417,9 @@ export const Endpoints = {
|
|
|
310
417
|
null,
|
|
311
418
|
false,
|
|
312
419
|
{},
|
|
420
|
+
{
|
|
421
|
+
isIdempotent: true,
|
|
422
|
+
},
|
|
313
423
|
],
|
|
314
424
|
[
|
|
315
425
|
'resume',
|
|
@@ -322,6 +432,9 @@ export const Endpoints = {
|
|
|
322
432
|
{
|
|
323
433
|
additional_information: 1,
|
|
324
434
|
},
|
|
435
|
+
{
|
|
436
|
+
isIdempotent: true,
|
|
437
|
+
},
|
|
325
438
|
],
|
|
326
439
|
[
|
|
327
440
|
'removeScheduledPause',
|
|
@@ -332,6 +445,9 @@ export const Endpoints = {
|
|
|
332
445
|
null,
|
|
333
446
|
false,
|
|
334
447
|
{},
|
|
448
|
+
{
|
|
449
|
+
isIdempotent: true,
|
|
450
|
+
},
|
|
335
451
|
],
|
|
336
452
|
[
|
|
337
453
|
'removeScheduledResumption',
|
|
@@ -342,8 +458,23 @@ export const Endpoints = {
|
|
|
342
458
|
null,
|
|
343
459
|
false,
|
|
344
460
|
{},
|
|
461
|
+
{
|
|
462
|
+
isIdempotent: true,
|
|
463
|
+
},
|
|
464
|
+
],
|
|
465
|
+
[
|
|
466
|
+
'move',
|
|
467
|
+
'POST',
|
|
468
|
+
'/subscriptions',
|
|
469
|
+
'/move',
|
|
470
|
+
true,
|
|
471
|
+
null,
|
|
472
|
+
false,
|
|
473
|
+
{},
|
|
474
|
+
{
|
|
475
|
+
isIdempotent: true,
|
|
476
|
+
},
|
|
345
477
|
],
|
|
346
|
-
['move', 'POST', '/subscriptions', '/move', true, null, false, {}],
|
|
347
478
|
],
|
|
348
479
|
contractTerm: [],
|
|
349
480
|
discount: [],
|
|
@@ -363,9 +494,12 @@ export const Endpoints = {
|
|
|
363
494
|
additional_information: 1,
|
|
364
495
|
billing_address: 1,
|
|
365
496
|
},
|
|
497
|
+
{
|
|
498
|
+
isIdempotent: true,
|
|
499
|
+
},
|
|
366
500
|
],
|
|
367
|
-
['list', 'GET', '/customers', null, false, null, false, {}],
|
|
368
|
-
['retrieve', 'GET', '/customers', null, true, null, false, {}],
|
|
501
|
+
['list', 'GET', '/customers', null, false, null, false, {}, {}],
|
|
502
|
+
['retrieve', 'GET', '/customers', null, true, null, false, {}, {}],
|
|
369
503
|
[
|
|
370
504
|
'update',
|
|
371
505
|
'POST',
|
|
@@ -378,6 +512,9 @@ export const Endpoints = {
|
|
|
378
512
|
exemption_details: 0,
|
|
379
513
|
meta_data: 0,
|
|
380
514
|
},
|
|
515
|
+
{
|
|
516
|
+
isIdempotent: true,
|
|
517
|
+
},
|
|
381
518
|
],
|
|
382
519
|
[
|
|
383
520
|
'updatePaymentMethod',
|
|
@@ -390,6 +527,9 @@ export const Endpoints = {
|
|
|
390
527
|
{
|
|
391
528
|
additional_information: 1,
|
|
392
529
|
},
|
|
530
|
+
{
|
|
531
|
+
isIdempotent: true,
|
|
532
|
+
},
|
|
393
533
|
],
|
|
394
534
|
[
|
|
395
535
|
'updateBillingInfo',
|
|
@@ -400,6 +540,9 @@ export const Endpoints = {
|
|
|
400
540
|
null,
|
|
401
541
|
false,
|
|
402
542
|
{},
|
|
543
|
+
{
|
|
544
|
+
isIdempotent: true,
|
|
545
|
+
},
|
|
403
546
|
],
|
|
404
547
|
[
|
|
405
548
|
'contactsForCustomer',
|
|
@@ -410,6 +553,7 @@ export const Endpoints = {
|
|
|
410
553
|
null,
|
|
411
554
|
false,
|
|
412
555
|
{},
|
|
556
|
+
{},
|
|
413
557
|
],
|
|
414
558
|
[
|
|
415
559
|
'assignPaymentRole',
|
|
@@ -420,8 +564,23 @@ export const Endpoints = {
|
|
|
420
564
|
null,
|
|
421
565
|
false,
|
|
422
566
|
{},
|
|
567
|
+
{
|
|
568
|
+
isIdempotent: true,
|
|
569
|
+
},
|
|
570
|
+
],
|
|
571
|
+
[
|
|
572
|
+
'addContact',
|
|
573
|
+
'POST',
|
|
574
|
+
'/customers',
|
|
575
|
+
'/add_contact',
|
|
576
|
+
true,
|
|
577
|
+
null,
|
|
578
|
+
false,
|
|
579
|
+
{},
|
|
580
|
+
{
|
|
581
|
+
isIdempotent: true,
|
|
582
|
+
},
|
|
423
583
|
],
|
|
424
|
-
['addContact', 'POST', '/customers', '/add_contact', true, null, false, {}],
|
|
425
584
|
[
|
|
426
585
|
'updateContact',
|
|
427
586
|
'POST',
|
|
@@ -431,6 +590,9 @@ export const Endpoints = {
|
|
|
431
590
|
null,
|
|
432
591
|
false,
|
|
433
592
|
{},
|
|
593
|
+
{
|
|
594
|
+
isIdempotent: true,
|
|
595
|
+
},
|
|
434
596
|
],
|
|
435
597
|
[
|
|
436
598
|
'deleteContact',
|
|
@@ -441,6 +603,9 @@ export const Endpoints = {
|
|
|
441
603
|
null,
|
|
442
604
|
false,
|
|
443
605
|
{},
|
|
606
|
+
{
|
|
607
|
+
isIdempotent: true,
|
|
608
|
+
},
|
|
444
609
|
],
|
|
445
610
|
[
|
|
446
611
|
'addPromotionalCredits',
|
|
@@ -451,6 +616,9 @@ export const Endpoints = {
|
|
|
451
616
|
null,
|
|
452
617
|
false,
|
|
453
618
|
{},
|
|
619
|
+
{
|
|
620
|
+
isIdempotent: true,
|
|
621
|
+
},
|
|
454
622
|
],
|
|
455
623
|
[
|
|
456
624
|
'deductPromotionalCredits',
|
|
@@ -461,6 +629,9 @@ export const Endpoints = {
|
|
|
461
629
|
null,
|
|
462
630
|
false,
|
|
463
631
|
{},
|
|
632
|
+
{
|
|
633
|
+
isIdempotent: true,
|
|
634
|
+
},
|
|
464
635
|
],
|
|
465
636
|
[
|
|
466
637
|
'setPromotionalCredits',
|
|
@@ -471,6 +642,9 @@ export const Endpoints = {
|
|
|
471
642
|
null,
|
|
472
643
|
false,
|
|
473
644
|
{},
|
|
645
|
+
{
|
|
646
|
+
isIdempotent: true,
|
|
647
|
+
},
|
|
474
648
|
],
|
|
475
649
|
[
|
|
476
650
|
'recordExcessPayment',
|
|
@@ -481,6 +655,9 @@ export const Endpoints = {
|
|
|
481
655
|
null,
|
|
482
656
|
false,
|
|
483
657
|
{},
|
|
658
|
+
{
|
|
659
|
+
isIdempotent: true,
|
|
660
|
+
},
|
|
484
661
|
],
|
|
485
662
|
[
|
|
486
663
|
'collectPayment',
|
|
@@ -493,9 +670,36 @@ export const Endpoints = {
|
|
|
493
670
|
{
|
|
494
671
|
additional_information: 1,
|
|
495
672
|
},
|
|
673
|
+
{
|
|
674
|
+
isIdempotent: true,
|
|
675
|
+
},
|
|
676
|
+
],
|
|
677
|
+
[
|
|
678
|
+
'delete',
|
|
679
|
+
'POST',
|
|
680
|
+
'/customers',
|
|
681
|
+
'/delete',
|
|
682
|
+
true,
|
|
683
|
+
null,
|
|
684
|
+
false,
|
|
685
|
+
{},
|
|
686
|
+
{
|
|
687
|
+
isIdempotent: true,
|
|
688
|
+
},
|
|
689
|
+
],
|
|
690
|
+
[
|
|
691
|
+
'move',
|
|
692
|
+
'POST',
|
|
693
|
+
'/customers',
|
|
694
|
+
'/move',
|
|
695
|
+
false,
|
|
696
|
+
null,
|
|
697
|
+
false,
|
|
698
|
+
{},
|
|
699
|
+
{
|
|
700
|
+
isIdempotent: true,
|
|
701
|
+
},
|
|
496
702
|
],
|
|
497
|
-
['delete', 'POST', '/customers', '/delete', true, null, false, {}],
|
|
498
|
-
['move', 'POST', '/customers', '/move', false, null, false, {}],
|
|
499
703
|
[
|
|
500
704
|
'changeBillingDate',
|
|
501
705
|
'POST',
|
|
@@ -505,8 +709,23 @@ export const Endpoints = {
|
|
|
505
709
|
null,
|
|
506
710
|
false,
|
|
507
711
|
{},
|
|
712
|
+
{
|
|
713
|
+
isIdempotent: true,
|
|
714
|
+
},
|
|
715
|
+
],
|
|
716
|
+
[
|
|
717
|
+
'merge',
|
|
718
|
+
'POST',
|
|
719
|
+
'/customers',
|
|
720
|
+
'/merge',
|
|
721
|
+
false,
|
|
722
|
+
null,
|
|
723
|
+
false,
|
|
724
|
+
{},
|
|
725
|
+
{
|
|
726
|
+
isIdempotent: true,
|
|
727
|
+
},
|
|
508
728
|
],
|
|
509
|
-
['merge', 'POST', '/customers', '/merge', false, null, false, {}],
|
|
510
729
|
[
|
|
511
730
|
'clearPersonalData',
|
|
512
731
|
'POST',
|
|
@@ -516,6 +735,9 @@ export const Endpoints = {
|
|
|
516
735
|
null,
|
|
517
736
|
false,
|
|
518
737
|
{},
|
|
738
|
+
{
|
|
739
|
+
isIdempotent: true,
|
|
740
|
+
},
|
|
519
741
|
],
|
|
520
742
|
[
|
|
521
743
|
'relationships',
|
|
@@ -526,6 +748,9 @@ export const Endpoints = {
|
|
|
526
748
|
null,
|
|
527
749
|
false,
|
|
528
750
|
{},
|
|
751
|
+
{
|
|
752
|
+
isIdempotent: true,
|
|
753
|
+
},
|
|
529
754
|
],
|
|
530
755
|
[
|
|
531
756
|
'deleteRelationship',
|
|
@@ -536,8 +761,11 @@ export const Endpoints = {
|
|
|
536
761
|
null,
|
|
537
762
|
false,
|
|
538
763
|
{},
|
|
764
|
+
{
|
|
765
|
+
isIdempotent: true,
|
|
766
|
+
},
|
|
539
767
|
],
|
|
540
|
-
['hierarchy', 'GET', '/customers', '/hierarchy', true, null, false, {}],
|
|
768
|
+
['hierarchy', 'GET', '/customers', '/hierarchy', true, null, false, {}, {}],
|
|
541
769
|
[
|
|
542
770
|
'updateHierarchySettings',
|
|
543
771
|
'POST',
|
|
@@ -547,6 +775,9 @@ export const Endpoints = {
|
|
|
547
775
|
null,
|
|
548
776
|
false,
|
|
549
777
|
{},
|
|
778
|
+
{
|
|
779
|
+
isIdempotent: true,
|
|
780
|
+
},
|
|
550
781
|
],
|
|
551
782
|
],
|
|
552
783
|
hierarchy: [],
|
|
@@ -565,6 +796,9 @@ export const Endpoints = {
|
|
|
565
796
|
{
|
|
566
797
|
additional_information: 0,
|
|
567
798
|
},
|
|
799
|
+
{
|
|
800
|
+
isIdempotent: true,
|
|
801
|
+
},
|
|
568
802
|
],
|
|
569
803
|
[
|
|
570
804
|
'createUsingPermanentToken',
|
|
@@ -577,6 +811,9 @@ export const Endpoints = {
|
|
|
577
811
|
{
|
|
578
812
|
additional_information: 0,
|
|
579
813
|
},
|
|
814
|
+
{
|
|
815
|
+
isIdempotent: true,
|
|
816
|
+
},
|
|
580
817
|
],
|
|
581
818
|
[
|
|
582
819
|
'createUsingToken',
|
|
@@ -587,6 +824,9 @@ export const Endpoints = {
|
|
|
587
824
|
null,
|
|
588
825
|
false,
|
|
589
826
|
{},
|
|
827
|
+
{
|
|
828
|
+
isIdempotent: true,
|
|
829
|
+
},
|
|
590
830
|
],
|
|
591
831
|
[
|
|
592
832
|
'createUsingPaymentIntent',
|
|
@@ -600,6 +840,9 @@ export const Endpoints = {
|
|
|
600
840
|
additional_info: 1,
|
|
601
841
|
additional_information: 1,
|
|
602
842
|
},
|
|
843
|
+
{
|
|
844
|
+
isIdempotent: true,
|
|
845
|
+
},
|
|
603
846
|
],
|
|
604
847
|
[
|
|
605
848
|
'createVoucherPaymentSource',
|
|
@@ -612,6 +855,9 @@ export const Endpoints = {
|
|
|
612
855
|
{
|
|
613
856
|
billing_address: 1,
|
|
614
857
|
},
|
|
858
|
+
{
|
|
859
|
+
isIdempotent: true,
|
|
860
|
+
},
|
|
615
861
|
],
|
|
616
862
|
[
|
|
617
863
|
'createCard',
|
|
@@ -624,6 +870,9 @@ export const Endpoints = {
|
|
|
624
870
|
{
|
|
625
871
|
additional_information: 1,
|
|
626
872
|
},
|
|
873
|
+
{
|
|
874
|
+
isIdempotent: true,
|
|
875
|
+
},
|
|
627
876
|
],
|
|
628
877
|
[
|
|
629
878
|
'createBankAccount',
|
|
@@ -636,6 +885,9 @@ export const Endpoints = {
|
|
|
636
885
|
{
|
|
637
886
|
billing_address: 1,
|
|
638
887
|
},
|
|
888
|
+
{
|
|
889
|
+
isIdempotent: true,
|
|
890
|
+
},
|
|
639
891
|
],
|
|
640
892
|
[
|
|
641
893
|
'updateCard',
|
|
@@ -649,6 +901,9 @@ export const Endpoints = {
|
|
|
649
901
|
gateway_meta_data: 0,
|
|
650
902
|
additional_information: 1,
|
|
651
903
|
},
|
|
904
|
+
{
|
|
905
|
+
isIdempotent: true,
|
|
906
|
+
},
|
|
652
907
|
],
|
|
653
908
|
[
|
|
654
909
|
'updateBankAccount',
|
|
@@ -659,6 +914,9 @@ export const Endpoints = {
|
|
|
659
914
|
null,
|
|
660
915
|
false,
|
|
661
916
|
{},
|
|
917
|
+
{
|
|
918
|
+
isIdempotent: true,
|
|
919
|
+
},
|
|
662
920
|
],
|
|
663
921
|
[
|
|
664
922
|
'verifyBankAccount',
|
|
@@ -669,9 +927,12 @@ export const Endpoints = {
|
|
|
669
927
|
null,
|
|
670
928
|
false,
|
|
671
929
|
{},
|
|
930
|
+
{
|
|
931
|
+
isIdempotent: true,
|
|
932
|
+
},
|
|
672
933
|
],
|
|
673
|
-
['retrieve', 'GET', '/payment_sources', null, true, null, false, {}],
|
|
674
|
-
['list', 'GET', '/payment_sources', null, false, null, false, {}],
|
|
934
|
+
['retrieve', 'GET', '/payment_sources', null, true, null, false, {}, {}],
|
|
935
|
+
['list', 'GET', '/payment_sources', null, false, null, false, {}, {}],
|
|
675
936
|
[
|
|
676
937
|
'switchGatewayAccount',
|
|
677
938
|
'POST',
|
|
@@ -681,6 +942,9 @@ export const Endpoints = {
|
|
|
681
942
|
null,
|
|
682
943
|
false,
|
|
683
944
|
{},
|
|
945
|
+
{
|
|
946
|
+
isIdempotent: true,
|
|
947
|
+
},
|
|
684
948
|
],
|
|
685
949
|
[
|
|
686
950
|
'exportPaymentSource',
|
|
@@ -691,8 +955,23 @@ export const Endpoints = {
|
|
|
691
955
|
null,
|
|
692
956
|
false,
|
|
693
957
|
{},
|
|
958
|
+
{
|
|
959
|
+
isIdempotent: true,
|
|
960
|
+
},
|
|
961
|
+
],
|
|
962
|
+
[
|
|
963
|
+
'delete',
|
|
964
|
+
'POST',
|
|
965
|
+
'/payment_sources',
|
|
966
|
+
'/delete',
|
|
967
|
+
true,
|
|
968
|
+
null,
|
|
969
|
+
false,
|
|
970
|
+
{},
|
|
971
|
+
{
|
|
972
|
+
isIdempotent: true,
|
|
973
|
+
},
|
|
694
974
|
],
|
|
695
|
-
['delete', 'POST', '/payment_sources', '/delete', true, null, false, {}],
|
|
696
975
|
[
|
|
697
976
|
'deleteLocal',
|
|
698
977
|
'POST',
|
|
@@ -702,6 +981,9 @@ export const Endpoints = {
|
|
|
702
981
|
null,
|
|
703
982
|
false,
|
|
704
983
|
{},
|
|
984
|
+
{
|
|
985
|
+
isIdempotent: true,
|
|
986
|
+
},
|
|
705
987
|
],
|
|
706
988
|
],
|
|
707
989
|
thirdPartyPaymentMethod: [],
|
|
@@ -715,10 +997,35 @@ export const Endpoints = {
|
|
|
715
997
|
null,
|
|
716
998
|
false,
|
|
717
999
|
{},
|
|
1000
|
+
{
|
|
1001
|
+
isIdempotent: true,
|
|
1002
|
+
},
|
|
1003
|
+
],
|
|
1004
|
+
[
|
|
1005
|
+
'create',
|
|
1006
|
+
'POST',
|
|
1007
|
+
'/virtual_bank_accounts',
|
|
1008
|
+
null,
|
|
1009
|
+
false,
|
|
1010
|
+
null,
|
|
1011
|
+
false,
|
|
1012
|
+
{},
|
|
1013
|
+
{
|
|
1014
|
+
isIdempotent: true,
|
|
1015
|
+
},
|
|
1016
|
+
],
|
|
1017
|
+
[
|
|
1018
|
+
'retrieve',
|
|
1019
|
+
'GET',
|
|
1020
|
+
'/virtual_bank_accounts',
|
|
1021
|
+
null,
|
|
1022
|
+
true,
|
|
1023
|
+
null,
|
|
1024
|
+
false,
|
|
1025
|
+
{},
|
|
1026
|
+
{},
|
|
718
1027
|
],
|
|
719
|
-
['
|
|
720
|
-
['retrieve', 'GET', '/virtual_bank_accounts', null, true, null, false, {}],
|
|
721
|
-
['list', 'GET', '/virtual_bank_accounts', null, false, null, false, {}],
|
|
1028
|
+
['list', 'GET', '/virtual_bank_accounts', null, false, null, false, {}, {}],
|
|
722
1029
|
[
|
|
723
1030
|
'delete',
|
|
724
1031
|
'POST',
|
|
@@ -728,6 +1035,9 @@ export const Endpoints = {
|
|
|
728
1035
|
null,
|
|
729
1036
|
false,
|
|
730
1037
|
{},
|
|
1038
|
+
{
|
|
1039
|
+
isIdempotent: true,
|
|
1040
|
+
},
|
|
731
1041
|
],
|
|
732
1042
|
[
|
|
733
1043
|
'deleteLocal',
|
|
@@ -738,10 +1048,13 @@ export const Endpoints = {
|
|
|
738
1048
|
null,
|
|
739
1049
|
false,
|
|
740
1050
|
{},
|
|
1051
|
+
{
|
|
1052
|
+
isIdempotent: true,
|
|
1053
|
+
},
|
|
741
1054
|
],
|
|
742
1055
|
],
|
|
743
1056
|
card: [
|
|
744
|
-
['retrieve', 'GET', '/cards', null, true, null, false, {}],
|
|
1057
|
+
['retrieve', 'GET', '/cards', null, true, null, false, {}, {}],
|
|
745
1058
|
[
|
|
746
1059
|
'updateCardForCustomer',
|
|
747
1060
|
'POST',
|
|
@@ -751,6 +1064,9 @@ export const Endpoints = {
|
|
|
751
1064
|
null,
|
|
752
1065
|
false,
|
|
753
1066
|
{},
|
|
1067
|
+
{
|
|
1068
|
+
isIdempotent: true,
|
|
1069
|
+
},
|
|
754
1070
|
],
|
|
755
1071
|
[
|
|
756
1072
|
'switchGatewayForCustomer',
|
|
@@ -761,6 +1077,9 @@ export const Endpoints = {
|
|
|
761
1077
|
null,
|
|
762
1078
|
false,
|
|
763
1079
|
{},
|
|
1080
|
+
{
|
|
1081
|
+
isIdempotent: true,
|
|
1082
|
+
},
|
|
764
1083
|
],
|
|
765
1084
|
[
|
|
766
1085
|
'copyCardForCustomer',
|
|
@@ -771,6 +1090,9 @@ export const Endpoints = {
|
|
|
771
1090
|
null,
|
|
772
1091
|
false,
|
|
773
1092
|
{},
|
|
1093
|
+
{
|
|
1094
|
+
isIdempotent: true,
|
|
1095
|
+
},
|
|
774
1096
|
],
|
|
775
1097
|
[
|
|
776
1098
|
'deleteCardForCustomer',
|
|
@@ -781,24 +1103,64 @@ export const Endpoints = {
|
|
|
781
1103
|
null,
|
|
782
1104
|
false,
|
|
783
1105
|
{},
|
|
1106
|
+
{
|
|
1107
|
+
isIdempotent: true,
|
|
1108
|
+
},
|
|
784
1109
|
],
|
|
785
1110
|
],
|
|
786
1111
|
promotionalCredit: [
|
|
787
|
-
['add', 'POST', '/promotional_credits', '/add', false, null, false, {}],
|
|
788
1112
|
[
|
|
789
|
-
'
|
|
1113
|
+
'add',
|
|
790
1114
|
'POST',
|
|
791
1115
|
'/promotional_credits',
|
|
792
|
-
'/
|
|
1116
|
+
'/add',
|
|
793
1117
|
false,
|
|
794
1118
|
null,
|
|
795
1119
|
false,
|
|
796
1120
|
{},
|
|
1121
|
+
{
|
|
1122
|
+
isIdempotent: true,
|
|
1123
|
+
},
|
|
797
1124
|
],
|
|
798
|
-
[
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
1125
|
+
[
|
|
1126
|
+
'deduct',
|
|
1127
|
+
'POST',
|
|
1128
|
+
'/promotional_credits',
|
|
1129
|
+
'/deduct',
|
|
1130
|
+
false,
|
|
1131
|
+
null,
|
|
1132
|
+
false,
|
|
1133
|
+
{},
|
|
1134
|
+
{
|
|
1135
|
+
isIdempotent: true,
|
|
1136
|
+
},
|
|
1137
|
+
],
|
|
1138
|
+
[
|
|
1139
|
+
'set',
|
|
1140
|
+
'POST',
|
|
1141
|
+
'/promotional_credits',
|
|
1142
|
+
'/set',
|
|
1143
|
+
false,
|
|
1144
|
+
null,
|
|
1145
|
+
false,
|
|
1146
|
+
{},
|
|
1147
|
+
{
|
|
1148
|
+
isIdempotent: true,
|
|
1149
|
+
},
|
|
1150
|
+
],
|
|
1151
|
+
['list', 'GET', '/promotional_credits', null, false, null, false, {}, {}],
|
|
1152
|
+
[
|
|
1153
|
+
'retrieve',
|
|
1154
|
+
'GET',
|
|
1155
|
+
'/promotional_credits',
|
|
1156
|
+
null,
|
|
1157
|
+
true,
|
|
1158
|
+
null,
|
|
1159
|
+
false,
|
|
1160
|
+
{},
|
|
1161
|
+
{},
|
|
1162
|
+
],
|
|
1163
|
+
],
|
|
802
1164
|
invoice: [
|
|
803
1165
|
[
|
|
804
1166
|
'create',
|
|
@@ -812,6 +1174,9 @@ export const Endpoints = {
|
|
|
812
1174
|
additional_information: 1,
|
|
813
1175
|
billing_address: 1,
|
|
814
1176
|
},
|
|
1177
|
+
{
|
|
1178
|
+
isIdempotent: true,
|
|
1179
|
+
},
|
|
815
1180
|
],
|
|
816
1181
|
[
|
|
817
1182
|
'createForChargeItemsAndCharges',
|
|
@@ -825,8 +1190,23 @@ export const Endpoints = {
|
|
|
825
1190
|
additional_information: 1,
|
|
826
1191
|
billing_address: 1,
|
|
827
1192
|
},
|
|
1193
|
+
{
|
|
1194
|
+
isIdempotent: true,
|
|
1195
|
+
},
|
|
1196
|
+
],
|
|
1197
|
+
[
|
|
1198
|
+
'charge',
|
|
1199
|
+
'POST',
|
|
1200
|
+
'/invoices',
|
|
1201
|
+
'/charge',
|
|
1202
|
+
false,
|
|
1203
|
+
null,
|
|
1204
|
+
false,
|
|
1205
|
+
{},
|
|
1206
|
+
{
|
|
1207
|
+
isIdempotent: true,
|
|
1208
|
+
},
|
|
828
1209
|
],
|
|
829
|
-
['charge', 'POST', '/invoices', '/charge', false, null, false, {}],
|
|
830
1210
|
[
|
|
831
1211
|
'chargeAddon',
|
|
832
1212
|
'POST',
|
|
@@ -836,6 +1216,9 @@ export const Endpoints = {
|
|
|
836
1216
|
null,
|
|
837
1217
|
false,
|
|
838
1218
|
{},
|
|
1219
|
+
{
|
|
1220
|
+
isIdempotent: true,
|
|
1221
|
+
},
|
|
839
1222
|
],
|
|
840
1223
|
[
|
|
841
1224
|
'createForChargeItem',
|
|
@@ -846,6 +1229,9 @@ export const Endpoints = {
|
|
|
846
1229
|
null,
|
|
847
1230
|
false,
|
|
848
1231
|
{},
|
|
1232
|
+
{
|
|
1233
|
+
isIdempotent: true,
|
|
1234
|
+
},
|
|
849
1235
|
],
|
|
850
1236
|
[
|
|
851
1237
|
'stopDunning',
|
|
@@ -856,6 +1242,35 @@ export const Endpoints = {
|
|
|
856
1242
|
null,
|
|
857
1243
|
false,
|
|
858
1244
|
{},
|
|
1245
|
+
{
|
|
1246
|
+
isIdempotent: true,
|
|
1247
|
+
},
|
|
1248
|
+
],
|
|
1249
|
+
[
|
|
1250
|
+
'pauseDunning',
|
|
1251
|
+
'POST',
|
|
1252
|
+
'/invoices',
|
|
1253
|
+
'/pause_dunning',
|
|
1254
|
+
true,
|
|
1255
|
+
null,
|
|
1256
|
+
false,
|
|
1257
|
+
{},
|
|
1258
|
+
{
|
|
1259
|
+
isIdempotent: true,
|
|
1260
|
+
},
|
|
1261
|
+
],
|
|
1262
|
+
[
|
|
1263
|
+
'resumeDunning',
|
|
1264
|
+
'POST',
|
|
1265
|
+
'/invoices',
|
|
1266
|
+
'/resume_dunning',
|
|
1267
|
+
true,
|
|
1268
|
+
null,
|
|
1269
|
+
false,
|
|
1270
|
+
{},
|
|
1271
|
+
{
|
|
1272
|
+
isIdempotent: true,
|
|
1273
|
+
},
|
|
859
1274
|
],
|
|
860
1275
|
[
|
|
861
1276
|
'importInvoice',
|
|
@@ -866,6 +1281,9 @@ export const Endpoints = {
|
|
|
866
1281
|
null,
|
|
867
1282
|
false,
|
|
868
1283
|
{},
|
|
1284
|
+
{
|
|
1285
|
+
isIdempotent: true,
|
|
1286
|
+
},
|
|
869
1287
|
],
|
|
870
1288
|
[
|
|
871
1289
|
'applyPayments',
|
|
@@ -876,8 +1294,23 @@ export const Endpoints = {
|
|
|
876
1294
|
null,
|
|
877
1295
|
false,
|
|
878
1296
|
{},
|
|
1297
|
+
{
|
|
1298
|
+
isIdempotent: true,
|
|
1299
|
+
},
|
|
1300
|
+
],
|
|
1301
|
+
[
|
|
1302
|
+
'syncUsages',
|
|
1303
|
+
'POST',
|
|
1304
|
+
'/invoices',
|
|
1305
|
+
'/sync_usages',
|
|
1306
|
+
true,
|
|
1307
|
+
null,
|
|
1308
|
+
false,
|
|
1309
|
+
{},
|
|
1310
|
+
{
|
|
1311
|
+
isIdempotent: true,
|
|
1312
|
+
},
|
|
879
1313
|
],
|
|
880
|
-
['syncUsages', 'POST', '/invoices', '/sync_usages', true, null, false, {}],
|
|
881
1314
|
[
|
|
882
1315
|
'deleteLineItems',
|
|
883
1316
|
'POST',
|
|
@@ -887,6 +1320,9 @@ export const Endpoints = {
|
|
|
887
1320
|
null,
|
|
888
1321
|
false,
|
|
889
1322
|
{},
|
|
1323
|
+
{
|
|
1324
|
+
isIdempotent: true,
|
|
1325
|
+
},
|
|
890
1326
|
],
|
|
891
1327
|
[
|
|
892
1328
|
'applyCredits',
|
|
@@ -897,8 +1333,11 @@ export const Endpoints = {
|
|
|
897
1333
|
null,
|
|
898
1334
|
false,
|
|
899
1335
|
{},
|
|
1336
|
+
{
|
|
1337
|
+
isIdempotent: true,
|
|
1338
|
+
},
|
|
900
1339
|
],
|
|
901
|
-
['list', 'GET', '/invoices', null, false, null, false, {}],
|
|
1340
|
+
['list', 'GET', '/invoices', null, false, null, false, {}, {}],
|
|
902
1341
|
[
|
|
903
1342
|
'invoicesForCustomer',
|
|
904
1343
|
'GET',
|
|
@@ -908,6 +1347,7 @@ export const Endpoints = {
|
|
|
908
1347
|
null,
|
|
909
1348
|
false,
|
|
910
1349
|
{},
|
|
1350
|
+
{},
|
|
911
1351
|
],
|
|
912
1352
|
[
|
|
913
1353
|
'invoicesForSubscription',
|
|
@@ -918,9 +1358,22 @@ export const Endpoints = {
|
|
|
918
1358
|
null,
|
|
919
1359
|
false,
|
|
920
1360
|
{},
|
|
1361
|
+
{},
|
|
1362
|
+
],
|
|
1363
|
+
['retrieve', 'GET', '/invoices', null, true, null, false, {}, {}],
|
|
1364
|
+
[
|
|
1365
|
+
'pdf',
|
|
1366
|
+
'POST',
|
|
1367
|
+
'/invoices',
|
|
1368
|
+
'/pdf',
|
|
1369
|
+
true,
|
|
1370
|
+
null,
|
|
1371
|
+
false,
|
|
1372
|
+
{},
|
|
1373
|
+
{
|
|
1374
|
+
isIdempotent: true,
|
|
1375
|
+
},
|
|
921
1376
|
],
|
|
922
|
-
['retrieve', 'GET', '/invoices', null, true, null, false, {}],
|
|
923
|
-
['pdf', 'POST', '/invoices', '/pdf', true, null, false, {}],
|
|
924
1377
|
[
|
|
925
1378
|
'downloadEinvoice',
|
|
926
1379
|
'GET',
|
|
@@ -930,6 +1383,7 @@ export const Endpoints = {
|
|
|
930
1383
|
null,
|
|
931
1384
|
false,
|
|
932
1385
|
{},
|
|
1386
|
+
{},
|
|
933
1387
|
],
|
|
934
1388
|
[
|
|
935
1389
|
'listPaymentReferenceNumbers',
|
|
@@ -940,8 +1394,21 @@ export const Endpoints = {
|
|
|
940
1394
|
null,
|
|
941
1395
|
false,
|
|
942
1396
|
{},
|
|
1397
|
+
{},
|
|
1398
|
+
],
|
|
1399
|
+
[
|
|
1400
|
+
'addCharge',
|
|
1401
|
+
'POST',
|
|
1402
|
+
'/invoices',
|
|
1403
|
+
'/add_charge',
|
|
1404
|
+
true,
|
|
1405
|
+
null,
|
|
1406
|
+
false,
|
|
1407
|
+
{},
|
|
1408
|
+
{
|
|
1409
|
+
isIdempotent: true,
|
|
1410
|
+
},
|
|
943
1411
|
],
|
|
944
|
-
['addCharge', 'POST', '/invoices', '/add_charge', true, null, false, {}],
|
|
945
1412
|
[
|
|
946
1413
|
'addAddonCharge',
|
|
947
1414
|
'POST',
|
|
@@ -951,6 +1418,9 @@ export const Endpoints = {
|
|
|
951
1418
|
null,
|
|
952
1419
|
false,
|
|
953
1420
|
{},
|
|
1421
|
+
{
|
|
1422
|
+
isIdempotent: true,
|
|
1423
|
+
},
|
|
954
1424
|
],
|
|
955
1425
|
[
|
|
956
1426
|
'addChargeItem',
|
|
@@ -961,8 +1431,23 @@ export const Endpoints = {
|
|
|
961
1431
|
null,
|
|
962
1432
|
false,
|
|
963
1433
|
{},
|
|
1434
|
+
{
|
|
1435
|
+
isIdempotent: true,
|
|
1436
|
+
},
|
|
1437
|
+
],
|
|
1438
|
+
[
|
|
1439
|
+
'close',
|
|
1440
|
+
'POST',
|
|
1441
|
+
'/invoices',
|
|
1442
|
+
'/close',
|
|
1443
|
+
true,
|
|
1444
|
+
null,
|
|
1445
|
+
false,
|
|
1446
|
+
{},
|
|
1447
|
+
{
|
|
1448
|
+
isIdempotent: true,
|
|
1449
|
+
},
|
|
964
1450
|
],
|
|
965
|
-
['close', 'POST', '/invoices', '/close', true, null, false, {}],
|
|
966
1451
|
[
|
|
967
1452
|
'collectPayment',
|
|
968
1453
|
'POST',
|
|
@@ -972,6 +1457,9 @@ export const Endpoints = {
|
|
|
972
1457
|
null,
|
|
973
1458
|
false,
|
|
974
1459
|
{},
|
|
1460
|
+
{
|
|
1461
|
+
isIdempotent: true,
|
|
1462
|
+
},
|
|
975
1463
|
],
|
|
976
1464
|
[
|
|
977
1465
|
'recordPayment',
|
|
@@ -982,6 +1470,9 @@ export const Endpoints = {
|
|
|
982
1470
|
null,
|
|
983
1471
|
false,
|
|
984
1472
|
{},
|
|
1473
|
+
{
|
|
1474
|
+
isIdempotent: true,
|
|
1475
|
+
},
|
|
985
1476
|
],
|
|
986
1477
|
[
|
|
987
1478
|
'recordTaxWithheld',
|
|
@@ -992,6 +1483,9 @@ export const Endpoints = {
|
|
|
992
1483
|
null,
|
|
993
1484
|
false,
|
|
994
1485
|
{},
|
|
1486
|
+
{
|
|
1487
|
+
isIdempotent: true,
|
|
1488
|
+
},
|
|
995
1489
|
],
|
|
996
1490
|
[
|
|
997
1491
|
'removeTaxWithheld',
|
|
@@ -1002,8 +1496,23 @@ export const Endpoints = {
|
|
|
1002
1496
|
null,
|
|
1003
1497
|
false,
|
|
1004
1498
|
{},
|
|
1499
|
+
{
|
|
1500
|
+
isIdempotent: true,
|
|
1501
|
+
},
|
|
1502
|
+
],
|
|
1503
|
+
[
|
|
1504
|
+
'refund',
|
|
1505
|
+
'POST',
|
|
1506
|
+
'/invoices',
|
|
1507
|
+
'/refund',
|
|
1508
|
+
true,
|
|
1509
|
+
null,
|
|
1510
|
+
false,
|
|
1511
|
+
{},
|
|
1512
|
+
{
|
|
1513
|
+
isIdempotent: true,
|
|
1514
|
+
},
|
|
1005
1515
|
],
|
|
1006
|
-
['refund', 'POST', '/invoices', '/refund', true, null, false, {}],
|
|
1007
1516
|
[
|
|
1008
1517
|
'recordRefund',
|
|
1009
1518
|
'POST',
|
|
@@ -1013,6 +1522,9 @@ export const Endpoints = {
|
|
|
1013
1522
|
null,
|
|
1014
1523
|
false,
|
|
1015
1524
|
{},
|
|
1525
|
+
{
|
|
1526
|
+
isIdempotent: true,
|
|
1527
|
+
},
|
|
1016
1528
|
],
|
|
1017
1529
|
[
|
|
1018
1530
|
'removePayment',
|
|
@@ -1023,6 +1535,9 @@ export const Endpoints = {
|
|
|
1023
1535
|
null,
|
|
1024
1536
|
false,
|
|
1025
1537
|
{},
|
|
1538
|
+
{
|
|
1539
|
+
isIdempotent: true,
|
|
1540
|
+
},
|
|
1026
1541
|
],
|
|
1027
1542
|
[
|
|
1028
1543
|
'removeCreditNote',
|
|
@@ -1033,10 +1548,49 @@ export const Endpoints = {
|
|
|
1033
1548
|
null,
|
|
1034
1549
|
false,
|
|
1035
1550
|
{},
|
|
1551
|
+
{
|
|
1552
|
+
isIdempotent: true,
|
|
1553
|
+
},
|
|
1554
|
+
],
|
|
1555
|
+
[
|
|
1556
|
+
'voidInvoice',
|
|
1557
|
+
'POST',
|
|
1558
|
+
'/invoices',
|
|
1559
|
+
'/void',
|
|
1560
|
+
true,
|
|
1561
|
+
null,
|
|
1562
|
+
false,
|
|
1563
|
+
{},
|
|
1564
|
+
{
|
|
1565
|
+
isIdempotent: true,
|
|
1566
|
+
},
|
|
1567
|
+
],
|
|
1568
|
+
[
|
|
1569
|
+
'writeOff',
|
|
1570
|
+
'POST',
|
|
1571
|
+
'/invoices',
|
|
1572
|
+
'/write_off',
|
|
1573
|
+
true,
|
|
1574
|
+
null,
|
|
1575
|
+
false,
|
|
1576
|
+
{},
|
|
1577
|
+
{
|
|
1578
|
+
isIdempotent: true,
|
|
1579
|
+
},
|
|
1580
|
+
],
|
|
1581
|
+
[
|
|
1582
|
+
'delete',
|
|
1583
|
+
'POST',
|
|
1584
|
+
'/invoices',
|
|
1585
|
+
'/delete',
|
|
1586
|
+
true,
|
|
1587
|
+
null,
|
|
1588
|
+
false,
|
|
1589
|
+
{},
|
|
1590
|
+
{
|
|
1591
|
+
isIdempotent: true,
|
|
1592
|
+
},
|
|
1036
1593
|
],
|
|
1037
|
-
['voidInvoice', 'POST', '/invoices', '/void', true, null, false, {}],
|
|
1038
|
-
['writeOff', 'POST', '/invoices', '/write_off', true, null, false, {}],
|
|
1039
|
-
['delete', 'POST', '/invoices', '/delete', true, null, false, {}],
|
|
1040
1594
|
[
|
|
1041
1595
|
'updateDetails',
|
|
1042
1596
|
'POST',
|
|
@@ -1046,6 +1600,9 @@ export const Endpoints = {
|
|
|
1046
1600
|
null,
|
|
1047
1601
|
false,
|
|
1048
1602
|
{},
|
|
1603
|
+
{
|
|
1604
|
+
isIdempotent: true,
|
|
1605
|
+
},
|
|
1049
1606
|
],
|
|
1050
1607
|
[
|
|
1051
1608
|
'applyPaymentScheduleScheme',
|
|
@@ -1056,6 +1613,9 @@ export const Endpoints = {
|
|
|
1056
1613
|
null,
|
|
1057
1614
|
false,
|
|
1058
1615
|
{},
|
|
1616
|
+
{
|
|
1617
|
+
isIdempotent: true,
|
|
1618
|
+
},
|
|
1059
1619
|
],
|
|
1060
1620
|
[
|
|
1061
1621
|
'paymentSchedules',
|
|
@@ -1066,6 +1626,7 @@ export const Endpoints = {
|
|
|
1066
1626
|
null,
|
|
1067
1627
|
false,
|
|
1068
1628
|
{},
|
|
1629
|
+
{},
|
|
1069
1630
|
],
|
|
1070
1631
|
[
|
|
1071
1632
|
'resendEinvoice',
|
|
@@ -1076,6 +1637,9 @@ export const Endpoints = {
|
|
|
1076
1637
|
null,
|
|
1077
1638
|
false,
|
|
1078
1639
|
{},
|
|
1640
|
+
{
|
|
1641
|
+
isIdempotent: true,
|
|
1642
|
+
},
|
|
1079
1643
|
],
|
|
1080
1644
|
[
|
|
1081
1645
|
'sendEinvoice',
|
|
@@ -1086,114 +1650,224 @@ export const Endpoints = {
|
|
|
1086
1650
|
null,
|
|
1087
1651
|
false,
|
|
1088
1652
|
{},
|
|
1653
|
+
{
|
|
1654
|
+
isIdempotent: true,
|
|
1655
|
+
},
|
|
1089
1656
|
],
|
|
1090
1657
|
],
|
|
1091
1658
|
paymentReferenceNumber: [],
|
|
1092
1659
|
paymentSchedule: [],
|
|
1093
1660
|
taxWithheld: [],
|
|
1094
1661
|
creditNote: [
|
|
1095
|
-
['create', 'POST', '/credit_notes', null, false, null, false, {}],
|
|
1096
|
-
['retrieve', 'GET', '/credit_notes', null, true, null, false, {}],
|
|
1097
|
-
['pdf', 'POST', '/credit_notes', '/pdf', true, null, false, {}],
|
|
1098
1662
|
[
|
|
1099
|
-
'
|
|
1100
|
-
'
|
|
1663
|
+
'create',
|
|
1664
|
+
'POST',
|
|
1101
1665
|
'/credit_notes',
|
|
1102
|
-
|
|
1103
|
-
|
|
1666
|
+
null,
|
|
1667
|
+
false,
|
|
1104
1668
|
null,
|
|
1105
1669
|
false,
|
|
1106
1670
|
{},
|
|
1671
|
+
{
|
|
1672
|
+
isIdempotent: true,
|
|
1673
|
+
},
|
|
1107
1674
|
],
|
|
1108
|
-
['
|
|
1675
|
+
['retrieve', 'GET', '/credit_notes', null, true, null, false, {}, {}],
|
|
1109
1676
|
[
|
|
1110
|
-
'
|
|
1677
|
+
'pdf',
|
|
1111
1678
|
'POST',
|
|
1112
1679
|
'/credit_notes',
|
|
1113
|
-
'/
|
|
1680
|
+
'/pdf',
|
|
1114
1681
|
true,
|
|
1115
1682
|
null,
|
|
1116
1683
|
false,
|
|
1117
1684
|
{},
|
|
1685
|
+
{
|
|
1686
|
+
isIdempotent: true,
|
|
1687
|
+
},
|
|
1118
1688
|
],
|
|
1119
|
-
['voidCreditNote', 'POST', '/credit_notes', '/void', true, null, false, {}],
|
|
1120
|
-
['list', 'GET', '/credit_notes', null, false, null, false, {}],
|
|
1121
1689
|
[
|
|
1122
|
-
'
|
|
1690
|
+
'downloadEinvoice',
|
|
1123
1691
|
'GET',
|
|
1124
|
-
'/customers',
|
|
1125
1692
|
'/credit_notes',
|
|
1693
|
+
'/download_einvoice',
|
|
1126
1694
|
true,
|
|
1127
1695
|
null,
|
|
1128
1696
|
false,
|
|
1129
1697
|
{},
|
|
1698
|
+
{},
|
|
1130
1699
|
],
|
|
1131
|
-
['delete', 'POST', '/credit_notes', '/delete', true, null, false, {}],
|
|
1132
1700
|
[
|
|
1133
|
-
'
|
|
1701
|
+
'refund',
|
|
1134
1702
|
'POST',
|
|
1135
1703
|
'/credit_notes',
|
|
1136
|
-
'/
|
|
1704
|
+
'/refund',
|
|
1137
1705
|
true,
|
|
1138
1706
|
null,
|
|
1139
1707
|
false,
|
|
1140
1708
|
{},
|
|
1709
|
+
{
|
|
1710
|
+
isIdempotent: true,
|
|
1711
|
+
},
|
|
1141
1712
|
],
|
|
1142
1713
|
[
|
|
1143
|
-
'
|
|
1714
|
+
'recordRefund',
|
|
1144
1715
|
'POST',
|
|
1145
1716
|
'/credit_notes',
|
|
1146
|
-
'/
|
|
1717
|
+
'/record_refund',
|
|
1147
1718
|
true,
|
|
1148
1719
|
null,
|
|
1149
1720
|
false,
|
|
1150
1721
|
{},
|
|
1722
|
+
{
|
|
1723
|
+
isIdempotent: true,
|
|
1724
|
+
},
|
|
1151
1725
|
],
|
|
1152
1726
|
[
|
|
1153
|
-
'
|
|
1727
|
+
'voidCreditNote',
|
|
1154
1728
|
'POST',
|
|
1155
1729
|
'/credit_notes',
|
|
1156
|
-
'/
|
|
1730
|
+
'/void',
|
|
1157
1731
|
true,
|
|
1158
1732
|
null,
|
|
1159
1733
|
false,
|
|
1160
1734
|
{},
|
|
1735
|
+
{
|
|
1736
|
+
isIdempotent: true,
|
|
1737
|
+
},
|
|
1161
1738
|
],
|
|
1739
|
+
['list', 'GET', '/credit_notes', null, false, null, false, {}, {}],
|
|
1162
1740
|
[
|
|
1163
|
-
'
|
|
1164
|
-
'
|
|
1741
|
+
'creditNotesForCustomer',
|
|
1742
|
+
'GET',
|
|
1743
|
+
'/customers',
|
|
1165
1744
|
'/credit_notes',
|
|
1166
|
-
|
|
1167
|
-
false,
|
|
1745
|
+
true,
|
|
1168
1746
|
null,
|
|
1169
1747
|
false,
|
|
1170
1748
|
{},
|
|
1749
|
+
{},
|
|
1171
1750
|
],
|
|
1172
|
-
],
|
|
1173
|
-
unbilledCharge: [
|
|
1174
1751
|
[
|
|
1175
|
-
'
|
|
1752
|
+
'delete',
|
|
1176
1753
|
'POST',
|
|
1177
|
-
'/
|
|
1178
|
-
'/
|
|
1179
|
-
|
|
1754
|
+
'/credit_notes',
|
|
1755
|
+
'/delete',
|
|
1756
|
+
true,
|
|
1180
1757
|
null,
|
|
1181
1758
|
false,
|
|
1182
1759
|
{},
|
|
1760
|
+
{
|
|
1761
|
+
isIdempotent: true,
|
|
1762
|
+
},
|
|
1183
1763
|
],
|
|
1184
|
-
['create', 'POST', '/unbilled_charges', null, false, null, false, {}],
|
|
1185
1764
|
[
|
|
1186
|
-
'
|
|
1765
|
+
'removeTaxWithheldRefund',
|
|
1187
1766
|
'POST',
|
|
1188
|
-
'/
|
|
1189
|
-
'/
|
|
1190
|
-
|
|
1767
|
+
'/credit_notes',
|
|
1768
|
+
'/remove_tax_withheld_refund',
|
|
1769
|
+
true,
|
|
1770
|
+
null,
|
|
1771
|
+
false,
|
|
1772
|
+
{},
|
|
1773
|
+
{
|
|
1774
|
+
isIdempotent: true,
|
|
1775
|
+
},
|
|
1776
|
+
],
|
|
1777
|
+
[
|
|
1778
|
+
'resendEinvoice',
|
|
1779
|
+
'POST',
|
|
1780
|
+
'/credit_notes',
|
|
1781
|
+
'/resend_einvoice',
|
|
1782
|
+
true,
|
|
1783
|
+
null,
|
|
1784
|
+
false,
|
|
1785
|
+
{},
|
|
1786
|
+
{
|
|
1787
|
+
isIdempotent: true,
|
|
1788
|
+
},
|
|
1789
|
+
],
|
|
1790
|
+
[
|
|
1791
|
+
'sendEinvoice',
|
|
1792
|
+
'POST',
|
|
1793
|
+
'/credit_notes',
|
|
1794
|
+
'/send_einvoice',
|
|
1795
|
+
true,
|
|
1796
|
+
null,
|
|
1797
|
+
false,
|
|
1798
|
+
{},
|
|
1799
|
+
{
|
|
1800
|
+
isIdempotent: true,
|
|
1801
|
+
},
|
|
1802
|
+
],
|
|
1803
|
+
[
|
|
1804
|
+
'importCreditNote',
|
|
1805
|
+
'POST',
|
|
1806
|
+
'/credit_notes',
|
|
1807
|
+
'/import_credit_note',
|
|
1808
|
+
false,
|
|
1809
|
+
null,
|
|
1810
|
+
false,
|
|
1811
|
+
{},
|
|
1812
|
+
{
|
|
1813
|
+
isIdempotent: true,
|
|
1814
|
+
},
|
|
1815
|
+
],
|
|
1816
|
+
],
|
|
1817
|
+
unbilledCharge: [
|
|
1818
|
+
[
|
|
1819
|
+
'createUnbilledCharge',
|
|
1820
|
+
'POST',
|
|
1821
|
+
'/unbilled_charges',
|
|
1822
|
+
'/create',
|
|
1823
|
+
false,
|
|
1824
|
+
null,
|
|
1825
|
+
false,
|
|
1826
|
+
{},
|
|
1827
|
+
{
|
|
1828
|
+
isIdempotent: true,
|
|
1829
|
+
},
|
|
1830
|
+
],
|
|
1831
|
+
[
|
|
1832
|
+
'create',
|
|
1833
|
+
'POST',
|
|
1834
|
+
'/unbilled_charges',
|
|
1835
|
+
null,
|
|
1836
|
+
false,
|
|
1837
|
+
null,
|
|
1838
|
+
false,
|
|
1839
|
+
{},
|
|
1840
|
+
{
|
|
1841
|
+
isIdempotent: true,
|
|
1842
|
+
},
|
|
1843
|
+
],
|
|
1844
|
+
[
|
|
1845
|
+
'invoiceUnbilledCharges',
|
|
1846
|
+
'POST',
|
|
1847
|
+
'/unbilled_charges',
|
|
1848
|
+
'/invoice_unbilled_charges',
|
|
1849
|
+
false,
|
|
1850
|
+
null,
|
|
1851
|
+
false,
|
|
1852
|
+
{},
|
|
1853
|
+
{
|
|
1854
|
+
isIdempotent: true,
|
|
1855
|
+
},
|
|
1856
|
+
],
|
|
1857
|
+
[
|
|
1858
|
+
'delete',
|
|
1859
|
+
'POST',
|
|
1860
|
+
'/unbilled_charges',
|
|
1861
|
+
'/delete',
|
|
1862
|
+
true,
|
|
1191
1863
|
null,
|
|
1192
1864
|
false,
|
|
1193
1865
|
{},
|
|
1866
|
+
{
|
|
1867
|
+
isIdempotent: true,
|
|
1868
|
+
},
|
|
1194
1869
|
],
|
|
1195
|
-
['
|
|
1196
|
-
['list', 'GET', '/unbilled_charges', null, false, null, false, {}],
|
|
1870
|
+
['list', 'GET', '/unbilled_charges', null, false, null, false, {}, {}],
|
|
1197
1871
|
[
|
|
1198
1872
|
'invoiceNowEstimate',
|
|
1199
1873
|
'POST',
|
|
@@ -1203,12 +1877,49 @@ export const Endpoints = {
|
|
|
1203
1877
|
null,
|
|
1204
1878
|
false,
|
|
1205
1879
|
{},
|
|
1880
|
+
{},
|
|
1206
1881
|
],
|
|
1207
1882
|
],
|
|
1208
1883
|
order: [
|
|
1209
|
-
[
|
|
1210
|
-
|
|
1211
|
-
|
|
1884
|
+
[
|
|
1885
|
+
'create',
|
|
1886
|
+
'POST',
|
|
1887
|
+
'/orders',
|
|
1888
|
+
null,
|
|
1889
|
+
false,
|
|
1890
|
+
null,
|
|
1891
|
+
false,
|
|
1892
|
+
{},
|
|
1893
|
+
{
|
|
1894
|
+
isIdempotent: true,
|
|
1895
|
+
},
|
|
1896
|
+
],
|
|
1897
|
+
[
|
|
1898
|
+
'update',
|
|
1899
|
+
'POST',
|
|
1900
|
+
'/orders',
|
|
1901
|
+
null,
|
|
1902
|
+
true,
|
|
1903
|
+
null,
|
|
1904
|
+
false,
|
|
1905
|
+
{},
|
|
1906
|
+
{
|
|
1907
|
+
isIdempotent: true,
|
|
1908
|
+
},
|
|
1909
|
+
],
|
|
1910
|
+
[
|
|
1911
|
+
'importOrder',
|
|
1912
|
+
'POST',
|
|
1913
|
+
'/orders',
|
|
1914
|
+
'/import_order',
|
|
1915
|
+
false,
|
|
1916
|
+
null,
|
|
1917
|
+
false,
|
|
1918
|
+
{},
|
|
1919
|
+
{
|
|
1920
|
+
isIdempotent: true,
|
|
1921
|
+
},
|
|
1922
|
+
],
|
|
1212
1923
|
[
|
|
1213
1924
|
'assignOrderNumber',
|
|
1214
1925
|
'POST',
|
|
@@ -1218,8 +1929,23 @@ export const Endpoints = {
|
|
|
1218
1929
|
null,
|
|
1219
1930
|
false,
|
|
1220
1931
|
{},
|
|
1932
|
+
{
|
|
1933
|
+
isIdempotent: true,
|
|
1934
|
+
},
|
|
1935
|
+
],
|
|
1936
|
+
[
|
|
1937
|
+
'cancel',
|
|
1938
|
+
'POST',
|
|
1939
|
+
'/orders',
|
|
1940
|
+
'/cancel',
|
|
1941
|
+
true,
|
|
1942
|
+
null,
|
|
1943
|
+
false,
|
|
1944
|
+
{},
|
|
1945
|
+
{
|
|
1946
|
+
isIdempotent: true,
|
|
1947
|
+
},
|
|
1221
1948
|
],
|
|
1222
|
-
['cancel', 'POST', '/orders', '/cancel', true, null, false, {}],
|
|
1223
1949
|
[
|
|
1224
1950
|
'createRefundableCreditNote',
|
|
1225
1951
|
'POST',
|
|
@@ -1229,13 +1955,62 @@ export const Endpoints = {
|
|
|
1229
1955
|
null,
|
|
1230
1956
|
false,
|
|
1231
1957
|
{},
|
|
1958
|
+
{
|
|
1959
|
+
isIdempotent: true,
|
|
1960
|
+
},
|
|
1961
|
+
],
|
|
1962
|
+
[
|
|
1963
|
+
'reopen',
|
|
1964
|
+
'POST',
|
|
1965
|
+
'/orders',
|
|
1966
|
+
'/reopen',
|
|
1967
|
+
true,
|
|
1968
|
+
null,
|
|
1969
|
+
false,
|
|
1970
|
+
{},
|
|
1971
|
+
{
|
|
1972
|
+
isIdempotent: true,
|
|
1973
|
+
},
|
|
1974
|
+
],
|
|
1975
|
+
['retrieve', 'GET', '/orders', null, true, null, false, {}, {}],
|
|
1976
|
+
[
|
|
1977
|
+
'delete',
|
|
1978
|
+
'POST',
|
|
1979
|
+
'/orders',
|
|
1980
|
+
'/delete',
|
|
1981
|
+
true,
|
|
1982
|
+
null,
|
|
1983
|
+
false,
|
|
1984
|
+
{},
|
|
1985
|
+
{
|
|
1986
|
+
isIdempotent: true,
|
|
1987
|
+
},
|
|
1988
|
+
],
|
|
1989
|
+
['list', 'GET', '/orders', null, false, null, false, {}, {}],
|
|
1990
|
+
[
|
|
1991
|
+
'ordersForInvoice',
|
|
1992
|
+
'GET',
|
|
1993
|
+
'/invoices',
|
|
1994
|
+
'/orders',
|
|
1995
|
+
true,
|
|
1996
|
+
null,
|
|
1997
|
+
false,
|
|
1998
|
+
{},
|
|
1999
|
+
{},
|
|
2000
|
+
],
|
|
2001
|
+
[
|
|
2002
|
+
'resend',
|
|
2003
|
+
'POST',
|
|
2004
|
+
'/orders',
|
|
2005
|
+
'/resend',
|
|
2006
|
+
true,
|
|
2007
|
+
null,
|
|
2008
|
+
false,
|
|
2009
|
+
{},
|
|
2010
|
+
{
|
|
2011
|
+
isIdempotent: true,
|
|
2012
|
+
},
|
|
1232
2013
|
],
|
|
1233
|
-
['reopen', 'POST', '/orders', '/reopen', true, null, false, {}],
|
|
1234
|
-
['retrieve', 'GET', '/orders', null, true, null, false, {}],
|
|
1235
|
-
['delete', 'POST', '/orders', '/delete', true, null, false, {}],
|
|
1236
|
-
['list', 'GET', '/orders', null, false, null, false, {}],
|
|
1237
|
-
['ordersForInvoice', 'GET', '/invoices', '/orders', true, null, false, {}],
|
|
1238
|
-
['resend', 'POST', '/orders', '/resend', true, null, false, {}],
|
|
1239
2014
|
],
|
|
1240
2015
|
gift: [
|
|
1241
2016
|
[
|
|
@@ -1249,6 +2024,9 @@ export const Endpoints = {
|
|
|
1249
2024
|
{
|
|
1250
2025
|
additional_information: 1,
|
|
1251
2026
|
},
|
|
2027
|
+
{
|
|
2028
|
+
isIdempotent: true,
|
|
2029
|
+
},
|
|
1252
2030
|
],
|
|
1253
2031
|
[
|
|
1254
2032
|
'createForItems',
|
|
@@ -1261,12 +2039,51 @@ export const Endpoints = {
|
|
|
1261
2039
|
{
|
|
1262
2040
|
additional_information: 1,
|
|
1263
2041
|
},
|
|
2042
|
+
{
|
|
2043
|
+
isIdempotent: true,
|
|
2044
|
+
},
|
|
2045
|
+
],
|
|
2046
|
+
['retrieve', 'GET', '/gifts', null, true, null, false, {}, {}],
|
|
2047
|
+
['list', 'GET', '/gifts', null, false, null, false, {}, {}],
|
|
2048
|
+
[
|
|
2049
|
+
'claim',
|
|
2050
|
+
'POST',
|
|
2051
|
+
'/gifts',
|
|
2052
|
+
'/claim',
|
|
2053
|
+
true,
|
|
2054
|
+
null,
|
|
2055
|
+
false,
|
|
2056
|
+
{},
|
|
2057
|
+
{
|
|
2058
|
+
isIdempotent: true,
|
|
2059
|
+
},
|
|
2060
|
+
],
|
|
2061
|
+
[
|
|
2062
|
+
'cancel',
|
|
2063
|
+
'POST',
|
|
2064
|
+
'/gifts',
|
|
2065
|
+
'/cancel',
|
|
2066
|
+
true,
|
|
2067
|
+
null,
|
|
2068
|
+
false,
|
|
2069
|
+
{},
|
|
2070
|
+
{
|
|
2071
|
+
isIdempotent: true,
|
|
2072
|
+
},
|
|
2073
|
+
],
|
|
2074
|
+
[
|
|
2075
|
+
'updateGift',
|
|
2076
|
+
'POST',
|
|
2077
|
+
'/gifts',
|
|
2078
|
+
'/update_gift',
|
|
2079
|
+
true,
|
|
2080
|
+
null,
|
|
2081
|
+
false,
|
|
2082
|
+
{},
|
|
2083
|
+
{
|
|
2084
|
+
isIdempotent: true,
|
|
2085
|
+
},
|
|
1264
2086
|
],
|
|
1265
|
-
['retrieve', 'GET', '/gifts', null, true, null, false, {}],
|
|
1266
|
-
['list', 'GET', '/gifts', null, false, null, false, {}],
|
|
1267
|
-
['claim', 'POST', '/gifts', '/claim', true, null, false, {}],
|
|
1268
|
-
['cancel', 'POST', '/gifts', '/cancel', true, null, false, {}],
|
|
1269
|
-
['updateGift', 'POST', '/gifts', '/update_gift', true, null, false, {}],
|
|
1270
2087
|
],
|
|
1271
2088
|
transaction: [
|
|
1272
2089
|
[
|
|
@@ -1278,6 +2095,9 @@ export const Endpoints = {
|
|
|
1278
2095
|
null,
|
|
1279
2096
|
false,
|
|
1280
2097
|
{},
|
|
2098
|
+
{
|
|
2099
|
+
isIdempotent: true,
|
|
2100
|
+
},
|
|
1281
2101
|
],
|
|
1282
2102
|
[
|
|
1283
2103
|
'voidTransaction',
|
|
@@ -1288,6 +2108,9 @@ export const Endpoints = {
|
|
|
1288
2108
|
null,
|
|
1289
2109
|
false,
|
|
1290
2110
|
{},
|
|
2111
|
+
{
|
|
2112
|
+
isIdempotent: true,
|
|
2113
|
+
},
|
|
1291
2114
|
],
|
|
1292
2115
|
[
|
|
1293
2116
|
'recordRefund',
|
|
@@ -1298,10 +2121,37 @@ export const Endpoints = {
|
|
|
1298
2121
|
null,
|
|
1299
2122
|
false,
|
|
1300
2123
|
{},
|
|
2124
|
+
{
|
|
2125
|
+
isIdempotent: true,
|
|
2126
|
+
},
|
|
2127
|
+
],
|
|
2128
|
+
[
|
|
2129
|
+
'reconcile',
|
|
2130
|
+
'POST',
|
|
2131
|
+
'/transactions',
|
|
2132
|
+
'/reconcile',
|
|
2133
|
+
true,
|
|
2134
|
+
null,
|
|
2135
|
+
false,
|
|
2136
|
+
{},
|
|
2137
|
+
{
|
|
2138
|
+
isIdempotent: true,
|
|
2139
|
+
},
|
|
2140
|
+
],
|
|
2141
|
+
[
|
|
2142
|
+
'refund',
|
|
2143
|
+
'POST',
|
|
2144
|
+
'/transactions',
|
|
2145
|
+
'/refund',
|
|
2146
|
+
true,
|
|
2147
|
+
null,
|
|
2148
|
+
false,
|
|
2149
|
+
{},
|
|
2150
|
+
{
|
|
2151
|
+
isIdempotent: true,
|
|
2152
|
+
},
|
|
1301
2153
|
],
|
|
1302
|
-
['
|
|
1303
|
-
['refund', 'POST', '/transactions', '/refund', true, null, false, {}],
|
|
1304
|
-
['list', 'GET', '/transactions', null, false, null, false, {}],
|
|
2154
|
+
['list', 'GET', '/transactions', null, false, null, false, {}, {}],
|
|
1305
2155
|
[
|
|
1306
2156
|
'transactionsForCustomer',
|
|
1307
2157
|
'GET',
|
|
@@ -1311,6 +2161,7 @@ export const Endpoints = {
|
|
|
1311
2161
|
null,
|
|
1312
2162
|
false,
|
|
1313
2163
|
{},
|
|
2164
|
+
{},
|
|
1314
2165
|
],
|
|
1315
2166
|
[
|
|
1316
2167
|
'transactionsForSubscription',
|
|
@@ -1321,6 +2172,7 @@ export const Endpoints = {
|
|
|
1321
2172
|
null,
|
|
1322
2173
|
false,
|
|
1323
2174
|
{},
|
|
2175
|
+
{},
|
|
1324
2176
|
],
|
|
1325
2177
|
[
|
|
1326
2178
|
'paymentsForInvoice',
|
|
@@ -1331,8 +2183,9 @@ export const Endpoints = {
|
|
|
1331
2183
|
null,
|
|
1332
2184
|
false,
|
|
1333
2185
|
{},
|
|
2186
|
+
{},
|
|
1334
2187
|
],
|
|
1335
|
-
['retrieve', 'GET', '/transactions', null, true, null, false, {}],
|
|
2188
|
+
['retrieve', 'GET', '/transactions', null, true, null, false, {}, {}],
|
|
1336
2189
|
[
|
|
1337
2190
|
'deleteOfflineTransaction',
|
|
1338
2191
|
'POST',
|
|
@@ -1342,6 +2195,9 @@ export const Endpoints = {
|
|
|
1342
2195
|
null,
|
|
1343
2196
|
false,
|
|
1344
2197
|
{},
|
|
2198
|
+
{
|
|
2199
|
+
isIdempotent: true,
|
|
2200
|
+
},
|
|
1345
2201
|
],
|
|
1346
2202
|
],
|
|
1347
2203
|
hostedPage: [
|
|
@@ -1354,6 +2210,9 @@ export const Endpoints = {
|
|
|
1354
2210
|
null,
|
|
1355
2211
|
false,
|
|
1356
2212
|
{},
|
|
2213
|
+
{
|
|
2214
|
+
isIdempotent: true,
|
|
2215
|
+
},
|
|
1357
2216
|
],
|
|
1358
2217
|
[
|
|
1359
2218
|
'checkoutOneTime',
|
|
@@ -1364,6 +2223,9 @@ export const Endpoints = {
|
|
|
1364
2223
|
null,
|
|
1365
2224
|
false,
|
|
1366
2225
|
{},
|
|
2226
|
+
{
|
|
2227
|
+
isIdempotent: true,
|
|
2228
|
+
},
|
|
1367
2229
|
],
|
|
1368
2230
|
[
|
|
1369
2231
|
'checkoutOneTimeForItems',
|
|
@@ -1374,6 +2236,9 @@ export const Endpoints = {
|
|
|
1374
2236
|
null,
|
|
1375
2237
|
false,
|
|
1376
2238
|
{},
|
|
2239
|
+
{
|
|
2240
|
+
isIdempotent: true,
|
|
2241
|
+
},
|
|
1377
2242
|
],
|
|
1378
2243
|
[
|
|
1379
2244
|
'checkoutNewForItems',
|
|
@@ -1384,6 +2249,9 @@ export const Endpoints = {
|
|
|
1384
2249
|
null,
|
|
1385
2250
|
false,
|
|
1386
2251
|
{},
|
|
2252
|
+
{
|
|
2253
|
+
isIdempotent: true,
|
|
2254
|
+
},
|
|
1387
2255
|
],
|
|
1388
2256
|
[
|
|
1389
2257
|
'checkoutExisting',
|
|
@@ -1394,7 +2262,10 @@ export const Endpoints = {
|
|
|
1394
2262
|
null,
|
|
1395
2263
|
false,
|
|
1396
2264
|
{},
|
|
1397
|
-
|
|
2265
|
+
{
|
|
2266
|
+
isIdempotent: true,
|
|
2267
|
+
},
|
|
2268
|
+
],
|
|
1398
2269
|
[
|
|
1399
2270
|
'checkoutExistingForItems',
|
|
1400
2271
|
'POST',
|
|
@@ -1404,6 +2275,9 @@ export const Endpoints = {
|
|
|
1404
2275
|
null,
|
|
1405
2276
|
false,
|
|
1406
2277
|
{},
|
|
2278
|
+
{
|
|
2279
|
+
isIdempotent: true,
|
|
2280
|
+
},
|
|
1407
2281
|
],
|
|
1408
2282
|
[
|
|
1409
2283
|
'updateCard',
|
|
@@ -1414,6 +2288,9 @@ export const Endpoints = {
|
|
|
1414
2288
|
null,
|
|
1415
2289
|
false,
|
|
1416
2290
|
{},
|
|
2291
|
+
{
|
|
2292
|
+
isIdempotent: true,
|
|
2293
|
+
},
|
|
1417
2294
|
],
|
|
1418
2295
|
[
|
|
1419
2296
|
'updatePaymentMethod',
|
|
@@ -1424,6 +2301,9 @@ export const Endpoints = {
|
|
|
1424
2301
|
null,
|
|
1425
2302
|
false,
|
|
1426
2303
|
{},
|
|
2304
|
+
{
|
|
2305
|
+
isIdempotent: true,
|
|
2306
|
+
},
|
|
1427
2307
|
],
|
|
1428
2308
|
[
|
|
1429
2309
|
'managePaymentSources',
|
|
@@ -1434,6 +2314,9 @@ export const Endpoints = {
|
|
|
1434
2314
|
null,
|
|
1435
2315
|
false,
|
|
1436
2316
|
{},
|
|
2317
|
+
{
|
|
2318
|
+
isIdempotent: true,
|
|
2319
|
+
},
|
|
1437
2320
|
],
|
|
1438
2321
|
[
|
|
1439
2322
|
'collectNow',
|
|
@@ -1444,6 +2327,9 @@ export const Endpoints = {
|
|
|
1444
2327
|
null,
|
|
1445
2328
|
false,
|
|
1446
2329
|
{},
|
|
2330
|
+
{
|
|
2331
|
+
isIdempotent: true,
|
|
2332
|
+
},
|
|
1447
2333
|
],
|
|
1448
2334
|
[
|
|
1449
2335
|
'acceptQuote',
|
|
@@ -1454,6 +2340,9 @@ export const Endpoints = {
|
|
|
1454
2340
|
null,
|
|
1455
2341
|
false,
|
|
1456
2342
|
{},
|
|
2343
|
+
{
|
|
2344
|
+
isIdempotent: true,
|
|
2345
|
+
},
|
|
1457
2346
|
],
|
|
1458
2347
|
[
|
|
1459
2348
|
'extendSubscription',
|
|
@@ -1464,6 +2353,9 @@ export const Endpoints = {
|
|
|
1464
2353
|
null,
|
|
1465
2354
|
false,
|
|
1466
2355
|
{},
|
|
2356
|
+
{
|
|
2357
|
+
isIdempotent: true,
|
|
2358
|
+
},
|
|
1467
2359
|
],
|
|
1468
2360
|
[
|
|
1469
2361
|
'checkoutGift',
|
|
@@ -1474,6 +2366,9 @@ export const Endpoints = {
|
|
|
1474
2366
|
null,
|
|
1475
2367
|
false,
|
|
1476
2368
|
{},
|
|
2369
|
+
{
|
|
2370
|
+
isIdempotent: true,
|
|
2371
|
+
},
|
|
1477
2372
|
],
|
|
1478
2373
|
[
|
|
1479
2374
|
'checkoutGiftForItems',
|
|
@@ -1484,6 +2379,9 @@ export const Endpoints = {
|
|
|
1484
2379
|
null,
|
|
1485
2380
|
false,
|
|
1486
2381
|
{},
|
|
2382
|
+
{
|
|
2383
|
+
isIdempotent: true,
|
|
2384
|
+
},
|
|
1487
2385
|
],
|
|
1488
2386
|
[
|
|
1489
2387
|
'claimGift',
|
|
@@ -1494,6 +2392,9 @@ export const Endpoints = {
|
|
|
1494
2392
|
null,
|
|
1495
2393
|
false,
|
|
1496
2394
|
{},
|
|
2395
|
+
{
|
|
2396
|
+
isIdempotent: true,
|
|
2397
|
+
},
|
|
1497
2398
|
],
|
|
1498
2399
|
[
|
|
1499
2400
|
'retrieveAgreementPdf',
|
|
@@ -1504,6 +2405,9 @@ export const Endpoints = {
|
|
|
1504
2405
|
null,
|
|
1505
2406
|
false,
|
|
1506
2407
|
{},
|
|
2408
|
+
{
|
|
2409
|
+
isIdempotent: true,
|
|
2410
|
+
},
|
|
1507
2411
|
],
|
|
1508
2412
|
[
|
|
1509
2413
|
'acknowledge',
|
|
@@ -1514,9 +2418,12 @@ export const Endpoints = {
|
|
|
1514
2418
|
null,
|
|
1515
2419
|
false,
|
|
1516
2420
|
{},
|
|
2421
|
+
{
|
|
2422
|
+
isIdempotent: true,
|
|
2423
|
+
},
|
|
1517
2424
|
],
|
|
1518
|
-
['retrieve', 'GET', '/hosted_pages', null, true, null, false, {}],
|
|
1519
|
-
['list', 'GET', '/hosted_pages', null, false, null, false, {}],
|
|
2425
|
+
['retrieve', 'GET', '/hosted_pages', null, true, null, false, {}, {}],
|
|
2426
|
+
['list', 'GET', '/hosted_pages', null, false, null, false, {}, {}],
|
|
1520
2427
|
[
|
|
1521
2428
|
'preCancel',
|
|
1522
2429
|
'POST',
|
|
@@ -1526,6 +2433,9 @@ export const Endpoints = {
|
|
|
1526
2433
|
null,
|
|
1527
2434
|
false,
|
|
1528
2435
|
{},
|
|
2436
|
+
{
|
|
2437
|
+
isIdempotent: true,
|
|
2438
|
+
},
|
|
1529
2439
|
],
|
|
1530
2440
|
[
|
|
1531
2441
|
'events',
|
|
@@ -1538,6 +2448,9 @@ export const Endpoints = {
|
|
|
1538
2448
|
{
|
|
1539
2449
|
event_data: 0,
|
|
1540
2450
|
},
|
|
2451
|
+
{
|
|
2452
|
+
isIdempotent: true,
|
|
2453
|
+
},
|
|
1541
2454
|
],
|
|
1542
2455
|
[
|
|
1543
2456
|
'viewVoucher',
|
|
@@ -1548,6 +2461,9 @@ export const Endpoints = {
|
|
|
1548
2461
|
null,
|
|
1549
2462
|
false,
|
|
1550
2463
|
{},
|
|
2464
|
+
{
|
|
2465
|
+
isIdempotent: true,
|
|
2466
|
+
},
|
|
1551
2467
|
],
|
|
1552
2468
|
],
|
|
1553
2469
|
estimate: [
|
|
@@ -1562,6 +2478,7 @@ export const Endpoints = {
|
|
|
1562
2478
|
{
|
|
1563
2479
|
exemption_details: 1,
|
|
1564
2480
|
},
|
|
2481
|
+
{},
|
|
1565
2482
|
],
|
|
1566
2483
|
[
|
|
1567
2484
|
'createSubItemEstimate',
|
|
@@ -1574,6 +2491,7 @@ export const Endpoints = {
|
|
|
1574
2491
|
{
|
|
1575
2492
|
exemption_details: 1,
|
|
1576
2493
|
},
|
|
2494
|
+
{},
|
|
1577
2495
|
],
|
|
1578
2496
|
[
|
|
1579
2497
|
'createSubForCustomerEstimate',
|
|
@@ -1584,6 +2502,7 @@ export const Endpoints = {
|
|
|
1584
2502
|
null,
|
|
1585
2503
|
false,
|
|
1586
2504
|
{},
|
|
2505
|
+
{},
|
|
1587
2506
|
],
|
|
1588
2507
|
[
|
|
1589
2508
|
'createSubItemForCustomerEstimate',
|
|
@@ -1594,6 +2513,7 @@ export const Endpoints = {
|
|
|
1594
2513
|
null,
|
|
1595
2514
|
false,
|
|
1596
2515
|
{},
|
|
2516
|
+
{},
|
|
1597
2517
|
],
|
|
1598
2518
|
[
|
|
1599
2519
|
'updateSubscription',
|
|
@@ -1604,6 +2524,7 @@ export const Endpoints = {
|
|
|
1604
2524
|
null,
|
|
1605
2525
|
false,
|
|
1606
2526
|
{},
|
|
2527
|
+
{},
|
|
1607
2528
|
],
|
|
1608
2529
|
[
|
|
1609
2530
|
'updateSubscriptionForItems',
|
|
@@ -1614,6 +2535,7 @@ export const Endpoints = {
|
|
|
1614
2535
|
null,
|
|
1615
2536
|
false,
|
|
1616
2537
|
{},
|
|
2538
|
+
{},
|
|
1617
2539
|
],
|
|
1618
2540
|
[
|
|
1619
2541
|
'renewalEstimate',
|
|
@@ -1624,6 +2546,7 @@ export const Endpoints = {
|
|
|
1624
2546
|
null,
|
|
1625
2547
|
false,
|
|
1626
2548
|
{},
|
|
2549
|
+
{},
|
|
1627
2550
|
],
|
|
1628
2551
|
[
|
|
1629
2552
|
'advanceInvoiceEstimate',
|
|
@@ -1634,6 +2557,7 @@ export const Endpoints = {
|
|
|
1634
2557
|
null,
|
|
1635
2558
|
false,
|
|
1636
2559
|
{},
|
|
2560
|
+
{},
|
|
1637
2561
|
],
|
|
1638
2562
|
[
|
|
1639
2563
|
'regenerateInvoiceEstimate',
|
|
@@ -1644,6 +2568,7 @@ export const Endpoints = {
|
|
|
1644
2568
|
null,
|
|
1645
2569
|
false,
|
|
1646
2570
|
{},
|
|
2571
|
+
{},
|
|
1647
2572
|
],
|
|
1648
2573
|
[
|
|
1649
2574
|
'upcomingInvoicesEstimate',
|
|
@@ -1654,6 +2579,7 @@ export const Endpoints = {
|
|
|
1654
2579
|
null,
|
|
1655
2580
|
false,
|
|
1656
2581
|
{},
|
|
2582
|
+
{},
|
|
1657
2583
|
],
|
|
1658
2584
|
[
|
|
1659
2585
|
'changeTermEnd',
|
|
@@ -1664,6 +2590,7 @@ export const Endpoints = {
|
|
|
1664
2590
|
null,
|
|
1665
2591
|
false,
|
|
1666
2592
|
{},
|
|
2593
|
+
{},
|
|
1667
2594
|
],
|
|
1668
2595
|
[
|
|
1669
2596
|
'cancelSubscription',
|
|
@@ -1674,6 +2601,7 @@ export const Endpoints = {
|
|
|
1674
2601
|
null,
|
|
1675
2602
|
false,
|
|
1676
2603
|
{},
|
|
2604
|
+
{},
|
|
1677
2605
|
],
|
|
1678
2606
|
[
|
|
1679
2607
|
'cancelSubscriptionForItems',
|
|
@@ -1684,6 +2612,7 @@ export const Endpoints = {
|
|
|
1684
2612
|
null,
|
|
1685
2613
|
false,
|
|
1686
2614
|
{},
|
|
2615
|
+
{},
|
|
1687
2616
|
],
|
|
1688
2617
|
[
|
|
1689
2618
|
'pauseSubscription',
|
|
@@ -1694,6 +2623,7 @@ export const Endpoints = {
|
|
|
1694
2623
|
null,
|
|
1695
2624
|
false,
|
|
1696
2625
|
{},
|
|
2626
|
+
{},
|
|
1697
2627
|
],
|
|
1698
2628
|
[
|
|
1699
2629
|
'resumeSubscription',
|
|
@@ -1704,6 +2634,7 @@ export const Endpoints = {
|
|
|
1704
2634
|
null,
|
|
1705
2635
|
false,
|
|
1706
2636
|
{},
|
|
2637
|
+
{},
|
|
1707
2638
|
],
|
|
1708
2639
|
[
|
|
1709
2640
|
'giftSubscription',
|
|
@@ -1716,6 +2647,7 @@ export const Endpoints = {
|
|
|
1716
2647
|
{
|
|
1717
2648
|
additional_information: 1,
|
|
1718
2649
|
},
|
|
2650
|
+
{},
|
|
1719
2651
|
],
|
|
1720
2652
|
[
|
|
1721
2653
|
'giftSubscriptionForItems',
|
|
@@ -1728,6 +2660,7 @@ export const Endpoints = {
|
|
|
1728
2660
|
{
|
|
1729
2661
|
additional_information: 1,
|
|
1730
2662
|
},
|
|
2663
|
+
{},
|
|
1731
2664
|
],
|
|
1732
2665
|
[
|
|
1733
2666
|
'createInvoice',
|
|
@@ -1738,6 +2671,7 @@ export const Endpoints = {
|
|
|
1738
2671
|
null,
|
|
1739
2672
|
false,
|
|
1740
2673
|
{},
|
|
2674
|
+
{},
|
|
1741
2675
|
],
|
|
1742
2676
|
[
|
|
1743
2677
|
'createInvoiceForItems',
|
|
@@ -1748,6 +2682,7 @@ export const Endpoints = {
|
|
|
1748
2682
|
null,
|
|
1749
2683
|
false,
|
|
1750
2684
|
{},
|
|
2685
|
+
{},
|
|
1751
2686
|
],
|
|
1752
2687
|
[
|
|
1753
2688
|
'paymentSchedules',
|
|
@@ -1758,10 +2693,13 @@ export const Endpoints = {
|
|
|
1758
2693
|
null,
|
|
1759
2694
|
false,
|
|
1760
2695
|
{},
|
|
2696
|
+
{
|
|
2697
|
+
isIdempotent: true,
|
|
2698
|
+
},
|
|
1761
2699
|
],
|
|
1762
2700
|
],
|
|
1763
2701
|
quote: [
|
|
1764
|
-
['retrieve', 'GET', '/quotes', null, true, null, false, {}],
|
|
2702
|
+
['retrieve', 'GET', '/quotes', null, true, null, false, {}, {}],
|
|
1765
2703
|
[
|
|
1766
2704
|
'createSubForCustomerQuote',
|
|
1767
2705
|
'POST',
|
|
@@ -1771,6 +2709,9 @@ export const Endpoints = {
|
|
|
1771
2709
|
null,
|
|
1772
2710
|
false,
|
|
1773
2711
|
{},
|
|
2712
|
+
{
|
|
2713
|
+
isIdempotent: true,
|
|
2714
|
+
},
|
|
1774
2715
|
],
|
|
1775
2716
|
[
|
|
1776
2717
|
'editCreateSubForCustomerQuote',
|
|
@@ -1781,6 +2722,9 @@ export const Endpoints = {
|
|
|
1781
2722
|
null,
|
|
1782
2723
|
false,
|
|
1783
2724
|
{},
|
|
2725
|
+
{
|
|
2726
|
+
isIdempotent: true,
|
|
2727
|
+
},
|
|
1784
2728
|
],
|
|
1785
2729
|
[
|
|
1786
2730
|
'updateSubscriptionQuote',
|
|
@@ -1791,6 +2735,9 @@ export const Endpoints = {
|
|
|
1791
2735
|
null,
|
|
1792
2736
|
false,
|
|
1793
2737
|
{},
|
|
2738
|
+
{
|
|
2739
|
+
isIdempotent: true,
|
|
2740
|
+
},
|
|
1794
2741
|
],
|
|
1795
2742
|
[
|
|
1796
2743
|
'editUpdateSubscriptionQuote',
|
|
@@ -1801,6 +2748,9 @@ export const Endpoints = {
|
|
|
1801
2748
|
null,
|
|
1802
2749
|
false,
|
|
1803
2750
|
{},
|
|
2751
|
+
{
|
|
2752
|
+
isIdempotent: true,
|
|
2753
|
+
},
|
|
1804
2754
|
],
|
|
1805
2755
|
[
|
|
1806
2756
|
'createForOnetimeCharges',
|
|
@@ -1811,6 +2761,9 @@ export const Endpoints = {
|
|
|
1811
2761
|
null,
|
|
1812
2762
|
false,
|
|
1813
2763
|
{},
|
|
2764
|
+
{
|
|
2765
|
+
isIdempotent: true,
|
|
2766
|
+
},
|
|
1814
2767
|
],
|
|
1815
2768
|
[
|
|
1816
2769
|
'editOneTimeQuote',
|
|
@@ -1821,6 +2774,9 @@ export const Endpoints = {
|
|
|
1821
2774
|
null,
|
|
1822
2775
|
false,
|
|
1823
2776
|
{},
|
|
2777
|
+
{
|
|
2778
|
+
isIdempotent: true,
|
|
2779
|
+
},
|
|
1824
2780
|
],
|
|
1825
2781
|
[
|
|
1826
2782
|
'createSubItemsForCustomerQuote',
|
|
@@ -1831,6 +2787,9 @@ export const Endpoints = {
|
|
|
1831
2787
|
null,
|
|
1832
2788
|
false,
|
|
1833
2789
|
{},
|
|
2790
|
+
{
|
|
2791
|
+
isIdempotent: true,
|
|
2792
|
+
},
|
|
1834
2793
|
],
|
|
1835
2794
|
[
|
|
1836
2795
|
'editCreateSubCustomerQuoteForItems',
|
|
@@ -1841,6 +2800,9 @@ export const Endpoints = {
|
|
|
1841
2800
|
null,
|
|
1842
2801
|
false,
|
|
1843
2802
|
{},
|
|
2803
|
+
{
|
|
2804
|
+
isIdempotent: true,
|
|
2805
|
+
},
|
|
1844
2806
|
],
|
|
1845
2807
|
[
|
|
1846
2808
|
'updateSubscriptionQuoteForItems',
|
|
@@ -1851,6 +2813,9 @@ export const Endpoints = {
|
|
|
1851
2813
|
null,
|
|
1852
2814
|
false,
|
|
1853
2815
|
{},
|
|
2816
|
+
{
|
|
2817
|
+
isIdempotent: true,
|
|
2818
|
+
},
|
|
1854
2819
|
],
|
|
1855
2820
|
[
|
|
1856
2821
|
'editUpdateSubscriptionQuoteForItems',
|
|
@@ -1861,6 +2826,9 @@ export const Endpoints = {
|
|
|
1861
2826
|
null,
|
|
1862
2827
|
false,
|
|
1863
2828
|
{},
|
|
2829
|
+
{
|
|
2830
|
+
isIdempotent: true,
|
|
2831
|
+
},
|
|
1864
2832
|
],
|
|
1865
2833
|
[
|
|
1866
2834
|
'createForChargeItemsAndCharges',
|
|
@@ -1871,6 +2839,9 @@ export const Endpoints = {
|
|
|
1871
2839
|
null,
|
|
1872
2840
|
false,
|
|
1873
2841
|
{},
|
|
2842
|
+
{
|
|
2843
|
+
isIdempotent: true,
|
|
2844
|
+
},
|
|
1874
2845
|
],
|
|
1875
2846
|
[
|
|
1876
2847
|
'editForChargeItemsAndCharges',
|
|
@@ -1881,8 +2852,11 @@ export const Endpoints = {
|
|
|
1881
2852
|
null,
|
|
1882
2853
|
false,
|
|
1883
2854
|
{},
|
|
2855
|
+
{
|
|
2856
|
+
isIdempotent: true,
|
|
2857
|
+
},
|
|
1884
2858
|
],
|
|
1885
|
-
['list', 'GET', '/quotes', null, false, null, false, {}],
|
|
2859
|
+
['list', 'GET', '/quotes', null, false, null, false, {}, {}],
|
|
1886
2860
|
[
|
|
1887
2861
|
'quoteLineGroupsForQuote',
|
|
1888
2862
|
'GET',
|
|
@@ -1892,8 +2866,21 @@ export const Endpoints = {
|
|
|
1892
2866
|
null,
|
|
1893
2867
|
false,
|
|
1894
2868
|
{},
|
|
2869
|
+
{},
|
|
2870
|
+
],
|
|
2871
|
+
[
|
|
2872
|
+
'convert',
|
|
2873
|
+
'POST',
|
|
2874
|
+
'/quotes',
|
|
2875
|
+
'/convert',
|
|
2876
|
+
true,
|
|
2877
|
+
null,
|
|
2878
|
+
false,
|
|
2879
|
+
{},
|
|
2880
|
+
{
|
|
2881
|
+
isIdempotent: true,
|
|
2882
|
+
},
|
|
1895
2883
|
],
|
|
1896
|
-
['convert', 'POST', '/quotes', '/convert', true, null, false, {}],
|
|
1897
2884
|
[
|
|
1898
2885
|
'updateStatus',
|
|
1899
2886
|
'POST',
|
|
@@ -1903,6 +2890,9 @@ export const Endpoints = {
|
|
|
1903
2890
|
null,
|
|
1904
2891
|
false,
|
|
1905
2892
|
{},
|
|
2893
|
+
{
|
|
2894
|
+
isIdempotent: true,
|
|
2895
|
+
},
|
|
1906
2896
|
],
|
|
1907
2897
|
[
|
|
1908
2898
|
'extendExpiryDate',
|
|
@@ -1913,12 +2903,40 @@ export const Endpoints = {
|
|
|
1913
2903
|
null,
|
|
1914
2904
|
false,
|
|
1915
2905
|
{},
|
|
2906
|
+
{
|
|
2907
|
+
isIdempotent: true,
|
|
2908
|
+
},
|
|
2909
|
+
],
|
|
2910
|
+
[
|
|
2911
|
+
'delete',
|
|
2912
|
+
'POST',
|
|
2913
|
+
'/quotes',
|
|
2914
|
+
'/delete',
|
|
2915
|
+
true,
|
|
2916
|
+
null,
|
|
2917
|
+
false,
|
|
2918
|
+
{},
|
|
2919
|
+
{
|
|
2920
|
+
isIdempotent: true,
|
|
2921
|
+
},
|
|
2922
|
+
],
|
|
2923
|
+
[
|
|
2924
|
+
'pdf',
|
|
2925
|
+
'POST',
|
|
2926
|
+
'/quotes',
|
|
2927
|
+
'/pdf',
|
|
2928
|
+
true,
|
|
2929
|
+
null,
|
|
2930
|
+
false,
|
|
2931
|
+
{},
|
|
2932
|
+
{
|
|
2933
|
+
isIdempotent: true,
|
|
2934
|
+
},
|
|
1916
2935
|
],
|
|
1917
|
-
['delete', 'POST', '/quotes', '/delete', true, null, false, {}],
|
|
1918
|
-
['pdf', 'POST', '/quotes', '/pdf', true, null, false, {}],
|
|
1919
2936
|
],
|
|
1920
2937
|
quotedSubscription: [],
|
|
1921
2938
|
quotedCharge: [],
|
|
2939
|
+
quotedRamp: [],
|
|
1922
2940
|
quoteLineGroup: [],
|
|
1923
2941
|
plan: [
|
|
1924
2942
|
[
|
|
@@ -1932,6 +2950,9 @@ export const Endpoints = {
|
|
|
1932
2950
|
{
|
|
1933
2951
|
meta_data: 0,
|
|
1934
2952
|
},
|
|
2953
|
+
{
|
|
2954
|
+
isIdempotent: true,
|
|
2955
|
+
},
|
|
1935
2956
|
],
|
|
1936
2957
|
[
|
|
1937
2958
|
'update',
|
|
@@ -1944,12 +2965,51 @@ export const Endpoints = {
|
|
|
1944
2965
|
{
|
|
1945
2966
|
meta_data: 0,
|
|
1946
2967
|
},
|
|
2968
|
+
{
|
|
2969
|
+
isIdempotent: true,
|
|
2970
|
+
},
|
|
2971
|
+
],
|
|
2972
|
+
['list', 'GET', '/plans', null, false, null, false, {}, {}],
|
|
2973
|
+
['retrieve', 'GET', '/plans', null, true, null, false, {}, {}],
|
|
2974
|
+
[
|
|
2975
|
+
'delete',
|
|
2976
|
+
'POST',
|
|
2977
|
+
'/plans',
|
|
2978
|
+
'/delete',
|
|
2979
|
+
true,
|
|
2980
|
+
null,
|
|
2981
|
+
false,
|
|
2982
|
+
{},
|
|
2983
|
+
{
|
|
2984
|
+
isIdempotent: true,
|
|
2985
|
+
},
|
|
2986
|
+
],
|
|
2987
|
+
[
|
|
2988
|
+
'copy',
|
|
2989
|
+
'POST',
|
|
2990
|
+
'/plans',
|
|
2991
|
+
'/copy',
|
|
2992
|
+
false,
|
|
2993
|
+
null,
|
|
2994
|
+
false,
|
|
2995
|
+
{},
|
|
2996
|
+
{
|
|
2997
|
+
isIdempotent: true,
|
|
2998
|
+
},
|
|
2999
|
+
],
|
|
3000
|
+
[
|
|
3001
|
+
'unarchive',
|
|
3002
|
+
'POST',
|
|
3003
|
+
'/plans',
|
|
3004
|
+
'/unarchive',
|
|
3005
|
+
true,
|
|
3006
|
+
null,
|
|
3007
|
+
false,
|
|
3008
|
+
{},
|
|
3009
|
+
{
|
|
3010
|
+
isIdempotent: true,
|
|
3011
|
+
},
|
|
1947
3012
|
],
|
|
1948
|
-
['list', 'GET', '/plans', null, false, null, false, {}],
|
|
1949
|
-
['retrieve', 'GET', '/plans', null, true, null, false, {}],
|
|
1950
|
-
['delete', 'POST', '/plans', '/delete', true, null, false, {}],
|
|
1951
|
-
['copy', 'POST', '/plans', '/copy', false, null, false, {}],
|
|
1952
|
-
['unarchive', 'POST', '/plans', '/unarchive', true, null, false, {}],
|
|
1953
3013
|
],
|
|
1954
3014
|
addon: [
|
|
1955
3015
|
[
|
|
@@ -1963,6 +3023,9 @@ export const Endpoints = {
|
|
|
1963
3023
|
{
|
|
1964
3024
|
meta_data: 0,
|
|
1965
3025
|
},
|
|
3026
|
+
{
|
|
3027
|
+
isIdempotent: true,
|
|
3028
|
+
},
|
|
1966
3029
|
],
|
|
1967
3030
|
[
|
|
1968
3031
|
'update',
|
|
@@ -1975,12 +3038,51 @@ export const Endpoints = {
|
|
|
1975
3038
|
{
|
|
1976
3039
|
meta_data: 0,
|
|
1977
3040
|
},
|
|
3041
|
+
{
|
|
3042
|
+
isIdempotent: true,
|
|
3043
|
+
},
|
|
3044
|
+
],
|
|
3045
|
+
['list', 'GET', '/addons', null, false, null, false, {}, {}],
|
|
3046
|
+
['retrieve', 'GET', '/addons', null, true, null, false, {}, {}],
|
|
3047
|
+
[
|
|
3048
|
+
'delete',
|
|
3049
|
+
'POST',
|
|
3050
|
+
'/addons',
|
|
3051
|
+
'/delete',
|
|
3052
|
+
true,
|
|
3053
|
+
null,
|
|
3054
|
+
false,
|
|
3055
|
+
{},
|
|
3056
|
+
{
|
|
3057
|
+
isIdempotent: true,
|
|
3058
|
+
},
|
|
3059
|
+
],
|
|
3060
|
+
[
|
|
3061
|
+
'copy',
|
|
3062
|
+
'POST',
|
|
3063
|
+
'/addons',
|
|
3064
|
+
'/copy',
|
|
3065
|
+
false,
|
|
3066
|
+
null,
|
|
3067
|
+
false,
|
|
3068
|
+
{},
|
|
3069
|
+
{
|
|
3070
|
+
isIdempotent: true,
|
|
3071
|
+
},
|
|
3072
|
+
],
|
|
3073
|
+
[
|
|
3074
|
+
'unarchive',
|
|
3075
|
+
'POST',
|
|
3076
|
+
'/addons',
|
|
3077
|
+
'/unarchive',
|
|
3078
|
+
true,
|
|
3079
|
+
null,
|
|
3080
|
+
false,
|
|
3081
|
+
{},
|
|
3082
|
+
{
|
|
3083
|
+
isIdempotent: true,
|
|
3084
|
+
},
|
|
1978
3085
|
],
|
|
1979
|
-
['list', 'GET', '/addons', null, false, null, false, {}],
|
|
1980
|
-
['retrieve', 'GET', '/addons', null, true, null, false, {}],
|
|
1981
|
-
['delete', 'POST', '/addons', '/delete', true, null, false, {}],
|
|
1982
|
-
['copy', 'POST', '/addons', '/copy', false, null, false, {}],
|
|
1983
|
-
['unarchive', 'POST', '/addons', '/unarchive', true, null, false, {}],
|
|
1984
3086
|
],
|
|
1985
3087
|
coupon: [
|
|
1986
3088
|
[
|
|
@@ -1994,6 +3096,9 @@ export const Endpoints = {
|
|
|
1994
3096
|
{
|
|
1995
3097
|
meta_data: 0,
|
|
1996
3098
|
},
|
|
3099
|
+
{
|
|
3100
|
+
isIdempotent: true,
|
|
3101
|
+
},
|
|
1997
3102
|
],
|
|
1998
3103
|
[
|
|
1999
3104
|
'createForItems',
|
|
@@ -2010,6 +3115,9 @@ export const Endpoints = {
|
|
|
2010
3115
|
currencies: 1,
|
|
2011
3116
|
item_price_periods: 1,
|
|
2012
3117
|
},
|
|
3118
|
+
{
|
|
3119
|
+
isIdempotent: true,
|
|
3120
|
+
},
|
|
2013
3121
|
],
|
|
2014
3122
|
[
|
|
2015
3123
|
'updateForItems',
|
|
@@ -2026,9 +3134,12 @@ export const Endpoints = {
|
|
|
2026
3134
|
currencies: 1,
|
|
2027
3135
|
item_price_periods: 1,
|
|
2028
3136
|
},
|
|
3137
|
+
{
|
|
3138
|
+
isIdempotent: true,
|
|
3139
|
+
},
|
|
2029
3140
|
],
|
|
2030
|
-
['list', 'GET', '/coupons', null, false, null, false, {}],
|
|
2031
|
-
['retrieve', 'GET', '/coupons', null, true, null, false, {}],
|
|
3141
|
+
['list', 'GET', '/coupons', null, false, null, false, {}, {}],
|
|
3142
|
+
['retrieve', 'GET', '/coupons', null, true, null, false, {}, {}],
|
|
2032
3143
|
[
|
|
2033
3144
|
'update',
|
|
2034
3145
|
'POST',
|
|
@@ -2040,10 +3151,49 @@ export const Endpoints = {
|
|
|
2040
3151
|
{
|
|
2041
3152
|
meta_data: 0,
|
|
2042
3153
|
},
|
|
3154
|
+
{
|
|
3155
|
+
isIdempotent: true,
|
|
3156
|
+
},
|
|
3157
|
+
],
|
|
3158
|
+
[
|
|
3159
|
+
'delete',
|
|
3160
|
+
'POST',
|
|
3161
|
+
'/coupons',
|
|
3162
|
+
'/delete',
|
|
3163
|
+
true,
|
|
3164
|
+
null,
|
|
3165
|
+
false,
|
|
3166
|
+
{},
|
|
3167
|
+
{
|
|
3168
|
+
isIdempotent: true,
|
|
3169
|
+
},
|
|
3170
|
+
],
|
|
3171
|
+
[
|
|
3172
|
+
'copy',
|
|
3173
|
+
'POST',
|
|
3174
|
+
'/coupons',
|
|
3175
|
+
'/copy',
|
|
3176
|
+
false,
|
|
3177
|
+
null,
|
|
3178
|
+
false,
|
|
3179
|
+
{},
|
|
3180
|
+
{
|
|
3181
|
+
isIdempotent: true,
|
|
3182
|
+
},
|
|
3183
|
+
],
|
|
3184
|
+
[
|
|
3185
|
+
'unarchive',
|
|
3186
|
+
'POST',
|
|
3187
|
+
'/coupons',
|
|
3188
|
+
'/unarchive',
|
|
3189
|
+
true,
|
|
3190
|
+
null,
|
|
3191
|
+
false,
|
|
3192
|
+
{},
|
|
3193
|
+
{
|
|
3194
|
+
isIdempotent: true,
|
|
3195
|
+
},
|
|
2043
3196
|
],
|
|
2044
|
-
['delete', 'POST', '/coupons', '/delete', true, null, false, {}],
|
|
2045
|
-
['copy', 'POST', '/coupons', '/copy', false, null, false, {}],
|
|
2046
|
-
['unarchive', 'POST', '/coupons', '/unarchive', true, null, false, {}],
|
|
2047
3197
|
],
|
|
2048
3198
|
couponSet: [
|
|
2049
3199
|
[
|
|
@@ -2057,6 +3207,9 @@ export const Endpoints = {
|
|
|
2057
3207
|
{
|
|
2058
3208
|
meta_data: 0,
|
|
2059
3209
|
},
|
|
3210
|
+
{
|
|
3211
|
+
isIdempotent: true,
|
|
3212
|
+
},
|
|
2060
3213
|
],
|
|
2061
3214
|
[
|
|
2062
3215
|
'addCouponCodes',
|
|
@@ -2067,9 +3220,12 @@ export const Endpoints = {
|
|
|
2067
3220
|
null,
|
|
2068
3221
|
false,
|
|
2069
3222
|
{},
|
|
3223
|
+
{
|
|
3224
|
+
isIdempotent: true,
|
|
3225
|
+
},
|
|
2070
3226
|
],
|
|
2071
|
-
['list', 'GET', '/coupon_sets', null, false, null, false, {}],
|
|
2072
|
-
['retrieve', 'GET', '/coupon_sets', null, true, null, false, {}],
|
|
3227
|
+
['list', 'GET', '/coupon_sets', null, false, null, false, {}, {}],
|
|
3228
|
+
['retrieve', 'GET', '/coupon_sets', null, true, null, false, {}, {}],
|
|
2073
3229
|
[
|
|
2074
3230
|
'update',
|
|
2075
3231
|
'POST',
|
|
@@ -2081,60 +3237,189 @@ export const Endpoints = {
|
|
|
2081
3237
|
{
|
|
2082
3238
|
meta_data: 0,
|
|
2083
3239
|
},
|
|
3240
|
+
{
|
|
3241
|
+
isIdempotent: true,
|
|
3242
|
+
},
|
|
2084
3243
|
],
|
|
2085
|
-
['delete', 'POST', '/coupon_sets', '/delete', true, null, false, {}],
|
|
2086
3244
|
[
|
|
2087
|
-
'
|
|
3245
|
+
'delete',
|
|
2088
3246
|
'POST',
|
|
2089
3247
|
'/coupon_sets',
|
|
2090
|
-
'/
|
|
3248
|
+
'/delete',
|
|
2091
3249
|
true,
|
|
2092
3250
|
null,
|
|
2093
3251
|
false,
|
|
2094
3252
|
{},
|
|
3253
|
+
{
|
|
3254
|
+
isIdempotent: true,
|
|
3255
|
+
},
|
|
2095
3256
|
],
|
|
2096
|
-
],
|
|
2097
|
-
couponCode: [
|
|
2098
|
-
['create', 'POST', '/coupon_codes', null, false, null, false, {}],
|
|
2099
|
-
['retrieve', 'GET', '/coupon_codes', null, true, null, false, {}],
|
|
2100
|
-
['list', 'GET', '/coupon_codes', null, false, null, false, {}],
|
|
2101
|
-
['archive', 'POST', '/coupon_codes', '/archive', true, null, false, {}],
|
|
2102
|
-
],
|
|
2103
|
-
address: [
|
|
2104
|
-
['retrieve', 'GET', '/addresses', null, false, null, false, {}],
|
|
2105
|
-
['update', 'POST', '/addresses', null, false, null, false, {}],
|
|
2106
|
-
],
|
|
2107
|
-
usage: [
|
|
2108
|
-
['create', 'POST', '/subscriptions', '/usages', true, null, false, {}],
|
|
2109
|
-
['retrieve', 'GET', '/subscriptions', '/usages', true, null, false, {}],
|
|
2110
3257
|
[
|
|
2111
|
-
'
|
|
3258
|
+
'deleteUnusedCouponCodes',
|
|
2112
3259
|
'POST',
|
|
2113
|
-
'/
|
|
2114
|
-
'/
|
|
3260
|
+
'/coupon_sets',
|
|
3261
|
+
'/delete_unused_coupon_codes',
|
|
2115
3262
|
true,
|
|
2116
3263
|
null,
|
|
2117
3264
|
false,
|
|
2118
3265
|
{},
|
|
3266
|
+
{
|
|
3267
|
+
isIdempotent: true,
|
|
3268
|
+
},
|
|
2119
3269
|
],
|
|
2120
|
-
['list', 'GET', '/usages', null, false, null, false, {}],
|
|
2121
|
-
['pdf', 'POST', '/usages', '/pdf', false, null, false, {}],
|
|
2122
|
-
],
|
|
2123
|
-
event: [
|
|
2124
|
-
['list', 'GET', '/events', null, false, null, false, {}],
|
|
2125
|
-
['retrieve', 'GET', '/events', null, true, null, false, {}],
|
|
2126
3270
|
],
|
|
2127
|
-
|
|
2128
|
-
[
|
|
2129
|
-
|
|
2130
|
-
|
|
2131
|
-
|
|
3271
|
+
couponCode: [
|
|
3272
|
+
[
|
|
3273
|
+
'create',
|
|
3274
|
+
'POST',
|
|
3275
|
+
'/coupon_codes',
|
|
3276
|
+
null,
|
|
3277
|
+
false,
|
|
3278
|
+
null,
|
|
3279
|
+
false,
|
|
3280
|
+
{},
|
|
3281
|
+
{
|
|
3282
|
+
isIdempotent: true,
|
|
3283
|
+
},
|
|
3284
|
+
],
|
|
3285
|
+
['retrieve', 'GET', '/coupon_codes', null, true, null, false, {}, {}],
|
|
3286
|
+
['list', 'GET', '/coupon_codes', null, false, null, false, {}, {}],
|
|
3287
|
+
[
|
|
3288
|
+
'archive',
|
|
3289
|
+
'POST',
|
|
3290
|
+
'/coupon_codes',
|
|
3291
|
+
'/archive',
|
|
3292
|
+
true,
|
|
3293
|
+
null,
|
|
3294
|
+
false,
|
|
3295
|
+
{},
|
|
3296
|
+
{
|
|
3297
|
+
isIdempotent: true,
|
|
3298
|
+
},
|
|
3299
|
+
],
|
|
3300
|
+
],
|
|
3301
|
+
address: [
|
|
3302
|
+
['retrieve', 'GET', '/addresses', null, false, null, false, {}, {}],
|
|
3303
|
+
[
|
|
3304
|
+
'update',
|
|
3305
|
+
'POST',
|
|
3306
|
+
'/addresses',
|
|
3307
|
+
null,
|
|
3308
|
+
false,
|
|
3309
|
+
null,
|
|
3310
|
+
false,
|
|
3311
|
+
{},
|
|
3312
|
+
{
|
|
3313
|
+
isIdempotent: true,
|
|
3314
|
+
},
|
|
3315
|
+
],
|
|
3316
|
+
],
|
|
3317
|
+
usage: [
|
|
3318
|
+
[
|
|
3319
|
+
'create',
|
|
3320
|
+
'POST',
|
|
3321
|
+
'/subscriptions',
|
|
3322
|
+
'/usages',
|
|
3323
|
+
true,
|
|
3324
|
+
null,
|
|
3325
|
+
false,
|
|
3326
|
+
{},
|
|
3327
|
+
{
|
|
3328
|
+
isIdempotent: true,
|
|
3329
|
+
},
|
|
3330
|
+
],
|
|
3331
|
+
['retrieve', 'GET', '/subscriptions', '/usages', true, null, false, {}, {}],
|
|
3332
|
+
[
|
|
3333
|
+
'delete',
|
|
3334
|
+
'POST',
|
|
3335
|
+
'/subscriptions',
|
|
3336
|
+
'/delete_usage',
|
|
3337
|
+
true,
|
|
3338
|
+
null,
|
|
3339
|
+
false,
|
|
3340
|
+
{},
|
|
3341
|
+
{
|
|
3342
|
+
isIdempotent: true,
|
|
3343
|
+
},
|
|
3344
|
+
],
|
|
3345
|
+
['list', 'GET', '/usages', null, false, null, false, {}, {}],
|
|
3346
|
+
[
|
|
3347
|
+
'pdf',
|
|
3348
|
+
'POST',
|
|
3349
|
+
'/usages',
|
|
3350
|
+
'/pdf',
|
|
3351
|
+
false,
|
|
3352
|
+
null,
|
|
3353
|
+
false,
|
|
3354
|
+
{},
|
|
3355
|
+
{
|
|
3356
|
+
isIdempotent: true,
|
|
3357
|
+
},
|
|
3358
|
+
],
|
|
3359
|
+
],
|
|
3360
|
+
event: [
|
|
3361
|
+
['list', 'GET', '/events', null, false, null, false, {}, {}],
|
|
3362
|
+
['retrieve', 'GET', '/events', null, true, null, false, {}, {}],
|
|
3363
|
+
],
|
|
3364
|
+
comment: [
|
|
3365
|
+
[
|
|
3366
|
+
'create',
|
|
3367
|
+
'POST',
|
|
3368
|
+
'/comments',
|
|
3369
|
+
null,
|
|
3370
|
+
false,
|
|
3371
|
+
null,
|
|
3372
|
+
false,
|
|
3373
|
+
{},
|
|
3374
|
+
{
|
|
3375
|
+
isIdempotent: true,
|
|
3376
|
+
},
|
|
3377
|
+
],
|
|
3378
|
+
['retrieve', 'GET', '/comments', null, true, null, false, {}, {}],
|
|
3379
|
+
['list', 'GET', '/comments', null, false, null, false, {}, {}],
|
|
3380
|
+
[
|
|
3381
|
+
'delete',
|
|
3382
|
+
'POST',
|
|
3383
|
+
'/comments',
|
|
3384
|
+
'/delete',
|
|
3385
|
+
true,
|
|
3386
|
+
null,
|
|
3387
|
+
false,
|
|
3388
|
+
{},
|
|
3389
|
+
{
|
|
3390
|
+
isIdempotent: true,
|
|
3391
|
+
},
|
|
3392
|
+
],
|
|
2132
3393
|
],
|
|
2133
3394
|
download: [],
|
|
2134
3395
|
portalSession: [
|
|
2135
|
-
[
|
|
2136
|
-
|
|
2137
|
-
|
|
3396
|
+
[
|
|
3397
|
+
'create',
|
|
3398
|
+
'POST',
|
|
3399
|
+
'/portal_sessions',
|
|
3400
|
+
null,
|
|
3401
|
+
false,
|
|
3402
|
+
null,
|
|
3403
|
+
false,
|
|
3404
|
+
{},
|
|
3405
|
+
{
|
|
3406
|
+
isIdempotent: true,
|
|
3407
|
+
},
|
|
3408
|
+
],
|
|
3409
|
+
['retrieve', 'GET', '/portal_sessions', null, true, null, false, {}, {}],
|
|
3410
|
+
[
|
|
3411
|
+
'logout',
|
|
3412
|
+
'POST',
|
|
3413
|
+
'/portal_sessions',
|
|
3414
|
+
'/logout',
|
|
3415
|
+
true,
|
|
3416
|
+
null,
|
|
3417
|
+
false,
|
|
3418
|
+
{},
|
|
3419
|
+
{
|
|
3420
|
+
isIdempotent: true,
|
|
3421
|
+
},
|
|
3422
|
+
],
|
|
2138
3423
|
[
|
|
2139
3424
|
'activate',
|
|
2140
3425
|
'POST',
|
|
@@ -2144,10 +3429,23 @@ export const Endpoints = {
|
|
|
2144
3429
|
null,
|
|
2145
3430
|
false,
|
|
2146
3431
|
{},
|
|
3432
|
+
{
|
|
3433
|
+
isIdempotent: true,
|
|
3434
|
+
},
|
|
2147
3435
|
],
|
|
2148
3436
|
],
|
|
2149
3437
|
siteMigrationDetail: [
|
|
2150
|
-
[
|
|
3438
|
+
[
|
|
3439
|
+
'list',
|
|
3440
|
+
'GET',
|
|
3441
|
+
'/site_migration_details',
|
|
3442
|
+
null,
|
|
3443
|
+
false,
|
|
3444
|
+
null,
|
|
3445
|
+
false,
|
|
3446
|
+
{},
|
|
3447
|
+
{},
|
|
3448
|
+
],
|
|
2151
3449
|
],
|
|
2152
3450
|
resourceMigration: [
|
|
2153
3451
|
[
|
|
@@ -2159,10 +3457,11 @@ export const Endpoints = {
|
|
|
2159
3457
|
null,
|
|
2160
3458
|
false,
|
|
2161
3459
|
{},
|
|
3460
|
+
{},
|
|
2162
3461
|
],
|
|
2163
3462
|
],
|
|
2164
3463
|
timeMachine: [
|
|
2165
|
-
['retrieve', 'GET', '/time_machines', null, true, null, false, {}],
|
|
3464
|
+
['retrieve', 'GET', '/time_machines', null, true, null, false, {}, {}],
|
|
2166
3465
|
[
|
|
2167
3466
|
'startAfresh',
|
|
2168
3467
|
'POST',
|
|
@@ -2172,6 +3471,9 @@ export const Endpoints = {
|
|
|
2172
3471
|
null,
|
|
2173
3472
|
false,
|
|
2174
3473
|
{},
|
|
3474
|
+
{
|
|
3475
|
+
isIdempotent: true,
|
|
3476
|
+
},
|
|
2175
3477
|
],
|
|
2176
3478
|
[
|
|
2177
3479
|
'travelForward',
|
|
@@ -2182,10 +3484,13 @@ export const Endpoints = {
|
|
|
2182
3484
|
null,
|
|
2183
3485
|
false,
|
|
2184
3486
|
{},
|
|
3487
|
+
{
|
|
3488
|
+
isIdempotent: true,
|
|
3489
|
+
},
|
|
2185
3490
|
],
|
|
2186
3491
|
],
|
|
2187
3492
|
export: [
|
|
2188
|
-
['retrieve', 'GET', '/exports', null, true, null, false, {}],
|
|
3493
|
+
['retrieve', 'GET', '/exports', null, true, null, false, {}, {}],
|
|
2189
3494
|
[
|
|
2190
3495
|
'revenueRecognition',
|
|
2191
3496
|
'POST',
|
|
@@ -2195,6 +3500,9 @@ export const Endpoints = {
|
|
|
2195
3500
|
null,
|
|
2196
3501
|
false,
|
|
2197
3502
|
{},
|
|
3503
|
+
{
|
|
3504
|
+
isIdempotent: true,
|
|
3505
|
+
},
|
|
2198
3506
|
],
|
|
2199
3507
|
[
|
|
2200
3508
|
'deferredRevenue',
|
|
@@ -2205,11 +3513,62 @@ export const Endpoints = {
|
|
|
2205
3513
|
null,
|
|
2206
3514
|
false,
|
|
2207
3515
|
{},
|
|
3516
|
+
{
|
|
3517
|
+
isIdempotent: true,
|
|
3518
|
+
},
|
|
3519
|
+
],
|
|
3520
|
+
[
|
|
3521
|
+
'plans',
|
|
3522
|
+
'POST',
|
|
3523
|
+
'/exports',
|
|
3524
|
+
'/plans',
|
|
3525
|
+
false,
|
|
3526
|
+
null,
|
|
3527
|
+
false,
|
|
3528
|
+
{},
|
|
3529
|
+
{
|
|
3530
|
+
isIdempotent: true,
|
|
3531
|
+
},
|
|
3532
|
+
],
|
|
3533
|
+
[
|
|
3534
|
+
'addons',
|
|
3535
|
+
'POST',
|
|
3536
|
+
'/exports',
|
|
3537
|
+
'/addons',
|
|
3538
|
+
false,
|
|
3539
|
+
null,
|
|
3540
|
+
false,
|
|
3541
|
+
{},
|
|
3542
|
+
{
|
|
3543
|
+
isIdempotent: true,
|
|
3544
|
+
},
|
|
3545
|
+
],
|
|
3546
|
+
[
|
|
3547
|
+
'coupons',
|
|
3548
|
+
'POST',
|
|
3549
|
+
'/exports',
|
|
3550
|
+
'/coupons',
|
|
3551
|
+
false,
|
|
3552
|
+
null,
|
|
3553
|
+
false,
|
|
3554
|
+
{},
|
|
3555
|
+
{
|
|
3556
|
+
isIdempotent: true,
|
|
3557
|
+
},
|
|
3558
|
+
],
|
|
3559
|
+
[
|
|
3560
|
+
'customers',
|
|
3561
|
+
'POST',
|
|
3562
|
+
'/exports',
|
|
3563
|
+
'/customers',
|
|
3564
|
+
false,
|
|
3565
|
+
null,
|
|
3566
|
+
false,
|
|
3567
|
+
{},
|
|
3568
|
+
{
|
|
3569
|
+
isIdempotent: true,
|
|
3570
|
+
},
|
|
2208
3571
|
],
|
|
2209
|
-
['plans', 'POST', '/exports', '/plans', false, null, false, {}],
|
|
2210
|
-
['addons', 'POST', '/exports', '/addons', false, null, false, {}],
|
|
2211
|
-
['coupons', 'POST', '/exports', '/coupons', false, null, false, {}],
|
|
2212
|
-
['customers', 'POST', '/exports', '/customers', false, null, false, {}],
|
|
2213
3572
|
[
|
|
2214
3573
|
'subscriptions',
|
|
2215
3574
|
'POST',
|
|
@@ -2219,8 +3578,23 @@ export const Endpoints = {
|
|
|
2219
3578
|
null,
|
|
2220
3579
|
false,
|
|
2221
3580
|
{},
|
|
3581
|
+
{
|
|
3582
|
+
isIdempotent: true,
|
|
3583
|
+
},
|
|
3584
|
+
],
|
|
3585
|
+
[
|
|
3586
|
+
'invoices',
|
|
3587
|
+
'POST',
|
|
3588
|
+
'/exports',
|
|
3589
|
+
'/invoices',
|
|
3590
|
+
false,
|
|
3591
|
+
null,
|
|
3592
|
+
false,
|
|
3593
|
+
{},
|
|
3594
|
+
{
|
|
3595
|
+
isIdempotent: true,
|
|
3596
|
+
},
|
|
2222
3597
|
],
|
|
2223
|
-
['invoices', 'POST', '/exports', '/invoices', false, null, false, {}],
|
|
2224
3598
|
[
|
|
2225
3599
|
'creditNotes',
|
|
2226
3600
|
'POST',
|
|
@@ -2230,6 +3604,9 @@ export const Endpoints = {
|
|
|
2230
3604
|
null,
|
|
2231
3605
|
false,
|
|
2232
3606
|
{},
|
|
3607
|
+
{
|
|
3608
|
+
isIdempotent: true,
|
|
3609
|
+
},
|
|
2233
3610
|
],
|
|
2234
3611
|
[
|
|
2235
3612
|
'transactions',
|
|
@@ -2240,8 +3617,23 @@ export const Endpoints = {
|
|
|
2240
3617
|
null,
|
|
2241
3618
|
false,
|
|
2242
3619
|
{},
|
|
3620
|
+
{
|
|
3621
|
+
isIdempotent: true,
|
|
3622
|
+
},
|
|
3623
|
+
],
|
|
3624
|
+
[
|
|
3625
|
+
'orders',
|
|
3626
|
+
'POST',
|
|
3627
|
+
'/exports',
|
|
3628
|
+
'/orders',
|
|
3629
|
+
false,
|
|
3630
|
+
null,
|
|
3631
|
+
false,
|
|
3632
|
+
{},
|
|
3633
|
+
{
|
|
3634
|
+
isIdempotent: true,
|
|
3635
|
+
},
|
|
2243
3636
|
],
|
|
2244
|
-
['orders', 'POST', '/exports', '/orders', false, null, false, {}],
|
|
2245
3637
|
[
|
|
2246
3638
|
'itemFamilies',
|
|
2247
3639
|
'POST',
|
|
@@ -2251,9 +3643,36 @@ export const Endpoints = {
|
|
|
2251
3643
|
null,
|
|
2252
3644
|
false,
|
|
2253
3645
|
{},
|
|
3646
|
+
{
|
|
3647
|
+
isIdempotent: true,
|
|
3648
|
+
},
|
|
3649
|
+
],
|
|
3650
|
+
[
|
|
3651
|
+
'items',
|
|
3652
|
+
'POST',
|
|
3653
|
+
'/exports',
|
|
3654
|
+
'/items',
|
|
3655
|
+
false,
|
|
3656
|
+
null,
|
|
3657
|
+
false,
|
|
3658
|
+
{},
|
|
3659
|
+
{
|
|
3660
|
+
isIdempotent: true,
|
|
3661
|
+
},
|
|
3662
|
+
],
|
|
3663
|
+
[
|
|
3664
|
+
'itemPrices',
|
|
3665
|
+
'POST',
|
|
3666
|
+
'/exports',
|
|
3667
|
+
'/item_prices',
|
|
3668
|
+
false,
|
|
3669
|
+
null,
|
|
3670
|
+
false,
|
|
3671
|
+
{},
|
|
3672
|
+
{
|
|
3673
|
+
isIdempotent: true,
|
|
3674
|
+
},
|
|
2254
3675
|
],
|
|
2255
|
-
['items', 'POST', '/exports', '/items', false, null, false, {}],
|
|
2256
|
-
['itemPrices', 'POST', '/exports', '/item_prices', false, null, false, {}],
|
|
2257
3676
|
[
|
|
2258
3677
|
'attachedItems',
|
|
2259
3678
|
'POST',
|
|
@@ -2263,6 +3682,9 @@ export const Endpoints = {
|
|
|
2263
3682
|
null,
|
|
2264
3683
|
false,
|
|
2265
3684
|
{},
|
|
3685
|
+
{
|
|
3686
|
+
isIdempotent: true,
|
|
3687
|
+
},
|
|
2266
3688
|
],
|
|
2267
3689
|
[
|
|
2268
3690
|
'differentialPrices',
|
|
@@ -2273,6 +3695,9 @@ export const Endpoints = {
|
|
|
2273
3695
|
null,
|
|
2274
3696
|
false,
|
|
2275
3697
|
{},
|
|
3698
|
+
{
|
|
3699
|
+
isIdempotent: true,
|
|
3700
|
+
},
|
|
2276
3701
|
],
|
|
2277
3702
|
[
|
|
2278
3703
|
'priceVariants',
|
|
@@ -2283,161 +3708,389 @@ export const Endpoints = {
|
|
|
2283
3708
|
null,
|
|
2284
3709
|
false,
|
|
2285
3710
|
{},
|
|
3711
|
+
{
|
|
3712
|
+
isIdempotent: true,
|
|
3713
|
+
},
|
|
3714
|
+
],
|
|
3715
|
+
],
|
|
3716
|
+
paymentIntent: [
|
|
3717
|
+
[
|
|
3718
|
+
'create',
|
|
3719
|
+
'POST',
|
|
3720
|
+
'/payment_intents',
|
|
3721
|
+
null,
|
|
3722
|
+
false,
|
|
3723
|
+
null,
|
|
3724
|
+
false,
|
|
3725
|
+
{},
|
|
3726
|
+
{
|
|
3727
|
+
isIdempotent: true,
|
|
3728
|
+
},
|
|
3729
|
+
],
|
|
3730
|
+
[
|
|
3731
|
+
'update',
|
|
3732
|
+
'POST',
|
|
3733
|
+
'/payment_intents',
|
|
3734
|
+
null,
|
|
3735
|
+
true,
|
|
3736
|
+
null,
|
|
3737
|
+
false,
|
|
3738
|
+
{},
|
|
3739
|
+
{
|
|
3740
|
+
isIdempotent: true,
|
|
3741
|
+
},
|
|
3742
|
+
],
|
|
3743
|
+
['retrieve', 'GET', '/payment_intents', null, true, null, false, {}, {}],
|
|
3744
|
+
],
|
|
3745
|
+
gatewayErrorDetail: [],
|
|
3746
|
+
itemFamily: [
|
|
3747
|
+
[
|
|
3748
|
+
'create',
|
|
3749
|
+
'POST',
|
|
3750
|
+
'/item_families',
|
|
3751
|
+
null,
|
|
3752
|
+
false,
|
|
3753
|
+
null,
|
|
3754
|
+
false,
|
|
3755
|
+
{},
|
|
3756
|
+
{
|
|
3757
|
+
isIdempotent: true,
|
|
3758
|
+
},
|
|
3759
|
+
],
|
|
3760
|
+
['retrieve', 'GET', '/item_families', null, true, null, false, {}, {}],
|
|
3761
|
+
['list', 'GET', '/item_families', null, false, null, false, {}, {}],
|
|
3762
|
+
[
|
|
3763
|
+
'update',
|
|
3764
|
+
'POST',
|
|
3765
|
+
'/item_families',
|
|
3766
|
+
null,
|
|
3767
|
+
true,
|
|
3768
|
+
null,
|
|
3769
|
+
false,
|
|
3770
|
+
{},
|
|
3771
|
+
{
|
|
3772
|
+
isIdempotent: true,
|
|
3773
|
+
},
|
|
3774
|
+
],
|
|
3775
|
+
[
|
|
3776
|
+
'delete',
|
|
3777
|
+
'POST',
|
|
3778
|
+
'/item_families',
|
|
3779
|
+
'/delete',
|
|
3780
|
+
true,
|
|
3781
|
+
null,
|
|
3782
|
+
false,
|
|
3783
|
+
{},
|
|
3784
|
+
{
|
|
3785
|
+
isIdempotent: true,
|
|
3786
|
+
},
|
|
3787
|
+
],
|
|
3788
|
+
],
|
|
3789
|
+
item: [
|
|
3790
|
+
[
|
|
3791
|
+
'create',
|
|
3792
|
+
'POST',
|
|
3793
|
+
'/items',
|
|
3794
|
+
null,
|
|
3795
|
+
false,
|
|
3796
|
+
null,
|
|
3797
|
+
false,
|
|
3798
|
+
{
|
|
3799
|
+
metadata: 0,
|
|
3800
|
+
},
|
|
3801
|
+
{
|
|
3802
|
+
isIdempotent: true,
|
|
3803
|
+
},
|
|
3804
|
+
],
|
|
3805
|
+
['retrieve', 'GET', '/items', null, true, null, false, {}, {}],
|
|
3806
|
+
[
|
|
3807
|
+
'update',
|
|
3808
|
+
'POST',
|
|
3809
|
+
'/items',
|
|
3810
|
+
null,
|
|
3811
|
+
true,
|
|
3812
|
+
null,
|
|
3813
|
+
false,
|
|
3814
|
+
{
|
|
3815
|
+
metadata: 0,
|
|
3816
|
+
},
|
|
3817
|
+
{
|
|
3818
|
+
isIdempotent: true,
|
|
3819
|
+
},
|
|
3820
|
+
],
|
|
3821
|
+
['list', 'GET', '/items', null, false, null, false, {}, {}],
|
|
3822
|
+
[
|
|
3823
|
+
'delete',
|
|
3824
|
+
'POST',
|
|
3825
|
+
'/items',
|
|
3826
|
+
'/delete',
|
|
3827
|
+
true,
|
|
3828
|
+
null,
|
|
3829
|
+
false,
|
|
3830
|
+
{},
|
|
3831
|
+
{
|
|
3832
|
+
isIdempotent: true,
|
|
3833
|
+
},
|
|
3834
|
+
],
|
|
3835
|
+
],
|
|
3836
|
+
priceVariant: [
|
|
3837
|
+
[
|
|
3838
|
+
'create',
|
|
3839
|
+
'POST',
|
|
3840
|
+
'/price_variants',
|
|
3841
|
+
null,
|
|
3842
|
+
false,
|
|
3843
|
+
null,
|
|
3844
|
+
false,
|
|
3845
|
+
{},
|
|
3846
|
+
{
|
|
3847
|
+
isIdempotent: true,
|
|
3848
|
+
},
|
|
3849
|
+
],
|
|
3850
|
+
['retrieve', 'GET', '/price_variants', null, true, null, false, {}, {}],
|
|
3851
|
+
[
|
|
3852
|
+
'update',
|
|
3853
|
+
'POST',
|
|
3854
|
+
'/price_variants',
|
|
3855
|
+
null,
|
|
3856
|
+
true,
|
|
3857
|
+
null,
|
|
3858
|
+
false,
|
|
3859
|
+
{},
|
|
3860
|
+
{
|
|
3861
|
+
isIdempotent: true,
|
|
3862
|
+
},
|
|
3863
|
+
],
|
|
3864
|
+
[
|
|
3865
|
+
'delete',
|
|
3866
|
+
'POST',
|
|
3867
|
+
'/price_variants',
|
|
3868
|
+
'/delete',
|
|
3869
|
+
true,
|
|
3870
|
+
null,
|
|
3871
|
+
false,
|
|
3872
|
+
{},
|
|
3873
|
+
{
|
|
3874
|
+
isIdempotent: true,
|
|
3875
|
+
},
|
|
3876
|
+
],
|
|
3877
|
+
['list', 'GET', '/price_variants', null, false, null, false, {}, {}],
|
|
3878
|
+
],
|
|
3879
|
+
attribute: [],
|
|
3880
|
+
itemPrice: [
|
|
3881
|
+
[
|
|
3882
|
+
'create',
|
|
3883
|
+
'POST',
|
|
3884
|
+
'/item_prices',
|
|
3885
|
+
null,
|
|
3886
|
+
false,
|
|
3887
|
+
null,
|
|
3888
|
+
false,
|
|
3889
|
+
{
|
|
3890
|
+
metadata: 0,
|
|
3891
|
+
},
|
|
3892
|
+
{
|
|
3893
|
+
isIdempotent: true,
|
|
3894
|
+
},
|
|
3895
|
+
],
|
|
3896
|
+
['retrieve', 'GET', '/item_prices', null, true, null, false, {}, {}],
|
|
3897
|
+
[
|
|
3898
|
+
'update',
|
|
3899
|
+
'POST',
|
|
3900
|
+
'/item_prices',
|
|
3901
|
+
null,
|
|
3902
|
+
true,
|
|
3903
|
+
null,
|
|
3904
|
+
false,
|
|
3905
|
+
{
|
|
3906
|
+
metadata: 0,
|
|
3907
|
+
},
|
|
3908
|
+
{
|
|
3909
|
+
isIdempotent: true,
|
|
3910
|
+
},
|
|
3911
|
+
],
|
|
3912
|
+
['list', 'GET', '/item_prices', null, false, null, false, {}, {}],
|
|
3913
|
+
[
|
|
3914
|
+
'delete',
|
|
3915
|
+
'POST',
|
|
3916
|
+
'/item_prices',
|
|
3917
|
+
'/delete',
|
|
3918
|
+
true,
|
|
3919
|
+
null,
|
|
3920
|
+
false,
|
|
3921
|
+
{},
|
|
3922
|
+
{
|
|
3923
|
+
isIdempotent: true,
|
|
3924
|
+
},
|
|
3925
|
+
],
|
|
3926
|
+
[
|
|
3927
|
+
'findApplicableItems',
|
|
3928
|
+
'GET',
|
|
3929
|
+
'/item_prices',
|
|
3930
|
+
'/applicable_items',
|
|
3931
|
+
true,
|
|
3932
|
+
null,
|
|
3933
|
+
false,
|
|
3934
|
+
{},
|
|
3935
|
+
{},
|
|
3936
|
+
],
|
|
3937
|
+
[
|
|
3938
|
+
'findApplicableItemPrices',
|
|
3939
|
+
'GET',
|
|
3940
|
+
'/item_prices',
|
|
3941
|
+
'/applicable_item_prices',
|
|
3942
|
+
true,
|
|
3943
|
+
null,
|
|
3944
|
+
false,
|
|
3945
|
+
{},
|
|
3946
|
+
{},
|
|
2286
3947
|
],
|
|
2287
3948
|
],
|
|
2288
|
-
|
|
2289
|
-
['create', 'POST', '/payment_intents', null, false, null, false, {}],
|
|
2290
|
-
['update', 'POST', '/payment_intents', null, true, null, false, {}],
|
|
2291
|
-
['retrieve', 'GET', '/payment_intents', null, true, null, false, {}],
|
|
2292
|
-
],
|
|
2293
|
-
gatewayErrorDetail: [],
|
|
2294
|
-
itemFamily: [
|
|
2295
|
-
['create', 'POST', '/item_families', null, false, null, false, {}],
|
|
2296
|
-
['retrieve', 'GET', '/item_families', null, true, null, false, {}],
|
|
2297
|
-
['list', 'GET', '/item_families', null, false, null, false, {}],
|
|
2298
|
-
['update', 'POST', '/item_families', null, true, null, false, {}],
|
|
2299
|
-
['delete', 'POST', '/item_families', '/delete', true, null, false, {}],
|
|
2300
|
-
],
|
|
2301
|
-
item: [
|
|
3949
|
+
attachedItem: [
|
|
2302
3950
|
[
|
|
2303
3951
|
'create',
|
|
2304
3952
|
'POST',
|
|
2305
3953
|
'/items',
|
|
3954
|
+
'/attached_items',
|
|
3955
|
+
true,
|
|
2306
3956
|
null,
|
|
2307
3957
|
false,
|
|
2308
|
-
|
|
2309
|
-
false,
|
|
3958
|
+
{},
|
|
2310
3959
|
{
|
|
2311
|
-
|
|
3960
|
+
isIdempotent: true,
|
|
2312
3961
|
},
|
|
2313
3962
|
],
|
|
2314
|
-
['retrieve', 'GET', '/items', null, true, null, false, {}],
|
|
2315
3963
|
[
|
|
2316
3964
|
'update',
|
|
2317
3965
|
'POST',
|
|
2318
|
-
'/
|
|
3966
|
+
'/attached_items',
|
|
2319
3967
|
null,
|
|
2320
3968
|
true,
|
|
2321
3969
|
null,
|
|
2322
3970
|
false,
|
|
3971
|
+
{},
|
|
2323
3972
|
{
|
|
2324
|
-
|
|
3973
|
+
isIdempotent: true,
|
|
2325
3974
|
},
|
|
2326
3975
|
],
|
|
2327
|
-
['
|
|
2328
|
-
['delete', 'POST', '/items', '/delete', true, null, false, {}],
|
|
2329
|
-
],
|
|
2330
|
-
priceVariant: [
|
|
2331
|
-
['create', 'POST', '/price_variants', null, false, null, false, {}],
|
|
2332
|
-
['retrieve', 'GET', '/price_variants', null, true, null, false, {}],
|
|
2333
|
-
['update', 'POST', '/price_variants', null, true, null, false, {}],
|
|
2334
|
-
['delete', 'POST', '/price_variants', '/delete', true, null, false, {}],
|
|
2335
|
-
['list', 'GET', '/price_variants', null, false, null, false, {}],
|
|
2336
|
-
],
|
|
2337
|
-
attribute: [],
|
|
2338
|
-
itemPrice: [
|
|
3976
|
+
['retrieve', 'GET', '/attached_items', null, true, null, false, {}, {}],
|
|
2339
3977
|
[
|
|
2340
|
-
'
|
|
3978
|
+
'delete',
|
|
2341
3979
|
'POST',
|
|
2342
|
-
'/
|
|
2343
|
-
|
|
2344
|
-
|
|
3980
|
+
'/attached_items',
|
|
3981
|
+
'/delete',
|
|
3982
|
+
true,
|
|
2345
3983
|
null,
|
|
2346
3984
|
false,
|
|
3985
|
+
{},
|
|
2347
3986
|
{
|
|
2348
|
-
|
|
3987
|
+
isIdempotent: true,
|
|
2349
3988
|
},
|
|
2350
3989
|
],
|
|
2351
|
-
['
|
|
3990
|
+
['list', 'GET', '/items', '/attached_items', true, null, false, {}, {}],
|
|
3991
|
+
],
|
|
3992
|
+
differentialPrice: [
|
|
2352
3993
|
[
|
|
2353
|
-
'
|
|
3994
|
+
'create',
|
|
2354
3995
|
'POST',
|
|
2355
3996
|
'/item_prices',
|
|
2356
|
-
|
|
3997
|
+
'/differential_prices',
|
|
2357
3998
|
true,
|
|
2358
3999
|
null,
|
|
2359
4000
|
false,
|
|
2360
4001
|
{
|
|
2361
|
-
|
|
4002
|
+
period: 1,
|
|
4003
|
+
},
|
|
4004
|
+
{
|
|
4005
|
+
isIdempotent: true,
|
|
2362
4006
|
},
|
|
2363
4007
|
],
|
|
2364
|
-
['list', 'GET', '/item_prices', null, false, null, false, {}],
|
|
2365
|
-
['delete', 'POST', '/item_prices', '/delete', true, null, false, {}],
|
|
2366
4008
|
[
|
|
2367
|
-
'
|
|
4009
|
+
'retrieve',
|
|
2368
4010
|
'GET',
|
|
2369
|
-
'/
|
|
2370
|
-
|
|
4011
|
+
'/differential_prices',
|
|
4012
|
+
null,
|
|
2371
4013
|
true,
|
|
2372
4014
|
null,
|
|
2373
4015
|
false,
|
|
2374
4016
|
{},
|
|
4017
|
+
{},
|
|
2375
4018
|
],
|
|
2376
4019
|
[
|
|
2377
|
-
'
|
|
2378
|
-
'
|
|
2379
|
-
'/
|
|
2380
|
-
|
|
4020
|
+
'update',
|
|
4021
|
+
'POST',
|
|
4022
|
+
'/differential_prices',
|
|
4023
|
+
null,
|
|
4024
|
+
true,
|
|
4025
|
+
null,
|
|
4026
|
+
false,
|
|
4027
|
+
{
|
|
4028
|
+
period: 1,
|
|
4029
|
+
},
|
|
4030
|
+
{
|
|
4031
|
+
isIdempotent: true,
|
|
4032
|
+
},
|
|
4033
|
+
],
|
|
4034
|
+
[
|
|
4035
|
+
'delete',
|
|
4036
|
+
'POST',
|
|
4037
|
+
'/differential_prices',
|
|
4038
|
+
'/delete',
|
|
2381
4039
|
true,
|
|
2382
4040
|
null,
|
|
2383
4041
|
false,
|
|
2384
4042
|
{},
|
|
4043
|
+
{
|
|
4044
|
+
isIdempotent: true,
|
|
4045
|
+
},
|
|
2385
4046
|
],
|
|
4047
|
+
['list', 'GET', '/differential_prices', null, false, null, false, {}, {}],
|
|
2386
4048
|
],
|
|
2387
|
-
|
|
2388
|
-
['
|
|
2389
|
-
['update', 'POST', '/attached_items', null, true, null, false, {}],
|
|
2390
|
-
['retrieve', 'GET', '/attached_items', null, true, null, false, {}],
|
|
2391
|
-
['delete', 'POST', '/attached_items', '/delete', true, null, false, {}],
|
|
2392
|
-
['list', 'GET', '/items', '/attached_items', true, null, false, {}],
|
|
4049
|
+
configuration: [
|
|
4050
|
+
['list', 'GET', '/configurations', null, false, null, false, {}, {}],
|
|
2393
4051
|
],
|
|
2394
|
-
|
|
4052
|
+
feature: [
|
|
4053
|
+
['list', 'GET', '/features', null, false, null, false, {}, {}],
|
|
2395
4054
|
[
|
|
2396
4055
|
'create',
|
|
2397
4056
|
'POST',
|
|
2398
|
-
'/
|
|
2399
|
-
|
|
2400
|
-
|
|
4057
|
+
'/features',
|
|
4058
|
+
null,
|
|
4059
|
+
false,
|
|
2401
4060
|
null,
|
|
2402
4061
|
false,
|
|
4062
|
+
{},
|
|
2403
4063
|
{
|
|
2404
|
-
|
|
4064
|
+
isIdempotent: true,
|
|
2405
4065
|
},
|
|
2406
4066
|
],
|
|
2407
|
-
['retrieve', 'GET', '/differential_prices', null, true, null, false, {}],
|
|
2408
4067
|
[
|
|
2409
4068
|
'update',
|
|
2410
4069
|
'POST',
|
|
2411
|
-
'/
|
|
4070
|
+
'/features',
|
|
2412
4071
|
null,
|
|
2413
4072
|
true,
|
|
2414
4073
|
null,
|
|
2415
4074
|
false,
|
|
4075
|
+
{},
|
|
2416
4076
|
{
|
|
2417
|
-
|
|
4077
|
+
isIdempotent: true,
|
|
2418
4078
|
},
|
|
2419
4079
|
],
|
|
4080
|
+
['retrieve', 'GET', '/features', null, true, null, false, {}, {}],
|
|
2420
4081
|
[
|
|
2421
4082
|
'delete',
|
|
2422
4083
|
'POST',
|
|
2423
|
-
'/
|
|
4084
|
+
'/features',
|
|
2424
4085
|
'/delete',
|
|
2425
4086
|
true,
|
|
2426
4087
|
null,
|
|
2427
4088
|
false,
|
|
2428
4089
|
{},
|
|
4090
|
+
{
|
|
4091
|
+
isIdempotent: true,
|
|
4092
|
+
},
|
|
2429
4093
|
],
|
|
2430
|
-
['list', 'GET', '/differential_prices', null, false, null, false, {}],
|
|
2431
|
-
],
|
|
2432
|
-
configuration: [
|
|
2433
|
-
['list', 'GET', '/configurations', null, false, null, false, {}],
|
|
2434
|
-
],
|
|
2435
|
-
feature: [
|
|
2436
|
-
['list', 'GET', '/features', null, false, null, false, {}],
|
|
2437
|
-
['create', 'POST', '/features', null, false, null, false, {}],
|
|
2438
|
-
['update', 'POST', '/features', null, true, null, false, {}],
|
|
2439
|
-
['retrieve', 'GET', '/features', null, true, null, false, {}],
|
|
2440
|
-
['delete', 'POST', '/features', '/delete', true, null, false, {}],
|
|
2441
4094
|
[
|
|
2442
4095
|
'activate',
|
|
2443
4096
|
'POST',
|
|
@@ -2447,8 +4100,23 @@ export const Endpoints = {
|
|
|
2447
4100
|
null,
|
|
2448
4101
|
false,
|
|
2449
4102
|
{},
|
|
4103
|
+
{
|
|
4104
|
+
isIdempotent: true,
|
|
4105
|
+
},
|
|
4106
|
+
],
|
|
4107
|
+
[
|
|
4108
|
+
'archive',
|
|
4109
|
+
'POST',
|
|
4110
|
+
'/features',
|
|
4111
|
+
'/archive_command',
|
|
4112
|
+
true,
|
|
4113
|
+
null,
|
|
4114
|
+
false,
|
|
4115
|
+
{},
|
|
4116
|
+
{
|
|
4117
|
+
isIdempotent: true,
|
|
4118
|
+
},
|
|
2450
4119
|
],
|
|
2451
|
-
['archive', 'POST', '/features', '/archive_command', true, null, false, {}],
|
|
2452
4120
|
[
|
|
2453
4121
|
'reactivate',
|
|
2454
4122
|
'POST',
|
|
@@ -2458,6 +4126,9 @@ export const Endpoints = {
|
|
|
2458
4126
|
null,
|
|
2459
4127
|
false,
|
|
2460
4128
|
{},
|
|
4129
|
+
{
|
|
4130
|
+
isIdempotent: true,
|
|
4131
|
+
},
|
|
2461
4132
|
],
|
|
2462
4133
|
],
|
|
2463
4134
|
impactedSubscription: [],
|
|
@@ -2474,6 +4145,7 @@ export const Endpoints = {
|
|
|
2474
4145
|
null,
|
|
2475
4146
|
false,
|
|
2476
4147
|
{},
|
|
4148
|
+
{},
|
|
2477
4149
|
],
|
|
2478
4150
|
[
|
|
2479
4151
|
'setSubscriptionEntitlementAvailability',
|
|
@@ -2484,6 +4156,9 @@ export const Endpoints = {
|
|
|
2484
4156
|
null,
|
|
2485
4157
|
false,
|
|
2486
4158
|
{},
|
|
4159
|
+
{
|
|
4160
|
+
isIdempotent: true,
|
|
4161
|
+
},
|
|
2487
4162
|
],
|
|
2488
4163
|
],
|
|
2489
4164
|
customerEntitlement: [
|
|
@@ -2496,6 +4171,7 @@ export const Endpoints = {
|
|
|
2496
4171
|
null,
|
|
2497
4172
|
false,
|
|
2498
4173
|
{},
|
|
4174
|
+
{},
|
|
2499
4175
|
],
|
|
2500
4176
|
],
|
|
2501
4177
|
itemEntitlement: [
|
|
@@ -2508,6 +4184,7 @@ export const Endpoints = {
|
|
|
2508
4184
|
null,
|
|
2509
4185
|
false,
|
|
2510
4186
|
{},
|
|
4187
|
+
{},
|
|
2511
4188
|
],
|
|
2512
4189
|
[
|
|
2513
4190
|
'itemEntitlementsForFeature',
|
|
@@ -2518,6 +4195,7 @@ export const Endpoints = {
|
|
|
2518
4195
|
null,
|
|
2519
4196
|
false,
|
|
2520
4197
|
{},
|
|
4198
|
+
{},
|
|
2521
4199
|
],
|
|
2522
4200
|
[
|
|
2523
4201
|
'addItemEntitlements',
|
|
@@ -2528,6 +4206,9 @@ export const Endpoints = {
|
|
|
2528
4206
|
null,
|
|
2529
4207
|
false,
|
|
2530
4208
|
{},
|
|
4209
|
+
{
|
|
4210
|
+
isIdempotent: true,
|
|
4211
|
+
},
|
|
2531
4212
|
],
|
|
2532
4213
|
[
|
|
2533
4214
|
'upsertOrRemoveItemEntitlementsForItem',
|
|
@@ -2538,11 +4219,26 @@ export const Endpoints = {
|
|
|
2538
4219
|
null,
|
|
2539
4220
|
false,
|
|
2540
4221
|
{},
|
|
4222
|
+
{
|
|
4223
|
+
isIdempotent: true,
|
|
4224
|
+
},
|
|
2541
4225
|
],
|
|
2542
4226
|
],
|
|
2543
4227
|
entitlement: [
|
|
2544
|
-
['list', 'GET', '/entitlements', null, false, null, false, {}],
|
|
2545
|
-
[
|
|
4228
|
+
['list', 'GET', '/entitlements', null, false, null, false, {}, {}],
|
|
4229
|
+
[
|
|
4230
|
+
'create',
|
|
4231
|
+
'POST',
|
|
4232
|
+
'/entitlements',
|
|
4233
|
+
null,
|
|
4234
|
+
false,
|
|
4235
|
+
null,
|
|
4236
|
+
false,
|
|
4237
|
+
{},
|
|
4238
|
+
{
|
|
4239
|
+
isIdempotent: true,
|
|
4240
|
+
},
|
|
4241
|
+
],
|
|
2546
4242
|
],
|
|
2547
4243
|
inAppSubscription: [
|
|
2548
4244
|
[
|
|
@@ -2554,6 +4250,9 @@ export const Endpoints = {
|
|
|
2554
4250
|
null,
|
|
2555
4251
|
false,
|
|
2556
4252
|
{},
|
|
4253
|
+
{
|
|
4254
|
+
isIdempotent: true,
|
|
4255
|
+
},
|
|
2557
4256
|
],
|
|
2558
4257
|
[
|
|
2559
4258
|
'importReceipt',
|
|
@@ -2564,6 +4263,9 @@ export const Endpoints = {
|
|
|
2564
4263
|
null,
|
|
2565
4264
|
false,
|
|
2566
4265
|
{},
|
|
4266
|
+
{
|
|
4267
|
+
isIdempotent: true,
|
|
4268
|
+
},
|
|
2567
4269
|
],
|
|
2568
4270
|
[
|
|
2569
4271
|
'importSubscription',
|
|
@@ -2574,6 +4276,9 @@ export const Endpoints = {
|
|
|
2574
4276
|
null,
|
|
2575
4277
|
false,
|
|
2576
4278
|
{},
|
|
4279
|
+
{
|
|
4280
|
+
isIdempotent: true,
|
|
4281
|
+
},
|
|
2577
4282
|
],
|
|
2578
4283
|
[
|
|
2579
4284
|
'retrieveStoreSubs',
|
|
@@ -2584,6 +4289,9 @@ export const Endpoints = {
|
|
|
2584
4289
|
null,
|
|
2585
4290
|
false,
|
|
2586
4291
|
{},
|
|
4292
|
+
{
|
|
4293
|
+
isIdempotent: true,
|
|
4294
|
+
},
|
|
2587
4295
|
],
|
|
2588
4296
|
],
|
|
2589
4297
|
nonSubscription: [
|
|
@@ -2596,6 +4304,9 @@ export const Endpoints = {
|
|
|
2596
4304
|
null,
|
|
2597
4305
|
false,
|
|
2598
4306
|
{},
|
|
4307
|
+
{
|
|
4308
|
+
isIdempotent: true,
|
|
4309
|
+
},
|
|
2599
4310
|
],
|
|
2600
4311
|
],
|
|
2601
4312
|
entitlementOverride: [
|
|
@@ -2608,6 +4319,9 @@ export const Endpoints = {
|
|
|
2608
4319
|
null,
|
|
2609
4320
|
false,
|
|
2610
4321
|
{},
|
|
4322
|
+
{
|
|
4323
|
+
isIdempotent: true,
|
|
4324
|
+
},
|
|
2611
4325
|
],
|
|
2612
4326
|
[
|
|
2613
4327
|
'listEntitlementOverrideForSubscription',
|
|
@@ -2618,6 +4332,7 @@ export const Endpoints = {
|
|
|
2618
4332
|
null,
|
|
2619
4333
|
false,
|
|
2620
4334
|
{},
|
|
4335
|
+
{},
|
|
2621
4336
|
],
|
|
2622
4337
|
],
|
|
2623
4338
|
businessEntity: [
|
|
@@ -2630,6 +4345,9 @@ export const Endpoints = {
|
|
|
2630
4345
|
null,
|
|
2631
4346
|
false,
|
|
2632
4347
|
{},
|
|
4348
|
+
{
|
|
4349
|
+
isIdempotent: true,
|
|
4350
|
+
},
|
|
2633
4351
|
],
|
|
2634
4352
|
[
|
|
2635
4353
|
'getTransfers',
|
|
@@ -2640,6 +4358,7 @@ export const Endpoints = {
|
|
|
2640
4358
|
null,
|
|
2641
4359
|
false,
|
|
2642
4360
|
{},
|
|
4361
|
+
{},
|
|
2643
4362
|
],
|
|
2644
4363
|
],
|
|
2645
4364
|
purchase: [
|
|
@@ -2655,6 +4374,9 @@ export const Endpoints = {
|
|
|
2655
4374
|
additional_information: 1,
|
|
2656
4375
|
meta_data: 1,
|
|
2657
4376
|
},
|
|
4377
|
+
{
|
|
4378
|
+
isIdempotent: true,
|
|
4379
|
+
},
|
|
2658
4380
|
],
|
|
2659
4381
|
[
|
|
2660
4382
|
'estimate',
|
|
@@ -2667,11 +4389,24 @@ export const Endpoints = {
|
|
|
2667
4389
|
{
|
|
2668
4390
|
exemption_details: 1,
|
|
2669
4391
|
},
|
|
4392
|
+
{},
|
|
2670
4393
|
],
|
|
2671
4394
|
],
|
|
2672
4395
|
paymentVoucher: [
|
|
2673
|
-
[
|
|
2674
|
-
|
|
4396
|
+
[
|
|
4397
|
+
'create',
|
|
4398
|
+
'POST',
|
|
4399
|
+
'/payment_vouchers',
|
|
4400
|
+
null,
|
|
4401
|
+
false,
|
|
4402
|
+
null,
|
|
4403
|
+
false,
|
|
4404
|
+
{},
|
|
4405
|
+
{
|
|
4406
|
+
isIdempotent: true,
|
|
4407
|
+
},
|
|
4408
|
+
],
|
|
4409
|
+
['retrieve', 'GET', '/payment_vouchers', null, true, null, false, {}, {}],
|
|
2675
4410
|
[
|
|
2676
4411
|
'payment_vouchersForInvoice',
|
|
2677
4412
|
'GET',
|
|
@@ -2681,6 +4416,7 @@ export const Endpoints = {
|
|
|
2681
4416
|
null,
|
|
2682
4417
|
false,
|
|
2683
4418
|
{},
|
|
4419
|
+
{},
|
|
2684
4420
|
],
|
|
2685
4421
|
[
|
|
2686
4422
|
'payment_vouchersForCustomer',
|
|
@@ -2691,13 +4427,38 @@ export const Endpoints = {
|
|
|
2691
4427
|
null,
|
|
2692
4428
|
false,
|
|
2693
4429
|
{},
|
|
4430
|
+
{},
|
|
2694
4431
|
],
|
|
2695
4432
|
],
|
|
2696
4433
|
currency: [
|
|
2697
|
-
['list', 'GET', '/currencies', '/list', false, null, false, {}],
|
|
2698
|
-
['retrieve', 'GET', '/currencies', null, true, null, false, {}],
|
|
2699
|
-
[
|
|
2700
|
-
|
|
4434
|
+
['list', 'GET', '/currencies', '/list', false, null, false, {}, {}],
|
|
4435
|
+
['retrieve', 'GET', '/currencies', null, true, null, false, {}, {}],
|
|
4436
|
+
[
|
|
4437
|
+
'create',
|
|
4438
|
+
'POST',
|
|
4439
|
+
'/currencies',
|
|
4440
|
+
null,
|
|
4441
|
+
false,
|
|
4442
|
+
null,
|
|
4443
|
+
false,
|
|
4444
|
+
{},
|
|
4445
|
+
{
|
|
4446
|
+
isIdempotent: true,
|
|
4447
|
+
},
|
|
4448
|
+
],
|
|
4449
|
+
[
|
|
4450
|
+
'update',
|
|
4451
|
+
'POST',
|
|
4452
|
+
'/currencies',
|
|
4453
|
+
null,
|
|
4454
|
+
true,
|
|
4455
|
+
null,
|
|
4456
|
+
false,
|
|
4457
|
+
{},
|
|
4458
|
+
{
|
|
4459
|
+
isIdempotent: true,
|
|
4460
|
+
},
|
|
4461
|
+
],
|
|
2701
4462
|
[
|
|
2702
4463
|
'addSchedule',
|
|
2703
4464
|
'POST',
|
|
@@ -2707,6 +4468,9 @@ export const Endpoints = {
|
|
|
2707
4468
|
null,
|
|
2708
4469
|
false,
|
|
2709
4470
|
{},
|
|
4471
|
+
{
|
|
4472
|
+
isIdempotent: true,
|
|
4473
|
+
},
|
|
2710
4474
|
],
|
|
2711
4475
|
[
|
|
2712
4476
|
'removeSchedule',
|
|
@@ -2717,6 +4481,9 @@ export const Endpoints = {
|
|
|
2717
4481
|
null,
|
|
2718
4482
|
false,
|
|
2719
4483
|
{},
|
|
4484
|
+
{
|
|
4485
|
+
isIdempotent: true,
|
|
4486
|
+
},
|
|
2720
4487
|
],
|
|
2721
4488
|
],
|
|
2722
4489
|
ramp: [
|
|
@@ -2729,11 +4496,38 @@ export const Endpoints = {
|
|
|
2729
4496
|
null,
|
|
2730
4497
|
false,
|
|
2731
4498
|
{},
|
|
4499
|
+
{
|
|
4500
|
+
isIdempotent: true,
|
|
4501
|
+
},
|
|
4502
|
+
],
|
|
4503
|
+
[
|
|
4504
|
+
'update',
|
|
4505
|
+
'POST',
|
|
4506
|
+
'/ramps',
|
|
4507
|
+
'/update',
|
|
4508
|
+
true,
|
|
4509
|
+
null,
|
|
4510
|
+
false,
|
|
4511
|
+
{},
|
|
4512
|
+
{
|
|
4513
|
+
isIdempotent: true,
|
|
4514
|
+
},
|
|
4515
|
+
],
|
|
4516
|
+
['retrieve', 'GET', '/ramps', null, true, null, false, {}, {}],
|
|
4517
|
+
[
|
|
4518
|
+
'delete',
|
|
4519
|
+
'POST',
|
|
4520
|
+
'/ramps',
|
|
4521
|
+
'/delete',
|
|
4522
|
+
true,
|
|
4523
|
+
null,
|
|
4524
|
+
false,
|
|
4525
|
+
{},
|
|
4526
|
+
{
|
|
4527
|
+
isIdempotent: true,
|
|
4528
|
+
},
|
|
2732
4529
|
],
|
|
2733
|
-
['
|
|
2734
|
-
['retrieve', 'GET', '/ramps', null, true, null, false, {}],
|
|
2735
|
-
['delete', 'POST', '/ramps', '/delete', true, null, false, {}],
|
|
2736
|
-
['list', 'GET', '/ramps', null, false, null, false, {}],
|
|
4530
|
+
['list', 'GET', '/ramps', null, false, null, false, {}, {}],
|
|
2737
4531
|
],
|
|
2738
4532
|
paymentScheduleScheme: [
|
|
2739
4533
|
[
|
|
@@ -2745,6 +4539,9 @@ export const Endpoints = {
|
|
|
2745
4539
|
null,
|
|
2746
4540
|
false,
|
|
2747
4541
|
{},
|
|
4542
|
+
{
|
|
4543
|
+
isIdempotent: true,
|
|
4544
|
+
},
|
|
2748
4545
|
],
|
|
2749
4546
|
[
|
|
2750
4547
|
'retrieve',
|
|
@@ -2755,6 +4552,7 @@ export const Endpoints = {
|
|
|
2755
4552
|
null,
|
|
2756
4553
|
false,
|
|
2757
4554
|
{},
|
|
4555
|
+
{},
|
|
2758
4556
|
],
|
|
2759
4557
|
[
|
|
2760
4558
|
'delete',
|
|
@@ -2765,6 +4563,9 @@ export const Endpoints = {
|
|
|
2765
4563
|
null,
|
|
2766
4564
|
false,
|
|
2767
4565
|
{},
|
|
4566
|
+
{
|
|
4567
|
+
isIdempotent: true,
|
|
4568
|
+
},
|
|
2768
4569
|
],
|
|
2769
4570
|
],
|
|
2770
4571
|
pricingPageSession: [
|
|
@@ -2777,6 +4578,9 @@ export const Endpoints = {
|
|
|
2777
4578
|
null,
|
|
2778
4579
|
false,
|
|
2779
4580
|
{},
|
|
4581
|
+
{
|
|
4582
|
+
isIdempotent: true,
|
|
4583
|
+
},
|
|
2780
4584
|
],
|
|
2781
4585
|
[
|
|
2782
4586
|
'createForExistingSubscription',
|
|
@@ -2787,6 +4591,9 @@ export const Endpoints = {
|
|
|
2787
4591
|
null,
|
|
2788
4592
|
false,
|
|
2789
4593
|
{},
|
|
4594
|
+
{
|
|
4595
|
+
isIdempotent: true,
|
|
4596
|
+
},
|
|
2790
4597
|
],
|
|
2791
4598
|
],
|
|
2792
4599
|
omnichannelSubscription: [
|
|
@@ -2799,8 +4606,19 @@ export const Endpoints = {
|
|
|
2799
4606
|
null,
|
|
2800
4607
|
false,
|
|
2801
4608
|
{},
|
|
4609
|
+
{},
|
|
4610
|
+
],
|
|
4611
|
+
[
|
|
4612
|
+
'list',
|
|
4613
|
+
'GET',
|
|
4614
|
+
'/omnichannel_subscriptions',
|
|
4615
|
+
null,
|
|
4616
|
+
false,
|
|
4617
|
+
null,
|
|
4618
|
+
false,
|
|
4619
|
+
{},
|
|
4620
|
+
{},
|
|
2802
4621
|
],
|
|
2803
|
-
['list', 'GET', '/omnichannel_subscriptions', null, false, null, false, {}],
|
|
2804
4622
|
[
|
|
2805
4623
|
'omnichannel_transactionsForOmnichannelSubscription',
|
|
2806
4624
|
'GET',
|
|
@@ -2810,6 +4628,7 @@ export const Endpoints = {
|
|
|
2810
4628
|
null,
|
|
2811
4629
|
false,
|
|
2812
4630
|
{},
|
|
4631
|
+
{},
|
|
2813
4632
|
],
|
|
2814
4633
|
],
|
|
2815
4634
|
omnichannelTransaction: [],
|
|
@@ -2823,13 +4642,26 @@ export const Endpoints = {
|
|
|
2823
4642
|
null,
|
|
2824
4643
|
false,
|
|
2825
4644
|
{},
|
|
4645
|
+
{},
|
|
2826
4646
|
],
|
|
2827
4647
|
],
|
|
2828
4648
|
recordedPurchase: [
|
|
2829
|
-
[
|
|
2830
|
-
|
|
4649
|
+
[
|
|
4650
|
+
'create',
|
|
4651
|
+
'POST',
|
|
4652
|
+
'/recorded_purchases',
|
|
4653
|
+
null,
|
|
4654
|
+
false,
|
|
4655
|
+
null,
|
|
4656
|
+
false,
|
|
4657
|
+
{},
|
|
4658
|
+
{
|
|
4659
|
+
isIdempotent: true,
|
|
4660
|
+
},
|
|
4661
|
+
],
|
|
4662
|
+
['retrieve', 'GET', '/recorded_purchases', null, true, null, false, {}, {}],
|
|
2831
4663
|
],
|
|
2832
|
-
rule: [['retrieve', 'GET', '/rules', null, true, null, false, {}]],
|
|
4664
|
+
rule: [['retrieve', 'GET', '/rules', null, true, null, false, {}, {}]],
|
|
2833
4665
|
usageEvent: [
|
|
2834
4666
|
[
|
|
2835
4667
|
'create',
|
|
@@ -2842,6 +4674,7 @@ export const Endpoints = {
|
|
|
2842
4674
|
{
|
|
2843
4675
|
properties: 0,
|
|
2844
4676
|
},
|
|
4677
|
+
{},
|
|
2845
4678
|
],
|
|
2846
4679
|
[
|
|
2847
4680
|
'batchIngest',
|
|
@@ -2854,6 +4687,7 @@ export const Endpoints = {
|
|
|
2854
4687
|
{
|
|
2855
4688
|
properties: 1,
|
|
2856
4689
|
},
|
|
4690
|
+
{},
|
|
2857
4691
|
],
|
|
2858
4692
|
],
|
|
2859
4693
|
omnichannelSubscriptionItemScheduledChange: [],
|
|
@@ -2867,6 +4701,7 @@ export const Endpoints = {
|
|
|
2867
4701
|
'file-ingest',
|
|
2868
4702
|
false,
|
|
2869
4703
|
{},
|
|
4704
|
+
{},
|
|
2870
4705
|
],
|
|
2871
4706
|
[
|
|
2872
4707
|
'status',
|
|
@@ -2877,6 +4712,7 @@ export const Endpoints = {
|
|
|
2877
4712
|
'file-ingest',
|
|
2878
4713
|
false,
|
|
2879
4714
|
{},
|
|
4715
|
+
{},
|
|
2880
4716
|
],
|
|
2881
4717
|
],
|
|
2882
4718
|
};
|