@authing/guard-shim-react18 4.5.43 → 4.5.44-rc.1
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/guard.min.css +1 -1
- package/dist/guard.min.js +128 -124
- package/dist/typings/src/Guard/module.d.ts +2 -1
- package/dist/typings/src/SendCode/SendCodeBtn.d.ts +1 -0
- package/dist/typings/src/ValidityVerify/index.d.ts +2 -0
- package/dist/typings/src/ValidityVerify/interface.d.ts +9 -0
- package/dist/typings/src/_utils/responseManagement/interface.d.ts +2 -1
- package/package.json +1 -1
|
@@ -33,7 +33,8 @@ export declare enum GuardModuleType {
|
|
|
33
33
|
INVITE_EXPIRE = "inviteExpire",// 邀请链接过期
|
|
34
34
|
INVITE_PAGE_EXPIRE = "invitePageExpire",// 页面过期
|
|
35
35
|
INVITE_SUCCESS = "inviteSuccess",// 邀请成功
|
|
36
|
-
RESET_PASSWORD = "resetPassword"
|
|
36
|
+
RESET_PASSWORD = "resetPassword",
|
|
37
|
+
VALIDITYVERIFY = "validityVerify"
|
|
37
38
|
}
|
|
38
39
|
export interface GuardModuleAction {
|
|
39
40
|
action: string;
|
|
@@ -24,6 +24,7 @@ export declare enum ApiCode {
|
|
|
24
24
|
SELECT_ACCOUNT_2_LOGIN = 2930,
|
|
25
25
|
RESET_ACCOUNT_NAME = 1108,// 用户名重复
|
|
26
26
|
INVITE_EXPIRE = 4032,// 链接过期
|
|
27
|
-
INVITE_PAGE_EXPIRE = 4033
|
|
27
|
+
INVITE_PAGE_EXPIRE = 4033,
|
|
28
|
+
EMAIL_NOT_VERIFIED = 2042
|
|
28
29
|
}
|
|
29
30
|
export declare const ChangeModuleApiCodeMapping: Record<string, GuardModuleType>;
|