node-opcua-factory 2.165.0 → 2.168.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/package.json +11 -10
- package/source/types.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-opcua-factory",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.168.0",
|
|
4
4
|
"description": "pure nodejs OPCUA SDK - module factory",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -9,20 +9,21 @@
|
|
|
9
9
|
"lint": "eslint source",
|
|
10
10
|
"format": "prettier --write source",
|
|
11
11
|
"clean": "npx rimraf -g node_modules dist *.tsbuildinfo",
|
|
12
|
-
"test": "mocha"
|
|
12
|
+
"test": "mocha",
|
|
13
|
+
"test:check": "tsc --noEmit -p test/tsconfig.json"
|
|
13
14
|
},
|
|
14
15
|
"dependencies": {
|
|
15
16
|
"chalk": "4.1.2",
|
|
16
17
|
"node-opcua-assert": "2.164.0",
|
|
17
|
-
"node-opcua-basic-types": "2.
|
|
18
|
-
"node-opcua-binary-stream": "2.
|
|
18
|
+
"node-opcua-basic-types": "2.168.0",
|
|
19
|
+
"node-opcua-binary-stream": "2.168.0",
|
|
19
20
|
"node-opcua-constants": "2.157.0",
|
|
20
|
-
"node-opcua-debug": "2.
|
|
21
|
-
"node-opcua-enum": "2.
|
|
21
|
+
"node-opcua-debug": "2.168.0",
|
|
22
|
+
"node-opcua-enum": "2.168.0",
|
|
22
23
|
"node-opcua-guid": "2.157.0",
|
|
23
|
-
"node-opcua-nodeid": "2.
|
|
24
|
-
"node-opcua-status-code": "2.
|
|
25
|
-
"node-opcua-utils": "2.
|
|
24
|
+
"node-opcua-nodeid": "2.168.0",
|
|
25
|
+
"node-opcua-status-code": "2.168.0",
|
|
26
|
+
"node-opcua-utils": "2.168.0"
|
|
26
27
|
},
|
|
27
28
|
"author": "Etienne Rossignon",
|
|
28
29
|
"license": "MIT",
|
|
@@ -39,7 +40,7 @@
|
|
|
39
40
|
"internet of things"
|
|
40
41
|
],
|
|
41
42
|
"homepage": "http://node-opcua.github.io/",
|
|
42
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "653b6d6df801ca17298308089dee32e5b12102b6",
|
|
43
44
|
"files": [
|
|
44
45
|
"dist",
|
|
45
46
|
"source"
|
package/source/types.ts
CHANGED
|
@@ -166,7 +166,7 @@ export interface BasicTypeDefinition extends CommonInterface {
|
|
|
166
166
|
subType: string;
|
|
167
167
|
}
|
|
168
168
|
|
|
169
|
-
export interface BuiltInTypeDefinition extends BasicTypeDefinition {}
|
|
169
|
+
export interface BuiltInTypeDefinition extends BasicTypeDefinition { }
|
|
170
170
|
|
|
171
171
|
export interface EnumerationDefinition extends CommonInterface {
|
|
172
172
|
// enumValues: any;
|