@opexa/portal-sdk 0.50.5 → 0.50.6
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/README.md +1634 -1634
- package/dist/index.cjs +4 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -190,7 +190,7 @@ interface WithdrawalRecordsQueryVariables {
|
|
|
190
190
|
dateTimeLastUpdated?: DateFilterField;
|
|
191
191
|
};
|
|
192
192
|
}
|
|
193
|
-
type CreateWithdrawalError$1 = 'AccountNotVerifiedError' | 'InvalidTransactionPasswordError' | 'InvalidWithdrawalAmountError' | 'MobileNumberNotVerifiedError' | 'NotEnoughBalanceError' | 'WithdrawalDailyLimitExceededError' | 'ReCAPTCHAVerificationFailedError' | 'WalletDoesNotExistError' | 'TurnoverRequirementNotYetFulfilledError';
|
|
193
|
+
type CreateWithdrawalError$1 = 'AccountNotVerifiedError' | 'InvalidTransactionPasswordError' | 'InvalidWithdrawalAmountError' | 'MobileNumberNotVerifiedError' | 'NotEnoughBalanceError' | 'WithdrawalDailyLimitExceededError' | 'ReCAPTCHAVerificationFailedError' | 'WalletDoesNotExistError' | 'TurnoverRequirementNotYetFulfilledError' | 'FirstDepositRequiredError';
|
|
194
194
|
interface InstapayBank$1 {
|
|
195
195
|
id: string;
|
|
196
196
|
name: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -190,7 +190,7 @@ interface WithdrawalRecordsQueryVariables {
|
|
|
190
190
|
dateTimeLastUpdated?: DateFilterField;
|
|
191
191
|
};
|
|
192
192
|
}
|
|
193
|
-
type CreateWithdrawalError$1 = 'AccountNotVerifiedError' | 'InvalidTransactionPasswordError' | 'InvalidWithdrawalAmountError' | 'MobileNumberNotVerifiedError' | 'NotEnoughBalanceError' | 'WithdrawalDailyLimitExceededError' | 'ReCAPTCHAVerificationFailedError' | 'WalletDoesNotExistError' | 'TurnoverRequirementNotYetFulfilledError';
|
|
193
|
+
type CreateWithdrawalError$1 = 'AccountNotVerifiedError' | 'InvalidTransactionPasswordError' | 'InvalidWithdrawalAmountError' | 'MobileNumberNotVerifiedError' | 'NotEnoughBalanceError' | 'WithdrawalDailyLimitExceededError' | 'ReCAPTCHAVerificationFailedError' | 'WalletDoesNotExistError' | 'TurnoverRequirementNotYetFulfilledError' | 'FirstDepositRequiredError';
|
|
194
194
|
interface InstapayBank$1 {
|
|
195
195
|
id: string;
|
|
196
196
|
name: string;
|
package/dist/index.js
CHANGED
|
@@ -566,6 +566,9 @@ var CREATE_AIO_INSTAPAY_WITHDRAWAL_MUTATION = gql`
|
|
|
566
566
|
... on TurnoverRequirementNotYetFulfilledError {
|
|
567
567
|
__typename
|
|
568
568
|
}
|
|
569
|
+
... on FirstDepositRequiredError {
|
|
570
|
+
__typename
|
|
571
|
+
}
|
|
569
572
|
}
|
|
570
573
|
}
|
|
571
574
|
`;
|
|
@@ -2875,6 +2878,7 @@ function createOperationError(code) {
|
|
|
2875
2878
|
GCashDirectApiRequestError: "GCash direct API request error",
|
|
2876
2879
|
VerificationDataIncompleteError: "Verification data is incomplete",
|
|
2877
2880
|
TurnoverRequirementNotYetFulfilledError: "Turnover requirement not yet fulfilled",
|
|
2881
|
+
FirstDepositRequiredError: "First deposit is required",
|
|
2878
2882
|
VerificationLockedError: "Verification is locked"
|
|
2879
2883
|
};
|
|
2880
2884
|
return {
|