node-opcua-address-space-base 2.95.0 → 2.97.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/dist/base_node.d.ts +1 -0
- package/package.json +11 -11
- package/source/base_node.ts +2 -0
package/dist/base_node.d.ts
CHANGED
|
@@ -66,6 +66,7 @@ export declare class BaseNode extends EventEmitter {
|
|
|
66
66
|
get namespaceIndex(): number;
|
|
67
67
|
get namespaceUri(): string;
|
|
68
68
|
get namespace(): INamespace;
|
|
69
|
+
isDisposed(): boolean;
|
|
69
70
|
onFirstBrowseAction?: (this: BaseNode) => Promise<void>;
|
|
70
71
|
/**
|
|
71
72
|
* return a complete name of this object by pre-pending
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-opcua-address-space-base",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.97.0",
|
|
4
4
|
"description": "pure nodejs OPCUA SDK - module -address-space",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -16,19 +16,19 @@
|
|
|
16
16
|
"c": "mocha --version"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"node-opcua-basic-types": "2.
|
|
19
|
+
"node-opcua-basic-types": "2.97.0",
|
|
20
20
|
"node-opcua-constants": "2.88.0",
|
|
21
21
|
"node-opcua-crypto": "^2.1.2",
|
|
22
|
-
"node-opcua-data-model": "2.
|
|
23
|
-
"node-opcua-data-value": "2.
|
|
22
|
+
"node-opcua-data-model": "2.97.0",
|
|
23
|
+
"node-opcua-data-value": "2.97.0",
|
|
24
24
|
"node-opcua-date-time": "2.90.1",
|
|
25
|
-
"node-opcua-extension-object": "2.
|
|
26
|
-
"node-opcua-nodeid": "2.
|
|
27
|
-
"node-opcua-numeric-range": "2.
|
|
28
|
-
"node-opcua-schemas": "2.
|
|
25
|
+
"node-opcua-extension-object": "2.97.0",
|
|
26
|
+
"node-opcua-nodeid": "2.97.0",
|
|
27
|
+
"node-opcua-numeric-range": "2.97.0",
|
|
28
|
+
"node-opcua-schemas": "2.97.0",
|
|
29
29
|
"node-opcua-status-code": "2.90.1",
|
|
30
|
-
"node-opcua-types": "2.
|
|
31
|
-
"node-opcua-variant": "2.
|
|
30
|
+
"node-opcua-types": "2.97.0",
|
|
31
|
+
"node-opcua-variant": "2.97.0"
|
|
32
32
|
},
|
|
33
33
|
"author": "Etienne Rossignon",
|
|
34
34
|
"license": "MIT",
|
|
@@ -45,5 +45,5 @@
|
|
|
45
45
|
"internet of things"
|
|
46
46
|
],
|
|
47
47
|
"homepage": "http://node-opcua.github.io/",
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "19c96bda0810d2dec73dd1c2427546be40908646"
|
|
49
49
|
}
|
package/source/base_node.ts
CHANGED
|
@@ -100,6 +100,8 @@ export declare class BaseNode extends EventEmitter {
|
|
|
100
100
|
public get namespaceUri(): string;
|
|
101
101
|
public get namespace(): INamespace;
|
|
102
102
|
|
|
103
|
+
public isDisposed(): boolean;
|
|
104
|
+
|
|
103
105
|
public onFirstBrowseAction?: (this: BaseNode) => Promise<void>;
|
|
104
106
|
|
|
105
107
|
/**
|