This commit is contained in:
Bastian Wagner
2026-06-10 15:44:18 +02:00
parent 67b5fb8532
commit e1cc78ca27
22 changed files with 749 additions and 26 deletions

View File

@@ -6,6 +6,12 @@ export interface PublicUser {
onboardingCompleted: boolean;
}
export interface PublicUserSearchResult {
id: string;
email: string;
name?: string;
}
export interface AuthTokenResponse {
accessToken: string;
refreshToken: string;