1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-21 11:53:34 +00:00

make types optional to mitigate the design inconsistency (#18072)

This commit is contained in:
Daniel Riera
2026-01-13 10:14:17 -05:00
committed by GitHub
parent 622df1deaf
commit 5ee702093c
2 changed files with 2 additions and 4 deletions

View File

@@ -136,11 +136,11 @@ export interface CreateCredentialResult {
*/
export interface AssertCredentialParams {
allowedCredentialIds: string[];
rpId: string;
rpId?: string;
origin: string;
challenge: string;
userVerification?: UserVerification;
timeout: number;
timeout?: number;
sameOriginWithAncestors: boolean;
mediation?: "silent" | "optional" | "required" | "conditional";
fallbackSupported: boolean;