feat(db): Login register and auth

This commit is contained in:
Julien Froidefond
2025-02-14 17:00:50 +01:00
parent 313cd60e74
commit 5d47b307bd
15 changed files with 630 additions and 225 deletions

View File

@@ -19,11 +19,4 @@ export interface AuthError {
message: string;
}
export type AuthErrorCode =
| "INVALID_CREDENTIALS"
| "INVALID_SERVER_URL"
| "SERVER_UNREACHABLE"
| "NETWORK_ERROR"
| "UNKNOWN_ERROR"
| "CACHE_CLEAR_ERROR"
| "TEST_CONNECTION_ERROR";
export type AuthErrorCode = "INVALID_CREDENTIALS" | "SERVER_ERROR" | "EMAIL_EXISTS";