mirror of
https://github.com/bitwarden/clients.git
synced 2026-06-19 21:02:50 +08:00
* added 2fa enabled * added passwordless authentication to 2fa * passwordless strategy to authservice * changes to 2FA to allow email sending for passwordless * updated imports
8 lines
219 B
TypeScript
8 lines
219 B
TypeScript
import { SecretVerificationRequest } from "./secret-verification.request";
|
|
|
|
export class TwoFactorEmailRequest extends SecretVerificationRequest {
|
|
email: string;
|
|
deviceIdentifier: string;
|
|
authRequestId: string;
|
|
}
|