- Renamed `is_mail_verified` to `is_email_verified` in `IDbUser` - Replaced `username` with `email` in `IReqLogin` - Commented out `dob` in `IReqRegister` - Added new field `_questionMarksFields` in `IDbFactorize` Issue: #18 Signed-off-by: Mathis <yidhra@tuta.io>
5 lines
66 B
TypeScript
5 lines
66 B
TypeScript
export interface IReqLogin {
|
|
email: string;
|
|
password: string;
|
|
}
|