This commit is contained in:
Matthias Hochmeister
2026-03-13 21:49:42 +01:00
parent e666ff434e
commit ef9d2ff4a2
6 changed files with 276 additions and 0 deletions

View File

@@ -198,3 +198,33 @@ export const STATUS_COLORS: Record<StatusEnum, 'success' | 'warning' | 'error' |
anwärter: 'default',
ausgetreten: 'error',
};
// ----------------------------------------------------------------
// FDISK-synced sub-section types
// ----------------------------------------------------------------
export interface Befoerderung {
id: string;
datum: string | null;
dienstgrad: string;
created_at: string;
}
export interface Untersuchung {
id: string;
datum: string | null;
anmerkungen: string | null;
art: string;
ergebnis: string | null;
created_at: string;
}
export interface Fahrgenehmigung {
id: string;
ausstellungsdatum: string | null;
gueltig_bis: string | null;
behoerde: string | null;
nummer: string | null;
klasse: string;
created_at: string;
}