feat(interfaces): update IReqRegister interface

The `IReqRegister` interface was modified. It no longer includes the `displayName` field, but `dob`, `email`, and `password` fields were added. The 'password' property was moved to the end of the interface.

Signed-off-by: Mathis <yidhra@tuta.io>
This commit is contained in:
Mathis H (Avnyr) 2024-04-30 12:37:24 +02:00
parent f1272ca2c8
commit 9225337e95
Signed by: Mathis
GPG Key ID: DD9E0666A747D126

View File

@ -1,8 +1,9 @@
export interface IReqRegister {
username: string;
displayName: string;
firstName: string;
lastName: string;
password: string;
dob: Date;
email: string;
gdpr?: boolean;
password: string;
}