energy-flow-control--types-and-enums 1.0.190 → 1.0.191

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "energy-flow-control--types-and-enums",
3
- "version": "1.0.190",
3
+ "version": "1.0.191",
4
4
  "description": "",
5
5
  "main": "src/index.js",
6
6
  "types": "src/index.d.ts",
@@ -565,4 +565,22 @@ export interface ISolarForecastApi extends ITimeTravelProps {
565
565
  requestIntervalInH: number
566
566
  inUse: boolean
567
567
  params: Record<string, any>
568
- }
568
+ }
569
+
570
+ export interface IEnergyExchangePrice extends ITimeTravelProps {
571
+ periodStart: Date
572
+ periodEnd: Date
573
+ exchangePrice: number
574
+ totalPrice: number
575
+ timestamp: Date
576
+ }
577
+
578
+ export interface ISolarGenerationForecast {
579
+ id: number
580
+ apiName: string
581
+ pvStringId: number
582
+ periodStart: Date
583
+ periodEnd: Date
584
+ valueInWh: number
585
+ updatedAt: Date | null
586
+ }