@e-trias/woonplan 1.3.297 → 1.3.300
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 +6 -5
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -2546,6 +2546,7 @@ export interface IBuildingSettings{
|
|
|
2546
2546
|
contactid : string,
|
|
2547
2547
|
date : string
|
|
2548
2548
|
}[]
|
|
2549
|
+
blockedadvice ?: ICustomAdviceCombination
|
|
2549
2550
|
}
|
|
2550
2551
|
|
|
2551
2552
|
|
|
@@ -2638,10 +2639,10 @@ export interface CombinedAdvicePackageMeasures {
|
|
|
2638
2639
|
completed : boolean
|
|
2639
2640
|
|
|
2640
2641
|
houseobjects ?: {
|
|
2641
|
-
floors ?:
|
|
2642
|
-
walls ?:
|
|
2643
|
-
roofs ?:
|
|
2644
|
-
windowframeparts ?:
|
|
2642
|
+
floors ?: CombinedAdvicedHouseobject[]
|
|
2643
|
+
walls ?: CombinedAdvicedHouseobject[]
|
|
2644
|
+
roofs ?: CombinedAdvicedHouseobject[]
|
|
2645
|
+
windowframeparts ?: CombinedAdvicedHouseobject[]
|
|
2645
2646
|
}
|
|
2646
2647
|
}
|
|
2647
2648
|
|
|
@@ -2661,7 +2662,7 @@ export interface CombinedAdviceSolar {
|
|
|
2661
2662
|
excess: number;
|
|
2662
2663
|
}
|
|
2663
2664
|
|
|
2664
|
-
export interface
|
|
2665
|
+
export interface CombinedAdvicedHouseobject extends IHouseObjectWithMeasuredatas{
|
|
2665
2666
|
advicedmeasuredatas: IMeasuredata[];
|
|
2666
2667
|
possiblemeasuredatas: IMeasuredata[];
|
|
2667
2668
|
|