node-opcua-factory 2.165.0 → 2.167.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.
Files changed (2) hide show
  1. package/package.json +9 -8
  2. 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.165.0",
3
+ "version": "2.167.0",
4
4
  "description": "pure nodejs OPCUA SDK - module factory",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -9,19 +9,20 @@
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.165.0",
18
- "node-opcua-binary-stream": "2.165.0",
18
+ "node-opcua-basic-types": "2.167.0",
19
+ "node-opcua-binary-stream": "2.167.0",
19
20
  "node-opcua-constants": "2.157.0",
20
21
  "node-opcua-debug": "2.165.0",
21
- "node-opcua-enum": "2.165.0",
22
+ "node-opcua-enum": "2.167.0",
22
23
  "node-opcua-guid": "2.157.0",
23
- "node-opcua-nodeid": "2.165.0",
24
- "node-opcua-status-code": "2.165.0",
24
+ "node-opcua-nodeid": "2.167.0",
25
+ "node-opcua-status-code": "2.167.0",
25
26
  "node-opcua-utils": "2.165.0"
26
27
  },
27
28
  "author": "Etienne Rossignon",
@@ -39,7 +40,7 @@
39
40
  "internet of things"
40
41
  ],
41
42
  "homepage": "http://node-opcua.github.io/",
42
- "gitHead": "fe53ac03427fcb223996446c991f7496635ba193",
43
+ "gitHead": "5decfa86ee53a36ecd3bb454e7bf6e3dd27c7a4e",
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;