@e-trias/woonplan 1.3.246 → 1.3.247

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 +8 -11
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.3.246",
5
+ "version": "1.3.247",
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
@@ -565,8 +565,8 @@ export interface IMeasuredata{
565
565
  reinvestments ?: IReinvestment[]
566
566
  maintenances ?: IMaintenance[]
567
567
 
568
- questionsetids ?: string[]
569
-
568
+ questionsetids ?: string
569
+
570
570
  thickness ?: number
571
571
 
572
572
  floorid ?: string
@@ -1029,17 +1029,14 @@ export interface IFloortype extends IAbstractHouseObjectType{
1029
1029
  lambda ?: number
1030
1030
  rcvalue ?: number
1031
1031
  image ?: string
1032
- floors : IFloor[]
1033
1032
  }
1034
1033
 
1035
1034
  export interface IRooftype extends IAbstractHouseObjectType{
1036
1035
  image ?: string
1037
- roofs : IRoof[]
1038
1036
  }
1039
1037
 
1040
1038
  export interface IWalltype extends IAbstractHouseObjectType{
1041
1039
  image ?: string
1042
- walls : IWall[]
1043
1040
  }
1044
1041
 
1045
1042
 
@@ -1289,7 +1286,7 @@ export interface IGasfreeoption{
1289
1286
  sortorder ?: number
1290
1287
  riskfactor : number
1291
1288
  gasfreeoptionmeasures ?: IGasfreeoptionmeasure[]
1292
- measures : IMeasure[]
1289
+ measures ?: IMeasure[]
1293
1290
  }
1294
1291
  export interface IGasfreeoptionmeasure{
1295
1292
  id ?: string
@@ -1890,11 +1887,11 @@ export interface IAbstractInsulation{
1890
1887
  deleted ?: boolean
1891
1888
  sortorder ?: number
1892
1889
  measures : IMeasure[]
1893
- measuredatas : IMeasuredata[]
1890
+ measuredatas ?: IMeasuredata[]
1894
1891
  }
1895
1892
 
1896
1893
  export interface IInsulationmethod extends IAbstractInsulation{
1897
- insulationtypes : IInsulationtype[]
1894
+ insulationtypes ?: IInsulationtype[]
1898
1895
  image ?: string
1899
1896
  walltypes ?: IWalltype[]
1900
1897
  floortypes ?: IFloortype[]
@@ -1903,14 +1900,14 @@ export interface IInsulationlocation extends IAbstractInsulation{
1903
1900
  rooftypeinsulationlocations ?: {
1904
1901
  rooftypeid: string
1905
1902
  }[]
1906
- insulationtypes : IInsulationtype[]
1903
+ insulationtypes ?: IInsulationtype[]
1907
1904
  image ?: string
1908
1905
  }
1909
1906
  export interface IInsulationtype extends IAbstractInsulation{
1910
1907
  lambda ?: number
1911
1908
  rcvalue ?: number
1912
- insulationmethods : IInsulationmethod[]
1913
- insulationlocations : IInsulationlocation[]
1909
+ insulationmethods ?: IInsulationmethod[]
1910
+ insulationlocations ?: IInsulationlocation[]
1914
1911
  image ?: string
1915
1912
  walltypes ?: IWalltype[]
1916
1913
  floortypes ?: IFloortype[]