@enyo-energy/sunspec-sdk 0.0.1 → 0.0.2

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.
@@ -0,0 +1,23 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ exports.getSdkVersion = exports.SDK_VERSION = void 0;
18
+ __exportStar(require("./sunspec-interfaces.cjs"), exports);
19
+ __exportStar(require("./sunspec-devices.cjs"), exports);
20
+ __exportStar(require("./sunspec-modbus-client.cjs"), exports);
21
+ var version_js_1 = require("./version.cjs");
22
+ Object.defineProperty(exports, "SDK_VERSION", { enumerable: true, get: function () { return version_js_1.SDK_VERSION; } });
23
+ Object.defineProperty(exports, "getSdkVersion", { enumerable: true, get: function () { return version_js_1.getSdkVersion; } });
@@ -0,0 +1,4 @@
1
+ export * from './sunspec-interfaces.cjs';
2
+ export * from './sunspec-devices.cjs';
3
+ export * from './sunspec-modbus-client.cjs';
4
+ export { SDK_VERSION, getSdkVersion } from './version.cjs';
@@ -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.1';
12
+ exports.SDK_VERSION = '0.0.2';
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.1";
8
+ export declare const SDK_VERSION = "0.0.2";
9
9
  /**
10
10
  * Gets the current SDK version.
11
11
  * @returns The semantic version string of the SDK
@@ -0,0 +1,4 @@
1
+ export * from './sunspec-interfaces.js';
2
+ export * from './sunspec-devices.js';
3
+ export * from './sunspec-modbus-client.js';
4
+ export { SDK_VERSION, getSdkVersion } from './version.js';
package/dist/index.js ADDED
@@ -0,0 +1,4 @@
1
+ export * from './sunspec-interfaces.js';
2
+ export * from './sunspec-devices.js';
3
+ export * from './sunspec-modbus-client.js';
4
+ export { SDK_VERSION, getSdkVersion } from './version.js';
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.1";
8
+ export declare const SDK_VERSION = "0.0.2";
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.1';
8
+ export const SDK_VERSION = '0.0.2';
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/sunspec-sdk",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "enyo Energy Sunspec SDK",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",