@e-trias/woonplan 1.3.265 → 1.3.267
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 +11 -0
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -37,6 +37,7 @@ export interface IContact{
|
|
|
37
37
|
locale ?: ILocale
|
|
38
38
|
localeid ?: string
|
|
39
39
|
weatherstationid ?: string
|
|
40
|
+
buildingid ?: string
|
|
40
41
|
}
|
|
41
42
|
export interface INote{
|
|
42
43
|
id?: string
|
|
@@ -844,6 +845,7 @@ export interface ISettings {
|
|
|
844
845
|
css ?: ICSSvariablesSettings
|
|
845
846
|
quotationrequestsenabled ?: '1' | '0'
|
|
846
847
|
forcedGasgreeoption ?: string
|
|
848
|
+
defaultWarmwaterSource ?: 'gas' | 'electric'
|
|
847
849
|
}
|
|
848
850
|
|
|
849
851
|
export interface IColors {
|
|
@@ -2490,4 +2492,13 @@ export interface ICSSvariablesSettings{
|
|
|
2490
2492
|
card ?: IDOMElementStyle
|
|
2491
2493
|
hero ?: IDOMElementStyle
|
|
2492
2494
|
input ?: IInputStyles
|
|
2495
|
+
}
|
|
2496
|
+
|
|
2497
|
+
export interface IBuilding{
|
|
2498
|
+
name ?: string
|
|
2499
|
+
id ?: string
|
|
2500
|
+
deleted ?: boolean
|
|
2501
|
+
sortorder ?: number
|
|
2502
|
+
areaactionid ?: string
|
|
2503
|
+
|
|
2493
2504
|
}
|