@e-trias/woonplan 1.0.79 → 1.0.82
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 +14 -2
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -182,7 +182,7 @@ export interface IHousetemplateCalculationData{
|
|
|
182
182
|
graaddagenjaarmethode : number
|
|
183
183
|
insulatedreductionfactors : {
|
|
184
184
|
wall : number
|
|
185
|
-
floor : number
|
|
185
|
+
floor : number | IHousetemplateCalculationDataPerHousetype | { u:number, factor:number }[]
|
|
186
186
|
roof : number
|
|
187
187
|
}
|
|
188
188
|
}
|
|
@@ -210,7 +210,7 @@ export interface IHousetemplateCalculationDataForHousetype{
|
|
|
210
210
|
graaddagenjaarmethode : number
|
|
211
211
|
insulatedreductionfactors : {
|
|
212
212
|
wall : number
|
|
213
|
-
floor : number
|
|
213
|
+
floor : number | IHousetemplateCalculationDataPerHousetype | { u:number, factor:number }[]
|
|
214
214
|
roof : number
|
|
215
215
|
}
|
|
216
216
|
energylossesPerm2 ?: {
|
|
@@ -308,6 +308,16 @@ export interface IMeasuredata{
|
|
|
308
308
|
insulationlocationid ?: string | null
|
|
309
309
|
insulationtypeid ?: string | null
|
|
310
310
|
glasstypeid ?: string | null
|
|
311
|
+
glasstype ?: IGlasstype
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
interface IGlasstype{
|
|
315
|
+
id : string
|
|
316
|
+
deleted : boolean
|
|
317
|
+
sortorder : number
|
|
318
|
+
measuredatas : IMeasuredata[]
|
|
319
|
+
gvalue : number
|
|
320
|
+
uvalue : number
|
|
311
321
|
}
|
|
312
322
|
|
|
313
323
|
export interface IMeasuredatainterestedcontact{
|
|
@@ -591,6 +601,7 @@ export interface IFloor extends IHouseobject{
|
|
|
591
601
|
crawlspacesinfloor ?: ICrawlspaceinfloor[]
|
|
592
602
|
basementhasceiling ?: boolean
|
|
593
603
|
basementunderneath ?: boolean
|
|
604
|
+
rcvalue ?: number
|
|
594
605
|
}
|
|
595
606
|
|
|
596
607
|
|
|
@@ -628,6 +639,7 @@ export interface IRoof extends IHouseobject{
|
|
|
628
639
|
roofingid ?: string | null
|
|
629
640
|
sideid ?: string | null
|
|
630
641
|
side ?: ISide
|
|
642
|
+
rcvalue ?: number
|
|
631
643
|
}
|
|
632
644
|
export interface IWindowframe extends IHouseobject{
|
|
633
645
|
userdataid : string
|