update models to backend changes

This commit is contained in:
Julian Krauser 2025-05-29 10:57:24 +02:00
parent ab3083c18d
commit bd1fdaa234
14 changed files with 79 additions and 29 deletions

View file

@ -1,54 +0,0 @@
import type { EquipmentTypeViewModel } from "../equipmentType/equipmentType.models";
import type { VehicleTypeViewModel } from "../vehicleType/vehicleType.models";
export type PlanTimeDefinition = `${number}-${"d" | "m" | "y"}` | `${number}/${number | "*"}`;
export type InspectionPlanViewModel = {
id: string;
title: string;
inspectionInterval: PlanTimeDefinition;
remindTime: PlanTimeDefinition;
version: number;
created: Date;
inspectionPoints: InspectionPointViewModel[];
relatedId: string;
} & (
| {
assigned: "equipment";
related: EquipmentTypeViewModel;
}
| {
assigned: "vehicle";
related: VehicleTypeViewModel;
}
);
export interface InspectionVersionedPlanViewModel {
id: string;
version: number;
created: Date;
inspectionPoints: InspectionPointViewModel[];
}
export interface InspectionPointViewModel {
id: string;
title: string;
description: string;
type: "iO-niO" | "text" | "number";
min?: number;
}
export interface CreateInspectionPlanViewModel {
title: string;
inspectionInterval: PlanTimeDefinition;
remindTime: PlanTimeDefinition;
relatedId: string;
assigned: "vehicle" | "equipment";
}
export interface UpdateInspectionPlanViewModel {
id: string;
title: string;
inspectionInterval: PlanTimeDefinition;
remindTime?: PlanTimeDefinition;
}