@opexa/portal-sdk 0.40.4 → 0.41.0
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 +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -232,7 +232,7 @@ interface AchievementPointsHistoryRecordQueryVariables {
|
|
|
232
232
|
type?: EnumFilterField<AchievementType$1>;
|
|
233
233
|
};
|
|
234
234
|
}
|
|
235
|
-
type MemberAccountStatus = 'ACTIVE' | 'DISABLED' | 'BLACKLISTED' | 'SUSPENDED';
|
|
235
|
+
type MemberAccountStatus = 'ACTIVE' | 'DISABLED' | 'BLACKLISTED' | 'SUSPENDED' | 'VERIFICATION_LOCKED';
|
|
236
236
|
type MemberAccountVerificationStatus = 'UNVERIFIED' | 'PENDING' | 'VERIFIED';
|
|
237
237
|
type MemberVerificationStatus = 'PENDING' | 'APPROVED' | 'REJECTED' | 'VERIFIED' | 'UNVERIFIED';
|
|
238
238
|
type RegisterMemberAccountError = 'AccountNameNotAvailableError' | 'InvalidPlatformError' | 'InvalidReCAPTCHAResponseError' | 'InvalidSMSVerificationCodeError' | 'MinimumAgeRequirementError' | 'MobileNumberNotAvailableError' | 'ReCAPTCHAVerificationFailedError';
|
package/dist/index.d.ts
CHANGED
|
@@ -232,7 +232,7 @@ interface AchievementPointsHistoryRecordQueryVariables {
|
|
|
232
232
|
type?: EnumFilterField<AchievementType$1>;
|
|
233
233
|
};
|
|
234
234
|
}
|
|
235
|
-
type MemberAccountStatus = 'ACTIVE' | 'DISABLED' | 'BLACKLISTED' | 'SUSPENDED';
|
|
235
|
+
type MemberAccountStatus = 'ACTIVE' | 'DISABLED' | 'BLACKLISTED' | 'SUSPENDED' | 'VERIFICATION_LOCKED';
|
|
236
236
|
type MemberAccountVerificationStatus = 'UNVERIFIED' | 'PENDING' | 'VERIFIED';
|
|
237
237
|
type MemberVerificationStatus = 'PENDING' | 'APPROVED' | 'REJECTED' | 'VERIFIED' | 'UNVERIFIED';
|
|
238
238
|
type RegisterMemberAccountError = 'AccountNameNotAvailableError' | 'InvalidPlatformError' | 'InvalidReCAPTCHAResponseError' | 'InvalidSMSVerificationCodeError' | 'MinimumAgeRequirementError' | 'MobileNumberNotAvailableError' | 'ReCAPTCHAVerificationFailedError';
|
package/dist/index.js
CHANGED
|
@@ -3202,7 +3202,7 @@ var AuthService = class {
|
|
|
3202
3202
|
const headers = new Headers(this.headers);
|
|
3203
3203
|
headers.append("Authorization", `Bearer ${accessToken}`);
|
|
3204
3204
|
try {
|
|
3205
|
-
const res = await fetch(`${this.url}/token`, {
|
|
3205
|
+
const res = await fetch(`${this.url}/token?ttl=30d`, {
|
|
3206
3206
|
method: "POST",
|
|
3207
3207
|
headers
|
|
3208
3208
|
});
|