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.
@@ -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.95.0",
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.92.0",
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.95.0",
23
- "node-opcua-data-value": "2.95.0",
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.95.0",
26
- "node-opcua-nodeid": "2.90.1",
27
- "node-opcua-numeric-range": "2.95.0",
28
- "node-opcua-schemas": "2.95.0",
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.95.0",
31
- "node-opcua-variant": "2.95.0"
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": "ad7086f9c4cd2ab52922e26cb6782ec6b86f9d20"
48
+ "gitHead": "19c96bda0810d2dec73dd1c2427546be40908646"
49
49
  }
@@ -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
  /**