@authing/guard-shim-react18 4.5.47-alpha.1 → 4.5.47-alpha.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.
|
@@ -8,6 +8,7 @@ interface BindPasskeyProps {
|
|
|
8
8
|
interface VerifyPasskeyProps {
|
|
9
9
|
mfaToken: string;
|
|
10
10
|
mfaLogin: (code: any, data: any, message?: string) => void;
|
|
11
|
+
mfaConfigsMap: Map<MFAType, boolean>;
|
|
11
12
|
}
|
|
12
13
|
export type MFAPasskeyProps = BindPasskeyProps & VerifyPasskeyProps & {
|
|
13
14
|
passkeyEnabled: boolean;
|
|
@@ -28,7 +28,10 @@ export declare const useShaking: () => {
|
|
|
28
28
|
* @returns
|
|
29
29
|
*/
|
|
30
30
|
export declare const parsePhone: (isInternationSms: boolean, fieldValue: string, areaCode?: string) => {
|
|
31
|
-
|
|
31
|
+
phoneNumber: string;
|
|
32
|
+
countryCode: undefined;
|
|
33
|
+
} | {
|
|
34
|
+
countryCode: string;
|
|
32
35
|
phoneNumber: string;
|
|
33
36
|
};
|
|
34
37
|
export declare enum SocialConnectionEvent {
|
package/package.json
CHANGED