push de la fleme

This commit is contained in:
2024-04-17 16:55:04 +02:00
parent 66e402cbf6
commit f7fcc0d051
28 changed files with 2042 additions and 131 deletions

View File

@@ -0,0 +1,4 @@
interface IReqLoginData {
username: string;
password: string;
}

View File

@@ -0,0 +1,8 @@
interface IReqRegisterData {
username: string;
displayName: string;
password: string;
firstName: string;
lastName: string;
gdpr: boolean;
}

View File

@@ -0,0 +1,11 @@
interface IResLoginData {
error: string;
jwt: string;
user: User;
}
interface User {
id: string;
username: string;
displayName: string;
}

View File

@@ -0,0 +1,13 @@
interface IResRegisterData {
error: string;
jwt: string;
user: User;
}
interface User {
id: string;
username: string;
displayName: string;
firstName: string;
lastName: string;
}