From f9c684695b6118fddc9cde2327cfec906ddf3f7d Mon Sep 17 00:00:00 2001 From: Andreas Coroiu Date: Mon, 27 Mar 2023 13:53:46 +0200 Subject: [PATCH] [EC-598] feat: add ignored enterpriseAttestation param --- .../abstractions/fido2-authenticator.service.abstraction.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libs/common/src/webauthn/abstractions/fido2-authenticator.service.abstraction.ts b/libs/common/src/webauthn/abstractions/fido2-authenticator.service.abstraction.ts index b0b33ce6c2b..5315cdac8c1 100644 --- a/libs/common/src/webauthn/abstractions/fido2-authenticator.service.abstraction.ts +++ b/libs/common/src/webauthn/abstractions/fido2-authenticator.service.abstraction.ts @@ -66,6 +66,8 @@ export interface Fido2AuthenticatorMakeCredentialsParams { credProps?: boolean; uvm?: boolean; }; + /** A Boolean value that indicates that individually-identifying attestation MAY be returned by the authenticator. */ + enterpriseAttestationPossible?: boolean; // Ignored by bitwarden at the moment /** The effective resident key requirement for credential creation, a Boolean value determined by the client. */ requireResidentKey: boolean; requireUserVerification: boolean;