@enyo-energy/energy-app-sdk 0.0.79 → 0.0.80

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.
@@ -1,2 +1,11 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.EnyoNetworkDeviceDetectedAtEnum = void 0;
4
+ var EnyoNetworkDeviceDetectedAtEnum;
5
+ (function (EnyoNetworkDeviceDetectedAtEnum) {
6
+ EnyoNetworkDeviceDetectedAtEnum["Eebus"] = "eebus";
7
+ EnyoNetworkDeviceDetectedAtEnum["Ocpp"] = "ocpp";
8
+ EnyoNetworkDeviceDetectedAtEnum["Hostname"] = "hostname";
9
+ EnyoNetworkDeviceDetectedAtEnum["Modbus"] = "modbus";
10
+ EnyoNetworkDeviceDetectedAtEnum["Http"] = "http";
11
+ })(EnyoNetworkDeviceDetectedAtEnum || (exports.EnyoNetworkDeviceDetectedAtEnum = EnyoNetworkDeviceDetectedAtEnum = {}));
@@ -1,3 +1,10 @@
1
+ export declare enum EnyoNetworkDeviceDetectedAtEnum {
2
+ Eebus = "eebus",
3
+ Ocpp = "ocpp",
4
+ Hostname = "hostname",
5
+ Modbus = "modbus",
6
+ Http = "http"
7
+ }
1
8
  /**
2
9
  * Represents a detected network device with its connectivity information.
3
10
  */
@@ -18,6 +25,7 @@ export interface EnyoNetworkDevice {
18
25
  ports?: EnyoNetworkPort[];
19
26
  /** Access status for the device */
20
27
  accessStatus: EnyoNetworkDeviceAccessStatus | undefined;
28
+ detectedAt: EnyoNetworkDeviceDetectedAtEnum[];
21
29
  }
22
30
  export type EnyoNetworkDeviceAccessStatus = 'granted' | 'denied' | 'pending';
23
31
  /**
@@ -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.79';
12
+ exports.SDK_VERSION = '0.0.80';
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.79";
8
+ export declare const SDK_VERSION = "0.0.80";
9
9
  /**
10
10
  * Gets the current SDK version.
11
11
  * @returns The semantic version string of the SDK
@@ -1,3 +1,10 @@
1
+ export declare enum EnyoNetworkDeviceDetectedAtEnum {
2
+ Eebus = "eebus",
3
+ Ocpp = "ocpp",
4
+ Hostname = "hostname",
5
+ Modbus = "modbus",
6
+ Http = "http"
7
+ }
1
8
  /**
2
9
  * Represents a detected network device with its connectivity information.
3
10
  */
@@ -18,6 +25,7 @@ export interface EnyoNetworkDevice {
18
25
  ports?: EnyoNetworkPort[];
19
26
  /** Access status for the device */
20
27
  accessStatus: EnyoNetworkDeviceAccessStatus | undefined;
28
+ detectedAt: EnyoNetworkDeviceDetectedAtEnum[];
21
29
  }
22
30
  export type EnyoNetworkDeviceAccessStatus = 'granted' | 'denied' | 'pending';
23
31
  /**
@@ -1 +1,8 @@
1
- export {};
1
+ export var EnyoNetworkDeviceDetectedAtEnum;
2
+ (function (EnyoNetworkDeviceDetectedAtEnum) {
3
+ EnyoNetworkDeviceDetectedAtEnum["Eebus"] = "eebus";
4
+ EnyoNetworkDeviceDetectedAtEnum["Ocpp"] = "ocpp";
5
+ EnyoNetworkDeviceDetectedAtEnum["Hostname"] = "hostname";
6
+ EnyoNetworkDeviceDetectedAtEnum["Modbus"] = "modbus";
7
+ EnyoNetworkDeviceDetectedAtEnum["Http"] = "http";
8
+ })(EnyoNetworkDeviceDetectedAtEnum || (EnyoNetworkDeviceDetectedAtEnum = {}));
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.79";
8
+ export declare const SDK_VERSION = "0.0.80";
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.79';
8
+ export const SDK_VERSION = '0.0.80';
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.79",
3
+ "version": "0.0.80",
4
4
  "description": "enyo Energy App SDK",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",