@opexa/portal-sdk 0.0.211 → 0.0.212

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 CHANGED
@@ -647,16 +647,31 @@ var CREATE_AIO_ONLINE_BANK_DEPOSIT_MUTATION = gql`
647
647
  var CREATE_MANUAL_BANK_DEPOSIT_MUTATION = gql`
648
648
  mutation CreateManualBankDeposit($input: CreateManualBankDepositInput!) {
649
649
  createManualBankDeposit(input: $input) {
650
- ... on MinimumDepositAmountNotMetError {
650
+ ... on WalletDoesNotExistError {
651
651
  __typename
652
652
  }
653
653
  ... on MinimumFirstDepositAmountNotMetError {
654
654
  __typename
655
655
  }
656
+ ... on MinimumDepositAmountNotMetError {
657
+ __typename
658
+ }
656
659
  ... on PromoNotEnabledError {
657
660
  __typename
658
661
  }
659
- ... on WalletDoesNotExistError {
662
+ ... on DepositPromoMinimumAmountNotMetError {
663
+ __typename
664
+ }
665
+ ... on DepositPromoMaximumAmountExceededError {
666
+ __typename
667
+ }
668
+ ... on MaximumDepositAmountExceededError {
669
+ __typename
670
+ }
671
+ ... on FileDoesNotExistError {
672
+ __typename
673
+ }
674
+ ... on FileNotReadyError {
660
675
  __typename
661
676
  }
662
677
  }
@@ -665,6 +680,18 @@ var CREATE_MANUAL_BANK_DEPOSIT_MUTATION = gql`
665
680
  var CREATE_MANUAL_UPI_DEPOSIT_MUTATION = gql`
666
681
  mutation CreateManualUPIDeposit($input: CreateManualUPIDepositInput!) {
667
682
  createManualUPIDeposit(input: $input) {
683
+ ... on DepositPromoMaximumAmountExceededError {
684
+ __typename
685
+ }
686
+ ... on DepositPromoMinimumAmountNotMetError {
687
+ __typename
688
+ }
689
+ ... on HasActiveBonusError {
690
+ __typename
691
+ }
692
+ ... on MaximumDepositAmountExceededError {
693
+ __typename
694
+ }
668
695
  ... on MinimumDepositAmountNotMetError {
669
696
  __typename
670
697
  }