@kuriousdesign/machine-sdk 1.0.40 → 1.0.41
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/index.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ export declare const MachineTags: {
|
|
|
12
12
|
parts: string;
|
|
13
13
|
taskQueue: string;
|
|
14
14
|
machineLog: string;
|
|
15
|
+
deviceLogs: string;
|
|
15
16
|
};
|
|
16
17
|
export declare const DeviceTags: {
|
|
17
18
|
Cfg: string;
|
|
@@ -27,6 +28,5 @@ export declare const DeviceTags: {
|
|
|
27
28
|
ApiOpcuaHmiReq: string;
|
|
28
29
|
ApiOpcuaHmiResp: string;
|
|
29
30
|
};
|
|
30
|
-
export declare const DeviceLogTags = "Machine.DeviceLogs";
|
|
31
31
|
export * from "./opcua";
|
|
32
32
|
export * from "./mqtt";
|
package/dist/plc-tags/index.js
CHANGED
|
@@ -14,7 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
exports.
|
|
17
|
+
exports.DeviceTags = exports.MachineTags = exports.PlcNamespaces = void 0;
|
|
18
18
|
exports.PlcNamespaces = {
|
|
19
19
|
Machine: 'Machine',
|
|
20
20
|
MachineHw: 'MachineHw',
|
|
@@ -31,6 +31,7 @@ exports.MachineTags = {
|
|
|
31
31
|
taskQueue: 'TaskQueue',
|
|
32
32
|
//deviceLogs: 'DeviceLogs',
|
|
33
33
|
machineLog: 'MachineLog',
|
|
34
|
+
deviceLogs: 'Machine.DeviceLogs',
|
|
34
35
|
};
|
|
35
36
|
exports.DeviceTags = {
|
|
36
37
|
Cfg: 'Cfg',
|
|
@@ -47,6 +48,5 @@ exports.DeviceTags = {
|
|
|
47
48
|
ApiOpcuaHmiReq: 'ApiOpcua/HmiReq',
|
|
48
49
|
ApiOpcuaHmiResp: 'ApiOpcua/HmiResp',
|
|
49
50
|
};
|
|
50
|
-
exports.DeviceLogTags = 'Machine.DeviceLogs';
|
|
51
51
|
__exportStar(require("./opcua"), exports);
|
|
52
52
|
__exportStar(require("./mqtt"), exports);
|
package/package.json
CHANGED
package/src/plc-tags/index.ts
CHANGED
|
@@ -15,6 +15,7 @@ export const MachineTags = {
|
|
|
15
15
|
taskQueue: 'TaskQueue',
|
|
16
16
|
//deviceLogs: 'DeviceLogs',
|
|
17
17
|
machineLog: 'MachineLog',
|
|
18
|
+
deviceLogs: 'Machine.DeviceLogs',
|
|
18
19
|
}
|
|
19
20
|
|
|
20
21
|
export const DeviceTags = {
|
|
@@ -33,7 +34,5 @@ export const DeviceTags = {
|
|
|
33
34
|
ApiOpcuaHmiResp: 'ApiOpcua/HmiResp',
|
|
34
35
|
}
|
|
35
36
|
|
|
36
|
-
export const DeviceLogTags = 'Machine.DeviceLogs';
|
|
37
|
-
|
|
38
37
|
export * from "./opcua";
|
|
39
38
|
export * from "./mqtt";
|