diff options
author | Matthew Miller <matthew@millerti.me> | 2023-06-25 10:52:41 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2023-06-25 10:52:41 -0700 |
commit | 84ce69c1f545bf6345a08ead634ecf15d578d2a7 (patch) | |
tree | 8db410b083e8cddb1e8561bd37718093043b9fa4 /packages/typescript-types | |
parent | 10a19c7a5db55e97714554c56e1448378dfd376c (diff) |
Shift publicKey around
Diffstat (limited to 'packages/typescript-types')
-rw-r--r-- | packages/typescript-types/src/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/typescript-types/src/index.ts b/packages/typescript-types/src/index.ts index 29a99ef..73ee1e9 100644 --- a/packages/typescript-types/src/index.ts +++ b/packages/typescript-types/src/index.ts @@ -133,9 +133,9 @@ export interface AuthenticatorAttestationResponseJSON { 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; + publicKey?: Base64URLString; } /** |