@kuriousdesign/machine-sdk 1.0.17 → 1.0.18

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.
@@ -10,7 +10,7 @@ export declare enum ActionTypes {
10
10
  export declare function actionTypeToString(actionType: ActionTypes): string;
11
11
  export interface DeviceActionRequestData {
12
12
  SenderId: number;
13
- ActionType: number;
13
+ ActionType: ActionTypes;
14
14
  ActionId: number;
15
15
  ParamArray: number[];
16
16
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kuriousdesign/machine-sdk",
3
- "version": "1.0.17",
3
+ "version": "1.0.18",
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",
@@ -31,7 +31,7 @@ export function actionTypeToString(actionType: ActionTypes): string {
31
31
 
32
32
  export interface DeviceActionRequestData {
33
33
  SenderId: number;
34
- ActionType: number; // ActionTypes enum
34
+ ActionType: ActionTypes; // ActionTypes enum
35
35
  ActionId: number; // could be cmd, task or processId
36
36
  ParamArray: number[]; // Array of LREAL values
37
37
  };