@opexa/portal-sdk 0.59.56 → 0.59.59

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,9 +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
+ # ... on InsufficientAgentBalanceError {
929
+ # __typename
930
+ # }
931
931
  }
932
932
  }
933
933
  `;
@@ -1009,9 +1009,9 @@ var CREATE_TEST_DEPOSIT_MUTATION = gql`
1009
1009
  ... on WalletDoesNotExistError {
1010
1010
  __typename
1011
1011
  }
1012
- ... on InsufficientAgentBalanceError {
1013
- __typename
1014
- }
1012
+ # ... on InsufficientAgentBalanceError {
1013
+ # __typename
1014
+ # }
1015
1015
  }
1016
1016
  }
1017
1017
  `;
@@ -1096,9 +1096,9 @@ var CREATE_AIO_GCASH_DEPOSIT_MUTATION = gql`
1096
1096
  ... on WalletDoesNotExistError {
1097
1097
  __typename
1098
1098
  }
1099
- ... on InsufficientAgentBalanceError {
1100
- __typename
1101
- }
1099
+ # ... on InsufficientAgentBalanceError {
1100
+ # __typename
1101
+ # }
1102
1102
  }
1103
1103
  }
1104
1104
  `;
@@ -1126,9 +1126,9 @@ var CREATE_AIO_PAY_MAYA_DEPOSIT_MUTATION = gql`
1126
1126
  ... on WalletDoesNotExistError {
1127
1127
  __typename
1128
1128
  }
1129
- ... on InsufficientAgentBalanceError {
1130
- __typename
1131
- }
1129
+ # ... on InsufficientAgentBalanceError {
1130
+ # __typename
1131
+ # }
1132
1132
  }
1133
1133
  }
1134
1134
  `;
@@ -1156,9 +1156,9 @@ var CREATE_AIO_GRAB_PAY_DEPOSIT_MUTATION = gql`
1156
1156
  ... on WalletDoesNotExistError {
1157
1157
  __typename
1158
1158
  }
1159
- ... on InsufficientAgentBalanceError {
1160
- __typename
1161
- }
1159
+ # ... on InsufficientAgentBalanceError {
1160
+ # __typename
1161
+ # }
1162
1162
  }
1163
1163
  }
1164
1164
  `;
@@ -1188,9 +1188,9 @@ var CREATE_AIO_PALAWAN_PAY_DEPOSIT_MUTATION = gql`
1188
1188
  ... on WalletDoesNotExistError {
1189
1189
  __typename
1190
1190
  }
1191
- ... on InsufficientAgentBalanceError {
1192
- __typename
1193
- }
1191
+ # ... on InsufficientAgentBalanceError {
1192
+ # __typename
1193
+ # }
1194
1194
  }
1195
1195
  }
1196
1196
  `;
@@ -3736,7 +3736,7 @@ function createOperationError(code) {
3736
3736
  RateLimitExceededError: "Maximum number of requests reached",
3737
3737
  RewardAlreadyClaimedError: "Reward is already claimed",
3738
3738
  ReCAPTCHAVerificationFailedError: "Invalid reCAPTCHA",
3739
- InsufficientAgentBalanceError: "Insufficient agent balance",
3739
+ // InsufficientAgentBalanceError: 'Insufficient agent balance',
3740
3740
  AccountSuspendedError: "Account is suspended",
3741
3741
  TransactionPasswordNotSetError: "Transaction password is not set",
3742
3742
  UPIReferenceNotAvailableError: "UPI reference is no longer available",
@@ -6753,11 +6753,10 @@ function parseFbCxd(input) {
6753
6753
  return { cxd, fbAdditionalCxd };
6754
6754
  }
6755
6755
  var thumbmark_instance;
6756
- async function getFingerprint(environment) {
6756
+ async function getFingerprint() {
6757
6757
  if (typeof window === "undefined") return null;
6758
6758
  if (!thumbmark_instance) {
6759
6759
  thumbmark_instance = new thumbmarkjs.Thumbmark({
6760
- api_key: environment === "production" ? "8294c227c5194f96e4deb022e8e76293" : void 0,
6761
6760
  logging: false,
6762
6761
  timeout: 3e4,
6763
6762
  cache_lifetime_in_ms: 1 * 60 * 60 * 1e3
@@ -9743,7 +9742,7 @@ var Sdk = class {
9743
9742
  };
9744
9743
  }
9745
9744
  async fingerprint() {
9746
- return await getFingerprint(this.config.environment ?? "development");
9745
+ return await getFingerprint();
9747
9746
  }
9748
9747
  get miscMiddleware() {
9749
9748
  return async (request) => {