forked from jappel/leistungsbilanz-ts
Persist circuit cell edits
This commit is contained in:
parent
3977a6e6e1
commit
76d8d59391
24 changed files with 348 additions and 301 deletions
|
|
@ -240,6 +240,7 @@ export interface CircuitTreeMigrationReportDto {
|
|||
|
||||
export interface CircuitTreeResponseDto {
|
||||
circuitListId: string;
|
||||
currentRevision: number;
|
||||
sections: CircuitTreeSectionDto[];
|
||||
migrationReport?: CircuitTreeMigrationReportDto;
|
||||
}
|
||||
|
|
@ -264,8 +265,6 @@ export interface CreateCircuitInputDto {
|
|||
remark?: string;
|
||||
}
|
||||
|
||||
export type UpdateCircuitInputDto = Partial<CreateCircuitInputDto>;
|
||||
|
||||
export interface CreateCircuitDeviceRowInputDto {
|
||||
linkedProjectDeviceId?: string;
|
||||
name: string;
|
||||
|
|
@ -287,5 +286,4 @@ export interface CreateCircuitDeviceRowInputDto {
|
|||
sortOrder?: number;
|
||||
}
|
||||
|
||||
export type UpdateCircuitDeviceRowInputDto = Partial<CreateCircuitDeviceRowInputDto>;
|
||||
import type { ProjectDeviceSyncField } from "../shared/constants/project-device-sync-fields";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue