energy-flow-control--types-and-enums 1.0.272 → 1.0.273

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.272",
3
+ "version": "1.0.273",
4
4
  "description": "",
5
5
  "main": "src/index.js",
6
6
  "types": "src/index.d.ts",
@@ -750,3 +750,22 @@ interface IMetricReading {
750
750
  value: number
751
751
  }
752
752
 
753
+ export interface IEnergyMeterData {
754
+ inboundMeterReadingAtStartOfPeriod: number
755
+ inboundMeterReadingAtEndOfPeriod: number
756
+ inboundReadingInKwh: number
757
+ }
758
+
759
+ export interface IWallBoxData {
760
+ prosumerId?: number
761
+ inboundMeterReadingAtStartOfPeriod: number
762
+ inboundMeterReadingAtEndOfPeriod: number
763
+ inboundReadingInKwh: number
764
+ gridConsumptionInKwh: number
765
+ }
766
+
767
+ export interface IPeriodRatingData {
768
+ gridEnergyMeter: IEnergyMeterData
769
+ wallBoxes: IWallBoxData[]
770
+ householdRatings: IPeriodRating[]
771
+ }