@e-trias/woonplan 1.3.296 → 1.3.299
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.
- package/package.json +1 -1
- package/types.d.ts +8 -7
package/package.json
CHANGED
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 ?: CombinedAdvicedHouseobject[]
|
|
2642
|
+
walls ?: CombinedAdvicedHouseobject[]
|
|
2643
|
+
roofs ?: CombinedAdvicedHouseobject[]
|
|
2644
|
+
windowframeparts ?: CombinedAdvicedHouseobject[]
|
|
2645
|
+
}
|
|
2639
2646
|
}
|
|
2640
2647
|
|
|
2641
2648
|
export interface CombinedAdviceSolarRow {
|
|
@@ -2654,7 +2661,7 @@ export interface CombinedAdviceSolar {
|
|
|
2654
2661
|
excess: number;
|
|
2655
2662
|
}
|
|
2656
2663
|
|
|
2657
|
-
export interface
|
|
2664
|
+
export interface CombinedAdvicedHouseobject extends IHouseObjectWithMeasuredatas{
|
|
2658
2665
|
advicedmeasuredatas: IMeasuredata[];
|
|
2659
2666
|
possiblemeasuredatas: IMeasuredata[];
|
|
2660
2667
|
|
|
@@ -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
|
}
|