@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.
package/dist/plc-tags/mqtt.d.ts
CHANGED
package/dist/plc-tags/mqtt.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kuriousdesign/machine-sdk",
|
|
3
|
-
"version": "1.0.
|
|
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.
|
|
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;
|