update
This commit is contained in:
@@ -58,4 +58,10 @@ export interface BroadcastPayload {
|
||||
nachricht: string;
|
||||
schwere?: 'info' | 'warnung' | 'fehler';
|
||||
targetGroup?: string;
|
||||
targetDienstgrad?: string[];
|
||||
}
|
||||
|
||||
export interface BroadcastPreviewPayload {
|
||||
targetGroup?: string;
|
||||
targetDienstgrad?: string[];
|
||||
}
|
||||
|
||||
@@ -47,10 +47,21 @@ export interface Fahrzeug {
|
||||
kurzname: string | null;
|
||||
amtliches_kennzeichen: string | null;
|
||||
status: string;
|
||||
status_bemerkung?: string | null;
|
||||
ausser_dienst_von: string | null;
|
||||
ausser_dienst_bis: string | null;
|
||||
}
|
||||
|
||||
export interface MaintenanceWindow {
|
||||
id: string;
|
||||
bezeichnung: string;
|
||||
kurzname: string | null;
|
||||
status: string;
|
||||
status_bemerkung: string | null;
|
||||
ausser_dienst_von: string;
|
||||
ausser_dienst_bis: string;
|
||||
}
|
||||
|
||||
export interface CreateBuchungInput {
|
||||
fahrzeugId: string;
|
||||
titel: string;
|
||||
|
||||
@@ -76,3 +76,11 @@ export interface CreateVeranstaltungInput {
|
||||
anmeldung_bis?: string | null;
|
||||
wiederholung?: WiederholungConfig | null;
|
||||
}
|
||||
|
||||
export interface ConflictEvent {
|
||||
id: string;
|
||||
titel: string;
|
||||
datum_von: string; // ISO
|
||||
datum_bis: string; // ISO
|
||||
kategorie_name: string | null;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user