@bitblit/ratchet-warden-common
Version:
Typescript library to simplify using simplewebauthn and secondary auth methods over GraphQL
14 lines (13 loc) • 513 B
TypeScript
import { WardenWebAuthnEntry } from './warden-web-authn-entry.js';
import { WardenContact } from './warden-contact.js';
import { WardenThirdPartyAuthentication } from "./warden-third-party-authentication.js";
export interface WardenEntry {
userId: string;
userLabel: string;
contactMethods: WardenContact[];
tags: string[];
webAuthnAuthenticators: WardenWebAuthnEntry[];
thirdPartyAuthenticators: WardenThirdPartyAuthentication[];
createdEpochMS: number;
updatedEpochMS: number;
}