@kuriousdesign/machine-sdk 1.0.17 → 1.0.19
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:
|
|
13
|
+
ActionType: ActionTypes;
|
|
14
14
|
ActionId: number;
|
|
15
15
|
ParamArray: number[];
|
|
16
16
|
}
|
|
@@ -17,7 +17,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
17
17
|
__exportStar(require("./Com"), exports);
|
|
18
18
|
__exportStar(require("./AppState"), exports);
|
|
19
19
|
__exportStar(require("./HMI"), exports);
|
|
20
|
-
__exportStar(require("./BaseDevice
|
|
20
|
+
__exportStar(require("./BaseDevice"), exports);
|
|
21
21
|
__exportStar(require("./Machine"), exports);
|
|
22
22
|
__exportStar(require("./RackData"), exports);
|
|
23
23
|
__exportStar(require("./GlobalConstants"), exports);
|
package/package.json
CHANGED
|
@@ -31,7 +31,7 @@ export function actionTypeToString(actionType: ActionTypes): string {
|
|
|
31
31
|
|
|
32
32
|
export interface DeviceActionRequestData {
|
|
33
33
|
SenderId: number;
|
|
34
|
-
ActionType:
|
|
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
|
};
|