@auth0/auth0-acul-react - v1.0.0-alpha.2
    Preparing search index...

    Interface ScreenMembersOnResetPasswordMfaWebAuthnRoamingChallenge

    ScreenMembersOnResetPasswordMfaWebAuthnRoamingChallenge

    interface ScreenMembersOnResetPasswordMfaWebAuthnRoamingChallenge {
        name: string;
        captchaImage: string | null;
        captchaSiteKey: string | null;
        captchaProvider: string | null;
        isCaptchaAvailable: boolean;
        data:
            | Record<
                string,
                | string
                | boolean
                | string[]
                | Record<string, string[]>
                | PhonePrefix[]
                | PasskeyCreate,
            >
            | null;
        links: Record<string, string> | null;
        texts: Record<string, string> | null;
        captcha: CaptchaContext | null;
        publicKey:
            | { challenge: string; allowCredentials?: AllowCredential[] }
            | null;
        showRememberDevice: boolean;
    }

    Hierarchy (View Summary)

    • ScreenMembers
      • ScreenMembersOnResetPasswordMfaWebAuthnRoamingChallenge
    Index

    Properties

    name: string
    captchaImage: string | null
    captchaSiteKey: string | null
    captchaProvider: string | null
    isCaptchaAvailable: boolean
    data:
        | Record<
            string,
            | string
            | boolean
            | string[]
            | Record<string, string[]>
            | PhonePrefix[]
            | PasskeyCreate,
        >
        | null

    Screen-specific data, including WebAuthn challenge options and the "show remember device" flag.

    links: Record<string, string> | null
    texts: Record<string, string> | null
    captcha: CaptchaContext | null
    publicKey: { challenge: string; allowCredentials?: AllowCredential[] } | null

    A convenience accessor for screen.data.passkey.public_key. Provides the challenge and related options for navigator.credentials.get().

    showRememberDevice: boolean

    A convenience accessor for screen.data.show_remember_device. Indicates if the "Remember this device" option should be displayed. Defaults to false if not present.