@e-trias/woonplan 1.3.270 → 1.3.272

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 +5 -1
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.270",
5
+ "version": "1.3.272",
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
@@ -2377,6 +2377,10 @@ type UserStateKeys = 'energylabels' | 'housebuild' | 'housecreationparams' | 've
2377
2377
  type UserState = {
2378
2378
  [k in UserStateKeys] : string
2379
2379
  }
2380
+ type BuildingStateKeys = 'energylabels' | 'housebuild' | 'housecreationparams' | 'ventilationsystems' | 'calculationdata' | 'costs' | 'currentstate' | 'appliances' | 'usage' | 'floors' | 'walls' | 'windowframeparts' | 'installations' | 'existing' | 'draft' | 'ventilation' | 'solar' | 'usagecosts' | 'windowframes' | 'houselevels' | 'rooms' | 'contacts' | 'userdatas' | 'roofs'
2381
+ type BuildingState = {
2382
+ [k in BuildingStateKeys] : string
2383
+ }
2380
2384
 
2381
2385
  export interface IEnergyLabel {
2382
2386
  name ?: string
@@ -2512,6 +2516,6 @@ export interface IBuilding{
2512
2516
  city ?: string
2513
2517
  coordinates ?: string
2514
2518
  apartmentorder ?: IBuildhouselevel[]
2515
-
2519
+ contacts : IContact[]
2516
2520
 
2517
2521
  }