node-opcua-address-space 2.100.0 → 2.101.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/src/ua_object_type_impl.js +2 -1
- package/dist/src/ua_object_type_impl.js.map +1 -1
- package/dist/src/ua_variable_type_impl.js +2 -1
- package/dist/src/ua_variable_type_impl.js.map +1 -1
- package/dist/tsconfig_common.tsbuildinfo +1 -1
- package/package.json +4 -4
- package/src/ua_object_type_impl.ts +1 -1
- package/src/ua_variable_type_impl.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-opcua-address-space",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.101.0",
|
|
4
4
|
"description": "pure nodejs OPCUA SDK - module address-space",
|
|
5
5
|
"main": "./dist/src/index_current.js",
|
|
6
6
|
"types": "./dist/source/index.d.ts",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"node-opcua-assert": "2.98.1",
|
|
27
27
|
"node-opcua-basic-types": "2.99.0",
|
|
28
28
|
"node-opcua-binary-stream": "2.98.1",
|
|
29
|
-
"node-opcua-client-dynamic-extension-object": "2.
|
|
29
|
+
"node-opcua-client-dynamic-extension-object": "2.101.0",
|
|
30
30
|
"node-opcua-constants": "2.98.1",
|
|
31
31
|
"node-opcua-crypto": "^2.1.2",
|
|
32
32
|
"node-opcua-data-access": "2.99.0",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"node-opcua-nodeset-ua": "2.100.0",
|
|
42
42
|
"node-opcua-numeric-range": "2.99.0",
|
|
43
43
|
"node-opcua-object-registry": "2.99.0",
|
|
44
|
-
"node-opcua-pseudo-session": "2.
|
|
44
|
+
"node-opcua-pseudo-session": "2.101.0",
|
|
45
45
|
"node-opcua-service-browse": "2.99.0",
|
|
46
46
|
"node-opcua-service-call": "2.99.0",
|
|
47
47
|
"node-opcua-service-history": "2.99.0",
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
"internet of things"
|
|
85
85
|
],
|
|
86
86
|
"homepage": "http://node-opcua.github.io/",
|
|
87
|
-
"gitHead": "
|
|
87
|
+
"gitHead": "77abad969406b6d7d76e6bc07a8aa94ae07f3db2",
|
|
88
88
|
"files": [
|
|
89
89
|
"dist",
|
|
90
90
|
"distHelpers",
|
|
@@ -127,7 +127,7 @@ export class UAObjectTypeImpl extends BaseNodeImpl implements UAObjectType {
|
|
|
127
127
|
browseName: options.browseName,
|
|
128
128
|
componentOf: options.componentOf,
|
|
129
129
|
displayName: options.displayName || "",
|
|
130
|
-
description: options.description
|
|
130
|
+
description: options.description === undefined ? this.description?.clone() : options.description,
|
|
131
131
|
encodingOf: options.encodingOf,
|
|
132
132
|
eventSourceOf: options.eventSourceOf,
|
|
133
133
|
notifierOf: options.notifierOf,
|
|
@@ -279,7 +279,7 @@ export class UAVariableTypeImpl extends BaseNodeImpl implements UAVariableType {
|
|
|
279
279
|
browseName: options.browseName,
|
|
280
280
|
componentOf: options.componentOf,
|
|
281
281
|
dataType,
|
|
282
|
-
description: options.description
|
|
282
|
+
description: options.description === undefined ? this.description?.clone() : options.description,
|
|
283
283
|
displayName: options.displayName || "",
|
|
284
284
|
eventSourceOf: options.eventSourceOf,
|
|
285
285
|
minimumSamplingInterval: options.minimumSamplingInterval,
|