@opexa/portal-sdk 0.59.66 → 0.59.68
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-22E7HNRO.js → chunk-6HOHUQZK.js} +8 -12
- package/dist/chunk-6HOHUQZK.js.map +1 -0
- package/dist/index.cjs +9 -10
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/dist/services/index.cjs +6 -10
- package/dist/services/index.cjs.map +1 -1
- package/dist/services/index.d.cts +3 -3
- package/dist/services/index.d.ts +3 -3
- package/dist/services/index.js +1 -1
- package/dist/{types-Blgu5UwG.d.ts → types-BsQwBGLN.d.ts} +6 -0
- package/dist/{types-CU6K5qYs.d.cts → types-C8hcHzlv.d.cts} +6 -0
- package/package.json +1 -1
- package/dist/chunk-22E7HNRO.js.map +0 -1
|
@@ -1769,6 +1769,7 @@ var MEMBER_ACCOUNT_FRAGMENT = gql`
|
|
|
1769
1769
|
validId
|
|
1770
1770
|
mobileNumberVerified
|
|
1771
1771
|
mobileNumberVerificationRequired
|
|
1772
|
+
currentAchievementPoints
|
|
1772
1773
|
currentMonthlyAchievementPoints
|
|
1773
1774
|
achievementPointsLevelUpProgressPercentage
|
|
1774
1775
|
currentUniqueGamesCount
|
|
@@ -1776,6 +1777,8 @@ var MEMBER_ACCOUNT_FRAGMENT = gql`
|
|
|
1776
1777
|
currentBetsCount
|
|
1777
1778
|
currentActiveDaysCount
|
|
1778
1779
|
dateTimeLastLeveledUp
|
|
1780
|
+
qualifiedLevel
|
|
1781
|
+
currentTurnover
|
|
1779
1782
|
currentMonthlyTurnover
|
|
1780
1783
|
turnoverLevelUpProgressPercentage
|
|
1781
1784
|
transactionPassword
|
|
@@ -4576,7 +4579,7 @@ var AuthService = class {
|
|
|
4576
4579
|
return true;
|
|
4577
4580
|
}
|
|
4578
4581
|
}
|
|
4579
|
-
async sendVerificationCode(input
|
|
4582
|
+
async sendVerificationCode(input) {
|
|
4580
4583
|
if (input.channel === "EMAIL")
|
|
4581
4584
|
throw new Error("Email channel is not yet supported");
|
|
4582
4585
|
function getErrorCode(message) {
|
|
@@ -4594,15 +4597,8 @@ var AuthService = class {
|
|
|
4594
4597
|
try {
|
|
4595
4598
|
const res = await fetch(`${this.url}/otps`, {
|
|
4596
4599
|
method: "POST",
|
|
4597
|
-
headers:
|
|
4598
|
-
|
|
4599
|
-
...recaptchaResponse && {
|
|
4600
|
-
"google-recaptcha-response": recaptchaResponse
|
|
4601
|
-
}
|
|
4602
|
-
},
|
|
4603
|
-
body: JSON.stringify({
|
|
4604
|
-
...input
|
|
4605
|
-
})
|
|
4600
|
+
headers: this.headers,
|
|
4601
|
+
body: JSON.stringify(input)
|
|
4606
4602
|
});
|
|
4607
4603
|
if (res.status === 403) {
|
|
4608
4604
|
const data = await res.json();
|
|
@@ -6354,5 +6350,5 @@ var ExtensionService = class {
|
|
|
6354
6350
|
};
|
|
6355
6351
|
|
|
6356
6352
|
export { AccountService, AuthService, CmsPortalService, ExtensionService, FileService, GameService, PortalService, ReportService, TriggerService, WalletService, getFingerPrint };
|
|
6357
|
-
//# sourceMappingURL=chunk-
|
|
6358
|
-
//# sourceMappingURL=chunk-
|
|
6353
|
+
//# sourceMappingURL=chunk-6HOHUQZK.js.map
|
|
6354
|
+
//# sourceMappingURL=chunk-6HOHUQZK.js.map
|