@opexa/portal-sdk 0.59.72 → 0.59.74
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/{chunk-MQC7EE6J.js → chunk-MU66ORJN.js} +17 -2
- package/dist/chunk-MU66ORJN.js.map +1 -0
- package/dist/index.cjs +113 -88
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -3
- package/dist/index.d.ts +4 -3
- package/dist/index.js +99 -89
- package/dist/index.js.map +1 -1
- package/dist/services/index.cjs +15 -0
- package/dist/services/index.cjs.map +1 -1
- package/dist/services/index.d.cts +4 -3
- package/dist/services/index.d.ts +4 -3
- package/dist/services/index.js +1 -1
- package/dist/{types-BqFODW6R.d.cts → types-CN0_FZew.d.cts} +16 -1
- package/dist/{types-B8RFcTu9.d.ts → types-DEyr_e0e.d.ts} +16 -1
- package/package.json +1 -1
- package/dist/chunk-MQC7EE6J.js.map +0 -1
|
@@ -55,6 +55,14 @@ var MEMBER_WALLET_ACCOUNT_QUERY = gql`
|
|
|
55
55
|
}
|
|
56
56
|
}
|
|
57
57
|
`;
|
|
58
|
+
var MEMBER_LEVEL_HISTORY_QUERY = gql`
|
|
59
|
+
query MemberLevelHistory {
|
|
60
|
+
self {
|
|
61
|
+
id
|
|
62
|
+
memberLevelHistory
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
`;
|
|
58
66
|
var POINTS_WALLET_QUERY = gql`
|
|
59
67
|
query PointsWallet {
|
|
60
68
|
pointsWallet {
|
|
@@ -2723,6 +2731,7 @@ var REFERRAL_FRAGMENT = gql`
|
|
|
2723
2731
|
id
|
|
2724
2732
|
name
|
|
2725
2733
|
realName
|
|
2734
|
+
mobileNumber
|
|
2726
2735
|
}
|
|
2727
2736
|
level
|
|
2728
2737
|
turnover
|
|
@@ -5592,6 +5601,12 @@ var WalletService = class {
|
|
|
5592
5601
|
);
|
|
5593
5602
|
return res.ok ? { ok: res.ok, data: res.data.self } : res;
|
|
5594
5603
|
}
|
|
5604
|
+
async memberLevelHistory() {
|
|
5605
|
+
const res = await this.client.request(
|
|
5606
|
+
MEMBER_LEVEL_HISTORY_QUERY
|
|
5607
|
+
);
|
|
5608
|
+
return res.ok ? { ok: res.ok, data: res.data.self } : res;
|
|
5609
|
+
}
|
|
5595
5610
|
async deposit(variables) {
|
|
5596
5611
|
const res = await this.client.request(
|
|
5597
5612
|
DEPOSIT_QUERY,
|
|
@@ -6457,5 +6472,5 @@ var ExtensionService = class {
|
|
|
6457
6472
|
};
|
|
6458
6473
|
|
|
6459
6474
|
export { AccountService, AuthService, CmsPortalService, ExtensionService, FileService, GameService, PortalService, ReportService, TriggerService, WalletService, getFingerPrint };
|
|
6460
|
-
//# sourceMappingURL=chunk-
|
|
6461
|
-
//# sourceMappingURL=chunk-
|
|
6475
|
+
//# sourceMappingURL=chunk-MU66ORJN.js.map
|
|
6476
|
+
//# sourceMappingURL=chunk-MU66ORJN.js.map
|