@opexa/portal-sdk 0.3.0 → 0.4.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/dist/index.cjs +15 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +15 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -355,6 +355,9 @@ var CREATE_GCASH_WITHDRAWAL_MUTATION = gql`
|
|
|
355
355
|
... on ReCAPTCHAVerificationFailedError {
|
|
356
356
|
__typename
|
|
357
357
|
}
|
|
358
|
+
... on WalletDoesNotExistError {
|
|
359
|
+
__typename
|
|
360
|
+
}
|
|
358
361
|
}
|
|
359
362
|
}
|
|
360
363
|
`;
|
|
@@ -400,6 +403,9 @@ var CREATE_MAYA_APP_WITHDRAWAL_MUTATION = gql`
|
|
|
400
403
|
... on WithdrawalDailyLimitExceededError {
|
|
401
404
|
__typename
|
|
402
405
|
}
|
|
406
|
+
... on WalletDoesNotExistError {
|
|
407
|
+
__typename
|
|
408
|
+
}
|
|
403
409
|
}
|
|
404
410
|
}
|
|
405
411
|
`;
|
|
@@ -430,6 +436,9 @@ var CREATE_AIO_INSTAPAY_WITHDRAWAL_MUTATION = gql`
|
|
|
430
436
|
... on NotEnoughBalanceError {
|
|
431
437
|
__typename
|
|
432
438
|
}
|
|
439
|
+
... on WalletDoesNotExistError {
|
|
440
|
+
__typename
|
|
441
|
+
}
|
|
433
442
|
}
|
|
434
443
|
}
|
|
435
444
|
`;
|
|
@@ -448,6 +457,9 @@ var CREATE_MANUAL_UPI_WITHDRAWAL_MUTATION = gql`
|
|
|
448
457
|
... on NotEnoughBalanceError {
|
|
449
458
|
__typename
|
|
450
459
|
}
|
|
460
|
+
... on WalletDoesNotExistError {
|
|
461
|
+
__typename
|
|
462
|
+
}
|
|
451
463
|
}
|
|
452
464
|
}
|
|
453
465
|
`;
|
|
@@ -466,6 +478,9 @@ var CREATE_MANUAL_BANK_WITHDRAWAL_MUTATION = gql`
|
|
|
466
478
|
... on NotEnoughBalanceError {
|
|
467
479
|
__typename
|
|
468
480
|
}
|
|
481
|
+
... on WalletDoesNotExistError {
|
|
482
|
+
__typename
|
|
483
|
+
}
|
|
469
484
|
}
|
|
470
485
|
}
|
|
471
486
|
`;
|