@auth0/nextjs-auth0 - v4.22.0
    Preparing search index...

    Interface PasskeyCreationOptionsJSON

    JSON-safe WebAuthn credential creation options returned by Auth0 for signup and enrollment flows. Pass directly to navigator.credentials.create(). Binary fields (challenge, user.id, excludeCredentials[].id) are Base64URL-encoded strings.

    interface PasskeyCreationOptionsJSON {
        attestation?: string;
        authenticatorSelection?: {
            authenticatorAttachment?: string;
            requireResidentKey?: boolean;
            residentKey?: string;
            userVerification?: string;
        };
        challenge: string;
        excludeCredentials?: PasskeyCredentialDescriptorJSON[];
        extensions?: Record<string, unknown>;
        pubKeyCredParams: { alg: number; type: "public-key" }[];
        rp: { id?: string; name: string };
        timeout?: number;
        user: { displayName: string; id: string; name: string };
    }
    Index

    Properties

    attestation?: string
    authenticatorSelection?: {
        authenticatorAttachment?: string;
        requireResidentKey?: boolean;
        residentKey?: string;
        userVerification?: string;
    }
    challenge: string
    excludeCredentials?: PasskeyCredentialDescriptorJSON[]
    extensions?: Record<string, unknown>
    pubKeyCredParams: { alg: number; type: "public-key" }[]
    rp: { id?: string; name: string }
    timeout?: number
    user: { displayName: string; id: string; name: string }