@simplewebauthn/types
Advanced tools
Comparing version 10.0.0 to 11.0.0
@@ -6,3 +6,3 @@ { | ||
"name": "@simplewebauthn/types", | ||
"version": "10.0.0", | ||
"version": "11.0.0", | ||
"description": "TypeScript types used by the @simplewebauthn series of libraries", | ||
@@ -9,0 +9,0 @@ "license": "MIT", |
@@ -122,7 +122,7 @@ /** | ||
/** | ||
* A WebAuthn-compatible device and the information needed to verify assertions by it | ||
* Public key credential information needed to verify authentication responses | ||
*/ | ||
export type AuthenticatorDevice = { | ||
credentialID: Base64URLString; | ||
credentialPublicKey: Uint8Array; | ||
export type WebAuthnCredential = { | ||
id: Base64URLString; | ||
publicKey: Uint8Array; | ||
counter: number; | ||
@@ -129,0 +129,0 @@ transports?: AuthenticatorTransportFuture[]; |
173626
25656