@e-trias/woonplan 1.3.296 → 1.3.297

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 +7 -6
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.296",
5
+ "version": "1.3.297",
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
@@ -2636,6 +2636,13 @@ export interface CombinedAdvicePackageMeasures {
2636
2636
  active : boolean
2637
2637
  applicable : boolean
2638
2638
  completed : boolean
2639
+
2640
+ houseobjects ?: {
2641
+ floors ?: CombinedAdvicedMeasuredata
2642
+ walls ?: CombinedAdvicedMeasuredata
2643
+ roofs ?: CombinedAdvicedMeasuredata
2644
+ windowframeparts ?: CombinedAdvicedMeasuredata
2645
+ }
2639
2646
  }
2640
2647
 
2641
2648
  export interface CombinedAdviceSolarRow {
@@ -2667,10 +2674,4 @@ export interface CombinedAdvice{
2667
2674
  buildinginvestment : number
2668
2675
  userdataid : string
2669
2676
  contactid : string
2670
- houseobjects ?: {
2671
- floors ?: CombinedAdvicedMeasuredata
2672
- walls ?: CombinedAdvicedMeasuredata
2673
- roofs ?: CombinedAdvicedMeasuredata
2674
- windowframeparts ?: CombinedAdvicedMeasuredata
2675
- }
2676
2677
  }