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

    Interface ScreenMembersOnResetPasswordMfaWebAuthnRoamingChallenge

    ScreenMembersOnResetPasswordMfaWebAuthnRoamingChallenge

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

    Hierarchy (View Summary)

    • ScreenMembers
      • ScreenMembersOnResetPasswordMfaWebAuthnRoamingChallenge
    Index

    Properties

    name: string
    captchaImage: string | null
    captchaSiteKey: string | null
    captchaProvider: string | null
    isCaptchaAvailable: boolean
    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().

    data: { showRememberDevice?: boolean } | null

    Screen-specific data.

    Type Declaration

    • { showRememberDevice?: boolean }
      • OptionalshowRememberDevice?: boolean

        Indicates whether the "Remember this device" checkbox should be displayed.

    • null