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