node-webauthn
    Preparing search index...

    Type Alias AuthenticationResponseInput

    type AuthenticationResponseInput = {
        allowed_client_extensions?: readonly ("appid" | "largeBlob")[];
        allowed_origins?: readonly string[];
        app_id?: string;
        authenticator_data: string;
        client_data_json: string;
        client_extension_results?: AuthenticationExtensionsClientOutputs;
        credential_id?: string;
        expected_challenge: string;
        expected_credential_id?: string;
        origin: string;
        previous_counter?: number;
        public_key: string;
        require_user_presence?: boolean;
        require_user_verification?: boolean;
        rp_id: string;
        signature: string;
    }
    Index

    Properties

    allowed_client_extensions?: readonly ("appid" | "largeBlob")[]
    allowed_origins?: readonly string[]
    app_id?: string
    authenticator_data: string
    client_data_json: string
    client_extension_results?: AuthenticationExtensionsClientOutputs
    credential_id?: string
    expected_challenge: string
    expected_credential_id?: string
    origin: string
    previous_counter?: number
    public_key: string
    require_user_presence?: boolean
    require_user_verification?: boolean
    rp_id: string
    signature: string