@e-trias/woonplan 1.3.327 → 1.3.329
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 +7 -1
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -2678,6 +2678,11 @@ export interface CombinedAdviceSavings {
|
|
|
2678
2678
|
co2: number;
|
|
2679
2679
|
}
|
|
2680
2680
|
|
|
2681
|
+
|
|
2682
|
+
export interface CombinedAdviceAppliedMeasuredatas extends IMeasuredata{
|
|
2683
|
+
houseobjectids ?: string[]
|
|
2684
|
+
}
|
|
2685
|
+
|
|
2681
2686
|
export interface CombinedAdvicePackageMeasures {
|
|
2682
2687
|
returnpercentage?: number | undefined;
|
|
2683
2688
|
payback?: number | undefined;
|
|
@@ -2691,7 +2696,7 @@ export interface CombinedAdvicePackageMeasures {
|
|
|
2691
2696
|
applicable : boolean
|
|
2692
2697
|
completed : boolean
|
|
2693
2698
|
|
|
2694
|
-
appliedmeasuredatas ?:
|
|
2699
|
+
appliedmeasuredatas ?: CombinedAdviceAppliedMeasuredatas[]
|
|
2695
2700
|
|
|
2696
2701
|
houseobjects ?: {
|
|
2697
2702
|
floors ?: CombinedAdvicedHouseobject[]
|
|
@@ -2754,4 +2759,5 @@ export interface CombinedAdvice{
|
|
|
2754
2759
|
}
|
|
2755
2760
|
}
|
|
2756
2761
|
totals : CombinedAdviceTotal
|
|
2762
|
+
loans : IPreferredFinancingOption[]
|
|
2757
2763
|
}
|