@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 {
|
package/dist/cjs/version.cjs
CHANGED
|
@@ -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.
|
|
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
|
package/dist/cjs/version.d.cts
CHANGED
|
@@ -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
package/dist/version.js
CHANGED