@opexa/portal-sdk 0.59.53 → 0.59.56

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.
@@ -902,6 +902,9 @@ var CREATE_GCASH_WEBPAY_DEPOSIT_MUTATION = gql`
902
902
  ... on WalletDoesNotExistError {
903
903
  __typename
904
904
  }
905
+ ... on InsufficientAgentBalanceError {
906
+ __typename
907
+ }
905
908
  }
906
909
  }
907
910
  `;
@@ -983,6 +986,9 @@ var CREATE_TEST_DEPOSIT_MUTATION = gql`
983
986
  ... on WalletDoesNotExistError {
984
987
  __typename
985
988
  }
989
+ ... on InsufficientAgentBalanceError {
990
+ __typename
991
+ }
986
992
  }
987
993
  }
988
994
  `;
@@ -1067,6 +1073,9 @@ var CREATE_AIO_GCASH_DEPOSIT_MUTATION = gql`
1067
1073
  ... on WalletDoesNotExistError {
1068
1074
  __typename
1069
1075
  }
1076
+ ... on InsufficientAgentBalanceError {
1077
+ __typename
1078
+ }
1070
1079
  }
1071
1080
  }
1072
1081
  `;
@@ -1094,6 +1103,9 @@ var CREATE_AIO_PAY_MAYA_DEPOSIT_MUTATION = gql`
1094
1103
  ... on WalletDoesNotExistError {
1095
1104
  __typename
1096
1105
  }
1106
+ ... on InsufficientAgentBalanceError {
1107
+ __typename
1108
+ }
1097
1109
  }
1098
1110
  }
1099
1111
  `;
@@ -1121,6 +1133,9 @@ var CREATE_AIO_GRAB_PAY_DEPOSIT_MUTATION = gql`
1121
1133
  ... on WalletDoesNotExistError {
1122
1134
  __typename
1123
1135
  }
1136
+ ... on InsufficientAgentBalanceError {
1137
+ __typename
1138
+ }
1124
1139
  }
1125
1140
  }
1126
1141
  `;
@@ -1150,6 +1165,9 @@ var CREATE_AIO_PALAWAN_PAY_DEPOSIT_MUTATION = gql`
1150
1165
  ... on WalletDoesNotExistError {
1151
1166
  __typename
1152
1167
  }
1168
+ ... on InsufficientAgentBalanceError {
1169
+ __typename
1170
+ }
1153
1171
  }
1154
1172
  }
1155
1173
  `;
@@ -3695,6 +3713,7 @@ function createOperationError(code) {
3695
3713
  RateLimitExceededError: "Maximum number of requests reached",
3696
3714
  RewardAlreadyClaimedError: "Reward is already claimed",
3697
3715
  ReCAPTCHAVerificationFailedError: "Invalid reCAPTCHA",
3716
+ InsufficientAgentBalanceError: "Insufficient agent balance",
3698
3717
  AccountSuspendedError: "Account is suspended",
3699
3718
  TransactionPasswordNotSetError: "Transaction password is not set",
3700
3719
  UPIReferenceNotAvailableError: "UPI reference is no longer available",