diff options
author | Eiji Kitamura <agektmr@google.com> | 2022-07-22 22:26:37 +0900 |
---|---|---|
committer | Eiji Kitamura <agektmr@google.com> | 2022-07-22 22:26:37 +0900 |
commit | 70993ae52b1715e88a5eebee2153b14af47418cc (patch) | |
tree | f6b2467b8d49073fa9586c4f67383c44240e881d /packages/server/src | |
parent | ca546ef7525bc8c75d23158c78ab98d7de98d0f8 (diff) |
Rename
UvmJSON => UVMAuthenticatorOutput
Diffstat (limited to 'packages/server/src')
-rw-r--r-- | packages/server/src/helpers/decodeAuthenticatorExtensions.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/server/src/helpers/decodeAuthenticatorExtensions.ts b/packages/server/src/helpers/decodeAuthenticatorExtensions.ts index b5da8fe..41a907d 100644 --- a/packages/server/src/helpers/decodeAuthenticatorExtensions.ts +++ b/packages/server/src/helpers/decodeAuthenticatorExtensions.ts @@ -20,7 +20,7 @@ export default function decodeAuthenticatorExtensionData( export type AuthenticationExtensionsAuthenticatorOutputs = { devicePublicKey?: DevicePublicKeyAuthenticatorOutput; - uvm?: UvmJSON; + uvm?: UVMAuthenticatorOutput; } export type DevicePublicKeyAuthenticatorOutput = { @@ -32,6 +32,6 @@ export type DevicePublicKeyAuthenticatorOutput = { // TODO: Need to verify this format // https://w3c.github.io/webauthn/#sctn-uvm-extension. -export type UvmJSON = { +export type UVMAuthenticatorOutput = { uvm?: Buffer[] } |