@opexa/portal-sdk 0.48.3 → 0.48.5
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 +18 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +18 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -368,6 +368,21 @@ var WITHDRAWAL_RECORDS_QUERY = gql`
|
|
|
368
368
|
dateTimeCreated
|
|
369
369
|
dateTimeLastUpdated
|
|
370
370
|
}
|
|
371
|
+
... on GCashStandardCashInWithdrawalRecord {
|
|
372
|
+
id
|
|
373
|
+
type
|
|
374
|
+
bank
|
|
375
|
+
fee
|
|
376
|
+
netAmount
|
|
377
|
+
reference
|
|
378
|
+
amount
|
|
379
|
+
status
|
|
380
|
+
error
|
|
381
|
+
withdrawalNumber
|
|
382
|
+
serialCode
|
|
383
|
+
dateTimeCreated
|
|
384
|
+
dateTimeLastUpdated
|
|
385
|
+
}
|
|
371
386
|
}
|
|
372
387
|
}
|
|
373
388
|
totalCount
|
|
@@ -8659,7 +8674,9 @@ var Sdk = class {
|
|
|
8659
8674
|
input: {
|
|
8660
8675
|
id,
|
|
8661
8676
|
amount: input.amount.toString(),
|
|
8662
|
-
promo: input.promo
|
|
8677
|
+
promo: input.promo,
|
|
8678
|
+
cancelRedirectionUrl: input.cancelRedirectionUrl,
|
|
8679
|
+
successRedirectionUrl: input.successRedirectionUrl
|
|
8663
8680
|
},
|
|
8664
8681
|
reCAPTCHAResponse: input.reCAPTCHAResponse
|
|
8665
8682
|
});
|