diff options
author | Eiji Kitamura <agektmr@google.com> | 2022-08-09 14:22:55 +0900 |
---|---|---|
committer | Eiji Kitamura <agektmr@google.com> | 2022-08-09 14:23:12 +0900 |
commit | d25a0680e1993ac7cb1040ad84e94baf12464ba6 (patch) | |
tree | cd98a4479a7fb00f83c7dcc1ceadd4a853cfc147 /packages/server/src | |
parent | a79e3d35f30970439b3bab01d7039b535cacf9ab (diff) |
`devicePublicKey` => `devicePubKey`
Aligning the spec
Diffstat (limited to 'packages/server/src')
-rw-r--r-- | packages/server/src/helpers/decodeAuthenticatorExtensions.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/server/src/helpers/decodeAuthenticatorExtensions.ts b/packages/server/src/helpers/decodeAuthenticatorExtensions.ts index 7723d85..a889879 100644 --- a/packages/server/src/helpers/decodeAuthenticatorExtensions.ts +++ b/packages/server/src/helpers/decodeAuthenticatorExtensions.ts @@ -19,7 +19,7 @@ export function decodeAuthenticatorExtensions( } export type AuthenticationExtensionsAuthenticatorOutputs = { - devicePublicKey?: DevicePublicKeyAuthenticatorOutput; + devicePubKey?: DevicePublicKeyAuthenticatorOutput; uvm?: UVMAuthenticatorOutput; }; |