@e-trias/woonplan 1.1.0 → 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 +12 -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
|
|
@@ -692,6 +699,9 @@ export interface IRoof extends IHouseobject{
|
|
|
692
699
|
side ?: ISide
|
|
693
700
|
rcvalue ?: number
|
|
694
701
|
housetypeid ?: string | null
|
|
702
|
+
|
|
703
|
+
roomid ?: string
|
|
704
|
+
room ?: IRoom
|
|
695
705
|
}
|
|
696
706
|
export interface IWindowframe extends IHouseobject{
|
|
697
707
|
userdataid : string
|
|
@@ -708,6 +718,8 @@ export interface IWindowframe extends IHouseobject{
|
|
|
708
718
|
height : number
|
|
709
719
|
needreplacing ?: boolean
|
|
710
720
|
housetypeid ?: string | null
|
|
721
|
+
|
|
722
|
+
room ?: IRoom
|
|
711
723
|
}
|
|
712
724
|
|
|
713
725
|
export interface IWindowframepart extends IHouseobject{
|