diff options
author | Matthew Miller <matthew@millerti.me> | 2020-05-22 16:53:04 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2020-05-22 16:53:04 -0700 |
commit | 8611db505392a951007974a85534671d5279521e (patch) | |
tree | 4326b2fc63d095ecb93f8990a53e8772c0cbca90 /packages/typescript-types/src | |
parent | 27bfd2a5f0890b65eed61e7285ec73020e46a622 (diff) |
Require credential ID from browser after assertion
Diffstat (limited to 'packages/typescript-types/src')
-rw-r--r-- | packages/typescript-types/src/index.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/typescript-types/src/index.ts b/packages/typescript-types/src/index.ts index 6ad3b81..ee714ff 100644 --- a/packages/typescript-types/src/index.ts +++ b/packages/typescript-types/src/index.ts @@ -87,6 +87,7 @@ AuthenticatorAttestationResponse, 'clientDataJSON' | 'attestationObject' export interface AuthenticatorAssertionResponseJSON extends Omit< AuthenticatorAssertionResponse, 'clientDataJSON' | 'authenticatorData' | 'signature' | 'userHandle' > { + base64CredentialID: string; base64AuthenticatorData: string; base64ClientDataJSON: string; base64Signature: string; |