@authing/react-ui-components 3.1.16-rc.6 → 3.1.17-rc.10

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 CHANGED
@@ -1764,6 +1764,12 @@ declare module '@authing/react-ui-components/components/IdentityBinding/business
1764
1764
  account: string;
1765
1765
  password: string;
1766
1766
  }
1767
+ export enum IdentityBindingAction {
1768
+ CreateUser = "create-federation-account",
1769
+ BindByPassword = "bind-identity-by-password",
1770
+ BindByPhoneCode = "bind-identity-by-phone-code",
1771
+ BindByEmailCode = "bind-identity-by-email-code"
1772
+ }
1767
1773
  export const PhoneCode: (params: PhoneCodeParams) => Promise<import("@authing/react-ui-components/components/_utils/http").AuthingGuardResponse<any>>;
1768
1774
  export const EmailCode: (params: EmailCodeParams) => Promise<import("@authing/react-ui-components/components/_utils/http").AuthingGuardResponse<any>>;
1769
1775
  export const Password: (params: PasswordParams) => Promise<import("@authing/react-ui-components/components/_utils/http").AuthingGuardResponse<any>>;
@@ -2869,6 +2875,7 @@ declare module '@authing/react-ui-components/components/_utils/config/index' {
2869
2875
  socialConnectionsBtnShape?: "default" | "button" | "icon" | undefined;
2870
2876
  enterpriseConnections?: string[] | undefined;
2871
2877
  qrCodeScanOptions?: {
2878
+ currentDocument?: Document | undefined;
2872
2879
  extIdpConnId?: string | undefined;
2873
2880
  autoExchangeUserInfo?: boolean | undefined;
2874
2881
  size?: {
@@ -3010,6 +3017,13 @@ declare module '@authing/react-ui-components/components/_utils/facePlugin/interf
3010
3017
  nets: any;
3011
3018
  }
3012
3019
 
3020
+ }
3021
+ declare module '@authing/react-ui-components/components/_utils/flowHandleStorage' {
3022
+ export const getFlowHandle: () => string | undefined;
3023
+ export const useFlowHandle: () => string | undefined;
3024
+ export const updateFlowHandle: (flowHandle: string) => void;
3025
+ export const useUpdateFlowHandle: (flowHandle: string) => void;
3026
+
3013
3027
  }
3014
3028
  declare module '@authing/react-ui-components/components/_utils/guardDocument' {
3015
3029
  export const getGuardDocument: () => Document;
@@ -3116,6 +3130,7 @@ declare module '@authing/react-ui-components/components/_utils/http' {
3116
3130
  data?: T;
3117
3131
  messages?: string;
3118
3132
  message?: string;
3133
+ flowHandle?: string;
3119
3134
  }
3120
3135
  export interface AuthingGuardResponse<T = any> extends AuthingResponse<T> {
3121
3136
  onGuardHandling?: () => CodeAction;
@@ -3174,7 +3189,13 @@ declare module '@authing/react-ui-components/components/_utils/index' {
3174
3189
  export const isQQBrowser: () => boolean | null;
3175
3190
  export const isQQBuiltInBrowser: () => boolean | null;
3176
3191
  export const isWeWorkBuiltInBrowser: () => boolean | null;
3177
- export const isSpecialBrowser: () => boolean | null;
3192
+ export const isEdgeBrowser: () => boolean;
3193
+ export const isWeiboBrowser: () => boolean | null;
3194
+ export const isAlipayBrowser: () => boolean | null;
3195
+ export const isBaiduBrowser: () => boolean | null;
3196
+ export const isWeComeBrowser: () => boolean;
3197
+ export const isMobile: () => RegExpMatchArray | null;
3198
+ export const isSpecialBrowser: () => boolean;
3178
3199
  export const assembledAppHost: (identifier: string, host: string) => string;
3179
3200
  export const assembledRequestHost: (requestHostname: string, configHost: string) => string;
3180
3201
  export enum PasswordStrength {
@@ -3391,7 +3412,7 @@ declare module '@authing/react-ui-components/components/version/index' {
3391
3412
 
3392
3413
  }
3393
3414
  declare module '@authing/react-ui-components/components/version/version' {
3394
- const _default: "3.1.16-rc.6";
3415
+ const _default: "3.1.17-rc.10";
3395
3416
  export default _default;
3396
3417
 
3397
3418
  }