@e-trias/woonplan 1.3.266 → 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 +10 -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
|
|
@@ -2491,4 +2492,13 @@ export interface ICSSvariablesSettings{
|
|
|
2491
2492
|
card ?: IDOMElementStyle
|
|
2492
2493
|
hero ?: IDOMElementStyle
|
|
2493
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
|
+
|
|
2494
2504
|
}
|