node-opcua-address-space-base 2.76.2 → 2.78.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/namespace.d.ts +2 -0
- package/package.json +15 -15
- package/source/namespace.ts +5 -1
package/dist/namespace.d.ts
CHANGED
|
@@ -212,6 +212,7 @@ export declare interface INamespace {
|
|
|
212
212
|
namespaceUri: string;
|
|
213
213
|
addressSpace: IAddressSpace;
|
|
214
214
|
index: number;
|
|
215
|
+
$emulateVersion103?: boolean;
|
|
215
216
|
constructNodeId(options: ConstructNodeIdOptions): NodeId;
|
|
216
217
|
findObjectType(objectType: string): UAObjectType | null;
|
|
217
218
|
findVariableType(variableType: string): UAVariableType | null;
|
|
@@ -231,6 +232,7 @@ export declare interface INamespace {
|
|
|
231
232
|
addView(options: AddViewOptions): UAView;
|
|
232
233
|
addFolder(parentFolder: NodeIdLike | UAObject, options: any): UAObject;
|
|
233
234
|
createNode(options: CreateNodeOptions): BaseNode;
|
|
235
|
+
/** @private */
|
|
234
236
|
internalCreateNode(options: CreateNodeOptions): BaseNode;
|
|
235
237
|
deleteNode(node: NodeId | BaseNode): void;
|
|
236
238
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-opcua-address-space-base",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.78.0",
|
|
4
4
|
"description": "pure nodejs OPCUA SDK - module -address-space",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -12,24 +12,24 @@
|
|
|
12
12
|
"test": "mocha",
|
|
13
13
|
"lint": "eslint source",
|
|
14
14
|
"format": "prettier --write source",
|
|
15
|
-
"clean": "npx rimraf dist *.tsbuildinfo",
|
|
15
|
+
"clean": "npx rimraf node_modules dist *.tsbuildinfo",
|
|
16
16
|
"c": "mocha --version"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@types/lodash": "4.14.184",
|
|
20
|
-
"node-opcua-basic-types": "2.
|
|
21
|
-
"node-opcua-constants": "2.
|
|
20
|
+
"node-opcua-basic-types": "2.77.0",
|
|
21
|
+
"node-opcua-constants": "2.77.0",
|
|
22
22
|
"node-opcua-crypto": "^1.11.0",
|
|
23
|
-
"node-opcua-data-model": "2.
|
|
24
|
-
"node-opcua-data-value": "2.
|
|
25
|
-
"node-opcua-date-time": "2.
|
|
26
|
-
"node-opcua-extension-object": "2.
|
|
27
|
-
"node-opcua-nodeid": "2.
|
|
28
|
-
"node-opcua-numeric-range": "2.
|
|
29
|
-
"node-opcua-schemas": "2.
|
|
30
|
-
"node-opcua-status-code": "2.
|
|
31
|
-
"node-opcua-types": "2.
|
|
32
|
-
"node-opcua-variant": "2.
|
|
23
|
+
"node-opcua-data-model": "2.78.0",
|
|
24
|
+
"node-opcua-data-value": "2.78.0",
|
|
25
|
+
"node-opcua-date-time": "2.77.0",
|
|
26
|
+
"node-opcua-extension-object": "2.78.0",
|
|
27
|
+
"node-opcua-nodeid": "2.77.0",
|
|
28
|
+
"node-opcua-numeric-range": "2.78.0",
|
|
29
|
+
"node-opcua-schemas": "2.78.0",
|
|
30
|
+
"node-opcua-status-code": "2.77.0",
|
|
31
|
+
"node-opcua-types": "2.78.0",
|
|
32
|
+
"node-opcua-variant": "2.78.0"
|
|
33
33
|
},
|
|
34
34
|
"author": "Etienne Rossignon",
|
|
35
35
|
"license": "MIT",
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"internet of things"
|
|
47
47
|
],
|
|
48
48
|
"homepage": "http://node-opcua.github.io/",
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "31c6eee3c51f52427584364fff2fdb07bbac65be"
|
|
50
50
|
}
|
package/source/namespace.ts
CHANGED
|
@@ -256,7 +256,9 @@ export declare interface INamespace {
|
|
|
256
256
|
namespaceUri: string;
|
|
257
257
|
addressSpace: IAddressSpace;
|
|
258
258
|
index: number;
|
|
259
|
-
|
|
259
|
+
|
|
260
|
+
$emulateVersion103?: boolean;
|
|
261
|
+
|
|
260
262
|
constructNodeId(options: ConstructNodeIdOptions): NodeId;
|
|
261
263
|
|
|
262
264
|
// -------------------------------------------------------------------------
|
|
@@ -297,6 +299,8 @@ export declare interface INamespace {
|
|
|
297
299
|
addFolder(parentFolder: NodeIdLike | UAObject, options: any): UAObject;
|
|
298
300
|
|
|
299
301
|
createNode(options: CreateNodeOptions): BaseNode;
|
|
302
|
+
|
|
303
|
+
/** @private */
|
|
300
304
|
internalCreateNode(options: CreateNodeOptions): BaseNode;
|
|
301
305
|
|
|
302
306
|
// -------------------------------------------------------------------------
|