@e-trias/woonplan 1.0.95 → 1.0.96

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 +10 -2
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.0.95",
5
+ "version": "1.0.96",
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
@@ -577,11 +577,19 @@ export interface IHouseobject{
577
577
  measuredatas ?: IMeasuredata[]
578
578
  }
579
579
 
580
+ interface IHouselevel{
581
+ id : string
582
+ deleted : boolean
583
+ sortorder : number
584
+ userdataid ?: string
585
+ }
586
+
580
587
  export interface IHouse{
581
588
  windowframeparts : IWindowframepart[],
582
589
  floors : IFloor[],
583
590
  walls : IWall[],
584
- roofs : IRoof[]
591
+ roofs : IRoof[],
592
+ houselevels : IHouselevel[]
585
593
  }
586
594
 
587
595
  export interface IAbstractHouseObjectType{
@@ -982,7 +990,7 @@ interface EnergyIOState{
982
990
 
983
991
 
984
992
 
985
- type IHouseObjectName = "walls" | "floors" | "windowframeparts" | "roofs"
993
+ type IHouseObjectName = "walls" | "floors" | "windowframeparts" | "roofs" | "houselevels"
986
994
  type IHouseMap = Map< IHouseObjectName , IHouseObjectWithMeasuredatas[]>
987
995
 
988
996
  interface IHouseObjectWithMeasuredatas extends IHouseobject{