@e-trias/woonplan 1.3.247 → 1.3.249

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