@e-trias/woonplan 1.3.241 → 1.3.243

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 +5 -5
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.241",
5
+ "version": "1.3.243",
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
@@ -1286,7 +1286,7 @@ export interface IGasfreeoption{
1286
1286
  sortorder ?: number
1287
1287
  riskfactor : number
1288
1288
  gasfreeoptionmeasures ?: IGasfreeoptionmeasure[]
1289
- measures ?: IMeasure[]
1289
+ measures : IMeasure[]
1290
1290
  }
1291
1291
  export interface IGasfreeoptionmeasure{
1292
1292
  id ?: string
@@ -1891,7 +1891,7 @@ export interface IAbstractInsulation{
1891
1891
  }
1892
1892
 
1893
1893
  export interface IInsulationmethod extends IAbstractInsulation{
1894
- insulationtypes ?: IInsulationtype[]
1894
+ insulationtypes : IInsulationtype[]
1895
1895
  image ?: string
1896
1896
  walltypes ?: IWalltype[]
1897
1897
  floortypes ?: IFloortype[]
@@ -1900,14 +1900,14 @@ export interface IInsulationlocation extends IAbstractInsulation{
1900
1900
  rooftypeinsulationlocations ?: {
1901
1901
  rooftypeid: string
1902
1902
  }[]
1903
- insulationtypes ?: IInsulationtype[]
1903
+ insulationtypes : IInsulationtype[]
1904
1904
  image ?: string
1905
1905
  }
1906
1906
  export interface IInsulationtype extends IAbstractInsulation{
1907
1907
  lambda ?: number
1908
1908
  rcvalue ?: number
1909
- insulationmethods ?: IInsulationmethod[]
1910
- insulationlocations ?: IInsulationlocation[]
1909
+ insulationmethods : IInsulationmethod[]
1910
+ insulationlocations : IInsulationlocation[]
1911
1911
  image ?: string
1912
1912
  walltypes ?: IWalltype[]
1913
1913
  floortypes ?: IFloortype[]