add 2fa type tracking to credentials (#3647)
This commit is contained in:
@@ -423,6 +423,7 @@ export type Createv2TaskRequest = {
|
||||
|
||||
export type PasswordCredentialApiResponse = {
|
||||
username: string;
|
||||
totp_type: "authenticator" | "email" | "text" | "none";
|
||||
};
|
||||
|
||||
export type CreditCardCredentialApiResponse = {
|
||||
@@ -459,6 +460,7 @@ export type PasswordCredential = {
|
||||
username: string;
|
||||
password: string;
|
||||
totp: string | null;
|
||||
totp_type: "authenticator" | "email" | "text" | "none";
|
||||
};
|
||||
|
||||
export type CreditCardCredential = {
|
||||
|
||||
Reference in New Issue
Block a user