@likewatt/models 1.0.21 → 1.0.23
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/Site.d.ts +2 -1
- package/dist/core/Site.js +1 -1
- package/package.json +1 -1
package/dist/core/Site.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ import { BuildingData } from './internal/building-data';
|
|
|
9
9
|
import { RestOfTheYearTarifs } from './internal/rest-of-the-years-tarif';
|
|
10
10
|
import { DataSourceHistory } from './internal/data-source-history';
|
|
11
11
|
import { ConsumptionIndexes } from './internal/consumption-indexes';
|
|
12
|
+
import { EnergyPriceTempo } from './internal/energy-price-tempo.model';
|
|
12
13
|
export declare class Site {
|
|
13
14
|
country: string;
|
|
14
15
|
energyPrices: EnergyPrice[];
|
|
@@ -71,7 +72,7 @@ export declare class Site {
|
|
|
71
72
|
disabled: boolean;
|
|
72
73
|
enedisBuffer: string;
|
|
73
74
|
enedisData: boolean;
|
|
74
|
-
energyPricesTempo:
|
|
75
|
+
energyPricesTempo: EnergyPriceTempo[];
|
|
75
76
|
energyPricesWe: EnergyPrice[];
|
|
76
77
|
error: string;
|
|
77
78
|
faltyPrm?: string;
|
package/dist/core/Site.js
CHANGED
|
@@ -398,7 +398,7 @@ __decorate([
|
|
|
398
398
|
], Site.prototype, "enedisData", void 0);
|
|
399
399
|
__decorate([
|
|
400
400
|
(0, swagger_1.ApiProperty)({ type: [energy_price_tempo_model_1.EnergyPriceTempo] }),
|
|
401
|
-
(0, mongoose_1.Prop)({ type: [energy_price_tempo_model_1.
|
|
401
|
+
(0, mongoose_1.Prop)({ type: [energy_price_tempo_model_1.EnergyPriceTempoSchema], required: true }),
|
|
402
402
|
(0, class_validator_1.IsArray)(),
|
|
403
403
|
__metadata("design:type", Array)
|
|
404
404
|
], Site.prototype, "energyPricesTempo", void 0);
|