@authing/react-ui-components 3.1.15 → 3.1.16-beta.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/lib/index.d.ts +22 -2
- package/lib/index.min.js +1 -1
- package/package.json +5 -4
- package/LICENSE +0 -21
package/lib/index.d.ts
CHANGED
|
@@ -1739,6 +1739,12 @@ declare module '@authing/react-ui-components/components/IdentityBinding/business
|
|
|
1739
1739
|
account: string;
|
|
1740
1740
|
password: string;
|
|
1741
1741
|
}
|
|
1742
|
+
export enum IdentityBindingAction {
|
|
1743
|
+
CreateUser = "create-federation-account",
|
|
1744
|
+
BindByPassword = "bind-identity-by-password",
|
|
1745
|
+
BindByPhoneCode = "bind-identity-by-phone-code",
|
|
1746
|
+
BindByEmailCode = "bind-identity-by-email-code"
|
|
1747
|
+
}
|
|
1742
1748
|
export const PhoneCode: (params: PhoneCodeParams) => Promise<import("@authing/react-ui-components/components/_utils/http").AuthingGuardResponse<any>>;
|
|
1743
1749
|
export const EmailCode: (params: EmailCodeParams) => Promise<import("@authing/react-ui-components/components/_utils/http").AuthingGuardResponse<any>>;
|
|
1744
1750
|
export const Password: (params: PasswordParams) => Promise<import("@authing/react-ui-components/components/_utils/http").AuthingGuardResponse<any>>;
|
|
@@ -2953,6 +2959,13 @@ declare module '@authing/react-ui-components/components/_utils/facePlugin/interf
|
|
|
2953
2959
|
nets: any;
|
|
2954
2960
|
}
|
|
2955
2961
|
|
|
2962
|
+
}
|
|
2963
|
+
declare module '@authing/react-ui-components/components/_utils/flowHandleStorage' {
|
|
2964
|
+
export const getFlowHandle: () => string | undefined;
|
|
2965
|
+
export const useFlowHandle: () => string | undefined;
|
|
2966
|
+
export const updateFlowHandle: (flowHandle: string) => void;
|
|
2967
|
+
export const useUpdateFlowHandle: (flowHandle: string) => void;
|
|
2968
|
+
|
|
2956
2969
|
}
|
|
2957
2970
|
declare module '@authing/react-ui-components/components/_utils/guardDocument' {
|
|
2958
2971
|
export const getGuardDocument: () => Document;
|
|
@@ -3059,6 +3072,7 @@ declare module '@authing/react-ui-components/components/_utils/http' {
|
|
|
3059
3072
|
data?: T;
|
|
3060
3073
|
messages?: string;
|
|
3061
3074
|
message?: string;
|
|
3075
|
+
flowHandle?: string;
|
|
3062
3076
|
}
|
|
3063
3077
|
export interface AuthingGuardResponse<T = any> extends AuthingResponse<T> {
|
|
3064
3078
|
onGuardHandling?: () => CodeAction;
|
|
@@ -3114,7 +3128,13 @@ declare module '@authing/react-ui-components/components/_utils/index' {
|
|
|
3114
3128
|
export const isXiaomiBrowser: () => boolean | null;
|
|
3115
3129
|
export const isDingtalkBrowser: () => boolean | null;
|
|
3116
3130
|
export const isQQBrowser: () => boolean | null;
|
|
3117
|
-
export const
|
|
3131
|
+
export const isEdgeBrowser: () => boolean;
|
|
3132
|
+
export const isWeiboBrowser: () => boolean | null;
|
|
3133
|
+
export const isAlipayBrowser: () => boolean | null;
|
|
3134
|
+
export const isBaiduBrowser: () => boolean | null;
|
|
3135
|
+
export const isWeComeBrowser: () => boolean;
|
|
3136
|
+
export const isMobile: () => RegExpMatchArray | null;
|
|
3137
|
+
export const isSpecialBrowser: () => boolean;
|
|
3118
3138
|
export const assembledAppHost: (identifier: string, host: string) => string;
|
|
3119
3139
|
export const assembledRequestHost: (requestHostname: string, configHost: string) => string;
|
|
3120
3140
|
export enum PasswordStrength {
|
|
@@ -3331,7 +3351,7 @@ declare module '@authing/react-ui-components/components/version/index' {
|
|
|
3331
3351
|
|
|
3332
3352
|
}
|
|
3333
3353
|
declare module '@authing/react-ui-components/components/version/version' {
|
|
3334
|
-
const _default: "3.1.
|
|
3354
|
+
const _default: "3.1.16-beta.0";
|
|
3335
3355
|
export default _default;
|
|
3336
3356
|
|
|
3337
3357
|
}
|