feat(repairs): external_car in create payload type

Co-Authored-By: claude-flow <ruv@ruv.net>
This commit is contained in:
2026-06-05 14:09:45 +03:00
co-authored by claude-flow
parent 10492e52a4
commit 3d875642f8
@@ -65,8 +65,14 @@ export interface CreateOilChangePayload {
sticker_extension: string | null;
}
export interface ExternalCarPayload {
plate: string;
make: string | null;
}
export interface CreateRepairPayload {
car_id: number;
car_id?: number;
external_car?: ExternalCarPayload;
mileage: number | null;
works: CreateWorkPayload[];
parts: CreatePartPayload[];