interface WebAuthnAuthenticationMetadata {
    challenge: string;
    relyingPartyId: string;
    timeout: number;
    userVerification: UserVerificationType;
    _action?: "webauthn_authentication";
    acceptableCredentials?: string;
    allowCredentials?: string;
    _allowCredentials?: PublicKeyCredentialDescriptor[];
    _relyingPartyId?: string;
    mediation?: string;
    extensions?: Record<string, unknown>;
    _type?: "WebAuthn";
    supportsJsonResponse?: boolean;
}

Properties

challenge: string
relyingPartyId: string
timeout: number
userVerification: UserVerificationType
_action?: "webauthn_authentication"
acceptableCredentials?: string
allowCredentials?: string
_allowCredentials?: PublicKeyCredentialDescriptor[]
_relyingPartyId?: string
mediation?: string
extensions?: Record<string, unknown>
_type?: "WebAuthn"
supportsJsonResponse?: boolean