node-opcua-nodeset-auto-id 2.164.0 → 2.165.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/dt_scan_data.d.ts +2 -2
- package/package.json +11 -11
- package/source/dt_scan_data.ts +2 -2
package/dist/dt_scan_data.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Variant } from "node-opcua-variant";
|
|
2
2
|
import { UAString } from "node-opcua-basic-types";
|
|
3
3
|
import { DTUnion } from "node-opcua-nodeset-ua/dist/dt_union";
|
|
4
4
|
import { DTScanDataEpc } from "./dt_scan_data_epc";
|
|
@@ -32,6 +32,6 @@ export interface DTScanData_3 extends DTUnion {
|
|
|
32
32
|
byteString?: never;
|
|
33
33
|
string?: never;
|
|
34
34
|
epc?: never;
|
|
35
|
-
custom:
|
|
35
|
+
custom: Variant;
|
|
36
36
|
}
|
|
37
37
|
export type DTScanData = DTScanData_0 | DTScanData_1 | DTScanData_2 | DTScanData_3;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-opcua-nodeset-auto-id",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.165.0",
|
|
4
4
|
"description": "pure nodejs OPCUA SDK - module node-opcua-nodeset-auto-id",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -11,15 +11,15 @@
|
|
|
11
11
|
"author": "Etienne Rossignon <etienne.rossignon@sterfive.com>",
|
|
12
12
|
"license": "MIT",
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"node-opcua-address-space-base": "2.
|
|
15
|
-
"node-opcua-basic-types": "2.
|
|
16
|
-
"node-opcua-data-access": "2.
|
|
17
|
-
"node-opcua-data-model": "2.
|
|
18
|
-
"node-opcua-extension-object": "2.
|
|
19
|
-
"node-opcua-nodeid": "2.
|
|
20
|
-
"node-opcua-nodeset-di": "2.
|
|
21
|
-
"node-opcua-nodeset-ua": "2.
|
|
22
|
-
"node-opcua-variant": "2.
|
|
14
|
+
"node-opcua-address-space-base": "2.165.0",
|
|
15
|
+
"node-opcua-basic-types": "2.165.0",
|
|
16
|
+
"node-opcua-data-access": "2.165.0",
|
|
17
|
+
"node-opcua-data-model": "2.165.0",
|
|
18
|
+
"node-opcua-extension-object": "2.165.0",
|
|
19
|
+
"node-opcua-nodeid": "2.165.0",
|
|
20
|
+
"node-opcua-nodeset-di": "2.165.0",
|
|
21
|
+
"node-opcua-nodeset-ua": "2.165.0",
|
|
22
|
+
"node-opcua-variant": "2.165.0"
|
|
23
23
|
},
|
|
24
24
|
"files": [
|
|
25
25
|
"dist",
|
|
@@ -38,5 +38,5 @@
|
|
|
38
38
|
"internet of things"
|
|
39
39
|
],
|
|
40
40
|
"homepage": "http://node-opcua.github.io/",
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "fe53ac03427fcb223996446c991f7496635ba193"
|
|
42
42
|
}
|
package/source/dt_scan_data.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
|
-
import {
|
|
2
|
+
import { Variant } from "node-opcua-variant"
|
|
3
3
|
import { UAString } from "node-opcua-basic-types"
|
|
4
4
|
import { DTUnion } from "node-opcua-nodeset-ua/dist/dt_union"
|
|
5
5
|
import { DTScanDataEpc } from "./dt_scan_data_epc"
|
|
@@ -33,7 +33,7 @@ export interface DTScanData_3 extends DTUnion {
|
|
|
33
33
|
byteString?: never
|
|
34
34
|
string?: never
|
|
35
35
|
epc?: never
|
|
36
|
-
custom:
|
|
36
|
+
custom: Variant; // Variant ns=0;i=24
|
|
37
37
|
}
|
|
38
38
|
export type DTScanData =
|
|
39
39
|
| DTScanData_0
|