@opexa/portal-sdk 0.52.3 → 0.52.4

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
@@ -850,7 +850,25 @@ var CREATE_MAYA_DEPOSIT_MUTATION = gql`
850
850
  var CREATE_TEST_DEPOSIT_MUTATION = gql`
851
851
  mutation CreateTestDeposit($input: CreateTestDepositInput!) {
852
852
  createTestDeposit(input: $input) {
853
- ... on WalletDoesNotExistError {
853
+ ... on DepositPromoMaximumAmountExceededError {
854
+ __typename
855
+ }
856
+ ... on DepositPromoMinimumAmountNotMetError {
857
+ __typename
858
+ }
859
+ ... on MaximumDepositAmountExceededError {
860
+ __typename
861
+ }
862
+ ... on MinimumDepositAmountNotMetError {
863
+ __typename
864
+ }
865
+ ... on MinimumFirstDepositAmountNotMetError {
866
+ __typename
867
+ }
868
+ ... on PromoNotEnabledError {
869
+ __typename
870
+ }
871
+ ... on WalletDoesNotExistError {
854
872
  __typename
855
873
  }
856
874
  }