@e-trias/woonplan 1.1.2 → 1.1.4
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
|
@@ -582,6 +582,11 @@ interface IHouselevel{
|
|
|
582
582
|
deleted : boolean
|
|
583
583
|
sortorder : number
|
|
584
584
|
userdataid ?: string
|
|
585
|
+
heated : boolean
|
|
586
|
+
walkable: boolean
|
|
587
|
+
used: boolean
|
|
588
|
+
haskitchenorlivingroom: boolean
|
|
589
|
+
heatinghours : number
|
|
585
590
|
}
|
|
586
591
|
|
|
587
592
|
export interface IHouse{
|
|
@@ -684,6 +689,12 @@ interface IRoom extends IHouseobject{
|
|
|
684
689
|
roofs ?: IRoof[]
|
|
685
690
|
windowframes ?: IWindowframe[]
|
|
686
691
|
floorinrooms ?: IFloorinroom[]
|
|
692
|
+
heated : boolean
|
|
693
|
+
walkable : boolean
|
|
694
|
+
accessible : boolean
|
|
695
|
+
isattic : boolean
|
|
696
|
+
used : boolean
|
|
697
|
+
|
|
687
698
|
}
|
|
688
699
|
|
|
689
700
|
export interface IRoof extends IHouseobject{
|