schema change and base operations

This commit is contained in:
Julian Krauser 2025-07-19 11:02:07 +02:00
parent 799a719012
commit 4d37571cb6
27 changed files with 660 additions and 52 deletions

View file

@ -0,0 +1,19 @@
export interface CreateRepairCommand {
description: string;
responsible: string;
affectedId: string;
affected: "equipment" | "vehicle" | "wearable";
reports: string[];
}
export interface UpdateRepairCommand {
id: string;
status: string;
description: string;
responsible: string;
reports: string[];
}
export interface DeleteRepairCommand {
id: string;
}