@e-trias/woonplan 1.0.72 → 1.0.75
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 +10 -0
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -206,6 +206,13 @@ export interface IHousetemplateCalculationDataForHousetype{
|
|
|
206
206
|
floor : number
|
|
207
207
|
roof : number
|
|
208
208
|
}
|
|
209
|
+
energylossesPerm2 ?: {
|
|
210
|
+
wall : number
|
|
211
|
+
floor : number
|
|
212
|
+
roof : number
|
|
213
|
+
windowframepart : number
|
|
214
|
+
|
|
215
|
+
}
|
|
209
216
|
}
|
|
210
217
|
|
|
211
218
|
export interface IHousetemplate{
|
|
@@ -612,6 +619,8 @@ export interface IRoof extends IHouseobject{
|
|
|
612
619
|
ridgeheight ?: number
|
|
613
620
|
ceilingboarded ?: boolean
|
|
614
621
|
roofingid ?: string | null
|
|
622
|
+
sideid ?: string | null
|
|
623
|
+
side ?: ISide
|
|
615
624
|
}
|
|
616
625
|
export interface IWindowframe extends IHouseobject{
|
|
617
626
|
userdataid : string
|
|
@@ -643,6 +652,7 @@ export interface IWindowframepart extends IHouseobject{
|
|
|
643
652
|
windowframeparttypeid ?: string | null
|
|
644
653
|
windowframeid ?: string | null
|
|
645
654
|
windowframe ?: IWindowframe
|
|
655
|
+
side ?: ISide
|
|
646
656
|
}
|
|
647
657
|
|
|
648
658
|
export interface IWindowframetype extends IAbstractHouseObjectType{
|