@e-trias/woonplan 1.0.95 → 1.0.97
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/types.d.ts +13 -2
package/package.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{
|
|
@@ -658,6 +666,7 @@ export interface IWall extends IHouseobject{
|
|
|
658
666
|
aircavity ?: boolean
|
|
659
667
|
rcvalue ?: number
|
|
660
668
|
thicknesscavity ?: number
|
|
669
|
+
housetypeid ?: string | null
|
|
661
670
|
}
|
|
662
671
|
|
|
663
672
|
|
|
@@ -673,6 +682,7 @@ export interface IRoof extends IHouseobject{
|
|
|
673
682
|
sideid ?: string | null
|
|
674
683
|
side ?: ISide
|
|
675
684
|
rcvalue ?: number
|
|
685
|
+
housetypeid ?: string | null
|
|
676
686
|
}
|
|
677
687
|
export interface IWindowframe extends IHouseobject{
|
|
678
688
|
userdataid : string
|
|
@@ -688,6 +698,7 @@ export interface IWindowframe extends IHouseobject{
|
|
|
688
698
|
width : number
|
|
689
699
|
height : number
|
|
690
700
|
needreplacing ?: boolean
|
|
701
|
+
housetypeid ?: string | null
|
|
691
702
|
}
|
|
692
703
|
|
|
693
704
|
export interface IWindowframepart extends IHouseobject{
|
|
@@ -982,7 +993,7 @@ interface EnergyIOState{
|
|
|
982
993
|
|
|
983
994
|
|
|
984
995
|
|
|
985
|
-
type IHouseObjectName = "walls" | "floors" | "windowframeparts" | "roofs"
|
|
996
|
+
type IHouseObjectName = "walls" | "floors" | "windowframeparts" | "roofs" | "houselevels"
|
|
986
997
|
type IHouseMap = Map< IHouseObjectName , IHouseObjectWithMeasuredatas[]>
|
|
987
998
|
|
|
988
999
|
interface IHouseObjectWithMeasuredatas extends IHouseobject{
|