node-opcua-address-space-base 2.72.0 → 2.73.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.
@@ -131,7 +131,7 @@ export interface IAddressSpace {
131
131
  * construct an extension object constructor from a DataType nodeID or UADataType object
132
132
  *
133
133
  */
134
- constructExtensionObject(dataType: UADataType | NodeId, options?: any): ExtensionObject;
134
+ constructExtensionObject(dataType: UADataType | NodeId, options?: Record<string, unknown>): ExtensionObject;
135
135
  /***
136
136
  * construct a simple javascript object with all the default properties of the event
137
137
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-opcua-address-space-base",
3
- "version": "2.72.0",
3
+ "version": "2.73.0",
4
4
  "description": "pure nodejs OPCUA SDK - module -address-space",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -22,43 +22,43 @@
22
22
  "dequeue": "^1.0.5",
23
23
  "lodash": "4.17.21",
24
24
  "node-opcua-assert": "2.66.0",
25
- "node-opcua-basic-types": "2.71.0",
26
- "node-opcua-client-dynamic-extension-object": "2.72.0",
25
+ "node-opcua-basic-types": "2.73.0",
26
+ "node-opcua-client-dynamic-extension-object": "2.73.0",
27
27
  "node-opcua-constants": "2.70.0",
28
- "node-opcua-data-access": "2.72.0",
29
- "node-opcua-data-model": "2.71.0",
30
- "node-opcua-data-value": "2.71.0",
31
- "node-opcua-date-time": "2.71.0",
28
+ "node-opcua-data-access": "2.73.0",
29
+ "node-opcua-data-model": "2.73.0",
30
+ "node-opcua-data-value": "2.73.0",
31
+ "node-opcua-date-time": "2.73.0",
32
32
  "node-opcua-debug": "2.71.0",
33
33
  "node-opcua-enum": "2.71.0",
34
- "node-opcua-factory": "2.71.0",
34
+ "node-opcua-factory": "2.73.0",
35
35
  "node-opcua-nodeid": "2.71.0",
36
- "node-opcua-numeric-range": "2.71.0",
36
+ "node-opcua-numeric-range": "2.73.0",
37
37
  "node-opcua-object-registry": "2.71.0",
38
- "node-opcua-pseudo-session": "2.72.0",
39
- "node-opcua-schemas": "2.72.0",
40
- "node-opcua-service-browse": "2.72.0",
41
- "node-opcua-service-call": "2.72.0",
42
- "node-opcua-service-filter": "2.72.0",
43
- "node-opcua-service-history": "2.72.0",
44
- "node-opcua-service-translate-browse-path": "2.72.0",
45
- "node-opcua-service-write": "2.72.0",
46
- "node-opcua-status-code": "2.71.0",
47
- "node-opcua-types": "2.72.0",
38
+ "node-opcua-pseudo-session": "2.73.0",
39
+ "node-opcua-schemas": "2.73.0",
40
+ "node-opcua-service-browse": "2.73.0",
41
+ "node-opcua-service-call": "2.73.0",
42
+ "node-opcua-service-filter": "2.73.0",
43
+ "node-opcua-service-history": "2.73.0",
44
+ "node-opcua-service-translate-browse-path": "2.73.0",
45
+ "node-opcua-service-write": "2.73.0",
46
+ "node-opcua-status-code": "2.73.0",
47
+ "node-opcua-types": "2.73.0",
48
48
  "node-opcua-utils": "2.71.0",
49
- "node-opcua-variant": "2.71.0",
50
- "node-opcua-xml2json": "2.71.0",
49
+ "node-opcua-variant": "2.73.0",
50
+ "node-opcua-xml2json": "2.73.0",
51
51
  "set-prototype-of": "^1.0.0",
52
52
  "thenify": "^3.3.1",
53
53
  "xml-writer": "^1.7.0"
54
54
  },
55
55
  "devDependencies": {
56
56
  "node-opcua-benchmarker": "2.71.0",
57
- "node-opcua-binary-stream": "2.71.0",
58
- "node-opcua-extension-object": "2.71.0",
57
+ "node-opcua-binary-stream": "2.73.0",
58
+ "node-opcua-extension-object": "2.73.0",
59
59
  "node-opcua-leak-detector": "2.71.0",
60
- "node-opcua-nodesets": "2.71.0",
61
- "node-opcua-packet-analyzer": "2.71.0",
60
+ "node-opcua-nodesets": "2.73.0",
61
+ "node-opcua-packet-analyzer": "2.73.0",
62
62
  "node-opcua-test-fixtures": "2.71.0",
63
63
  "should": "^13.2.3",
64
64
  "sinon": "^14.0.0",
@@ -79,5 +79,5 @@
79
79
  "internet of things"
80
80
  ],
81
81
  "homepage": "http://node-opcua.github.io/",
82
- "gitHead": "3c5f00e20bf5bef91a1ca3663af149b903760e5c"
82
+ "gitHead": "b23a87c1ef777c0d8b680f45ee77e2a319feb092"
83
83
  }
@@ -153,7 +153,7 @@ export interface IAddressSpace {
153
153
  * construct an extension object constructor from a DataType nodeID or UADataType object
154
154
  *
155
155
  */
156
- constructExtensionObject(dataType: UADataType | NodeId, options?: any): ExtensionObject;
156
+ constructExtensionObject(dataType: UADataType | NodeId, options?: Record<string, unknown>): ExtensionObject;
157
157
 
158
158
  // -------------- Event helpers
159
159