diff options
author | Matthew Miller <matthew@millerti.me> | 2020-05-21 16:45:24 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2020-05-21 16:45:24 -0700 |
commit | 99e6a2e86472530cb4be12bef34ea72975a6b75d (patch) | |
tree | dbe1ebe52ca5d6864ab1ae5523da684de5254ffc /packages/typescript-types | |
parent | b774f52e5eeb29105cbce95869a05c5e3d2b3590 (diff) |
Add userVerified property to verified attestations
Diffstat (limited to 'packages/typescript-types')
-rw-r--r-- | packages/typescript-types/src/index.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/typescript-types/src/index.ts b/packages/typescript-types/src/index.ts index f4cb6ae..15771b0 100644 --- a/packages/typescript-types/src/index.ts +++ b/packages/typescript-types/src/index.ts @@ -139,6 +139,7 @@ export type ClientDataJSON = { */ export type VerifiedAttestation = { verified: boolean, + userVerified: boolean; authenticatorInfo?: { fmt: ATTESTATION_FORMATS, counter: number, |