@kuriousdesign/machine-sdk 1.0.74 → 1.0.76

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.
@@ -92,6 +92,8 @@ export interface Device {
92
92
  apiOpcua: ApiOpcuaData;
93
93
  log?: DeviceLogData;
94
94
  sts?: unknown;
95
+ inputs?: unknown;
96
+ outputs?: unknown;
95
97
  }
96
98
  export declare const initialSts: unknown;
97
99
  export declare const initialDevice: Device;
@@ -7,4 +7,5 @@ export declare const MqttTopics: {
7
7
  readonly BRIDGE_CMD: "bridge/cmd";
8
8
  readonly DEVICE_MAP: "deviceMap";
9
9
  readonly HMI_ACTION_REQ: "hmi/action_req";
10
+ readonly EXT_SERVICE: "ext_service";
10
11
  };
@@ -6,4 +6,5 @@ exports.MqttTopics = {
6
6
  BRIDGE_CMD: 'bridge/cmd',
7
7
  DEVICE_MAP: 'deviceMap',
8
8
  HMI_ACTION_REQ: 'hmi/action_req',
9
+ EXT_SERVICE: 'ext_service',
9
10
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kuriousdesign/machine-sdk",
3
- "version": "1.0.74",
3
+ "version": "1.0.76",
4
4
  "description": "Shared data types and helpers for machine-related repositories",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -18,7 +18,7 @@
18
18
  "license": "MIT",
19
19
  "devDependencies": {
20
20
  "copyfiles": "^2.4.1",
21
- "typescript": "^5.6.3"
21
+ "typescript": "^5.9.3"
22
22
  },
23
23
  "repository": {
24
24
  "type": "git",
@@ -194,6 +194,8 @@ export interface Device {
194
194
  log?: DeviceLogData; //this is taken from machine.deviceLogs[device.id]
195
195
  //ignore--instantsudp: UdpData;
196
196
  sts?: unknown; // this is take from Machine.<MEM>Sts
197
+ inputs?: unknown;
198
+ outputs?: unknown;
197
199
  }
198
200
 
199
201
  export const initialSts: unknown = null;
@@ -8,4 +8,5 @@ export const MqttTopics = {
8
8
  BRIDGE_CMD: 'bridge/cmd',
9
9
  DEVICE_MAP: 'deviceMap',
10
10
  HMI_ACTION_REQ: 'hmi/action_req',
11
+ EXT_SERVICE: 'ext_service',
11
12
  } as const;