energy-flow-control--types-and-enums 1.0.274 → 1.0.276

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.274",
3
+ "version": "1.0.276",
4
4
  "description": "",
5
5
  "main": "src/index.js",
6
6
  "types": "src/index.d.ts",
@@ -286,6 +286,7 @@ export enum EnumUnit {
286
286
 
287
287
  export enum EnumMetricChannel {
288
288
  BATTERY_SOC = 'battery.SoC',
289
+ BATTERY_TEMPERATURE = 'battery.temperature',
289
290
  TEMPERATURE = 'temperature',
290
291
  RELAY_1_SWITCH = 'switch.1',
291
292
  RELAY_2_SWITCH = 'switch.2',
@@ -294,4 +295,7 @@ export enum EnumMetricChannel {
294
295
  ISOLATION_RESISTANCE = 'string.isolationResistance',
295
296
  POWER_GRANTED = 'power.charging',
296
297
  POWER_MEASURED = 'power.measured',
298
+ GRID_CURRENT_L1 = 'GRID_CURRENT_L1',
299
+ GRID_CURRENT_L2 = 'GRID_CURRENT_L2',
300
+ GRID_CURRENT_L3 = 'GRID_CURRENT_L3',
297
301
  }
package/src/index.js CHANGED
@@ -288,6 +288,7 @@ var EnumUnit;
288
288
  var EnumMetricChannel;
289
289
  (function (EnumMetricChannel) {
290
290
  EnumMetricChannel["BATTERY_SOC"] = "battery.SoC";
291
+ EnumMetricChannel["BATTERY_TEMPERATURE"] = "battery.temperature";
291
292
  EnumMetricChannel["TEMPERATURE"] = "temperature";
292
293
  EnumMetricChannel["RELAY_1_SWITCH"] = "switch.1";
293
294
  EnumMetricChannel["RELAY_2_SWITCH"] = "switch.2";
@@ -296,4 +297,7 @@ var EnumMetricChannel;
296
297
  EnumMetricChannel["ISOLATION_RESISTANCE"] = "string.isolationResistance";
297
298
  EnumMetricChannel["POWER_GRANTED"] = "power.charging";
298
299
  EnumMetricChannel["POWER_MEASURED"] = "power.measured";
300
+ EnumMetricChannel["GRID_CURRENT_L1"] = "GRID_CURRENT_L1";
301
+ EnumMetricChannel["GRID_CURRENT_L2"] = "GRID_CURRENT_L2";
302
+ EnumMetricChannel["GRID_CURRENT_L3"] = "GRID_CURRENT_L3";
299
303
  })(EnumMetricChannel || (exports.EnumMetricChannel = EnumMetricChannel = {}));