@e-trias/woonplan 1.1.1 → 1.1.3

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/types.d.ts +16 -0
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@e-trias/woonplan",
3
3
  "private": false,
4
4
  "types": "types.d.ts",
5
- "version": "1.1.1",
5
+ "version": "1.1.3",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1",
8
8
  "build": "tsc -p tsconfig.json"
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,18 @@ 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
+ heated : boolean
688
+ walkable : boolean
689
+ accessible : boolean
690
+ isattic : boolean
691
+ used : boolean
692
+
693
+ }
681
694
 
682
695
  export interface IRoof extends IHouseobject{
683
696
  shadowpercentage ?: number
@@ -694,6 +707,7 @@ export interface IRoof extends IHouseobject{
694
707
  housetypeid ?: string | null
695
708
 
696
709
  roomid ?: string
710
+ room ?: IRoom
697
711
  }
698
712
  export interface IWindowframe extends IHouseobject{
699
713
  userdataid : string
@@ -710,6 +724,8 @@ export interface IWindowframe extends IHouseobject{
710
724
  height : number
711
725
  needreplacing ?: boolean
712
726
  housetypeid ?: string | null
727
+
728
+ room ?: IRoom
713
729
  }
714
730
 
715
731
  export interface IWindowframepart extends IHouseobject{