@likewatt/models-front 1.23.1 → 1.25.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.
|
@@ -34,6 +34,13 @@ export declare class Technology {
|
|
|
34
34
|
type?: number;
|
|
35
35
|
settings: Record<string, unknown>;
|
|
36
36
|
}
|
|
37
|
+
export declare class Pv {
|
|
38
|
+
id: string;
|
|
39
|
+
name: string;
|
|
40
|
+
settings: Record<string, unknown>;
|
|
41
|
+
index?: number;
|
|
42
|
+
type?: number;
|
|
43
|
+
}
|
|
37
44
|
export declare class ConfigScenario {
|
|
38
45
|
debtDuration?: number;
|
|
39
46
|
debtRatio?: number;
|
|
@@ -75,6 +82,7 @@ export declare class Scenario {
|
|
|
75
82
|
sellingPriceInflation?: number;
|
|
76
83
|
siteId?: string;
|
|
77
84
|
technologies?: Technology[];
|
|
85
|
+
pvs?: Pv[];
|
|
78
86
|
version?: number;
|
|
79
87
|
_createdAt: Date;
|
|
80
88
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ScenarioType = exports.Scenario = exports.ConfigSite = exports.ConfigScenario = exports.Technology = exports.RateOfGrowth = exports.DistributionKey = exports.DemandMultiplierSlot = exports.Month = exports.Objective = void 0;
|
|
3
|
+
exports.ScenarioType = exports.Scenario = exports.ConfigSite = exports.ConfigScenario = exports.Pv = exports.Technology = exports.RateOfGrowth = exports.DistributionKey = exports.DemandMultiplierSlot = exports.Month = exports.Objective = void 0;
|
|
4
4
|
class Objective {
|
|
5
5
|
}
|
|
6
6
|
exports.Objective = Objective;
|
|
@@ -19,6 +19,9 @@ exports.RateOfGrowth = RateOfGrowth;
|
|
|
19
19
|
class Technology {
|
|
20
20
|
}
|
|
21
21
|
exports.Technology = Technology;
|
|
22
|
+
class Pv {
|
|
23
|
+
}
|
|
24
|
+
exports.Pv = Pv;
|
|
22
25
|
class ConfigScenario {
|
|
23
26
|
}
|
|
24
27
|
exports.ConfigScenario = ConfigScenario;
|