@likewatt/models-front 1.4.0 → 1.5.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.
- package/dist/core/CollectiveSite.types.d.ts +1 -1
- package/dist/core/DefaultRate.types.d.ts +2 -2
- package/dist/core/ScenarioDefaultValue.types.d.ts +20 -20
- package/dist/core/Site.types.d.ts +13 -14
- package/dist/core/User.type.d.ts +1 -1
- package/dist/scenario/FinancingType.types.d.ts +1 -1
- package/dist/scenario/PV2Params.types.d.ts +2 -2
- package/dist/scenario/PVParams.types.d.ts +2 -2
- package/dist/scenario/Tracker.types.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { RestOfTheYearTarifs } from
|
|
2
|
-
import { Tarif } from
|
|
1
|
+
import { RestOfTheYearTarifs } from '../site/RestOfTheYearTarifs.types';
|
|
2
|
+
import { Tarif } from '../site/Tarif.types';
|
|
3
3
|
export interface DefaultRate {
|
|
4
4
|
_id?: string;
|
|
5
5
|
name?: string;
|
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
import { BatteryParams } from
|
|
2
|
-
import { ConversionParams } from
|
|
3
|
-
import { DefaultPPATarif } from
|
|
4
|
-
import { ECSParams } from
|
|
5
|
-
import { ElectrolyseParams } from
|
|
6
|
-
import { FinancingType } from
|
|
7
|
-
import { FuelCellParams } from
|
|
8
|
-
import { GeneratorParams } from
|
|
9
|
-
import { GridParams } from
|
|
10
|
-
import { H2StorageParams } from
|
|
11
|
-
import { OptimizationParams } from
|
|
12
|
-
import { PowerCostConfig } from
|
|
13
|
-
import { PV2Params } from
|
|
14
|
-
import { PVParams } from
|
|
15
|
-
import { ScenarioParams } from
|
|
16
|
-
import { StationParams } from
|
|
17
|
-
import { ThermalStorageParams } from
|
|
18
|
-
import { VSParams } from
|
|
19
|
-
import { WindTurbineParams } from
|
|
20
|
-
import { ConfigSite } from
|
|
1
|
+
import { BatteryParams } from '../scenario/BatteryParams.types';
|
|
2
|
+
import { ConversionParams } from '../scenario/ConversionParams.types';
|
|
3
|
+
import { DefaultPPATarif } from '../scenario/DefaultPPATarif.types';
|
|
4
|
+
import { ECSParams } from '../scenario/ECSParams.types';
|
|
5
|
+
import { ElectrolyseParams } from '../scenario/ElectrolyseParams.types';
|
|
6
|
+
import { FinancingType } from '../scenario/FinancingType.types';
|
|
7
|
+
import { FuelCellParams } from '../scenario/FuelCellParams.types';
|
|
8
|
+
import { GeneratorParams } from '../scenario/GeneratorParams.types';
|
|
9
|
+
import { GridParams } from '../scenario/GridParams.types';
|
|
10
|
+
import { H2StorageParams } from '../scenario/H2StorageParams.types';
|
|
11
|
+
import { OptimizationParams } from '../scenario/OptimizationParams.types';
|
|
12
|
+
import { PowerCostConfig } from '../scenario/PowerCostConfig.types';
|
|
13
|
+
import { PV2Params } from '../scenario/PV2Params.types';
|
|
14
|
+
import { PVParams } from '../scenario/PVParams.types';
|
|
15
|
+
import { ScenarioParams } from '../scenario/ScenarioParams.types';
|
|
16
|
+
import { StationParams } from '../scenario/StationParams.types';
|
|
17
|
+
import { ThermalStorageParams } from '../scenario/ThermalStorageParams.types';
|
|
18
|
+
import { VSParams } from '../scenario/VSParams.types';
|
|
19
|
+
import { WindTurbineParams } from '../scenario/WindTurbineParams.types';
|
|
20
|
+
import { ConfigSite } from './Scenario.type';
|
|
21
21
|
export interface ScenarioDefaultValue {
|
|
22
22
|
defaultPPATarif: DefaultPPATarif;
|
|
23
23
|
VERSION: number;
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { BuildingData } from
|
|
2
|
-
import { ConsumptionIndexes } from
|
|
3
|
-
import { CustomerInfos } from
|
|
4
|
-
import { DataSourceHistory } from
|
|
5
|
-
import { EnergyPrice } from
|
|
6
|
-
import { EnergyPriceTempo } from
|
|
7
|
-
import { Profiles, SiteType } from
|
|
8
|
-
import { OffPeakHour } from
|
|
9
|
-
import { PeakHour } from
|
|
10
|
-
import { RestOfTheYearTarifs } from
|
|
11
|
-
import { Tarif } from
|
|
1
|
+
import { BuildingData } from '../site/BuildingData.types';
|
|
2
|
+
import { ConsumptionIndexes } from '../site/ConsumptionIndexes.types';
|
|
3
|
+
import { CustomerInfos } from '../site/CustomerInfos.types';
|
|
4
|
+
import { DataSourceHistory } from '../site/DataSourceHistory.types';
|
|
5
|
+
import { EnergyPrice } from '../site/EnergyPrice.types';
|
|
6
|
+
import { EnergyPriceTempo } from '../site/EnergyPriceTempo.types';
|
|
7
|
+
import { Profiles, SiteType } from '../site/enums.types';
|
|
8
|
+
import { OffPeakHour } from '../site/OffPeakHour.types';
|
|
9
|
+
import { PeakHour } from '../site/PeakHour.types';
|
|
10
|
+
import { RestOfTheYearTarifs } from '../site/RestOfTheYearTarifs.types';
|
|
11
|
+
import { Tarif } from '../site/Tarif.types';
|
|
12
12
|
export interface Site {
|
|
13
13
|
_id?: string;
|
|
14
14
|
id?: string;
|
|
@@ -28,7 +28,6 @@ export interface Site {
|
|
|
28
28
|
owner: string;
|
|
29
29
|
name: string;
|
|
30
30
|
isC_AND_I: boolean;
|
|
31
|
-
appUrl: string;
|
|
32
31
|
addressDepartementNum: number;
|
|
33
32
|
addressZipCode: string;
|
|
34
33
|
subscribedPowers: EnergyPrice[];
|
|
@@ -54,9 +53,8 @@ export interface Site {
|
|
|
54
53
|
_lastUpdated: string;
|
|
55
54
|
_step3: boolean;
|
|
56
55
|
_step3At: Date | string;
|
|
57
|
-
analysisId: string;
|
|
58
56
|
analysisYear: number;
|
|
59
|
-
buildingData
|
|
57
|
+
buildingData?: BuildingData;
|
|
60
58
|
autoCO2?: boolean;
|
|
61
59
|
co2rate?: number;
|
|
62
60
|
connectingPower: number;
|
|
@@ -68,6 +66,7 @@ export interface Site {
|
|
|
68
66
|
customerConsentFirstName: string;
|
|
69
67
|
customerConsentLastName: string;
|
|
70
68
|
dataIsHybridFrom: string;
|
|
69
|
+
dataSource: string;
|
|
71
70
|
dataSourceHistory: DataSourceHistory[];
|
|
72
71
|
disabled: boolean;
|
|
73
72
|
enedisBuffer: string;
|
package/dist/core/User.type.d.ts
CHANGED