@authing/guard-shim-react 4.5.22 → 4.5.23
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.js +2465 -2313
- package/dist/typings/src/ChangeLanguage/index.d.ts +2 -2
- package/dist/typings/src/CompleteInfo/businessRequest.d.ts +1 -2
- package/dist/typings/src/CompleteInfo/interface.d.ts +1 -1
- package/dist/typings/src/Guard/GuardModule/stateMachine.d.ts +1 -1
- package/dist/typings/src/Guard/authClient.d.ts +6 -4
- package/dist/typings/src/Guard/core/hooks/useMultipleAccounts.d.ts +21 -21
- package/dist/typings/src/Guard/module.d.ts +24 -24
- package/dist/typings/src/Login/core/withAuthingOtpPush/types.d.ts +3 -3
- package/dist/typings/src/MFA/businessRequest.d.ts +1 -1
- package/dist/typings/src/MFA/core/passkey.d.ts +1 -1
- package/dist/typings/src/Qrcode/UiQrCode.d.ts +1 -1
- package/dist/typings/src/Qrcode/WorkQrCode.d.ts +1 -1
- package/dist/typings/src/Qrcode/hooks/useImage.d.ts +1 -1
- package/dist/typings/src/Qrcode/hooks/usePreQrCode.d.ts +2 -2
- package/dist/typings/src/Qrcode/index.d.ts +2 -2
- package/dist/typings/src/SelfUnlock/core/selfUnlock.d.ts +1 -1
- package/dist/typings/src/TenantPortalSelect/interface.d.ts +1 -1
- package/dist/typings/src/Type/application.d.ts +14 -14
- package/dist/typings/src/ValidatorRules/index.d.ts +1 -1
- package/dist/typings/src/_utils/http.d.ts +2 -2
- package/dist/typings/src/_utils/index.d.ts +1 -1
- package/dist/typings/src/_utils/locales/index.d.ts +0 -1
- package/package.json +1 -1
|
@@ -4,6 +4,6 @@ export declare const LngTextMapping: Record<Lang, {
|
|
|
4
4
|
label: string;
|
|
5
5
|
}>;
|
|
6
6
|
export declare const ChangeLanguage: (props: {
|
|
7
|
-
onLangChange?: (lang: Lang) => void;
|
|
8
|
-
langRange?: Lang[];
|
|
7
|
+
onLangChange?: ((lang: Lang) => void) | undefined;
|
|
8
|
+
langRange?: Lang[] | undefined;
|
|
9
9
|
}) => JSX.Element | null;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { User } from 'authing-js-sdk';
|
|
2
1
|
import { CompleteInfoRequest, RegisterCompleteInfoInitData } from './interface';
|
|
3
2
|
export declare enum CompleteInfoAuthFlowAction {
|
|
4
3
|
Complete = "complete-completion",
|
|
@@ -6,4 +5,4 @@ export declare enum CompleteInfoAuthFlowAction {
|
|
|
6
5
|
}
|
|
7
6
|
export declare const authFlow: (action: CompleteInfoAuthFlowAction, data?: CompleteInfoRequest) => Promise<import("../_utils/http").AuthingGuardResponse<any>>;
|
|
8
7
|
export declare const registerSkipMethod: (fnName: RegisterCompleteInfoInitData['businessRequestName'] | string, content: any) => Promise<import("../_utils/http").AuthingGuardResponse<any>>;
|
|
9
|
-
export declare const registerRequest: (action: CompleteInfoAuthFlowAction, registerFnName: RegisterCompleteInfoInitData['businessRequestName'], registerContent: any, registerProfile?: any) => Promise<import("../_utils/http").AuthingGuardResponse<any> |
|
|
8
|
+
export declare const registerRequest: (action: CompleteInfoAuthFlowAction, registerFnName: RegisterCompleteInfoInitData['businessRequestName'], registerContent: any, registerProfile?: any) => Promise<import("../_utils/http").AuthingGuardResponse<any> | undefined>;
|
|
@@ -21,7 +21,7 @@ export interface GuardCompleteInfoViewProps extends GuardCompleteInfoProps {
|
|
|
21
21
|
initData: any;
|
|
22
22
|
onLogin?: any;
|
|
23
23
|
}
|
|
24
|
-
export type ExtendsFieldType = 'user' | 'internal';
|
|
24
|
+
export declare type ExtendsFieldType = 'user' | 'internal';
|
|
25
25
|
export interface ExtendsField {
|
|
26
26
|
type: ExtendsFieldType;
|
|
27
27
|
name: string;
|
|
@@ -14,7 +14,7 @@ export interface StateMachineLog {
|
|
|
14
14
|
date: number;
|
|
15
15
|
dataSource: ModuleState;
|
|
16
16
|
}
|
|
17
|
-
export type ChangeModuleEvent = (nextModule: GuardModuleType, initData?: any) => void;
|
|
17
|
+
export declare type ChangeModuleEvent = (nextModule: GuardModuleType, initData?: any) => void;
|
|
18
18
|
export declare class GuardStateMachine {
|
|
19
19
|
private order;
|
|
20
20
|
private config;
|
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
import { AuthenticationClient } from 'authing-js-sdk';
|
|
2
2
|
import { GuardLocalConfig } from './config';
|
|
3
|
+
declare let authClient: AuthenticationClient;
|
|
3
4
|
export declare const initGuardAuthClient: (config: GuardLocalConfig, appId: string, tenantId?: string) => AuthenticationClient;
|
|
4
5
|
export declare const useInitGuardAuthClient: (props: {
|
|
5
|
-
config?: GuardLocalConfig;
|
|
6
|
-
appId?: string;
|
|
7
|
-
authClient?: AuthenticationClient;
|
|
6
|
+
config?: GuardLocalConfig | undefined;
|
|
7
|
+
appId?: string | undefined;
|
|
8
|
+
authClient?: AuthenticationClient | undefined;
|
|
8
9
|
setError?: any;
|
|
9
|
-
tenantId?: string;
|
|
10
|
+
tenantId?: string | undefined;
|
|
10
11
|
}) => AuthenticationClient | undefined;
|
|
11
12
|
export declare const getGuardAuthClient: () => AuthenticationClient;
|
|
12
13
|
export declare const useGuardAuthClient: () => AuthenticationClient;
|
|
14
|
+
export {};
|
|
@@ -13,7 +13,7 @@ export declare const QR_CODE_WAY: LoginWay[];
|
|
|
13
13
|
* 登录时所有支持的登录列表(前端定义列表)
|
|
14
14
|
* 这里稍微有点乱 因为Login中的登录方式和这里的不匹配,暂时放在了一起
|
|
15
15
|
*/
|
|
16
|
-
export type LoginWay = 'email' | 'phone' | 'password' | 'phone-code' | 'email-code' | 'social' | 'wechat-miniprogram-qrcode' | 'wechatmp-qrcode' | 'app-qrcode' | 'zjzwfw-qrcode' | 'ad' | 'ldap' | 'ldap-password' | 'ldap-email' | 'ldap-phone' | 'authing-otp-push';
|
|
16
|
+
export declare type LoginWay = 'email' | 'phone' | 'password' | 'phone-code' | 'email-code' | 'social' | 'wechat-miniprogram-qrcode' | 'wechatmp-qrcode' | 'app-qrcode' | 'zjzwfw-qrcode' | 'ad' | 'ldap' | 'ldap-password' | 'ldap-email' | 'ldap-phone' | 'authing-otp-push';
|
|
17
17
|
/**
|
|
18
18
|
* when: 多账号页面跳转进入登录页面
|
|
19
19
|
* 携带的回填数据信息
|
|
@@ -27,7 +27,7 @@ export interface BackFillMultipleState extends Omit<User, 'id' | 'name' | 'nickn
|
|
|
27
27
|
/**
|
|
28
28
|
* Store instance
|
|
29
29
|
*/
|
|
30
|
-
export type StoreInstance = ReturnType<MultipleAccount['getStore']>;
|
|
30
|
+
export declare type StoreInstance = ReturnType<MultipleAccount['getStore']>;
|
|
31
31
|
/**
|
|
32
32
|
* 当前 userId 对应的类型
|
|
33
33
|
*/
|
|
@@ -248,18 +248,18 @@ declare class MultipleAccount {
|
|
|
248
248
|
}) => void;
|
|
249
249
|
setUserInfo: (user: Omit<User & {
|
|
250
250
|
id: string;
|
|
251
|
-
loginAccount?: string;
|
|
252
|
-
usertype?: string;
|
|
253
|
-
},
|
|
251
|
+
loginAccount?: string | undefined;
|
|
252
|
+
usertype?: string | undefined;
|
|
253
|
+
}, "way" | "tab" | "phoneCountryCode">) => void;
|
|
254
254
|
setLoginWayByHttpData: (account: string, data: {
|
|
255
|
-
username?: string;
|
|
256
|
-
phone?: string;
|
|
257
|
-
email?: string;
|
|
255
|
+
username?: string | undefined;
|
|
256
|
+
phone?: string | undefined;
|
|
257
|
+
email?: string | undefined;
|
|
258
258
|
}) => void;
|
|
259
259
|
setLoginWayByLDAPData: (account: string, data: {
|
|
260
|
-
name?: string;
|
|
261
|
-
phone?: string;
|
|
262
|
-
email?: string;
|
|
260
|
+
name?: string | undefined;
|
|
261
|
+
phone?: string | undefined;
|
|
262
|
+
email?: string | undefined;
|
|
263
263
|
}) => void;
|
|
264
264
|
getMemoUser: (excludeWays?: LoginWay[]) => SelectOptions[];
|
|
265
265
|
getMemoSingleUser: (id: string) => {
|
|
@@ -278,7 +278,7 @@ declare class MultipleAccount {
|
|
|
278
278
|
* Finally Config 类型过滤
|
|
279
279
|
*/
|
|
280
280
|
declare const useMultipleAccounts: ({ appId, finallyConfig }: {
|
|
281
|
-
appId?: string;
|
|
281
|
+
appId?: string | undefined;
|
|
282
282
|
finallyConfig?: any;
|
|
283
283
|
}) => {
|
|
284
284
|
instance: {
|
|
@@ -292,18 +292,18 @@ declare const useMultipleAccounts: ({ appId, finallyConfig }: {
|
|
|
292
292
|
}) => void;
|
|
293
293
|
setUserInfo: (user: Omit<User & {
|
|
294
294
|
id: string;
|
|
295
|
-
loginAccount?: string;
|
|
296
|
-
usertype?: string;
|
|
297
|
-
},
|
|
295
|
+
loginAccount?: string | undefined;
|
|
296
|
+
usertype?: string | undefined;
|
|
297
|
+
}, "way" | "tab" | "phoneCountryCode">) => void;
|
|
298
298
|
setLoginWayByHttpData: (account: string, data: {
|
|
299
|
-
username?: string;
|
|
300
|
-
phone?: string;
|
|
301
|
-
email?: string;
|
|
299
|
+
username?: string | undefined;
|
|
300
|
+
phone?: string | undefined;
|
|
301
|
+
email?: string | undefined;
|
|
302
302
|
}) => void;
|
|
303
303
|
setLoginWayByLDAPData: (account: string, data: {
|
|
304
|
-
name?: string;
|
|
305
|
-
phone?: string;
|
|
306
|
-
email?: string;
|
|
304
|
+
name?: string | undefined;
|
|
305
|
+
phone?: string | undefined;
|
|
306
|
+
email?: string | undefined;
|
|
307
307
|
}) => void;
|
|
308
308
|
getMemoUser: (excludeWays?: LoginWay[]) => SelectOptions[];
|
|
309
309
|
getMemoSingleUser: (id: string) => {
|
|
@@ -1,30 +1,30 @@
|
|
|
1
1
|
export declare enum GuardModuleType {
|
|
2
|
-
ERROR = "error"
|
|
3
|
-
LOGIN = "login"
|
|
4
|
-
REGISTER = "register"
|
|
5
|
-
MFA = "mfa"
|
|
6
|
-
FORGET_PWD = "forgetPassword"
|
|
7
|
-
FORCED_PASSWORD_RESET = "forcedPasswordReset"
|
|
8
|
-
NOTICE_PASSWORD_RESET = "noticePasswordReset"
|
|
9
|
-
FIRST_LOGIN_PASSWORD = "firstLoginPassword"
|
|
10
|
-
UNSAFE_PASSWORD_RESET = "unsafePasswordReset"
|
|
11
|
-
DOWNLOAD_AT = "downloadAT"
|
|
12
|
-
BIND_TOTP = "bindTotp"
|
|
13
|
-
ANY_QUESTIONS = "anyQuestions"
|
|
14
|
-
LOGIN_COMPLETE_INFO = "loginCompleteInfo"
|
|
15
|
-
REGISTER_PASSWORD = "registerPassword"
|
|
16
|
-
REGISTER_COMPLETE_INFO = "registerCompleteInfo"
|
|
17
|
-
RECOVERY_CODE = "recoveryCode"
|
|
18
|
-
SUBMIT_SUCCESS = "submitSuccess"
|
|
19
|
-
IDENTITY_BINDING_ASK = "identityBindingAsk"
|
|
20
|
-
IDENTITY_BINDING = "identityBinding"
|
|
21
|
-
IDENTITY_BINDING_NO_ASK = "identityBindingNoAsk"
|
|
22
|
-
SELF_UNLOCK = "selfUnlock"
|
|
23
|
-
FLOW_SELECT_ACCOUNT = "flowSelectAccount"
|
|
2
|
+
ERROR = "error",
|
|
3
|
+
LOGIN = "login",
|
|
4
|
+
REGISTER = "register",
|
|
5
|
+
MFA = "mfa",
|
|
6
|
+
FORGET_PWD = "forgetPassword",
|
|
7
|
+
FORCED_PASSWORD_RESET = "forcedPasswordReset",
|
|
8
|
+
NOTICE_PASSWORD_RESET = "noticePasswordReset",
|
|
9
|
+
FIRST_LOGIN_PASSWORD = "firstLoginPassword",
|
|
10
|
+
UNSAFE_PASSWORD_RESET = "unsafePasswordReset",
|
|
11
|
+
DOWNLOAD_AT = "downloadAT",
|
|
12
|
+
BIND_TOTP = "bindTotp",
|
|
13
|
+
ANY_QUESTIONS = "anyQuestions",
|
|
14
|
+
LOGIN_COMPLETE_INFO = "loginCompleteInfo",
|
|
15
|
+
REGISTER_PASSWORD = "registerPassword",
|
|
16
|
+
REGISTER_COMPLETE_INFO = "registerCompleteInfo",
|
|
17
|
+
RECOVERY_CODE = "recoveryCode",
|
|
18
|
+
SUBMIT_SUCCESS = "submitSuccess",
|
|
19
|
+
IDENTITY_BINDING_ASK = "identityBindingAsk",
|
|
20
|
+
IDENTITY_BINDING = "identityBinding",
|
|
21
|
+
IDENTITY_BINDING_NO_ASK = "identityBindingNoAsk",
|
|
22
|
+
SELF_UNLOCK = "selfUnlock",
|
|
23
|
+
FLOW_SELECT_ACCOUNT = "flowSelectAccount",
|
|
24
24
|
/** 多租户门户选择页 */
|
|
25
25
|
TENANT_PORTAL = "tenant-portal",
|
|
26
|
-
New_SUBMIT_SUCCESS = "newSubmitSuccess"
|
|
27
|
-
SELECT_ACCOUNT_2_LOGIN = "selectAccout2Login"
|
|
26
|
+
New_SUBMIT_SUCCESS = "newSubmitSuccess",
|
|
27
|
+
SELECT_ACCOUNT_2_LOGIN = "selectAccout2Login",
|
|
28
28
|
RESET_ACCOUNT_NAME = "resetAccountName"
|
|
29
29
|
}
|
|
30
30
|
export interface GuardModuleAction {
|
|
@@ -10,7 +10,7 @@ export interface OnLoginProps {
|
|
|
10
10
|
account: string;
|
|
11
11
|
agreementIds?: (string | number)[];
|
|
12
12
|
}
|
|
13
|
-
export type LoginStatus = 'before' | 'pending';
|
|
13
|
+
export declare type LoginStatus = 'before' | 'pending';
|
|
14
14
|
export interface LoginWithAuthingOtpPushProps {
|
|
15
15
|
onLoginSuccess?: any;
|
|
16
16
|
multipleInstance?: StoreInstance;
|
|
@@ -21,9 +21,9 @@ export interface PushLoginGudeModalProps {
|
|
|
21
21
|
visible: boolean;
|
|
22
22
|
onClose: () => void;
|
|
23
23
|
}
|
|
24
|
-
export type Selector = 'howUsePushLogin' | 'howBindClient' | 'howGetAppLoginUrl';
|
|
24
|
+
export declare type Selector = 'howUsePushLogin' | 'howBindClient' | 'howGetAppLoginUrl';
|
|
25
25
|
export interface SelectorOption {
|
|
26
26
|
value: Selector;
|
|
27
27
|
label: string;
|
|
28
28
|
}
|
|
29
|
-
export type SelectorOptions = SelectorOption[];
|
|
29
|
+
export declare type SelectorOptions = SelectorOption[];
|
|
@@ -35,7 +35,7 @@ interface AssociateFaceContent {
|
|
|
35
35
|
isExternalPhoto?: boolean;
|
|
36
36
|
mfaToken?: string;
|
|
37
37
|
}
|
|
38
|
-
type BindPasskeyContent = PublicKeyCredentialWithAttestationJSON;
|
|
38
|
+
declare type BindPasskeyContent = PublicKeyCredentialWithAttestationJSON;
|
|
39
39
|
interface VerifyPasskeyContent {
|
|
40
40
|
credential: PublicKeyCredentialWithAssertionJSON;
|
|
41
41
|
ticket: string;
|
|
@@ -7,7 +7,7 @@ interface VerifyPasskeyProps {
|
|
|
7
7
|
mfaToken: string;
|
|
8
8
|
mfaLogin: (code: any, data: any, message?: string) => void;
|
|
9
9
|
}
|
|
10
|
-
export type MFAPasskeyProps = BindPasskeyProps & VerifyPasskeyProps & {
|
|
10
|
+
export declare type MFAPasskeyProps = BindPasskeyProps & VerifyPasskeyProps & {
|
|
11
11
|
passkeyEnabled: boolean;
|
|
12
12
|
};
|
|
13
13
|
export declare const MFAPasskey: React.FC<MFAPasskeyProps>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { React } from 'shim-react';
|
|
2
2
|
import './index.less';
|
|
3
3
|
import { CodeStatusDescriptions } from './WorkQrCode';
|
|
4
|
-
export type CodeStatus = 'loading' | 'ready' | 'already' | 'success' | 'error' | 'expired' | 'cancel' | 'MFA';
|
|
4
|
+
export declare type CodeStatus = 'loading' | 'ready' | 'already' | 'success' | 'error' | 'expired' | 'cancel' | 'MFA';
|
|
5
5
|
export declare const prefix = "refactor";
|
|
6
6
|
export interface UiQrProps {
|
|
7
7
|
/**
|
|
@@ -4,7 +4,7 @@ import { CodeStatus, UiQrProps } from './UiQrCode';
|
|
|
4
4
|
/**
|
|
5
5
|
* 二维码不同状态下的底部描述文字
|
|
6
6
|
*/
|
|
7
|
-
export type CodeStatusDescriptions = Partial<Record<Exclude<CodeStatus, 'loading'>, React.ReactNode | ((referQrCode?: () => void) => React.ReactNode)>>;
|
|
7
|
+
export declare type CodeStatusDescriptions = Partial<Record<Exclude<CodeStatus, 'loading'>, React.ReactNode | ((referQrCode?: () => void) => React.ReactNode)>>;
|
|
8
8
|
export interface WorkQrCodeRef {
|
|
9
9
|
referQrCode: () => Promise<{
|
|
10
10
|
random: string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { React } from 'shim-react';
|
|
2
2
|
import { CodeStatus } from '../UiQrCode';
|
|
3
|
-
export type ReducerType = 'change' | 'changeStatus' | 'changeDesc';
|
|
4
|
-
export type RootState = {
|
|
3
|
+
export declare type ReducerType = 'change' | 'changeStatus' | 'changeDesc';
|
|
4
|
+
export declare type RootState = {
|
|
5
5
|
/**
|
|
6
6
|
* 状态
|
|
7
7
|
*/
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { UiQrCode, LinkQrcode } from './UiQrCode';
|
|
2
2
|
import { WorkQrCode, WorkGeneQrCode } from './WorkQrCode';
|
|
3
|
-
type IQrCode = typeof WorkQrCode & {
|
|
3
|
+
declare type IQrCode = typeof WorkQrCode & {
|
|
4
4
|
UI: typeof UiQrCode;
|
|
5
5
|
};
|
|
6
|
-
type IGeneQrCode = typeof WorkGeneQrCode & {
|
|
6
|
+
declare type IGeneQrCode = typeof WorkGeneQrCode & {
|
|
7
7
|
UI: typeof LinkQrcode;
|
|
8
8
|
};
|
|
9
9
|
declare const QrCode: IQrCode;
|
|
@@ -31,7 +31,7 @@ export interface TenantPortalEvents extends IG2Events {
|
|
|
31
31
|
/** 租户门户选择回调 */
|
|
32
32
|
onTenantSelect?: (data?: TenantPortalSelectType) => void;
|
|
33
33
|
}
|
|
34
|
-
export type TenantView = 'default' | 'join' | 'create';
|
|
34
|
+
export declare type TenantView = 'default' | 'join' | 'create';
|
|
35
35
|
export interface TenantButtonProps {
|
|
36
36
|
className?: string;
|
|
37
37
|
onClick?: () => void;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export type Lang = 'zh-CN' | 'en-US' | 'zh-TW' | 'ja-JP';
|
|
1
|
+
export declare type Lang = 'zh-CN' | 'en-US' | 'zh-TW' | 'ja-JP';
|
|
2
2
|
import { MFAType } from 'src/MFA/interface';
|
|
3
3
|
import { PasswordStrength } from '../_utils';
|
|
4
4
|
export * from 'authing-js-sdk';
|
|
@@ -7,14 +7,14 @@ export declare enum LoginMethods {
|
|
|
7
7
|
AppQr = "app-qrcode",
|
|
8
8
|
Password = "password",
|
|
9
9
|
PhoneCode = "phone-code",
|
|
10
|
-
EmailCode = "email-code"
|
|
11
|
-
WxMinQr = "wechat-miniprogram-qrcode"
|
|
12
|
-
AD = "ad"
|
|
13
|
-
WechatMpQrcode = "wechatmp-qrcode"
|
|
14
|
-
AuthingOtpPush = "authing-otp-push"
|
|
15
|
-
WechatworkCorpQrconnect = "wechatwork-corp-qrconnect"
|
|
16
|
-
DingTalkQrcode = "dingtalk-qrcode"
|
|
17
|
-
Passkey = "passkey"
|
|
10
|
+
EmailCode = "email-code",
|
|
11
|
+
WxMinQr = "wechat-miniprogram-qrcode",
|
|
12
|
+
AD = "ad",
|
|
13
|
+
WechatMpQrcode = "wechatmp-qrcode",
|
|
14
|
+
AuthingOtpPush = "authing-otp-push",
|
|
15
|
+
WechatworkCorpQrconnect = "wechatwork-corp-qrconnect",
|
|
16
|
+
DingTalkQrcode = "dingtalk-qrcode",
|
|
17
|
+
Passkey = "passkey",
|
|
18
18
|
ZJZWFWQrcode = "zjzwfw-qrcode"
|
|
19
19
|
}
|
|
20
20
|
export declare enum OIDCConnectionMode {
|
|
@@ -130,7 +130,7 @@ export interface QrCodeItem {
|
|
|
130
130
|
authorizationUrl?: string;
|
|
131
131
|
};
|
|
132
132
|
}
|
|
133
|
-
export type QrcodeTabsSettings = Record<LoginMethods, Array<QrCodeItem>>;
|
|
133
|
+
export declare type QrcodeTabsSettings = Record<LoginMethods, Array<QrCodeItem>>;
|
|
134
134
|
export interface OidcClientMetadata {
|
|
135
135
|
grant_types: string[];
|
|
136
136
|
client_id: string;
|
|
@@ -165,7 +165,7 @@ export interface UserExtendsField {
|
|
|
165
165
|
required: boolean;
|
|
166
166
|
validateRules: any[];
|
|
167
167
|
}
|
|
168
|
-
export type ExtendsField = InternalExtendsField | UserExtendsField;
|
|
168
|
+
export declare type ExtendsField = InternalExtendsField | UserExtendsField;
|
|
169
169
|
export interface ApplicationPasswordTabConfig {
|
|
170
170
|
enabledLoginMethods?: PasswordLoginMethods[];
|
|
171
171
|
validRegisterMethods?: string[];
|
|
@@ -183,9 +183,9 @@ export interface Agreement {
|
|
|
183
183
|
lang: Lang;
|
|
184
184
|
availableAt?: number;
|
|
185
185
|
}
|
|
186
|
-
export type PasswordLoginMethods = 'username-password' | 'email-password' | 'phone-password';
|
|
187
|
-
export type VerifyLoginMethods = 'email-code' | 'phone-code';
|
|
188
|
-
export type ComplateFiledsPlace = 'register' | 'login';
|
|
186
|
+
export declare type PasswordLoginMethods = 'username-password' | 'email-password' | 'phone-password';
|
|
187
|
+
export declare type VerifyLoginMethods = 'email-code' | 'phone-code';
|
|
188
|
+
export declare type ComplateFiledsPlace = 'register' | 'login';
|
|
189
189
|
export interface TabFieldsI18nItem {
|
|
190
190
|
key: string;
|
|
191
191
|
label: string;
|
|
@@ -21,7 +21,7 @@ export interface ValidatorFormItemMetaProps extends ValidatorFormItemProps {
|
|
|
21
21
|
export interface ICheckProps {
|
|
22
22
|
check: (values: any) => void;
|
|
23
23
|
}
|
|
24
|
-
type InternalFormItemType = typeof Form.Item;
|
|
24
|
+
declare type InternalFormItemType = typeof Form.Item;
|
|
25
25
|
interface FormItemInterface extends InternalFormItemType {
|
|
26
26
|
Password: typeof PasswordFormItem;
|
|
27
27
|
Email: typeof EmailFormItem;
|
|
@@ -5,7 +5,7 @@ export declare const requestClient: {
|
|
|
5
5
|
get<T>(path: string, query?: Record<string, any>, init?: AxiosRequestConfig): Promise<AuthingResponse<T>>;
|
|
6
6
|
post<T_1>(path: string, data: any, config?: {
|
|
7
7
|
headers: any;
|
|
8
|
-
}): Promise<AuthingResponse<T_1>>;
|
|
8
|
+
} | undefined): Promise<AuthingResponse<T_1>>;
|
|
9
9
|
postForm<T_2>(path: string, formData: any, config?: {
|
|
10
10
|
headers: any;
|
|
11
11
|
}): Promise<AuthingResponse<T_2>>;
|
|
@@ -19,7 +19,7 @@ export declare const requestClient: {
|
|
|
19
19
|
setTenantId(tenantId: string): void;
|
|
20
20
|
};
|
|
21
21
|
export interface AuthingResponse<T = any> {
|
|
22
|
-
code
|
|
22
|
+
code: number;
|
|
23
23
|
statusCode?: number;
|
|
24
24
|
apiCode?: number;
|
|
25
25
|
data?: T;
|
|
@@ -15,7 +15,7 @@ export declare const validate: (type: keyof typeof VALIDATE_PATTERN, val: string
|
|
|
15
15
|
export declare const getRequiredRules: (msg: string) => Rule[];
|
|
16
16
|
export declare const fieldRequiredRule: (fieldRequiredRule: string, fieldRequiredRuleMessage?: string) => Rule[];
|
|
17
17
|
export declare function getDeviceName(): string | null | undefined;
|
|
18
|
-
export type STYLE_RECORD_KEY = 'appConfig' | 'userConfig';
|
|
18
|
+
export declare type STYLE_RECORD_KEY = 'appConfig' | 'userConfig';
|
|
19
19
|
export declare const insertStyles: (styles: string | any, recordKey?: STYLE_RECORD_KEY) => void;
|
|
20
20
|
export declare const removeStyles: (recordKey: STYLE_RECORD_KEY) => void;
|
|
21
21
|
export declare const getClassnames: (classnames: (string | boolean | undefined)[]) => string;
|
|
@@ -6,5 +6,4 @@ export interface InitGuardI18nOptions {
|
|
|
6
6
|
}
|
|
7
7
|
export declare const fallbackLng: (code?: string) => string[];
|
|
8
8
|
export declare const initGuardI18n: (options: InitGuardI18nOptions, callback: React.Dispatch<React.SetStateAction<boolean>>) => Promise<void>;
|
|
9
|
-
export declare const resolvedLanguage: string;
|
|
10
9
|
export { i18n };
|