@juhuu/sdk-ts 1.2.4 → 1.2.5

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/dist/index.d.mts CHANGED
@@ -255,7 +255,7 @@ type AccessControlListElement = {
255
255
  topic: string;
256
256
  acc: number;
257
257
  };
258
- type SimStatus = "online" | "offline";
258
+ type SimStatus = "online" | "offline" | "attached";
259
259
  type Parameter = {
260
260
  name: string;
261
261
  type: "number";
@@ -1715,7 +1715,7 @@ declare namespace JUHUU {
1715
1715
  type Base = {
1716
1716
  id: string;
1717
1717
  readonly object: "connector";
1718
- connectionStatus: "online" | "offline";
1718
+ status: "online" | "offline";
1719
1719
  description: string | null;
1720
1720
  name: string;
1721
1721
  propertyId: string;
package/dist/index.d.ts CHANGED
@@ -255,7 +255,7 @@ type AccessControlListElement = {
255
255
  topic: string;
256
256
  acc: number;
257
257
  };
258
- type SimStatus = "online" | "offline";
258
+ type SimStatus = "online" | "offline" | "attached";
259
259
  type Parameter = {
260
260
  name: string;
261
261
  type: "number";
@@ -1715,7 +1715,7 @@ declare namespace JUHUU {
1715
1715
  type Base = {
1716
1716
  id: string;
1717
1717
  readonly object: "connector";
1718
- connectionStatus: "online" | "offline";
1718
+ status: "online" | "offline";
1719
1719
  description: string | null;
1720
1720
  name: string;
1721
1721
  propertyId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juhuu/sdk-ts",
3
- "version": "1.2.4",
3
+ "version": "1.2.5",
4
4
  "description": "Typescript wrapper for juhuu services",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",