forked from jappel/leistungsbilanz-ts
Add Revit circuit list object feed
This commit is contained in:
parent
a69b7b603f
commit
74bea1a3c9
11 changed files with 287 additions and 0 deletions
|
|
@ -428,6 +428,32 @@ export interface CircuitTreeResponseDto {
|
|||
footerComponents: CircuitTreeComponentDto[];
|
||||
}
|
||||
|
||||
export interface ExternalCircuitListObjectDto {
|
||||
id: string;
|
||||
ifcGuid: string;
|
||||
selectionMarker: string;
|
||||
familyAndType: string;
|
||||
sourceCircuitIdentifier: string;
|
||||
displayName: string | null;
|
||||
category: string | null;
|
||||
connectionKind: string | null;
|
||||
effectiveQuantity: number;
|
||||
powerPerUnitW: number | null;
|
||||
sourceRoomNumber: string;
|
||||
sourceRoomName: string;
|
||||
roomId: string | null;
|
||||
linkedProjectDeviceId: string | null;
|
||||
circuitDeviceRowId: string | null;
|
||||
presenceStatus: "present" | "missing";
|
||||
}
|
||||
|
||||
export interface ExternalCircuitListObjectsDto {
|
||||
sourceName: string | null;
|
||||
objectCount: number;
|
||||
unassignedObjectCount: number;
|
||||
objects: ExternalCircuitListObjectDto[];
|
||||
}
|
||||
|
||||
export interface CreateCircuitInputDto {
|
||||
sectionId: string;
|
||||
equipmentIdentifier: string;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue