@e-trias/woonplan 1.3.332 → 1.3.334
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
|
@@ -2667,9 +2667,15 @@ export interface CombinedAdviceCosts {
|
|
|
2667
2667
|
fuel: CombinedAdviceFuelPerUnit | undefined;
|
|
2668
2668
|
}
|
|
2669
2669
|
|
|
2670
|
+
export interface CombinedAdviceMonetarySavingsPerMeasuredata {
|
|
2671
|
+
measuredataid: string;
|
|
2672
|
+
savings: number;
|
|
2673
|
+
}
|
|
2674
|
+
|
|
2670
2675
|
export interface CombinedAdviceSavingsMonetary {
|
|
2671
2676
|
total: number;
|
|
2672
2677
|
fuel: FuelDistribution | undefined;
|
|
2678
|
+
per_measuredataid: CombinedAdviceMonetarySavingsPerMeasuredata[];
|
|
2673
2679
|
}
|
|
2674
2680
|
|
|
2675
2681
|
export interface CombinedAdviceSavings {
|
|
@@ -2693,7 +2699,7 @@ export interface CombinedAdviceSavingsKwhPerMeasuredata {
|
|
|
2693
2699
|
|
|
2694
2700
|
export interface CombinedAdviceInvestmentPerMeasuredata {
|
|
2695
2701
|
measuredataid: string;
|
|
2696
|
-
investment:
|
|
2702
|
+
investment: number;
|
|
2697
2703
|
}
|
|
2698
2704
|
|
|
2699
2705
|
export interface CombinedAdvicePackageMeasures {
|