@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.
- package/package.json +1 -1
- package/types.d.ts +5 -1
package/package.json
CHANGED
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
|
}
|