@moovio/sdk 0.10.6 → 0.10.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -5
- package/bin/mcp-server.js +17 -72
- package/bin/mcp-server.js.map +14 -15
- package/docs/sdks/accounts/README.md +10 -30
- package/docs/sdks/adjustments/README.md +6 -6
- package/docs/sdks/applepay/README.md +12 -12
- package/docs/sdks/bankaccounts/README.md +24 -26
- package/docs/sdks/branding/README.md +4 -4
- package/docs/sdks/capabilities/README.md +10 -10
- package/docs/sdks/cardissuing/README.md +30 -22
- package/docs/sdks/cards/README.md +10 -16
- package/docs/sdks/disputes/README.md +54 -54
- package/docs/sdks/enrichedprofile/README.md +2 -2
- package/docs/sdks/files/README.md +8 -8
- package/docs/sdks/issuingtransactions/README.md +16 -16
- package/docs/sdks/paymentlinks/README.md +14 -14
- package/docs/sdks/paymentmethods/README.md +6 -6
- package/docs/sdks/receipts/README.md +12 -9
- package/docs/sdks/representatives/README.md +16 -16
- package/docs/sdks/scheduling/README.md +96 -96
- package/docs/sdks/sweeps/README.md +18 -18
- package/docs/sdks/transfers/README.md +10 -10
- package/docs/sdks/underwriting/README.md +2 -2
- package/docs/sdks/wallets/README.md +6 -6
- package/docs/sdks/wallettransactions/README.md +10 -10
- package/funcs/receiptsCreate.d.ts +1 -1
- package/funcs/receiptsCreate.d.ts.map +1 -1
- package/funcs/receiptsCreate.js +1 -1
- package/funcs/receiptsCreate.js.map +1 -1
- package/funcs/receiptsList.d.ts +1 -1
- package/funcs/receiptsList.js +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/mcp-server/tools/receiptsList.js +1 -1
- package/models/components/achtransactionstatus.d.ts +3 -0
- package/models/components/achtransactionstatus.d.ts.map +1 -1
- package/models/components/achtransactionstatus.js +1 -0
- package/models/components/achtransactionstatus.js.map +1 -1
- package/models/components/createevidencefilemultipart.d.ts +2 -2
- package/models/components/createevidencefilemultipart.d.ts.map +1 -1
- package/models/components/createevidencefilemultipart.js +2 -2
- package/models/components/createevidencefilemultipart.js.map +1 -1
- package/models/errors/index.d.ts +0 -1
- package/models/errors/index.d.ts.map +1 -1
- package/models/errors/index.js +0 -1
- package/models/errors/index.js.map +1 -1
- package/models/operations/createreceipts.d.ts +2 -2
- package/models/operations/createreceipts.d.ts.map +1 -1
- package/models/operations/createreceipts.js +2 -2
- package/models/operations/createreceipts.js.map +1 -1
- package/models/operations/listreceipts.d.ts +3 -3
- package/models/operations/listreceipts.d.ts.map +1 -1
- package/models/operations/listreceipts.js +2 -2
- package/models/operations/listreceipts.js.map +1 -1
- package/package.json +1 -1
- package/sdk/receipts.d.ts +1 -1
- package/sdk/receipts.js +1 -1
- package/src/funcs/receiptsCreate.ts +1 -5
- package/src/funcs/receiptsList.ts +1 -1
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/mcp-server/tools/receiptsList.ts +1 -1
- package/src/models/components/achtransactionstatus.ts +1 -0
- package/src/models/components/createevidencefilemultipart.ts +4 -4
- package/src/models/errors/index.ts +0 -1
- package/src/models/operations/createreceipts.ts +4 -4
- package/src/models/operations/listreceipts.ts +5 -5
- package/src/sdk/receipts.ts +1 -1
- package/models/errors/receiptvalidationerror.d.ts +0 -46
- package/models/errors/receiptvalidationerror.d.ts.map +0 -1
- package/models/errors/receiptvalidationerror.js +0 -98
- package/models/errors/receiptvalidationerror.js.map +0 -1
- package/src/models/errors/receiptvalidationerror.ts +0 -99
|
@@ -53,7 +53,7 @@ const moov = new Moov({
|
|
|
53
53
|
|
|
54
54
|
async function run() {
|
|
55
55
|
const result = await moov.paymentLinks.create({
|
|
56
|
-
accountID: "
|
|
56
|
+
accountID: "621cf021-cd9c-4f54-a033-15211a509a30",
|
|
57
57
|
createPaymentLink: {
|
|
58
58
|
partnerAccountID: "d290f1ee-6c54-4b01-90e6-d701748f0851",
|
|
59
59
|
merchantPaymentMethodID: "4c4e7f8e-81f4-4f3d-8f6f-6f6e7f8e4c4e",
|
|
@@ -84,7 +84,7 @@ async function run() {
|
|
|
84
84
|
},
|
|
85
85
|
payout: {
|
|
86
86
|
allowedMethods: [
|
|
87
|
-
"
|
|
87
|
+
"ach-credit-same-day",
|
|
88
88
|
],
|
|
89
89
|
recipient: {
|
|
90
90
|
email: "jordan.lee@classbooker.dev",
|
|
@@ -119,7 +119,7 @@ const moov = new MoovCore({
|
|
|
119
119
|
|
|
120
120
|
async function run() {
|
|
121
121
|
const res = await paymentLinksCreate(moov, {
|
|
122
|
-
accountID: "
|
|
122
|
+
accountID: "621cf021-cd9c-4f54-a033-15211a509a30",
|
|
123
123
|
createPaymentLink: {
|
|
124
124
|
partnerAccountID: "d290f1ee-6c54-4b01-90e6-d701748f0851",
|
|
125
125
|
merchantPaymentMethodID: "4c4e7f8e-81f4-4f3d-8f6f-6f6e7f8e4c4e",
|
|
@@ -150,7 +150,7 @@ async function run() {
|
|
|
150
150
|
},
|
|
151
151
|
payout: {
|
|
152
152
|
allowedMethods: [
|
|
153
|
-
"
|
|
153
|
+
"ach-credit-same-day",
|
|
154
154
|
],
|
|
155
155
|
recipient: {
|
|
156
156
|
email: "jordan.lee@classbooker.dev",
|
|
@@ -214,7 +214,7 @@ const moov = new Moov({
|
|
|
214
214
|
|
|
215
215
|
async function run() {
|
|
216
216
|
const result = await moov.paymentLinks.list({
|
|
217
|
-
accountID: "
|
|
217
|
+
accountID: "c8a232aa-0b11-4b8a-b005-71e9e705d0e6",
|
|
218
218
|
});
|
|
219
219
|
|
|
220
220
|
// Handle the result
|
|
@@ -243,7 +243,7 @@ const moov = new MoovCore({
|
|
|
243
243
|
|
|
244
244
|
async function run() {
|
|
245
245
|
const res = await paymentLinksList(moov, {
|
|
246
|
-
accountID: "
|
|
246
|
+
accountID: "c8a232aa-0b11-4b8a-b005-71e9e705d0e6",
|
|
247
247
|
});
|
|
248
248
|
|
|
249
249
|
if (!res.ok) {
|
|
@@ -299,7 +299,7 @@ const moov = new Moov({
|
|
|
299
299
|
|
|
300
300
|
async function run() {
|
|
301
301
|
const result = await moov.paymentLinks.get({
|
|
302
|
-
accountID: "
|
|
302
|
+
accountID: "b888f774-3e7c-4135-a18c-6b985523c4bc",
|
|
303
303
|
paymentLinkCode: "uc7ZYKrMhi",
|
|
304
304
|
});
|
|
305
305
|
|
|
@@ -329,7 +329,7 @@ const moov = new MoovCore({
|
|
|
329
329
|
|
|
330
330
|
async function run() {
|
|
331
331
|
const res = await paymentLinksGet(moov, {
|
|
332
|
-
accountID: "
|
|
332
|
+
accountID: "b888f774-3e7c-4135-a18c-6b985523c4bc",
|
|
333
333
|
paymentLinkCode: "uc7ZYKrMhi",
|
|
334
334
|
});
|
|
335
335
|
|
|
@@ -386,7 +386,7 @@ const moov = new Moov({
|
|
|
386
386
|
|
|
387
387
|
async function run() {
|
|
388
388
|
const result = await moov.paymentLinks.update({
|
|
389
|
-
accountID: "
|
|
389
|
+
accountID: "d95fa7f0-e743-42ce-b47c-b60cc78135dd",
|
|
390
390
|
paymentLinkCode: "uc7ZYKrMhi",
|
|
391
391
|
updatePaymentLink: {
|
|
392
392
|
amount: {
|
|
@@ -440,7 +440,7 @@ const moov = new MoovCore({
|
|
|
440
440
|
|
|
441
441
|
async function run() {
|
|
442
442
|
const res = await paymentLinksUpdate(moov, {
|
|
443
|
-
accountID: "
|
|
443
|
+
accountID: "d95fa7f0-e743-42ce-b47c-b60cc78135dd",
|
|
444
444
|
paymentLinkCode: "uc7ZYKrMhi",
|
|
445
445
|
updatePaymentLink: {
|
|
446
446
|
amount: {
|
|
@@ -523,7 +523,7 @@ const moov = new Moov({
|
|
|
523
523
|
|
|
524
524
|
async function run() {
|
|
525
525
|
const result = await moov.paymentLinks.disable({
|
|
526
|
-
accountID: "
|
|
526
|
+
accountID: "cd7cd1ce-90cc-444b-ac3e-badb79be277f",
|
|
527
527
|
paymentLinkCode: "uc7ZYKrMhi",
|
|
528
528
|
});
|
|
529
529
|
|
|
@@ -553,7 +553,7 @@ const moov = new MoovCore({
|
|
|
553
553
|
|
|
554
554
|
async function run() {
|
|
555
555
|
const res = await paymentLinksDisable(moov, {
|
|
556
|
-
accountID: "
|
|
556
|
+
accountID: "cd7cd1ce-90cc-444b-ac3e-badb79be277f",
|
|
557
557
|
paymentLinkCode: "uc7ZYKrMhi",
|
|
558
558
|
});
|
|
559
559
|
|
|
@@ -612,7 +612,7 @@ const moov = new Moov({
|
|
|
612
612
|
|
|
613
613
|
async function run() {
|
|
614
614
|
const result = await moov.paymentLinks.getQRCode({
|
|
615
|
-
accountID: "
|
|
615
|
+
accountID: "2014a1ff-9924-40b3-ac01-f4ed64dac1b8",
|
|
616
616
|
paymentLinkCode: "uc7ZYKrMhi",
|
|
617
617
|
});
|
|
618
618
|
|
|
@@ -642,7 +642,7 @@ const moov = new MoovCore({
|
|
|
642
642
|
|
|
643
643
|
async function run() {
|
|
644
644
|
const res = await paymentLinksGetQRCode(moov, {
|
|
645
|
-
accountID: "
|
|
645
|
+
accountID: "2014a1ff-9924-40b3-ac01-f4ed64dac1b8",
|
|
646
646
|
paymentLinkCode: "uc7ZYKrMhi",
|
|
647
647
|
});
|
|
648
648
|
|
|
@@ -37,7 +37,7 @@ const moov = new Moov({
|
|
|
37
37
|
|
|
38
38
|
async function run() {
|
|
39
39
|
const result = await moov.paymentMethods.list({
|
|
40
|
-
accountID: "
|
|
40
|
+
accountID: "c8a232aa-0b11-4b8a-b005-71e9e705d0e6",
|
|
41
41
|
});
|
|
42
42
|
|
|
43
43
|
// Handle the result
|
|
@@ -66,7 +66,7 @@ const moov = new MoovCore({
|
|
|
66
66
|
|
|
67
67
|
async function run() {
|
|
68
68
|
const res = await paymentMethodsList(moov, {
|
|
69
|
-
accountID: "
|
|
69
|
+
accountID: "c8a232aa-0b11-4b8a-b005-71e9e705d0e6",
|
|
70
70
|
});
|
|
71
71
|
|
|
72
72
|
if (!res.ok) {
|
|
@@ -122,8 +122,8 @@ const moov = new Moov({
|
|
|
122
122
|
|
|
123
123
|
async function run() {
|
|
124
124
|
const result = await moov.paymentMethods.get({
|
|
125
|
-
accountID: "
|
|
126
|
-
paymentMethodID: "
|
|
125
|
+
accountID: "b888f774-3e7c-4135-a18c-6b985523c4bc",
|
|
126
|
+
paymentMethodID: "e50f7622-81da-484b-9c66-1c8a99c6b71b",
|
|
127
127
|
});
|
|
128
128
|
|
|
129
129
|
// Handle the result
|
|
@@ -152,8 +152,8 @@ const moov = new MoovCore({
|
|
|
152
152
|
|
|
153
153
|
async function run() {
|
|
154
154
|
const res = await paymentMethodsGet(moov, {
|
|
155
|
-
accountID: "
|
|
156
|
-
paymentMethodID: "
|
|
155
|
+
accountID: "b888f774-3e7c-4135-a18c-6b985523c4bc",
|
|
156
|
+
paymentMethodID: "e50f7622-81da-484b-9c66-1c8a99c6b71b",
|
|
157
157
|
});
|
|
158
158
|
|
|
159
159
|
if (!res.ok) {
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
|
|
10
10
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
11
11
|
you'll need to specify the `/accounts/{accountID}/transfers.write` scope.
|
|
12
|
-
* [list](#list) - List receipts by
|
|
12
|
+
* [list](#list) - List receipts by transferID, scheduleID, or occurrenceID.
|
|
13
13
|
|
|
14
14
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
15
15
|
you'll need to specify the `/accounts/{accountID}/transfers.read` scope.
|
|
@@ -101,15 +101,14 @@ run();
|
|
|
101
101
|
|
|
102
102
|
### Errors
|
|
103
103
|
|
|
104
|
-
| Error Type
|
|
105
|
-
|
|
|
106
|
-
| errors.GenericError
|
|
107
|
-
| errors.
|
|
108
|
-
| errors.APIError | 4XX, 5XX | \*/\* |
|
|
104
|
+
| Error Type | Status Code | Content Type |
|
|
105
|
+
| ------------------- | ------------------- | ------------------- |
|
|
106
|
+
| errors.GenericError | 400, 409 | application/json |
|
|
107
|
+
| errors.APIError | 4XX, 5XX | \*/\* |
|
|
109
108
|
|
|
110
109
|
## list
|
|
111
110
|
|
|
112
|
-
List receipts by
|
|
111
|
+
List receipts by transferID, scheduleID, or occurrenceID.
|
|
113
112
|
|
|
114
113
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
115
114
|
you'll need to specify the `/accounts/{accountID}/transfers.read` scope.
|
|
@@ -127,7 +126,9 @@ const moov = new Moov({
|
|
|
127
126
|
});
|
|
128
127
|
|
|
129
128
|
async function run() {
|
|
130
|
-
const result = await moov.receipts.list({
|
|
129
|
+
const result = await moov.receipts.list({
|
|
130
|
+
id: "c8a232aa-0b11-4b8a-b005-71e9e705d0e6",
|
|
131
|
+
});
|
|
131
132
|
|
|
132
133
|
// Handle the result
|
|
133
134
|
console.log(result);
|
|
@@ -154,7 +155,9 @@ const moov = new MoovCore({
|
|
|
154
155
|
});
|
|
155
156
|
|
|
156
157
|
async function run() {
|
|
157
|
-
const res = await receiptsList(moov, {
|
|
158
|
+
const res = await receiptsList(moov, {
|
|
159
|
+
id: "c8a232aa-0b11-4b8a-b005-71e9e705d0e6",
|
|
160
|
+
});
|
|
158
161
|
|
|
159
162
|
if (!res.ok) {
|
|
160
163
|
throw res.error;
|
|
@@ -67,7 +67,7 @@ const moov = new Moov({
|
|
|
67
67
|
|
|
68
68
|
async function run() {
|
|
69
69
|
const result = await moov.representatives.create({
|
|
70
|
-
accountID: "
|
|
70
|
+
accountID: "7a621cf0-21cd-49cf-8540-3315211a509a",
|
|
71
71
|
createRepresentative: {
|
|
72
72
|
name: {
|
|
73
73
|
firstName: "Jordan",
|
|
@@ -126,7 +126,7 @@ const moov = new MoovCore({
|
|
|
126
126
|
|
|
127
127
|
async function run() {
|
|
128
128
|
const res = await representativesCreate(moov, {
|
|
129
|
-
accountID: "
|
|
129
|
+
accountID: "7a621cf0-21cd-49cf-8540-3315211a509a",
|
|
130
130
|
createRepresentative: {
|
|
131
131
|
name: {
|
|
132
132
|
firstName: "Jordan",
|
|
@@ -217,7 +217,7 @@ const moov = new Moov({
|
|
|
217
217
|
|
|
218
218
|
async function run() {
|
|
219
219
|
const result = await moov.representatives.list({
|
|
220
|
-
accountID: "
|
|
220
|
+
accountID: "c8a232aa-0b11-4b8a-b005-71e9e705d0e6",
|
|
221
221
|
});
|
|
222
222
|
|
|
223
223
|
// Handle the result
|
|
@@ -246,7 +246,7 @@ const moov = new MoovCore({
|
|
|
246
246
|
|
|
247
247
|
async function run() {
|
|
248
248
|
const res = await representativesList(moov, {
|
|
249
|
-
accountID: "
|
|
249
|
+
accountID: "c8a232aa-0b11-4b8a-b005-71e9e705d0e6",
|
|
250
250
|
});
|
|
251
251
|
|
|
252
252
|
if (!res.ok) {
|
|
@@ -302,8 +302,8 @@ const moov = new Moov({
|
|
|
302
302
|
|
|
303
303
|
async function run() {
|
|
304
304
|
const result = await moov.representatives.delete({
|
|
305
|
-
accountID: "
|
|
306
|
-
representativeID: "
|
|
305
|
+
accountID: "8b6fe91a-a0b1-4b3e-ab7b-e83a32f2399e",
|
|
306
|
+
representativeID: "7aa10743-a04f-44af-84fe-b54259caa1ba",
|
|
307
307
|
});
|
|
308
308
|
|
|
309
309
|
// Handle the result
|
|
@@ -332,8 +332,8 @@ const moov = new MoovCore({
|
|
|
332
332
|
|
|
333
333
|
async function run() {
|
|
334
334
|
const res = await representativesDelete(moov, {
|
|
335
|
-
accountID: "
|
|
336
|
-
representativeID: "
|
|
335
|
+
accountID: "8b6fe91a-a0b1-4b3e-ab7b-e83a32f2399e",
|
|
336
|
+
representativeID: "7aa10743-a04f-44af-84fe-b54259caa1ba",
|
|
337
337
|
});
|
|
338
338
|
|
|
339
339
|
if (!res.ok) {
|
|
@@ -390,8 +390,8 @@ const moov = new Moov({
|
|
|
390
390
|
|
|
391
391
|
async function run() {
|
|
392
392
|
const result = await moov.representatives.get({
|
|
393
|
-
accountID: "
|
|
394
|
-
representativeID: "
|
|
393
|
+
accountID: "b888f774-3e7c-4135-a18c-6b985523c4bc",
|
|
394
|
+
representativeID: "e50f7622-81da-484b-9c66-1c8a99c6b71b",
|
|
395
395
|
});
|
|
396
396
|
|
|
397
397
|
// Handle the result
|
|
@@ -420,8 +420,8 @@ const moov = new MoovCore({
|
|
|
420
420
|
|
|
421
421
|
async function run() {
|
|
422
422
|
const res = await representativesGet(moov, {
|
|
423
|
-
accountID: "
|
|
424
|
-
representativeID: "
|
|
423
|
+
accountID: "b888f774-3e7c-4135-a18c-6b985523c4bc",
|
|
424
|
+
representativeID: "e50f7622-81da-484b-9c66-1c8a99c6b71b",
|
|
425
425
|
});
|
|
426
426
|
|
|
427
427
|
if (!res.ok) {
|
|
@@ -490,8 +490,8 @@ const moov = new Moov({
|
|
|
490
490
|
|
|
491
491
|
async function run() {
|
|
492
492
|
const result = await moov.representatives.update({
|
|
493
|
-
accountID: "
|
|
494
|
-
representativeID: "
|
|
493
|
+
accountID: "d95fa7f0-e743-42ce-b47c-b60cc78135dd",
|
|
494
|
+
representativeID: "b85898c1-25a1-4907-a1c5-562af6646dad",
|
|
495
495
|
updateRepresentative: {
|
|
496
496
|
name: {
|
|
497
497
|
firstName: "Jordan",
|
|
@@ -549,8 +549,8 @@ const moov = new MoovCore({
|
|
|
549
549
|
|
|
550
550
|
async function run() {
|
|
551
551
|
const res = await representativesUpdate(moov, {
|
|
552
|
-
accountID: "
|
|
553
|
-
representativeID: "
|
|
552
|
+
accountID: "d95fa7f0-e743-42ce-b47c-b60cc78135dd",
|
|
553
|
+
representativeID: "b85898c1-25a1-4907-a1c5-562af6646dad",
|
|
554
554
|
updateRepresentative: {
|
|
555
555
|
name: {
|
|
556
556
|
firstName: "Jordan",
|
|
@@ -51,7 +51,7 @@ const moov = new Moov({
|
|
|
51
51
|
|
|
52
52
|
async function run() {
|
|
53
53
|
const result = await moov.scheduling.create({
|
|
54
|
-
accountID: "
|
|
54
|
+
accountID: "9ab418fe-7b54-4964-a372-69b08e55ee8a",
|
|
55
55
|
upsertSchedule: {
|
|
56
56
|
occurrences: [
|
|
57
57
|
{
|
|
@@ -83,7 +83,7 @@ async function run() {
|
|
|
83
83
|
dynamicDescriptor: "WhlBdy *Yoga 11-12",
|
|
84
84
|
},
|
|
85
85
|
},
|
|
86
|
-
description: "
|
|
86
|
+
description: "delightfully fumigate convection though zowie up bulky electronics",
|
|
87
87
|
},
|
|
88
88
|
},
|
|
89
89
|
{
|
|
@@ -115,39 +115,7 @@ async function run() {
|
|
|
115
115
|
dynamicDescriptor: "WhlBdy *Yoga 11-12",
|
|
116
116
|
},
|
|
117
117
|
},
|
|
118
|
-
description: "
|
|
119
|
-
},
|
|
120
|
-
},
|
|
121
|
-
{
|
|
122
|
-
occurrenceID: "c520f1b9-0ba7-42f5-b977-248cdbe41c69",
|
|
123
|
-
runOn: new Date("2009-11-10T23:00:00Z"),
|
|
124
|
-
runTransfer: {
|
|
125
|
-
amount: {
|
|
126
|
-
currency: "USD",
|
|
127
|
-
value: 1204,
|
|
128
|
-
},
|
|
129
|
-
destination: {
|
|
130
|
-
paymentMethodID: "c520f1b9-0ba7-42f5-b977-248cdbe41c69",
|
|
131
|
-
achDetails: {
|
|
132
|
-
companyEntryDescription: "Gym dues",
|
|
133
|
-
originatingCompanyName: "Whole Body Fit",
|
|
134
|
-
},
|
|
135
|
-
cardDetails: {
|
|
136
|
-
dynamicDescriptor: "WhlBdy *Yoga 11-12",
|
|
137
|
-
},
|
|
138
|
-
},
|
|
139
|
-
partnerAccountID: "c520f1b9-0ba7-42f5-b977-248cdbe41c69",
|
|
140
|
-
source: {
|
|
141
|
-
paymentMethodID: "c520f1b9-0ba7-42f5-b977-248cdbe41c69",
|
|
142
|
-
achDetails: {
|
|
143
|
-
companyEntryDescription: "Gym dues",
|
|
144
|
-
originatingCompanyName: "Whole Body Fit",
|
|
145
|
-
},
|
|
146
|
-
cardDetails: {
|
|
147
|
-
dynamicDescriptor: "WhlBdy *Yoga 11-12",
|
|
148
|
-
},
|
|
149
|
-
},
|
|
150
|
-
description: "following eek adventurously gosh alongside shakily down",
|
|
118
|
+
description: "tackle unabashedly mentor early miserly stealthily without",
|
|
151
119
|
},
|
|
152
120
|
},
|
|
153
121
|
],
|
|
@@ -179,7 +147,7 @@ async function run() {
|
|
|
179
147
|
dynamicDescriptor: "WhlBdy *Yoga 11-12",
|
|
180
148
|
},
|
|
181
149
|
},
|
|
182
|
-
description: "
|
|
150
|
+
description: "via deeply writ amid pupil yawningly wasabi when excepting councilman",
|
|
183
151
|
},
|
|
184
152
|
start: new Date("2009-11-10T23:00:00Z"),
|
|
185
153
|
},
|
|
@@ -212,7 +180,7 @@ const moov = new MoovCore({
|
|
|
212
180
|
|
|
213
181
|
async function run() {
|
|
214
182
|
const res = await schedulingCreate(moov, {
|
|
215
|
-
accountID: "
|
|
183
|
+
accountID: "9ab418fe-7b54-4964-a372-69b08e55ee8a",
|
|
216
184
|
upsertSchedule: {
|
|
217
185
|
occurrences: [
|
|
218
186
|
{
|
|
@@ -244,39 +212,7 @@ async function run() {
|
|
|
244
212
|
dynamicDescriptor: "WhlBdy *Yoga 11-12",
|
|
245
213
|
},
|
|
246
214
|
},
|
|
247
|
-
description: "
|
|
248
|
-
},
|
|
249
|
-
},
|
|
250
|
-
{
|
|
251
|
-
occurrenceID: "c520f1b9-0ba7-42f5-b977-248cdbe41c69",
|
|
252
|
-
runOn: new Date("2009-11-10T23:00:00Z"),
|
|
253
|
-
runTransfer: {
|
|
254
|
-
amount: {
|
|
255
|
-
currency: "USD",
|
|
256
|
-
value: 1204,
|
|
257
|
-
},
|
|
258
|
-
destination: {
|
|
259
|
-
paymentMethodID: "c520f1b9-0ba7-42f5-b977-248cdbe41c69",
|
|
260
|
-
achDetails: {
|
|
261
|
-
companyEntryDescription: "Gym dues",
|
|
262
|
-
originatingCompanyName: "Whole Body Fit",
|
|
263
|
-
},
|
|
264
|
-
cardDetails: {
|
|
265
|
-
dynamicDescriptor: "WhlBdy *Yoga 11-12",
|
|
266
|
-
},
|
|
267
|
-
},
|
|
268
|
-
partnerAccountID: "c520f1b9-0ba7-42f5-b977-248cdbe41c69",
|
|
269
|
-
source: {
|
|
270
|
-
paymentMethodID: "c520f1b9-0ba7-42f5-b977-248cdbe41c69",
|
|
271
|
-
achDetails: {
|
|
272
|
-
companyEntryDescription: "Gym dues",
|
|
273
|
-
originatingCompanyName: "Whole Body Fit",
|
|
274
|
-
},
|
|
275
|
-
cardDetails: {
|
|
276
|
-
dynamicDescriptor: "WhlBdy *Yoga 11-12",
|
|
277
|
-
},
|
|
278
|
-
},
|
|
279
|
-
description: "huddle monthly boo curry official deadly",
|
|
215
|
+
description: "delightfully fumigate convection though zowie up bulky electronics",
|
|
280
216
|
},
|
|
281
217
|
},
|
|
282
218
|
{
|
|
@@ -308,7 +244,7 @@ async function run() {
|
|
|
308
244
|
dynamicDescriptor: "WhlBdy *Yoga 11-12",
|
|
309
245
|
},
|
|
310
246
|
},
|
|
311
|
-
description: "
|
|
247
|
+
description: "tackle unabashedly mentor early miserly stealthily without",
|
|
312
248
|
},
|
|
313
249
|
},
|
|
314
250
|
],
|
|
@@ -340,7 +276,7 @@ async function run() {
|
|
|
340
276
|
dynamicDescriptor: "WhlBdy *Yoga 11-12",
|
|
341
277
|
},
|
|
342
278
|
},
|
|
343
|
-
description: "
|
|
279
|
+
description: "via deeply writ amid pupil yawningly wasabi when excepting councilman",
|
|
344
280
|
},
|
|
345
281
|
start: new Date("2009-11-10T23:00:00Z"),
|
|
346
282
|
},
|
|
@@ -404,7 +340,7 @@ async function run() {
|
|
|
404
340
|
const result = await moov.scheduling.list({
|
|
405
341
|
skip: 60,
|
|
406
342
|
count: 20,
|
|
407
|
-
accountID: "
|
|
343
|
+
accountID: "c8a232aa-0b11-4b8a-b005-71e9e705d0e6",
|
|
408
344
|
});
|
|
409
345
|
|
|
410
346
|
// Handle the result
|
|
@@ -435,7 +371,7 @@ async function run() {
|
|
|
435
371
|
const res = await schedulingList(moov, {
|
|
436
372
|
skip: 60,
|
|
437
373
|
count: 20,
|
|
438
|
-
accountID: "
|
|
374
|
+
accountID: "c8a232aa-0b11-4b8a-b005-71e9e705d0e6",
|
|
439
375
|
});
|
|
440
376
|
|
|
441
377
|
if (!res.ok) {
|
|
@@ -491,8 +427,8 @@ const moov = new Moov({
|
|
|
491
427
|
|
|
492
428
|
async function run() {
|
|
493
429
|
const result = await moov.scheduling.update({
|
|
494
|
-
accountID: "
|
|
495
|
-
scheduleID: "
|
|
430
|
+
accountID: "916f66c9-4a48-4a10-94fb-c5837b3ed84e",
|
|
431
|
+
scheduleID: "ce88be33-c224-42c1-ae8b-3533cc7b3742",
|
|
496
432
|
upsertSchedule: {
|
|
497
433
|
occurrences: [
|
|
498
434
|
{
|
|
@@ -524,7 +460,7 @@ async function run() {
|
|
|
524
460
|
dynamicDescriptor: "WhlBdy *Yoga 11-12",
|
|
525
461
|
},
|
|
526
462
|
},
|
|
527
|
-
description: "
|
|
463
|
+
description: "technician eulogise whereas till mild than during",
|
|
528
464
|
},
|
|
529
465
|
},
|
|
530
466
|
{
|
|
@@ -556,7 +492,39 @@ async function run() {
|
|
|
556
492
|
dynamicDescriptor: "WhlBdy *Yoga 11-12",
|
|
557
493
|
},
|
|
558
494
|
},
|
|
559
|
-
description: "
|
|
495
|
+
description: "gosh frantically belabor past",
|
|
496
|
+
},
|
|
497
|
+
},
|
|
498
|
+
{
|
|
499
|
+
occurrenceID: "c520f1b9-0ba7-42f5-b977-248cdbe41c69",
|
|
500
|
+
runOn: new Date("2009-11-10T23:00:00Z"),
|
|
501
|
+
runTransfer: {
|
|
502
|
+
amount: {
|
|
503
|
+
currency: "USD",
|
|
504
|
+
value: 1204,
|
|
505
|
+
},
|
|
506
|
+
destination: {
|
|
507
|
+
paymentMethodID: "c520f1b9-0ba7-42f5-b977-248cdbe41c69",
|
|
508
|
+
achDetails: {
|
|
509
|
+
companyEntryDescription: "Gym dues",
|
|
510
|
+
originatingCompanyName: "Whole Body Fit",
|
|
511
|
+
},
|
|
512
|
+
cardDetails: {
|
|
513
|
+
dynamicDescriptor: "WhlBdy *Yoga 11-12",
|
|
514
|
+
},
|
|
515
|
+
},
|
|
516
|
+
partnerAccountID: "c520f1b9-0ba7-42f5-b977-248cdbe41c69",
|
|
517
|
+
source: {
|
|
518
|
+
paymentMethodID: "c520f1b9-0ba7-42f5-b977-248cdbe41c69",
|
|
519
|
+
achDetails: {
|
|
520
|
+
companyEntryDescription: "Gym dues",
|
|
521
|
+
originatingCompanyName: "Whole Body Fit",
|
|
522
|
+
},
|
|
523
|
+
cardDetails: {
|
|
524
|
+
dynamicDescriptor: "WhlBdy *Yoga 11-12",
|
|
525
|
+
},
|
|
526
|
+
},
|
|
527
|
+
description: "perfumed fisherman with",
|
|
560
528
|
},
|
|
561
529
|
},
|
|
562
530
|
],
|
|
@@ -588,7 +556,7 @@ async function run() {
|
|
|
588
556
|
dynamicDescriptor: "WhlBdy *Yoga 11-12",
|
|
589
557
|
},
|
|
590
558
|
},
|
|
591
|
-
description: "
|
|
559
|
+
description: "hydrolyze lazily whenever how what",
|
|
592
560
|
},
|
|
593
561
|
start: new Date("2009-11-10T23:00:00Z"),
|
|
594
562
|
},
|
|
@@ -621,8 +589,8 @@ const moov = new MoovCore({
|
|
|
621
589
|
|
|
622
590
|
async function run() {
|
|
623
591
|
const res = await schedulingUpdate(moov, {
|
|
624
|
-
accountID: "
|
|
625
|
-
scheduleID: "
|
|
592
|
+
accountID: "916f66c9-4a48-4a10-94fb-c5837b3ed84e",
|
|
593
|
+
scheduleID: "ce88be33-c224-42c1-ae8b-3533cc7b3742",
|
|
626
594
|
upsertSchedule: {
|
|
627
595
|
occurrences: [
|
|
628
596
|
{
|
|
@@ -654,7 +622,39 @@ async function run() {
|
|
|
654
622
|
dynamicDescriptor: "WhlBdy *Yoga 11-12",
|
|
655
623
|
},
|
|
656
624
|
},
|
|
657
|
-
description: "
|
|
625
|
+
description: "technician eulogise whereas till mild than during",
|
|
626
|
+
},
|
|
627
|
+
},
|
|
628
|
+
{
|
|
629
|
+
occurrenceID: "c520f1b9-0ba7-42f5-b977-248cdbe41c69",
|
|
630
|
+
runOn: new Date("2009-11-10T23:00:00Z"),
|
|
631
|
+
runTransfer: {
|
|
632
|
+
amount: {
|
|
633
|
+
currency: "USD",
|
|
634
|
+
value: 1204,
|
|
635
|
+
},
|
|
636
|
+
destination: {
|
|
637
|
+
paymentMethodID: "c520f1b9-0ba7-42f5-b977-248cdbe41c69",
|
|
638
|
+
achDetails: {
|
|
639
|
+
companyEntryDescription: "Gym dues",
|
|
640
|
+
originatingCompanyName: "Whole Body Fit",
|
|
641
|
+
},
|
|
642
|
+
cardDetails: {
|
|
643
|
+
dynamicDescriptor: "WhlBdy *Yoga 11-12",
|
|
644
|
+
},
|
|
645
|
+
},
|
|
646
|
+
partnerAccountID: "c520f1b9-0ba7-42f5-b977-248cdbe41c69",
|
|
647
|
+
source: {
|
|
648
|
+
paymentMethodID: "c520f1b9-0ba7-42f5-b977-248cdbe41c69",
|
|
649
|
+
achDetails: {
|
|
650
|
+
companyEntryDescription: "Gym dues",
|
|
651
|
+
originatingCompanyName: "Whole Body Fit",
|
|
652
|
+
},
|
|
653
|
+
cardDetails: {
|
|
654
|
+
dynamicDescriptor: "WhlBdy *Yoga 11-12",
|
|
655
|
+
},
|
|
656
|
+
},
|
|
657
|
+
description: "gosh frantically belabor past",
|
|
658
658
|
},
|
|
659
659
|
},
|
|
660
660
|
{
|
|
@@ -686,7 +686,7 @@ async function run() {
|
|
|
686
686
|
dynamicDescriptor: "WhlBdy *Yoga 11-12",
|
|
687
687
|
},
|
|
688
688
|
},
|
|
689
|
-
description: "
|
|
689
|
+
description: "perfumed fisherman with",
|
|
690
690
|
},
|
|
691
691
|
},
|
|
692
692
|
],
|
|
@@ -718,7 +718,7 @@ async function run() {
|
|
|
718
718
|
dynamicDescriptor: "WhlBdy *Yoga 11-12",
|
|
719
719
|
},
|
|
720
720
|
},
|
|
721
|
-
description: "
|
|
721
|
+
description: "hydrolyze lazily whenever how what",
|
|
722
722
|
},
|
|
723
723
|
start: new Date("2009-11-10T23:00:00Z"),
|
|
724
724
|
},
|
|
@@ -780,8 +780,8 @@ const moov = new Moov({
|
|
|
780
780
|
|
|
781
781
|
async function run() {
|
|
782
782
|
const result = await moov.scheduling.get({
|
|
783
|
-
accountID: "
|
|
784
|
-
scheduleID: "
|
|
783
|
+
accountID: "b888f774-3e7c-4135-a18c-6b985523c4bc",
|
|
784
|
+
scheduleID: "e50f7622-81da-484b-9c66-1c8a99c6b71b",
|
|
785
785
|
});
|
|
786
786
|
|
|
787
787
|
// Handle the result
|
|
@@ -810,8 +810,8 @@ const moov = new MoovCore({
|
|
|
810
810
|
|
|
811
811
|
async function run() {
|
|
812
812
|
const res = await schedulingGet(moov, {
|
|
813
|
-
accountID: "
|
|
814
|
-
scheduleID: "
|
|
813
|
+
accountID: "b888f774-3e7c-4135-a18c-6b985523c4bc",
|
|
814
|
+
scheduleID: "e50f7622-81da-484b-9c66-1c8a99c6b71b",
|
|
815
815
|
});
|
|
816
816
|
|
|
817
817
|
if (!res.ok) {
|
|
@@ -867,8 +867,8 @@ const moov = new Moov({
|
|
|
867
867
|
|
|
868
868
|
async function run() {
|
|
869
869
|
const result = await moov.scheduling.cancel({
|
|
870
|
-
accountID: "
|
|
871
|
-
scheduleID: "
|
|
870
|
+
accountID: "0f713502-9233-41c6-9ebd-c570b7edb496",
|
|
871
|
+
scheduleID: "d50fbe4e-3e32-4613-8574-4d82f3fd6b3c",
|
|
872
872
|
});
|
|
873
873
|
|
|
874
874
|
// Handle the result
|
|
@@ -897,8 +897,8 @@ const moov = new MoovCore({
|
|
|
897
897
|
|
|
898
898
|
async function run() {
|
|
899
899
|
const res = await schedulingCancel(moov, {
|
|
900
|
-
accountID: "
|
|
901
|
-
scheduleID: "
|
|
900
|
+
accountID: "0f713502-9233-41c6-9ebd-c570b7edb496",
|
|
901
|
+
scheduleID: "d50fbe4e-3e32-4613-8574-4d82f3fd6b3c",
|
|
902
902
|
});
|
|
903
903
|
|
|
904
904
|
if (!res.ok) {
|
|
@@ -955,8 +955,8 @@ const moov = new Moov({
|
|
|
955
955
|
|
|
956
956
|
async function run() {
|
|
957
957
|
const result = await moov.scheduling.getOccurrance({
|
|
958
|
-
accountID: "
|
|
959
|
-
scheduleID: "
|
|
958
|
+
accountID: "cdeb0c02-04f9-4e60-9768-3c10a2b2201d",
|
|
959
|
+
scheduleID: "47a51a3b-df1e-40c5-8048-918f18949779",
|
|
960
960
|
occurrenceFilter: "<value>",
|
|
961
961
|
});
|
|
962
962
|
|
|
@@ -986,8 +986,8 @@ const moov = new MoovCore({
|
|
|
986
986
|
|
|
987
987
|
async function run() {
|
|
988
988
|
const res = await schedulingGetOccurrance(moov, {
|
|
989
|
-
accountID: "
|
|
990
|
-
scheduleID: "
|
|
989
|
+
accountID: "cdeb0c02-04f9-4e60-9768-3c10a2b2201d",
|
|
990
|
+
scheduleID: "47a51a3b-df1e-40c5-8048-918f18949779",
|
|
991
991
|
occurrenceFilter: "<value>",
|
|
992
992
|
});
|
|
993
993
|
|