@e-trias/woonplan 1.3.363 → 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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/types.d.ts +6 -0
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@e-trias/woonplan",
3
3
  "private": false,
4
4
  "types": "types.d.ts",
5
- "version": "1.3.363",
5
+ "version": "1.3.364",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1",
8
8
  "build": "tsc -p tsconfig.json",
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,4 +2839,9 @@ export interface Feature3d extends Feature{
2838
2839
  buildinggeometry : BuildingGeometry
2839
2840
  housetypeid ?: string
2840
2841
  houselevelamount : number
2842
+ windowframeparts : Partial<IWindowframepart>[]
2843
+ windowframes : Partial<IWindowframe>[]
2844
+ ventilationsystems : IVentilationsystem[]
2845
+ housecreationparams : HouseContructionParams
2841
2846
  }
2847
+