@e-trias/woonplan 1.3.362 → 1.3.364
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 +6 -1
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -1944,6 +1944,7 @@ export interface HouseContructionParams{
|
|
|
1944
1944
|
weatherstationid ?: string
|
|
1945
1945
|
maxovertemp ?: number
|
|
1946
1946
|
averageroomtemp ?: number
|
|
1947
|
+
climateyear ?: Record<string,any>
|
|
1947
1948
|
}
|
|
1948
1949
|
|
|
1949
1950
|
|
|
@@ -2838,5 +2839,9 @@ export interface Feature3d extends Feature{
|
|
|
2838
2839
|
buildinggeometry : BuildingGeometry
|
|
2839
2840
|
housetypeid ?: string
|
|
2840
2841
|
houselevelamount : number
|
|
2841
|
-
|
|
2842
|
+
windowframeparts : Partial<IWindowframepart>[]
|
|
2843
|
+
windowframes : Partial<IWindowframe>[]
|
|
2844
|
+
ventilationsystems : IVentilationsystem[]
|
|
2845
|
+
housecreationparams : HouseContructionParams
|
|
2842
2846
|
}
|
|
2847
|
+
|