chargebee 3.7.0 → 3.8.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +66 -0
- package/cjs/RequestWrapper.js +117 -56
- package/cjs/asyncApiSupport.js +7 -7
- package/cjs/coreCommon.js +4 -4
- package/cjs/createChargebee.js +16 -15
- package/cjs/environment.js +1 -1
- package/cjs/net/ClientInterface.js +2 -2
- package/cjs/net/FetchClient.js +6 -6
- package/cjs/net/NodeClient.js +4 -4
- package/cjs/resources/api_endpoints.js +2064 -270
- package/cjs/util.js +61 -36
- package/esm/RequestWrapper.js +115 -54
- package/esm/asyncApiSupport.js +1 -1
- package/esm/coreCommon.js +2 -2
- package/esm/createChargebee.js +6 -5
- package/esm/environment.js +1 -1
- package/esm/net/ClientInterface.js +1 -1
- package/esm/net/FetchClient.js +1 -1
- package/esm/net/NodeClient.js +1 -1
- package/esm/resources/api_endpoints.js +2064 -270
- package/esm/util.js +59 -36
- package/package.json +1 -1
- package/types/index.d.ts +23 -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,9 @@ export const Endpoints = {
|
|
|
856
1242
|
null,
|
|
857
1243
|
false,
|
|
858
1244
|
{},
|
|
1245
|
+
{
|
|
1246
|
+
isIdempotent: true,
|
|
1247
|
+
},
|
|
859
1248
|
],
|
|
860
1249
|
[
|
|
861
1250
|
'importInvoice',
|
|
@@ -866,6 +1255,9 @@ export const Endpoints = {
|
|
|
866
1255
|
null,
|
|
867
1256
|
false,
|
|
868
1257
|
{},
|
|
1258
|
+
{
|
|
1259
|
+
isIdempotent: true,
|
|
1260
|
+
},
|
|
869
1261
|
],
|
|
870
1262
|
[
|
|
871
1263
|
'applyPayments',
|
|
@@ -876,8 +1268,23 @@ export const Endpoints = {
|
|
|
876
1268
|
null,
|
|
877
1269
|
false,
|
|
878
1270
|
{},
|
|
1271
|
+
{
|
|
1272
|
+
isIdempotent: true,
|
|
1273
|
+
},
|
|
1274
|
+
],
|
|
1275
|
+
[
|
|
1276
|
+
'syncUsages',
|
|
1277
|
+
'POST',
|
|
1278
|
+
'/invoices',
|
|
1279
|
+
'/sync_usages',
|
|
1280
|
+
true,
|
|
1281
|
+
null,
|
|
1282
|
+
false,
|
|
1283
|
+
{},
|
|
1284
|
+
{
|
|
1285
|
+
isIdempotent: true,
|
|
1286
|
+
},
|
|
879
1287
|
],
|
|
880
|
-
['syncUsages', 'POST', '/invoices', '/sync_usages', true, null, false, {}],
|
|
881
1288
|
[
|
|
882
1289
|
'deleteLineItems',
|
|
883
1290
|
'POST',
|
|
@@ -887,6 +1294,9 @@ export const Endpoints = {
|
|
|
887
1294
|
null,
|
|
888
1295
|
false,
|
|
889
1296
|
{},
|
|
1297
|
+
{
|
|
1298
|
+
isIdempotent: true,
|
|
1299
|
+
},
|
|
890
1300
|
],
|
|
891
1301
|
[
|
|
892
1302
|
'applyCredits',
|
|
@@ -897,8 +1307,11 @@ export const Endpoints = {
|
|
|
897
1307
|
null,
|
|
898
1308
|
false,
|
|
899
1309
|
{},
|
|
1310
|
+
{
|
|
1311
|
+
isIdempotent: true,
|
|
1312
|
+
},
|
|
900
1313
|
],
|
|
901
|
-
['list', 'GET', '/invoices', null, false, null, false, {}],
|
|
1314
|
+
['list', 'GET', '/invoices', null, false, null, false, {}, {}],
|
|
902
1315
|
[
|
|
903
1316
|
'invoicesForCustomer',
|
|
904
1317
|
'GET',
|
|
@@ -908,6 +1321,7 @@ export const Endpoints = {
|
|
|
908
1321
|
null,
|
|
909
1322
|
false,
|
|
910
1323
|
{},
|
|
1324
|
+
{},
|
|
911
1325
|
],
|
|
912
1326
|
[
|
|
913
1327
|
'invoicesForSubscription',
|
|
@@ -918,9 +1332,22 @@ export const Endpoints = {
|
|
|
918
1332
|
null,
|
|
919
1333
|
false,
|
|
920
1334
|
{},
|
|
1335
|
+
{},
|
|
1336
|
+
],
|
|
1337
|
+
['retrieve', 'GET', '/invoices', null, true, null, false, {}, {}],
|
|
1338
|
+
[
|
|
1339
|
+
'pdf',
|
|
1340
|
+
'POST',
|
|
1341
|
+
'/invoices',
|
|
1342
|
+
'/pdf',
|
|
1343
|
+
true,
|
|
1344
|
+
null,
|
|
1345
|
+
false,
|
|
1346
|
+
{},
|
|
1347
|
+
{
|
|
1348
|
+
isIdempotent: true,
|
|
1349
|
+
},
|
|
921
1350
|
],
|
|
922
|
-
['retrieve', 'GET', '/invoices', null, true, null, false, {}],
|
|
923
|
-
['pdf', 'POST', '/invoices', '/pdf', true, null, false, {}],
|
|
924
1351
|
[
|
|
925
1352
|
'downloadEinvoice',
|
|
926
1353
|
'GET',
|
|
@@ -930,6 +1357,7 @@ export const Endpoints = {
|
|
|
930
1357
|
null,
|
|
931
1358
|
false,
|
|
932
1359
|
{},
|
|
1360
|
+
{},
|
|
933
1361
|
],
|
|
934
1362
|
[
|
|
935
1363
|
'listPaymentReferenceNumbers',
|
|
@@ -940,8 +1368,21 @@ export const Endpoints = {
|
|
|
940
1368
|
null,
|
|
941
1369
|
false,
|
|
942
1370
|
{},
|
|
1371
|
+
{},
|
|
1372
|
+
],
|
|
1373
|
+
[
|
|
1374
|
+
'addCharge',
|
|
1375
|
+
'POST',
|
|
1376
|
+
'/invoices',
|
|
1377
|
+
'/add_charge',
|
|
1378
|
+
true,
|
|
1379
|
+
null,
|
|
1380
|
+
false,
|
|
1381
|
+
{},
|
|
1382
|
+
{
|
|
1383
|
+
isIdempotent: true,
|
|
1384
|
+
},
|
|
943
1385
|
],
|
|
944
|
-
['addCharge', 'POST', '/invoices', '/add_charge', true, null, false, {}],
|
|
945
1386
|
[
|
|
946
1387
|
'addAddonCharge',
|
|
947
1388
|
'POST',
|
|
@@ -951,6 +1392,9 @@ export const Endpoints = {
|
|
|
951
1392
|
null,
|
|
952
1393
|
false,
|
|
953
1394
|
{},
|
|
1395
|
+
{
|
|
1396
|
+
isIdempotent: true,
|
|
1397
|
+
},
|
|
954
1398
|
],
|
|
955
1399
|
[
|
|
956
1400
|
'addChargeItem',
|
|
@@ -961,8 +1405,23 @@ export const Endpoints = {
|
|
|
961
1405
|
null,
|
|
962
1406
|
false,
|
|
963
1407
|
{},
|
|
1408
|
+
{
|
|
1409
|
+
isIdempotent: true,
|
|
1410
|
+
},
|
|
1411
|
+
],
|
|
1412
|
+
[
|
|
1413
|
+
'close',
|
|
1414
|
+
'POST',
|
|
1415
|
+
'/invoices',
|
|
1416
|
+
'/close',
|
|
1417
|
+
true,
|
|
1418
|
+
null,
|
|
1419
|
+
false,
|
|
1420
|
+
{},
|
|
1421
|
+
{
|
|
1422
|
+
isIdempotent: true,
|
|
1423
|
+
},
|
|
964
1424
|
],
|
|
965
|
-
['close', 'POST', '/invoices', '/close', true, null, false, {}],
|
|
966
1425
|
[
|
|
967
1426
|
'collectPayment',
|
|
968
1427
|
'POST',
|
|
@@ -972,6 +1431,9 @@ export const Endpoints = {
|
|
|
972
1431
|
null,
|
|
973
1432
|
false,
|
|
974
1433
|
{},
|
|
1434
|
+
{
|
|
1435
|
+
isIdempotent: true,
|
|
1436
|
+
},
|
|
975
1437
|
],
|
|
976
1438
|
[
|
|
977
1439
|
'recordPayment',
|
|
@@ -982,6 +1444,9 @@ export const Endpoints = {
|
|
|
982
1444
|
null,
|
|
983
1445
|
false,
|
|
984
1446
|
{},
|
|
1447
|
+
{
|
|
1448
|
+
isIdempotent: true,
|
|
1449
|
+
},
|
|
985
1450
|
],
|
|
986
1451
|
[
|
|
987
1452
|
'recordTaxWithheld',
|
|
@@ -992,6 +1457,9 @@ export const Endpoints = {
|
|
|
992
1457
|
null,
|
|
993
1458
|
false,
|
|
994
1459
|
{},
|
|
1460
|
+
{
|
|
1461
|
+
isIdempotent: true,
|
|
1462
|
+
},
|
|
995
1463
|
],
|
|
996
1464
|
[
|
|
997
1465
|
'removeTaxWithheld',
|
|
@@ -1002,8 +1470,23 @@ export const Endpoints = {
|
|
|
1002
1470
|
null,
|
|
1003
1471
|
false,
|
|
1004
1472
|
{},
|
|
1473
|
+
{
|
|
1474
|
+
isIdempotent: true,
|
|
1475
|
+
},
|
|
1476
|
+
],
|
|
1477
|
+
[
|
|
1478
|
+
'refund',
|
|
1479
|
+
'POST',
|
|
1480
|
+
'/invoices',
|
|
1481
|
+
'/refund',
|
|
1482
|
+
true,
|
|
1483
|
+
null,
|
|
1484
|
+
false,
|
|
1485
|
+
{},
|
|
1486
|
+
{
|
|
1487
|
+
isIdempotent: true,
|
|
1488
|
+
},
|
|
1005
1489
|
],
|
|
1006
|
-
['refund', 'POST', '/invoices', '/refund', true, null, false, {}],
|
|
1007
1490
|
[
|
|
1008
1491
|
'recordRefund',
|
|
1009
1492
|
'POST',
|
|
@@ -1013,6 +1496,9 @@ export const Endpoints = {
|
|
|
1013
1496
|
null,
|
|
1014
1497
|
false,
|
|
1015
1498
|
{},
|
|
1499
|
+
{
|
|
1500
|
+
isIdempotent: true,
|
|
1501
|
+
},
|
|
1016
1502
|
],
|
|
1017
1503
|
[
|
|
1018
1504
|
'removePayment',
|
|
@@ -1023,6 +1509,9 @@ export const Endpoints = {
|
|
|
1023
1509
|
null,
|
|
1024
1510
|
false,
|
|
1025
1511
|
{},
|
|
1512
|
+
{
|
|
1513
|
+
isIdempotent: true,
|
|
1514
|
+
},
|
|
1026
1515
|
],
|
|
1027
1516
|
[
|
|
1028
1517
|
'removeCreditNote',
|
|
@@ -1033,10 +1522,49 @@ export const Endpoints = {
|
|
|
1033
1522
|
null,
|
|
1034
1523
|
false,
|
|
1035
1524
|
{},
|
|
1525
|
+
{
|
|
1526
|
+
isIdempotent: true,
|
|
1527
|
+
},
|
|
1528
|
+
],
|
|
1529
|
+
[
|
|
1530
|
+
'voidInvoice',
|
|
1531
|
+
'POST',
|
|
1532
|
+
'/invoices',
|
|
1533
|
+
'/void',
|
|
1534
|
+
true,
|
|
1535
|
+
null,
|
|
1536
|
+
false,
|
|
1537
|
+
{},
|
|
1538
|
+
{
|
|
1539
|
+
isIdempotent: true,
|
|
1540
|
+
},
|
|
1541
|
+
],
|
|
1542
|
+
[
|
|
1543
|
+
'writeOff',
|
|
1544
|
+
'POST',
|
|
1545
|
+
'/invoices',
|
|
1546
|
+
'/write_off',
|
|
1547
|
+
true,
|
|
1548
|
+
null,
|
|
1549
|
+
false,
|
|
1550
|
+
{},
|
|
1551
|
+
{
|
|
1552
|
+
isIdempotent: true,
|
|
1553
|
+
},
|
|
1554
|
+
],
|
|
1555
|
+
[
|
|
1556
|
+
'delete',
|
|
1557
|
+
'POST',
|
|
1558
|
+
'/invoices',
|
|
1559
|
+
'/delete',
|
|
1560
|
+
true,
|
|
1561
|
+
null,
|
|
1562
|
+
false,
|
|
1563
|
+
{},
|
|
1564
|
+
{
|
|
1565
|
+
isIdempotent: true,
|
|
1566
|
+
},
|
|
1036
1567
|
],
|
|
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
1568
|
[
|
|
1041
1569
|
'updateDetails',
|
|
1042
1570
|
'POST',
|
|
@@ -1046,6 +1574,9 @@ export const Endpoints = {
|
|
|
1046
1574
|
null,
|
|
1047
1575
|
false,
|
|
1048
1576
|
{},
|
|
1577
|
+
{
|
|
1578
|
+
isIdempotent: true,
|
|
1579
|
+
},
|
|
1049
1580
|
],
|
|
1050
1581
|
[
|
|
1051
1582
|
'applyPaymentScheduleScheme',
|
|
@@ -1056,6 +1587,9 @@ export const Endpoints = {
|
|
|
1056
1587
|
null,
|
|
1057
1588
|
false,
|
|
1058
1589
|
{},
|
|
1590
|
+
{
|
|
1591
|
+
isIdempotent: true,
|
|
1592
|
+
},
|
|
1059
1593
|
],
|
|
1060
1594
|
[
|
|
1061
1595
|
'paymentSchedules',
|
|
@@ -1066,6 +1600,7 @@ export const Endpoints = {
|
|
|
1066
1600
|
null,
|
|
1067
1601
|
false,
|
|
1068
1602
|
{},
|
|
1603
|
+
{},
|
|
1069
1604
|
],
|
|
1070
1605
|
[
|
|
1071
1606
|
'resendEinvoice',
|
|
@@ -1076,6 +1611,9 @@ export const Endpoints = {
|
|
|
1076
1611
|
null,
|
|
1077
1612
|
false,
|
|
1078
1613
|
{},
|
|
1614
|
+
{
|
|
1615
|
+
isIdempotent: true,
|
|
1616
|
+
},
|
|
1079
1617
|
],
|
|
1080
1618
|
[
|
|
1081
1619
|
'sendEinvoice',
|
|
@@ -1086,15 +1624,42 @@ export const Endpoints = {
|
|
|
1086
1624
|
null,
|
|
1087
1625
|
false,
|
|
1088
1626
|
{},
|
|
1627
|
+
{
|
|
1628
|
+
isIdempotent: true,
|
|
1629
|
+
},
|
|
1089
1630
|
],
|
|
1090
1631
|
],
|
|
1091
1632
|
paymentReferenceNumber: [],
|
|
1092
1633
|
paymentSchedule: [],
|
|
1093
1634
|
taxWithheld: [],
|
|
1094
1635
|
creditNote: [
|
|
1095
|
-
[
|
|
1096
|
-
|
|
1097
|
-
|
|
1636
|
+
[
|
|
1637
|
+
'create',
|
|
1638
|
+
'POST',
|
|
1639
|
+
'/credit_notes',
|
|
1640
|
+
null,
|
|
1641
|
+
false,
|
|
1642
|
+
null,
|
|
1643
|
+
false,
|
|
1644
|
+
{},
|
|
1645
|
+
{
|
|
1646
|
+
isIdempotent: true,
|
|
1647
|
+
},
|
|
1648
|
+
],
|
|
1649
|
+
['retrieve', 'GET', '/credit_notes', null, true, null, false, {}, {}],
|
|
1650
|
+
[
|
|
1651
|
+
'pdf',
|
|
1652
|
+
'POST',
|
|
1653
|
+
'/credit_notes',
|
|
1654
|
+
'/pdf',
|
|
1655
|
+
true,
|
|
1656
|
+
null,
|
|
1657
|
+
false,
|
|
1658
|
+
{},
|
|
1659
|
+
{
|
|
1660
|
+
isIdempotent: true,
|
|
1661
|
+
},
|
|
1662
|
+
],
|
|
1098
1663
|
[
|
|
1099
1664
|
'downloadEinvoice',
|
|
1100
1665
|
'GET',
|
|
@@ -1104,8 +1669,21 @@ export const Endpoints = {
|
|
|
1104
1669
|
null,
|
|
1105
1670
|
false,
|
|
1106
1671
|
{},
|
|
1672
|
+
{},
|
|
1673
|
+
],
|
|
1674
|
+
[
|
|
1675
|
+
'refund',
|
|
1676
|
+
'POST',
|
|
1677
|
+
'/credit_notes',
|
|
1678
|
+
'/refund',
|
|
1679
|
+
true,
|
|
1680
|
+
null,
|
|
1681
|
+
false,
|
|
1682
|
+
{},
|
|
1683
|
+
{
|
|
1684
|
+
isIdempotent: true,
|
|
1685
|
+
},
|
|
1107
1686
|
],
|
|
1108
|
-
['refund', 'POST', '/credit_notes', '/refund', true, null, false, {}],
|
|
1109
1687
|
[
|
|
1110
1688
|
'recordRefund',
|
|
1111
1689
|
'POST',
|
|
@@ -1115,9 +1693,24 @@ export const Endpoints = {
|
|
|
1115
1693
|
null,
|
|
1116
1694
|
false,
|
|
1117
1695
|
{},
|
|
1696
|
+
{
|
|
1697
|
+
isIdempotent: true,
|
|
1698
|
+
},
|
|
1699
|
+
],
|
|
1700
|
+
[
|
|
1701
|
+
'voidCreditNote',
|
|
1702
|
+
'POST',
|
|
1703
|
+
'/credit_notes',
|
|
1704
|
+
'/void',
|
|
1705
|
+
true,
|
|
1706
|
+
null,
|
|
1707
|
+
false,
|
|
1708
|
+
{},
|
|
1709
|
+
{
|
|
1710
|
+
isIdempotent: true,
|
|
1711
|
+
},
|
|
1118
1712
|
],
|
|
1119
|
-
['
|
|
1120
|
-
['list', 'GET', '/credit_notes', null, false, null, false, {}],
|
|
1713
|
+
['list', 'GET', '/credit_notes', null, false, null, false, {}, {}],
|
|
1121
1714
|
[
|
|
1122
1715
|
'creditNotesForCustomer',
|
|
1123
1716
|
'GET',
|
|
@@ -1127,8 +1720,21 @@ export const Endpoints = {
|
|
|
1127
1720
|
null,
|
|
1128
1721
|
false,
|
|
1129
1722
|
{},
|
|
1723
|
+
{},
|
|
1724
|
+
],
|
|
1725
|
+
[
|
|
1726
|
+
'delete',
|
|
1727
|
+
'POST',
|
|
1728
|
+
'/credit_notes',
|
|
1729
|
+
'/delete',
|
|
1730
|
+
true,
|
|
1731
|
+
null,
|
|
1732
|
+
false,
|
|
1733
|
+
{},
|
|
1734
|
+
{
|
|
1735
|
+
isIdempotent: true,
|
|
1736
|
+
},
|
|
1130
1737
|
],
|
|
1131
|
-
['delete', 'POST', '/credit_notes', '/delete', true, null, false, {}],
|
|
1132
1738
|
[
|
|
1133
1739
|
'removeTaxWithheldRefund',
|
|
1134
1740
|
'POST',
|
|
@@ -1138,6 +1744,9 @@ export const Endpoints = {
|
|
|
1138
1744
|
null,
|
|
1139
1745
|
false,
|
|
1140
1746
|
{},
|
|
1747
|
+
{
|
|
1748
|
+
isIdempotent: true,
|
|
1749
|
+
},
|
|
1141
1750
|
],
|
|
1142
1751
|
[
|
|
1143
1752
|
'resendEinvoice',
|
|
@@ -1148,6 +1757,9 @@ export const Endpoints = {
|
|
|
1148
1757
|
null,
|
|
1149
1758
|
false,
|
|
1150
1759
|
{},
|
|
1760
|
+
{
|
|
1761
|
+
isIdempotent: true,
|
|
1762
|
+
},
|
|
1151
1763
|
],
|
|
1152
1764
|
[
|
|
1153
1765
|
'sendEinvoice',
|
|
@@ -1158,6 +1770,9 @@ export const Endpoints = {
|
|
|
1158
1770
|
null,
|
|
1159
1771
|
false,
|
|
1160
1772
|
{},
|
|
1773
|
+
{
|
|
1774
|
+
isIdempotent: true,
|
|
1775
|
+
},
|
|
1161
1776
|
],
|
|
1162
1777
|
[
|
|
1163
1778
|
'importCreditNote',
|
|
@@ -1168,6 +1783,9 @@ export const Endpoints = {
|
|
|
1168
1783
|
null,
|
|
1169
1784
|
false,
|
|
1170
1785
|
{},
|
|
1786
|
+
{
|
|
1787
|
+
isIdempotent: true,
|
|
1788
|
+
},
|
|
1171
1789
|
],
|
|
1172
1790
|
],
|
|
1173
1791
|
unbilledCharge: [
|
|
@@ -1180,35 +1798,102 @@ export const Endpoints = {
|
|
|
1180
1798
|
null,
|
|
1181
1799
|
false,
|
|
1182
1800
|
{},
|
|
1801
|
+
{
|
|
1802
|
+
isIdempotent: true,
|
|
1803
|
+
},
|
|
1183
1804
|
],
|
|
1184
|
-
['create', 'POST', '/unbilled_charges', null, false, null, false, {}],
|
|
1185
1805
|
[
|
|
1186
|
-
'
|
|
1806
|
+
'create',
|
|
1187
1807
|
'POST',
|
|
1188
1808
|
'/unbilled_charges',
|
|
1189
|
-
|
|
1809
|
+
null,
|
|
1190
1810
|
false,
|
|
1191
1811
|
null,
|
|
1192
1812
|
false,
|
|
1193
1813
|
{},
|
|
1814
|
+
{
|
|
1815
|
+
isIdempotent: true,
|
|
1816
|
+
},
|
|
1194
1817
|
],
|
|
1195
|
-
['delete', 'POST', '/unbilled_charges', '/delete', true, null, false, {}],
|
|
1196
|
-
['list', 'GET', '/unbilled_charges', null, false, null, false, {}],
|
|
1197
1818
|
[
|
|
1198
|
-
'
|
|
1819
|
+
'invoiceUnbilledCharges',
|
|
1199
1820
|
'POST',
|
|
1200
1821
|
'/unbilled_charges',
|
|
1201
|
-
'/
|
|
1822
|
+
'/invoice_unbilled_charges',
|
|
1202
1823
|
false,
|
|
1203
1824
|
null,
|
|
1204
1825
|
false,
|
|
1205
1826
|
{},
|
|
1206
|
-
|
|
1827
|
+
{
|
|
1828
|
+
isIdempotent: true,
|
|
1829
|
+
},
|
|
1830
|
+
],
|
|
1831
|
+
[
|
|
1832
|
+
'delete',
|
|
1833
|
+
'POST',
|
|
1834
|
+
'/unbilled_charges',
|
|
1835
|
+
'/delete',
|
|
1836
|
+
true,
|
|
1837
|
+
null,
|
|
1838
|
+
false,
|
|
1839
|
+
{},
|
|
1840
|
+
{
|
|
1841
|
+
isIdempotent: true,
|
|
1842
|
+
},
|
|
1843
|
+
],
|
|
1844
|
+
['list', 'GET', '/unbilled_charges', null, false, null, false, {}, {}],
|
|
1845
|
+
[
|
|
1846
|
+
'invoiceNowEstimate',
|
|
1847
|
+
'POST',
|
|
1848
|
+
'/unbilled_charges',
|
|
1849
|
+
'/invoice_now_estimate',
|
|
1850
|
+
false,
|
|
1851
|
+
null,
|
|
1852
|
+
false,
|
|
1853
|
+
{},
|
|
1854
|
+
{},
|
|
1855
|
+
],
|
|
1207
1856
|
],
|
|
1208
1857
|
order: [
|
|
1209
|
-
[
|
|
1210
|
-
|
|
1211
|
-
|
|
1858
|
+
[
|
|
1859
|
+
'create',
|
|
1860
|
+
'POST',
|
|
1861
|
+
'/orders',
|
|
1862
|
+
null,
|
|
1863
|
+
false,
|
|
1864
|
+
null,
|
|
1865
|
+
false,
|
|
1866
|
+
{},
|
|
1867
|
+
{
|
|
1868
|
+
isIdempotent: true,
|
|
1869
|
+
},
|
|
1870
|
+
],
|
|
1871
|
+
[
|
|
1872
|
+
'update',
|
|
1873
|
+
'POST',
|
|
1874
|
+
'/orders',
|
|
1875
|
+
null,
|
|
1876
|
+
true,
|
|
1877
|
+
null,
|
|
1878
|
+
false,
|
|
1879
|
+
{},
|
|
1880
|
+
{
|
|
1881
|
+
isIdempotent: true,
|
|
1882
|
+
},
|
|
1883
|
+
],
|
|
1884
|
+
[
|
|
1885
|
+
'importOrder',
|
|
1886
|
+
'POST',
|
|
1887
|
+
'/orders',
|
|
1888
|
+
'/import_order',
|
|
1889
|
+
false,
|
|
1890
|
+
null,
|
|
1891
|
+
false,
|
|
1892
|
+
{},
|
|
1893
|
+
{
|
|
1894
|
+
isIdempotent: true,
|
|
1895
|
+
},
|
|
1896
|
+
],
|
|
1212
1897
|
[
|
|
1213
1898
|
'assignOrderNumber',
|
|
1214
1899
|
'POST',
|
|
@@ -1218,8 +1903,23 @@ export const Endpoints = {
|
|
|
1218
1903
|
null,
|
|
1219
1904
|
false,
|
|
1220
1905
|
{},
|
|
1906
|
+
{
|
|
1907
|
+
isIdempotent: true,
|
|
1908
|
+
},
|
|
1909
|
+
],
|
|
1910
|
+
[
|
|
1911
|
+
'cancel',
|
|
1912
|
+
'POST',
|
|
1913
|
+
'/orders',
|
|
1914
|
+
'/cancel',
|
|
1915
|
+
true,
|
|
1916
|
+
null,
|
|
1917
|
+
false,
|
|
1918
|
+
{},
|
|
1919
|
+
{
|
|
1920
|
+
isIdempotent: true,
|
|
1921
|
+
},
|
|
1221
1922
|
],
|
|
1222
|
-
['cancel', 'POST', '/orders', '/cancel', true, null, false, {}],
|
|
1223
1923
|
[
|
|
1224
1924
|
'createRefundableCreditNote',
|
|
1225
1925
|
'POST',
|
|
@@ -1229,13 +1929,62 @@ export const Endpoints = {
|
|
|
1229
1929
|
null,
|
|
1230
1930
|
false,
|
|
1231
1931
|
{},
|
|
1932
|
+
{
|
|
1933
|
+
isIdempotent: true,
|
|
1934
|
+
},
|
|
1935
|
+
],
|
|
1936
|
+
[
|
|
1937
|
+
'reopen',
|
|
1938
|
+
'POST',
|
|
1939
|
+
'/orders',
|
|
1940
|
+
'/reopen',
|
|
1941
|
+
true,
|
|
1942
|
+
null,
|
|
1943
|
+
false,
|
|
1944
|
+
{},
|
|
1945
|
+
{
|
|
1946
|
+
isIdempotent: true,
|
|
1947
|
+
},
|
|
1948
|
+
],
|
|
1949
|
+
['retrieve', 'GET', '/orders', null, true, null, false, {}, {}],
|
|
1950
|
+
[
|
|
1951
|
+
'delete',
|
|
1952
|
+
'POST',
|
|
1953
|
+
'/orders',
|
|
1954
|
+
'/delete',
|
|
1955
|
+
true,
|
|
1956
|
+
null,
|
|
1957
|
+
false,
|
|
1958
|
+
{},
|
|
1959
|
+
{
|
|
1960
|
+
isIdempotent: true,
|
|
1961
|
+
},
|
|
1962
|
+
],
|
|
1963
|
+
['list', 'GET', '/orders', null, false, null, false, {}, {}],
|
|
1964
|
+
[
|
|
1965
|
+
'ordersForInvoice',
|
|
1966
|
+
'GET',
|
|
1967
|
+
'/invoices',
|
|
1968
|
+
'/orders',
|
|
1969
|
+
true,
|
|
1970
|
+
null,
|
|
1971
|
+
false,
|
|
1972
|
+
{},
|
|
1973
|
+
{},
|
|
1974
|
+
],
|
|
1975
|
+
[
|
|
1976
|
+
'resend',
|
|
1977
|
+
'POST',
|
|
1978
|
+
'/orders',
|
|
1979
|
+
'/resend',
|
|
1980
|
+
true,
|
|
1981
|
+
null,
|
|
1982
|
+
false,
|
|
1983
|
+
{},
|
|
1984
|
+
{
|
|
1985
|
+
isIdempotent: true,
|
|
1986
|
+
},
|
|
1232
1987
|
],
|
|
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
1988
|
],
|
|
1240
1989
|
gift: [
|
|
1241
1990
|
[
|
|
@@ -1249,6 +1998,9 @@ export const Endpoints = {
|
|
|
1249
1998
|
{
|
|
1250
1999
|
additional_information: 1,
|
|
1251
2000
|
},
|
|
2001
|
+
{
|
|
2002
|
+
isIdempotent: true,
|
|
2003
|
+
},
|
|
1252
2004
|
],
|
|
1253
2005
|
[
|
|
1254
2006
|
'createForItems',
|
|
@@ -1261,12 +2013,51 @@ export const Endpoints = {
|
|
|
1261
2013
|
{
|
|
1262
2014
|
additional_information: 1,
|
|
1263
2015
|
},
|
|
2016
|
+
{
|
|
2017
|
+
isIdempotent: true,
|
|
2018
|
+
},
|
|
2019
|
+
],
|
|
2020
|
+
['retrieve', 'GET', '/gifts', null, true, null, false, {}, {}],
|
|
2021
|
+
['list', 'GET', '/gifts', null, false, null, false, {}, {}],
|
|
2022
|
+
[
|
|
2023
|
+
'claim',
|
|
2024
|
+
'POST',
|
|
2025
|
+
'/gifts',
|
|
2026
|
+
'/claim',
|
|
2027
|
+
true,
|
|
2028
|
+
null,
|
|
2029
|
+
false,
|
|
2030
|
+
{},
|
|
2031
|
+
{
|
|
2032
|
+
isIdempotent: true,
|
|
2033
|
+
},
|
|
2034
|
+
],
|
|
2035
|
+
[
|
|
2036
|
+
'cancel',
|
|
2037
|
+
'POST',
|
|
2038
|
+
'/gifts',
|
|
2039
|
+
'/cancel',
|
|
2040
|
+
true,
|
|
2041
|
+
null,
|
|
2042
|
+
false,
|
|
2043
|
+
{},
|
|
2044
|
+
{
|
|
2045
|
+
isIdempotent: true,
|
|
2046
|
+
},
|
|
2047
|
+
],
|
|
2048
|
+
[
|
|
2049
|
+
'updateGift',
|
|
2050
|
+
'POST',
|
|
2051
|
+
'/gifts',
|
|
2052
|
+
'/update_gift',
|
|
2053
|
+
true,
|
|
2054
|
+
null,
|
|
2055
|
+
false,
|
|
2056
|
+
{},
|
|
2057
|
+
{
|
|
2058
|
+
isIdempotent: true,
|
|
2059
|
+
},
|
|
1264
2060
|
],
|
|
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
2061
|
],
|
|
1271
2062
|
transaction: [
|
|
1272
2063
|
[
|
|
@@ -1278,6 +2069,9 @@ export const Endpoints = {
|
|
|
1278
2069
|
null,
|
|
1279
2070
|
false,
|
|
1280
2071
|
{},
|
|
2072
|
+
{
|
|
2073
|
+
isIdempotent: true,
|
|
2074
|
+
},
|
|
1281
2075
|
],
|
|
1282
2076
|
[
|
|
1283
2077
|
'voidTransaction',
|
|
@@ -1288,6 +2082,9 @@ export const Endpoints = {
|
|
|
1288
2082
|
null,
|
|
1289
2083
|
false,
|
|
1290
2084
|
{},
|
|
2085
|
+
{
|
|
2086
|
+
isIdempotent: true,
|
|
2087
|
+
},
|
|
1291
2088
|
],
|
|
1292
2089
|
[
|
|
1293
2090
|
'recordRefund',
|
|
@@ -1298,10 +2095,37 @@ export const Endpoints = {
|
|
|
1298
2095
|
null,
|
|
1299
2096
|
false,
|
|
1300
2097
|
{},
|
|
2098
|
+
{
|
|
2099
|
+
isIdempotent: true,
|
|
2100
|
+
},
|
|
2101
|
+
],
|
|
2102
|
+
[
|
|
2103
|
+
'reconcile',
|
|
2104
|
+
'POST',
|
|
2105
|
+
'/transactions',
|
|
2106
|
+
'/reconcile',
|
|
2107
|
+
true,
|
|
2108
|
+
null,
|
|
2109
|
+
false,
|
|
2110
|
+
{},
|
|
2111
|
+
{
|
|
2112
|
+
isIdempotent: true,
|
|
2113
|
+
},
|
|
2114
|
+
],
|
|
2115
|
+
[
|
|
2116
|
+
'refund',
|
|
2117
|
+
'POST',
|
|
2118
|
+
'/transactions',
|
|
2119
|
+
'/refund',
|
|
2120
|
+
true,
|
|
2121
|
+
null,
|
|
2122
|
+
false,
|
|
2123
|
+
{},
|
|
2124
|
+
{
|
|
2125
|
+
isIdempotent: true,
|
|
2126
|
+
},
|
|
1301
2127
|
],
|
|
1302
|
-
['
|
|
1303
|
-
['refund', 'POST', '/transactions', '/refund', true, null, false, {}],
|
|
1304
|
-
['list', 'GET', '/transactions', null, false, null, false, {}],
|
|
2128
|
+
['list', 'GET', '/transactions', null, false, null, false, {}, {}],
|
|
1305
2129
|
[
|
|
1306
2130
|
'transactionsForCustomer',
|
|
1307
2131
|
'GET',
|
|
@@ -1311,6 +2135,7 @@ export const Endpoints = {
|
|
|
1311
2135
|
null,
|
|
1312
2136
|
false,
|
|
1313
2137
|
{},
|
|
2138
|
+
{},
|
|
1314
2139
|
],
|
|
1315
2140
|
[
|
|
1316
2141
|
'transactionsForSubscription',
|
|
@@ -1321,6 +2146,7 @@ export const Endpoints = {
|
|
|
1321
2146
|
null,
|
|
1322
2147
|
false,
|
|
1323
2148
|
{},
|
|
2149
|
+
{},
|
|
1324
2150
|
],
|
|
1325
2151
|
[
|
|
1326
2152
|
'paymentsForInvoice',
|
|
@@ -1331,8 +2157,9 @@ export const Endpoints = {
|
|
|
1331
2157
|
null,
|
|
1332
2158
|
false,
|
|
1333
2159
|
{},
|
|
2160
|
+
{},
|
|
1334
2161
|
],
|
|
1335
|
-
['retrieve', 'GET', '/transactions', null, true, null, false, {}],
|
|
2162
|
+
['retrieve', 'GET', '/transactions', null, true, null, false, {}, {}],
|
|
1336
2163
|
[
|
|
1337
2164
|
'deleteOfflineTransaction',
|
|
1338
2165
|
'POST',
|
|
@@ -1342,6 +2169,9 @@ export const Endpoints = {
|
|
|
1342
2169
|
null,
|
|
1343
2170
|
false,
|
|
1344
2171
|
{},
|
|
2172
|
+
{
|
|
2173
|
+
isIdempotent: true,
|
|
2174
|
+
},
|
|
1345
2175
|
],
|
|
1346
2176
|
],
|
|
1347
2177
|
hostedPage: [
|
|
@@ -1354,6 +2184,9 @@ export const Endpoints = {
|
|
|
1354
2184
|
null,
|
|
1355
2185
|
false,
|
|
1356
2186
|
{},
|
|
2187
|
+
{
|
|
2188
|
+
isIdempotent: true,
|
|
2189
|
+
},
|
|
1357
2190
|
],
|
|
1358
2191
|
[
|
|
1359
2192
|
'checkoutOneTime',
|
|
@@ -1364,6 +2197,9 @@ export const Endpoints = {
|
|
|
1364
2197
|
null,
|
|
1365
2198
|
false,
|
|
1366
2199
|
{},
|
|
2200
|
+
{
|
|
2201
|
+
isIdempotent: true,
|
|
2202
|
+
},
|
|
1367
2203
|
],
|
|
1368
2204
|
[
|
|
1369
2205
|
'checkoutOneTimeForItems',
|
|
@@ -1374,6 +2210,9 @@ export const Endpoints = {
|
|
|
1374
2210
|
null,
|
|
1375
2211
|
false,
|
|
1376
2212
|
{},
|
|
2213
|
+
{
|
|
2214
|
+
isIdempotent: true,
|
|
2215
|
+
},
|
|
1377
2216
|
],
|
|
1378
2217
|
[
|
|
1379
2218
|
'checkoutNewForItems',
|
|
@@ -1384,6 +2223,9 @@ export const Endpoints = {
|
|
|
1384
2223
|
null,
|
|
1385
2224
|
false,
|
|
1386
2225
|
{},
|
|
2226
|
+
{
|
|
2227
|
+
isIdempotent: true,
|
|
2228
|
+
},
|
|
1387
2229
|
],
|
|
1388
2230
|
[
|
|
1389
2231
|
'checkoutExisting',
|
|
@@ -1394,6 +2236,9 @@ export const Endpoints = {
|
|
|
1394
2236
|
null,
|
|
1395
2237
|
false,
|
|
1396
2238
|
{},
|
|
2239
|
+
{
|
|
2240
|
+
isIdempotent: true,
|
|
2241
|
+
},
|
|
1397
2242
|
],
|
|
1398
2243
|
[
|
|
1399
2244
|
'checkoutExistingForItems',
|
|
@@ -1404,6 +2249,9 @@ export const Endpoints = {
|
|
|
1404
2249
|
null,
|
|
1405
2250
|
false,
|
|
1406
2251
|
{},
|
|
2252
|
+
{
|
|
2253
|
+
isIdempotent: true,
|
|
2254
|
+
},
|
|
1407
2255
|
],
|
|
1408
2256
|
[
|
|
1409
2257
|
'updateCard',
|
|
@@ -1414,6 +2262,9 @@ export const Endpoints = {
|
|
|
1414
2262
|
null,
|
|
1415
2263
|
false,
|
|
1416
2264
|
{},
|
|
2265
|
+
{
|
|
2266
|
+
isIdempotent: true,
|
|
2267
|
+
},
|
|
1417
2268
|
],
|
|
1418
2269
|
[
|
|
1419
2270
|
'updatePaymentMethod',
|
|
@@ -1424,6 +2275,9 @@ export const Endpoints = {
|
|
|
1424
2275
|
null,
|
|
1425
2276
|
false,
|
|
1426
2277
|
{},
|
|
2278
|
+
{
|
|
2279
|
+
isIdempotent: true,
|
|
2280
|
+
},
|
|
1427
2281
|
],
|
|
1428
2282
|
[
|
|
1429
2283
|
'managePaymentSources',
|
|
@@ -1434,6 +2288,9 @@ export const Endpoints = {
|
|
|
1434
2288
|
null,
|
|
1435
2289
|
false,
|
|
1436
2290
|
{},
|
|
2291
|
+
{
|
|
2292
|
+
isIdempotent: true,
|
|
2293
|
+
},
|
|
1437
2294
|
],
|
|
1438
2295
|
[
|
|
1439
2296
|
'collectNow',
|
|
@@ -1444,6 +2301,9 @@ export const Endpoints = {
|
|
|
1444
2301
|
null,
|
|
1445
2302
|
false,
|
|
1446
2303
|
{},
|
|
2304
|
+
{
|
|
2305
|
+
isIdempotent: true,
|
|
2306
|
+
},
|
|
1447
2307
|
],
|
|
1448
2308
|
[
|
|
1449
2309
|
'acceptQuote',
|
|
@@ -1454,6 +2314,9 @@ export const Endpoints = {
|
|
|
1454
2314
|
null,
|
|
1455
2315
|
false,
|
|
1456
2316
|
{},
|
|
2317
|
+
{
|
|
2318
|
+
isIdempotent: true,
|
|
2319
|
+
},
|
|
1457
2320
|
],
|
|
1458
2321
|
[
|
|
1459
2322
|
'extendSubscription',
|
|
@@ -1464,6 +2327,9 @@ export const Endpoints = {
|
|
|
1464
2327
|
null,
|
|
1465
2328
|
false,
|
|
1466
2329
|
{},
|
|
2330
|
+
{
|
|
2331
|
+
isIdempotent: true,
|
|
2332
|
+
},
|
|
1467
2333
|
],
|
|
1468
2334
|
[
|
|
1469
2335
|
'checkoutGift',
|
|
@@ -1474,6 +2340,9 @@ export const Endpoints = {
|
|
|
1474
2340
|
null,
|
|
1475
2341
|
false,
|
|
1476
2342
|
{},
|
|
2343
|
+
{
|
|
2344
|
+
isIdempotent: true,
|
|
2345
|
+
},
|
|
1477
2346
|
],
|
|
1478
2347
|
[
|
|
1479
2348
|
'checkoutGiftForItems',
|
|
@@ -1484,6 +2353,9 @@ export const Endpoints = {
|
|
|
1484
2353
|
null,
|
|
1485
2354
|
false,
|
|
1486
2355
|
{},
|
|
2356
|
+
{
|
|
2357
|
+
isIdempotent: true,
|
|
2358
|
+
},
|
|
1487
2359
|
],
|
|
1488
2360
|
[
|
|
1489
2361
|
'claimGift',
|
|
@@ -1494,6 +2366,9 @@ export const Endpoints = {
|
|
|
1494
2366
|
null,
|
|
1495
2367
|
false,
|
|
1496
2368
|
{},
|
|
2369
|
+
{
|
|
2370
|
+
isIdempotent: true,
|
|
2371
|
+
},
|
|
1497
2372
|
],
|
|
1498
2373
|
[
|
|
1499
2374
|
'retrieveAgreementPdf',
|
|
@@ -1504,6 +2379,9 @@ export const Endpoints = {
|
|
|
1504
2379
|
null,
|
|
1505
2380
|
false,
|
|
1506
2381
|
{},
|
|
2382
|
+
{
|
|
2383
|
+
isIdempotent: true,
|
|
2384
|
+
},
|
|
1507
2385
|
],
|
|
1508
2386
|
[
|
|
1509
2387
|
'acknowledge',
|
|
@@ -1514,9 +2392,12 @@ export const Endpoints = {
|
|
|
1514
2392
|
null,
|
|
1515
2393
|
false,
|
|
1516
2394
|
{},
|
|
2395
|
+
{
|
|
2396
|
+
isIdempotent: true,
|
|
2397
|
+
},
|
|
1517
2398
|
],
|
|
1518
|
-
['retrieve', 'GET', '/hosted_pages', null, true, null, false, {}],
|
|
1519
|
-
['list', 'GET', '/hosted_pages', null, false, null, false, {}],
|
|
2399
|
+
['retrieve', 'GET', '/hosted_pages', null, true, null, false, {}, {}],
|
|
2400
|
+
['list', 'GET', '/hosted_pages', null, false, null, false, {}, {}],
|
|
1520
2401
|
[
|
|
1521
2402
|
'preCancel',
|
|
1522
2403
|
'POST',
|
|
@@ -1526,6 +2407,9 @@ export const Endpoints = {
|
|
|
1526
2407
|
null,
|
|
1527
2408
|
false,
|
|
1528
2409
|
{},
|
|
2410
|
+
{
|
|
2411
|
+
isIdempotent: true,
|
|
2412
|
+
},
|
|
1529
2413
|
],
|
|
1530
2414
|
[
|
|
1531
2415
|
'events',
|
|
@@ -1538,6 +2422,9 @@ export const Endpoints = {
|
|
|
1538
2422
|
{
|
|
1539
2423
|
event_data: 0,
|
|
1540
2424
|
},
|
|
2425
|
+
{
|
|
2426
|
+
isIdempotent: true,
|
|
2427
|
+
},
|
|
1541
2428
|
],
|
|
1542
2429
|
[
|
|
1543
2430
|
'viewVoucher',
|
|
@@ -1548,6 +2435,9 @@ export const Endpoints = {
|
|
|
1548
2435
|
null,
|
|
1549
2436
|
false,
|
|
1550
2437
|
{},
|
|
2438
|
+
{
|
|
2439
|
+
isIdempotent: true,
|
|
2440
|
+
},
|
|
1551
2441
|
],
|
|
1552
2442
|
],
|
|
1553
2443
|
estimate: [
|
|
@@ -1562,6 +2452,7 @@ export const Endpoints = {
|
|
|
1562
2452
|
{
|
|
1563
2453
|
exemption_details: 1,
|
|
1564
2454
|
},
|
|
2455
|
+
{},
|
|
1565
2456
|
],
|
|
1566
2457
|
[
|
|
1567
2458
|
'createSubItemEstimate',
|
|
@@ -1574,6 +2465,7 @@ export const Endpoints = {
|
|
|
1574
2465
|
{
|
|
1575
2466
|
exemption_details: 1,
|
|
1576
2467
|
},
|
|
2468
|
+
{},
|
|
1577
2469
|
],
|
|
1578
2470
|
[
|
|
1579
2471
|
'createSubForCustomerEstimate',
|
|
@@ -1584,6 +2476,7 @@ export const Endpoints = {
|
|
|
1584
2476
|
null,
|
|
1585
2477
|
false,
|
|
1586
2478
|
{},
|
|
2479
|
+
{},
|
|
1587
2480
|
],
|
|
1588
2481
|
[
|
|
1589
2482
|
'createSubItemForCustomerEstimate',
|
|
@@ -1594,6 +2487,7 @@ export const Endpoints = {
|
|
|
1594
2487
|
null,
|
|
1595
2488
|
false,
|
|
1596
2489
|
{},
|
|
2490
|
+
{},
|
|
1597
2491
|
],
|
|
1598
2492
|
[
|
|
1599
2493
|
'updateSubscription',
|
|
@@ -1604,6 +2498,7 @@ export const Endpoints = {
|
|
|
1604
2498
|
null,
|
|
1605
2499
|
false,
|
|
1606
2500
|
{},
|
|
2501
|
+
{},
|
|
1607
2502
|
],
|
|
1608
2503
|
[
|
|
1609
2504
|
'updateSubscriptionForItems',
|
|
@@ -1614,6 +2509,7 @@ export const Endpoints = {
|
|
|
1614
2509
|
null,
|
|
1615
2510
|
false,
|
|
1616
2511
|
{},
|
|
2512
|
+
{},
|
|
1617
2513
|
],
|
|
1618
2514
|
[
|
|
1619
2515
|
'renewalEstimate',
|
|
@@ -1624,6 +2520,7 @@ export const Endpoints = {
|
|
|
1624
2520
|
null,
|
|
1625
2521
|
false,
|
|
1626
2522
|
{},
|
|
2523
|
+
{},
|
|
1627
2524
|
],
|
|
1628
2525
|
[
|
|
1629
2526
|
'advanceInvoiceEstimate',
|
|
@@ -1634,6 +2531,7 @@ export const Endpoints = {
|
|
|
1634
2531
|
null,
|
|
1635
2532
|
false,
|
|
1636
2533
|
{},
|
|
2534
|
+
{},
|
|
1637
2535
|
],
|
|
1638
2536
|
[
|
|
1639
2537
|
'regenerateInvoiceEstimate',
|
|
@@ -1644,6 +2542,7 @@ export const Endpoints = {
|
|
|
1644
2542
|
null,
|
|
1645
2543
|
false,
|
|
1646
2544
|
{},
|
|
2545
|
+
{},
|
|
1647
2546
|
],
|
|
1648
2547
|
[
|
|
1649
2548
|
'upcomingInvoicesEstimate',
|
|
@@ -1654,6 +2553,7 @@ export const Endpoints = {
|
|
|
1654
2553
|
null,
|
|
1655
2554
|
false,
|
|
1656
2555
|
{},
|
|
2556
|
+
{},
|
|
1657
2557
|
],
|
|
1658
2558
|
[
|
|
1659
2559
|
'changeTermEnd',
|
|
@@ -1664,6 +2564,7 @@ export const Endpoints = {
|
|
|
1664
2564
|
null,
|
|
1665
2565
|
false,
|
|
1666
2566
|
{},
|
|
2567
|
+
{},
|
|
1667
2568
|
],
|
|
1668
2569
|
[
|
|
1669
2570
|
'cancelSubscription',
|
|
@@ -1674,6 +2575,7 @@ export const Endpoints = {
|
|
|
1674
2575
|
null,
|
|
1675
2576
|
false,
|
|
1676
2577
|
{},
|
|
2578
|
+
{},
|
|
1677
2579
|
],
|
|
1678
2580
|
[
|
|
1679
2581
|
'cancelSubscriptionForItems',
|
|
@@ -1684,6 +2586,7 @@ export const Endpoints = {
|
|
|
1684
2586
|
null,
|
|
1685
2587
|
false,
|
|
1686
2588
|
{},
|
|
2589
|
+
{},
|
|
1687
2590
|
],
|
|
1688
2591
|
[
|
|
1689
2592
|
'pauseSubscription',
|
|
@@ -1694,6 +2597,7 @@ export const Endpoints = {
|
|
|
1694
2597
|
null,
|
|
1695
2598
|
false,
|
|
1696
2599
|
{},
|
|
2600
|
+
{},
|
|
1697
2601
|
],
|
|
1698
2602
|
[
|
|
1699
2603
|
'resumeSubscription',
|
|
@@ -1704,6 +2608,7 @@ export const Endpoints = {
|
|
|
1704
2608
|
null,
|
|
1705
2609
|
false,
|
|
1706
2610
|
{},
|
|
2611
|
+
{},
|
|
1707
2612
|
],
|
|
1708
2613
|
[
|
|
1709
2614
|
'giftSubscription',
|
|
@@ -1716,6 +2621,7 @@ export const Endpoints = {
|
|
|
1716
2621
|
{
|
|
1717
2622
|
additional_information: 1,
|
|
1718
2623
|
},
|
|
2624
|
+
{},
|
|
1719
2625
|
],
|
|
1720
2626
|
[
|
|
1721
2627
|
'giftSubscriptionForItems',
|
|
@@ -1728,6 +2634,7 @@ export const Endpoints = {
|
|
|
1728
2634
|
{
|
|
1729
2635
|
additional_information: 1,
|
|
1730
2636
|
},
|
|
2637
|
+
{},
|
|
1731
2638
|
],
|
|
1732
2639
|
[
|
|
1733
2640
|
'createInvoice',
|
|
@@ -1738,6 +2645,7 @@ export const Endpoints = {
|
|
|
1738
2645
|
null,
|
|
1739
2646
|
false,
|
|
1740
2647
|
{},
|
|
2648
|
+
{},
|
|
1741
2649
|
],
|
|
1742
2650
|
[
|
|
1743
2651
|
'createInvoiceForItems',
|
|
@@ -1748,6 +2656,7 @@ export const Endpoints = {
|
|
|
1748
2656
|
null,
|
|
1749
2657
|
false,
|
|
1750
2658
|
{},
|
|
2659
|
+
{},
|
|
1751
2660
|
],
|
|
1752
2661
|
[
|
|
1753
2662
|
'paymentSchedules',
|
|
@@ -1758,10 +2667,13 @@ export const Endpoints = {
|
|
|
1758
2667
|
null,
|
|
1759
2668
|
false,
|
|
1760
2669
|
{},
|
|
2670
|
+
{
|
|
2671
|
+
isIdempotent: true,
|
|
2672
|
+
},
|
|
1761
2673
|
],
|
|
1762
2674
|
],
|
|
1763
2675
|
quote: [
|
|
1764
|
-
['retrieve', 'GET', '/quotes', null, true, null, false, {}],
|
|
2676
|
+
['retrieve', 'GET', '/quotes', null, true, null, false, {}, {}],
|
|
1765
2677
|
[
|
|
1766
2678
|
'createSubForCustomerQuote',
|
|
1767
2679
|
'POST',
|
|
@@ -1771,6 +2683,9 @@ export const Endpoints = {
|
|
|
1771
2683
|
null,
|
|
1772
2684
|
false,
|
|
1773
2685
|
{},
|
|
2686
|
+
{
|
|
2687
|
+
isIdempotent: true,
|
|
2688
|
+
},
|
|
1774
2689
|
],
|
|
1775
2690
|
[
|
|
1776
2691
|
'editCreateSubForCustomerQuote',
|
|
@@ -1781,6 +2696,9 @@ export const Endpoints = {
|
|
|
1781
2696
|
null,
|
|
1782
2697
|
false,
|
|
1783
2698
|
{},
|
|
2699
|
+
{
|
|
2700
|
+
isIdempotent: true,
|
|
2701
|
+
},
|
|
1784
2702
|
],
|
|
1785
2703
|
[
|
|
1786
2704
|
'updateSubscriptionQuote',
|
|
@@ -1791,6 +2709,9 @@ export const Endpoints = {
|
|
|
1791
2709
|
null,
|
|
1792
2710
|
false,
|
|
1793
2711
|
{},
|
|
2712
|
+
{
|
|
2713
|
+
isIdempotent: true,
|
|
2714
|
+
},
|
|
1794
2715
|
],
|
|
1795
2716
|
[
|
|
1796
2717
|
'editUpdateSubscriptionQuote',
|
|
@@ -1801,6 +2722,9 @@ export const Endpoints = {
|
|
|
1801
2722
|
null,
|
|
1802
2723
|
false,
|
|
1803
2724
|
{},
|
|
2725
|
+
{
|
|
2726
|
+
isIdempotent: true,
|
|
2727
|
+
},
|
|
1804
2728
|
],
|
|
1805
2729
|
[
|
|
1806
2730
|
'createForOnetimeCharges',
|
|
@@ -1811,6 +2735,9 @@ export const Endpoints = {
|
|
|
1811
2735
|
null,
|
|
1812
2736
|
false,
|
|
1813
2737
|
{},
|
|
2738
|
+
{
|
|
2739
|
+
isIdempotent: true,
|
|
2740
|
+
},
|
|
1814
2741
|
],
|
|
1815
2742
|
[
|
|
1816
2743
|
'editOneTimeQuote',
|
|
@@ -1821,6 +2748,9 @@ export const Endpoints = {
|
|
|
1821
2748
|
null,
|
|
1822
2749
|
false,
|
|
1823
2750
|
{},
|
|
2751
|
+
{
|
|
2752
|
+
isIdempotent: true,
|
|
2753
|
+
},
|
|
1824
2754
|
],
|
|
1825
2755
|
[
|
|
1826
2756
|
'createSubItemsForCustomerQuote',
|
|
@@ -1831,6 +2761,9 @@ export const Endpoints = {
|
|
|
1831
2761
|
null,
|
|
1832
2762
|
false,
|
|
1833
2763
|
{},
|
|
2764
|
+
{
|
|
2765
|
+
isIdempotent: true,
|
|
2766
|
+
},
|
|
1834
2767
|
],
|
|
1835
2768
|
[
|
|
1836
2769
|
'editCreateSubCustomerQuoteForItems',
|
|
@@ -1841,6 +2774,9 @@ export const Endpoints = {
|
|
|
1841
2774
|
null,
|
|
1842
2775
|
false,
|
|
1843
2776
|
{},
|
|
2777
|
+
{
|
|
2778
|
+
isIdempotent: true,
|
|
2779
|
+
},
|
|
1844
2780
|
],
|
|
1845
2781
|
[
|
|
1846
2782
|
'updateSubscriptionQuoteForItems',
|
|
@@ -1851,6 +2787,9 @@ export const Endpoints = {
|
|
|
1851
2787
|
null,
|
|
1852
2788
|
false,
|
|
1853
2789
|
{},
|
|
2790
|
+
{
|
|
2791
|
+
isIdempotent: true,
|
|
2792
|
+
},
|
|
1854
2793
|
],
|
|
1855
2794
|
[
|
|
1856
2795
|
'editUpdateSubscriptionQuoteForItems',
|
|
@@ -1861,6 +2800,9 @@ export const Endpoints = {
|
|
|
1861
2800
|
null,
|
|
1862
2801
|
false,
|
|
1863
2802
|
{},
|
|
2803
|
+
{
|
|
2804
|
+
isIdempotent: true,
|
|
2805
|
+
},
|
|
1864
2806
|
],
|
|
1865
2807
|
[
|
|
1866
2808
|
'createForChargeItemsAndCharges',
|
|
@@ -1871,6 +2813,9 @@ export const Endpoints = {
|
|
|
1871
2813
|
null,
|
|
1872
2814
|
false,
|
|
1873
2815
|
{},
|
|
2816
|
+
{
|
|
2817
|
+
isIdempotent: true,
|
|
2818
|
+
},
|
|
1874
2819
|
],
|
|
1875
2820
|
[
|
|
1876
2821
|
'editForChargeItemsAndCharges',
|
|
@@ -1881,8 +2826,11 @@ export const Endpoints = {
|
|
|
1881
2826
|
null,
|
|
1882
2827
|
false,
|
|
1883
2828
|
{},
|
|
2829
|
+
{
|
|
2830
|
+
isIdempotent: true,
|
|
2831
|
+
},
|
|
1884
2832
|
],
|
|
1885
|
-
['list', 'GET', '/quotes', null, false, null, false, {}],
|
|
2833
|
+
['list', 'GET', '/quotes', null, false, null, false, {}, {}],
|
|
1886
2834
|
[
|
|
1887
2835
|
'quoteLineGroupsForQuote',
|
|
1888
2836
|
'GET',
|
|
@@ -1892,8 +2840,21 @@ export const Endpoints = {
|
|
|
1892
2840
|
null,
|
|
1893
2841
|
false,
|
|
1894
2842
|
{},
|
|
2843
|
+
{},
|
|
2844
|
+
],
|
|
2845
|
+
[
|
|
2846
|
+
'convert',
|
|
2847
|
+
'POST',
|
|
2848
|
+
'/quotes',
|
|
2849
|
+
'/convert',
|
|
2850
|
+
true,
|
|
2851
|
+
null,
|
|
2852
|
+
false,
|
|
2853
|
+
{},
|
|
2854
|
+
{
|
|
2855
|
+
isIdempotent: true,
|
|
2856
|
+
},
|
|
1895
2857
|
],
|
|
1896
|
-
['convert', 'POST', '/quotes', '/convert', true, null, false, {}],
|
|
1897
2858
|
[
|
|
1898
2859
|
'updateStatus',
|
|
1899
2860
|
'POST',
|
|
@@ -1903,6 +2864,9 @@ export const Endpoints = {
|
|
|
1903
2864
|
null,
|
|
1904
2865
|
false,
|
|
1905
2866
|
{},
|
|
2867
|
+
{
|
|
2868
|
+
isIdempotent: true,
|
|
2869
|
+
},
|
|
1906
2870
|
],
|
|
1907
2871
|
[
|
|
1908
2872
|
'extendExpiryDate',
|
|
@@ -1913,9 +2877,36 @@ export const Endpoints = {
|
|
|
1913
2877
|
null,
|
|
1914
2878
|
false,
|
|
1915
2879
|
{},
|
|
2880
|
+
{
|
|
2881
|
+
isIdempotent: true,
|
|
2882
|
+
},
|
|
2883
|
+
],
|
|
2884
|
+
[
|
|
2885
|
+
'delete',
|
|
2886
|
+
'POST',
|
|
2887
|
+
'/quotes',
|
|
2888
|
+
'/delete',
|
|
2889
|
+
true,
|
|
2890
|
+
null,
|
|
2891
|
+
false,
|
|
2892
|
+
{},
|
|
2893
|
+
{
|
|
2894
|
+
isIdempotent: true,
|
|
2895
|
+
},
|
|
2896
|
+
],
|
|
2897
|
+
[
|
|
2898
|
+
'pdf',
|
|
2899
|
+
'POST',
|
|
2900
|
+
'/quotes',
|
|
2901
|
+
'/pdf',
|
|
2902
|
+
true,
|
|
2903
|
+
null,
|
|
2904
|
+
false,
|
|
2905
|
+
{},
|
|
2906
|
+
{
|
|
2907
|
+
isIdempotent: true,
|
|
2908
|
+
},
|
|
1916
2909
|
],
|
|
1917
|
-
['delete', 'POST', '/quotes', '/delete', true, null, false, {}],
|
|
1918
|
-
['pdf', 'POST', '/quotes', '/pdf', true, null, false, {}],
|
|
1919
2910
|
],
|
|
1920
2911
|
quotedSubscription: [],
|
|
1921
2912
|
quotedCharge: [],
|
|
@@ -1932,6 +2923,9 @@ export const Endpoints = {
|
|
|
1932
2923
|
{
|
|
1933
2924
|
meta_data: 0,
|
|
1934
2925
|
},
|
|
2926
|
+
{
|
|
2927
|
+
isIdempotent: true,
|
|
2928
|
+
},
|
|
1935
2929
|
],
|
|
1936
2930
|
[
|
|
1937
2931
|
'update',
|
|
@@ -1944,12 +2938,51 @@ export const Endpoints = {
|
|
|
1944
2938
|
{
|
|
1945
2939
|
meta_data: 0,
|
|
1946
2940
|
},
|
|
2941
|
+
{
|
|
2942
|
+
isIdempotent: true,
|
|
2943
|
+
},
|
|
2944
|
+
],
|
|
2945
|
+
['list', 'GET', '/plans', null, false, null, false, {}, {}],
|
|
2946
|
+
['retrieve', 'GET', '/plans', null, true, null, false, {}, {}],
|
|
2947
|
+
[
|
|
2948
|
+
'delete',
|
|
2949
|
+
'POST',
|
|
2950
|
+
'/plans',
|
|
2951
|
+
'/delete',
|
|
2952
|
+
true,
|
|
2953
|
+
null,
|
|
2954
|
+
false,
|
|
2955
|
+
{},
|
|
2956
|
+
{
|
|
2957
|
+
isIdempotent: true,
|
|
2958
|
+
},
|
|
2959
|
+
],
|
|
2960
|
+
[
|
|
2961
|
+
'copy',
|
|
2962
|
+
'POST',
|
|
2963
|
+
'/plans',
|
|
2964
|
+
'/copy',
|
|
2965
|
+
false,
|
|
2966
|
+
null,
|
|
2967
|
+
false,
|
|
2968
|
+
{},
|
|
2969
|
+
{
|
|
2970
|
+
isIdempotent: true,
|
|
2971
|
+
},
|
|
2972
|
+
],
|
|
2973
|
+
[
|
|
2974
|
+
'unarchive',
|
|
2975
|
+
'POST',
|
|
2976
|
+
'/plans',
|
|
2977
|
+
'/unarchive',
|
|
2978
|
+
true,
|
|
2979
|
+
null,
|
|
2980
|
+
false,
|
|
2981
|
+
{},
|
|
2982
|
+
{
|
|
2983
|
+
isIdempotent: true,
|
|
2984
|
+
},
|
|
1947
2985
|
],
|
|
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
2986
|
],
|
|
1954
2987
|
addon: [
|
|
1955
2988
|
[
|
|
@@ -1963,6 +2996,9 @@ export const Endpoints = {
|
|
|
1963
2996
|
{
|
|
1964
2997
|
meta_data: 0,
|
|
1965
2998
|
},
|
|
2999
|
+
{
|
|
3000
|
+
isIdempotent: true,
|
|
3001
|
+
},
|
|
1966
3002
|
],
|
|
1967
3003
|
[
|
|
1968
3004
|
'update',
|
|
@@ -1975,12 +3011,51 @@ export const Endpoints = {
|
|
|
1975
3011
|
{
|
|
1976
3012
|
meta_data: 0,
|
|
1977
3013
|
},
|
|
3014
|
+
{
|
|
3015
|
+
isIdempotent: true,
|
|
3016
|
+
},
|
|
3017
|
+
],
|
|
3018
|
+
['list', 'GET', '/addons', null, false, null, false, {}, {}],
|
|
3019
|
+
['retrieve', 'GET', '/addons', null, true, null, false, {}, {}],
|
|
3020
|
+
[
|
|
3021
|
+
'delete',
|
|
3022
|
+
'POST',
|
|
3023
|
+
'/addons',
|
|
3024
|
+
'/delete',
|
|
3025
|
+
true,
|
|
3026
|
+
null,
|
|
3027
|
+
false,
|
|
3028
|
+
{},
|
|
3029
|
+
{
|
|
3030
|
+
isIdempotent: true,
|
|
3031
|
+
},
|
|
3032
|
+
],
|
|
3033
|
+
[
|
|
3034
|
+
'copy',
|
|
3035
|
+
'POST',
|
|
3036
|
+
'/addons',
|
|
3037
|
+
'/copy',
|
|
3038
|
+
false,
|
|
3039
|
+
null,
|
|
3040
|
+
false,
|
|
3041
|
+
{},
|
|
3042
|
+
{
|
|
3043
|
+
isIdempotent: true,
|
|
3044
|
+
},
|
|
3045
|
+
],
|
|
3046
|
+
[
|
|
3047
|
+
'unarchive',
|
|
3048
|
+
'POST',
|
|
3049
|
+
'/addons',
|
|
3050
|
+
'/unarchive',
|
|
3051
|
+
true,
|
|
3052
|
+
null,
|
|
3053
|
+
false,
|
|
3054
|
+
{},
|
|
3055
|
+
{
|
|
3056
|
+
isIdempotent: true,
|
|
3057
|
+
},
|
|
1978
3058
|
],
|
|
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
3059
|
],
|
|
1985
3060
|
coupon: [
|
|
1986
3061
|
[
|
|
@@ -1994,6 +3069,9 @@ export const Endpoints = {
|
|
|
1994
3069
|
{
|
|
1995
3070
|
meta_data: 0,
|
|
1996
3071
|
},
|
|
3072
|
+
{
|
|
3073
|
+
isIdempotent: true,
|
|
3074
|
+
},
|
|
1997
3075
|
],
|
|
1998
3076
|
[
|
|
1999
3077
|
'createForItems',
|
|
@@ -2010,6 +3088,9 @@ export const Endpoints = {
|
|
|
2010
3088
|
currencies: 1,
|
|
2011
3089
|
item_price_periods: 1,
|
|
2012
3090
|
},
|
|
3091
|
+
{
|
|
3092
|
+
isIdempotent: true,
|
|
3093
|
+
},
|
|
2013
3094
|
],
|
|
2014
3095
|
[
|
|
2015
3096
|
'updateForItems',
|
|
@@ -2026,9 +3107,12 @@ export const Endpoints = {
|
|
|
2026
3107
|
currencies: 1,
|
|
2027
3108
|
item_price_periods: 1,
|
|
2028
3109
|
},
|
|
3110
|
+
{
|
|
3111
|
+
isIdempotent: true,
|
|
3112
|
+
},
|
|
2029
3113
|
],
|
|
2030
|
-
['list', 'GET', '/coupons', null, false, null, false, {}],
|
|
2031
|
-
['retrieve', 'GET', '/coupons', null, true, null, false, {}],
|
|
3114
|
+
['list', 'GET', '/coupons', null, false, null, false, {}, {}],
|
|
3115
|
+
['retrieve', 'GET', '/coupons', null, true, null, false, {}, {}],
|
|
2032
3116
|
[
|
|
2033
3117
|
'update',
|
|
2034
3118
|
'POST',
|
|
@@ -2040,10 +3124,49 @@ export const Endpoints = {
|
|
|
2040
3124
|
{
|
|
2041
3125
|
meta_data: 0,
|
|
2042
3126
|
},
|
|
3127
|
+
{
|
|
3128
|
+
isIdempotent: true,
|
|
3129
|
+
},
|
|
3130
|
+
],
|
|
3131
|
+
[
|
|
3132
|
+
'delete',
|
|
3133
|
+
'POST',
|
|
3134
|
+
'/coupons',
|
|
3135
|
+
'/delete',
|
|
3136
|
+
true,
|
|
3137
|
+
null,
|
|
3138
|
+
false,
|
|
3139
|
+
{},
|
|
3140
|
+
{
|
|
3141
|
+
isIdempotent: true,
|
|
3142
|
+
},
|
|
3143
|
+
],
|
|
3144
|
+
[
|
|
3145
|
+
'copy',
|
|
3146
|
+
'POST',
|
|
3147
|
+
'/coupons',
|
|
3148
|
+
'/copy',
|
|
3149
|
+
false,
|
|
3150
|
+
null,
|
|
3151
|
+
false,
|
|
3152
|
+
{},
|
|
3153
|
+
{
|
|
3154
|
+
isIdempotent: true,
|
|
3155
|
+
},
|
|
3156
|
+
],
|
|
3157
|
+
[
|
|
3158
|
+
'unarchive',
|
|
3159
|
+
'POST',
|
|
3160
|
+
'/coupons',
|
|
3161
|
+
'/unarchive',
|
|
3162
|
+
true,
|
|
3163
|
+
null,
|
|
3164
|
+
false,
|
|
3165
|
+
{},
|
|
3166
|
+
{
|
|
3167
|
+
isIdempotent: true,
|
|
3168
|
+
},
|
|
2043
3169
|
],
|
|
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
3170
|
],
|
|
2048
3171
|
couponSet: [
|
|
2049
3172
|
[
|
|
@@ -2057,6 +3180,9 @@ export const Endpoints = {
|
|
|
2057
3180
|
{
|
|
2058
3181
|
meta_data: 0,
|
|
2059
3182
|
},
|
|
3183
|
+
{
|
|
3184
|
+
isIdempotent: true,
|
|
3185
|
+
},
|
|
2060
3186
|
],
|
|
2061
3187
|
[
|
|
2062
3188
|
'addCouponCodes',
|
|
@@ -2067,9 +3193,12 @@ export const Endpoints = {
|
|
|
2067
3193
|
null,
|
|
2068
3194
|
false,
|
|
2069
3195
|
{},
|
|
3196
|
+
{
|
|
3197
|
+
isIdempotent: true,
|
|
3198
|
+
},
|
|
2070
3199
|
],
|
|
2071
|
-
['list', 'GET', '/coupon_sets', null, false, null, false, {}],
|
|
2072
|
-
['retrieve', 'GET', '/coupon_sets', null, true, null, false, {}],
|
|
3200
|
+
['list', 'GET', '/coupon_sets', null, false, null, false, {}, {}],
|
|
3201
|
+
['retrieve', 'GET', '/coupon_sets', null, true, null, false, {}, {}],
|
|
2073
3202
|
[
|
|
2074
3203
|
'update',
|
|
2075
3204
|
'POST',
|
|
@@ -2081,8 +3210,23 @@ export const Endpoints = {
|
|
|
2081
3210
|
{
|
|
2082
3211
|
meta_data: 0,
|
|
2083
3212
|
},
|
|
3213
|
+
{
|
|
3214
|
+
isIdempotent: true,
|
|
3215
|
+
},
|
|
3216
|
+
],
|
|
3217
|
+
[
|
|
3218
|
+
'delete',
|
|
3219
|
+
'POST',
|
|
3220
|
+
'/coupon_sets',
|
|
3221
|
+
'/delete',
|
|
3222
|
+
true,
|
|
3223
|
+
null,
|
|
3224
|
+
false,
|
|
3225
|
+
{},
|
|
3226
|
+
{
|
|
3227
|
+
isIdempotent: true,
|
|
3228
|
+
},
|
|
2084
3229
|
],
|
|
2085
|
-
['delete', 'POST', '/coupon_sets', '/delete', true, null, false, {}],
|
|
2086
3230
|
[
|
|
2087
3231
|
'deleteUnusedCouponCodes',
|
|
2088
3232
|
'POST',
|
|
@@ -2092,135 +3236,338 @@ export const Endpoints = {
|
|
|
2092
3236
|
null,
|
|
2093
3237
|
false,
|
|
2094
3238
|
{},
|
|
3239
|
+
{
|
|
3240
|
+
isIdempotent: true,
|
|
3241
|
+
},
|
|
2095
3242
|
],
|
|
2096
3243
|
],
|
|
2097
3244
|
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
3245
|
[
|
|
2111
|
-
'
|
|
3246
|
+
'create',
|
|
2112
3247
|
'POST',
|
|
2113
|
-
'/
|
|
2114
|
-
|
|
2115
|
-
|
|
3248
|
+
'/coupon_codes',
|
|
3249
|
+
null,
|
|
3250
|
+
false,
|
|
2116
3251
|
null,
|
|
2117
3252
|
false,
|
|
2118
3253
|
{},
|
|
3254
|
+
{
|
|
3255
|
+
isIdempotent: true,
|
|
3256
|
+
},
|
|
2119
3257
|
],
|
|
2120
|
-
['
|
|
2121
|
-
['
|
|
2122
|
-
],
|
|
2123
|
-
event: [
|
|
2124
|
-
['list', 'GET', '/events', null, false, null, false, {}],
|
|
2125
|
-
['retrieve', 'GET', '/events', null, true, null, false, {}],
|
|
2126
|
-
],
|
|
2127
|
-
comment: [
|
|
2128
|
-
['create', 'POST', '/comments', null, false, null, false, {}],
|
|
2129
|
-
['retrieve', 'GET', '/comments', null, true, null, false, {}],
|
|
2130
|
-
['list', 'GET', '/comments', null, false, null, false, {}],
|
|
2131
|
-
['delete', 'POST', '/comments', '/delete', true, null, false, {}],
|
|
2132
|
-
],
|
|
2133
|
-
download: [],
|
|
2134
|
-
portalSession: [
|
|
2135
|
-
['create', 'POST', '/portal_sessions', null, false, null, false, {}],
|
|
2136
|
-
['retrieve', 'GET', '/portal_sessions', null, true, null, false, {}],
|
|
2137
|
-
['logout', 'POST', '/portal_sessions', '/logout', true, null, false, {}],
|
|
3258
|
+
['retrieve', 'GET', '/coupon_codes', null, true, null, false, {}, {}],
|
|
3259
|
+
['list', 'GET', '/coupon_codes', null, false, null, false, {}, {}],
|
|
2138
3260
|
[
|
|
2139
|
-
'
|
|
3261
|
+
'archive',
|
|
2140
3262
|
'POST',
|
|
2141
|
-
'/
|
|
2142
|
-
'/
|
|
3263
|
+
'/coupon_codes',
|
|
3264
|
+
'/archive',
|
|
2143
3265
|
true,
|
|
2144
3266
|
null,
|
|
2145
3267
|
false,
|
|
2146
3268
|
{},
|
|
3269
|
+
{
|
|
3270
|
+
isIdempotent: true,
|
|
3271
|
+
},
|
|
2147
3272
|
],
|
|
2148
3273
|
],
|
|
2149
|
-
|
|
2150
|
-
['
|
|
2151
|
-
],
|
|
2152
|
-
resourceMigration: [
|
|
3274
|
+
address: [
|
|
3275
|
+
['retrieve', 'GET', '/addresses', null, false, null, false, {}, {}],
|
|
2153
3276
|
[
|
|
2154
|
-
'
|
|
2155
|
-
'
|
|
2156
|
-
'/
|
|
2157
|
-
|
|
3277
|
+
'update',
|
|
3278
|
+
'POST',
|
|
3279
|
+
'/addresses',
|
|
3280
|
+
null,
|
|
2158
3281
|
false,
|
|
2159
3282
|
null,
|
|
2160
3283
|
false,
|
|
2161
3284
|
{},
|
|
3285
|
+
{
|
|
3286
|
+
isIdempotent: true,
|
|
3287
|
+
},
|
|
2162
3288
|
],
|
|
2163
3289
|
],
|
|
2164
|
-
|
|
2165
|
-
['retrieve', 'GET', '/time_machines', null, true, null, false, {}],
|
|
3290
|
+
usage: [
|
|
2166
3291
|
[
|
|
2167
|
-
'
|
|
3292
|
+
'create',
|
|
2168
3293
|
'POST',
|
|
2169
|
-
'/
|
|
2170
|
-
'/
|
|
3294
|
+
'/subscriptions',
|
|
3295
|
+
'/usages',
|
|
2171
3296
|
true,
|
|
2172
3297
|
null,
|
|
2173
3298
|
false,
|
|
2174
3299
|
{},
|
|
3300
|
+
{
|
|
3301
|
+
isIdempotent: true,
|
|
3302
|
+
},
|
|
2175
3303
|
],
|
|
3304
|
+
['retrieve', 'GET', '/subscriptions', '/usages', true, null, false, {}, {}],
|
|
2176
3305
|
[
|
|
2177
|
-
'
|
|
3306
|
+
'delete',
|
|
2178
3307
|
'POST',
|
|
2179
|
-
'/
|
|
2180
|
-
'/
|
|
3308
|
+
'/subscriptions',
|
|
3309
|
+
'/delete_usage',
|
|
2181
3310
|
true,
|
|
2182
3311
|
null,
|
|
2183
3312
|
false,
|
|
2184
3313
|
{},
|
|
3314
|
+
{
|
|
3315
|
+
isIdempotent: true,
|
|
3316
|
+
},
|
|
2185
3317
|
],
|
|
2186
|
-
|
|
2187
|
-
export: [
|
|
2188
|
-
['retrieve', 'GET', '/exports', null, true, null, false, {}],
|
|
3318
|
+
['list', 'GET', '/usages', null, false, null, false, {}, {}],
|
|
2189
3319
|
[
|
|
2190
|
-
'
|
|
3320
|
+
'pdf',
|
|
2191
3321
|
'POST',
|
|
2192
|
-
'/
|
|
2193
|
-
'/
|
|
3322
|
+
'/usages',
|
|
3323
|
+
'/pdf',
|
|
2194
3324
|
false,
|
|
2195
3325
|
null,
|
|
2196
3326
|
false,
|
|
2197
3327
|
{},
|
|
3328
|
+
{
|
|
3329
|
+
isIdempotent: true,
|
|
3330
|
+
},
|
|
2198
3331
|
],
|
|
3332
|
+
],
|
|
3333
|
+
event: [
|
|
3334
|
+
['list', 'GET', '/events', null, false, null, false, {}, {}],
|
|
3335
|
+
['retrieve', 'GET', '/events', null, true, null, false, {}, {}],
|
|
3336
|
+
],
|
|
3337
|
+
comment: [
|
|
2199
3338
|
[
|
|
2200
|
-
'
|
|
3339
|
+
'create',
|
|
2201
3340
|
'POST',
|
|
2202
|
-
'/
|
|
2203
|
-
|
|
3341
|
+
'/comments',
|
|
3342
|
+
null,
|
|
2204
3343
|
false,
|
|
2205
3344
|
null,
|
|
2206
3345
|
false,
|
|
2207
3346
|
{},
|
|
3347
|
+
{
|
|
3348
|
+
isIdempotent: true,
|
|
3349
|
+
},
|
|
2208
3350
|
],
|
|
2209
|
-
['
|
|
2210
|
-
['
|
|
2211
|
-
['coupons', 'POST', '/exports', '/coupons', false, null, false, {}],
|
|
2212
|
-
['customers', 'POST', '/exports', '/customers', false, null, false, {}],
|
|
3351
|
+
['retrieve', 'GET', '/comments', null, true, null, false, {}, {}],
|
|
3352
|
+
['list', 'GET', '/comments', null, false, null, false, {}, {}],
|
|
2213
3353
|
[
|
|
2214
|
-
'
|
|
3354
|
+
'delete',
|
|
2215
3355
|
'POST',
|
|
2216
|
-
'/
|
|
2217
|
-
'/
|
|
3356
|
+
'/comments',
|
|
3357
|
+
'/delete',
|
|
3358
|
+
true,
|
|
3359
|
+
null,
|
|
3360
|
+
false,
|
|
3361
|
+
{},
|
|
3362
|
+
{
|
|
3363
|
+
isIdempotent: true,
|
|
3364
|
+
},
|
|
3365
|
+
],
|
|
3366
|
+
],
|
|
3367
|
+
download: [],
|
|
3368
|
+
portalSession: [
|
|
3369
|
+
[
|
|
3370
|
+
'create',
|
|
3371
|
+
'POST',
|
|
3372
|
+
'/portal_sessions',
|
|
3373
|
+
null,
|
|
3374
|
+
false,
|
|
3375
|
+
null,
|
|
3376
|
+
false,
|
|
3377
|
+
{},
|
|
3378
|
+
{
|
|
3379
|
+
isIdempotent: true,
|
|
3380
|
+
},
|
|
3381
|
+
],
|
|
3382
|
+
['retrieve', 'GET', '/portal_sessions', null, true, null, false, {}, {}],
|
|
3383
|
+
[
|
|
3384
|
+
'logout',
|
|
3385
|
+
'POST',
|
|
3386
|
+
'/portal_sessions',
|
|
3387
|
+
'/logout',
|
|
3388
|
+
true,
|
|
3389
|
+
null,
|
|
3390
|
+
false,
|
|
3391
|
+
{},
|
|
3392
|
+
{
|
|
3393
|
+
isIdempotent: true,
|
|
3394
|
+
},
|
|
3395
|
+
],
|
|
3396
|
+
[
|
|
3397
|
+
'activate',
|
|
3398
|
+
'POST',
|
|
3399
|
+
'/portal_sessions',
|
|
3400
|
+
'/activate',
|
|
3401
|
+
true,
|
|
3402
|
+
null,
|
|
3403
|
+
false,
|
|
3404
|
+
{},
|
|
3405
|
+
{
|
|
3406
|
+
isIdempotent: true,
|
|
3407
|
+
},
|
|
3408
|
+
],
|
|
3409
|
+
],
|
|
3410
|
+
siteMigrationDetail: [
|
|
3411
|
+
[
|
|
3412
|
+
'list',
|
|
3413
|
+
'GET',
|
|
3414
|
+
'/site_migration_details',
|
|
3415
|
+
null,
|
|
3416
|
+
false,
|
|
3417
|
+
null,
|
|
3418
|
+
false,
|
|
3419
|
+
{},
|
|
3420
|
+
{},
|
|
3421
|
+
],
|
|
3422
|
+
],
|
|
3423
|
+
resourceMigration: [
|
|
3424
|
+
[
|
|
3425
|
+
'retrieveLatest',
|
|
3426
|
+
'GET',
|
|
3427
|
+
'/resource_migrations',
|
|
3428
|
+
'/retrieve_latest',
|
|
3429
|
+
false,
|
|
3430
|
+
null,
|
|
3431
|
+
false,
|
|
3432
|
+
{},
|
|
3433
|
+
{},
|
|
3434
|
+
],
|
|
3435
|
+
],
|
|
3436
|
+
timeMachine: [
|
|
3437
|
+
['retrieve', 'GET', '/time_machines', null, true, null, false, {}, {}],
|
|
3438
|
+
[
|
|
3439
|
+
'startAfresh',
|
|
3440
|
+
'POST',
|
|
3441
|
+
'/time_machines',
|
|
3442
|
+
'/start_afresh',
|
|
3443
|
+
true,
|
|
3444
|
+
null,
|
|
3445
|
+
false,
|
|
3446
|
+
{},
|
|
3447
|
+
{
|
|
3448
|
+
isIdempotent: true,
|
|
3449
|
+
},
|
|
3450
|
+
],
|
|
3451
|
+
[
|
|
3452
|
+
'travelForward',
|
|
3453
|
+
'POST',
|
|
3454
|
+
'/time_machines',
|
|
3455
|
+
'/travel_forward',
|
|
3456
|
+
true,
|
|
3457
|
+
null,
|
|
3458
|
+
false,
|
|
3459
|
+
{},
|
|
3460
|
+
{
|
|
3461
|
+
isIdempotent: true,
|
|
3462
|
+
},
|
|
3463
|
+
],
|
|
3464
|
+
],
|
|
3465
|
+
export: [
|
|
3466
|
+
['retrieve', 'GET', '/exports', null, true, null, false, {}, {}],
|
|
3467
|
+
[
|
|
3468
|
+
'revenueRecognition',
|
|
3469
|
+
'POST',
|
|
3470
|
+
'/exports',
|
|
3471
|
+
'/revenue_recognition',
|
|
3472
|
+
false,
|
|
3473
|
+
null,
|
|
3474
|
+
false,
|
|
3475
|
+
{},
|
|
3476
|
+
{
|
|
3477
|
+
isIdempotent: true,
|
|
3478
|
+
},
|
|
3479
|
+
],
|
|
3480
|
+
[
|
|
3481
|
+
'deferredRevenue',
|
|
3482
|
+
'POST',
|
|
3483
|
+
'/exports',
|
|
3484
|
+
'/deferred_revenue',
|
|
3485
|
+
false,
|
|
3486
|
+
null,
|
|
3487
|
+
false,
|
|
3488
|
+
{},
|
|
3489
|
+
{
|
|
3490
|
+
isIdempotent: true,
|
|
3491
|
+
},
|
|
3492
|
+
],
|
|
3493
|
+
[
|
|
3494
|
+
'plans',
|
|
3495
|
+
'POST',
|
|
3496
|
+
'/exports',
|
|
3497
|
+
'/plans',
|
|
3498
|
+
false,
|
|
3499
|
+
null,
|
|
3500
|
+
false,
|
|
3501
|
+
{},
|
|
3502
|
+
{
|
|
3503
|
+
isIdempotent: true,
|
|
3504
|
+
},
|
|
3505
|
+
],
|
|
3506
|
+
[
|
|
3507
|
+
'addons',
|
|
3508
|
+
'POST',
|
|
3509
|
+
'/exports',
|
|
3510
|
+
'/addons',
|
|
3511
|
+
false,
|
|
3512
|
+
null,
|
|
3513
|
+
false,
|
|
3514
|
+
{},
|
|
3515
|
+
{
|
|
3516
|
+
isIdempotent: true,
|
|
3517
|
+
},
|
|
3518
|
+
],
|
|
3519
|
+
[
|
|
3520
|
+
'coupons',
|
|
3521
|
+
'POST',
|
|
3522
|
+
'/exports',
|
|
3523
|
+
'/coupons',
|
|
3524
|
+
false,
|
|
3525
|
+
null,
|
|
3526
|
+
false,
|
|
3527
|
+
{},
|
|
3528
|
+
{
|
|
3529
|
+
isIdempotent: true,
|
|
3530
|
+
},
|
|
3531
|
+
],
|
|
3532
|
+
[
|
|
3533
|
+
'customers',
|
|
3534
|
+
'POST',
|
|
3535
|
+
'/exports',
|
|
3536
|
+
'/customers',
|
|
3537
|
+
false,
|
|
3538
|
+
null,
|
|
3539
|
+
false,
|
|
3540
|
+
{},
|
|
3541
|
+
{
|
|
3542
|
+
isIdempotent: true,
|
|
3543
|
+
},
|
|
3544
|
+
],
|
|
3545
|
+
[
|
|
3546
|
+
'subscriptions',
|
|
3547
|
+
'POST',
|
|
3548
|
+
'/exports',
|
|
3549
|
+
'/subscriptions',
|
|
2218
3550
|
false,
|
|
2219
3551
|
null,
|
|
2220
3552
|
false,
|
|
2221
3553
|
{},
|
|
3554
|
+
{
|
|
3555
|
+
isIdempotent: true,
|
|
3556
|
+
},
|
|
3557
|
+
],
|
|
3558
|
+
[
|
|
3559
|
+
'invoices',
|
|
3560
|
+
'POST',
|
|
3561
|
+
'/exports',
|
|
3562
|
+
'/invoices',
|
|
3563
|
+
false,
|
|
3564
|
+
null,
|
|
3565
|
+
false,
|
|
3566
|
+
{},
|
|
3567
|
+
{
|
|
3568
|
+
isIdempotent: true,
|
|
3569
|
+
},
|
|
2222
3570
|
],
|
|
2223
|
-
['invoices', 'POST', '/exports', '/invoices', false, null, false, {}],
|
|
2224
3571
|
[
|
|
2225
3572
|
'creditNotes',
|
|
2226
3573
|
'POST',
|
|
@@ -2230,6 +3577,9 @@ export const Endpoints = {
|
|
|
2230
3577
|
null,
|
|
2231
3578
|
false,
|
|
2232
3579
|
{},
|
|
3580
|
+
{
|
|
3581
|
+
isIdempotent: true,
|
|
3582
|
+
},
|
|
2233
3583
|
],
|
|
2234
3584
|
[
|
|
2235
3585
|
'transactions',
|
|
@@ -2240,8 +3590,23 @@ export const Endpoints = {
|
|
|
2240
3590
|
null,
|
|
2241
3591
|
false,
|
|
2242
3592
|
{},
|
|
3593
|
+
{
|
|
3594
|
+
isIdempotent: true,
|
|
3595
|
+
},
|
|
3596
|
+
],
|
|
3597
|
+
[
|
|
3598
|
+
'orders',
|
|
3599
|
+
'POST',
|
|
3600
|
+
'/exports',
|
|
3601
|
+
'/orders',
|
|
3602
|
+
false,
|
|
3603
|
+
null,
|
|
3604
|
+
false,
|
|
3605
|
+
{},
|
|
3606
|
+
{
|
|
3607
|
+
isIdempotent: true,
|
|
3608
|
+
},
|
|
2243
3609
|
],
|
|
2244
|
-
['orders', 'POST', '/exports', '/orders', false, null, false, {}],
|
|
2245
3610
|
[
|
|
2246
3611
|
'itemFamilies',
|
|
2247
3612
|
'POST',
|
|
@@ -2251,9 +3616,36 @@ export const Endpoints = {
|
|
|
2251
3616
|
null,
|
|
2252
3617
|
false,
|
|
2253
3618
|
{},
|
|
3619
|
+
{
|
|
3620
|
+
isIdempotent: true,
|
|
3621
|
+
},
|
|
3622
|
+
],
|
|
3623
|
+
[
|
|
3624
|
+
'items',
|
|
3625
|
+
'POST',
|
|
3626
|
+
'/exports',
|
|
3627
|
+
'/items',
|
|
3628
|
+
false,
|
|
3629
|
+
null,
|
|
3630
|
+
false,
|
|
3631
|
+
{},
|
|
3632
|
+
{
|
|
3633
|
+
isIdempotent: true,
|
|
3634
|
+
},
|
|
3635
|
+
],
|
|
3636
|
+
[
|
|
3637
|
+
'itemPrices',
|
|
3638
|
+
'POST',
|
|
3639
|
+
'/exports',
|
|
3640
|
+
'/item_prices',
|
|
3641
|
+
false,
|
|
3642
|
+
null,
|
|
3643
|
+
false,
|
|
3644
|
+
{},
|
|
3645
|
+
{
|
|
3646
|
+
isIdempotent: true,
|
|
3647
|
+
},
|
|
2254
3648
|
],
|
|
2255
|
-
['items', 'POST', '/exports', '/items', false, null, false, {}],
|
|
2256
|
-
['itemPrices', 'POST', '/exports', '/item_prices', false, null, false, {}],
|
|
2257
3649
|
[
|
|
2258
3650
|
'attachedItems',
|
|
2259
3651
|
'POST',
|
|
@@ -2263,6 +3655,9 @@ export const Endpoints = {
|
|
|
2263
3655
|
null,
|
|
2264
3656
|
false,
|
|
2265
3657
|
{},
|
|
3658
|
+
{
|
|
3659
|
+
isIdempotent: true,
|
|
3660
|
+
},
|
|
2266
3661
|
],
|
|
2267
3662
|
[
|
|
2268
3663
|
'differentialPrices',
|
|
@@ -2273,6 +3668,9 @@ export const Endpoints = {
|
|
|
2273
3668
|
null,
|
|
2274
3669
|
false,
|
|
2275
3670
|
{},
|
|
3671
|
+
{
|
|
3672
|
+
isIdempotent: true,
|
|
3673
|
+
},
|
|
2276
3674
|
],
|
|
2277
3675
|
[
|
|
2278
3676
|
'priceVariants',
|
|
@@ -2283,161 +3681,389 @@ export const Endpoints = {
|
|
|
2283
3681
|
null,
|
|
2284
3682
|
false,
|
|
2285
3683
|
{},
|
|
3684
|
+
{
|
|
3685
|
+
isIdempotent: true,
|
|
3686
|
+
},
|
|
2286
3687
|
],
|
|
2287
3688
|
],
|
|
2288
3689
|
paymentIntent: [
|
|
2289
|
-
[
|
|
2290
|
-
|
|
2291
|
-
|
|
3690
|
+
[
|
|
3691
|
+
'create',
|
|
3692
|
+
'POST',
|
|
3693
|
+
'/payment_intents',
|
|
3694
|
+
null,
|
|
3695
|
+
false,
|
|
3696
|
+
null,
|
|
3697
|
+
false,
|
|
3698
|
+
{},
|
|
3699
|
+
{
|
|
3700
|
+
isIdempotent: true,
|
|
3701
|
+
},
|
|
3702
|
+
],
|
|
3703
|
+
[
|
|
3704
|
+
'update',
|
|
3705
|
+
'POST',
|
|
3706
|
+
'/payment_intents',
|
|
3707
|
+
null,
|
|
3708
|
+
true,
|
|
3709
|
+
null,
|
|
3710
|
+
false,
|
|
3711
|
+
{},
|
|
3712
|
+
{
|
|
3713
|
+
isIdempotent: true,
|
|
3714
|
+
},
|
|
3715
|
+
],
|
|
3716
|
+
['retrieve', 'GET', '/payment_intents', null, true, null, false, {}, {}],
|
|
2292
3717
|
],
|
|
2293
3718
|
gatewayErrorDetail: [],
|
|
2294
3719
|
itemFamily: [
|
|
2295
|
-
[
|
|
2296
|
-
|
|
2297
|
-
|
|
2298
|
-
|
|
2299
|
-
|
|
3720
|
+
[
|
|
3721
|
+
'create',
|
|
3722
|
+
'POST',
|
|
3723
|
+
'/item_families',
|
|
3724
|
+
null,
|
|
3725
|
+
false,
|
|
3726
|
+
null,
|
|
3727
|
+
false,
|
|
3728
|
+
{},
|
|
3729
|
+
{
|
|
3730
|
+
isIdempotent: true,
|
|
3731
|
+
},
|
|
3732
|
+
],
|
|
3733
|
+
['retrieve', 'GET', '/item_families', null, true, null, false, {}, {}],
|
|
3734
|
+
['list', 'GET', '/item_families', null, false, null, false, {}, {}],
|
|
3735
|
+
[
|
|
3736
|
+
'update',
|
|
3737
|
+
'POST',
|
|
3738
|
+
'/item_families',
|
|
3739
|
+
null,
|
|
3740
|
+
true,
|
|
3741
|
+
null,
|
|
3742
|
+
false,
|
|
3743
|
+
{},
|
|
3744
|
+
{
|
|
3745
|
+
isIdempotent: true,
|
|
3746
|
+
},
|
|
3747
|
+
],
|
|
3748
|
+
[
|
|
3749
|
+
'delete',
|
|
3750
|
+
'POST',
|
|
3751
|
+
'/item_families',
|
|
3752
|
+
'/delete',
|
|
3753
|
+
true,
|
|
3754
|
+
null,
|
|
3755
|
+
false,
|
|
3756
|
+
{},
|
|
3757
|
+
{
|
|
3758
|
+
isIdempotent: true,
|
|
3759
|
+
},
|
|
3760
|
+
],
|
|
3761
|
+
],
|
|
3762
|
+
item: [
|
|
3763
|
+
[
|
|
3764
|
+
'create',
|
|
3765
|
+
'POST',
|
|
3766
|
+
'/items',
|
|
3767
|
+
null,
|
|
3768
|
+
false,
|
|
3769
|
+
null,
|
|
3770
|
+
false,
|
|
3771
|
+
{
|
|
3772
|
+
metadata: 0,
|
|
3773
|
+
},
|
|
3774
|
+
{
|
|
3775
|
+
isIdempotent: true,
|
|
3776
|
+
},
|
|
3777
|
+
],
|
|
3778
|
+
['retrieve', 'GET', '/items', null, true, null, false, {}, {}],
|
|
3779
|
+
[
|
|
3780
|
+
'update',
|
|
3781
|
+
'POST',
|
|
3782
|
+
'/items',
|
|
3783
|
+
null,
|
|
3784
|
+
true,
|
|
3785
|
+
null,
|
|
3786
|
+
false,
|
|
3787
|
+
{
|
|
3788
|
+
metadata: 0,
|
|
3789
|
+
},
|
|
3790
|
+
{
|
|
3791
|
+
isIdempotent: true,
|
|
3792
|
+
},
|
|
3793
|
+
],
|
|
3794
|
+
['list', 'GET', '/items', null, false, null, false, {}, {}],
|
|
3795
|
+
[
|
|
3796
|
+
'delete',
|
|
3797
|
+
'POST',
|
|
3798
|
+
'/items',
|
|
3799
|
+
'/delete',
|
|
3800
|
+
true,
|
|
3801
|
+
null,
|
|
3802
|
+
false,
|
|
3803
|
+
{},
|
|
3804
|
+
{
|
|
3805
|
+
isIdempotent: true,
|
|
3806
|
+
},
|
|
3807
|
+
],
|
|
3808
|
+
],
|
|
3809
|
+
priceVariant: [
|
|
3810
|
+
[
|
|
3811
|
+
'create',
|
|
3812
|
+
'POST',
|
|
3813
|
+
'/price_variants',
|
|
3814
|
+
null,
|
|
3815
|
+
false,
|
|
3816
|
+
null,
|
|
3817
|
+
false,
|
|
3818
|
+
{},
|
|
3819
|
+
{
|
|
3820
|
+
isIdempotent: true,
|
|
3821
|
+
},
|
|
3822
|
+
],
|
|
3823
|
+
['retrieve', 'GET', '/price_variants', null, true, null, false, {}, {}],
|
|
3824
|
+
[
|
|
3825
|
+
'update',
|
|
3826
|
+
'POST',
|
|
3827
|
+
'/price_variants',
|
|
3828
|
+
null,
|
|
3829
|
+
true,
|
|
3830
|
+
null,
|
|
3831
|
+
false,
|
|
3832
|
+
{},
|
|
3833
|
+
{
|
|
3834
|
+
isIdempotent: true,
|
|
3835
|
+
},
|
|
3836
|
+
],
|
|
3837
|
+
[
|
|
3838
|
+
'delete',
|
|
3839
|
+
'POST',
|
|
3840
|
+
'/price_variants',
|
|
3841
|
+
'/delete',
|
|
3842
|
+
true,
|
|
3843
|
+
null,
|
|
3844
|
+
false,
|
|
3845
|
+
{},
|
|
3846
|
+
{
|
|
3847
|
+
isIdempotent: true,
|
|
3848
|
+
},
|
|
3849
|
+
],
|
|
3850
|
+
['list', 'GET', '/price_variants', null, false, null, false, {}, {}],
|
|
3851
|
+
],
|
|
3852
|
+
attribute: [],
|
|
3853
|
+
itemPrice: [
|
|
3854
|
+
[
|
|
3855
|
+
'create',
|
|
3856
|
+
'POST',
|
|
3857
|
+
'/item_prices',
|
|
3858
|
+
null,
|
|
3859
|
+
false,
|
|
3860
|
+
null,
|
|
3861
|
+
false,
|
|
3862
|
+
{
|
|
3863
|
+
metadata: 0,
|
|
3864
|
+
},
|
|
3865
|
+
{
|
|
3866
|
+
isIdempotent: true,
|
|
3867
|
+
},
|
|
3868
|
+
],
|
|
3869
|
+
['retrieve', 'GET', '/item_prices', null, true, null, false, {}, {}],
|
|
3870
|
+
[
|
|
3871
|
+
'update',
|
|
3872
|
+
'POST',
|
|
3873
|
+
'/item_prices',
|
|
3874
|
+
null,
|
|
3875
|
+
true,
|
|
3876
|
+
null,
|
|
3877
|
+
false,
|
|
3878
|
+
{
|
|
3879
|
+
metadata: 0,
|
|
3880
|
+
},
|
|
3881
|
+
{
|
|
3882
|
+
isIdempotent: true,
|
|
3883
|
+
},
|
|
3884
|
+
],
|
|
3885
|
+
['list', 'GET', '/item_prices', null, false, null, false, {}, {}],
|
|
3886
|
+
[
|
|
3887
|
+
'delete',
|
|
3888
|
+
'POST',
|
|
3889
|
+
'/item_prices',
|
|
3890
|
+
'/delete',
|
|
3891
|
+
true,
|
|
3892
|
+
null,
|
|
3893
|
+
false,
|
|
3894
|
+
{},
|
|
3895
|
+
{
|
|
3896
|
+
isIdempotent: true,
|
|
3897
|
+
},
|
|
3898
|
+
],
|
|
3899
|
+
[
|
|
3900
|
+
'findApplicableItems',
|
|
3901
|
+
'GET',
|
|
3902
|
+
'/item_prices',
|
|
3903
|
+
'/applicable_items',
|
|
3904
|
+
true,
|
|
3905
|
+
null,
|
|
3906
|
+
false,
|
|
3907
|
+
{},
|
|
3908
|
+
{},
|
|
3909
|
+
],
|
|
3910
|
+
[
|
|
3911
|
+
'findApplicableItemPrices',
|
|
3912
|
+
'GET',
|
|
3913
|
+
'/item_prices',
|
|
3914
|
+
'/applicable_item_prices',
|
|
3915
|
+
true,
|
|
3916
|
+
null,
|
|
3917
|
+
false,
|
|
3918
|
+
{},
|
|
3919
|
+
{},
|
|
3920
|
+
],
|
|
2300
3921
|
],
|
|
2301
|
-
|
|
3922
|
+
attachedItem: [
|
|
2302
3923
|
[
|
|
2303
3924
|
'create',
|
|
2304
3925
|
'POST',
|
|
2305
3926
|
'/items',
|
|
3927
|
+
'/attached_items',
|
|
3928
|
+
true,
|
|
2306
3929
|
null,
|
|
2307
3930
|
false,
|
|
2308
|
-
|
|
2309
|
-
false,
|
|
3931
|
+
{},
|
|
2310
3932
|
{
|
|
2311
|
-
|
|
3933
|
+
isIdempotent: true,
|
|
2312
3934
|
},
|
|
2313
3935
|
],
|
|
2314
|
-
['retrieve', 'GET', '/items', null, true, null, false, {}],
|
|
2315
3936
|
[
|
|
2316
3937
|
'update',
|
|
2317
3938
|
'POST',
|
|
2318
|
-
'/
|
|
3939
|
+
'/attached_items',
|
|
2319
3940
|
null,
|
|
2320
3941
|
true,
|
|
2321
3942
|
null,
|
|
2322
3943
|
false,
|
|
3944
|
+
{},
|
|
2323
3945
|
{
|
|
2324
|
-
|
|
3946
|
+
isIdempotent: true,
|
|
2325
3947
|
},
|
|
2326
3948
|
],
|
|
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: [
|
|
3949
|
+
['retrieve', 'GET', '/attached_items', null, true, null, false, {}, {}],
|
|
2339
3950
|
[
|
|
2340
|
-
'
|
|
3951
|
+
'delete',
|
|
2341
3952
|
'POST',
|
|
2342
|
-
'/
|
|
2343
|
-
|
|
2344
|
-
|
|
3953
|
+
'/attached_items',
|
|
3954
|
+
'/delete',
|
|
3955
|
+
true,
|
|
2345
3956
|
null,
|
|
2346
3957
|
false,
|
|
3958
|
+
{},
|
|
2347
3959
|
{
|
|
2348
|
-
|
|
3960
|
+
isIdempotent: true,
|
|
2349
3961
|
},
|
|
2350
3962
|
],
|
|
2351
|
-
['
|
|
3963
|
+
['list', 'GET', '/items', '/attached_items', true, null, false, {}, {}],
|
|
3964
|
+
],
|
|
3965
|
+
differentialPrice: [
|
|
2352
3966
|
[
|
|
2353
|
-
'
|
|
3967
|
+
'create',
|
|
2354
3968
|
'POST',
|
|
2355
3969
|
'/item_prices',
|
|
2356
|
-
|
|
3970
|
+
'/differential_prices',
|
|
2357
3971
|
true,
|
|
2358
3972
|
null,
|
|
2359
3973
|
false,
|
|
2360
3974
|
{
|
|
2361
|
-
|
|
3975
|
+
period: 1,
|
|
3976
|
+
},
|
|
3977
|
+
{
|
|
3978
|
+
isIdempotent: true,
|
|
2362
3979
|
},
|
|
2363
3980
|
],
|
|
2364
|
-
['list', 'GET', '/item_prices', null, false, null, false, {}],
|
|
2365
|
-
['delete', 'POST', '/item_prices', '/delete', true, null, false, {}],
|
|
2366
3981
|
[
|
|
2367
|
-
'
|
|
3982
|
+
'retrieve',
|
|
2368
3983
|
'GET',
|
|
2369
|
-
'/
|
|
2370
|
-
|
|
3984
|
+
'/differential_prices',
|
|
3985
|
+
null,
|
|
2371
3986
|
true,
|
|
2372
3987
|
null,
|
|
2373
3988
|
false,
|
|
2374
3989
|
{},
|
|
3990
|
+
{},
|
|
2375
3991
|
],
|
|
2376
3992
|
[
|
|
2377
|
-
'
|
|
2378
|
-
'
|
|
2379
|
-
'/
|
|
2380
|
-
|
|
3993
|
+
'update',
|
|
3994
|
+
'POST',
|
|
3995
|
+
'/differential_prices',
|
|
3996
|
+
null,
|
|
3997
|
+
true,
|
|
3998
|
+
null,
|
|
3999
|
+
false,
|
|
4000
|
+
{
|
|
4001
|
+
period: 1,
|
|
4002
|
+
},
|
|
4003
|
+
{
|
|
4004
|
+
isIdempotent: true,
|
|
4005
|
+
},
|
|
4006
|
+
],
|
|
4007
|
+
[
|
|
4008
|
+
'delete',
|
|
4009
|
+
'POST',
|
|
4010
|
+
'/differential_prices',
|
|
4011
|
+
'/delete',
|
|
2381
4012
|
true,
|
|
2382
4013
|
null,
|
|
2383
4014
|
false,
|
|
2384
4015
|
{},
|
|
4016
|
+
{
|
|
4017
|
+
isIdempotent: true,
|
|
4018
|
+
},
|
|
2385
4019
|
],
|
|
4020
|
+
['list', 'GET', '/differential_prices', null, false, null, false, {}, {}],
|
|
2386
4021
|
],
|
|
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, {}],
|
|
4022
|
+
configuration: [
|
|
4023
|
+
['list', 'GET', '/configurations', null, false, null, false, {}, {}],
|
|
2393
4024
|
],
|
|
2394
|
-
|
|
4025
|
+
feature: [
|
|
4026
|
+
['list', 'GET', '/features', null, false, null, false, {}, {}],
|
|
2395
4027
|
[
|
|
2396
4028
|
'create',
|
|
2397
4029
|
'POST',
|
|
2398
|
-
'/
|
|
2399
|
-
'/differential_prices',
|
|
2400
|
-
true,
|
|
4030
|
+
'/features',
|
|
2401
4031
|
null,
|
|
2402
4032
|
false,
|
|
4033
|
+
null,
|
|
4034
|
+
false,
|
|
4035
|
+
{},
|
|
2403
4036
|
{
|
|
2404
|
-
|
|
4037
|
+
isIdempotent: true,
|
|
2405
4038
|
},
|
|
2406
4039
|
],
|
|
2407
|
-
['retrieve', 'GET', '/differential_prices', null, true, null, false, {}],
|
|
2408
4040
|
[
|
|
2409
4041
|
'update',
|
|
2410
4042
|
'POST',
|
|
2411
|
-
'/
|
|
4043
|
+
'/features',
|
|
2412
4044
|
null,
|
|
2413
4045
|
true,
|
|
2414
4046
|
null,
|
|
2415
4047
|
false,
|
|
4048
|
+
{},
|
|
2416
4049
|
{
|
|
2417
|
-
|
|
4050
|
+
isIdempotent: true,
|
|
2418
4051
|
},
|
|
2419
4052
|
],
|
|
4053
|
+
['retrieve', 'GET', '/features', null, true, null, false, {}, {}],
|
|
2420
4054
|
[
|
|
2421
4055
|
'delete',
|
|
2422
4056
|
'POST',
|
|
2423
|
-
'/
|
|
4057
|
+
'/features',
|
|
2424
4058
|
'/delete',
|
|
2425
4059
|
true,
|
|
2426
4060
|
null,
|
|
2427
4061
|
false,
|
|
2428
4062
|
{},
|
|
4063
|
+
{
|
|
4064
|
+
isIdempotent: true,
|
|
4065
|
+
},
|
|
2429
4066
|
],
|
|
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
4067
|
[
|
|
2442
4068
|
'activate',
|
|
2443
4069
|
'POST',
|
|
@@ -2447,8 +4073,23 @@ export const Endpoints = {
|
|
|
2447
4073
|
null,
|
|
2448
4074
|
false,
|
|
2449
4075
|
{},
|
|
4076
|
+
{
|
|
4077
|
+
isIdempotent: true,
|
|
4078
|
+
},
|
|
4079
|
+
],
|
|
4080
|
+
[
|
|
4081
|
+
'archive',
|
|
4082
|
+
'POST',
|
|
4083
|
+
'/features',
|
|
4084
|
+
'/archive_command',
|
|
4085
|
+
true,
|
|
4086
|
+
null,
|
|
4087
|
+
false,
|
|
4088
|
+
{},
|
|
4089
|
+
{
|
|
4090
|
+
isIdempotent: true,
|
|
4091
|
+
},
|
|
2450
4092
|
],
|
|
2451
|
-
['archive', 'POST', '/features', '/archive_command', true, null, false, {}],
|
|
2452
4093
|
[
|
|
2453
4094
|
'reactivate',
|
|
2454
4095
|
'POST',
|
|
@@ -2458,6 +4099,9 @@ export const Endpoints = {
|
|
|
2458
4099
|
null,
|
|
2459
4100
|
false,
|
|
2460
4101
|
{},
|
|
4102
|
+
{
|
|
4103
|
+
isIdempotent: true,
|
|
4104
|
+
},
|
|
2461
4105
|
],
|
|
2462
4106
|
],
|
|
2463
4107
|
impactedSubscription: [],
|
|
@@ -2474,6 +4118,7 @@ export const Endpoints = {
|
|
|
2474
4118
|
null,
|
|
2475
4119
|
false,
|
|
2476
4120
|
{},
|
|
4121
|
+
{},
|
|
2477
4122
|
],
|
|
2478
4123
|
[
|
|
2479
4124
|
'setSubscriptionEntitlementAvailability',
|
|
@@ -2484,6 +4129,9 @@ export const Endpoints = {
|
|
|
2484
4129
|
null,
|
|
2485
4130
|
false,
|
|
2486
4131
|
{},
|
|
4132
|
+
{
|
|
4133
|
+
isIdempotent: true,
|
|
4134
|
+
},
|
|
2487
4135
|
],
|
|
2488
4136
|
],
|
|
2489
4137
|
customerEntitlement: [
|
|
@@ -2496,6 +4144,7 @@ export const Endpoints = {
|
|
|
2496
4144
|
null,
|
|
2497
4145
|
false,
|
|
2498
4146
|
{},
|
|
4147
|
+
{},
|
|
2499
4148
|
],
|
|
2500
4149
|
],
|
|
2501
4150
|
itemEntitlement: [
|
|
@@ -2508,6 +4157,7 @@ export const Endpoints = {
|
|
|
2508
4157
|
null,
|
|
2509
4158
|
false,
|
|
2510
4159
|
{},
|
|
4160
|
+
{},
|
|
2511
4161
|
],
|
|
2512
4162
|
[
|
|
2513
4163
|
'itemEntitlementsForFeature',
|
|
@@ -2518,6 +4168,7 @@ export const Endpoints = {
|
|
|
2518
4168
|
null,
|
|
2519
4169
|
false,
|
|
2520
4170
|
{},
|
|
4171
|
+
{},
|
|
2521
4172
|
],
|
|
2522
4173
|
[
|
|
2523
4174
|
'addItemEntitlements',
|
|
@@ -2528,6 +4179,9 @@ export const Endpoints = {
|
|
|
2528
4179
|
null,
|
|
2529
4180
|
false,
|
|
2530
4181
|
{},
|
|
4182
|
+
{
|
|
4183
|
+
isIdempotent: true,
|
|
4184
|
+
},
|
|
2531
4185
|
],
|
|
2532
4186
|
[
|
|
2533
4187
|
'upsertOrRemoveItemEntitlementsForItem',
|
|
@@ -2538,11 +4192,26 @@ export const Endpoints = {
|
|
|
2538
4192
|
null,
|
|
2539
4193
|
false,
|
|
2540
4194
|
{},
|
|
4195
|
+
{
|
|
4196
|
+
isIdempotent: true,
|
|
4197
|
+
},
|
|
2541
4198
|
],
|
|
2542
4199
|
],
|
|
2543
4200
|
entitlement: [
|
|
2544
|
-
['list', 'GET', '/entitlements', null, false, null, false, {}],
|
|
2545
|
-
[
|
|
4201
|
+
['list', 'GET', '/entitlements', null, false, null, false, {}, {}],
|
|
4202
|
+
[
|
|
4203
|
+
'create',
|
|
4204
|
+
'POST',
|
|
4205
|
+
'/entitlements',
|
|
4206
|
+
null,
|
|
4207
|
+
false,
|
|
4208
|
+
null,
|
|
4209
|
+
false,
|
|
4210
|
+
{},
|
|
4211
|
+
{
|
|
4212
|
+
isIdempotent: true,
|
|
4213
|
+
},
|
|
4214
|
+
],
|
|
2546
4215
|
],
|
|
2547
4216
|
inAppSubscription: [
|
|
2548
4217
|
[
|
|
@@ -2554,6 +4223,9 @@ export const Endpoints = {
|
|
|
2554
4223
|
null,
|
|
2555
4224
|
false,
|
|
2556
4225
|
{},
|
|
4226
|
+
{
|
|
4227
|
+
isIdempotent: true,
|
|
4228
|
+
},
|
|
2557
4229
|
],
|
|
2558
4230
|
[
|
|
2559
4231
|
'importReceipt',
|
|
@@ -2564,6 +4236,9 @@ export const Endpoints = {
|
|
|
2564
4236
|
null,
|
|
2565
4237
|
false,
|
|
2566
4238
|
{},
|
|
4239
|
+
{
|
|
4240
|
+
isIdempotent: true,
|
|
4241
|
+
},
|
|
2567
4242
|
],
|
|
2568
4243
|
[
|
|
2569
4244
|
'importSubscription',
|
|
@@ -2574,6 +4249,9 @@ export const Endpoints = {
|
|
|
2574
4249
|
null,
|
|
2575
4250
|
false,
|
|
2576
4251
|
{},
|
|
4252
|
+
{
|
|
4253
|
+
isIdempotent: true,
|
|
4254
|
+
},
|
|
2577
4255
|
],
|
|
2578
4256
|
[
|
|
2579
4257
|
'retrieveStoreSubs',
|
|
@@ -2584,18 +4262,9 @@ export const Endpoints = {
|
|
|
2584
4262
|
null,
|
|
2585
4263
|
false,
|
|
2586
4264
|
{},
|
|
2587
|
-
|
|
2588
|
-
|
|
2589
|
-
|
|
2590
|
-
[
|
|
2591
|
-
'processReceipt',
|
|
2592
|
-
'POST',
|
|
2593
|
-
'/non_subscriptions',
|
|
2594
|
-
'/one_time_purchase',
|
|
2595
|
-
true,
|
|
2596
|
-
null,
|
|
2597
|
-
false,
|
|
2598
|
-
{},
|
|
4265
|
+
{
|
|
4266
|
+
isIdempotent: true,
|
|
4267
|
+
},
|
|
2599
4268
|
],
|
|
2600
4269
|
],
|
|
2601
4270
|
entitlementOverride: [
|
|
@@ -2608,6 +4277,9 @@ export const Endpoints = {
|
|
|
2608
4277
|
null,
|
|
2609
4278
|
false,
|
|
2610
4279
|
{},
|
|
4280
|
+
{
|
|
4281
|
+
isIdempotent: true,
|
|
4282
|
+
},
|
|
2611
4283
|
],
|
|
2612
4284
|
[
|
|
2613
4285
|
'listEntitlementOverrideForSubscription',
|
|
@@ -2618,6 +4290,7 @@ export const Endpoints = {
|
|
|
2618
4290
|
null,
|
|
2619
4291
|
false,
|
|
2620
4292
|
{},
|
|
4293
|
+
{},
|
|
2621
4294
|
],
|
|
2622
4295
|
],
|
|
2623
4296
|
businessEntity: [
|
|
@@ -2630,6 +4303,9 @@ export const Endpoints = {
|
|
|
2630
4303
|
null,
|
|
2631
4304
|
false,
|
|
2632
4305
|
{},
|
|
4306
|
+
{
|
|
4307
|
+
isIdempotent: true,
|
|
4308
|
+
},
|
|
2633
4309
|
],
|
|
2634
4310
|
[
|
|
2635
4311
|
'getTransfers',
|
|
@@ -2640,6 +4316,7 @@ export const Endpoints = {
|
|
|
2640
4316
|
null,
|
|
2641
4317
|
false,
|
|
2642
4318
|
{},
|
|
4319
|
+
{},
|
|
2643
4320
|
],
|
|
2644
4321
|
],
|
|
2645
4322
|
purchase: [
|
|
@@ -2655,6 +4332,9 @@ export const Endpoints = {
|
|
|
2655
4332
|
additional_information: 1,
|
|
2656
4333
|
meta_data: 1,
|
|
2657
4334
|
},
|
|
4335
|
+
{
|
|
4336
|
+
isIdempotent: true,
|
|
4337
|
+
},
|
|
2658
4338
|
],
|
|
2659
4339
|
[
|
|
2660
4340
|
'estimate',
|
|
@@ -2667,11 +4347,24 @@ export const Endpoints = {
|
|
|
2667
4347
|
{
|
|
2668
4348
|
exemption_details: 1,
|
|
2669
4349
|
},
|
|
4350
|
+
{},
|
|
2670
4351
|
],
|
|
2671
4352
|
],
|
|
2672
4353
|
paymentVoucher: [
|
|
2673
|
-
[
|
|
2674
|
-
|
|
4354
|
+
[
|
|
4355
|
+
'create',
|
|
4356
|
+
'POST',
|
|
4357
|
+
'/payment_vouchers',
|
|
4358
|
+
null,
|
|
4359
|
+
false,
|
|
4360
|
+
null,
|
|
4361
|
+
false,
|
|
4362
|
+
{},
|
|
4363
|
+
{
|
|
4364
|
+
isIdempotent: true,
|
|
4365
|
+
},
|
|
4366
|
+
],
|
|
4367
|
+
['retrieve', 'GET', '/payment_vouchers', null, true, null, false, {}, {}],
|
|
2675
4368
|
[
|
|
2676
4369
|
'payment_vouchersForInvoice',
|
|
2677
4370
|
'GET',
|
|
@@ -2681,6 +4374,7 @@ export const Endpoints = {
|
|
|
2681
4374
|
null,
|
|
2682
4375
|
false,
|
|
2683
4376
|
{},
|
|
4377
|
+
{},
|
|
2684
4378
|
],
|
|
2685
4379
|
[
|
|
2686
4380
|
'payment_vouchersForCustomer',
|
|
@@ -2691,13 +4385,38 @@ export const Endpoints = {
|
|
|
2691
4385
|
null,
|
|
2692
4386
|
false,
|
|
2693
4387
|
{},
|
|
4388
|
+
{},
|
|
2694
4389
|
],
|
|
2695
4390
|
],
|
|
2696
4391
|
currency: [
|
|
2697
|
-
['list', 'GET', '/currencies', '/list', false, null, false, {}],
|
|
2698
|
-
['retrieve', 'GET', '/currencies', null, true, null, false, {}],
|
|
2699
|
-
[
|
|
2700
|
-
|
|
4392
|
+
['list', 'GET', '/currencies', '/list', false, null, false, {}, {}],
|
|
4393
|
+
['retrieve', 'GET', '/currencies', null, true, null, false, {}, {}],
|
|
4394
|
+
[
|
|
4395
|
+
'create',
|
|
4396
|
+
'POST',
|
|
4397
|
+
'/currencies',
|
|
4398
|
+
null,
|
|
4399
|
+
false,
|
|
4400
|
+
null,
|
|
4401
|
+
false,
|
|
4402
|
+
{},
|
|
4403
|
+
{
|
|
4404
|
+
isIdempotent: true,
|
|
4405
|
+
},
|
|
4406
|
+
],
|
|
4407
|
+
[
|
|
4408
|
+
'update',
|
|
4409
|
+
'POST',
|
|
4410
|
+
'/currencies',
|
|
4411
|
+
null,
|
|
4412
|
+
true,
|
|
4413
|
+
null,
|
|
4414
|
+
false,
|
|
4415
|
+
{},
|
|
4416
|
+
{
|
|
4417
|
+
isIdempotent: true,
|
|
4418
|
+
},
|
|
4419
|
+
],
|
|
2701
4420
|
[
|
|
2702
4421
|
'addSchedule',
|
|
2703
4422
|
'POST',
|
|
@@ -2707,6 +4426,9 @@ export const Endpoints = {
|
|
|
2707
4426
|
null,
|
|
2708
4427
|
false,
|
|
2709
4428
|
{},
|
|
4429
|
+
{
|
|
4430
|
+
isIdempotent: true,
|
|
4431
|
+
},
|
|
2710
4432
|
],
|
|
2711
4433
|
[
|
|
2712
4434
|
'removeSchedule',
|
|
@@ -2717,6 +4439,9 @@ export const Endpoints = {
|
|
|
2717
4439
|
null,
|
|
2718
4440
|
false,
|
|
2719
4441
|
{},
|
|
4442
|
+
{
|
|
4443
|
+
isIdempotent: true,
|
|
4444
|
+
},
|
|
2720
4445
|
],
|
|
2721
4446
|
],
|
|
2722
4447
|
ramp: [
|
|
@@ -2729,11 +4454,38 @@ export const Endpoints = {
|
|
|
2729
4454
|
null,
|
|
2730
4455
|
false,
|
|
2731
4456
|
{},
|
|
4457
|
+
{
|
|
4458
|
+
isIdempotent: true,
|
|
4459
|
+
},
|
|
4460
|
+
],
|
|
4461
|
+
[
|
|
4462
|
+
'update',
|
|
4463
|
+
'POST',
|
|
4464
|
+
'/ramps',
|
|
4465
|
+
'/update',
|
|
4466
|
+
true,
|
|
4467
|
+
null,
|
|
4468
|
+
false,
|
|
4469
|
+
{},
|
|
4470
|
+
{
|
|
4471
|
+
isIdempotent: true,
|
|
4472
|
+
},
|
|
4473
|
+
],
|
|
4474
|
+
['retrieve', 'GET', '/ramps', null, true, null, false, {}, {}],
|
|
4475
|
+
[
|
|
4476
|
+
'delete',
|
|
4477
|
+
'POST',
|
|
4478
|
+
'/ramps',
|
|
4479
|
+
'/delete',
|
|
4480
|
+
true,
|
|
4481
|
+
null,
|
|
4482
|
+
false,
|
|
4483
|
+
{},
|
|
4484
|
+
{
|
|
4485
|
+
isIdempotent: true,
|
|
4486
|
+
},
|
|
2732
4487
|
],
|
|
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, {}],
|
|
4488
|
+
['list', 'GET', '/ramps', null, false, null, false, {}, {}],
|
|
2737
4489
|
],
|
|
2738
4490
|
paymentScheduleScheme: [
|
|
2739
4491
|
[
|
|
@@ -2745,6 +4497,9 @@ export const Endpoints = {
|
|
|
2745
4497
|
null,
|
|
2746
4498
|
false,
|
|
2747
4499
|
{},
|
|
4500
|
+
{
|
|
4501
|
+
isIdempotent: true,
|
|
4502
|
+
},
|
|
2748
4503
|
],
|
|
2749
4504
|
[
|
|
2750
4505
|
'retrieve',
|
|
@@ -2755,6 +4510,7 @@ export const Endpoints = {
|
|
|
2755
4510
|
null,
|
|
2756
4511
|
false,
|
|
2757
4512
|
{},
|
|
4513
|
+
{},
|
|
2758
4514
|
],
|
|
2759
4515
|
[
|
|
2760
4516
|
'delete',
|
|
@@ -2765,6 +4521,9 @@ export const Endpoints = {
|
|
|
2765
4521
|
null,
|
|
2766
4522
|
false,
|
|
2767
4523
|
{},
|
|
4524
|
+
{
|
|
4525
|
+
isIdempotent: true,
|
|
4526
|
+
},
|
|
2768
4527
|
],
|
|
2769
4528
|
],
|
|
2770
4529
|
pricingPageSession: [
|
|
@@ -2777,6 +4536,9 @@ export const Endpoints = {
|
|
|
2777
4536
|
null,
|
|
2778
4537
|
false,
|
|
2779
4538
|
{},
|
|
4539
|
+
{
|
|
4540
|
+
isIdempotent: true,
|
|
4541
|
+
},
|
|
2780
4542
|
],
|
|
2781
4543
|
[
|
|
2782
4544
|
'createForExistingSubscription',
|
|
@@ -2787,6 +4549,9 @@ export const Endpoints = {
|
|
|
2787
4549
|
null,
|
|
2788
4550
|
false,
|
|
2789
4551
|
{},
|
|
4552
|
+
{
|
|
4553
|
+
isIdempotent: true,
|
|
4554
|
+
},
|
|
2790
4555
|
],
|
|
2791
4556
|
],
|
|
2792
4557
|
omnichannelSubscription: [
|
|
@@ -2799,8 +4564,19 @@ export const Endpoints = {
|
|
|
2799
4564
|
null,
|
|
2800
4565
|
false,
|
|
2801
4566
|
{},
|
|
4567
|
+
{},
|
|
4568
|
+
],
|
|
4569
|
+
[
|
|
4570
|
+
'list',
|
|
4571
|
+
'GET',
|
|
4572
|
+
'/omnichannel_subscriptions',
|
|
4573
|
+
null,
|
|
4574
|
+
false,
|
|
4575
|
+
null,
|
|
4576
|
+
false,
|
|
4577
|
+
{},
|
|
4578
|
+
{},
|
|
2802
4579
|
],
|
|
2803
|
-
['list', 'GET', '/omnichannel_subscriptions', null, false, null, false, {}],
|
|
2804
4580
|
[
|
|
2805
4581
|
'omnichannel_transactionsForOmnichannelSubscription',
|
|
2806
4582
|
'GET',
|
|
@@ -2810,6 +4586,7 @@ export const Endpoints = {
|
|
|
2810
4586
|
null,
|
|
2811
4587
|
false,
|
|
2812
4588
|
{},
|
|
4589
|
+
{},
|
|
2813
4590
|
],
|
|
2814
4591
|
],
|
|
2815
4592
|
omnichannelTransaction: [],
|
|
@@ -2823,13 +4600,26 @@ export const Endpoints = {
|
|
|
2823
4600
|
null,
|
|
2824
4601
|
false,
|
|
2825
4602
|
{},
|
|
4603
|
+
{},
|
|
2826
4604
|
],
|
|
2827
4605
|
],
|
|
2828
4606
|
recordedPurchase: [
|
|
2829
|
-
[
|
|
2830
|
-
|
|
4607
|
+
[
|
|
4608
|
+
'create',
|
|
4609
|
+
'POST',
|
|
4610
|
+
'/recorded_purchases',
|
|
4611
|
+
null,
|
|
4612
|
+
false,
|
|
4613
|
+
null,
|
|
4614
|
+
false,
|
|
4615
|
+
{},
|
|
4616
|
+
{
|
|
4617
|
+
isIdempotent: true,
|
|
4618
|
+
},
|
|
4619
|
+
],
|
|
4620
|
+
['retrieve', 'GET', '/recorded_purchases', null, true, null, false, {}, {}],
|
|
2831
4621
|
],
|
|
2832
|
-
rule: [['retrieve', 'GET', '/rules', null, true, null, false, {}]],
|
|
4622
|
+
rule: [['retrieve', 'GET', '/rules', null, true, null, false, {}, {}]],
|
|
2833
4623
|
usageEvent: [
|
|
2834
4624
|
[
|
|
2835
4625
|
'create',
|
|
@@ -2842,6 +4632,7 @@ export const Endpoints = {
|
|
|
2842
4632
|
{
|
|
2843
4633
|
properties: 0,
|
|
2844
4634
|
},
|
|
4635
|
+
{},
|
|
2845
4636
|
],
|
|
2846
4637
|
[
|
|
2847
4638
|
'batchIngest',
|
|
@@ -2854,6 +4645,7 @@ export const Endpoints = {
|
|
|
2854
4645
|
{
|
|
2855
4646
|
properties: 1,
|
|
2856
4647
|
},
|
|
4648
|
+
{},
|
|
2857
4649
|
],
|
|
2858
4650
|
],
|
|
2859
4651
|
omnichannelSubscriptionItemScheduledChange: [],
|
|
@@ -2867,6 +4659,7 @@ export const Endpoints = {
|
|
|
2867
4659
|
'file-ingest',
|
|
2868
4660
|
false,
|
|
2869
4661
|
{},
|
|
4662
|
+
{},
|
|
2870
4663
|
],
|
|
2871
4664
|
[
|
|
2872
4665
|
'status',
|
|
@@ -2877,6 +4670,7 @@ export const Endpoints = {
|
|
|
2877
4670
|
'file-ingest',
|
|
2878
4671
|
false,
|
|
2879
4672
|
{},
|
|
4673
|
+
{},
|
|
2880
4674
|
],
|
|
2881
4675
|
],
|
|
2882
4676
|
};
|