@kuriousdesign/machine-sdk 1.0.73 → 1.0.74

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.
@@ -6,4 +6,5 @@ export declare const MqttTopics: {
6
6
  readonly BRIDGE_STATUS: "bridge/status";
7
7
  readonly BRIDGE_CMD: "bridge/cmd";
8
8
  readonly DEVICE_MAP: "deviceMap";
9
+ readonly HMI_ACTION_REQ: "hmi/action_req";
9
10
  };
@@ -5,4 +5,5 @@ exports.MqttTopics = {
5
5
  BRIDGE_STATUS: 'bridge/status',
6
6
  BRIDGE_CMD: 'bridge/cmd',
7
7
  DEVICE_MAP: 'deviceMap',
8
+ HMI_ACTION_REQ: 'hmi/action_req',
8
9
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kuriousdesign/machine-sdk",
3
- "version": "1.0.73",
3
+ "version": "1.0.74",
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",
@@ -7,4 +7,5 @@ export const MqttTopics = {
7
7
  BRIDGE_STATUS: 'bridge/status',
8
8
  BRIDGE_CMD: 'bridge/cmd',
9
9
  DEVICE_MAP: 'deviceMap',
10
+ HMI_ACTION_REQ: 'hmi/action_req',
10
11
  } as const;