@likewatt/models-front 1.19.0 → 1.20.0
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.
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export interface Comments {
|
|
2
|
+
CostPerMonth?: string;
|
|
3
|
+
DailyProfile?: string;
|
|
4
|
+
EnergyBalance?: string;
|
|
5
|
+
LineBalanceSheet?: string;
|
|
6
|
+
LoadCurve?: string;
|
|
7
|
+
ScenarioTable?: string;
|
|
8
|
+
TotalCost?: string;
|
|
9
|
+
TotalEnergy?: string;
|
|
10
|
+
GridEnergeticMix?: string;
|
|
11
|
+
LineBalanceSheetFromPopUp?: string;
|
|
12
|
+
Opex?: string;
|
|
13
|
+
PV_EnergeticMix?: string;
|
|
14
|
+
TechSummary?: string;
|
|
15
|
+
VanFromPopUp?: string;
|
|
16
|
+
Van?: string;
|
|
17
|
+
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { Comments } from '../common/Comments.types';
|
|
1
2
|
export declare class Objective {
|
|
2
3
|
id: number;
|
|
3
4
|
name: string;
|
|
@@ -57,6 +58,7 @@ export declare class ConfigSite {
|
|
|
57
58
|
export declare class Scenario {
|
|
58
59
|
_id: string;
|
|
59
60
|
color?: string;
|
|
61
|
+
comments?: Comments;
|
|
60
62
|
configScenario: ConfigScenario;
|
|
61
63
|
configSite?: Record<string, ConfigSite>;
|
|
62
64
|
error?: boolean;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { Comments } from '../common/Comments.types';
|
|
1
2
|
import { BuildingData } from '../site/BuildingData.types';
|
|
2
3
|
import { ConsumptionIndexes } from '../site/ConsumptionIndexes.types';
|
|
3
4
|
import { CustomerInfos } from '../site/CustomerInfos.types';
|
|
@@ -60,6 +61,7 @@ export interface Site {
|
|
|
60
61
|
buildingDataStatus?: BuildingDataStatus | null;
|
|
61
62
|
autoCO2: boolean;
|
|
62
63
|
co2rate: number | null;
|
|
64
|
+
comments?: Comments;
|
|
63
65
|
connectingPower: number;
|
|
64
66
|
consentFileUrl?: string;
|
|
65
67
|
consumptionIndexes?: ConsumptionIndexes;
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -65,3 +65,5 @@ __exportStar(require("./site/RestOfTheYearTarifs.types"), exports);
|
|
|
65
65
|
__exportStar(require("./site/SolarPotential.types"), exports);
|
|
66
66
|
__exportStar(require("./site/Tarif.types"), exports);
|
|
67
67
|
__exportStar(require("./core/SiteConstants"), exports);
|
|
68
|
+
// Common exports
|
|
69
|
+
__exportStar(require("./common/Comments.types"), exports);
|