@opexa/portal-sdk 0.59.55 → 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.
package/dist/index.cjs CHANGED
@@ -925,6 +925,9 @@ var CREATE_GCASH_WEBPAY_DEPOSIT_MUTATION = gql`
925
925
  ... on WalletDoesNotExistError {
926
926
  __typename
927
927
  }
928
+ ... on InsufficientAgentBalanceError {
929
+ __typename
930
+ }
928
931
  }
929
932
  }
930
933
  `;
@@ -1006,6 +1009,9 @@ var CREATE_TEST_DEPOSIT_MUTATION = gql`
1006
1009
  ... on WalletDoesNotExistError {
1007
1010
  __typename
1008
1011
  }
1012
+ ... on InsufficientAgentBalanceError {
1013
+ __typename
1014
+ }
1009
1015
  }
1010
1016
  }
1011
1017
  `;
@@ -1090,6 +1096,9 @@ var CREATE_AIO_GCASH_DEPOSIT_MUTATION = gql`
1090
1096
  ... on WalletDoesNotExistError {
1091
1097
  __typename
1092
1098
  }
1099
+ ... on InsufficientAgentBalanceError {
1100
+ __typename
1101
+ }
1093
1102
  }
1094
1103
  }
1095
1104
  `;
@@ -1117,6 +1126,9 @@ var CREATE_AIO_PAY_MAYA_DEPOSIT_MUTATION = gql`
1117
1126
  ... on WalletDoesNotExistError {
1118
1127
  __typename
1119
1128
  }
1129
+ ... on InsufficientAgentBalanceError {
1130
+ __typename
1131
+ }
1120
1132
  }
1121
1133
  }
1122
1134
  `;
@@ -1144,6 +1156,9 @@ var CREATE_AIO_GRAB_PAY_DEPOSIT_MUTATION = gql`
1144
1156
  ... on WalletDoesNotExistError {
1145
1157
  __typename
1146
1158
  }
1159
+ ... on InsufficientAgentBalanceError {
1160
+ __typename
1161
+ }
1147
1162
  }
1148
1163
  }
1149
1164
  `;
@@ -1173,6 +1188,9 @@ var CREATE_AIO_PALAWAN_PAY_DEPOSIT_MUTATION = gql`
1173
1188
  ... on WalletDoesNotExistError {
1174
1189
  __typename
1175
1190
  }
1191
+ ... on InsufficientAgentBalanceError {
1192
+ __typename
1193
+ }
1176
1194
  }
1177
1195
  }
1178
1196
  `;
@@ -3718,6 +3736,7 @@ function createOperationError(code) {
3718
3736
  RateLimitExceededError: "Maximum number of requests reached",
3719
3737
  RewardAlreadyClaimedError: "Reward is already claimed",
3720
3738
  ReCAPTCHAVerificationFailedError: "Invalid reCAPTCHA",
3739
+ InsufficientAgentBalanceError: "Insufficient agent balance",
3721
3740
  AccountSuspendedError: "Account is suspended",
3722
3741
  TransactionPasswordNotSetError: "Transaction password is not set",
3723
3742
  UPIReferenceNotAvailableError: "UPI reference is no longer available",