diff options
author | Matthew Miller <matthew@millerti.me> | 2023-06-25 11:16:24 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-25 11:16:24 -0700 |
commit | 67aad754c531a53bc0f9915ebdfc0e995df74a47 (patch) | |
tree | 9bf7c563778134b2e8b8df1c423f04d7e216ff37 /packages/typescript-types | |
parent | ba4ce17cbc5e6aed06e8b909f47784ccd06c78d8 (diff) | |
parent | 5787bb38d60bda3bcada741353016ca328f116f0 (diff) |
Merge pull request #400 from MasterKale/feat/json-type-updatesm7n-openwrtopenwrt
feat/json-type-updates
Diffstat (limited to 'packages/typescript-types')
-rw-r--r-- | packages/typescript-types/src/index.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/packages/typescript-types/src/index.ts b/packages/typescript-types/src/index.ts index 8435241..33193c9 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[]; + // Optional in L2, but becomes required in L3. Play it safe until L3 becomes Recommendation + publicKeyAlgorithm?: COSEAlgorithmIdentifier; + publicKey?: Base64URLString; } /** |