summaryrefslogtreecommitdiffhomepage
path: root/packages/typescript-types
diff options
context:
space:
mode:
Diffstat (limited to 'packages/typescript-types')
-rw-r--r--packages/typescript-types/src/index.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/packages/typescript-types/src/index.ts b/packages/typescript-types/src/index.ts
index b8b1394..29a99ef 100644
--- a/packages/typescript-types/src/index.ts
+++ b/packages/typescript-types/src/index.ts
@@ -19,6 +19,7 @@ import type {
AuthenticatorAttachment,
PublicKeyCredentialCreationOptions,
PublicKeyCredentialRequestOptions,
+ COSEAlgorithmIdentifier,
} from './dom';
export * from './dom';
@@ -129,7 +130,12 @@ export interface AuthenticatorAttestationResponseJSON {
clientDataJSON: Base64URLString;
attestationObject: Base64URLString;
// Optional in L2, but becomes required in L3. Play it safe until L3 becomes Recommendation
+ authenticatorData?: Base64URLString;
+ // Optional in L2, but becomes required in L3. Play it safe until L3 becomes Recommendation
transports?: AuthenticatorTransportFuture[];
+ publicKey?: Base64URLString;
+ // Optional in L2, but becomes required in L3. Play it safe until L3 becomes Recommendation
+ publicKeyAlgorithm?: COSEAlgorithmIdentifier;
}
/**