@e-trias/woonplan 1.1.1 → 1.1.2
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
|
@@ -637,6 +637,7 @@ export interface IFloorinroom{
|
|
|
637
637
|
floorid ?: string
|
|
638
638
|
roomid ?: string
|
|
639
639
|
surface ?: number
|
|
640
|
+
room ?: IRoom
|
|
640
641
|
}
|
|
641
642
|
|
|
642
643
|
export interface IFloor extends IHouseobject{
|
|
@@ -678,6 +679,12 @@ export interface IWall extends IHouseobject{
|
|
|
678
679
|
housetypeid ?: string | null
|
|
679
680
|
}
|
|
680
681
|
|
|
682
|
+
interface IRoom extends IHouseobject{
|
|
683
|
+
houselevel ?: IHouselevel
|
|
684
|
+
roofs ?: IRoof[]
|
|
685
|
+
windowframes ?: IWindowframe[]
|
|
686
|
+
floorinrooms ?: IFloorinroom[]
|
|
687
|
+
}
|
|
681
688
|
|
|
682
689
|
export interface IRoof extends IHouseobject{
|
|
683
690
|
shadowpercentage ?: number
|
|
@@ -694,6 +701,7 @@ export interface IRoof extends IHouseobject{
|
|
|
694
701
|
housetypeid ?: string | null
|
|
695
702
|
|
|
696
703
|
roomid ?: string
|
|
704
|
+
room ?: IRoom
|
|
697
705
|
}
|
|
698
706
|
export interface IWindowframe extends IHouseobject{
|
|
699
707
|
userdataid : string
|
|
@@ -710,6 +718,8 @@ export interface IWindowframe extends IHouseobject{
|
|
|
710
718
|
height : number
|
|
711
719
|
needreplacing ?: boolean
|
|
712
720
|
housetypeid ?: string | null
|
|
721
|
+
|
|
722
|
+
room ?: IRoom
|
|
713
723
|
}
|
|
714
724
|
|
|
715
725
|
export interface IWindowframepart extends IHouseobject{
|