feat(interfaces): add MFA and passkey contracts

This commit is contained in:
2026-05-19 06:24:06 +00:00
parent 8e2f9a6d12
commit 8746bc083e
7 changed files with 318 additions and 1 deletions
+6 -1
View File
@@ -14,6 +14,8 @@ export interface IReq_LoginWithEmailOrUsernameAndPassword
response: {
refreshToken?: string;
twoFaNeeded: boolean;
mfaChallengeToken?: string;
availableMfaMethods?: data.TMfaMethod[];
};
}
@@ -43,7 +45,10 @@ export interface IReq_LoginWithEmailAfterEmailTokenAquired
token: string;
};
response: {
refreshToken: string;
refreshToken?: string;
twoFaNeeded?: boolean;
mfaChallengeToken?: string;
availableMfaMethods?: data.TMfaMethod[];
};
}