mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
1.7 KiB
26 lines
1.7 KiB
import type { AuthenticationExtensionsClientInputs, AuthenticatorTransportFuture, Base64URLString, PublicKeyCredentialRequestOptionsJSON, Uint8Array_ } from '../types/index.js';
|
|
export type GenerateAuthenticationOptionsOpts = Parameters<typeof generateAuthenticationOptions>[0];
|
|
/**
|
|
* Prepare a value to pass into navigator.credentials.get(...) for authenticator authentication
|
|
*
|
|
* **Options:**
|
|
*
|
|
* @param rpID - Valid domain name (after `https://`)
|
|
* @param allowCredentials **(Optional)** - Authenticators previously registered by the user, if any. If undefined the client will ask the user which credential they want to use
|
|
* @param challenge **(Optional)** - Random value the authenticator needs to sign and pass back user for authentication. Defaults to generating a random value
|
|
* @param timeout **(Optional)** - How long (in ms) the user can take to complete authentication. Defaults to `60000`
|
|
* @param userVerification **(Optional)** - Set to `'discouraged'` when asserting as part of a 2FA flow, otherwise set to `'preferred'` or `'required'` as desired. Defaults to `"preferred"`
|
|
* @param extensions **(Optional)** - Additional plugins the authenticator or browser should use during authentication
|
|
*/
|
|
export declare function generateAuthenticationOptions(options: {
|
|
rpID: string;
|
|
allowCredentials?: {
|
|
id: Base64URLString;
|
|
transports?: AuthenticatorTransportFuture[];
|
|
}[];
|
|
challenge?: string | Uint8Array_;
|
|
timeout?: number;
|
|
userVerification?: 'required' | 'preferred' | 'discouraged';
|
|
extensions?: AuthenticationExtensionsClientInputs;
|
|
}): Promise<PublicKeyCredentialRequestOptionsJSON>;
|
|
//# sourceMappingURL=generateAuthenticationOptions.d.ts.map
|