energy-flow-control--types-and-enums 1.0.196 → 1.0.198

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.196",
3
+ "version": "1.0.198",
4
4
  "description": "",
5
5
  "main": "src/index.js",
6
6
  "types": "src/index.d.ts",
@@ -149,7 +149,7 @@ export enum EnumBillingPeriodState {
149
149
  export enum EnumRowSlots {
150
150
  'ONE' = 'col-1',
151
151
  'TWO' = 'col-2',
152
- 'TREE' = 'col-3',
152
+ 'THREE' = 'col-3',
153
153
  'FOUR' = 'col-4',
154
154
  'FIVE' = 'col-5',
155
155
  'SIX' = 'col-6',
package/src/index.js CHANGED
@@ -151,7 +151,7 @@ var EnumRowSlots;
151
151
  (function (EnumRowSlots) {
152
152
  EnumRowSlots["ONE"] = "col-1";
153
153
  EnumRowSlots["TWO"] = "col-2";
154
- EnumRowSlots["TREE"] = "col-3";
154
+ EnumRowSlots["THREE"] = "col-3";
155
155
  EnumRowSlots["FOUR"] = "col-4";
156
156
  EnumRowSlots["FIVE"] = "col-5";
157
157
  EnumRowSlots["SIX"] = "col-6";
@@ -174,7 +174,6 @@ export interface ILiveDataChargingProcess {
174
174
  start: number
175
175
  end: number
176
176
  }
177
- maxAllowedPowerInW: number
178
177
  chargedInKwh: number
179
178
  price: number
180
179
  maxChargingPrice: number
@@ -185,6 +184,7 @@ export interface ILiveDataChargingProcess {
185
184
  export interface ILiveDataWallBox {
186
185
  id: number
187
186
  powerInW: number
187
+ maxAllowedPowerInW: number
188
188
  consumptionInKwh: number | null
189
189
  isConnected: boolean
190
190
  isAuthorised: boolean