node-opcua-client-proxy 2.97.0 → 2.98.1

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/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;