@enyo-energy/energy-app-sdk 0.0.70 → 0.0.71

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.
@@ -25,6 +25,11 @@ export interface EnyoApplianceNetworkMetadata {
25
25
  /** If the appliance is connected via cellular network, you can put the imsi here*/
26
26
  imsi?: string;
27
27
  }
28
+ /** Modbus connection metadata for the appliance */
29
+ export interface EnyoApplianceModbusMetadata {
30
+ /** The Modbus unit identifier for addressing the appliance */
31
+ unitId: number;
32
+ }
28
33
  export declare enum EnyoApplianceConnectionType {
29
34
  Connector = "Connector",
30
35
  Cloud = "Cloud"
@@ -37,6 +42,7 @@ export interface EnyoApplianceMetadata {
37
42
  hostname?: string;
38
43
  state?: EnyoApplianceStateEnum;
39
44
  network?: EnyoApplianceNetworkMetadata;
45
+ modbus?: EnyoApplianceModbusMetadata;
40
46
  connectionType: EnyoApplianceConnectionType;
41
47
  }
42
48
  export declare enum EnyoApplianceTopologyFeatureEnum {
@@ -9,7 +9,7 @@ exports.getSdkVersion = getSdkVersion;
9
9
  /**
10
10
  * Current version of the enyo Energy App SDK.
11
11
  */
12
- exports.SDK_VERSION = '0.0.70';
12
+ exports.SDK_VERSION = '0.0.71';
13
13
  /**
14
14
  * Gets the current SDK version.
15
15
  * @returns The semantic version string of the SDK
@@ -5,7 +5,7 @@
5
5
  /**
6
6
  * Current version of the enyo Energy App SDK.
7
7
  */
8
- export declare const SDK_VERSION = "0.0.70";
8
+ export declare const SDK_VERSION = "0.0.71";
9
9
  /**
10
10
  * Gets the current SDK version.
11
11
  * @returns The semantic version string of the SDK
@@ -25,6 +25,11 @@ export interface EnyoApplianceNetworkMetadata {
25
25
  /** If the appliance is connected via cellular network, you can put the imsi here*/
26
26
  imsi?: string;
27
27
  }
28
+ /** Modbus connection metadata for the appliance */
29
+ export interface EnyoApplianceModbusMetadata {
30
+ /** The Modbus unit identifier for addressing the appliance */
31
+ unitId: number;
32
+ }
28
33
  export declare enum EnyoApplianceConnectionType {
29
34
  Connector = "Connector",
30
35
  Cloud = "Cloud"
@@ -37,6 +42,7 @@ export interface EnyoApplianceMetadata {
37
42
  hostname?: string;
38
43
  state?: EnyoApplianceStateEnum;
39
44
  network?: EnyoApplianceNetworkMetadata;
45
+ modbus?: EnyoApplianceModbusMetadata;
40
46
  connectionType: EnyoApplianceConnectionType;
41
47
  }
42
48
  export declare enum EnyoApplianceTopologyFeatureEnum {
package/dist/version.d.ts CHANGED
@@ -5,7 +5,7 @@
5
5
  /**
6
6
  * Current version of the enyo Energy App SDK.
7
7
  */
8
- export declare const SDK_VERSION = "0.0.70";
8
+ export declare const SDK_VERSION = "0.0.71";
9
9
  /**
10
10
  * Gets the current SDK version.
11
11
  * @returns The semantic version string of the SDK
package/dist/version.js CHANGED
@@ -5,7 +5,7 @@
5
5
  /**
6
6
  * Current version of the enyo Energy App SDK.
7
7
  */
8
- export const SDK_VERSION = '0.0.70';
8
+ export const SDK_VERSION = '0.0.71';
9
9
  /**
10
10
  * Gets the current SDK version.
11
11
  * @returns The semantic version string of the SDK
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@enyo-energy/energy-app-sdk",
3
- "version": "0.0.70",
3
+ "version": "0.0.71",
4
4
  "description": "enyo Energy App SDK",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",