@e-trias/woonplan 1.3.363 → 1.3.365
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 +7 -0
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -1365,6 +1365,7 @@ export interface IMeasure {
|
|
|
1365
1365
|
reasons : string[]
|
|
1366
1366
|
}[]
|
|
1367
1367
|
submeasures ?: IMeasure[]
|
|
1368
|
+
partnerid ?: string
|
|
1368
1369
|
}
|
|
1369
1370
|
|
|
1370
1371
|
|
|
@@ -1944,6 +1945,7 @@ export interface HouseContructionParams{
|
|
|
1944
1945
|
weatherstationid ?: string
|
|
1945
1946
|
maxovertemp ?: number
|
|
1946
1947
|
averageroomtemp ?: number
|
|
1948
|
+
climateyear ?: Record<string,any>
|
|
1947
1949
|
}
|
|
1948
1950
|
|
|
1949
1951
|
|
|
@@ -2838,4 +2840,9 @@ export interface Feature3d extends Feature{
|
|
|
2838
2840
|
buildinggeometry : BuildingGeometry
|
|
2839
2841
|
housetypeid ?: string
|
|
2840
2842
|
houselevelamount : number
|
|
2843
|
+
windowframeparts : Partial<IWindowframepart>[]
|
|
2844
|
+
windowframes : Partial<IWindowframe>[]
|
|
2845
|
+
ventilationsystems : IVentilationsystem[]
|
|
2846
|
+
housecreationparams : HouseContructionParams
|
|
2841
2847
|
}
|
|
2848
|
+
|