@opexa/portal-sdk 0.52.0 → 0.52.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 +15 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +10 -3
- package/dist/index.d.ts +10 -3
- package/dist/index.js +15 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -389,6 +389,19 @@ var WITHDRAWAL_RECORDS_QUERY = gql`
|
|
|
389
389
|
dateTimeCreated
|
|
390
390
|
dateTimeLastUpdated
|
|
391
391
|
}
|
|
392
|
+
... on CabinetWithdrawalRecord {
|
|
393
|
+
id
|
|
394
|
+
type
|
|
395
|
+
fee
|
|
396
|
+
netAmount
|
|
397
|
+
reference
|
|
398
|
+
amount
|
|
399
|
+
status
|
|
400
|
+
error
|
|
401
|
+
serialCode
|
|
402
|
+
dateTimeCreated
|
|
403
|
+
dateTimeLastUpdated
|
|
404
|
+
}
|
|
392
405
|
}
|
|
393
406
|
}
|
|
394
407
|
totalCount
|
|
@@ -9089,8 +9102,8 @@ var Sdk = class {
|
|
|
9089
9102
|
data: res.data.map(this.transformer.transform.promo)
|
|
9090
9103
|
};
|
|
9091
9104
|
}
|
|
9092
|
-
async availablePromos() {
|
|
9093
|
-
const res = await this.walletService.availablePromos();
|
|
9105
|
+
async availablePromos(input) {
|
|
9106
|
+
const res = await this.walletService.availablePromos(input);
|
|
9094
9107
|
if (!res.ok) return res;
|
|
9095
9108
|
return {
|
|
9096
9109
|
ok: true,
|