export type AdminCreationResult = { id: string; email: string; created_at: string; }; export type AuthorizedUser = { id: string; email: string; createdAt: string; }; export type DatabaseUser = { id: string; email: string; password_hash: string; created_at: string; }; export type LoginResponse = { message: string; user: AuthorizedUser; token: string; };