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