chargebee 3.6.1 → 3.8.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +34 -0
- package/README.md +66 -0
- package/cjs/RequestWrapper.js +117 -56
- package/cjs/asyncApiSupport.js +7 -7
- package/cjs/coreCommon.js +4 -4
- package/cjs/createChargebee.js +16 -15
- package/cjs/environment.js +1 -1
- package/cjs/net/ClientInterface.js +2 -2
- package/cjs/net/FetchClient.js +6 -6
- package/cjs/net/NodeClient.js +4 -4
- package/cjs/resources/api_endpoints.js +2085 -269
- package/cjs/util.js +61 -36
- package/esm/RequestWrapper.js +115 -54
- package/esm/asyncApiSupport.js +1 -1
- package/esm/coreCommon.js +2 -2
- package/esm/createChargebee.js +6 -5
- package/esm/environment.js +1 -1
- package/esm/net/ClientInterface.js +1 -1
- package/esm/net/FetchClient.js +1 -1
- package/esm/net/NodeClient.js +1 -1
- package/esm/resources/api_endpoints.js +2085 -269
- package/esm/util.js +59 -36
- package/package.json +1 -1
- package/types/core.d.ts +1 -0
- package/types/index.d.ts +25 -0
- package/types/resources/Estimate.d.ts +3 -3
- package/types/resources/HostedPage.d.ts +2 -2
- package/types/resources/Invoice.d.ts +18 -0
- package/types/resources/OmnichannelSubscription.d.ts +1 -0
- package/types/resources/OmnichannelSubscriptionItem.d.ts +4 -2
- package/types/resources/PricingPageSession.d.ts +2 -2
- package/types/resources/Quote.d.ts +4 -4
- package/types/resources/Subscription.d.ts +3 -3
- package/types/resources/UsageFile.d.ts +56 -0
- package/types/resources/VirtualBankAccount.d.ts +1 -1
|
@@ -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,9 @@ exports.Endpoints = {
|
|
|
859
1245
|
null,
|
|
860
1246
|
false,
|
|
861
1247
|
{},
|
|
1248
|
+
{
|
|
1249
|
+
isIdempotent: true,
|
|
1250
|
+
},
|
|
862
1251
|
],
|
|
863
1252
|
[
|
|
864
1253
|
'importInvoice',
|
|
@@ -869,6 +1258,9 @@ exports.Endpoints = {
|
|
|
869
1258
|
null,
|
|
870
1259
|
false,
|
|
871
1260
|
{},
|
|
1261
|
+
{
|
|
1262
|
+
isIdempotent: true,
|
|
1263
|
+
},
|
|
872
1264
|
],
|
|
873
1265
|
[
|
|
874
1266
|
'applyPayments',
|
|
@@ -879,8 +1271,23 @@ exports.Endpoints = {
|
|
|
879
1271
|
null,
|
|
880
1272
|
false,
|
|
881
1273
|
{},
|
|
1274
|
+
{
|
|
1275
|
+
isIdempotent: true,
|
|
1276
|
+
},
|
|
1277
|
+
],
|
|
1278
|
+
[
|
|
1279
|
+
'syncUsages',
|
|
1280
|
+
'POST',
|
|
1281
|
+
'/invoices',
|
|
1282
|
+
'/sync_usages',
|
|
1283
|
+
true,
|
|
1284
|
+
null,
|
|
1285
|
+
false,
|
|
1286
|
+
{},
|
|
1287
|
+
{
|
|
1288
|
+
isIdempotent: true,
|
|
1289
|
+
},
|
|
882
1290
|
],
|
|
883
|
-
['syncUsages', 'POST', '/invoices', '/sync_usages', true, null, false, {}],
|
|
884
1291
|
[
|
|
885
1292
|
'deleteLineItems',
|
|
886
1293
|
'POST',
|
|
@@ -890,6 +1297,9 @@ exports.Endpoints = {
|
|
|
890
1297
|
null,
|
|
891
1298
|
false,
|
|
892
1299
|
{},
|
|
1300
|
+
{
|
|
1301
|
+
isIdempotent: true,
|
|
1302
|
+
},
|
|
893
1303
|
],
|
|
894
1304
|
[
|
|
895
1305
|
'applyCredits',
|
|
@@ -900,8 +1310,11 @@ exports.Endpoints = {
|
|
|
900
1310
|
null,
|
|
901
1311
|
false,
|
|
902
1312
|
{},
|
|
1313
|
+
{
|
|
1314
|
+
isIdempotent: true,
|
|
1315
|
+
},
|
|
903
1316
|
],
|
|
904
|
-
['list', 'GET', '/invoices', null, false, null, false, {}],
|
|
1317
|
+
['list', 'GET', '/invoices', null, false, null, false, {}, {}],
|
|
905
1318
|
[
|
|
906
1319
|
'invoicesForCustomer',
|
|
907
1320
|
'GET',
|
|
@@ -911,6 +1324,7 @@ exports.Endpoints = {
|
|
|
911
1324
|
null,
|
|
912
1325
|
false,
|
|
913
1326
|
{},
|
|
1327
|
+
{},
|
|
914
1328
|
],
|
|
915
1329
|
[
|
|
916
1330
|
'invoicesForSubscription',
|
|
@@ -921,9 +1335,22 @@ exports.Endpoints = {
|
|
|
921
1335
|
null,
|
|
922
1336
|
false,
|
|
923
1337
|
{},
|
|
1338
|
+
{},
|
|
1339
|
+
],
|
|
1340
|
+
['retrieve', 'GET', '/invoices', null, true, null, false, {}, {}],
|
|
1341
|
+
[
|
|
1342
|
+
'pdf',
|
|
1343
|
+
'POST',
|
|
1344
|
+
'/invoices',
|
|
1345
|
+
'/pdf',
|
|
1346
|
+
true,
|
|
1347
|
+
null,
|
|
1348
|
+
false,
|
|
1349
|
+
{},
|
|
1350
|
+
{
|
|
1351
|
+
isIdempotent: true,
|
|
1352
|
+
},
|
|
924
1353
|
],
|
|
925
|
-
['retrieve', 'GET', '/invoices', null, true, null, false, {}],
|
|
926
|
-
['pdf', 'POST', '/invoices', '/pdf', true, null, false, {}],
|
|
927
1354
|
[
|
|
928
1355
|
'downloadEinvoice',
|
|
929
1356
|
'GET',
|
|
@@ -933,6 +1360,7 @@ exports.Endpoints = {
|
|
|
933
1360
|
null,
|
|
934
1361
|
false,
|
|
935
1362
|
{},
|
|
1363
|
+
{},
|
|
936
1364
|
],
|
|
937
1365
|
[
|
|
938
1366
|
'listPaymentReferenceNumbers',
|
|
@@ -943,8 +1371,21 @@ exports.Endpoints = {
|
|
|
943
1371
|
null,
|
|
944
1372
|
false,
|
|
945
1373
|
{},
|
|
1374
|
+
{},
|
|
1375
|
+
],
|
|
1376
|
+
[
|
|
1377
|
+
'addCharge',
|
|
1378
|
+
'POST',
|
|
1379
|
+
'/invoices',
|
|
1380
|
+
'/add_charge',
|
|
1381
|
+
true,
|
|
1382
|
+
null,
|
|
1383
|
+
false,
|
|
1384
|
+
{},
|
|
1385
|
+
{
|
|
1386
|
+
isIdempotent: true,
|
|
1387
|
+
},
|
|
946
1388
|
],
|
|
947
|
-
['addCharge', 'POST', '/invoices', '/add_charge', true, null, false, {}],
|
|
948
1389
|
[
|
|
949
1390
|
'addAddonCharge',
|
|
950
1391
|
'POST',
|
|
@@ -954,6 +1395,9 @@ exports.Endpoints = {
|
|
|
954
1395
|
null,
|
|
955
1396
|
false,
|
|
956
1397
|
{},
|
|
1398
|
+
{
|
|
1399
|
+
isIdempotent: true,
|
|
1400
|
+
},
|
|
957
1401
|
],
|
|
958
1402
|
[
|
|
959
1403
|
'addChargeItem',
|
|
@@ -964,8 +1408,23 @@ exports.Endpoints = {
|
|
|
964
1408
|
null,
|
|
965
1409
|
false,
|
|
966
1410
|
{},
|
|
1411
|
+
{
|
|
1412
|
+
isIdempotent: true,
|
|
1413
|
+
},
|
|
1414
|
+
],
|
|
1415
|
+
[
|
|
1416
|
+
'close',
|
|
1417
|
+
'POST',
|
|
1418
|
+
'/invoices',
|
|
1419
|
+
'/close',
|
|
1420
|
+
true,
|
|
1421
|
+
null,
|
|
1422
|
+
false,
|
|
1423
|
+
{},
|
|
1424
|
+
{
|
|
1425
|
+
isIdempotent: true,
|
|
1426
|
+
},
|
|
967
1427
|
],
|
|
968
|
-
['close', 'POST', '/invoices', '/close', true, null, false, {}],
|
|
969
1428
|
[
|
|
970
1429
|
'collectPayment',
|
|
971
1430
|
'POST',
|
|
@@ -975,6 +1434,9 @@ exports.Endpoints = {
|
|
|
975
1434
|
null,
|
|
976
1435
|
false,
|
|
977
1436
|
{},
|
|
1437
|
+
{
|
|
1438
|
+
isIdempotent: true,
|
|
1439
|
+
},
|
|
978
1440
|
],
|
|
979
1441
|
[
|
|
980
1442
|
'recordPayment',
|
|
@@ -985,6 +1447,9 @@ exports.Endpoints = {
|
|
|
985
1447
|
null,
|
|
986
1448
|
false,
|
|
987
1449
|
{},
|
|
1450
|
+
{
|
|
1451
|
+
isIdempotent: true,
|
|
1452
|
+
},
|
|
988
1453
|
],
|
|
989
1454
|
[
|
|
990
1455
|
'recordTaxWithheld',
|
|
@@ -995,6 +1460,9 @@ exports.Endpoints = {
|
|
|
995
1460
|
null,
|
|
996
1461
|
false,
|
|
997
1462
|
{},
|
|
1463
|
+
{
|
|
1464
|
+
isIdempotent: true,
|
|
1465
|
+
},
|
|
998
1466
|
],
|
|
999
1467
|
[
|
|
1000
1468
|
'removeTaxWithheld',
|
|
@@ -1005,8 +1473,23 @@ exports.Endpoints = {
|
|
|
1005
1473
|
null,
|
|
1006
1474
|
false,
|
|
1007
1475
|
{},
|
|
1476
|
+
{
|
|
1477
|
+
isIdempotent: true,
|
|
1478
|
+
},
|
|
1479
|
+
],
|
|
1480
|
+
[
|
|
1481
|
+
'refund',
|
|
1482
|
+
'POST',
|
|
1483
|
+
'/invoices',
|
|
1484
|
+
'/refund',
|
|
1485
|
+
true,
|
|
1486
|
+
null,
|
|
1487
|
+
false,
|
|
1488
|
+
{},
|
|
1489
|
+
{
|
|
1490
|
+
isIdempotent: true,
|
|
1491
|
+
},
|
|
1008
1492
|
],
|
|
1009
|
-
['refund', 'POST', '/invoices', '/refund', true, null, false, {}],
|
|
1010
1493
|
[
|
|
1011
1494
|
'recordRefund',
|
|
1012
1495
|
'POST',
|
|
@@ -1016,6 +1499,9 @@ exports.Endpoints = {
|
|
|
1016
1499
|
null,
|
|
1017
1500
|
false,
|
|
1018
1501
|
{},
|
|
1502
|
+
{
|
|
1503
|
+
isIdempotent: true,
|
|
1504
|
+
},
|
|
1019
1505
|
],
|
|
1020
1506
|
[
|
|
1021
1507
|
'removePayment',
|
|
@@ -1026,6 +1512,9 @@ exports.Endpoints = {
|
|
|
1026
1512
|
null,
|
|
1027
1513
|
false,
|
|
1028
1514
|
{},
|
|
1515
|
+
{
|
|
1516
|
+
isIdempotent: true,
|
|
1517
|
+
},
|
|
1029
1518
|
],
|
|
1030
1519
|
[
|
|
1031
1520
|
'removeCreditNote',
|
|
@@ -1036,10 +1525,49 @@ exports.Endpoints = {
|
|
|
1036
1525
|
null,
|
|
1037
1526
|
false,
|
|
1038
1527
|
{},
|
|
1528
|
+
{
|
|
1529
|
+
isIdempotent: true,
|
|
1530
|
+
},
|
|
1531
|
+
],
|
|
1532
|
+
[
|
|
1533
|
+
'voidInvoice',
|
|
1534
|
+
'POST',
|
|
1535
|
+
'/invoices',
|
|
1536
|
+
'/void',
|
|
1537
|
+
true,
|
|
1538
|
+
null,
|
|
1539
|
+
false,
|
|
1540
|
+
{},
|
|
1541
|
+
{
|
|
1542
|
+
isIdempotent: true,
|
|
1543
|
+
},
|
|
1544
|
+
],
|
|
1545
|
+
[
|
|
1546
|
+
'writeOff',
|
|
1547
|
+
'POST',
|
|
1548
|
+
'/invoices',
|
|
1549
|
+
'/write_off',
|
|
1550
|
+
true,
|
|
1551
|
+
null,
|
|
1552
|
+
false,
|
|
1553
|
+
{},
|
|
1554
|
+
{
|
|
1555
|
+
isIdempotent: true,
|
|
1556
|
+
},
|
|
1557
|
+
],
|
|
1558
|
+
[
|
|
1559
|
+
'delete',
|
|
1560
|
+
'POST',
|
|
1561
|
+
'/invoices',
|
|
1562
|
+
'/delete',
|
|
1563
|
+
true,
|
|
1564
|
+
null,
|
|
1565
|
+
false,
|
|
1566
|
+
{},
|
|
1567
|
+
{
|
|
1568
|
+
isIdempotent: true,
|
|
1569
|
+
},
|
|
1039
1570
|
],
|
|
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
1571
|
[
|
|
1044
1572
|
'updateDetails',
|
|
1045
1573
|
'POST',
|
|
@@ -1049,6 +1577,9 @@ exports.Endpoints = {
|
|
|
1049
1577
|
null,
|
|
1050
1578
|
false,
|
|
1051
1579
|
{},
|
|
1580
|
+
{
|
|
1581
|
+
isIdempotent: true,
|
|
1582
|
+
},
|
|
1052
1583
|
],
|
|
1053
1584
|
[
|
|
1054
1585
|
'applyPaymentScheduleScheme',
|
|
@@ -1059,6 +1590,9 @@ exports.Endpoints = {
|
|
|
1059
1590
|
null,
|
|
1060
1591
|
false,
|
|
1061
1592
|
{},
|
|
1593
|
+
{
|
|
1594
|
+
isIdempotent: true,
|
|
1595
|
+
},
|
|
1062
1596
|
],
|
|
1063
1597
|
[
|
|
1064
1598
|
'paymentSchedules',
|
|
@@ -1069,6 +1603,7 @@ exports.Endpoints = {
|
|
|
1069
1603
|
null,
|
|
1070
1604
|
false,
|
|
1071
1605
|
{},
|
|
1606
|
+
{},
|
|
1072
1607
|
],
|
|
1073
1608
|
[
|
|
1074
1609
|
'resendEinvoice',
|
|
@@ -1079,6 +1614,9 @@ exports.Endpoints = {
|
|
|
1079
1614
|
null,
|
|
1080
1615
|
false,
|
|
1081
1616
|
{},
|
|
1617
|
+
{
|
|
1618
|
+
isIdempotent: true,
|
|
1619
|
+
},
|
|
1082
1620
|
],
|
|
1083
1621
|
[
|
|
1084
1622
|
'sendEinvoice',
|
|
@@ -1089,15 +1627,42 @@ exports.Endpoints = {
|
|
|
1089
1627
|
null,
|
|
1090
1628
|
false,
|
|
1091
1629
|
{},
|
|
1630
|
+
{
|
|
1631
|
+
isIdempotent: true,
|
|
1632
|
+
},
|
|
1092
1633
|
],
|
|
1093
1634
|
],
|
|
1094
1635
|
paymentReferenceNumber: [],
|
|
1095
1636
|
paymentSchedule: [],
|
|
1096
1637
|
taxWithheld: [],
|
|
1097
1638
|
creditNote: [
|
|
1098
|
-
[
|
|
1099
|
-
|
|
1100
|
-
|
|
1639
|
+
[
|
|
1640
|
+
'create',
|
|
1641
|
+
'POST',
|
|
1642
|
+
'/credit_notes',
|
|
1643
|
+
null,
|
|
1644
|
+
false,
|
|
1645
|
+
null,
|
|
1646
|
+
false,
|
|
1647
|
+
{},
|
|
1648
|
+
{
|
|
1649
|
+
isIdempotent: true,
|
|
1650
|
+
},
|
|
1651
|
+
],
|
|
1652
|
+
['retrieve', 'GET', '/credit_notes', null, true, null, false, {}, {}],
|
|
1653
|
+
[
|
|
1654
|
+
'pdf',
|
|
1655
|
+
'POST',
|
|
1656
|
+
'/credit_notes',
|
|
1657
|
+
'/pdf',
|
|
1658
|
+
true,
|
|
1659
|
+
null,
|
|
1660
|
+
false,
|
|
1661
|
+
{},
|
|
1662
|
+
{
|
|
1663
|
+
isIdempotent: true,
|
|
1664
|
+
},
|
|
1665
|
+
],
|
|
1101
1666
|
[
|
|
1102
1667
|
'downloadEinvoice',
|
|
1103
1668
|
'GET',
|
|
@@ -1107,8 +1672,21 @@ exports.Endpoints = {
|
|
|
1107
1672
|
null,
|
|
1108
1673
|
false,
|
|
1109
1674
|
{},
|
|
1675
|
+
{},
|
|
1676
|
+
],
|
|
1677
|
+
[
|
|
1678
|
+
'refund',
|
|
1679
|
+
'POST',
|
|
1680
|
+
'/credit_notes',
|
|
1681
|
+
'/refund',
|
|
1682
|
+
true,
|
|
1683
|
+
null,
|
|
1684
|
+
false,
|
|
1685
|
+
{},
|
|
1686
|
+
{
|
|
1687
|
+
isIdempotent: true,
|
|
1688
|
+
},
|
|
1110
1689
|
],
|
|
1111
|
-
['refund', 'POST', '/credit_notes', '/refund', true, null, false, {}],
|
|
1112
1690
|
[
|
|
1113
1691
|
'recordRefund',
|
|
1114
1692
|
'POST',
|
|
@@ -1118,9 +1696,24 @@ exports.Endpoints = {
|
|
|
1118
1696
|
null,
|
|
1119
1697
|
false,
|
|
1120
1698
|
{},
|
|
1699
|
+
{
|
|
1700
|
+
isIdempotent: true,
|
|
1701
|
+
},
|
|
1702
|
+
],
|
|
1703
|
+
[
|
|
1704
|
+
'voidCreditNote',
|
|
1705
|
+
'POST',
|
|
1706
|
+
'/credit_notes',
|
|
1707
|
+
'/void',
|
|
1708
|
+
true,
|
|
1709
|
+
null,
|
|
1710
|
+
false,
|
|
1711
|
+
{},
|
|
1712
|
+
{
|
|
1713
|
+
isIdempotent: true,
|
|
1714
|
+
},
|
|
1121
1715
|
],
|
|
1122
|
-
['
|
|
1123
|
-
['list', 'GET', '/credit_notes', null, false, null, false, {}],
|
|
1716
|
+
['list', 'GET', '/credit_notes', null, false, null, false, {}, {}],
|
|
1124
1717
|
[
|
|
1125
1718
|
'creditNotesForCustomer',
|
|
1126
1719
|
'GET',
|
|
@@ -1130,8 +1723,21 @@ exports.Endpoints = {
|
|
|
1130
1723
|
null,
|
|
1131
1724
|
false,
|
|
1132
1725
|
{},
|
|
1726
|
+
{},
|
|
1727
|
+
],
|
|
1728
|
+
[
|
|
1729
|
+
'delete',
|
|
1730
|
+
'POST',
|
|
1731
|
+
'/credit_notes',
|
|
1732
|
+
'/delete',
|
|
1733
|
+
true,
|
|
1734
|
+
null,
|
|
1735
|
+
false,
|
|
1736
|
+
{},
|
|
1737
|
+
{
|
|
1738
|
+
isIdempotent: true,
|
|
1739
|
+
},
|
|
1133
1740
|
],
|
|
1134
|
-
['delete', 'POST', '/credit_notes', '/delete', true, null, false, {}],
|
|
1135
1741
|
[
|
|
1136
1742
|
'removeTaxWithheldRefund',
|
|
1137
1743
|
'POST',
|
|
@@ -1141,6 +1747,9 @@ exports.Endpoints = {
|
|
|
1141
1747
|
null,
|
|
1142
1748
|
false,
|
|
1143
1749
|
{},
|
|
1750
|
+
{
|
|
1751
|
+
isIdempotent: true,
|
|
1752
|
+
},
|
|
1144
1753
|
],
|
|
1145
1754
|
[
|
|
1146
1755
|
'resendEinvoice',
|
|
@@ -1151,6 +1760,9 @@ exports.Endpoints = {
|
|
|
1151
1760
|
null,
|
|
1152
1761
|
false,
|
|
1153
1762
|
{},
|
|
1763
|
+
{
|
|
1764
|
+
isIdempotent: true,
|
|
1765
|
+
},
|
|
1154
1766
|
],
|
|
1155
1767
|
[
|
|
1156
1768
|
'sendEinvoice',
|
|
@@ -1161,6 +1773,9 @@ exports.Endpoints = {
|
|
|
1161
1773
|
null,
|
|
1162
1774
|
false,
|
|
1163
1775
|
{},
|
|
1776
|
+
{
|
|
1777
|
+
isIdempotent: true,
|
|
1778
|
+
},
|
|
1164
1779
|
],
|
|
1165
1780
|
[
|
|
1166
1781
|
'importCreditNote',
|
|
@@ -1171,6 +1786,9 @@ exports.Endpoints = {
|
|
|
1171
1786
|
null,
|
|
1172
1787
|
false,
|
|
1173
1788
|
{},
|
|
1789
|
+
{
|
|
1790
|
+
isIdempotent: true,
|
|
1791
|
+
},
|
|
1174
1792
|
],
|
|
1175
1793
|
],
|
|
1176
1794
|
unbilledCharge: [
|
|
@@ -1183,35 +1801,102 @@ exports.Endpoints = {
|
|
|
1183
1801
|
null,
|
|
1184
1802
|
false,
|
|
1185
1803
|
{},
|
|
1804
|
+
{
|
|
1805
|
+
isIdempotent: true,
|
|
1806
|
+
},
|
|
1186
1807
|
],
|
|
1187
|
-
['create', 'POST', '/unbilled_charges', null, false, null, false, {}],
|
|
1188
1808
|
[
|
|
1189
|
-
'
|
|
1809
|
+
'create',
|
|
1190
1810
|
'POST',
|
|
1191
1811
|
'/unbilled_charges',
|
|
1192
|
-
|
|
1812
|
+
null,
|
|
1193
1813
|
false,
|
|
1194
1814
|
null,
|
|
1195
1815
|
false,
|
|
1196
1816
|
{},
|
|
1817
|
+
{
|
|
1818
|
+
isIdempotent: true,
|
|
1819
|
+
},
|
|
1197
1820
|
],
|
|
1198
|
-
['delete', 'POST', '/unbilled_charges', '/delete', true, null, false, {}],
|
|
1199
|
-
['list', 'GET', '/unbilled_charges', null, false, null, false, {}],
|
|
1200
1821
|
[
|
|
1201
|
-
'
|
|
1822
|
+
'invoiceUnbilledCharges',
|
|
1202
1823
|
'POST',
|
|
1203
1824
|
'/unbilled_charges',
|
|
1204
|
-
'/
|
|
1825
|
+
'/invoice_unbilled_charges',
|
|
1205
1826
|
false,
|
|
1206
1827
|
null,
|
|
1207
1828
|
false,
|
|
1208
1829
|
{},
|
|
1209
|
-
|
|
1830
|
+
{
|
|
1831
|
+
isIdempotent: true,
|
|
1832
|
+
},
|
|
1833
|
+
],
|
|
1834
|
+
[
|
|
1835
|
+
'delete',
|
|
1836
|
+
'POST',
|
|
1837
|
+
'/unbilled_charges',
|
|
1838
|
+
'/delete',
|
|
1839
|
+
true,
|
|
1840
|
+
null,
|
|
1841
|
+
false,
|
|
1842
|
+
{},
|
|
1843
|
+
{
|
|
1844
|
+
isIdempotent: true,
|
|
1845
|
+
},
|
|
1846
|
+
],
|
|
1847
|
+
['list', 'GET', '/unbilled_charges', null, false, null, false, {}, {}],
|
|
1848
|
+
[
|
|
1849
|
+
'invoiceNowEstimate',
|
|
1850
|
+
'POST',
|
|
1851
|
+
'/unbilled_charges',
|
|
1852
|
+
'/invoice_now_estimate',
|
|
1853
|
+
false,
|
|
1854
|
+
null,
|
|
1855
|
+
false,
|
|
1856
|
+
{},
|
|
1857
|
+
{},
|
|
1858
|
+
],
|
|
1210
1859
|
],
|
|
1211
1860
|
order: [
|
|
1212
|
-
[
|
|
1213
|
-
|
|
1214
|
-
|
|
1861
|
+
[
|
|
1862
|
+
'create',
|
|
1863
|
+
'POST',
|
|
1864
|
+
'/orders',
|
|
1865
|
+
null,
|
|
1866
|
+
false,
|
|
1867
|
+
null,
|
|
1868
|
+
false,
|
|
1869
|
+
{},
|
|
1870
|
+
{
|
|
1871
|
+
isIdempotent: true,
|
|
1872
|
+
},
|
|
1873
|
+
],
|
|
1874
|
+
[
|
|
1875
|
+
'update',
|
|
1876
|
+
'POST',
|
|
1877
|
+
'/orders',
|
|
1878
|
+
null,
|
|
1879
|
+
true,
|
|
1880
|
+
null,
|
|
1881
|
+
false,
|
|
1882
|
+
{},
|
|
1883
|
+
{
|
|
1884
|
+
isIdempotent: true,
|
|
1885
|
+
},
|
|
1886
|
+
],
|
|
1887
|
+
[
|
|
1888
|
+
'importOrder',
|
|
1889
|
+
'POST',
|
|
1890
|
+
'/orders',
|
|
1891
|
+
'/import_order',
|
|
1892
|
+
false,
|
|
1893
|
+
null,
|
|
1894
|
+
false,
|
|
1895
|
+
{},
|
|
1896
|
+
{
|
|
1897
|
+
isIdempotent: true,
|
|
1898
|
+
},
|
|
1899
|
+
],
|
|
1215
1900
|
[
|
|
1216
1901
|
'assignOrderNumber',
|
|
1217
1902
|
'POST',
|
|
@@ -1221,8 +1906,23 @@ exports.Endpoints = {
|
|
|
1221
1906
|
null,
|
|
1222
1907
|
false,
|
|
1223
1908
|
{},
|
|
1909
|
+
{
|
|
1910
|
+
isIdempotent: true,
|
|
1911
|
+
},
|
|
1912
|
+
],
|
|
1913
|
+
[
|
|
1914
|
+
'cancel',
|
|
1915
|
+
'POST',
|
|
1916
|
+
'/orders',
|
|
1917
|
+
'/cancel',
|
|
1918
|
+
true,
|
|
1919
|
+
null,
|
|
1920
|
+
false,
|
|
1921
|
+
{},
|
|
1922
|
+
{
|
|
1923
|
+
isIdempotent: true,
|
|
1924
|
+
},
|
|
1224
1925
|
],
|
|
1225
|
-
['cancel', 'POST', '/orders', '/cancel', true, null, false, {}],
|
|
1226
1926
|
[
|
|
1227
1927
|
'createRefundableCreditNote',
|
|
1228
1928
|
'POST',
|
|
@@ -1232,13 +1932,62 @@ exports.Endpoints = {
|
|
|
1232
1932
|
null,
|
|
1233
1933
|
false,
|
|
1234
1934
|
{},
|
|
1935
|
+
{
|
|
1936
|
+
isIdempotent: true,
|
|
1937
|
+
},
|
|
1938
|
+
],
|
|
1939
|
+
[
|
|
1940
|
+
'reopen',
|
|
1941
|
+
'POST',
|
|
1942
|
+
'/orders',
|
|
1943
|
+
'/reopen',
|
|
1944
|
+
true,
|
|
1945
|
+
null,
|
|
1946
|
+
false,
|
|
1947
|
+
{},
|
|
1948
|
+
{
|
|
1949
|
+
isIdempotent: true,
|
|
1950
|
+
},
|
|
1951
|
+
],
|
|
1952
|
+
['retrieve', 'GET', '/orders', null, true, null, false, {}, {}],
|
|
1953
|
+
[
|
|
1954
|
+
'delete',
|
|
1955
|
+
'POST',
|
|
1956
|
+
'/orders',
|
|
1957
|
+
'/delete',
|
|
1958
|
+
true,
|
|
1959
|
+
null,
|
|
1960
|
+
false,
|
|
1961
|
+
{},
|
|
1962
|
+
{
|
|
1963
|
+
isIdempotent: true,
|
|
1964
|
+
},
|
|
1965
|
+
],
|
|
1966
|
+
['list', 'GET', '/orders', null, false, null, false, {}, {}],
|
|
1967
|
+
[
|
|
1968
|
+
'ordersForInvoice',
|
|
1969
|
+
'GET',
|
|
1970
|
+
'/invoices',
|
|
1971
|
+
'/orders',
|
|
1972
|
+
true,
|
|
1973
|
+
null,
|
|
1974
|
+
false,
|
|
1975
|
+
{},
|
|
1976
|
+
{},
|
|
1977
|
+
],
|
|
1978
|
+
[
|
|
1979
|
+
'resend',
|
|
1980
|
+
'POST',
|
|
1981
|
+
'/orders',
|
|
1982
|
+
'/resend',
|
|
1983
|
+
true,
|
|
1984
|
+
null,
|
|
1985
|
+
false,
|
|
1986
|
+
{},
|
|
1987
|
+
{
|
|
1988
|
+
isIdempotent: true,
|
|
1989
|
+
},
|
|
1235
1990
|
],
|
|
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
1991
|
],
|
|
1243
1992
|
gift: [
|
|
1244
1993
|
[
|
|
@@ -1252,6 +2001,9 @@ exports.Endpoints = {
|
|
|
1252
2001
|
{
|
|
1253
2002
|
additional_information: 1,
|
|
1254
2003
|
},
|
|
2004
|
+
{
|
|
2005
|
+
isIdempotent: true,
|
|
2006
|
+
},
|
|
1255
2007
|
],
|
|
1256
2008
|
[
|
|
1257
2009
|
'createForItems',
|
|
@@ -1264,12 +2016,51 @@ exports.Endpoints = {
|
|
|
1264
2016
|
{
|
|
1265
2017
|
additional_information: 1,
|
|
1266
2018
|
},
|
|
2019
|
+
{
|
|
2020
|
+
isIdempotent: true,
|
|
2021
|
+
},
|
|
2022
|
+
],
|
|
2023
|
+
['retrieve', 'GET', '/gifts', null, true, null, false, {}, {}],
|
|
2024
|
+
['list', 'GET', '/gifts', null, false, null, false, {}, {}],
|
|
2025
|
+
[
|
|
2026
|
+
'claim',
|
|
2027
|
+
'POST',
|
|
2028
|
+
'/gifts',
|
|
2029
|
+
'/claim',
|
|
2030
|
+
true,
|
|
2031
|
+
null,
|
|
2032
|
+
false,
|
|
2033
|
+
{},
|
|
2034
|
+
{
|
|
2035
|
+
isIdempotent: true,
|
|
2036
|
+
},
|
|
2037
|
+
],
|
|
2038
|
+
[
|
|
2039
|
+
'cancel',
|
|
2040
|
+
'POST',
|
|
2041
|
+
'/gifts',
|
|
2042
|
+
'/cancel',
|
|
2043
|
+
true,
|
|
2044
|
+
null,
|
|
2045
|
+
false,
|
|
2046
|
+
{},
|
|
2047
|
+
{
|
|
2048
|
+
isIdempotent: true,
|
|
2049
|
+
},
|
|
2050
|
+
],
|
|
2051
|
+
[
|
|
2052
|
+
'updateGift',
|
|
2053
|
+
'POST',
|
|
2054
|
+
'/gifts',
|
|
2055
|
+
'/update_gift',
|
|
2056
|
+
true,
|
|
2057
|
+
null,
|
|
2058
|
+
false,
|
|
2059
|
+
{},
|
|
2060
|
+
{
|
|
2061
|
+
isIdempotent: true,
|
|
2062
|
+
},
|
|
1267
2063
|
],
|
|
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
2064
|
],
|
|
1274
2065
|
transaction: [
|
|
1275
2066
|
[
|
|
@@ -1281,6 +2072,9 @@ exports.Endpoints = {
|
|
|
1281
2072
|
null,
|
|
1282
2073
|
false,
|
|
1283
2074
|
{},
|
|
2075
|
+
{
|
|
2076
|
+
isIdempotent: true,
|
|
2077
|
+
},
|
|
1284
2078
|
],
|
|
1285
2079
|
[
|
|
1286
2080
|
'voidTransaction',
|
|
@@ -1291,6 +2085,9 @@ exports.Endpoints = {
|
|
|
1291
2085
|
null,
|
|
1292
2086
|
false,
|
|
1293
2087
|
{},
|
|
2088
|
+
{
|
|
2089
|
+
isIdempotent: true,
|
|
2090
|
+
},
|
|
1294
2091
|
],
|
|
1295
2092
|
[
|
|
1296
2093
|
'recordRefund',
|
|
@@ -1301,10 +2098,37 @@ exports.Endpoints = {
|
|
|
1301
2098
|
null,
|
|
1302
2099
|
false,
|
|
1303
2100
|
{},
|
|
2101
|
+
{
|
|
2102
|
+
isIdempotent: true,
|
|
2103
|
+
},
|
|
2104
|
+
],
|
|
2105
|
+
[
|
|
2106
|
+
'reconcile',
|
|
2107
|
+
'POST',
|
|
2108
|
+
'/transactions',
|
|
2109
|
+
'/reconcile',
|
|
2110
|
+
true,
|
|
2111
|
+
null,
|
|
2112
|
+
false,
|
|
2113
|
+
{},
|
|
2114
|
+
{
|
|
2115
|
+
isIdempotent: true,
|
|
2116
|
+
},
|
|
2117
|
+
],
|
|
2118
|
+
[
|
|
2119
|
+
'refund',
|
|
2120
|
+
'POST',
|
|
2121
|
+
'/transactions',
|
|
2122
|
+
'/refund',
|
|
2123
|
+
true,
|
|
2124
|
+
null,
|
|
2125
|
+
false,
|
|
2126
|
+
{},
|
|
2127
|
+
{
|
|
2128
|
+
isIdempotent: true,
|
|
2129
|
+
},
|
|
1304
2130
|
],
|
|
1305
|
-
['
|
|
1306
|
-
['refund', 'POST', '/transactions', '/refund', true, null, false, {}],
|
|
1307
|
-
['list', 'GET', '/transactions', null, false, null, false, {}],
|
|
2131
|
+
['list', 'GET', '/transactions', null, false, null, false, {}, {}],
|
|
1308
2132
|
[
|
|
1309
2133
|
'transactionsForCustomer',
|
|
1310
2134
|
'GET',
|
|
@@ -1314,6 +2138,7 @@ exports.Endpoints = {
|
|
|
1314
2138
|
null,
|
|
1315
2139
|
false,
|
|
1316
2140
|
{},
|
|
2141
|
+
{},
|
|
1317
2142
|
],
|
|
1318
2143
|
[
|
|
1319
2144
|
'transactionsForSubscription',
|
|
@@ -1324,6 +2149,7 @@ exports.Endpoints = {
|
|
|
1324
2149
|
null,
|
|
1325
2150
|
false,
|
|
1326
2151
|
{},
|
|
2152
|
+
{},
|
|
1327
2153
|
],
|
|
1328
2154
|
[
|
|
1329
2155
|
'paymentsForInvoice',
|
|
@@ -1334,8 +2160,9 @@ exports.Endpoints = {
|
|
|
1334
2160
|
null,
|
|
1335
2161
|
false,
|
|
1336
2162
|
{},
|
|
2163
|
+
{},
|
|
1337
2164
|
],
|
|
1338
|
-
['retrieve', 'GET', '/transactions', null, true, null, false, {}],
|
|
2165
|
+
['retrieve', 'GET', '/transactions', null, true, null, false, {}, {}],
|
|
1339
2166
|
[
|
|
1340
2167
|
'deleteOfflineTransaction',
|
|
1341
2168
|
'POST',
|
|
@@ -1345,6 +2172,9 @@ exports.Endpoints = {
|
|
|
1345
2172
|
null,
|
|
1346
2173
|
false,
|
|
1347
2174
|
{},
|
|
2175
|
+
{
|
|
2176
|
+
isIdempotent: true,
|
|
2177
|
+
},
|
|
1348
2178
|
],
|
|
1349
2179
|
],
|
|
1350
2180
|
hostedPage: [
|
|
@@ -1357,6 +2187,9 @@ exports.Endpoints = {
|
|
|
1357
2187
|
null,
|
|
1358
2188
|
false,
|
|
1359
2189
|
{},
|
|
2190
|
+
{
|
|
2191
|
+
isIdempotent: true,
|
|
2192
|
+
},
|
|
1360
2193
|
],
|
|
1361
2194
|
[
|
|
1362
2195
|
'checkoutOneTime',
|
|
@@ -1367,6 +2200,9 @@ exports.Endpoints = {
|
|
|
1367
2200
|
null,
|
|
1368
2201
|
false,
|
|
1369
2202
|
{},
|
|
2203
|
+
{
|
|
2204
|
+
isIdempotent: true,
|
|
2205
|
+
},
|
|
1370
2206
|
],
|
|
1371
2207
|
[
|
|
1372
2208
|
'checkoutOneTimeForItems',
|
|
@@ -1377,6 +2213,9 @@ exports.Endpoints = {
|
|
|
1377
2213
|
null,
|
|
1378
2214
|
false,
|
|
1379
2215
|
{},
|
|
2216
|
+
{
|
|
2217
|
+
isIdempotent: true,
|
|
2218
|
+
},
|
|
1380
2219
|
],
|
|
1381
2220
|
[
|
|
1382
2221
|
'checkoutNewForItems',
|
|
@@ -1387,6 +2226,9 @@ exports.Endpoints = {
|
|
|
1387
2226
|
null,
|
|
1388
2227
|
false,
|
|
1389
2228
|
{},
|
|
2229
|
+
{
|
|
2230
|
+
isIdempotent: true,
|
|
2231
|
+
},
|
|
1390
2232
|
],
|
|
1391
2233
|
[
|
|
1392
2234
|
'checkoutExisting',
|
|
@@ -1397,6 +2239,9 @@ exports.Endpoints = {
|
|
|
1397
2239
|
null,
|
|
1398
2240
|
false,
|
|
1399
2241
|
{},
|
|
2242
|
+
{
|
|
2243
|
+
isIdempotent: true,
|
|
2244
|
+
},
|
|
1400
2245
|
],
|
|
1401
2246
|
[
|
|
1402
2247
|
'checkoutExistingForItems',
|
|
@@ -1407,6 +2252,9 @@ exports.Endpoints = {
|
|
|
1407
2252
|
null,
|
|
1408
2253
|
false,
|
|
1409
2254
|
{},
|
|
2255
|
+
{
|
|
2256
|
+
isIdempotent: true,
|
|
2257
|
+
},
|
|
1410
2258
|
],
|
|
1411
2259
|
[
|
|
1412
2260
|
'updateCard',
|
|
@@ -1417,6 +2265,9 @@ exports.Endpoints = {
|
|
|
1417
2265
|
null,
|
|
1418
2266
|
false,
|
|
1419
2267
|
{},
|
|
2268
|
+
{
|
|
2269
|
+
isIdempotent: true,
|
|
2270
|
+
},
|
|
1420
2271
|
],
|
|
1421
2272
|
[
|
|
1422
2273
|
'updatePaymentMethod',
|
|
@@ -1427,6 +2278,9 @@ exports.Endpoints = {
|
|
|
1427
2278
|
null,
|
|
1428
2279
|
false,
|
|
1429
2280
|
{},
|
|
2281
|
+
{
|
|
2282
|
+
isIdempotent: true,
|
|
2283
|
+
},
|
|
1430
2284
|
],
|
|
1431
2285
|
[
|
|
1432
2286
|
'managePaymentSources',
|
|
@@ -1437,6 +2291,9 @@ exports.Endpoints = {
|
|
|
1437
2291
|
null,
|
|
1438
2292
|
false,
|
|
1439
2293
|
{},
|
|
2294
|
+
{
|
|
2295
|
+
isIdempotent: true,
|
|
2296
|
+
},
|
|
1440
2297
|
],
|
|
1441
2298
|
[
|
|
1442
2299
|
'collectNow',
|
|
@@ -1447,6 +2304,9 @@ exports.Endpoints = {
|
|
|
1447
2304
|
null,
|
|
1448
2305
|
false,
|
|
1449
2306
|
{},
|
|
2307
|
+
{
|
|
2308
|
+
isIdempotent: true,
|
|
2309
|
+
},
|
|
1450
2310
|
],
|
|
1451
2311
|
[
|
|
1452
2312
|
'acceptQuote',
|
|
@@ -1457,6 +2317,9 @@ exports.Endpoints = {
|
|
|
1457
2317
|
null,
|
|
1458
2318
|
false,
|
|
1459
2319
|
{},
|
|
2320
|
+
{
|
|
2321
|
+
isIdempotent: true,
|
|
2322
|
+
},
|
|
1460
2323
|
],
|
|
1461
2324
|
[
|
|
1462
2325
|
'extendSubscription',
|
|
@@ -1467,6 +2330,9 @@ exports.Endpoints = {
|
|
|
1467
2330
|
null,
|
|
1468
2331
|
false,
|
|
1469
2332
|
{},
|
|
2333
|
+
{
|
|
2334
|
+
isIdempotent: true,
|
|
2335
|
+
},
|
|
1470
2336
|
],
|
|
1471
2337
|
[
|
|
1472
2338
|
'checkoutGift',
|
|
@@ -1477,6 +2343,9 @@ exports.Endpoints = {
|
|
|
1477
2343
|
null,
|
|
1478
2344
|
false,
|
|
1479
2345
|
{},
|
|
2346
|
+
{
|
|
2347
|
+
isIdempotent: true,
|
|
2348
|
+
},
|
|
1480
2349
|
],
|
|
1481
2350
|
[
|
|
1482
2351
|
'checkoutGiftForItems',
|
|
@@ -1487,6 +2356,9 @@ exports.Endpoints = {
|
|
|
1487
2356
|
null,
|
|
1488
2357
|
false,
|
|
1489
2358
|
{},
|
|
2359
|
+
{
|
|
2360
|
+
isIdempotent: true,
|
|
2361
|
+
},
|
|
1490
2362
|
],
|
|
1491
2363
|
[
|
|
1492
2364
|
'claimGift',
|
|
@@ -1497,6 +2369,9 @@ exports.Endpoints = {
|
|
|
1497
2369
|
null,
|
|
1498
2370
|
false,
|
|
1499
2371
|
{},
|
|
2372
|
+
{
|
|
2373
|
+
isIdempotent: true,
|
|
2374
|
+
},
|
|
1500
2375
|
],
|
|
1501
2376
|
[
|
|
1502
2377
|
'retrieveAgreementPdf',
|
|
@@ -1507,6 +2382,9 @@ exports.Endpoints = {
|
|
|
1507
2382
|
null,
|
|
1508
2383
|
false,
|
|
1509
2384
|
{},
|
|
2385
|
+
{
|
|
2386
|
+
isIdempotent: true,
|
|
2387
|
+
},
|
|
1510
2388
|
],
|
|
1511
2389
|
[
|
|
1512
2390
|
'acknowledge',
|
|
@@ -1517,9 +2395,12 @@ exports.Endpoints = {
|
|
|
1517
2395
|
null,
|
|
1518
2396
|
false,
|
|
1519
2397
|
{},
|
|
2398
|
+
{
|
|
2399
|
+
isIdempotent: true,
|
|
2400
|
+
},
|
|
1520
2401
|
],
|
|
1521
|
-
['retrieve', 'GET', '/hosted_pages', null, true, null, false, {}],
|
|
1522
|
-
['list', 'GET', '/hosted_pages', null, false, null, false, {}],
|
|
2402
|
+
['retrieve', 'GET', '/hosted_pages', null, true, null, false, {}, {}],
|
|
2403
|
+
['list', 'GET', '/hosted_pages', null, false, null, false, {}, {}],
|
|
1523
2404
|
[
|
|
1524
2405
|
'preCancel',
|
|
1525
2406
|
'POST',
|
|
@@ -1529,6 +2410,9 @@ exports.Endpoints = {
|
|
|
1529
2410
|
null,
|
|
1530
2411
|
false,
|
|
1531
2412
|
{},
|
|
2413
|
+
{
|
|
2414
|
+
isIdempotent: true,
|
|
2415
|
+
},
|
|
1532
2416
|
],
|
|
1533
2417
|
[
|
|
1534
2418
|
'events',
|
|
@@ -1541,6 +2425,9 @@ exports.Endpoints = {
|
|
|
1541
2425
|
{
|
|
1542
2426
|
event_data: 0,
|
|
1543
2427
|
},
|
|
2428
|
+
{
|
|
2429
|
+
isIdempotent: true,
|
|
2430
|
+
},
|
|
1544
2431
|
],
|
|
1545
2432
|
[
|
|
1546
2433
|
'viewVoucher',
|
|
@@ -1551,6 +2438,9 @@ exports.Endpoints = {
|
|
|
1551
2438
|
null,
|
|
1552
2439
|
false,
|
|
1553
2440
|
{},
|
|
2441
|
+
{
|
|
2442
|
+
isIdempotent: true,
|
|
2443
|
+
},
|
|
1554
2444
|
],
|
|
1555
2445
|
],
|
|
1556
2446
|
estimate: [
|
|
@@ -1565,6 +2455,7 @@ exports.Endpoints = {
|
|
|
1565
2455
|
{
|
|
1566
2456
|
exemption_details: 1,
|
|
1567
2457
|
},
|
|
2458
|
+
{},
|
|
1568
2459
|
],
|
|
1569
2460
|
[
|
|
1570
2461
|
'createSubItemEstimate',
|
|
@@ -1577,6 +2468,7 @@ exports.Endpoints = {
|
|
|
1577
2468
|
{
|
|
1578
2469
|
exemption_details: 1,
|
|
1579
2470
|
},
|
|
2471
|
+
{},
|
|
1580
2472
|
],
|
|
1581
2473
|
[
|
|
1582
2474
|
'createSubForCustomerEstimate',
|
|
@@ -1587,6 +2479,7 @@ exports.Endpoints = {
|
|
|
1587
2479
|
null,
|
|
1588
2480
|
false,
|
|
1589
2481
|
{},
|
|
2482
|
+
{},
|
|
1590
2483
|
],
|
|
1591
2484
|
[
|
|
1592
2485
|
'createSubItemForCustomerEstimate',
|
|
@@ -1597,6 +2490,7 @@ exports.Endpoints = {
|
|
|
1597
2490
|
null,
|
|
1598
2491
|
false,
|
|
1599
2492
|
{},
|
|
2493
|
+
{},
|
|
1600
2494
|
],
|
|
1601
2495
|
[
|
|
1602
2496
|
'updateSubscription',
|
|
@@ -1607,6 +2501,7 @@ exports.Endpoints = {
|
|
|
1607
2501
|
null,
|
|
1608
2502
|
false,
|
|
1609
2503
|
{},
|
|
2504
|
+
{},
|
|
1610
2505
|
],
|
|
1611
2506
|
[
|
|
1612
2507
|
'updateSubscriptionForItems',
|
|
@@ -1617,6 +2512,7 @@ exports.Endpoints = {
|
|
|
1617
2512
|
null,
|
|
1618
2513
|
false,
|
|
1619
2514
|
{},
|
|
2515
|
+
{},
|
|
1620
2516
|
],
|
|
1621
2517
|
[
|
|
1622
2518
|
'renewalEstimate',
|
|
@@ -1627,6 +2523,7 @@ exports.Endpoints = {
|
|
|
1627
2523
|
null,
|
|
1628
2524
|
false,
|
|
1629
2525
|
{},
|
|
2526
|
+
{},
|
|
1630
2527
|
],
|
|
1631
2528
|
[
|
|
1632
2529
|
'advanceInvoiceEstimate',
|
|
@@ -1637,6 +2534,7 @@ exports.Endpoints = {
|
|
|
1637
2534
|
null,
|
|
1638
2535
|
false,
|
|
1639
2536
|
{},
|
|
2537
|
+
{},
|
|
1640
2538
|
],
|
|
1641
2539
|
[
|
|
1642
2540
|
'regenerateInvoiceEstimate',
|
|
@@ -1647,6 +2545,7 @@ exports.Endpoints = {
|
|
|
1647
2545
|
null,
|
|
1648
2546
|
false,
|
|
1649
2547
|
{},
|
|
2548
|
+
{},
|
|
1650
2549
|
],
|
|
1651
2550
|
[
|
|
1652
2551
|
'upcomingInvoicesEstimate',
|
|
@@ -1657,6 +2556,7 @@ exports.Endpoints = {
|
|
|
1657
2556
|
null,
|
|
1658
2557
|
false,
|
|
1659
2558
|
{},
|
|
2559
|
+
{},
|
|
1660
2560
|
],
|
|
1661
2561
|
[
|
|
1662
2562
|
'changeTermEnd',
|
|
@@ -1667,6 +2567,7 @@ exports.Endpoints = {
|
|
|
1667
2567
|
null,
|
|
1668
2568
|
false,
|
|
1669
2569
|
{},
|
|
2570
|
+
{},
|
|
1670
2571
|
],
|
|
1671
2572
|
[
|
|
1672
2573
|
'cancelSubscription',
|
|
@@ -1677,6 +2578,7 @@ exports.Endpoints = {
|
|
|
1677
2578
|
null,
|
|
1678
2579
|
false,
|
|
1679
2580
|
{},
|
|
2581
|
+
{},
|
|
1680
2582
|
],
|
|
1681
2583
|
[
|
|
1682
2584
|
'cancelSubscriptionForItems',
|
|
@@ -1687,6 +2589,7 @@ exports.Endpoints = {
|
|
|
1687
2589
|
null,
|
|
1688
2590
|
false,
|
|
1689
2591
|
{},
|
|
2592
|
+
{},
|
|
1690
2593
|
],
|
|
1691
2594
|
[
|
|
1692
2595
|
'pauseSubscription',
|
|
@@ -1697,6 +2600,7 @@ exports.Endpoints = {
|
|
|
1697
2600
|
null,
|
|
1698
2601
|
false,
|
|
1699
2602
|
{},
|
|
2603
|
+
{},
|
|
1700
2604
|
],
|
|
1701
2605
|
[
|
|
1702
2606
|
'resumeSubscription',
|
|
@@ -1707,6 +2611,7 @@ exports.Endpoints = {
|
|
|
1707
2611
|
null,
|
|
1708
2612
|
false,
|
|
1709
2613
|
{},
|
|
2614
|
+
{},
|
|
1710
2615
|
],
|
|
1711
2616
|
[
|
|
1712
2617
|
'giftSubscription',
|
|
@@ -1719,6 +2624,7 @@ exports.Endpoints = {
|
|
|
1719
2624
|
{
|
|
1720
2625
|
additional_information: 1,
|
|
1721
2626
|
},
|
|
2627
|
+
{},
|
|
1722
2628
|
],
|
|
1723
2629
|
[
|
|
1724
2630
|
'giftSubscriptionForItems',
|
|
@@ -1731,6 +2637,7 @@ exports.Endpoints = {
|
|
|
1731
2637
|
{
|
|
1732
2638
|
additional_information: 1,
|
|
1733
2639
|
},
|
|
2640
|
+
{},
|
|
1734
2641
|
],
|
|
1735
2642
|
[
|
|
1736
2643
|
'createInvoice',
|
|
@@ -1741,6 +2648,7 @@ exports.Endpoints = {
|
|
|
1741
2648
|
null,
|
|
1742
2649
|
false,
|
|
1743
2650
|
{},
|
|
2651
|
+
{},
|
|
1744
2652
|
],
|
|
1745
2653
|
[
|
|
1746
2654
|
'createInvoiceForItems',
|
|
@@ -1751,6 +2659,7 @@ exports.Endpoints = {
|
|
|
1751
2659
|
null,
|
|
1752
2660
|
false,
|
|
1753
2661
|
{},
|
|
2662
|
+
{},
|
|
1754
2663
|
],
|
|
1755
2664
|
[
|
|
1756
2665
|
'paymentSchedules',
|
|
@@ -1761,10 +2670,13 @@ exports.Endpoints = {
|
|
|
1761
2670
|
null,
|
|
1762
2671
|
false,
|
|
1763
2672
|
{},
|
|
2673
|
+
{
|
|
2674
|
+
isIdempotent: true,
|
|
2675
|
+
},
|
|
1764
2676
|
],
|
|
1765
2677
|
],
|
|
1766
2678
|
quote: [
|
|
1767
|
-
['retrieve', 'GET', '/quotes', null, true, null, false, {}],
|
|
2679
|
+
['retrieve', 'GET', '/quotes', null, true, null, false, {}, {}],
|
|
1768
2680
|
[
|
|
1769
2681
|
'createSubForCustomerQuote',
|
|
1770
2682
|
'POST',
|
|
@@ -1774,6 +2686,9 @@ exports.Endpoints = {
|
|
|
1774
2686
|
null,
|
|
1775
2687
|
false,
|
|
1776
2688
|
{},
|
|
2689
|
+
{
|
|
2690
|
+
isIdempotent: true,
|
|
2691
|
+
},
|
|
1777
2692
|
],
|
|
1778
2693
|
[
|
|
1779
2694
|
'editCreateSubForCustomerQuote',
|
|
@@ -1784,6 +2699,9 @@ exports.Endpoints = {
|
|
|
1784
2699
|
null,
|
|
1785
2700
|
false,
|
|
1786
2701
|
{},
|
|
2702
|
+
{
|
|
2703
|
+
isIdempotent: true,
|
|
2704
|
+
},
|
|
1787
2705
|
],
|
|
1788
2706
|
[
|
|
1789
2707
|
'updateSubscriptionQuote',
|
|
@@ -1794,6 +2712,9 @@ exports.Endpoints = {
|
|
|
1794
2712
|
null,
|
|
1795
2713
|
false,
|
|
1796
2714
|
{},
|
|
2715
|
+
{
|
|
2716
|
+
isIdempotent: true,
|
|
2717
|
+
},
|
|
1797
2718
|
],
|
|
1798
2719
|
[
|
|
1799
2720
|
'editUpdateSubscriptionQuote',
|
|
@@ -1804,6 +2725,9 @@ exports.Endpoints = {
|
|
|
1804
2725
|
null,
|
|
1805
2726
|
false,
|
|
1806
2727
|
{},
|
|
2728
|
+
{
|
|
2729
|
+
isIdempotent: true,
|
|
2730
|
+
},
|
|
1807
2731
|
],
|
|
1808
2732
|
[
|
|
1809
2733
|
'createForOnetimeCharges',
|
|
@@ -1814,6 +2738,9 @@ exports.Endpoints = {
|
|
|
1814
2738
|
null,
|
|
1815
2739
|
false,
|
|
1816
2740
|
{},
|
|
2741
|
+
{
|
|
2742
|
+
isIdempotent: true,
|
|
2743
|
+
},
|
|
1817
2744
|
],
|
|
1818
2745
|
[
|
|
1819
2746
|
'editOneTimeQuote',
|
|
@@ -1824,6 +2751,9 @@ exports.Endpoints = {
|
|
|
1824
2751
|
null,
|
|
1825
2752
|
false,
|
|
1826
2753
|
{},
|
|
2754
|
+
{
|
|
2755
|
+
isIdempotent: true,
|
|
2756
|
+
},
|
|
1827
2757
|
],
|
|
1828
2758
|
[
|
|
1829
2759
|
'createSubItemsForCustomerQuote',
|
|
@@ -1834,6 +2764,9 @@ exports.Endpoints = {
|
|
|
1834
2764
|
null,
|
|
1835
2765
|
false,
|
|
1836
2766
|
{},
|
|
2767
|
+
{
|
|
2768
|
+
isIdempotent: true,
|
|
2769
|
+
},
|
|
1837
2770
|
],
|
|
1838
2771
|
[
|
|
1839
2772
|
'editCreateSubCustomerQuoteForItems',
|
|
@@ -1844,6 +2777,9 @@ exports.Endpoints = {
|
|
|
1844
2777
|
null,
|
|
1845
2778
|
false,
|
|
1846
2779
|
{},
|
|
2780
|
+
{
|
|
2781
|
+
isIdempotent: true,
|
|
2782
|
+
},
|
|
1847
2783
|
],
|
|
1848
2784
|
[
|
|
1849
2785
|
'updateSubscriptionQuoteForItems',
|
|
@@ -1854,6 +2790,9 @@ exports.Endpoints = {
|
|
|
1854
2790
|
null,
|
|
1855
2791
|
false,
|
|
1856
2792
|
{},
|
|
2793
|
+
{
|
|
2794
|
+
isIdempotent: true,
|
|
2795
|
+
},
|
|
1857
2796
|
],
|
|
1858
2797
|
[
|
|
1859
2798
|
'editUpdateSubscriptionQuoteForItems',
|
|
@@ -1864,6 +2803,9 @@ exports.Endpoints = {
|
|
|
1864
2803
|
null,
|
|
1865
2804
|
false,
|
|
1866
2805
|
{},
|
|
2806
|
+
{
|
|
2807
|
+
isIdempotent: true,
|
|
2808
|
+
},
|
|
1867
2809
|
],
|
|
1868
2810
|
[
|
|
1869
2811
|
'createForChargeItemsAndCharges',
|
|
@@ -1874,6 +2816,9 @@ exports.Endpoints = {
|
|
|
1874
2816
|
null,
|
|
1875
2817
|
false,
|
|
1876
2818
|
{},
|
|
2819
|
+
{
|
|
2820
|
+
isIdempotent: true,
|
|
2821
|
+
},
|
|
1877
2822
|
],
|
|
1878
2823
|
[
|
|
1879
2824
|
'editForChargeItemsAndCharges',
|
|
@@ -1884,8 +2829,11 @@ exports.Endpoints = {
|
|
|
1884
2829
|
null,
|
|
1885
2830
|
false,
|
|
1886
2831
|
{},
|
|
2832
|
+
{
|
|
2833
|
+
isIdempotent: true,
|
|
2834
|
+
},
|
|
1887
2835
|
],
|
|
1888
|
-
['list', 'GET', '/quotes', null, false, null, false, {}],
|
|
2836
|
+
['list', 'GET', '/quotes', null, false, null, false, {}, {}],
|
|
1889
2837
|
[
|
|
1890
2838
|
'quoteLineGroupsForQuote',
|
|
1891
2839
|
'GET',
|
|
@@ -1895,8 +2843,21 @@ exports.Endpoints = {
|
|
|
1895
2843
|
null,
|
|
1896
2844
|
false,
|
|
1897
2845
|
{},
|
|
2846
|
+
{},
|
|
2847
|
+
],
|
|
2848
|
+
[
|
|
2849
|
+
'convert',
|
|
2850
|
+
'POST',
|
|
2851
|
+
'/quotes',
|
|
2852
|
+
'/convert',
|
|
2853
|
+
true,
|
|
2854
|
+
null,
|
|
2855
|
+
false,
|
|
2856
|
+
{},
|
|
2857
|
+
{
|
|
2858
|
+
isIdempotent: true,
|
|
2859
|
+
},
|
|
1898
2860
|
],
|
|
1899
|
-
['convert', 'POST', '/quotes', '/convert', true, null, false, {}],
|
|
1900
2861
|
[
|
|
1901
2862
|
'updateStatus',
|
|
1902
2863
|
'POST',
|
|
@@ -1906,6 +2867,9 @@ exports.Endpoints = {
|
|
|
1906
2867
|
null,
|
|
1907
2868
|
false,
|
|
1908
2869
|
{},
|
|
2870
|
+
{
|
|
2871
|
+
isIdempotent: true,
|
|
2872
|
+
},
|
|
1909
2873
|
],
|
|
1910
2874
|
[
|
|
1911
2875
|
'extendExpiryDate',
|
|
@@ -1916,9 +2880,36 @@ exports.Endpoints = {
|
|
|
1916
2880
|
null,
|
|
1917
2881
|
false,
|
|
1918
2882
|
{},
|
|
2883
|
+
{
|
|
2884
|
+
isIdempotent: true,
|
|
2885
|
+
},
|
|
2886
|
+
],
|
|
2887
|
+
[
|
|
2888
|
+
'delete',
|
|
2889
|
+
'POST',
|
|
2890
|
+
'/quotes',
|
|
2891
|
+
'/delete',
|
|
2892
|
+
true,
|
|
2893
|
+
null,
|
|
2894
|
+
false,
|
|
2895
|
+
{},
|
|
2896
|
+
{
|
|
2897
|
+
isIdempotent: true,
|
|
2898
|
+
},
|
|
2899
|
+
],
|
|
2900
|
+
[
|
|
2901
|
+
'pdf',
|
|
2902
|
+
'POST',
|
|
2903
|
+
'/quotes',
|
|
2904
|
+
'/pdf',
|
|
2905
|
+
true,
|
|
2906
|
+
null,
|
|
2907
|
+
false,
|
|
2908
|
+
{},
|
|
2909
|
+
{
|
|
2910
|
+
isIdempotent: true,
|
|
2911
|
+
},
|
|
1919
2912
|
],
|
|
1920
|
-
['delete', 'POST', '/quotes', '/delete', true, null, false, {}],
|
|
1921
|
-
['pdf', 'POST', '/quotes', '/pdf', true, null, false, {}],
|
|
1922
2913
|
],
|
|
1923
2914
|
quotedSubscription: [],
|
|
1924
2915
|
quotedCharge: [],
|
|
@@ -1935,6 +2926,9 @@ exports.Endpoints = {
|
|
|
1935
2926
|
{
|
|
1936
2927
|
meta_data: 0,
|
|
1937
2928
|
},
|
|
2929
|
+
{
|
|
2930
|
+
isIdempotent: true,
|
|
2931
|
+
},
|
|
1938
2932
|
],
|
|
1939
2933
|
[
|
|
1940
2934
|
'update',
|
|
@@ -1947,12 +2941,51 @@ exports.Endpoints = {
|
|
|
1947
2941
|
{
|
|
1948
2942
|
meta_data: 0,
|
|
1949
2943
|
},
|
|
2944
|
+
{
|
|
2945
|
+
isIdempotent: true,
|
|
2946
|
+
},
|
|
2947
|
+
],
|
|
2948
|
+
['list', 'GET', '/plans', null, false, null, false, {}, {}],
|
|
2949
|
+
['retrieve', 'GET', '/plans', null, true, null, false, {}, {}],
|
|
2950
|
+
[
|
|
2951
|
+
'delete',
|
|
2952
|
+
'POST',
|
|
2953
|
+
'/plans',
|
|
2954
|
+
'/delete',
|
|
2955
|
+
true,
|
|
2956
|
+
null,
|
|
2957
|
+
false,
|
|
2958
|
+
{},
|
|
2959
|
+
{
|
|
2960
|
+
isIdempotent: true,
|
|
2961
|
+
},
|
|
2962
|
+
],
|
|
2963
|
+
[
|
|
2964
|
+
'copy',
|
|
2965
|
+
'POST',
|
|
2966
|
+
'/plans',
|
|
2967
|
+
'/copy',
|
|
2968
|
+
false,
|
|
2969
|
+
null,
|
|
2970
|
+
false,
|
|
2971
|
+
{},
|
|
2972
|
+
{
|
|
2973
|
+
isIdempotent: true,
|
|
2974
|
+
},
|
|
2975
|
+
],
|
|
2976
|
+
[
|
|
2977
|
+
'unarchive',
|
|
2978
|
+
'POST',
|
|
2979
|
+
'/plans',
|
|
2980
|
+
'/unarchive',
|
|
2981
|
+
true,
|
|
2982
|
+
null,
|
|
2983
|
+
false,
|
|
2984
|
+
{},
|
|
2985
|
+
{
|
|
2986
|
+
isIdempotent: true,
|
|
2987
|
+
},
|
|
1950
2988
|
],
|
|
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
2989
|
],
|
|
1957
2990
|
addon: [
|
|
1958
2991
|
[
|
|
@@ -1966,6 +2999,9 @@ exports.Endpoints = {
|
|
|
1966
2999
|
{
|
|
1967
3000
|
meta_data: 0,
|
|
1968
3001
|
},
|
|
3002
|
+
{
|
|
3003
|
+
isIdempotent: true,
|
|
3004
|
+
},
|
|
1969
3005
|
],
|
|
1970
3006
|
[
|
|
1971
3007
|
'update',
|
|
@@ -1978,12 +3014,51 @@ exports.Endpoints = {
|
|
|
1978
3014
|
{
|
|
1979
3015
|
meta_data: 0,
|
|
1980
3016
|
},
|
|
3017
|
+
{
|
|
3018
|
+
isIdempotent: true,
|
|
3019
|
+
},
|
|
3020
|
+
],
|
|
3021
|
+
['list', 'GET', '/addons', null, false, null, false, {}, {}],
|
|
3022
|
+
['retrieve', 'GET', '/addons', null, true, null, false, {}, {}],
|
|
3023
|
+
[
|
|
3024
|
+
'delete',
|
|
3025
|
+
'POST',
|
|
3026
|
+
'/addons',
|
|
3027
|
+
'/delete',
|
|
3028
|
+
true,
|
|
3029
|
+
null,
|
|
3030
|
+
false,
|
|
3031
|
+
{},
|
|
3032
|
+
{
|
|
3033
|
+
isIdempotent: true,
|
|
3034
|
+
},
|
|
3035
|
+
],
|
|
3036
|
+
[
|
|
3037
|
+
'copy',
|
|
3038
|
+
'POST',
|
|
3039
|
+
'/addons',
|
|
3040
|
+
'/copy',
|
|
3041
|
+
false,
|
|
3042
|
+
null,
|
|
3043
|
+
false,
|
|
3044
|
+
{},
|
|
3045
|
+
{
|
|
3046
|
+
isIdempotent: true,
|
|
3047
|
+
},
|
|
3048
|
+
],
|
|
3049
|
+
[
|
|
3050
|
+
'unarchive',
|
|
3051
|
+
'POST',
|
|
3052
|
+
'/addons',
|
|
3053
|
+
'/unarchive',
|
|
3054
|
+
true,
|
|
3055
|
+
null,
|
|
3056
|
+
false,
|
|
3057
|
+
{},
|
|
3058
|
+
{
|
|
3059
|
+
isIdempotent: true,
|
|
3060
|
+
},
|
|
1981
3061
|
],
|
|
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
3062
|
],
|
|
1988
3063
|
coupon: [
|
|
1989
3064
|
[
|
|
@@ -1997,6 +3072,9 @@ exports.Endpoints = {
|
|
|
1997
3072
|
{
|
|
1998
3073
|
meta_data: 0,
|
|
1999
3074
|
},
|
|
3075
|
+
{
|
|
3076
|
+
isIdempotent: true,
|
|
3077
|
+
},
|
|
2000
3078
|
],
|
|
2001
3079
|
[
|
|
2002
3080
|
'createForItems',
|
|
@@ -2013,6 +3091,9 @@ exports.Endpoints = {
|
|
|
2013
3091
|
currencies: 1,
|
|
2014
3092
|
item_price_periods: 1,
|
|
2015
3093
|
},
|
|
3094
|
+
{
|
|
3095
|
+
isIdempotent: true,
|
|
3096
|
+
},
|
|
2016
3097
|
],
|
|
2017
3098
|
[
|
|
2018
3099
|
'updateForItems',
|
|
@@ -2029,9 +3110,12 @@ exports.Endpoints = {
|
|
|
2029
3110
|
currencies: 1,
|
|
2030
3111
|
item_price_periods: 1,
|
|
2031
3112
|
},
|
|
3113
|
+
{
|
|
3114
|
+
isIdempotent: true,
|
|
3115
|
+
},
|
|
2032
3116
|
],
|
|
2033
|
-
['list', 'GET', '/coupons', null, false, null, false, {}],
|
|
2034
|
-
['retrieve', 'GET', '/coupons', null, true, null, false, {}],
|
|
3117
|
+
['list', 'GET', '/coupons', null, false, null, false, {}, {}],
|
|
3118
|
+
['retrieve', 'GET', '/coupons', null, true, null, false, {}, {}],
|
|
2035
3119
|
[
|
|
2036
3120
|
'update',
|
|
2037
3121
|
'POST',
|
|
@@ -2043,10 +3127,49 @@ exports.Endpoints = {
|
|
|
2043
3127
|
{
|
|
2044
3128
|
meta_data: 0,
|
|
2045
3129
|
},
|
|
3130
|
+
{
|
|
3131
|
+
isIdempotent: true,
|
|
3132
|
+
},
|
|
3133
|
+
],
|
|
3134
|
+
[
|
|
3135
|
+
'delete',
|
|
3136
|
+
'POST',
|
|
3137
|
+
'/coupons',
|
|
3138
|
+
'/delete',
|
|
3139
|
+
true,
|
|
3140
|
+
null,
|
|
3141
|
+
false,
|
|
3142
|
+
{},
|
|
3143
|
+
{
|
|
3144
|
+
isIdempotent: true,
|
|
3145
|
+
},
|
|
3146
|
+
],
|
|
3147
|
+
[
|
|
3148
|
+
'copy',
|
|
3149
|
+
'POST',
|
|
3150
|
+
'/coupons',
|
|
3151
|
+
'/copy',
|
|
3152
|
+
false,
|
|
3153
|
+
null,
|
|
3154
|
+
false,
|
|
3155
|
+
{},
|
|
3156
|
+
{
|
|
3157
|
+
isIdempotent: true,
|
|
3158
|
+
},
|
|
3159
|
+
],
|
|
3160
|
+
[
|
|
3161
|
+
'unarchive',
|
|
3162
|
+
'POST',
|
|
3163
|
+
'/coupons',
|
|
3164
|
+
'/unarchive',
|
|
3165
|
+
true,
|
|
3166
|
+
null,
|
|
3167
|
+
false,
|
|
3168
|
+
{},
|
|
3169
|
+
{
|
|
3170
|
+
isIdempotent: true,
|
|
3171
|
+
},
|
|
2046
3172
|
],
|
|
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
3173
|
],
|
|
2051
3174
|
couponSet: [
|
|
2052
3175
|
[
|
|
@@ -2060,6 +3183,9 @@ exports.Endpoints = {
|
|
|
2060
3183
|
{
|
|
2061
3184
|
meta_data: 0,
|
|
2062
3185
|
},
|
|
3186
|
+
{
|
|
3187
|
+
isIdempotent: true,
|
|
3188
|
+
},
|
|
2063
3189
|
],
|
|
2064
3190
|
[
|
|
2065
3191
|
'addCouponCodes',
|
|
@@ -2070,9 +3196,12 @@ exports.Endpoints = {
|
|
|
2070
3196
|
null,
|
|
2071
3197
|
false,
|
|
2072
3198
|
{},
|
|
3199
|
+
{
|
|
3200
|
+
isIdempotent: true,
|
|
3201
|
+
},
|
|
2073
3202
|
],
|
|
2074
|
-
['list', 'GET', '/coupon_sets', null, false, null, false, {}],
|
|
2075
|
-
['retrieve', 'GET', '/coupon_sets', null, true, null, false, {}],
|
|
3203
|
+
['list', 'GET', '/coupon_sets', null, false, null, false, {}, {}],
|
|
3204
|
+
['retrieve', 'GET', '/coupon_sets', null, true, null, false, {}, {}],
|
|
2076
3205
|
[
|
|
2077
3206
|
'update',
|
|
2078
3207
|
'POST',
|
|
@@ -2084,8 +3213,23 @@ exports.Endpoints = {
|
|
|
2084
3213
|
{
|
|
2085
3214
|
meta_data: 0,
|
|
2086
3215
|
},
|
|
3216
|
+
{
|
|
3217
|
+
isIdempotent: true,
|
|
3218
|
+
},
|
|
3219
|
+
],
|
|
3220
|
+
[
|
|
3221
|
+
'delete',
|
|
3222
|
+
'POST',
|
|
3223
|
+
'/coupon_sets',
|
|
3224
|
+
'/delete',
|
|
3225
|
+
true,
|
|
3226
|
+
null,
|
|
3227
|
+
false,
|
|
3228
|
+
{},
|
|
3229
|
+
{
|
|
3230
|
+
isIdempotent: true,
|
|
3231
|
+
},
|
|
2087
3232
|
],
|
|
2088
|
-
['delete', 'POST', '/coupon_sets', '/delete', true, null, false, {}],
|
|
2089
3233
|
[
|
|
2090
3234
|
'deleteUnusedCouponCodes',
|
|
2091
3235
|
'POST',
|
|
@@ -2095,135 +3239,338 @@ exports.Endpoints = {
|
|
|
2095
3239
|
null,
|
|
2096
3240
|
false,
|
|
2097
3241
|
{},
|
|
3242
|
+
{
|
|
3243
|
+
isIdempotent: true,
|
|
3244
|
+
},
|
|
2098
3245
|
],
|
|
2099
3246
|
],
|
|
2100
3247
|
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
3248
|
[
|
|
2114
|
-
'
|
|
3249
|
+
'create',
|
|
2115
3250
|
'POST',
|
|
2116
|
-
'/
|
|
2117
|
-
|
|
2118
|
-
|
|
3251
|
+
'/coupon_codes',
|
|
3252
|
+
null,
|
|
3253
|
+
false,
|
|
2119
3254
|
null,
|
|
2120
3255
|
false,
|
|
2121
3256
|
{},
|
|
3257
|
+
{
|
|
3258
|
+
isIdempotent: true,
|
|
3259
|
+
},
|
|
2122
3260
|
],
|
|
2123
|
-
['
|
|
2124
|
-
['
|
|
2125
|
-
],
|
|
2126
|
-
event: [
|
|
2127
|
-
['list', 'GET', '/events', null, false, null, false, {}],
|
|
2128
|
-
['retrieve', 'GET', '/events', null, true, null, false, {}],
|
|
2129
|
-
],
|
|
2130
|
-
comment: [
|
|
2131
|
-
['create', 'POST', '/comments', null, false, null, false, {}],
|
|
2132
|
-
['retrieve', 'GET', '/comments', null, true, null, false, {}],
|
|
2133
|
-
['list', 'GET', '/comments', null, false, null, false, {}],
|
|
2134
|
-
['delete', 'POST', '/comments', '/delete', true, null, false, {}],
|
|
2135
|
-
],
|
|
2136
|
-
download: [],
|
|
2137
|
-
portalSession: [
|
|
2138
|
-
['create', 'POST', '/portal_sessions', null, false, null, false, {}],
|
|
2139
|
-
['retrieve', 'GET', '/portal_sessions', null, true, null, false, {}],
|
|
2140
|
-
['logout', 'POST', '/portal_sessions', '/logout', true, null, false, {}],
|
|
3261
|
+
['retrieve', 'GET', '/coupon_codes', null, true, null, false, {}, {}],
|
|
3262
|
+
['list', 'GET', '/coupon_codes', null, false, null, false, {}, {}],
|
|
2141
3263
|
[
|
|
2142
|
-
'
|
|
3264
|
+
'archive',
|
|
2143
3265
|
'POST',
|
|
2144
|
-
'/
|
|
2145
|
-
'/
|
|
3266
|
+
'/coupon_codes',
|
|
3267
|
+
'/archive',
|
|
2146
3268
|
true,
|
|
2147
3269
|
null,
|
|
2148
3270
|
false,
|
|
2149
3271
|
{},
|
|
3272
|
+
{
|
|
3273
|
+
isIdempotent: true,
|
|
3274
|
+
},
|
|
2150
3275
|
],
|
|
2151
3276
|
],
|
|
2152
|
-
|
|
2153
|
-
['
|
|
2154
|
-
],
|
|
2155
|
-
resourceMigration: [
|
|
3277
|
+
address: [
|
|
3278
|
+
['retrieve', 'GET', '/addresses', null, false, null, false, {}, {}],
|
|
2156
3279
|
[
|
|
2157
|
-
'
|
|
2158
|
-
'
|
|
2159
|
-
'/
|
|
2160
|
-
|
|
3280
|
+
'update',
|
|
3281
|
+
'POST',
|
|
3282
|
+
'/addresses',
|
|
3283
|
+
null,
|
|
2161
3284
|
false,
|
|
2162
3285
|
null,
|
|
2163
3286
|
false,
|
|
2164
3287
|
{},
|
|
3288
|
+
{
|
|
3289
|
+
isIdempotent: true,
|
|
3290
|
+
},
|
|
2165
3291
|
],
|
|
2166
3292
|
],
|
|
2167
|
-
|
|
2168
|
-
['retrieve', 'GET', '/time_machines', null, true, null, false, {}],
|
|
3293
|
+
usage: [
|
|
2169
3294
|
[
|
|
2170
|
-
'
|
|
3295
|
+
'create',
|
|
2171
3296
|
'POST',
|
|
2172
|
-
'/
|
|
2173
|
-
'/
|
|
3297
|
+
'/subscriptions',
|
|
3298
|
+
'/usages',
|
|
2174
3299
|
true,
|
|
2175
3300
|
null,
|
|
2176
3301
|
false,
|
|
2177
3302
|
{},
|
|
3303
|
+
{
|
|
3304
|
+
isIdempotent: true,
|
|
3305
|
+
},
|
|
2178
3306
|
],
|
|
3307
|
+
['retrieve', 'GET', '/subscriptions', '/usages', true, null, false, {}, {}],
|
|
2179
3308
|
[
|
|
2180
|
-
'
|
|
3309
|
+
'delete',
|
|
2181
3310
|
'POST',
|
|
2182
|
-
'/
|
|
2183
|
-
'/
|
|
3311
|
+
'/subscriptions',
|
|
3312
|
+
'/delete_usage',
|
|
2184
3313
|
true,
|
|
2185
3314
|
null,
|
|
2186
3315
|
false,
|
|
2187
3316
|
{},
|
|
3317
|
+
{
|
|
3318
|
+
isIdempotent: true,
|
|
3319
|
+
},
|
|
2188
3320
|
],
|
|
2189
|
-
|
|
2190
|
-
export: [
|
|
2191
|
-
['retrieve', 'GET', '/exports', null, true, null, false, {}],
|
|
3321
|
+
['list', 'GET', '/usages', null, false, null, false, {}, {}],
|
|
2192
3322
|
[
|
|
2193
|
-
'
|
|
3323
|
+
'pdf',
|
|
2194
3324
|
'POST',
|
|
2195
|
-
'/
|
|
2196
|
-
'/
|
|
3325
|
+
'/usages',
|
|
3326
|
+
'/pdf',
|
|
2197
3327
|
false,
|
|
2198
3328
|
null,
|
|
2199
3329
|
false,
|
|
2200
3330
|
{},
|
|
3331
|
+
{
|
|
3332
|
+
isIdempotent: true,
|
|
3333
|
+
},
|
|
2201
3334
|
],
|
|
3335
|
+
],
|
|
3336
|
+
event: [
|
|
3337
|
+
['list', 'GET', '/events', null, false, null, false, {}, {}],
|
|
3338
|
+
['retrieve', 'GET', '/events', null, true, null, false, {}, {}],
|
|
3339
|
+
],
|
|
3340
|
+
comment: [
|
|
2202
3341
|
[
|
|
2203
|
-
'
|
|
3342
|
+
'create',
|
|
2204
3343
|
'POST',
|
|
2205
|
-
'/
|
|
2206
|
-
|
|
3344
|
+
'/comments',
|
|
3345
|
+
null,
|
|
2207
3346
|
false,
|
|
2208
3347
|
null,
|
|
2209
3348
|
false,
|
|
2210
3349
|
{},
|
|
3350
|
+
{
|
|
3351
|
+
isIdempotent: true,
|
|
3352
|
+
},
|
|
2211
3353
|
],
|
|
2212
|
-
['
|
|
2213
|
-
['
|
|
2214
|
-
['coupons', 'POST', '/exports', '/coupons', false, null, false, {}],
|
|
2215
|
-
['customers', 'POST', '/exports', '/customers', false, null, false, {}],
|
|
3354
|
+
['retrieve', 'GET', '/comments', null, true, null, false, {}, {}],
|
|
3355
|
+
['list', 'GET', '/comments', null, false, null, false, {}, {}],
|
|
2216
3356
|
[
|
|
2217
|
-
'
|
|
3357
|
+
'delete',
|
|
2218
3358
|
'POST',
|
|
2219
|
-
'/
|
|
2220
|
-
'/
|
|
3359
|
+
'/comments',
|
|
3360
|
+
'/delete',
|
|
3361
|
+
true,
|
|
3362
|
+
null,
|
|
3363
|
+
false,
|
|
3364
|
+
{},
|
|
3365
|
+
{
|
|
3366
|
+
isIdempotent: true,
|
|
3367
|
+
},
|
|
3368
|
+
],
|
|
3369
|
+
],
|
|
3370
|
+
download: [],
|
|
3371
|
+
portalSession: [
|
|
3372
|
+
[
|
|
3373
|
+
'create',
|
|
3374
|
+
'POST',
|
|
3375
|
+
'/portal_sessions',
|
|
3376
|
+
null,
|
|
3377
|
+
false,
|
|
3378
|
+
null,
|
|
3379
|
+
false,
|
|
3380
|
+
{},
|
|
3381
|
+
{
|
|
3382
|
+
isIdempotent: true,
|
|
3383
|
+
},
|
|
3384
|
+
],
|
|
3385
|
+
['retrieve', 'GET', '/portal_sessions', null, true, null, false, {}, {}],
|
|
3386
|
+
[
|
|
3387
|
+
'logout',
|
|
3388
|
+
'POST',
|
|
3389
|
+
'/portal_sessions',
|
|
3390
|
+
'/logout',
|
|
3391
|
+
true,
|
|
3392
|
+
null,
|
|
3393
|
+
false,
|
|
3394
|
+
{},
|
|
3395
|
+
{
|
|
3396
|
+
isIdempotent: true,
|
|
3397
|
+
},
|
|
3398
|
+
],
|
|
3399
|
+
[
|
|
3400
|
+
'activate',
|
|
3401
|
+
'POST',
|
|
3402
|
+
'/portal_sessions',
|
|
3403
|
+
'/activate',
|
|
3404
|
+
true,
|
|
3405
|
+
null,
|
|
3406
|
+
false,
|
|
3407
|
+
{},
|
|
3408
|
+
{
|
|
3409
|
+
isIdempotent: true,
|
|
3410
|
+
},
|
|
3411
|
+
],
|
|
3412
|
+
],
|
|
3413
|
+
siteMigrationDetail: [
|
|
3414
|
+
[
|
|
3415
|
+
'list',
|
|
3416
|
+
'GET',
|
|
3417
|
+
'/site_migration_details',
|
|
3418
|
+
null,
|
|
2221
3419
|
false,
|
|
2222
3420
|
null,
|
|
2223
3421
|
false,
|
|
2224
3422
|
{},
|
|
3423
|
+
{},
|
|
3424
|
+
],
|
|
3425
|
+
],
|
|
3426
|
+
resourceMigration: [
|
|
3427
|
+
[
|
|
3428
|
+
'retrieveLatest',
|
|
3429
|
+
'GET',
|
|
3430
|
+
'/resource_migrations',
|
|
3431
|
+
'/retrieve_latest',
|
|
3432
|
+
false,
|
|
3433
|
+
null,
|
|
3434
|
+
false,
|
|
3435
|
+
{},
|
|
3436
|
+
{},
|
|
3437
|
+
],
|
|
3438
|
+
],
|
|
3439
|
+
timeMachine: [
|
|
3440
|
+
['retrieve', 'GET', '/time_machines', null, true, null, false, {}, {}],
|
|
3441
|
+
[
|
|
3442
|
+
'startAfresh',
|
|
3443
|
+
'POST',
|
|
3444
|
+
'/time_machines',
|
|
3445
|
+
'/start_afresh',
|
|
3446
|
+
true,
|
|
3447
|
+
null,
|
|
3448
|
+
false,
|
|
3449
|
+
{},
|
|
3450
|
+
{
|
|
3451
|
+
isIdempotent: true,
|
|
3452
|
+
},
|
|
3453
|
+
],
|
|
3454
|
+
[
|
|
3455
|
+
'travelForward',
|
|
3456
|
+
'POST',
|
|
3457
|
+
'/time_machines',
|
|
3458
|
+
'/travel_forward',
|
|
3459
|
+
true,
|
|
3460
|
+
null,
|
|
3461
|
+
false,
|
|
3462
|
+
{},
|
|
3463
|
+
{
|
|
3464
|
+
isIdempotent: true,
|
|
3465
|
+
},
|
|
3466
|
+
],
|
|
3467
|
+
],
|
|
3468
|
+
export: [
|
|
3469
|
+
['retrieve', 'GET', '/exports', null, true, null, false, {}, {}],
|
|
3470
|
+
[
|
|
3471
|
+
'revenueRecognition',
|
|
3472
|
+
'POST',
|
|
3473
|
+
'/exports',
|
|
3474
|
+
'/revenue_recognition',
|
|
3475
|
+
false,
|
|
3476
|
+
null,
|
|
3477
|
+
false,
|
|
3478
|
+
{},
|
|
3479
|
+
{
|
|
3480
|
+
isIdempotent: true,
|
|
3481
|
+
},
|
|
3482
|
+
],
|
|
3483
|
+
[
|
|
3484
|
+
'deferredRevenue',
|
|
3485
|
+
'POST',
|
|
3486
|
+
'/exports',
|
|
3487
|
+
'/deferred_revenue',
|
|
3488
|
+
false,
|
|
3489
|
+
null,
|
|
3490
|
+
false,
|
|
3491
|
+
{},
|
|
3492
|
+
{
|
|
3493
|
+
isIdempotent: true,
|
|
3494
|
+
},
|
|
3495
|
+
],
|
|
3496
|
+
[
|
|
3497
|
+
'plans',
|
|
3498
|
+
'POST',
|
|
3499
|
+
'/exports',
|
|
3500
|
+
'/plans',
|
|
3501
|
+
false,
|
|
3502
|
+
null,
|
|
3503
|
+
false,
|
|
3504
|
+
{},
|
|
3505
|
+
{
|
|
3506
|
+
isIdempotent: true,
|
|
3507
|
+
},
|
|
3508
|
+
],
|
|
3509
|
+
[
|
|
3510
|
+
'addons',
|
|
3511
|
+
'POST',
|
|
3512
|
+
'/exports',
|
|
3513
|
+
'/addons',
|
|
3514
|
+
false,
|
|
3515
|
+
null,
|
|
3516
|
+
false,
|
|
3517
|
+
{},
|
|
3518
|
+
{
|
|
3519
|
+
isIdempotent: true,
|
|
3520
|
+
},
|
|
3521
|
+
],
|
|
3522
|
+
[
|
|
3523
|
+
'coupons',
|
|
3524
|
+
'POST',
|
|
3525
|
+
'/exports',
|
|
3526
|
+
'/coupons',
|
|
3527
|
+
false,
|
|
3528
|
+
null,
|
|
3529
|
+
false,
|
|
3530
|
+
{},
|
|
3531
|
+
{
|
|
3532
|
+
isIdempotent: true,
|
|
3533
|
+
},
|
|
3534
|
+
],
|
|
3535
|
+
[
|
|
3536
|
+
'customers',
|
|
3537
|
+
'POST',
|
|
3538
|
+
'/exports',
|
|
3539
|
+
'/customers',
|
|
3540
|
+
false,
|
|
3541
|
+
null,
|
|
3542
|
+
false,
|
|
3543
|
+
{},
|
|
3544
|
+
{
|
|
3545
|
+
isIdempotent: true,
|
|
3546
|
+
},
|
|
3547
|
+
],
|
|
3548
|
+
[
|
|
3549
|
+
'subscriptions',
|
|
3550
|
+
'POST',
|
|
3551
|
+
'/exports',
|
|
3552
|
+
'/subscriptions',
|
|
3553
|
+
false,
|
|
3554
|
+
null,
|
|
3555
|
+
false,
|
|
3556
|
+
{},
|
|
3557
|
+
{
|
|
3558
|
+
isIdempotent: true,
|
|
3559
|
+
},
|
|
3560
|
+
],
|
|
3561
|
+
[
|
|
3562
|
+
'invoices',
|
|
3563
|
+
'POST',
|
|
3564
|
+
'/exports',
|
|
3565
|
+
'/invoices',
|
|
3566
|
+
false,
|
|
3567
|
+
null,
|
|
3568
|
+
false,
|
|
3569
|
+
{},
|
|
3570
|
+
{
|
|
3571
|
+
isIdempotent: true,
|
|
3572
|
+
},
|
|
2225
3573
|
],
|
|
2226
|
-
['invoices', 'POST', '/exports', '/invoices', false, null, false, {}],
|
|
2227
3574
|
[
|
|
2228
3575
|
'creditNotes',
|
|
2229
3576
|
'POST',
|
|
@@ -2233,6 +3580,9 @@ exports.Endpoints = {
|
|
|
2233
3580
|
null,
|
|
2234
3581
|
false,
|
|
2235
3582
|
{},
|
|
3583
|
+
{
|
|
3584
|
+
isIdempotent: true,
|
|
3585
|
+
},
|
|
2236
3586
|
],
|
|
2237
3587
|
[
|
|
2238
3588
|
'transactions',
|
|
@@ -2243,8 +3593,23 @@ exports.Endpoints = {
|
|
|
2243
3593
|
null,
|
|
2244
3594
|
false,
|
|
2245
3595
|
{},
|
|
3596
|
+
{
|
|
3597
|
+
isIdempotent: true,
|
|
3598
|
+
},
|
|
3599
|
+
],
|
|
3600
|
+
[
|
|
3601
|
+
'orders',
|
|
3602
|
+
'POST',
|
|
3603
|
+
'/exports',
|
|
3604
|
+
'/orders',
|
|
3605
|
+
false,
|
|
3606
|
+
null,
|
|
3607
|
+
false,
|
|
3608
|
+
{},
|
|
3609
|
+
{
|
|
3610
|
+
isIdempotent: true,
|
|
3611
|
+
},
|
|
2246
3612
|
],
|
|
2247
|
-
['orders', 'POST', '/exports', '/orders', false, null, false, {}],
|
|
2248
3613
|
[
|
|
2249
3614
|
'itemFamilies',
|
|
2250
3615
|
'POST',
|
|
@@ -2254,9 +3619,36 @@ exports.Endpoints = {
|
|
|
2254
3619
|
null,
|
|
2255
3620
|
false,
|
|
2256
3621
|
{},
|
|
3622
|
+
{
|
|
3623
|
+
isIdempotent: true,
|
|
3624
|
+
},
|
|
3625
|
+
],
|
|
3626
|
+
[
|
|
3627
|
+
'items',
|
|
3628
|
+
'POST',
|
|
3629
|
+
'/exports',
|
|
3630
|
+
'/items',
|
|
3631
|
+
false,
|
|
3632
|
+
null,
|
|
3633
|
+
false,
|
|
3634
|
+
{},
|
|
3635
|
+
{
|
|
3636
|
+
isIdempotent: true,
|
|
3637
|
+
},
|
|
3638
|
+
],
|
|
3639
|
+
[
|
|
3640
|
+
'itemPrices',
|
|
3641
|
+
'POST',
|
|
3642
|
+
'/exports',
|
|
3643
|
+
'/item_prices',
|
|
3644
|
+
false,
|
|
3645
|
+
null,
|
|
3646
|
+
false,
|
|
3647
|
+
{},
|
|
3648
|
+
{
|
|
3649
|
+
isIdempotent: true,
|
|
3650
|
+
},
|
|
2257
3651
|
],
|
|
2258
|
-
['items', 'POST', '/exports', '/items', false, null, false, {}],
|
|
2259
|
-
['itemPrices', 'POST', '/exports', '/item_prices', false, null, false, {}],
|
|
2260
3652
|
[
|
|
2261
3653
|
'attachedItems',
|
|
2262
3654
|
'POST',
|
|
@@ -2266,6 +3658,9 @@ exports.Endpoints = {
|
|
|
2266
3658
|
null,
|
|
2267
3659
|
false,
|
|
2268
3660
|
{},
|
|
3661
|
+
{
|
|
3662
|
+
isIdempotent: true,
|
|
3663
|
+
},
|
|
2269
3664
|
],
|
|
2270
3665
|
[
|
|
2271
3666
|
'differentialPrices',
|
|
@@ -2276,6 +3671,9 @@ exports.Endpoints = {
|
|
|
2276
3671
|
null,
|
|
2277
3672
|
false,
|
|
2278
3673
|
{},
|
|
3674
|
+
{
|
|
3675
|
+
isIdempotent: true,
|
|
3676
|
+
},
|
|
2279
3677
|
],
|
|
2280
3678
|
[
|
|
2281
3679
|
'priceVariants',
|
|
@@ -2286,20 +3684,83 @@ exports.Endpoints = {
|
|
|
2286
3684
|
null,
|
|
2287
3685
|
false,
|
|
2288
3686
|
{},
|
|
3687
|
+
{
|
|
3688
|
+
isIdempotent: true,
|
|
3689
|
+
},
|
|
2289
3690
|
],
|
|
2290
3691
|
],
|
|
2291
3692
|
paymentIntent: [
|
|
2292
|
-
[
|
|
2293
|
-
|
|
2294
|
-
|
|
3693
|
+
[
|
|
3694
|
+
'create',
|
|
3695
|
+
'POST',
|
|
3696
|
+
'/payment_intents',
|
|
3697
|
+
null,
|
|
3698
|
+
false,
|
|
3699
|
+
null,
|
|
3700
|
+
false,
|
|
3701
|
+
{},
|
|
3702
|
+
{
|
|
3703
|
+
isIdempotent: true,
|
|
3704
|
+
},
|
|
3705
|
+
],
|
|
3706
|
+
[
|
|
3707
|
+
'update',
|
|
3708
|
+
'POST',
|
|
3709
|
+
'/payment_intents',
|
|
3710
|
+
null,
|
|
3711
|
+
true,
|
|
3712
|
+
null,
|
|
3713
|
+
false,
|
|
3714
|
+
{},
|
|
3715
|
+
{
|
|
3716
|
+
isIdempotent: true,
|
|
3717
|
+
},
|
|
3718
|
+
],
|
|
3719
|
+
['retrieve', 'GET', '/payment_intents', null, true, null, false, {}, {}],
|
|
2295
3720
|
],
|
|
2296
3721
|
gatewayErrorDetail: [],
|
|
2297
3722
|
itemFamily: [
|
|
2298
|
-
[
|
|
2299
|
-
|
|
2300
|
-
|
|
2301
|
-
|
|
2302
|
-
|
|
3723
|
+
[
|
|
3724
|
+
'create',
|
|
3725
|
+
'POST',
|
|
3726
|
+
'/item_families',
|
|
3727
|
+
null,
|
|
3728
|
+
false,
|
|
3729
|
+
null,
|
|
3730
|
+
false,
|
|
3731
|
+
{},
|
|
3732
|
+
{
|
|
3733
|
+
isIdempotent: true,
|
|
3734
|
+
},
|
|
3735
|
+
],
|
|
3736
|
+
['retrieve', 'GET', '/item_families', null, true, null, false, {}, {}],
|
|
3737
|
+
['list', 'GET', '/item_families', null, false, null, false, {}, {}],
|
|
3738
|
+
[
|
|
3739
|
+
'update',
|
|
3740
|
+
'POST',
|
|
3741
|
+
'/item_families',
|
|
3742
|
+
null,
|
|
3743
|
+
true,
|
|
3744
|
+
null,
|
|
3745
|
+
false,
|
|
3746
|
+
{},
|
|
3747
|
+
{
|
|
3748
|
+
isIdempotent: true,
|
|
3749
|
+
},
|
|
3750
|
+
],
|
|
3751
|
+
[
|
|
3752
|
+
'delete',
|
|
3753
|
+
'POST',
|
|
3754
|
+
'/item_families',
|
|
3755
|
+
'/delete',
|
|
3756
|
+
true,
|
|
3757
|
+
null,
|
|
3758
|
+
false,
|
|
3759
|
+
{},
|
|
3760
|
+
{
|
|
3761
|
+
isIdempotent: true,
|
|
3762
|
+
},
|
|
3763
|
+
],
|
|
2303
3764
|
],
|
|
2304
3765
|
item: [
|
|
2305
3766
|
[
|
|
@@ -2313,134 +3774,299 @@ exports.Endpoints = {
|
|
|
2313
3774
|
{
|
|
2314
3775
|
metadata: 0,
|
|
2315
3776
|
},
|
|
3777
|
+
{
|
|
3778
|
+
isIdempotent: true,
|
|
3779
|
+
},
|
|
2316
3780
|
],
|
|
2317
|
-
['retrieve', 'GET', '/items', null, true, null, false, {}],
|
|
3781
|
+
['retrieve', 'GET', '/items', null, true, null, false, {}, {}],
|
|
2318
3782
|
[
|
|
2319
3783
|
'update',
|
|
2320
3784
|
'POST',
|
|
2321
|
-
'/items',
|
|
2322
|
-
null,
|
|
3785
|
+
'/items',
|
|
3786
|
+
null,
|
|
3787
|
+
true,
|
|
3788
|
+
null,
|
|
3789
|
+
false,
|
|
3790
|
+
{
|
|
3791
|
+
metadata: 0,
|
|
3792
|
+
},
|
|
3793
|
+
{
|
|
3794
|
+
isIdempotent: true,
|
|
3795
|
+
},
|
|
3796
|
+
],
|
|
3797
|
+
['list', 'GET', '/items', null, false, null, false, {}, {}],
|
|
3798
|
+
[
|
|
3799
|
+
'delete',
|
|
3800
|
+
'POST',
|
|
3801
|
+
'/items',
|
|
3802
|
+
'/delete',
|
|
3803
|
+
true,
|
|
3804
|
+
null,
|
|
3805
|
+
false,
|
|
3806
|
+
{},
|
|
3807
|
+
{
|
|
3808
|
+
isIdempotent: true,
|
|
3809
|
+
},
|
|
3810
|
+
],
|
|
3811
|
+
],
|
|
3812
|
+
priceVariant: [
|
|
3813
|
+
[
|
|
3814
|
+
'create',
|
|
3815
|
+
'POST',
|
|
3816
|
+
'/price_variants',
|
|
3817
|
+
null,
|
|
3818
|
+
false,
|
|
3819
|
+
null,
|
|
3820
|
+
false,
|
|
3821
|
+
{},
|
|
3822
|
+
{
|
|
3823
|
+
isIdempotent: true,
|
|
3824
|
+
},
|
|
3825
|
+
],
|
|
3826
|
+
['retrieve', 'GET', '/price_variants', null, true, null, false, {}, {}],
|
|
3827
|
+
[
|
|
3828
|
+
'update',
|
|
3829
|
+
'POST',
|
|
3830
|
+
'/price_variants',
|
|
3831
|
+
null,
|
|
3832
|
+
true,
|
|
3833
|
+
null,
|
|
3834
|
+
false,
|
|
3835
|
+
{},
|
|
3836
|
+
{
|
|
3837
|
+
isIdempotent: true,
|
|
3838
|
+
},
|
|
3839
|
+
],
|
|
3840
|
+
[
|
|
3841
|
+
'delete',
|
|
3842
|
+
'POST',
|
|
3843
|
+
'/price_variants',
|
|
3844
|
+
'/delete',
|
|
3845
|
+
true,
|
|
3846
|
+
null,
|
|
3847
|
+
false,
|
|
3848
|
+
{},
|
|
3849
|
+
{
|
|
3850
|
+
isIdempotent: true,
|
|
3851
|
+
},
|
|
3852
|
+
],
|
|
3853
|
+
['list', 'GET', '/price_variants', null, false, null, false, {}, {}],
|
|
3854
|
+
],
|
|
3855
|
+
attribute: [],
|
|
3856
|
+
itemPrice: [
|
|
3857
|
+
[
|
|
3858
|
+
'create',
|
|
3859
|
+
'POST',
|
|
3860
|
+
'/item_prices',
|
|
3861
|
+
null,
|
|
3862
|
+
false,
|
|
3863
|
+
null,
|
|
3864
|
+
false,
|
|
3865
|
+
{
|
|
3866
|
+
metadata: 0,
|
|
3867
|
+
},
|
|
3868
|
+
{
|
|
3869
|
+
isIdempotent: true,
|
|
3870
|
+
},
|
|
3871
|
+
],
|
|
3872
|
+
['retrieve', 'GET', '/item_prices', null, true, null, false, {}, {}],
|
|
3873
|
+
[
|
|
3874
|
+
'update',
|
|
3875
|
+
'POST',
|
|
3876
|
+
'/item_prices',
|
|
3877
|
+
null,
|
|
3878
|
+
true,
|
|
3879
|
+
null,
|
|
3880
|
+
false,
|
|
3881
|
+
{
|
|
3882
|
+
metadata: 0,
|
|
3883
|
+
},
|
|
3884
|
+
{
|
|
3885
|
+
isIdempotent: true,
|
|
3886
|
+
},
|
|
3887
|
+
],
|
|
3888
|
+
['list', 'GET', '/item_prices', null, false, null, false, {}, {}],
|
|
3889
|
+
[
|
|
3890
|
+
'delete',
|
|
3891
|
+
'POST',
|
|
3892
|
+
'/item_prices',
|
|
3893
|
+
'/delete',
|
|
3894
|
+
true,
|
|
3895
|
+
null,
|
|
3896
|
+
false,
|
|
3897
|
+
{},
|
|
3898
|
+
{
|
|
3899
|
+
isIdempotent: true,
|
|
3900
|
+
},
|
|
3901
|
+
],
|
|
3902
|
+
[
|
|
3903
|
+
'findApplicableItems',
|
|
3904
|
+
'GET',
|
|
3905
|
+
'/item_prices',
|
|
3906
|
+
'/applicable_items',
|
|
3907
|
+
true,
|
|
3908
|
+
null,
|
|
3909
|
+
false,
|
|
3910
|
+
{},
|
|
3911
|
+
{},
|
|
3912
|
+
],
|
|
3913
|
+
[
|
|
3914
|
+
'findApplicableItemPrices',
|
|
3915
|
+
'GET',
|
|
3916
|
+
'/item_prices',
|
|
3917
|
+
'/applicable_item_prices',
|
|
3918
|
+
true,
|
|
3919
|
+
null,
|
|
3920
|
+
false,
|
|
3921
|
+
{},
|
|
3922
|
+
{},
|
|
3923
|
+
],
|
|
3924
|
+
],
|
|
3925
|
+
attachedItem: [
|
|
3926
|
+
[
|
|
3927
|
+
'create',
|
|
3928
|
+
'POST',
|
|
3929
|
+
'/items',
|
|
3930
|
+
'/attached_items',
|
|
3931
|
+
true,
|
|
3932
|
+
null,
|
|
3933
|
+
false,
|
|
3934
|
+
{},
|
|
3935
|
+
{
|
|
3936
|
+
isIdempotent: true,
|
|
3937
|
+
},
|
|
3938
|
+
],
|
|
3939
|
+
[
|
|
3940
|
+
'update',
|
|
3941
|
+
'POST',
|
|
3942
|
+
'/attached_items',
|
|
3943
|
+
null,
|
|
3944
|
+
true,
|
|
3945
|
+
null,
|
|
3946
|
+
false,
|
|
3947
|
+
{},
|
|
3948
|
+
{
|
|
3949
|
+
isIdempotent: true,
|
|
3950
|
+
},
|
|
3951
|
+
],
|
|
3952
|
+
['retrieve', 'GET', '/attached_items', null, true, null, false, {}, {}],
|
|
3953
|
+
[
|
|
3954
|
+
'delete',
|
|
3955
|
+
'POST',
|
|
3956
|
+
'/attached_items',
|
|
3957
|
+
'/delete',
|
|
2323
3958
|
true,
|
|
2324
3959
|
null,
|
|
2325
3960
|
false,
|
|
3961
|
+
{},
|
|
2326
3962
|
{
|
|
2327
|
-
|
|
3963
|
+
isIdempotent: true,
|
|
2328
3964
|
},
|
|
2329
3965
|
],
|
|
2330
|
-
['list', 'GET', '/items',
|
|
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, {}],
|
|
3966
|
+
['list', 'GET', '/items', '/attached_items', true, null, false, {}, {}],
|
|
2339
3967
|
],
|
|
2340
|
-
|
|
2341
|
-
itemPrice: [
|
|
3968
|
+
differentialPrice: [
|
|
2342
3969
|
[
|
|
2343
3970
|
'create',
|
|
2344
3971
|
'POST',
|
|
2345
3972
|
'/item_prices',
|
|
2346
|
-
|
|
2347
|
-
|
|
3973
|
+
'/differential_prices',
|
|
3974
|
+
true,
|
|
2348
3975
|
null,
|
|
2349
3976
|
false,
|
|
2350
3977
|
{
|
|
2351
|
-
|
|
3978
|
+
period: 1,
|
|
3979
|
+
},
|
|
3980
|
+
{
|
|
3981
|
+
isIdempotent: true,
|
|
2352
3982
|
},
|
|
2353
3983
|
],
|
|
2354
|
-
['retrieve', 'GET', '/item_prices', null, true, null, false, {}],
|
|
2355
3984
|
[
|
|
2356
|
-
'
|
|
2357
|
-
'
|
|
2358
|
-
'/
|
|
3985
|
+
'retrieve',
|
|
3986
|
+
'GET',
|
|
3987
|
+
'/differential_prices',
|
|
2359
3988
|
null,
|
|
2360
3989
|
true,
|
|
2361
3990
|
null,
|
|
2362
3991
|
false,
|
|
2363
|
-
{
|
|
2364
|
-
|
|
2365
|
-
},
|
|
3992
|
+
{},
|
|
3993
|
+
{},
|
|
2366
3994
|
],
|
|
2367
|
-
['list', 'GET', '/item_prices', null, false, null, false, {}],
|
|
2368
|
-
['delete', 'POST', '/item_prices', '/delete', true, null, false, {}],
|
|
2369
3995
|
[
|
|
2370
|
-
'
|
|
2371
|
-
'
|
|
2372
|
-
'/
|
|
2373
|
-
|
|
3996
|
+
'update',
|
|
3997
|
+
'POST',
|
|
3998
|
+
'/differential_prices',
|
|
3999
|
+
null,
|
|
2374
4000
|
true,
|
|
2375
4001
|
null,
|
|
2376
4002
|
false,
|
|
2377
|
-
{
|
|
4003
|
+
{
|
|
4004
|
+
period: 1,
|
|
4005
|
+
},
|
|
4006
|
+
{
|
|
4007
|
+
isIdempotent: true,
|
|
4008
|
+
},
|
|
2378
4009
|
],
|
|
2379
4010
|
[
|
|
2380
|
-
'
|
|
2381
|
-
'
|
|
2382
|
-
'/
|
|
2383
|
-
'/
|
|
4011
|
+
'delete',
|
|
4012
|
+
'POST',
|
|
4013
|
+
'/differential_prices',
|
|
4014
|
+
'/delete',
|
|
2384
4015
|
true,
|
|
2385
4016
|
null,
|
|
2386
4017
|
false,
|
|
2387
4018
|
{},
|
|
4019
|
+
{
|
|
4020
|
+
isIdempotent: true,
|
|
4021
|
+
},
|
|
2388
4022
|
],
|
|
4023
|
+
['list', 'GET', '/differential_prices', null, false, null, false, {}, {}],
|
|
2389
4024
|
],
|
|
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, {}],
|
|
4025
|
+
configuration: [
|
|
4026
|
+
['list', 'GET', '/configurations', null, false, null, false, {}, {}],
|
|
2396
4027
|
],
|
|
2397
|
-
|
|
4028
|
+
feature: [
|
|
4029
|
+
['list', 'GET', '/features', null, false, null, false, {}, {}],
|
|
2398
4030
|
[
|
|
2399
4031
|
'create',
|
|
2400
4032
|
'POST',
|
|
2401
|
-
'/
|
|
2402
|
-
|
|
2403
|
-
|
|
4033
|
+
'/features',
|
|
4034
|
+
null,
|
|
4035
|
+
false,
|
|
2404
4036
|
null,
|
|
2405
4037
|
false,
|
|
4038
|
+
{},
|
|
2406
4039
|
{
|
|
2407
|
-
|
|
4040
|
+
isIdempotent: true,
|
|
2408
4041
|
},
|
|
2409
4042
|
],
|
|
2410
|
-
['retrieve', 'GET', '/differential_prices', null, true, null, false, {}],
|
|
2411
4043
|
[
|
|
2412
4044
|
'update',
|
|
2413
4045
|
'POST',
|
|
2414
|
-
'/
|
|
4046
|
+
'/features',
|
|
2415
4047
|
null,
|
|
2416
4048
|
true,
|
|
2417
4049
|
null,
|
|
2418
4050
|
false,
|
|
4051
|
+
{},
|
|
2419
4052
|
{
|
|
2420
|
-
|
|
4053
|
+
isIdempotent: true,
|
|
2421
4054
|
},
|
|
2422
4055
|
],
|
|
4056
|
+
['retrieve', 'GET', '/features', null, true, null, false, {}, {}],
|
|
2423
4057
|
[
|
|
2424
4058
|
'delete',
|
|
2425
4059
|
'POST',
|
|
2426
|
-
'/
|
|
4060
|
+
'/features',
|
|
2427
4061
|
'/delete',
|
|
2428
4062
|
true,
|
|
2429
4063
|
null,
|
|
2430
4064
|
false,
|
|
2431
4065
|
{},
|
|
4066
|
+
{
|
|
4067
|
+
isIdempotent: true,
|
|
4068
|
+
},
|
|
2432
4069
|
],
|
|
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
4070
|
[
|
|
2445
4071
|
'activate',
|
|
2446
4072
|
'POST',
|
|
@@ -2450,8 +4076,23 @@ exports.Endpoints = {
|
|
|
2450
4076
|
null,
|
|
2451
4077
|
false,
|
|
2452
4078
|
{},
|
|
4079
|
+
{
|
|
4080
|
+
isIdempotent: true,
|
|
4081
|
+
},
|
|
4082
|
+
],
|
|
4083
|
+
[
|
|
4084
|
+
'archive',
|
|
4085
|
+
'POST',
|
|
4086
|
+
'/features',
|
|
4087
|
+
'/archive_command',
|
|
4088
|
+
true,
|
|
4089
|
+
null,
|
|
4090
|
+
false,
|
|
4091
|
+
{},
|
|
4092
|
+
{
|
|
4093
|
+
isIdempotent: true,
|
|
4094
|
+
},
|
|
2453
4095
|
],
|
|
2454
|
-
['archive', 'POST', '/features', '/archive_command', true, null, false, {}],
|
|
2455
4096
|
[
|
|
2456
4097
|
'reactivate',
|
|
2457
4098
|
'POST',
|
|
@@ -2461,6 +4102,9 @@ exports.Endpoints = {
|
|
|
2461
4102
|
null,
|
|
2462
4103
|
false,
|
|
2463
4104
|
{},
|
|
4105
|
+
{
|
|
4106
|
+
isIdempotent: true,
|
|
4107
|
+
},
|
|
2464
4108
|
],
|
|
2465
4109
|
],
|
|
2466
4110
|
impactedSubscription: [],
|
|
@@ -2477,6 +4121,7 @@ exports.Endpoints = {
|
|
|
2477
4121
|
null,
|
|
2478
4122
|
false,
|
|
2479
4123
|
{},
|
|
4124
|
+
{},
|
|
2480
4125
|
],
|
|
2481
4126
|
[
|
|
2482
4127
|
'setSubscriptionEntitlementAvailability',
|
|
@@ -2487,6 +4132,9 @@ exports.Endpoints = {
|
|
|
2487
4132
|
null,
|
|
2488
4133
|
false,
|
|
2489
4134
|
{},
|
|
4135
|
+
{
|
|
4136
|
+
isIdempotent: true,
|
|
4137
|
+
},
|
|
2490
4138
|
],
|
|
2491
4139
|
],
|
|
2492
4140
|
customerEntitlement: [
|
|
@@ -2499,6 +4147,7 @@ exports.Endpoints = {
|
|
|
2499
4147
|
null,
|
|
2500
4148
|
false,
|
|
2501
4149
|
{},
|
|
4150
|
+
{},
|
|
2502
4151
|
],
|
|
2503
4152
|
],
|
|
2504
4153
|
itemEntitlement: [
|
|
@@ -2511,6 +4160,7 @@ exports.Endpoints = {
|
|
|
2511
4160
|
null,
|
|
2512
4161
|
false,
|
|
2513
4162
|
{},
|
|
4163
|
+
{},
|
|
2514
4164
|
],
|
|
2515
4165
|
[
|
|
2516
4166
|
'itemEntitlementsForFeature',
|
|
@@ -2521,6 +4171,7 @@ exports.Endpoints = {
|
|
|
2521
4171
|
null,
|
|
2522
4172
|
false,
|
|
2523
4173
|
{},
|
|
4174
|
+
{},
|
|
2524
4175
|
],
|
|
2525
4176
|
[
|
|
2526
4177
|
'addItemEntitlements',
|
|
@@ -2531,6 +4182,9 @@ exports.Endpoints = {
|
|
|
2531
4182
|
null,
|
|
2532
4183
|
false,
|
|
2533
4184
|
{},
|
|
4185
|
+
{
|
|
4186
|
+
isIdempotent: true,
|
|
4187
|
+
},
|
|
2534
4188
|
],
|
|
2535
4189
|
[
|
|
2536
4190
|
'upsertOrRemoveItemEntitlementsForItem',
|
|
@@ -2541,11 +4195,26 @@ exports.Endpoints = {
|
|
|
2541
4195
|
null,
|
|
2542
4196
|
false,
|
|
2543
4197
|
{},
|
|
4198
|
+
{
|
|
4199
|
+
isIdempotent: true,
|
|
4200
|
+
},
|
|
2544
4201
|
],
|
|
2545
4202
|
],
|
|
2546
4203
|
entitlement: [
|
|
2547
|
-
['list', 'GET', '/entitlements', null, false, null, false, {}],
|
|
2548
|
-
[
|
|
4204
|
+
['list', 'GET', '/entitlements', null, false, null, false, {}, {}],
|
|
4205
|
+
[
|
|
4206
|
+
'create',
|
|
4207
|
+
'POST',
|
|
4208
|
+
'/entitlements',
|
|
4209
|
+
null,
|
|
4210
|
+
false,
|
|
4211
|
+
null,
|
|
4212
|
+
false,
|
|
4213
|
+
{},
|
|
4214
|
+
{
|
|
4215
|
+
isIdempotent: true,
|
|
4216
|
+
},
|
|
4217
|
+
],
|
|
2549
4218
|
],
|
|
2550
4219
|
inAppSubscription: [
|
|
2551
4220
|
[
|
|
@@ -2557,6 +4226,9 @@ exports.Endpoints = {
|
|
|
2557
4226
|
null,
|
|
2558
4227
|
false,
|
|
2559
4228
|
{},
|
|
4229
|
+
{
|
|
4230
|
+
isIdempotent: true,
|
|
4231
|
+
},
|
|
2560
4232
|
],
|
|
2561
4233
|
[
|
|
2562
4234
|
'importReceipt',
|
|
@@ -2567,6 +4239,9 @@ exports.Endpoints = {
|
|
|
2567
4239
|
null,
|
|
2568
4240
|
false,
|
|
2569
4241
|
{},
|
|
4242
|
+
{
|
|
4243
|
+
isIdempotent: true,
|
|
4244
|
+
},
|
|
2570
4245
|
],
|
|
2571
4246
|
[
|
|
2572
4247
|
'importSubscription',
|
|
@@ -2577,6 +4252,9 @@ exports.Endpoints = {
|
|
|
2577
4252
|
null,
|
|
2578
4253
|
false,
|
|
2579
4254
|
{},
|
|
4255
|
+
{
|
|
4256
|
+
isIdempotent: true,
|
|
4257
|
+
},
|
|
2580
4258
|
],
|
|
2581
4259
|
[
|
|
2582
4260
|
'retrieveStoreSubs',
|
|
@@ -2587,18 +4265,9 @@ exports.Endpoints = {
|
|
|
2587
4265
|
null,
|
|
2588
4266
|
false,
|
|
2589
4267
|
{},
|
|
2590
|
-
|
|
2591
|
-
|
|
2592
|
-
|
|
2593
|
-
[
|
|
2594
|
-
'processReceipt',
|
|
2595
|
-
'POST',
|
|
2596
|
-
'/non_subscriptions',
|
|
2597
|
-
'/one_time_purchase',
|
|
2598
|
-
true,
|
|
2599
|
-
null,
|
|
2600
|
-
false,
|
|
2601
|
-
{},
|
|
4268
|
+
{
|
|
4269
|
+
isIdempotent: true,
|
|
4270
|
+
},
|
|
2602
4271
|
],
|
|
2603
4272
|
],
|
|
2604
4273
|
entitlementOverride: [
|
|
@@ -2611,6 +4280,9 @@ exports.Endpoints = {
|
|
|
2611
4280
|
null,
|
|
2612
4281
|
false,
|
|
2613
4282
|
{},
|
|
4283
|
+
{
|
|
4284
|
+
isIdempotent: true,
|
|
4285
|
+
},
|
|
2614
4286
|
],
|
|
2615
4287
|
[
|
|
2616
4288
|
'listEntitlementOverrideForSubscription',
|
|
@@ -2621,6 +4293,7 @@ exports.Endpoints = {
|
|
|
2621
4293
|
null,
|
|
2622
4294
|
false,
|
|
2623
4295
|
{},
|
|
4296
|
+
{},
|
|
2624
4297
|
],
|
|
2625
4298
|
],
|
|
2626
4299
|
businessEntity: [
|
|
@@ -2633,6 +4306,9 @@ exports.Endpoints = {
|
|
|
2633
4306
|
null,
|
|
2634
4307
|
false,
|
|
2635
4308
|
{},
|
|
4309
|
+
{
|
|
4310
|
+
isIdempotent: true,
|
|
4311
|
+
},
|
|
2636
4312
|
],
|
|
2637
4313
|
[
|
|
2638
4314
|
'getTransfers',
|
|
@@ -2643,6 +4319,7 @@ exports.Endpoints = {
|
|
|
2643
4319
|
null,
|
|
2644
4320
|
false,
|
|
2645
4321
|
{},
|
|
4322
|
+
{},
|
|
2646
4323
|
],
|
|
2647
4324
|
],
|
|
2648
4325
|
purchase: [
|
|
@@ -2658,6 +4335,9 @@ exports.Endpoints = {
|
|
|
2658
4335
|
additional_information: 1,
|
|
2659
4336
|
meta_data: 1,
|
|
2660
4337
|
},
|
|
4338
|
+
{
|
|
4339
|
+
isIdempotent: true,
|
|
4340
|
+
},
|
|
2661
4341
|
],
|
|
2662
4342
|
[
|
|
2663
4343
|
'estimate',
|
|
@@ -2670,11 +4350,24 @@ exports.Endpoints = {
|
|
|
2670
4350
|
{
|
|
2671
4351
|
exemption_details: 1,
|
|
2672
4352
|
},
|
|
4353
|
+
{},
|
|
2673
4354
|
],
|
|
2674
4355
|
],
|
|
2675
4356
|
paymentVoucher: [
|
|
2676
|
-
[
|
|
2677
|
-
|
|
4357
|
+
[
|
|
4358
|
+
'create',
|
|
4359
|
+
'POST',
|
|
4360
|
+
'/payment_vouchers',
|
|
4361
|
+
null,
|
|
4362
|
+
false,
|
|
4363
|
+
null,
|
|
4364
|
+
false,
|
|
4365
|
+
{},
|
|
4366
|
+
{
|
|
4367
|
+
isIdempotent: true,
|
|
4368
|
+
},
|
|
4369
|
+
],
|
|
4370
|
+
['retrieve', 'GET', '/payment_vouchers', null, true, null, false, {}, {}],
|
|
2678
4371
|
[
|
|
2679
4372
|
'payment_vouchersForInvoice',
|
|
2680
4373
|
'GET',
|
|
@@ -2684,6 +4377,7 @@ exports.Endpoints = {
|
|
|
2684
4377
|
null,
|
|
2685
4378
|
false,
|
|
2686
4379
|
{},
|
|
4380
|
+
{},
|
|
2687
4381
|
],
|
|
2688
4382
|
[
|
|
2689
4383
|
'payment_vouchersForCustomer',
|
|
@@ -2694,13 +4388,38 @@ exports.Endpoints = {
|
|
|
2694
4388
|
null,
|
|
2695
4389
|
false,
|
|
2696
4390
|
{},
|
|
4391
|
+
{},
|
|
2697
4392
|
],
|
|
2698
4393
|
],
|
|
2699
4394
|
currency: [
|
|
2700
|
-
['list', 'GET', '/currencies', '/list', false, null, false, {}],
|
|
2701
|
-
['retrieve', 'GET', '/currencies', null, true, null, false, {}],
|
|
2702
|
-
[
|
|
2703
|
-
|
|
4395
|
+
['list', 'GET', '/currencies', '/list', false, null, false, {}, {}],
|
|
4396
|
+
['retrieve', 'GET', '/currencies', null, true, null, false, {}, {}],
|
|
4397
|
+
[
|
|
4398
|
+
'create',
|
|
4399
|
+
'POST',
|
|
4400
|
+
'/currencies',
|
|
4401
|
+
null,
|
|
4402
|
+
false,
|
|
4403
|
+
null,
|
|
4404
|
+
false,
|
|
4405
|
+
{},
|
|
4406
|
+
{
|
|
4407
|
+
isIdempotent: true,
|
|
4408
|
+
},
|
|
4409
|
+
],
|
|
4410
|
+
[
|
|
4411
|
+
'update',
|
|
4412
|
+
'POST',
|
|
4413
|
+
'/currencies',
|
|
4414
|
+
null,
|
|
4415
|
+
true,
|
|
4416
|
+
null,
|
|
4417
|
+
false,
|
|
4418
|
+
{},
|
|
4419
|
+
{
|
|
4420
|
+
isIdempotent: true,
|
|
4421
|
+
},
|
|
4422
|
+
],
|
|
2704
4423
|
[
|
|
2705
4424
|
'addSchedule',
|
|
2706
4425
|
'POST',
|
|
@@ -2710,6 +4429,9 @@ exports.Endpoints = {
|
|
|
2710
4429
|
null,
|
|
2711
4430
|
false,
|
|
2712
4431
|
{},
|
|
4432
|
+
{
|
|
4433
|
+
isIdempotent: true,
|
|
4434
|
+
},
|
|
2713
4435
|
],
|
|
2714
4436
|
[
|
|
2715
4437
|
'removeSchedule',
|
|
@@ -2720,6 +4442,9 @@ exports.Endpoints = {
|
|
|
2720
4442
|
null,
|
|
2721
4443
|
false,
|
|
2722
4444
|
{},
|
|
4445
|
+
{
|
|
4446
|
+
isIdempotent: true,
|
|
4447
|
+
},
|
|
2723
4448
|
],
|
|
2724
4449
|
],
|
|
2725
4450
|
ramp: [
|
|
@@ -2732,11 +4457,38 @@ exports.Endpoints = {
|
|
|
2732
4457
|
null,
|
|
2733
4458
|
false,
|
|
2734
4459
|
{},
|
|
4460
|
+
{
|
|
4461
|
+
isIdempotent: true,
|
|
4462
|
+
},
|
|
4463
|
+
],
|
|
4464
|
+
[
|
|
4465
|
+
'update',
|
|
4466
|
+
'POST',
|
|
4467
|
+
'/ramps',
|
|
4468
|
+
'/update',
|
|
4469
|
+
true,
|
|
4470
|
+
null,
|
|
4471
|
+
false,
|
|
4472
|
+
{},
|
|
4473
|
+
{
|
|
4474
|
+
isIdempotent: true,
|
|
4475
|
+
},
|
|
4476
|
+
],
|
|
4477
|
+
['retrieve', 'GET', '/ramps', null, true, null, false, {}, {}],
|
|
4478
|
+
[
|
|
4479
|
+
'delete',
|
|
4480
|
+
'POST',
|
|
4481
|
+
'/ramps',
|
|
4482
|
+
'/delete',
|
|
4483
|
+
true,
|
|
4484
|
+
null,
|
|
4485
|
+
false,
|
|
4486
|
+
{},
|
|
4487
|
+
{
|
|
4488
|
+
isIdempotent: true,
|
|
4489
|
+
},
|
|
2735
4490
|
],
|
|
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, {}],
|
|
4491
|
+
['list', 'GET', '/ramps', null, false, null, false, {}, {}],
|
|
2740
4492
|
],
|
|
2741
4493
|
paymentScheduleScheme: [
|
|
2742
4494
|
[
|
|
@@ -2748,6 +4500,9 @@ exports.Endpoints = {
|
|
|
2748
4500
|
null,
|
|
2749
4501
|
false,
|
|
2750
4502
|
{},
|
|
4503
|
+
{
|
|
4504
|
+
isIdempotent: true,
|
|
4505
|
+
},
|
|
2751
4506
|
],
|
|
2752
4507
|
[
|
|
2753
4508
|
'retrieve',
|
|
@@ -2758,6 +4513,7 @@ exports.Endpoints = {
|
|
|
2758
4513
|
null,
|
|
2759
4514
|
false,
|
|
2760
4515
|
{},
|
|
4516
|
+
{},
|
|
2761
4517
|
],
|
|
2762
4518
|
[
|
|
2763
4519
|
'delete',
|
|
@@ -2768,6 +4524,9 @@ exports.Endpoints = {
|
|
|
2768
4524
|
null,
|
|
2769
4525
|
false,
|
|
2770
4526
|
{},
|
|
4527
|
+
{
|
|
4528
|
+
isIdempotent: true,
|
|
4529
|
+
},
|
|
2771
4530
|
],
|
|
2772
4531
|
],
|
|
2773
4532
|
pricingPageSession: [
|
|
@@ -2780,6 +4539,9 @@ exports.Endpoints = {
|
|
|
2780
4539
|
null,
|
|
2781
4540
|
false,
|
|
2782
4541
|
{},
|
|
4542
|
+
{
|
|
4543
|
+
isIdempotent: true,
|
|
4544
|
+
},
|
|
2783
4545
|
],
|
|
2784
4546
|
[
|
|
2785
4547
|
'createForExistingSubscription',
|
|
@@ -2790,6 +4552,9 @@ exports.Endpoints = {
|
|
|
2790
4552
|
null,
|
|
2791
4553
|
false,
|
|
2792
4554
|
{},
|
|
4555
|
+
{
|
|
4556
|
+
isIdempotent: true,
|
|
4557
|
+
},
|
|
2793
4558
|
],
|
|
2794
4559
|
],
|
|
2795
4560
|
omnichannelSubscription: [
|
|
@@ -2802,8 +4567,19 @@ exports.Endpoints = {
|
|
|
2802
4567
|
null,
|
|
2803
4568
|
false,
|
|
2804
4569
|
{},
|
|
4570
|
+
{},
|
|
4571
|
+
],
|
|
4572
|
+
[
|
|
4573
|
+
'list',
|
|
4574
|
+
'GET',
|
|
4575
|
+
'/omnichannel_subscriptions',
|
|
4576
|
+
null,
|
|
4577
|
+
false,
|
|
4578
|
+
null,
|
|
4579
|
+
false,
|
|
4580
|
+
{},
|
|
4581
|
+
{},
|
|
2805
4582
|
],
|
|
2806
|
-
['list', 'GET', '/omnichannel_subscriptions', null, false, null, false, {}],
|
|
2807
4583
|
[
|
|
2808
4584
|
'omnichannel_transactionsForOmnichannelSubscription',
|
|
2809
4585
|
'GET',
|
|
@@ -2813,6 +4589,7 @@ exports.Endpoints = {
|
|
|
2813
4589
|
null,
|
|
2814
4590
|
false,
|
|
2815
4591
|
{},
|
|
4592
|
+
{},
|
|
2816
4593
|
],
|
|
2817
4594
|
],
|
|
2818
4595
|
omnichannelTransaction: [],
|
|
@@ -2826,13 +4603,26 @@ exports.Endpoints = {
|
|
|
2826
4603
|
null,
|
|
2827
4604
|
false,
|
|
2828
4605
|
{},
|
|
4606
|
+
{},
|
|
2829
4607
|
],
|
|
2830
4608
|
],
|
|
2831
4609
|
recordedPurchase: [
|
|
2832
|
-
[
|
|
2833
|
-
|
|
4610
|
+
[
|
|
4611
|
+
'create',
|
|
4612
|
+
'POST',
|
|
4613
|
+
'/recorded_purchases',
|
|
4614
|
+
null,
|
|
4615
|
+
false,
|
|
4616
|
+
null,
|
|
4617
|
+
false,
|
|
4618
|
+
{},
|
|
4619
|
+
{
|
|
4620
|
+
isIdempotent: true,
|
|
4621
|
+
},
|
|
4622
|
+
],
|
|
4623
|
+
['retrieve', 'GET', '/recorded_purchases', null, true, null, false, {}, {}],
|
|
2834
4624
|
],
|
|
2835
|
-
rule: [['retrieve', 'GET', '/rules', null, true, null, false, {}]],
|
|
4625
|
+
rule: [['retrieve', 'GET', '/rules', null, true, null, false, {}, {}]],
|
|
2836
4626
|
usageEvent: [
|
|
2837
4627
|
[
|
|
2838
4628
|
'create',
|
|
@@ -2845,6 +4635,7 @@ exports.Endpoints = {
|
|
|
2845
4635
|
{
|
|
2846
4636
|
properties: 0,
|
|
2847
4637
|
},
|
|
4638
|
+
{},
|
|
2848
4639
|
],
|
|
2849
4640
|
[
|
|
2850
4641
|
'batchIngest',
|
|
@@ -2857,7 +4648,32 @@ exports.Endpoints = {
|
|
|
2857
4648
|
{
|
|
2858
4649
|
properties: 1,
|
|
2859
4650
|
},
|
|
4651
|
+
{},
|
|
2860
4652
|
],
|
|
2861
4653
|
],
|
|
2862
4654
|
omnichannelSubscriptionItemScheduledChange: [],
|
|
4655
|
+
usageFile: [
|
|
4656
|
+
[
|
|
4657
|
+
'upload',
|
|
4658
|
+
'POST',
|
|
4659
|
+
'/usage_files',
|
|
4660
|
+
'/upload',
|
|
4661
|
+
false,
|
|
4662
|
+
'file-ingest',
|
|
4663
|
+
false,
|
|
4664
|
+
{},
|
|
4665
|
+
{},
|
|
4666
|
+
],
|
|
4667
|
+
[
|
|
4668
|
+
'status',
|
|
4669
|
+
'GET',
|
|
4670
|
+
'/usage_files',
|
|
4671
|
+
'/status',
|
|
4672
|
+
true,
|
|
4673
|
+
'file-ingest',
|
|
4674
|
+
false,
|
|
4675
|
+
{},
|
|
4676
|
+
{},
|
|
4677
|
+
],
|
|
4678
|
+
],
|
|
2863
4679
|
};
|