@e-trias/woonplan 1.3.269 → 1.3.271
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 +10 -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
|
|
@@ -2494,6 +2498,11 @@ export interface ICSSvariablesSettings{
|
|
|
2494
2498
|
input ?: IInputStyles
|
|
2495
2499
|
}
|
|
2496
2500
|
|
|
2501
|
+
|
|
2502
|
+
export interface IBuildhouselevel{
|
|
2503
|
+
apartments : string[]
|
|
2504
|
+
}
|
|
2505
|
+
|
|
2497
2506
|
export interface IBuilding{
|
|
2498
2507
|
name ?: string
|
|
2499
2508
|
id ?: string
|
|
@@ -2506,7 +2515,7 @@ export interface IBuilding{
|
|
|
2506
2515
|
postcode ?: string
|
|
2507
2516
|
city ?: string
|
|
2508
2517
|
coordinates ?: string
|
|
2509
|
-
apartmentorder ?:
|
|
2518
|
+
apartmentorder ?: IBuildhouselevel[]
|
|
2510
2519
|
|
|
2511
2520
|
|
|
2512
2521
|
}
|