node-opcua-address-space-base 2.75.0 → 2.77.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.
@@ -19,6 +19,10 @@ export interface PseudoVariantString {
19
19
  dataType: "String" | DataType.String;
20
20
  value: UAString;
21
21
  }
22
+ export interface PseudoVariantStringPredefined<S extends string> {
23
+ dataType: "String" | DataType.String;
24
+ value: S;
25
+ }
22
26
  export interface PseudoVariantBoolean {
23
27
  dataType: "Boolean" | DataType.Boolean;
24
28
  value: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-opcua-address-space-base",
3
- "version": "2.75.0",
3
+ "version": "2.77.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,36 +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
- "@types/lodash": "4.14.182",
20
- "async": "^3.2.4",
21
- "chalk": "4.1.2",
22
- "dequeue": "^1.0.5",
23
- "lodash": "4.17.21",
24
- "node-opcua-basic-types": "2.74.0",
25
- "node-opcua-constants": "2.74.0",
19
+ "@types/lodash": "4.14.184",
20
+ "node-opcua-basic-types": "2.77.0",
21
+ "node-opcua-constants": "2.77.0",
26
22
  "node-opcua-crypto": "^1.11.0",
27
- "node-opcua-data-model": "2.75.0",
28
- "node-opcua-data-value": "2.75.0",
29
- "node-opcua-date-time": "2.74.0",
30
- "node-opcua-extension-object": "2.75.0",
31
- "node-opcua-nodeid": "2.74.0",
32
- "node-opcua-numeric-range": "2.75.0",
33
- "node-opcua-schemas": "2.75.0",
34
- "node-opcua-status-code": "2.74.0",
35
- "node-opcua-types": "2.75.0",
36
- "node-opcua-variant": "2.75.0",
37
- "set-prototype-of": "^1.0.0",
38
- "thenify": "^3.3.1",
39
- "xml-writer": "^1.7.0"
40
- },
41
- "devDependencies": {
42
- "should": "^13.2.3",
43
- "sinon": "^14.0.0",
44
- "source-map-support": "^0.5.21"
23
+ "node-opcua-data-model": "2.77.0",
24
+ "node-opcua-data-value": "2.77.0",
25
+ "node-opcua-date-time": "2.77.0",
26
+ "node-opcua-extension-object": "2.77.0",
27
+ "node-opcua-nodeid": "2.77.0",
28
+ "node-opcua-numeric-range": "2.77.0",
29
+ "node-opcua-schemas": "2.77.0",
30
+ "node-opcua-status-code": "2.77.0",
31
+ "node-opcua-types": "2.77.0",
32
+ "node-opcua-variant": "2.77.0"
45
33
  },
46
34
  "author": "Etienne Rossignon",
47
35
  "license": "MIT",
@@ -58,5 +46,5 @@
58
46
  "internet of things"
59
47
  ],
60
48
  "homepage": "http://node-opcua.github.io/",
61
- "gitHead": "5ccb835ca480c2a8a591ae61b5949a9d8bad4017"
49
+ "gitHead": "5c8d45772d786fa4ba59369dd26679353ab5482b"
62
50
  }
@@ -23,6 +23,11 @@ export interface PseudoVariantString {
23
23
  value: UAString;
24
24
  }
25
25
 
26
+ export interface PseudoVariantStringPredefined<S extends string> {
27
+ dataType: "String" | DataType.String;
28
+ value: S;
29
+ }
30
+
26
31
  export interface PseudoVariantBoolean {
27
32
  dataType: "Boolean" | DataType.Boolean;
28
33
  value: boolean;