frontend: add session API, credentialed fetch, 401-triggered relogin

This commit is contained in:
2026-07-24 21:44:19 +02:00
parent f9990ddcc2
commit 6dd4d9309c
2 changed files with 21 additions and 0 deletions

View File

@@ -186,6 +186,11 @@ export interface AuthResponse {
message: string;
}
export interface SessionInfo {
name: string;
email: string;
}
export interface DetailFillProgress {
Done: number;
Total: number;