@likewatt/models-front 1.87.0 → 1.88.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.
|
@@ -19,9 +19,17 @@ export declare class DemandMultiplierSlot {
|
|
|
19
19
|
months?: Month[];
|
|
20
20
|
startHour?: string;
|
|
21
21
|
}
|
|
22
|
+
export declare class DistributionKeyValue {
|
|
23
|
+
days: number[];
|
|
24
|
+
distributionKey: number;
|
|
25
|
+
endHour?: string;
|
|
26
|
+
id: string;
|
|
27
|
+
months?: Month[];
|
|
28
|
+
startHour?: string;
|
|
29
|
+
}
|
|
22
30
|
export declare class DistributionKey {
|
|
23
31
|
type: string;
|
|
24
|
-
values:
|
|
32
|
+
values: DistributionKeyValue[];
|
|
25
33
|
}
|
|
26
34
|
export declare class RateOfGrowth {
|
|
27
35
|
id: string;
|
|
@@ -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.Pv = 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.DistributionKeyValue = exports.DemandMultiplierSlot = exports.Month = exports.Objective = void 0;
|
|
4
4
|
class Objective {
|
|
5
5
|
}
|
|
6
6
|
exports.Objective = Objective;
|
|
@@ -10,6 +10,9 @@ exports.Month = Month;
|
|
|
10
10
|
class DemandMultiplierSlot {
|
|
11
11
|
}
|
|
12
12
|
exports.DemandMultiplierSlot = DemandMultiplierSlot;
|
|
13
|
+
class DistributionKeyValue {
|
|
14
|
+
}
|
|
15
|
+
exports.DistributionKeyValue = DistributionKeyValue;
|
|
13
16
|
class DistributionKey {
|
|
14
17
|
}
|
|
15
18
|
exports.DistributionKey = DistributionKey;
|