node-opcua-client-proxy 2.73.1 → 2.76.0
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/LICENSE +3 -1
- package/dist/common.d.ts +3 -3
- package/dist/common.js +4 -4
- package/dist/index.d.ts +6 -6
- package/dist/index.js +22 -22
- package/dist/object_explorer.d.ts +20 -20
- package/dist/object_explorer.js +462 -462
- package/dist/proxy.d.ts +2 -2
- package/dist/proxy.js +18 -18
- package/dist/proxy_base_node.d.ts +83 -83
- package/dist/proxy_base_node.js +88 -88
- package/dist/proxy_manager.d.ts +50 -50
- package/dist/proxy_manager.js +261 -261
- package/dist/proxy_object.d.ts +6 -6
- package/dist/proxy_object.js +14 -14
- package/dist/proxy_state.d.ts +14 -14
- package/dist/proxy_state.js +27 -27
- package/dist/proxy_state_machine.d.ts +12 -12
- package/dist/proxy_state_machine.js +21 -21
- package/dist/proxy_transition.d.ts +24 -24
- package/dist/proxy_transition.js +29 -29
- package/dist/proxy_variable.d.ts +7 -7
- package/dist/proxy_variable.js +14 -14
- package/dist/state_machine_proxy.d.ts +8 -8
- package/dist/state_machine_proxy.js +43 -43
- package/package.json +18 -18
package/LICENSE
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
The MIT License (MIT)
|
|
2
2
|
|
|
3
|
-
Copyright (c)
|
|
3
|
+
Copyright (c) 2022 Sterfive SAS - 833264583 RCS ORLEANS - France (https://www.sterfive.com)
|
|
4
|
+
|
|
5
|
+
Copyright (c) 2014-2022 Etienne Rossignon
|
|
4
6
|
|
|
5
7
|
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
6
8
|
this software and associated documentation files (the "Software"), to deal in
|
package/dist/common.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @module node-opcua-client-proxy
|
|
3
|
-
*/
|
|
1
|
+
/**
|
|
2
|
+
* @module node-opcua-client-proxy
|
|
3
|
+
*/
|
package/dist/common.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/**
|
|
3
|
-
* @module node-opcua-client-proxy
|
|
4
|
-
*/
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* @module node-opcua-client-proxy
|
|
4
|
+
*/
|
|
5
5
|
//# sourceMappingURL=common.js.map
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @module node-opcua-client-proxy
|
|
3
|
-
*/
|
|
4
|
-
export * from "./proxy_manager";
|
|
5
|
-
export * from "./proxy";
|
|
6
|
-
export * from "./state_machine_proxy";
|
|
1
|
+
/**
|
|
2
|
+
* @module node-opcua-client-proxy
|
|
3
|
+
*/
|
|
4
|
+
export * from "./proxy_manager";
|
|
5
|
+
export * from "./proxy";
|
|
6
|
+
export * from "./state_machine_proxy";
|
package/dist/index.js
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
-
};
|
|
16
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
/**
|
|
18
|
-
* @module node-opcua-client-proxy
|
|
19
|
-
*/
|
|
20
|
-
__exportStar(require("./proxy_manager"), exports);
|
|
21
|
-
__exportStar(require("./proxy"), exports);
|
|
22
|
-
__exportStar(require("./state_machine_proxy"), exports);
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
/**
|
|
18
|
+
* @module node-opcua-client-proxy
|
|
19
|
+
*/
|
|
20
|
+
__exportStar(require("./proxy_manager"), exports);
|
|
21
|
+
__exportStar(require("./proxy"), exports);
|
|
22
|
+
__exportStar(require("./state_machine_proxy"), exports);
|
|
23
23
|
//# sourceMappingURL=index.js.map
|
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
import { ErrorCallback } from "node-opcua-status-code";
|
|
2
|
-
import { NodeId } from "node-opcua-nodeid";
|
|
3
|
-
import { UAProxyManager } from "./proxy_manager";
|
|
4
|
-
export interface ObjectExplorerOptions {
|
|
5
|
-
proxyManager: UAProxyManager;
|
|
6
|
-
name: string;
|
|
7
|
-
nodeId: NodeId;
|
|
8
|
-
parent: any;
|
|
9
|
-
}
|
|
10
|
-
export declare class ObjectExplorer {
|
|
11
|
-
proxyManager: UAProxyManager;
|
|
12
|
-
name: string;
|
|
13
|
-
nodeId: NodeId;
|
|
14
|
-
parent: any;
|
|
15
|
-
constructor(options: ObjectExplorerOptions);
|
|
16
|
-
$resolve(callback: (err?: Error) => void): void;
|
|
17
|
-
}
|
|
18
|
-
export declare function readUAStructure(proxyManager: UAProxyManager, obj: {
|
|
19
|
-
nodeId: NodeId;
|
|
20
|
-
}, callback: ErrorCallback): void;
|
|
1
|
+
import { ErrorCallback } from "node-opcua-status-code";
|
|
2
|
+
import { NodeId } from "node-opcua-nodeid";
|
|
3
|
+
import { UAProxyManager } from "./proxy_manager";
|
|
4
|
+
export interface ObjectExplorerOptions {
|
|
5
|
+
proxyManager: UAProxyManager;
|
|
6
|
+
name: string;
|
|
7
|
+
nodeId: NodeId;
|
|
8
|
+
parent: any;
|
|
9
|
+
}
|
|
10
|
+
export declare class ObjectExplorer {
|
|
11
|
+
proxyManager: UAProxyManager;
|
|
12
|
+
name: string;
|
|
13
|
+
nodeId: NodeId;
|
|
14
|
+
parent: any;
|
|
15
|
+
constructor(options: ObjectExplorerOptions);
|
|
16
|
+
$resolve(callback: (err?: Error) => void): void;
|
|
17
|
+
}
|
|
18
|
+
export declare function readUAStructure(proxyManager: UAProxyManager, obj: {
|
|
19
|
+
nodeId: NodeId;
|
|
20
|
+
}, callback: ErrorCallback): void;
|