node-opcua-nodeset-auto-id 2.76.2 → 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.
- package/dist/dt_access_result.d.ts +6 -3
- package/dist/dt_access_result.js +1 -0
- package/dist/dt_access_result.js.map +1 -1
- package/dist/dt_antenna_name_id_pair.d.ts +3 -0
- package/dist/dt_antenna_name_id_pair.js +1 -0
- package/dist/dt_antenna_name_id_pair.js.map +1 -1
- package/dist/dt_dhcp_geo_conf_coordinate.d.ts +3 -0
- package/dist/dt_dhcp_geo_conf_coordinate.js +1 -0
- package/dist/dt_dhcp_geo_conf_coordinate.js.map +1 -1
- package/dist/dt_local_coordinate.d.ts +3 -0
- package/dist/dt_local_coordinate.js +1 -0
- package/dist/dt_local_coordinate.js.map +1 -1
- package/dist/dt_ocr_scan_result.d.ts +6 -3
- package/dist/dt_ocr_scan_result.js +1 -0
- package/dist/dt_ocr_scan_result.js.map +1 -1
- package/dist/dt_optical_scan_result.d.ts +8 -5
- package/dist/dt_optical_scan_result.js +1 -0
- package/dist/dt_optical_scan_result.js.map +1 -1
- package/dist/dt_optical_verifier_scan_result.d.ts +8 -5
- package/dist/dt_optical_verifier_scan_result.js +1 -0
- package/dist/dt_optical_verifier_scan_result.js.map +1 -1
- package/dist/dt_position.d.ts +3 -0
- package/dist/dt_position.js +1 -0
- package/dist/dt_position.js.map +1 -1
- package/dist/dt_rfid_access_result.d.ts +13 -10
- package/dist/dt_rfid_access_result.js +1 -0
- package/dist/dt_rfid_access_result.js.map +1 -1
- package/dist/dt_rfid_scan_result.d.ts +4 -1
- package/dist/dt_rfid_scan_result.js +1 -0
- package/dist/dt_rfid_scan_result.js.map +1 -1
- package/dist/dt_rfid_sighting.d.ts +3 -0
- package/dist/dt_rfid_sighting.js +1 -0
- package/dist/dt_rfid_sighting.js.map +1 -1
- package/dist/dt_rotation.d.ts +3 -0
- package/dist/dt_rotation.js +1 -0
- package/dist/dt_rotation.js.map +1 -1
- package/dist/dt_rtls_location_result.d.ts +4 -1
- package/dist/dt_rtls_location_result.js +1 -0
- package/dist/dt_rtls_location_result.js.map +1 -1
- package/dist/dt_scan_data.d.ts +2 -1
- package/dist/dt_scan_data_epc.d.ts +3 -0
- package/dist/dt_scan_data_epc.js +1 -0
- package/dist/dt_scan_data_epc.js.map +1 -1
- package/dist/dt_scan_result.d.ts +4 -1
- package/dist/dt_scan_result.js +1 -0
- package/dist/dt_scan_result.js.map +1 -1
- package/dist/dt_scan_settings.d.ts +4 -1
- package/dist/dt_scan_settings.js +1 -0
- package/dist/dt_scan_settings.js.map +1 -1
- package/dist/dt_wgs_84_coordinate.d.ts +3 -0
- package/dist/dt_wgs_84_coordinate.js +1 -0
- package/dist/dt_wgs_84_coordinate.js.map +1 -1
- package/package.json +11 -10
- package/source/dt_access_result.ts +9 -7
- package/source/dt_antenna_name_id_pair.ts +3 -1
- package/source/dt_dhcp_geo_conf_coordinate.ts +3 -1
- package/source/dt_local_coordinate.ts +6 -4
- package/source/dt_ocr_scan_result.ts +15 -13
- package/source/dt_optical_scan_result.ts +14 -12
- package/source/dt_optical_verifier_scan_result.ts +14 -12
- package/source/dt_position.ts +3 -1
- package/source/dt_rfid_access_result.ts +23 -21
- package/source/dt_rfid_scan_result.ts +9 -7
- package/source/dt_rfid_sighting.ts +7 -5
- package/source/dt_rotation.ts +3 -1
- package/source/dt_rtls_location_result.ts +8 -6
- package/source/dt_scan_data.ts +2 -1
- package/source/dt_scan_data_epc.ts +3 -1
- package/source/dt_scan_result.ts +8 -6
- package/source/dt_scan_settings.ts +4 -2
- package/source/dt_wgs_84_coordinate.ts +3 -1
- package/source/ua_auto_id_device.ts +1 -1
- package/source/ua_auto_id_diagnostics_event.ts +1 -1
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { UAString } from "node-opcua-basic-types";
|
|
2
|
+
import { ExtensionObject } from "node-opcua-extension-object";
|
|
2
3
|
import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure";
|
|
3
4
|
import { DTScanData } from "./dt_scan_data";
|
|
4
5
|
/**
|
|
@@ -13,9 +14,11 @@ import { DTScanData } from "./dt_scan_data";
|
|
|
13
14
|
*/
|
|
14
15
|
export interface DTAccessResult extends DTStructure {
|
|
15
16
|
/** Defines the format of Identifier as string.*/
|
|
16
|
-
codeType
|
|
17
|
+
codeType?: UAString;
|
|
17
18
|
/** The AutoID Identifier (e.g. a code or a transponder) which was accessed by a command.*/
|
|
18
|
-
identifier
|
|
19
|
+
identifier?: DTScanData;
|
|
19
20
|
/** The point of time the AutoID Identifier was accessed by the command.*/
|
|
20
|
-
timestamp
|
|
21
|
+
timestamp?: Date;
|
|
22
|
+
}
|
|
23
|
+
export interface UDTAccessResult extends ExtensionObject, DTAccessResult {
|
|
21
24
|
}
|
package/dist/dt_access_result.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dt_access_result.js","sourceRoot":"","sources":["../source/dt_access_result.ts"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"dt_access_result.js","sourceRoot":"","sources":["../source/dt_access_result.ts"],"names":[],"mappings":";;AAuB2E,CAAC"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { Int32, UAString } from "node-opcua-basic-types";
|
|
2
|
+
import { ExtensionObject } from "node-opcua-extension-object";
|
|
2
3
|
import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure";
|
|
3
4
|
/**
|
|
4
5
|
* | | |
|
|
@@ -12,3 +13,5 @@ export interface DTAntennaNameIdPair extends DTStructure {
|
|
|
12
13
|
antennaId: Int32;
|
|
13
14
|
antennaName: UAString;
|
|
14
15
|
}
|
|
16
|
+
export interface UDTAntennaNameIdPair extends ExtensionObject, DTAntennaNameIdPair {
|
|
17
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dt_antenna_name_id_pair.js","sourceRoot":"","sources":["../source/dt_antenna_name_id_pair.ts"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"dt_antenna_name_id_pair.js","sourceRoot":"","sources":["../source/dt_antenna_name_id_pair.ts"],"names":[],"mappings":";;AAgBqF,CAAC"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { Int32, Int16, Byte } from "node-opcua-basic-types";
|
|
2
|
+
import { ExtensionObject } from "node-opcua-extension-object";
|
|
2
3
|
import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure";
|
|
3
4
|
/**
|
|
4
5
|
* | | |
|
|
@@ -21,3 +22,5 @@ export interface DTDhcpGeoConfCoordinate extends DTStructure {
|
|
|
21
22
|
altitudeFraction: Int16;
|
|
22
23
|
datum: Byte;
|
|
23
24
|
}
|
|
25
|
+
export interface UDTDhcpGeoConfCoordinate extends ExtensionObject, DTDhcpGeoConfCoordinate {
|
|
26
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dt_dhcp_geo_conf_coordinate.js","sourceRoot":"","sources":["../source/dt_dhcp_geo_conf_coordinate.ts"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"dt_dhcp_geo_conf_coordinate.js","sourceRoot":"","sources":["../source/dt_dhcp_geo_conf_coordinate.ts"],"names":[],"mappings":";;AAyB6F,CAAC"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { Int32 } from "node-opcua-basic-types";
|
|
2
|
+
import { ExtensionObject } from "node-opcua-extension-object";
|
|
2
3
|
import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure";
|
|
3
4
|
/**
|
|
4
5
|
* | | |
|
|
@@ -19,3 +20,5 @@ export interface DTLocalCoordinate extends DTStructure {
|
|
|
19
20
|
/** Optional*/
|
|
20
21
|
usefulPrecision: Int32;
|
|
21
22
|
}
|
|
23
|
+
export interface UDTLocalCoordinate extends ExtensionObject, DTLocalCoordinate {
|
|
24
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dt_local_coordinate.js","sourceRoot":"","sources":["../source/dt_local_coordinate.ts"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"dt_local_coordinate.js","sourceRoot":"","sources":["../source/dt_local_coordinate.ts"],"names":[],"mappings":";;AAuBiF,CAAC"}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { NodeId } from "node-opcua-nodeid";
|
|
2
2
|
import { Byte, UAString } from "node-opcua-basic-types";
|
|
3
|
+
import { ExtensionObject } from "node-opcua-extension-object";
|
|
3
4
|
import { DTScanResult } from "./dt_scan_result";
|
|
4
5
|
import { DTScanData } from "./dt_scan_data";
|
|
5
6
|
import { DTLocation } from "./dt_location";
|
|
@@ -20,7 +21,7 @@ export interface DTOcrScanResult extends DTScanResult {
|
|
|
20
21
|
/** Timestamp of the ScanResult creation.*/
|
|
21
22
|
timestamp: Date;
|
|
22
23
|
/** Returns the location of the object detection.*/
|
|
23
|
-
location
|
|
24
|
+
location?: DTLocation;
|
|
24
25
|
/** NodeId of the original scan image file object used for this scan result.*/
|
|
25
26
|
imageId: NodeId;
|
|
26
27
|
/** Returns the probability of correct decoding.*/
|
|
@@ -28,7 +29,9 @@ export interface DTOcrScanResult extends DTScanResult {
|
|
|
28
29
|
/** Returns the position of the text within the image.*/
|
|
29
30
|
position: DTPosition;
|
|
30
31
|
/** Returns the font name used for decoding.*/
|
|
31
|
-
font
|
|
32
|
+
font?: UAString;
|
|
32
33
|
/** Returns the required decoding time.*/
|
|
33
|
-
decodingTime
|
|
34
|
+
decodingTime?: Date;
|
|
35
|
+
}
|
|
36
|
+
export interface UDTOcrScanResult extends ExtensionObject, DTOcrScanResult {
|
|
34
37
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dt_ocr_scan_result.js","sourceRoot":"","sources":["../source/dt_ocr_scan_result.ts"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"dt_ocr_scan_result.js","sourceRoot":"","sources":["../source/dt_ocr_scan_result.ts"],"names":[],"mappings":";;AAoC6E,CAAC"}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { NodeId } from "node-opcua-nodeid";
|
|
2
2
|
import { UAString } from "node-opcua-basic-types";
|
|
3
|
+
import { ExtensionObject } from "node-opcua-extension-object";
|
|
3
4
|
import { DTScanResult } from "./dt_scan_result";
|
|
4
5
|
import { DTScanData } from "./dt_scan_data";
|
|
5
6
|
import { DTLocation } from "./dt_location";
|
|
@@ -20,11 +21,13 @@ export interface DTOpticalScanResult extends DTScanResult {
|
|
|
20
21
|
/** Timestamp of the ScanResult creation.*/
|
|
21
22
|
timestamp: Date;
|
|
22
23
|
/** Returns the location of the object detection.*/
|
|
23
|
-
location
|
|
24
|
+
location?: DTLocation;
|
|
24
25
|
/** Returns the quality of the 1D/2D code.*/
|
|
25
|
-
grade
|
|
26
|
+
grade?: number;
|
|
26
27
|
/** Returns the position of the text within the image.*/
|
|
27
|
-
position
|
|
28
|
-
symbology
|
|
29
|
-
imageId
|
|
28
|
+
position?: DTPosition;
|
|
29
|
+
symbology?: UAString;
|
|
30
|
+
imageId?: NodeId;
|
|
31
|
+
}
|
|
32
|
+
export interface UDTOpticalScanResult extends ExtensionObject, DTOpticalScanResult {
|
|
30
33
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dt_optical_scan_result.js","sourceRoot":"","sources":["../source/dt_optical_scan_result.ts"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"dt_optical_scan_result.js","sourceRoot":"","sources":["../source/dt_optical_scan_result.ts"],"names":[],"mappings":";;AAgCqF,CAAC"}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { NodeId } from "node-opcua-nodeid";
|
|
2
2
|
import { Int16, UAString } from "node-opcua-basic-types";
|
|
3
|
+
import { ExtensionObject } from "node-opcua-extension-object";
|
|
3
4
|
import { DTOpticalScanResult } from "./dt_optical_scan_result";
|
|
4
5
|
import { DTScanData } from "./dt_scan_data";
|
|
5
6
|
import { DTLocation } from "./dt_location";
|
|
@@ -20,13 +21,13 @@ export interface DTOpticalVerifierScanResult extends DTOpticalScanResult {
|
|
|
20
21
|
/** Timestamp of the ScanResult creation.*/
|
|
21
22
|
timestamp: Date;
|
|
22
23
|
/** Returns the location of the object detection.*/
|
|
23
|
-
location
|
|
24
|
+
location?: DTLocation;
|
|
24
25
|
/** Returns the quality of the 1D/2D code.*/
|
|
25
|
-
grade
|
|
26
|
+
grade?: number;
|
|
26
27
|
/** Returns the position of the text within the image.*/
|
|
27
|
-
position
|
|
28
|
-
symbology
|
|
29
|
-
imageId
|
|
28
|
+
position?: DTPosition;
|
|
29
|
+
symbology?: UAString;
|
|
30
|
+
imageId?: NodeId;
|
|
30
31
|
isoGrade: UAString;
|
|
31
32
|
rMin: Int16;
|
|
32
33
|
symbolContrast: Int16;
|
|
@@ -37,3 +38,5 @@ export interface DTOpticalVerifierScanResult extends DTOpticalScanResult {
|
|
|
37
38
|
decode: Int16;
|
|
38
39
|
printGain: Int16;
|
|
39
40
|
}
|
|
41
|
+
export interface UDTOpticalVerifierScanResult extends ExtensionObject, Omit<DTOpticalVerifierScanResult, "decode"> {
|
|
42
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dt_optical_verifier_scan_result.js","sourceRoot":"","sources":["../source/dt_optical_verifier_scan_result.ts"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"dt_optical_verifier_scan_result.js","sourceRoot":"","sources":["../source/dt_optical_verifier_scan_result.ts"],"names":[],"mappings":";;AAyCoH,CAAC"}
|
package/dist/dt_position.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { Int32 } from "node-opcua-basic-types";
|
|
2
|
+
import { ExtensionObject } from "node-opcua-extension-object";
|
|
2
3
|
import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure";
|
|
3
4
|
/**
|
|
4
5
|
* | | |
|
|
@@ -15,3 +16,5 @@ export interface DTPosition extends DTStructure {
|
|
|
15
16
|
sizeY: Int32;
|
|
16
17
|
rotation: Int32;
|
|
17
18
|
}
|
|
19
|
+
export interface UDTPosition extends ExtensionObject, DTPosition {
|
|
20
|
+
}
|
package/dist/dt_position.js
CHANGED
package/dist/dt_position.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dt_position.js","sourceRoot":"","sources":["../source/dt_position.ts"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"dt_position.js","sourceRoot":"","sources":["../source/dt_position.ts"],"names":[],"mappings":";;AAmBmE,CAAC"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { Int32, UInt16, UAString } from "node-opcua-basic-types";
|
|
2
|
+
import { ExtensionObject } from "node-opcua-extension-object";
|
|
2
3
|
import { DTAccessResult } from "./dt_access_result";
|
|
3
4
|
import { DTScanData } from "./dt_scan_data";
|
|
4
5
|
/**
|
|
@@ -14,23 +15,25 @@ import { DTScanData } from "./dt_scan_data";
|
|
|
14
15
|
*/
|
|
15
16
|
export interface DTRfidAccessResult extends DTAccessResult {
|
|
16
17
|
/** Defines the format of Identifier as string.*/
|
|
17
|
-
codeType
|
|
18
|
+
codeType?: UAString;
|
|
18
19
|
/** The AutoID Identifier (e.g. a code or a transponder) which was accessed by a command.*/
|
|
19
|
-
identifier
|
|
20
|
+
identifier?: DTScanData;
|
|
20
21
|
/** The point of time the AutoID Identifier was accessed by the command.*/
|
|
21
|
-
timestamp
|
|
22
|
+
timestamp?: Date;
|
|
22
23
|
/** Defines the format of RWData as string.*/
|
|
23
|
-
codeTypeRWData
|
|
24
|
+
codeTypeRWData?: UAString;
|
|
24
25
|
/** The user data which was written to / was read from the Rfid Transponder by the command.*/
|
|
25
|
-
rwData
|
|
26
|
+
rwData?: DTScanData;
|
|
26
27
|
/** The antenna by which the transponder was accessed by the command.*/
|
|
27
|
-
antenna
|
|
28
|
+
antenna?: Int32;
|
|
28
29
|
/** The power level with which the transponder was accessed by the command.*/
|
|
29
|
-
currentPowerLevel
|
|
30
|
+
currentPowerLevel?: Int32;
|
|
30
31
|
/** The Protocol Control Word of the transponder accessed by the command.*/
|
|
31
|
-
PC
|
|
32
|
+
PC?: UInt16;
|
|
32
33
|
/** The polarization with which the last transponder was accessed by the command.*/
|
|
33
|
-
polarization
|
|
34
|
+
polarization?: UAString;
|
|
34
35
|
/** The Rssi value with which the transponder was accessed by the command.*/
|
|
35
|
-
strength
|
|
36
|
+
strength?: Int32;
|
|
37
|
+
}
|
|
38
|
+
export interface UDTRfidAccessResult extends ExtensionObject, DTRfidAccessResult {
|
|
36
39
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dt_rfid_access_result.js","sourceRoot":"","sources":["../source/dt_rfid_access_result.ts"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"dt_rfid_access_result.js","sourceRoot":"","sources":["../source/dt_rfid_access_result.ts"],"names":[],"mappings":";;AAsCmF,CAAC"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { UAString } from "node-opcua-basic-types";
|
|
2
|
+
import { ExtensionObject } from "node-opcua-extension-object";
|
|
2
3
|
import { DTScanResult } from "./dt_scan_result";
|
|
3
4
|
import { DTScanData } from "./dt_scan_data";
|
|
4
5
|
import { DTLocation } from "./dt_location";
|
|
@@ -19,7 +20,9 @@ export interface DTRfidScanResult extends DTScanResult {
|
|
|
19
20
|
/** Timestamp of the ScanResult creation.*/
|
|
20
21
|
timestamp: Date;
|
|
21
22
|
/** Returns the location of the object detection.*/
|
|
22
|
-
location
|
|
23
|
+
location?: DTLocation;
|
|
23
24
|
/** Returns additional information on the RFID-related properties of the scan event.*/
|
|
24
25
|
sighting: DTRfidSighting[];
|
|
25
26
|
}
|
|
27
|
+
export interface UDTRfidScanResult extends ExtensionObject, DTRfidScanResult {
|
|
28
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dt_rfid_scan_result.js","sourceRoot":"","sources":["../source/dt_rfid_scan_result.ts"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"dt_rfid_scan_result.js","sourceRoot":"","sources":["../source/dt_rfid_scan_result.ts"],"names":[],"mappings":";;AA2B+E,CAAC"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { Int32 } from "node-opcua-basic-types";
|
|
2
|
+
import { ExtensionObject } from "node-opcua-extension-object";
|
|
2
3
|
import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure";
|
|
3
4
|
/**
|
|
4
5
|
* | | |
|
|
@@ -18,3 +19,5 @@ export interface DTRfidSighting extends DTStructure {
|
|
|
18
19
|
/** Returns the current power level (unit according to parameter settings).*/
|
|
19
20
|
currentPowerLevel: Int32;
|
|
20
21
|
}
|
|
22
|
+
export interface UDTRfidSighting extends ExtensionObject, DTRfidSighting {
|
|
23
|
+
}
|
package/dist/dt_rfid_sighting.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dt_rfid_sighting.js","sourceRoot":"","sources":["../source/dt_rfid_sighting.ts"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"dt_rfid_sighting.js","sourceRoot":"","sources":["../source/dt_rfid_sighting.ts"],"names":[],"mappings":";;AAsB2E,CAAC"}
|
package/dist/dt_rotation.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { ExtensionObject } from "node-opcua-extension-object";
|
|
1
2
|
import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure";
|
|
2
3
|
/**
|
|
3
4
|
* | | |
|
|
@@ -12,3 +13,5 @@ export interface DTRotation extends DTStructure {
|
|
|
12
13
|
pitch: number;
|
|
13
14
|
roll: number;
|
|
14
15
|
}
|
|
16
|
+
export interface UDTRotation extends ExtensionObject, DTRotation {
|
|
17
|
+
}
|
package/dist/dt_rotation.js
CHANGED
package/dist/dt_rotation.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dt_rotation.js","sourceRoot":"","sources":["../source/dt_rotation.ts"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"dt_rotation.js","sourceRoot":"","sources":["../source/dt_rotation.ts"],"names":[],"mappings":";;AAgBmE,CAAC"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { UAString } from "node-opcua-basic-types";
|
|
2
|
+
import { ExtensionObject } from "node-opcua-extension-object";
|
|
2
3
|
import { DTScanResult } from "./dt_scan_result";
|
|
3
4
|
import { DTScanData } from "./dt_scan_data";
|
|
4
5
|
import { DTLocation } from "./dt_location";
|
|
@@ -19,9 +20,11 @@ export interface DTRtlsLocationResult extends DTScanResult {
|
|
|
19
20
|
/** Timestamp of the ScanResult creation.*/
|
|
20
21
|
timestamp: Date;
|
|
21
22
|
/** Returns the location of the object detection.*/
|
|
22
|
-
location
|
|
23
|
+
location?: DTLocation;
|
|
23
24
|
speed: number;
|
|
24
25
|
heading: number;
|
|
25
26
|
rotation: DTRotation;
|
|
26
27
|
receiveTime: Date;
|
|
27
28
|
}
|
|
29
|
+
export interface UDTRtlsLocationResult extends ExtensionObject, DTRtlsLocationResult {
|
|
30
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dt_rtls_location_result.js","sourceRoot":"","sources":["../source/dt_rtls_location_result.ts"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"dt_rtls_location_result.js","sourceRoot":"","sources":["../source/dt_rtls_location_result.ts"],"names":[],"mappings":";;AA6BuF,CAAC"}
|
package/dist/dt_scan_data.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
|
+
import { VariantOptions } from "node-opcua-variant";
|
|
2
3
|
import { UAString } from "node-opcua-basic-types";
|
|
3
4
|
import { DTUnion } from "node-opcua-nodeset-ua/source/dt_union";
|
|
4
5
|
import { DTScanDataEpc } from "./dt_scan_data_epc";
|
|
@@ -32,6 +33,6 @@ export interface DTScanData_3 extends DTUnion {
|
|
|
32
33
|
byteString?: never;
|
|
33
34
|
string?: never;
|
|
34
35
|
epc?: never;
|
|
35
|
-
custom:
|
|
36
|
+
custom: VariantOptions;
|
|
36
37
|
}
|
|
37
38
|
export declare type DTScanData = DTScanData_0 | DTScanData_1 | DTScanData_2 | DTScanData_3;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
2
|
import { UInt16 } from "node-opcua-basic-types";
|
|
3
|
+
import { ExtensionObject } from "node-opcua-extension-object";
|
|
3
4
|
import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure";
|
|
4
5
|
/**
|
|
5
6
|
* | | |
|
|
@@ -15,3 +16,5 @@ export interface DTScanDataEpc extends DTStructure {
|
|
|
15
16
|
XPC_W1: UInt16;
|
|
16
17
|
XPC_W2: UInt16;
|
|
17
18
|
}
|
|
19
|
+
export interface UDTScanDataEpc extends ExtensionObject, DTScanDataEpc {
|
|
20
|
+
}
|
package/dist/dt_scan_data_epc.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dt_scan_data_epc.js","sourceRoot":"","sources":["../source/dt_scan_data_epc.ts"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"dt_scan_data_epc.js","sourceRoot":"","sources":["../source/dt_scan_data_epc.ts"],"names":[],"mappings":";;AAkByE,CAAC"}
|
package/dist/dt_scan_result.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { UAString } from "node-opcua-basic-types";
|
|
2
|
+
import { ExtensionObject } from "node-opcua-extension-object";
|
|
2
3
|
import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure";
|
|
3
4
|
import { DTScanData } from "./dt_scan_data";
|
|
4
5
|
import { DTLocation } from "./dt_location";
|
|
@@ -18,5 +19,7 @@ export interface DTScanResult extends DTStructure {
|
|
|
18
19
|
/** Timestamp of the ScanResult creation.*/
|
|
19
20
|
timestamp: Date;
|
|
20
21
|
/** Returns the location of the object detection.*/
|
|
21
|
-
location
|
|
22
|
+
location?: DTLocation;
|
|
23
|
+
}
|
|
24
|
+
export interface UDTScanResult extends ExtensionObject, DTScanResult {
|
|
22
25
|
}
|
package/dist/dt_scan_result.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dt_scan_result.js","sourceRoot":"","sources":["../source/dt_scan_result.ts"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"dt_scan_result.js","sourceRoot":"","sources":["../source/dt_scan_result.ts"],"names":[],"mappings":";;AAwBuE,CAAC"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { Int32 } from "node-opcua-basic-types";
|
|
2
|
+
import { ExtensionObject } from "node-opcua-extension-object";
|
|
2
3
|
import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure";
|
|
3
4
|
import { EnumLocationType } from "./enum_location_type";
|
|
4
5
|
/**
|
|
@@ -13,5 +14,7 @@ export interface DTScanSettings extends DTStructure {
|
|
|
13
14
|
duration: number;
|
|
14
15
|
cycles: Int32;
|
|
15
16
|
dataAvailable: boolean;
|
|
16
|
-
locationType
|
|
17
|
+
locationType?: EnumLocationType;
|
|
18
|
+
}
|
|
19
|
+
export interface UDTScanSettings extends ExtensionObject, DTScanSettings {
|
|
17
20
|
}
|
package/dist/dt_scan_settings.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dt_scan_settings.js","sourceRoot":"","sources":["../source/dt_scan_settings.ts"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"dt_scan_settings.js","sourceRoot":"","sources":["../source/dt_scan_settings.ts"],"names":[],"mappings":";;AAmB2E,CAAC"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { Int32, UAString } from "node-opcua-basic-types";
|
|
2
|
+
import { ExtensionObject } from "node-opcua-extension-object";
|
|
2
3
|
import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure";
|
|
3
4
|
/**
|
|
4
5
|
* | | |
|
|
@@ -19,3 +20,5 @@ export interface DTWGS84Coordinate extends DTStructure {
|
|
|
19
20
|
usefulPrecisionLatLon: Int32;
|
|
20
21
|
usefulPrecisionAlt: Int32;
|
|
21
22
|
}
|
|
23
|
+
export interface UDTWGS84Coordinate extends ExtensionObject, DTWGS84Coordinate {
|
|
24
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dt_wgs_84_coordinate.js","sourceRoot":"","sources":["../source/dt_wgs_84_coordinate.ts"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"dt_wgs_84_coordinate.js","sourceRoot":"","sources":["../source/dt_wgs_84_coordinate.ts"],"names":[],"mappings":";;AAuBiF,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-opcua-nodeset-auto-id",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.77.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -10,14 +10,15 @@
|
|
|
10
10
|
"author": "etienne.rossignon@sterfive.com",
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"node-opcua-address-space-base": "2.
|
|
14
|
-
"node-opcua-basic-types": "2.
|
|
15
|
-
"node-opcua-data-access": "2.
|
|
16
|
-
"node-opcua-data-model": "2.
|
|
17
|
-
"node-opcua-
|
|
18
|
-
"node-opcua-
|
|
19
|
-
"node-opcua-nodeset-
|
|
20
|
-
"node-opcua-
|
|
13
|
+
"node-opcua-address-space-base": "2.77.0",
|
|
14
|
+
"node-opcua-basic-types": "2.77.0",
|
|
15
|
+
"node-opcua-data-access": "2.77.0",
|
|
16
|
+
"node-opcua-data-model": "2.77.0",
|
|
17
|
+
"node-opcua-extension-object": "2.77.0",
|
|
18
|
+
"node-opcua-nodeid": "2.77.0",
|
|
19
|
+
"node-opcua-nodeset-di": "2.77.0",
|
|
20
|
+
"node-opcua-nodeset-ua": "2.77.0",
|
|
21
|
+
"node-opcua-variant": "2.77.0"
|
|
21
22
|
},
|
|
22
|
-
"gitHead": "
|
|
23
|
+
"gitHead": "5c8d45772d786fa4ba59369dd26679353ab5482b"
|
|
23
24
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { UAString } from "node-opcua-basic-types"
|
|
3
|
+
import { ExtensionObject } from "node-opcua-extension-object"
|
|
3
4
|
import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure"
|
|
4
5
|
import { DTScanData } from "./dt_scan_data"
|
|
5
6
|
/**
|
|
@@ -13,10 +14,11 @@ import { DTScanData } from "./dt_scan_data"
|
|
|
13
14
|
* | isAbstract|false |
|
|
14
15
|
*/
|
|
15
16
|
export interface DTAccessResult extends DTStructure {
|
|
16
|
-
/** Defines the format of Identifier as string.*/
|
|
17
|
-
codeType
|
|
18
|
-
/** The AutoID Identifier (e.g. a code or a transponder) which was accessed by a command.*/
|
|
19
|
-
identifier
|
|
20
|
-
/** The point of time the AutoID Identifier was accessed by the command.*/
|
|
21
|
-
timestamp
|
|
22
|
-
}
|
|
17
|
+
/** Defines the format of Identifier as string.*/
|
|
18
|
+
codeType?: UAString; // String ns=3;i=3031
|
|
19
|
+
/** The AutoID Identifier (e.g. a code or a transponder) which was accessed by a command.*/
|
|
20
|
+
identifier?: DTScanData; // ExtensionObject ns=3;i=3020
|
|
21
|
+
/** The point of time the AutoID Identifier was accessed by the command.*/
|
|
22
|
+
timestamp?: Date; // DateTime ns=0;i=294
|
|
23
|
+
}
|
|
24
|
+
export interface UDTAccessResult extends ExtensionObject, DTAccessResult {};
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { Int32, UAString } from "node-opcua-basic-types"
|
|
3
|
+
import { ExtensionObject } from "node-opcua-extension-object"
|
|
3
4
|
import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure"
|
|
4
5
|
/**
|
|
5
6
|
* | | |
|
|
@@ -12,4 +13,5 @@ import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure"
|
|
|
12
13
|
export interface DTAntennaNameIdPair extends DTStructure {
|
|
13
14
|
antennaId: Int32; // Int32 ns=0;i=6
|
|
14
15
|
antennaName: UAString; // String ns=0;i=12
|
|
15
|
-
}
|
|
16
|
+
}
|
|
17
|
+
export interface UDTAntennaNameIdPair extends ExtensionObject, DTAntennaNameIdPair {};
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { Int32, Int16, Byte } from "node-opcua-basic-types"
|
|
3
|
+
import { ExtensionObject } from "node-opcua-extension-object"
|
|
3
4
|
import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure"
|
|
4
5
|
/**
|
|
5
6
|
* | | |
|
|
@@ -21,4 +22,5 @@ export interface DTDhcpGeoConfCoordinate extends DTStructure {
|
|
|
21
22
|
altitudeInteger: Int32; // Int32 ns=0;i=6
|
|
22
23
|
altitudeFraction: Int16; // Int16 ns=0;i=4
|
|
23
24
|
datum: Byte; // Byte ns=0;i=3
|
|
24
|
-
}
|
|
25
|
+
}
|
|
26
|
+
export interface UDTDhcpGeoConfCoordinate extends ExtensionObject, DTDhcpGeoConfCoordinate {};
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { Int32 } from "node-opcua-basic-types"
|
|
3
|
+
import { ExtensionObject } from "node-opcua-extension-object"
|
|
3
4
|
import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure"
|
|
4
5
|
/**
|
|
5
6
|
* | | |
|
|
@@ -13,10 +14,11 @@ export interface DTLocalCoordinate extends DTStructure {
|
|
|
13
14
|
x: number; // Double ns=0;i=11
|
|
14
15
|
y: number; // Double ns=0;i=11
|
|
15
16
|
z: number; // Double ns=0;i=11
|
|
16
|
-
/** Optional*/
|
|
17
|
+
/** Optional*/
|
|
17
18
|
timestamp: Date; // DateTime ns=0;i=294
|
|
18
|
-
/** Optional*/
|
|
19
|
+
/** Optional*/
|
|
19
20
|
dilutionOfPrecision: number; // Double ns=0;i=11
|
|
20
|
-
/** Optional*/
|
|
21
|
+
/** Optional*/
|
|
21
22
|
usefulPrecision: Int32; // Int32 ns=0;i=6
|
|
22
|
-
}
|
|
23
|
+
}
|
|
24
|
+
export interface UDTLocalCoordinate extends ExtensionObject, DTLocalCoordinate {};
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { NodeId } from "node-opcua-nodeid"
|
|
3
3
|
import { Byte, UAString } from "node-opcua-basic-types"
|
|
4
|
+
import { ExtensionObject } from "node-opcua-extension-object"
|
|
4
5
|
import { DTScanResult } from "./dt_scan_result"
|
|
5
6
|
import { DTScanData } from "./dt_scan_data"
|
|
6
7
|
import { DTLocation } from "./dt_location"
|
|
@@ -14,22 +15,23 @@ import { DTPosition } from "./dt_position"
|
|
|
14
15
|
* | isAbstract|false |
|
|
15
16
|
*/
|
|
16
17
|
export interface DTOcrScanResult extends DTScanResult {
|
|
17
|
-
/** Defines the format of the ScanData as string.*/
|
|
18
|
+
/** Defines the format of the ScanData as string.*/
|
|
18
19
|
codeType: UAString; // String ns=3;i=3031
|
|
19
|
-
/** Holds the information about the detected objects e.g. the detected transponders.*/
|
|
20
|
+
/** Holds the information about the detected objects e.g. the detected transponders.*/
|
|
20
21
|
scanData: DTScanData; // ExtensionObject ns=3;i=3020
|
|
21
|
-
/** Timestamp of the ScanResult creation.*/
|
|
22
|
+
/** Timestamp of the ScanResult creation.*/
|
|
22
23
|
timestamp: Date; // DateTime ns=0;i=294
|
|
23
|
-
/** Returns the location of the object detection.*/
|
|
24
|
-
location
|
|
25
|
-
/** NodeId of the original scan image file object used for this scan result.*/
|
|
24
|
+
/** Returns the location of the object detection.*/
|
|
25
|
+
location?: DTLocation; // ExtensionObject ns=3;i=3008
|
|
26
|
+
/** NodeId of the original scan image file object used for this scan result.*/
|
|
26
27
|
imageId: NodeId; // NodeId ns=0;i=17
|
|
27
|
-
/** Returns the probability of correct decoding.*/
|
|
28
|
+
/** Returns the probability of correct decoding.*/
|
|
28
29
|
quality: Byte; // Byte ns=0;i=3
|
|
29
|
-
/** Returns the position of the text within the image.*/
|
|
30
|
+
/** Returns the position of the text within the image.*/
|
|
30
31
|
position: DTPosition; // ExtensionObject ns=3;i=3004
|
|
31
|
-
/** Returns the font name used for decoding.*/
|
|
32
|
-
font
|
|
33
|
-
/** Returns the required decoding time.*/
|
|
34
|
-
decodingTime
|
|
35
|
-
}
|
|
32
|
+
/** Returns the font name used for decoding.*/
|
|
33
|
+
font?: UAString; // String ns=0;i=12
|
|
34
|
+
/** Returns the required decoding time.*/
|
|
35
|
+
decodingTime?: Date; // DateTime ns=0;i=294
|
|
36
|
+
}
|
|
37
|
+
export interface UDTOcrScanResult extends ExtensionObject, DTOcrScanResult {};
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { NodeId } from "node-opcua-nodeid"
|
|
3
3
|
import { UAString } from "node-opcua-basic-types"
|
|
4
|
+
import { ExtensionObject } from "node-opcua-extension-object"
|
|
4
5
|
import { DTScanResult } from "./dt_scan_result"
|
|
5
6
|
import { DTScanData } from "./dt_scan_data"
|
|
6
7
|
import { DTLocation } from "./dt_location"
|
|
@@ -14,18 +15,19 @@ import { DTPosition } from "./dt_position"
|
|
|
14
15
|
* | isAbstract|false |
|
|
15
16
|
*/
|
|
16
17
|
export interface DTOpticalScanResult extends DTScanResult {
|
|
17
|
-
/** Defines the format of the ScanData as string.*/
|
|
18
|
+
/** Defines the format of the ScanData as string.*/
|
|
18
19
|
codeType: UAString; // String ns=3;i=3031
|
|
19
|
-
/** Holds the information about the detected objects e.g. the detected transponders.*/
|
|
20
|
+
/** Holds the information about the detected objects e.g. the detected transponders.*/
|
|
20
21
|
scanData: DTScanData; // ExtensionObject ns=3;i=3020
|
|
21
|
-
/** Timestamp of the ScanResult creation.*/
|
|
22
|
+
/** Timestamp of the ScanResult creation.*/
|
|
22
23
|
timestamp: Date; // DateTime ns=0;i=294
|
|
23
|
-
/** Returns the location of the object detection.*/
|
|
24
|
-
location
|
|
25
|
-
/** Returns the quality of the 1D/2D code.*/
|
|
26
|
-
grade
|
|
27
|
-
/** Returns the position of the text within the image.*/
|
|
28
|
-
position
|
|
29
|
-
symbology
|
|
30
|
-
imageId
|
|
31
|
-
}
|
|
24
|
+
/** Returns the location of the object detection.*/
|
|
25
|
+
location?: DTLocation; // ExtensionObject ns=3;i=3008
|
|
26
|
+
/** Returns the quality of the 1D/2D code.*/
|
|
27
|
+
grade?: number; // Float ns=0;i=10
|
|
28
|
+
/** Returns the position of the text within the image.*/
|
|
29
|
+
position?: DTPosition; // ExtensionObject ns=3;i=3004
|
|
30
|
+
symbology?: UAString; // String ns=0;i=12
|
|
31
|
+
imageId?: NodeId; // NodeId ns=0;i=17
|
|
32
|
+
}
|
|
33
|
+
export interface UDTOpticalScanResult extends ExtensionObject, DTOpticalScanResult {};
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { NodeId } from "node-opcua-nodeid"
|
|
3
3
|
import { Int16, UAString } from "node-opcua-basic-types"
|
|
4
|
+
import { ExtensionObject } from "node-opcua-extension-object"
|
|
4
5
|
import { DTOpticalScanResult } from "./dt_optical_scan_result"
|
|
5
6
|
import { DTScanData } from "./dt_scan_data"
|
|
6
7
|
import { DTLocation } from "./dt_location"
|
|
@@ -14,20 +15,20 @@ import { DTPosition } from "./dt_position"
|
|
|
14
15
|
* | isAbstract|false |
|
|
15
16
|
*/
|
|
16
17
|
export interface DTOpticalVerifierScanResult extends DTOpticalScanResult {
|
|
17
|
-
/** Defines the format of the ScanData as string.*/
|
|
18
|
+
/** Defines the format of the ScanData as string.*/
|
|
18
19
|
codeType: UAString; // String ns=3;i=3031
|
|
19
|
-
/** Holds the information about the detected objects e.g. the detected transponders.*/
|
|
20
|
+
/** Holds the information about the detected objects e.g. the detected transponders.*/
|
|
20
21
|
scanData: DTScanData; // ExtensionObject ns=3;i=3020
|
|
21
|
-
/** Timestamp of the ScanResult creation.*/
|
|
22
|
+
/** Timestamp of the ScanResult creation.*/
|
|
22
23
|
timestamp: Date; // DateTime ns=0;i=294
|
|
23
|
-
/** Returns the location of the object detection.*/
|
|
24
|
-
location
|
|
25
|
-
/** Returns the quality of the 1D/2D code.*/
|
|
26
|
-
grade
|
|
27
|
-
/** Returns the position of the text within the image.*/
|
|
28
|
-
position
|
|
29
|
-
symbology
|
|
30
|
-
imageId
|
|
24
|
+
/** Returns the location of the object detection.*/
|
|
25
|
+
location?: DTLocation; // ExtensionObject ns=3;i=3008
|
|
26
|
+
/** Returns the quality of the 1D/2D code.*/
|
|
27
|
+
grade?: number; // Float ns=0;i=10
|
|
28
|
+
/** Returns the position of the text within the image.*/
|
|
29
|
+
position?: DTPosition; // ExtensionObject ns=3;i=3004
|
|
30
|
+
symbology?: UAString; // String ns=0;i=12
|
|
31
|
+
imageId?: NodeId; // NodeId ns=0;i=17
|
|
31
32
|
isoGrade: UAString; // String ns=0;i=12
|
|
32
33
|
rMin: Int16; // Int16 ns=0;i=4
|
|
33
34
|
symbolContrast: Int16; // Int16 ns=0;i=4
|
|
@@ -37,4 +38,5 @@ export interface DTOpticalVerifierScanResult extends DTOpticalScanResult {
|
|
|
37
38
|
decodability: Int16; // Int16 ns=0;i=4
|
|
38
39
|
decode: Int16; // Int16 ns=0;i=4
|
|
39
40
|
printGain: Int16; // Int16 ns=0;i=4
|
|
40
|
-
}
|
|
41
|
+
}
|
|
42
|
+
export interface UDTOpticalVerifierScanResult extends ExtensionObject, Omit<DTOpticalVerifierScanResult,"decode"> {};
|
package/source/dt_position.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { Int32 } from "node-opcua-basic-types"
|
|
3
|
+
import { ExtensionObject } from "node-opcua-extension-object"
|
|
3
4
|
import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure"
|
|
4
5
|
/**
|
|
5
6
|
* | | |
|
|
@@ -15,4 +16,5 @@ export interface DTPosition extends DTStructure {
|
|
|
15
16
|
sizeX: Int32; // Int32 ns=0;i=6
|
|
16
17
|
sizeY: Int32; // Int32 ns=0;i=6
|
|
17
18
|
rotation: Int32; // Int32 ns=0;i=6
|
|
18
|
-
}
|
|
19
|
+
}
|
|
20
|
+
export interface UDTPosition extends ExtensionObject, DTPosition {};
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { Int32, UInt16, UAString } from "node-opcua-basic-types"
|
|
3
|
+
import { ExtensionObject } from "node-opcua-extension-object"
|
|
3
4
|
import { DTAccessResult } from "./dt_access_result"
|
|
4
5
|
import { DTScanData } from "./dt_scan_data"
|
|
5
6
|
/**
|
|
@@ -14,24 +15,25 @@ import { DTScanData } from "./dt_scan_data"
|
|
|
14
15
|
* | isAbstract|false |
|
|
15
16
|
*/
|
|
16
17
|
export interface DTRfidAccessResult extends DTAccessResult {
|
|
17
|
-
/** Defines the format of Identifier as string.*/
|
|
18
|
-
codeType
|
|
19
|
-
/** The AutoID Identifier (e.g. a code or a transponder) which was accessed by a command.*/
|
|
20
|
-
identifier
|
|
21
|
-
/** The point of time the AutoID Identifier was accessed by the command.*/
|
|
22
|
-
timestamp
|
|
23
|
-
/** Defines the format of RWData as string.*/
|
|
24
|
-
codeTypeRWData
|
|
25
|
-
/** The user data which was written to / was read from the Rfid Transponder by the command.*/
|
|
26
|
-
rwData
|
|
27
|
-
/** The antenna by which the transponder was accessed by the command.*/
|
|
28
|
-
antenna
|
|
29
|
-
/** The power level with which the transponder was accessed by the command.*/
|
|
30
|
-
currentPowerLevel
|
|
31
|
-
/** The Protocol Control Word of the transponder accessed by the command.*/
|
|
32
|
-
PC
|
|
33
|
-
/** The polarization with which the last transponder was accessed by the command.*/
|
|
34
|
-
polarization
|
|
35
|
-
/** The Rssi value with which the transponder was accessed by the command.*/
|
|
36
|
-
strength
|
|
37
|
-
}
|
|
18
|
+
/** Defines the format of Identifier as string.*/
|
|
19
|
+
codeType?: UAString; // String ns=3;i=3031
|
|
20
|
+
/** The AutoID Identifier (e.g. a code or a transponder) which was accessed by a command.*/
|
|
21
|
+
identifier?: DTScanData; // ExtensionObject ns=3;i=3020
|
|
22
|
+
/** The point of time the AutoID Identifier was accessed by the command.*/
|
|
23
|
+
timestamp?: Date; // DateTime ns=0;i=294
|
|
24
|
+
/** Defines the format of RWData as string.*/
|
|
25
|
+
codeTypeRWData?: UAString; // String ns=3;i=3031
|
|
26
|
+
/** The user data which was written to / was read from the Rfid Transponder by the command.*/
|
|
27
|
+
rwData?: DTScanData; // ExtensionObject ns=3;i=3020
|
|
28
|
+
/** The antenna by which the transponder was accessed by the command.*/
|
|
29
|
+
antenna?: Int32; // Int32 ns=0;i=6
|
|
30
|
+
/** The power level with which the transponder was accessed by the command.*/
|
|
31
|
+
currentPowerLevel?: Int32; // Int32 ns=0;i=6
|
|
32
|
+
/** The Protocol Control Word of the transponder accessed by the command.*/
|
|
33
|
+
PC?: UInt16; // UInt16 ns=0;i=5
|
|
34
|
+
/** The polarization with which the last transponder was accessed by the command.*/
|
|
35
|
+
polarization?: UAString; // String ns=0;i=12
|
|
36
|
+
/** The Rssi value with which the transponder was accessed by the command.*/
|
|
37
|
+
strength?: Int32; // Int32 ns=0;i=6
|
|
38
|
+
}
|
|
39
|
+
export interface UDTRfidAccessResult extends ExtensionObject, DTRfidAccessResult {};
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { UAString } from "node-opcua-basic-types"
|
|
3
|
+
import { ExtensionObject } from "node-opcua-extension-object"
|
|
3
4
|
import { DTScanResult } from "./dt_scan_result"
|
|
4
5
|
import { DTScanData } from "./dt_scan_data"
|
|
5
6
|
import { DTLocation } from "./dt_location"
|
|
@@ -13,14 +14,15 @@ import { DTRfidSighting } from "./dt_rfid_sighting"
|
|
|
13
14
|
* | isAbstract|false |
|
|
14
15
|
*/
|
|
15
16
|
export interface DTRfidScanResult extends DTScanResult {
|
|
16
|
-
/** Defines the format of the ScanData as string.*/
|
|
17
|
+
/** Defines the format of the ScanData as string.*/
|
|
17
18
|
codeType: UAString; // String ns=3;i=3031
|
|
18
|
-
/** Holds the information about the detected objects e.g. the detected transponders.*/
|
|
19
|
+
/** Holds the information about the detected objects e.g. the detected transponders.*/
|
|
19
20
|
scanData: DTScanData; // ExtensionObject ns=3;i=3020
|
|
20
|
-
/** Timestamp of the ScanResult creation.*/
|
|
21
|
+
/** Timestamp of the ScanResult creation.*/
|
|
21
22
|
timestamp: Date; // DateTime ns=0;i=294
|
|
22
|
-
/** Returns the location of the object detection.*/
|
|
23
|
-
location
|
|
24
|
-
/** Returns additional information on the RFID-related properties of the scan event.*/
|
|
23
|
+
/** Returns the location of the object detection.*/
|
|
24
|
+
location?: DTLocation; // ExtensionObject ns=3;i=3008
|
|
25
|
+
/** Returns additional information on the RFID-related properties of the scan event.*/
|
|
25
26
|
sighting: DTRfidSighting[]; // ExtensionObject ns=3;i=3006
|
|
26
|
-
}
|
|
27
|
+
}
|
|
28
|
+
export interface UDTRfidScanResult extends ExtensionObject, DTRfidScanResult {};
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { Int32 } from "node-opcua-basic-types"
|
|
3
|
+
import { ExtensionObject } from "node-opcua-extension-object"
|
|
3
4
|
import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure"
|
|
4
5
|
/**
|
|
5
6
|
* | | |
|
|
@@ -10,12 +11,13 @@ import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure"
|
|
|
10
11
|
* | isAbstract|false |
|
|
11
12
|
*/
|
|
12
13
|
export interface DTRfidSighting extends DTStructure {
|
|
13
|
-
/** Returns the number of the antenna which detects the RFID tag first.*/
|
|
14
|
+
/** Returns the number of the antenna which detects the RFID tag first.*/
|
|
14
15
|
antenna: Int32; // Int32 ns=0;i=6
|
|
15
|
-
/** Returns the signal strength (RSSI) of the transponder. Higher values indicate a better strength.*/
|
|
16
|
+
/** Returns the signal strength (RSSI) of the transponder. Higher values indicate a better strength.*/
|
|
16
17
|
strength: Int32; // Int32 ns=0;i=6
|
|
17
|
-
/** Timestamp in UtcTime*/
|
|
18
|
+
/** Timestamp in UtcTime*/
|
|
18
19
|
timestamp: Date; // DateTime ns=0;i=294
|
|
19
|
-
/** Returns the current power level (unit according to parameter settings).*/
|
|
20
|
+
/** Returns the current power level (unit according to parameter settings).*/
|
|
20
21
|
currentPowerLevel: Int32; // Int32 ns=0;i=6
|
|
21
|
-
}
|
|
22
|
+
}
|
|
23
|
+
export interface UDTRfidSighting extends ExtensionObject, DTRfidSighting {};
|
package/source/dt_rotation.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
|
+
import { ExtensionObject } from "node-opcua-extension-object"
|
|
2
3
|
import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure"
|
|
3
4
|
/**
|
|
4
5
|
* | | |
|
|
@@ -12,4 +13,5 @@ export interface DTRotation extends DTStructure {
|
|
|
12
13
|
yaw: number; // Double ns=0;i=11
|
|
13
14
|
pitch: number; // Double ns=0;i=11
|
|
14
15
|
roll: number; // Double ns=0;i=11
|
|
15
|
-
}
|
|
16
|
+
}
|
|
17
|
+
export interface UDTRotation extends ExtensionObject, DTRotation {};
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { UAString } from "node-opcua-basic-types"
|
|
3
|
+
import { ExtensionObject } from "node-opcua-extension-object"
|
|
3
4
|
import { DTScanResult } from "./dt_scan_result"
|
|
4
5
|
import { DTScanData } from "./dt_scan_data"
|
|
5
6
|
import { DTLocation } from "./dt_location"
|
|
@@ -13,16 +14,17 @@ import { DTRotation } from "./dt_rotation"
|
|
|
13
14
|
* | isAbstract|false |
|
|
14
15
|
*/
|
|
15
16
|
export interface DTRtlsLocationResult extends DTScanResult {
|
|
16
|
-
/** Defines the format of the ScanData as string.*/
|
|
17
|
+
/** Defines the format of the ScanData as string.*/
|
|
17
18
|
codeType: UAString; // String ns=3;i=3031
|
|
18
|
-
/** Holds the information about the detected objects e.g. the detected transponders.*/
|
|
19
|
+
/** Holds the information about the detected objects e.g. the detected transponders.*/
|
|
19
20
|
scanData: DTScanData; // ExtensionObject ns=3;i=3020
|
|
20
|
-
/** Timestamp of the ScanResult creation.*/
|
|
21
|
+
/** Timestamp of the ScanResult creation.*/
|
|
21
22
|
timestamp: Date; // DateTime ns=0;i=294
|
|
22
|
-
/** Returns the location of the object detection.*/
|
|
23
|
-
location
|
|
23
|
+
/** Returns the location of the object detection.*/
|
|
24
|
+
location?: DTLocation; // ExtensionObject ns=3;i=3008
|
|
24
25
|
speed: number; // Double ns=0;i=11
|
|
25
26
|
heading: number; // Double ns=0;i=11
|
|
26
27
|
rotation: DTRotation; // ExtensionObject ns=3;i=3029
|
|
27
28
|
receiveTime: Date; // DateTime ns=0;i=294
|
|
28
|
-
}
|
|
29
|
+
}
|
|
30
|
+
export interface UDTRtlsLocationResult extends ExtensionObject, DTRtlsLocationResult {};
|
package/source/dt_scan_data.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
|
+
import { VariantOptions } from "node-opcua-variant"
|
|
2
3
|
import { UAString } from "node-opcua-basic-types"
|
|
3
4
|
import { DTUnion } from "node-opcua-nodeset-ua/source/dt_union"
|
|
4
5
|
import { DTScanDataEpc } from "./dt_scan_data_epc"
|
|
@@ -32,7 +33,7 @@ export interface DTScanData_3 extends DTUnion {
|
|
|
32
33
|
byteString?: never
|
|
33
34
|
string?: never
|
|
34
35
|
epc?: never
|
|
35
|
-
custom:
|
|
36
|
+
custom: VariantOptions; // Variant ns=0;i=0
|
|
36
37
|
}
|
|
37
38
|
export type DTScanData =
|
|
38
39
|
| DTScanData_0
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { UInt16 } from "node-opcua-basic-types"
|
|
3
|
+
import { ExtensionObject } from "node-opcua-extension-object"
|
|
3
4
|
import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure"
|
|
4
5
|
/**
|
|
5
6
|
* | | |
|
|
@@ -14,4 +15,5 @@ export interface DTScanDataEpc extends DTStructure {
|
|
|
14
15
|
uId: Buffer; // ByteString ns=0;i=15
|
|
15
16
|
XPC_W1: UInt16; // UInt16 ns=0;i=5
|
|
16
17
|
XPC_W2: UInt16; // UInt16 ns=0;i=5
|
|
17
|
-
}
|
|
18
|
+
}
|
|
19
|
+
export interface UDTScanDataEpc extends ExtensionObject, DTScanDataEpc {};
|
package/source/dt_scan_result.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { UAString } from "node-opcua-basic-types"
|
|
3
|
+
import { ExtensionObject } from "node-opcua-extension-object"
|
|
3
4
|
import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure"
|
|
4
5
|
import { DTScanData } from "./dt_scan_data"
|
|
5
6
|
import { DTLocation } from "./dt_location"
|
|
@@ -12,12 +13,13 @@ import { DTLocation } from "./dt_location"
|
|
|
12
13
|
* | isAbstract|true |
|
|
13
14
|
*/
|
|
14
15
|
export interface DTScanResult extends DTStructure {
|
|
15
|
-
/** Defines the format of the ScanData as string.*/
|
|
16
|
+
/** Defines the format of the ScanData as string.*/
|
|
16
17
|
codeType: UAString; // String ns=3;i=3031
|
|
17
|
-
/** Holds the information about the detected objects e.g. the detected transponders.*/
|
|
18
|
+
/** Holds the information about the detected objects e.g. the detected transponders.*/
|
|
18
19
|
scanData: DTScanData; // ExtensionObject ns=3;i=3020
|
|
19
|
-
/** Timestamp of the ScanResult creation.*/
|
|
20
|
+
/** Timestamp of the ScanResult creation.*/
|
|
20
21
|
timestamp: Date; // DateTime ns=0;i=294
|
|
21
|
-
/** Returns the location of the object detection.*/
|
|
22
|
-
location
|
|
23
|
-
}
|
|
22
|
+
/** Returns the location of the object detection.*/
|
|
23
|
+
location?: DTLocation; // ExtensionObject ns=3;i=3008
|
|
24
|
+
}
|
|
25
|
+
export interface UDTScanResult extends ExtensionObject, DTScanResult {};
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { Int32 } from "node-opcua-basic-types"
|
|
3
|
+
import { ExtensionObject } from "node-opcua-extension-object"
|
|
3
4
|
import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure"
|
|
4
5
|
import { EnumLocationType } from "./enum_location_type"
|
|
5
6
|
/**
|
|
@@ -14,5 +15,6 @@ export interface DTScanSettings extends DTStructure {
|
|
|
14
15
|
duration: number; // Double ns=0;i=290
|
|
15
16
|
cycles: Int32; // Int32 ns=0;i=6
|
|
16
17
|
dataAvailable: boolean; // Boolean ns=0;i=1
|
|
17
|
-
locationType
|
|
18
|
-
}
|
|
18
|
+
locationType?: EnumLocationType; // Int32 ns=3;i=3009
|
|
19
|
+
}
|
|
20
|
+
export interface UDTScanSettings extends ExtensionObject, DTScanSettings {};
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { Int32, UAString } from "node-opcua-basic-types"
|
|
3
|
+
import { ExtensionObject } from "node-opcua-extension-object"
|
|
3
4
|
import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure"
|
|
4
5
|
/**
|
|
5
6
|
* | | |
|
|
@@ -19,4 +20,5 @@ export interface DTWGS84Coordinate extends DTStructure {
|
|
|
19
20
|
dilutionOfPrecision: number; // Double ns=0;i=11
|
|
20
21
|
usefulPrecisionLatLon: Int32; // Int32 ns=0;i=6
|
|
21
22
|
usefulPrecisionAlt: Int32; // Int32 ns=0;i=6
|
|
22
|
-
}
|
|
23
|
+
}
|
|
24
|
+
export interface UDTWGS84Coordinate extends ExtensionObject, DTWGS84Coordinate {};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { UAMethod, UAProperty } from "node-opcua-address-space-base"
|
|
3
|
-
import { DataType, Variant } from "node-opcua-variant"
|
|
3
|
+
import { DataType, Variant, VariantOptions } from "node-opcua-variant"
|
|
4
4
|
import { LocalizedText, QualifiedName } from "node-opcua-data-model"
|
|
5
5
|
import { EUInformation } from "node-opcua-data-access"
|
|
6
6
|
import { UInt32, Int32, UInt16, UAString } from "node-opcua-basic-types"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { UAProperty } from "node-opcua-address-space-base"
|
|
3
|
-
import { DataType } from "node-opcua-variant"
|
|
3
|
+
import { DataType, VariantOptions } from "node-opcua-variant"
|
|
4
4
|
import { LocalizedText } from "node-opcua-data-model"
|
|
5
5
|
import { NodeId } from "node-opcua-nodeid"
|
|
6
6
|
import { UInt16, UAString } from "node-opcua-basic-types"
|