@e-trias/woonplan 1.0.94 → 1.0.96
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/tsconfig.json +1 -1
- package/types.d.ts +18 -1
package/package.json
CHANGED
package/tsconfig.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -577,11 +577,19 @@ export interface IHouseobject{
|
|
|
577
577
|
measuredatas ?: IMeasuredata[]
|
|
578
578
|
}
|
|
579
579
|
|
|
580
|
+
interface IHouselevel{
|
|
581
|
+
id : string
|
|
582
|
+
deleted : boolean
|
|
583
|
+
sortorder : number
|
|
584
|
+
userdataid ?: string
|
|
585
|
+
}
|
|
586
|
+
|
|
580
587
|
export interface IHouse{
|
|
581
588
|
windowframeparts : IWindowframepart[],
|
|
582
589
|
floors : IFloor[],
|
|
583
590
|
walls : IWall[],
|
|
584
|
-
roofs : IRoof[]
|
|
591
|
+
roofs : IRoof[],
|
|
592
|
+
houselevels : IHouselevel[]
|
|
585
593
|
}
|
|
586
594
|
|
|
587
595
|
export interface IAbstractHouseObjectType{
|
|
@@ -978,4 +986,13 @@ interface EnergyIOState{
|
|
|
978
986
|
draft: EnergyIO
|
|
979
987
|
ventilation: EnergyIO
|
|
980
988
|
internal: EnergyOutput
|
|
989
|
+
}
|
|
990
|
+
|
|
991
|
+
|
|
992
|
+
|
|
993
|
+
type IHouseObjectName = "walls" | "floors" | "windowframeparts" | "roofs" | "houselevels"
|
|
994
|
+
type IHouseMap = Map< IHouseObjectName , IHouseObjectWithMeasuredatas[]>
|
|
995
|
+
|
|
996
|
+
interface IHouseObjectWithMeasuredatas extends IHouseobject{
|
|
997
|
+
measuredatas : IMeasuredata[]
|
|
981
998
|
}
|