@opexa/portal-sdk 0.45.1 → 0.45.2
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 +12 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +6 -2
- package/dist/index.d.ts +6 -2
- package/dist/index.js +12 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -8169,6 +8169,18 @@ var Sdk = class {
|
|
|
8169
8169
|
});
|
|
8170
8170
|
if (!res.ok) return res;
|
|
8171
8171
|
}
|
|
8172
|
+
if (input.type === "AIO_GCASH") {
|
|
8173
|
+
const res = await this.walletService.createAIOGcashDeposit({
|
|
8174
|
+
input: {
|
|
8175
|
+
id,
|
|
8176
|
+
amount: input.amount.toString(),
|
|
8177
|
+
promo: input.promo,
|
|
8178
|
+
redirectUrl: input.redirectUrl
|
|
8179
|
+
},
|
|
8180
|
+
reCAPTCHAResponse: input.reCAPTCHAResponse
|
|
8181
|
+
});
|
|
8182
|
+
if (!res.ok) return res;
|
|
8183
|
+
}
|
|
8172
8184
|
if (input.type === "AIO_ONLINE_BANK") {
|
|
8173
8185
|
const res = await this.walletService.createAIOOnlineBankDeposit({
|
|
8174
8186
|
input: {
|