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

    Interface ScreenMembersOnMfaWebAuthnPlatformChallenge

    ScreenMembersOnMfaWebAuthnPlatformChallenge

    interface ScreenMembersOnMfaWebAuthnPlatformChallenge {
        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)

    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.

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

    The public key credential request options (specifically the challenge) needed to call navigator.credentials.get(). This is derived from universal_login_context.screen.data.passkey.public_key.

    showRememberDevice: boolean

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