node-opcua-nodeset-auto-id 2.74.0 → 2.76.2

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 (56) hide show
  1. package/dist/dt_location.d.ts +20 -1
  2. package/dist/dt_scan_data.d.ts +20 -1
  3. package/dist/ua_auto_id_access_event.d.ts +3 -3
  4. package/dist/ua_auto_id_device.d.ts +9 -9
  5. package/dist/ua_auto_id_diagnostics_event.d.ts +1 -1
  6. package/dist/ua_auto_id_log_entry_event.d.ts +1 -2
  7. package/dist/ua_auto_id_presence_event.d.ts +1 -1
  8. package/dist/ua_auto_id_scan_event.d.ts +2 -2
  9. package/dist/ua_location_variable.d.ts +6 -6
  10. package/dist/ua_ocr_reader_device.d.ts +2 -2
  11. package/dist/ua_ocr_scan_event.d.ts +1 -1
  12. package/dist/ua_optical_reader_device.d.ts +2 -2
  13. package/dist/ua_optical_scan_event.d.ts +1 -1
  14. package/dist/ua_optical_verifier_scan_event.d.ts +1 -1
  15. package/dist/ua_rfid_access_event.d.ts +1 -1
  16. package/dist/ua_rfid_reader_device.d.ts +8 -8
  17. package/dist/ua_rfid_scan_event.d.ts +1 -1
  18. package/dist/ua_rtls_device.d.ts +4 -4
  19. package/dist/ua_rtls_location_event.d.ts +1 -1
  20. package/package.json +10 -10
  21. package/source/dt_access_result.ts +1 -1
  22. package/source/dt_antenna_name_id_pair.ts +1 -1
  23. package/source/dt_dhcp_geo_conf_coordinate.ts +1 -1
  24. package/source/dt_local_coordinate.ts +1 -1
  25. package/source/dt_location.ts +26 -2
  26. package/source/dt_ocr_scan_result.ts +1 -1
  27. package/source/dt_optical_scan_result.ts +1 -1
  28. package/source/dt_optical_verifier_scan_result.ts +1 -1
  29. package/source/dt_position.ts +1 -1
  30. package/source/dt_rfid_access_result.ts +1 -1
  31. package/source/dt_rfid_scan_result.ts +1 -1
  32. package/source/dt_rfid_sighting.ts +1 -1
  33. package/source/dt_rotation.ts +1 -1
  34. package/source/dt_rtls_location_result.ts +1 -1
  35. package/source/dt_scan_data.ts +26 -2
  36. package/source/dt_scan_data_epc.ts +1 -1
  37. package/source/dt_scan_result.ts +1 -1
  38. package/source/dt_scan_settings.ts +1 -1
  39. package/source/dt_wgs_84_coordinate.ts +1 -1
  40. package/source/ua_auto_id_access_event.ts +3 -3
  41. package/source/ua_auto_id_device.ts +9 -9
  42. package/source/ua_auto_id_diagnostics_event.ts +1 -1
  43. package/source/ua_auto_id_log_entry_event.ts +1 -2
  44. package/source/ua_auto_id_presence_event.ts +1 -1
  45. package/source/ua_auto_id_scan_event.ts +2 -2
  46. package/source/ua_location_variable.ts +6 -6
  47. package/source/ua_ocr_reader_device.ts +2 -2
  48. package/source/ua_ocr_scan_event.ts +1 -1
  49. package/source/ua_optical_reader_device.ts +2 -2
  50. package/source/ua_optical_scan_event.ts +1 -1
  51. package/source/ua_optical_verifier_scan_event.ts +1 -1
  52. package/source/ua_rfid_access_event.ts +1 -1
  53. package/source/ua_rfid_reader_device.ts +8 -8
  54. package/source/ua_rfid_scan_event.ts +1 -1
  55. package/source/ua_rtls_device.ts +4 -4
  56. package/source/ua_rtls_location_event.ts +1 -1
@@ -10,9 +10,28 @@ import { DTWGS84Coordinate } from "./dt_wgs_84_coordinate";
10
10
  * | name |3:Location |
11
11
  * | isAbstract|false |
12
12
  */
13
- export interface DTLocation extends DTUnion {
13
+ export interface DTLocation_0 extends DTUnion {
14
14
  NMEA: UAString;
15
+ local?: never;
16
+ WGS84?: never;
17
+ name?: never;
18
+ }
19
+ export interface DTLocation_1 extends DTUnion {
20
+ NMEA?: never;
15
21
  local: DTLocalCoordinate;
22
+ WGS84?: never;
23
+ name?: never;
24
+ }
25
+ export interface DTLocation_2 extends DTUnion {
26
+ NMEA?: never;
27
+ local?: never;
16
28
  WGS84: DTWGS84Coordinate;
29
+ name?: never;
30
+ }
31
+ export interface DTLocation_3 extends DTUnion {
32
+ NMEA?: never;
33
+ local?: never;
34
+ WGS84?: never;
17
35
  name: UAString;
18
36
  }
37
+ export declare type DTLocation = DTLocation_0 | DTLocation_1 | DTLocation_2 | DTLocation_3;
@@ -10,9 +10,28 @@ import { DTScanDataEpc } from "./dt_scan_data_epc";
10
10
  * | name |3:ScanData |
11
11
  * | isAbstract|false |
12
12
  */
13
- export interface DTScanData extends DTUnion {
13
+ export interface DTScanData_0 extends DTUnion {
14
14
  byteString: Buffer;
15
+ string?: never;
16
+ epc?: never;
17
+ custom?: never;
18
+ }
19
+ export interface DTScanData_1 extends DTUnion {
20
+ byteString?: never;
15
21
  string: UAString;
22
+ epc?: never;
23
+ custom?: never;
24
+ }
25
+ export interface DTScanData_2 extends DTUnion {
26
+ byteString?: never;
27
+ string?: never;
16
28
  epc: DTScanDataEpc;
29
+ custom?: never;
30
+ }
31
+ export interface DTScanData_3 extends DTUnion {
32
+ byteString?: never;
33
+ string?: never;
34
+ epc?: never;
17
35
  custom: undefined;
18
36
  }
37
+ export declare type DTScanData = DTScanData_0 | DTScanData_1 | DTScanData_2 | DTScanData_3;
@@ -19,17 +19,17 @@ export interface UAAutoIdAccessEvent_Base extends UAAutoIdDiagnosticsEvent_Base
19
19
  * accessResult
20
20
  * Result values of the access.
21
21
  */
22
- accessResult: UAProperty<DTAccessResult[], /*z*/ DataType.ExtensionObject>;
22
+ accessResult: UAProperty<DTAccessResult[], DataType.ExtensionObject>;
23
23
  /**
24
24
  * client
25
25
  * Client which was the originator of the command.
26
26
  */
27
- client?: UAProperty<UAString, /*z*/ DataType.String>;
27
+ client?: UAProperty<UAString, DataType.String>;
28
28
  /**
29
29
  * command
30
30
  * Access command
31
31
  */
32
- command?: UAProperty<UAString, /*z*/ DataType.String>;
32
+ command?: UAProperty<UAString, DataType.String>;
33
33
  }
34
34
  export interface UAAutoIdAccessEvent extends UAAutoIdDiagnosticsEvent, UAAutoIdAccessEvent_Base {
35
35
  }
@@ -24,7 +24,7 @@ export interface UAAutoIdDevice_diagnostics extends UAFunctionalGroup {
24
24
  * Current presence of AutoID Identifier (e.g. a
25
25
  * code or a transponder).
26
26
  */
27
- presence?: UABaseDataVariable<UInt16, /*z*/ DataType.UInt16>;
27
+ presence?: UABaseDataVariable<UInt16, DataType.UInt16>;
28
28
  }
29
29
  export interface UAAutoIdDevice_runtimeParameters extends UAFunctionalGroup {
30
30
  /**
@@ -32,7 +32,7 @@ export interface UAAutoIdDevice_runtimeParameters extends UAFunctionalGroup {
32
32
  * Supported CodeTypes and selected CodeType for the
33
33
  * ScanData.
34
34
  */
35
- codeTypes?: UAMultiStateDiscrete<UInt32[], /*z*/ DataType.UInt32>;
35
+ codeTypes?: UAMultiStateDiscrete<UInt32[], DataType.UInt32>;
36
36
  /**
37
37
  * scanSettings
38
38
  * Scan settings used together with ScanActive
@@ -49,12 +49,12 @@ export interface UAAutoIdDevice_runtimeParameters extends UAFunctionalGroup {
49
49
  * |isAbstract |true |
50
50
  */
51
51
  export interface UAAutoIdDevice_Base extends UADevice_Base {
52
- autoIdModelVersion: UAProperty<UAString, /*z*/ DataType.String>;
52
+ autoIdModelVersion: UAProperty<UAString, DataType.String>;
53
53
  /**
54
54
  * deviceInfo
55
55
  * Device status information.
56
56
  */
57
- deviceInfo?: UAProperty<UAString, /*z*/ DataType.String>;
57
+ deviceInfo?: UAProperty<UAString, DataType.String>;
58
58
  /**
59
59
  * deviceLocation
60
60
  * Union of GPS, UTM, Local.
@@ -64,15 +64,15 @@ export interface UAAutoIdDevice_Base extends UADevice_Base {
64
64
  * deviceLocationName
65
65
  * Symbolic name of the device location.
66
66
  */
67
- deviceLocationName?: UAProperty<UAString, /*z*/ DataType.String>;
67
+ deviceLocationName?: UAProperty<UAString, DataType.String>;
68
68
  /**
69
69
  * deviceName
70
70
  * Default could be also host name, IP address or
71
71
  * MAC. This should be a field that can be
72
72
  * configured for a device.
73
73
  */
74
- deviceName: UAProperty<UAString, /*z*/ DataType.String>;
75
- deviceStatus: UABaseDataVariable<EnumDeviceStatus, /*z*/ DataType.Int32>;
74
+ deviceName: UAProperty<UAString, DataType.String>;
75
+ deviceStatus: UABaseDataVariable<EnumDeviceStatus, DataType.Int32>;
76
76
  /**
77
77
  * diagnostics
78
78
  * Diagnostic data from AutoID Devices.
@@ -90,14 +90,14 @@ export interface UAAutoIdDevice_Base extends UADevice_Base {
90
90
  * Point of time the last AutoID Identifier was
91
91
  * scanned.
92
92
  */
93
- lastScanTimestamp?: UABaseDataVariable<Date, /*z*/ DataType.DateTime>;
93
+ lastScanTimestamp?: UABaseDataVariable<Date, DataType.DateTime>;
94
94
  runtimeParameters?: UAAutoIdDevice_runtimeParameters;
95
95
  scan?: UAMethod;
96
96
  /**
97
97
  * scanActive
98
98
  * Triggers the scan process.
99
99
  */
100
- scanActive?: UABaseDataVariable<boolean, /*z*/ DataType.Boolean>;
100
+ scanActive?: UABaseDataVariable<boolean, DataType.Boolean>;
101
101
  scanStart?: UAMethod;
102
102
  scanStop?: UAMethod;
103
103
  }
@@ -17,7 +17,7 @@ export interface UAAutoIdDiagnosticsEvent_Base extends UABaseEvent_Base {
17
17
  * deviceName
18
18
  * Name of the device of the diagnostic data.
19
19
  */
20
- deviceName: UAProperty<UAString, /*z*/ DataType.String>;
20
+ deviceName: UAProperty<UAString, DataType.String>;
21
21
  }
22
22
  export interface UAAutoIdDiagnosticsEvent extends UABaseEvent, UAAutoIdDiagnosticsEvent_Base {
23
23
  }
@@ -9,7 +9,6 @@ import { UAAutoIdDiagnosticsEvent, UAAutoIdDiagnosticsEvent_Base } from "./ua_au
9
9
  * |typedDefinition |3:AutoIdLogEntryEventType ns=3;i=1017 |
10
10
  * |isAbstract |true |
11
11
  */
12
- export interface UAAutoIdLogEntryEvent_Base extends UAAutoIdDiagnosticsEvent_Base {
13
- }
12
+ export declare type UAAutoIdLogEntryEvent_Base = UAAutoIdDiagnosticsEvent_Base;
14
13
  export interface UAAutoIdLogEntryEvent extends UAAutoIdDiagnosticsEvent, UAAutoIdLogEntryEvent_Base {
15
14
  }
@@ -17,7 +17,7 @@ export interface UAAutoIdPresenceEvent_Base extends UAAutoIdDiagnosticsEvent_Bas
17
17
  * presence
18
18
  * Current presence of AutoID Identifier.
19
19
  */
20
- presence: UAProperty<UInt16, /*z*/ DataType.UInt16>;
20
+ presence: UAProperty<UInt16, DataType.UInt16>;
21
21
  }
22
22
  export interface UAAutoIdPresenceEvent extends UAAutoIdDiagnosticsEvent, UAAutoIdPresenceEvent_Base {
23
23
  }
@@ -12,8 +12,8 @@ import { DTScanResult } from "./dt_scan_result";
12
12
  * |isAbstract |true |
13
13
  */
14
14
  export interface UAAutoIdScanEvent_Base extends UABaseEvent_Base {
15
- deviceName: UAProperty<UAString, /*z*/ DataType.String>;
16
- scanResult: UAProperty<DTScanResult[], /*z*/ DataType.ExtensionObject>;
15
+ deviceName: UAProperty<UAString, DataType.String>;
16
+ scanResult: UAProperty<DTScanResult[], DataType.ExtensionObject>;
17
17
  }
18
18
  export interface UAAutoIdScanEvent extends UABaseEvent, UAAutoIdScanEvent_Base {
19
19
  }
@@ -13,11 +13,11 @@ import { DTLocation } from "./dt_location";
13
13
  * |dataType Name |DTLocation ns=3;i=3008 |
14
14
  * |isAbstract |false |
15
15
  */
16
- export interface UALocationVariable_Base<T extends DTLocation> extends UABaseDataVariable_Base<T, /*e*/ DataType.ExtensionObject> {
17
- geographicalUnit?: UAProperty<EUInformation, /*z*/ DataType.ExtensionObject>;
18
- lengthUnit?: UAProperty<EUInformation, /*z*/ DataType.ExtensionObject>;
19
- rotationalUnit?: UAProperty<EUInformation, /*z*/ DataType.ExtensionObject>;
20
- speedUnit?: UAProperty<EUInformation, /*z*/ DataType.ExtensionObject>;
16
+ export interface UALocationVariable_Base<T extends DTLocation> extends UABaseDataVariable_Base<T, DataType.ExtensionObject> {
17
+ geographicalUnit?: UAProperty<EUInformation, DataType.ExtensionObject>;
18
+ lengthUnit?: UAProperty<EUInformation, DataType.ExtensionObject>;
19
+ rotationalUnit?: UAProperty<EUInformation, DataType.ExtensionObject>;
20
+ speedUnit?: UAProperty<EUInformation, DataType.ExtensionObject>;
21
21
  }
22
- export interface UALocationVariable<T extends DTLocation> extends UABaseDataVariable<T, /*n*/ DataType.ExtensionObject>, UALocationVariable_Base<T> {
22
+ export interface UALocationVariable<T extends DTLocation> extends UABaseDataVariable<T, DataType.ExtensionObject>, UALocationVariable_Base<T> {
23
23
  }
@@ -9,13 +9,13 @@ export interface UAOcrReaderDevice_runtimeParameters extends UAAutoIdDevice_runt
9
9
  * matchCode
10
10
  * Target value for 2D or OCR decoding.
11
11
  */
12
- matchCode?: UABaseDataVariable<UAString, /*z*/ DataType.String>;
12
+ matchCode?: UABaseDataVariable<UAString, DataType.String>;
13
13
  /**
14
14
  * templateName
15
15
  * Activate template which defines a specific
16
16
  * identification task.
17
17
  */
18
- templateName?: UABaseDataVariable<UAString, /*z*/ DataType.String>;
18
+ templateName?: UABaseDataVariable<UAString, DataType.String>;
19
19
  }
20
20
  /**
21
21
  * | | |
@@ -11,7 +11,7 @@ import { UAAutoIdScanEvent, UAAutoIdScanEvent_Base } from "./ua_auto_id_scan_eve
11
11
  * |isAbstract |true |
12
12
  */
13
13
  export interface UAOcrScanEvent_Base extends UAAutoIdScanEvent_Base {
14
- scanResult: UAProperty<DTOcrScanResult[], /*z*/ DataType.ExtensionObject>;
14
+ scanResult: UAProperty<DTOcrScanResult[], DataType.ExtensionObject>;
15
15
  }
16
16
  export interface UAOcrScanEvent extends Omit<UAAutoIdScanEvent, "scanResult">, UAOcrScanEvent_Base {
17
17
  }
@@ -9,13 +9,13 @@ export interface UAOpticalReaderDevice_runtimeParameters extends UAAutoIdDevice_
9
9
  * matchCode
10
10
  * Target value for 2D or OCR decoding.
11
11
  */
12
- matchCode?: UABaseDataVariable<UAString, /*z*/ DataType.String>;
12
+ matchCode?: UABaseDataVariable<UAString, DataType.String>;
13
13
  /**
14
14
  * templateName
15
15
  * Activate template which defines a specific
16
16
  * identification task.
17
17
  */
18
- templateName?: UABaseDataVariable<UAString, /*z*/ DataType.String>;
18
+ templateName?: UABaseDataVariable<UAString, DataType.String>;
19
19
  }
20
20
  /**
21
21
  * | | |
@@ -11,7 +11,7 @@ import { UAAutoIdScanEvent, UAAutoIdScanEvent_Base } from "./ua_auto_id_scan_eve
11
11
  * |isAbstract |true |
12
12
  */
13
13
  export interface UAOpticalScanEvent_Base extends UAAutoIdScanEvent_Base {
14
- scanResult: UAProperty<DTOpticalScanResult[], /*z*/ DataType.ExtensionObject>;
14
+ scanResult: UAProperty<DTOpticalScanResult[], DataType.ExtensionObject>;
15
15
  }
16
16
  export interface UAOpticalScanEvent extends Omit<UAAutoIdScanEvent, "scanResult">, UAOpticalScanEvent_Base {
17
17
  }
@@ -11,7 +11,7 @@ import { UAOpticalScanEvent, UAOpticalScanEvent_Base } from "./ua_optical_scan_e
11
11
  * |isAbstract |true |
12
12
  */
13
13
  export interface UAOpticalVerifierScanEvent_Base extends UAOpticalScanEvent_Base {
14
- scanResult: UAProperty<DTOpticalVerifierScanResult[], /*z*/ DataType.ExtensionObject>;
14
+ scanResult: UAProperty<DTOpticalVerifierScanResult[], DataType.ExtensionObject>;
15
15
  }
16
16
  export interface UAOpticalVerifierScanEvent extends Omit<UAOpticalScanEvent, "scanResult">, UAOpticalVerifierScanEvent_Base {
17
17
  }
@@ -18,7 +18,7 @@ export interface UARfidAccessEvent_Base extends UAAutoIdAccessEvent_Base {
18
18
  * accessResult
19
19
  * Result values of the access.
20
20
  */
21
- accessResult: UAProperty<DTRfidAccessResult[], /*z*/ DataType.ExtensionObject>;
21
+ accessResult: UAProperty<DTRfidAccessResult[], DataType.ExtensionObject>;
22
22
  }
23
23
  export interface UARfidAccessEvent extends Omit<UAAutoIdAccessEvent, "accessResult">, UARfidAccessEvent_Base {
24
24
  }
@@ -19,28 +19,28 @@ export interface UARfidReaderDevice_runtimeParameters extends UAAutoIdDevice_run
19
19
  * Supported CodeTypes and selected CodeType for the
20
20
  * diagnostics value RWData.
21
21
  */
22
- codeTypesRWData?: UAMultiStateDiscrete<UInt32[], /*z*/ DataType.UInt32>;
22
+ codeTypesRWData?: UAMultiStateDiscrete<UInt32[], DataType.UInt32>;
23
23
  /**
24
24
  * enableAntennas
25
25
  * Antennas that shall be used by the device for its
26
26
  * operation.
27
27
  */
28
- enableAntennas?: UABaseDataVariable<UInt32, /*z*/ DataType.UInt32>;
28
+ enableAntennas?: UABaseDataVariable<UInt32, DataType.UInt32>;
29
29
  /**
30
30
  * minRssi
31
31
  * Lowest acceptable RSSI value.
32
32
  */
33
- minRssi?: UABaseDataVariable<Int32, /*z*/ DataType.Int32>;
33
+ minRssi?: UABaseDataVariable<Int32, DataType.Int32>;
34
34
  /**
35
35
  * rfPower
36
36
  * Radio transmission power of the antenna.
37
37
  */
38
- rfPower?: UABaseDataVariable<SByte, /*z*/ DataType.SByte>;
38
+ rfPower?: UABaseDataVariable<SByte, DataType.SByte>;
39
39
  /**
40
40
  * tagTypes
41
41
  * Expected tags in a multi-type environment.
42
42
  */
43
- tagTypes?: UAMultiStateDiscrete<UInt32[], /*z*/ DataType.UInt32>;
43
+ tagTypes?: UAMultiStateDiscrete<UInt32[], DataType.UInt32>;
44
44
  }
45
45
  /**
46
46
  * | | |
@@ -51,7 +51,7 @@ export interface UARfidReaderDevice_runtimeParameters extends UAAutoIdDevice_run
51
51
  * |isAbstract |false |
52
52
  */
53
53
  export interface UARfidReaderDevice_Base extends UAAutoIdDevice_Base {
54
- antennaNames?: UAProperty<DTAntennaNameIdPair[], /*z*/ DataType.ExtensionObject>;
54
+ antennaNames?: UAProperty<DTAntennaNameIdPair[], DataType.ExtensionObject>;
55
55
  /**
56
56
  * diagnostics
57
57
  * Diagnostic data from AutoID Devices.
@@ -63,13 +63,13 @@ export interface UARfidReaderDevice_Base extends UAAutoIdDevice_Base {
63
63
  * ID of the antenna with which the last AutoID
64
64
  * Identifier was scanned.
65
65
  */
66
- lastScanAntenna?: UABaseDataVariable<Int32, /*z*/ DataType.Int32>;
66
+ lastScanAntenna?: UABaseDataVariable<Int32, DataType.Int32>;
67
67
  /**
68
68
  * lastScanRSSI
69
69
  * RSSI Value with which the last AutoID Identifier
70
70
  * was scanned.
71
71
  */
72
- lastScanRSSI?: UABaseDataVariable<Int32, /*z*/ DataType.Int32>;
72
+ lastScanRSSI?: UABaseDataVariable<Int32, DataType.Int32>;
73
73
  lockTag?: UAMethod;
74
74
  readTag?: UAMethod;
75
75
  runtimeParameters?: UARfidReaderDevice_runtimeParameters;
@@ -11,7 +11,7 @@ import { UAAutoIdScanEvent, UAAutoIdScanEvent_Base } from "./ua_auto_id_scan_eve
11
11
  * |isAbstract |true |
12
12
  */
13
13
  export interface UARfidScanEvent_Base extends UAAutoIdScanEvent_Base {
14
- scanResult: UAProperty<DTRfidScanResult[], /*z*/ DataType.ExtensionObject>;
14
+ scanResult: UAProperty<DTRfidScanResult[], DataType.ExtensionObject>;
15
15
  }
16
16
  export interface UARfidScanEvent extends Omit<UAAutoIdScanEvent, "scanResult">, UARfidScanEvent_Base {
17
17
  }
@@ -11,14 +11,14 @@ import { UAAutoIdDevice, UAAutoIdDevice_Base } from "./ua_auto_id_device";
11
11
  * |isAbstract |false |
12
12
  */
13
13
  export interface UARtlsDevice_Base extends UAAutoIdDevice_Base {
14
- geographicalUnit: UAProperty<EUInformation, /*z*/ DataType.ExtensionObject>;
14
+ geographicalUnit: UAProperty<EUInformation, DataType.ExtensionObject>;
15
15
  getLocation?: UAMethod;
16
16
  getSupportedLocationTypes?: UAMethod;
17
17
  getUnits?: UAMethod;
18
- lengthUnit: UAProperty<EUInformation, /*z*/ DataType.ExtensionObject>;
19
- rotationalUnit: UAProperty<EUInformation, /*z*/ DataType.ExtensionObject>;
18
+ lengthUnit: UAProperty<EUInformation, DataType.ExtensionObject>;
19
+ rotationalUnit: UAProperty<EUInformation, DataType.ExtensionObject>;
20
20
  scan?: UAMethod;
21
- speedUnit: UAProperty<EUInformation, /*z*/ DataType.ExtensionObject>;
21
+ speedUnit: UAProperty<EUInformation, DataType.ExtensionObject>;
22
22
  }
23
23
  export interface UARtlsDevice extends Omit<UAAutoIdDevice, "scan">, UARtlsDevice_Base {
24
24
  }
@@ -11,7 +11,7 @@ import { UAAutoIdScanEvent, UAAutoIdScanEvent_Base } from "./ua_auto_id_scan_eve
11
11
  * |isAbstract |true |
12
12
  */
13
13
  export interface UARtlsLocationEvent_Base extends UAAutoIdScanEvent_Base {
14
- scanResult: UAProperty<DTRtlsLocationResult[], /*z*/ DataType.ExtensionObject>;
14
+ scanResult: UAProperty<DTRtlsLocationResult[], DataType.ExtensionObject>;
15
15
  }
16
16
  export interface UARtlsLocationEvent extends Omit<UAAutoIdScanEvent, "scanResult">, UARtlsLocationEvent_Base {
17
17
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-opcua-nodeset-auto-id",
3
- "version": "2.74.0",
3
+ "version": "2.76.2",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -10,14 +10,14 @@
10
10
  "author": "etienne.rossignon@sterfive.com",
11
11
  "license": "MIT",
12
12
  "dependencies": {
13
- "node-opcua-address-space-base": "2.74.0",
14
- "node-opcua-basic-types": "2.74.0",
15
- "node-opcua-data-access": "2.74.0",
16
- "node-opcua-data-model": "2.74.0",
17
- "node-opcua-nodeid": "2.74.0",
18
- "node-opcua-nodeset-di": "2.74.0",
19
- "node-opcua-nodeset-ua": "2.74.0",
20
- "node-opcua-variant": "2.74.0"
13
+ "node-opcua-address-space-base": "2.76.2",
14
+ "node-opcua-basic-types": "2.76.2",
15
+ "node-opcua-data-access": "2.76.2",
16
+ "node-opcua-data-model": "2.76.2",
17
+ "node-opcua-nodeid": "2.76.2",
18
+ "node-opcua-nodeset-di": "2.76.2",
19
+ "node-opcua-nodeset-ua": "2.76.2",
20
+ "node-opcua-variant": "2.76.2"
21
21
  },
22
- "gitHead": "003ee041795f3b737afaaef5721045ee31ea9f77"
22
+ "gitHead": "acb5ecaf1e1c71af3b63e80909d58447f3f298e7"
23
23
  }
@@ -12,7 +12,7 @@ import { DTScanData } from "./dt_scan_data"
12
12
  * | name |3:AccessResult |
13
13
  * | isAbstract|false |
14
14
  */
15
- export interface DTAccessResult extends DTStructure {
15
+ export interface DTAccessResult extends DTStructure {
16
16
  /** Defines the format of Identifier as string.*/
17
17
  codeType: UAString; // String ns=3;i=3031
18
18
  /** The AutoID Identifier (e.g. a code or a transponder) which was accessed by a command.*/
@@ -9,7 +9,7 @@ import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure"
9
9
  * | name |3:AntennaNameIdPair |
10
10
  * | isAbstract|false |
11
11
  */
12
- export interface DTAntennaNameIdPair extends DTStructure {
12
+ export interface DTAntennaNameIdPair extends DTStructure {
13
13
  antennaId: Int32; // Int32 ns=0;i=6
14
14
  antennaName: UAString; // String ns=0;i=12
15
15
  }
@@ -9,7 +9,7 @@ import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure"
9
9
  * | name |3:DhcpGeoConfCoordinate |
10
10
  * | isAbstract|false |
11
11
  */
12
- export interface DTDhcpGeoConfCoordinate extends DTStructure {
12
+ export interface DTDhcpGeoConfCoordinate extends DTStructure {
13
13
  laRes: Byte; // Byte ns=0;i=3
14
14
  latitudeInteger: Int16; // Int16 ns=0;i=4
15
15
  latitudeFraction: Int32; // Int32 ns=0;i=6
@@ -9,7 +9,7 @@ import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure"
9
9
  * | name |3:LocalCoordinate |
10
10
  * | isAbstract|false |
11
11
  */
12
- export interface DTLocalCoordinate extends DTStructure {
12
+ export interface DTLocalCoordinate extends DTStructure {
13
13
  x: number; // Double ns=0;i=11
14
14
  y: number; // Double ns=0;i=11
15
15
  z: number; // Double ns=0;i=11
@@ -11,9 +11,33 @@ import { DTWGS84Coordinate } from "./dt_wgs_84_coordinate"
11
11
  * | name |3:Location |
12
12
  * | isAbstract|false |
13
13
  */
14
- export interface DTLocation extends DTUnion {
14
+ export interface DTLocation_0 extends DTUnion {
15
15
  NMEA: UAString; // String ns=3;i=3012
16
+ local?: never
17
+ WGS84?: never
18
+ name?: never
19
+ }
20
+ export interface DTLocation_1 extends DTUnion {
21
+ NMEA?: never
16
22
  local: DTLocalCoordinate; // ExtensionObject ns=3;i=3019
23
+ WGS84?: never
24
+ name?: never
25
+ }
26
+ export interface DTLocation_2 extends DTUnion {
27
+ NMEA?: never
28
+ local?: never
17
29
  WGS84: DTWGS84Coordinate; // ExtensionObject ns=3;i=3027
30
+ name?: never
31
+ }
32
+ export interface DTLocation_3 extends DTUnion {
33
+ NMEA?: never
34
+ local?: never
35
+ WGS84?: never
18
36
  name: UAString; // String ns=3;i=3021
19
- }
37
+ }
38
+ export type DTLocation =
39
+ | DTLocation_0
40
+ | DTLocation_1
41
+ | DTLocation_2
42
+ | DTLocation_3
43
+ ;
@@ -13,7 +13,7 @@ import { DTPosition } from "./dt_position"
13
13
  * | name |3:OcrScanResult |
14
14
  * | isAbstract|false |
15
15
  */
16
- export interface DTOcrScanResult extends DTScanResult {
16
+ export interface DTOcrScanResult extends DTScanResult {
17
17
  /** Defines the format of the ScanData as string.*/
18
18
  codeType: UAString; // String ns=3;i=3031
19
19
  /** Holds the information about the detected objects e.g. the detected transponders.*/
@@ -13,7 +13,7 @@ import { DTPosition } from "./dt_position"
13
13
  * | name |3:OpticalScanResult |
14
14
  * | isAbstract|false |
15
15
  */
16
- export interface DTOpticalScanResult extends DTScanResult {
16
+ export interface DTOpticalScanResult extends DTScanResult {
17
17
  /** Defines the format of the ScanData as string.*/
18
18
  codeType: UAString; // String ns=3;i=3031
19
19
  /** Holds the information about the detected objects e.g. the detected transponders.*/
@@ -13,7 +13,7 @@ import { DTPosition } from "./dt_position"
13
13
  * | name |3:OpticalVerifierScanResult |
14
14
  * | isAbstract|false |
15
15
  */
16
- export interface DTOpticalVerifierScanResult extends DTOpticalScanResult {
16
+ export interface DTOpticalVerifierScanResult extends DTOpticalScanResult {
17
17
  /** Defines the format of the ScanData as string.*/
18
18
  codeType: UAString; // String ns=3;i=3031
19
19
  /** Holds the information about the detected objects e.g. the detected transponders.*/
@@ -9,7 +9,7 @@ import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure"
9
9
  * | name |3:Position |
10
10
  * | isAbstract|false |
11
11
  */
12
- export interface DTPosition extends DTStructure {
12
+ export interface DTPosition extends DTStructure {
13
13
  positionX: Int32; // Int32 ns=0;i=6
14
14
  positionY: Int32; // Int32 ns=0;i=6
15
15
  sizeX: Int32; // Int32 ns=0;i=6
@@ -13,7 +13,7 @@ import { DTScanData } from "./dt_scan_data"
13
13
  * | name |3:RfidAccessResult |
14
14
  * | isAbstract|false |
15
15
  */
16
- export interface DTRfidAccessResult extends DTAccessResult {
16
+ export interface DTRfidAccessResult extends DTAccessResult {
17
17
  /** Defines the format of Identifier as string.*/
18
18
  codeType: UAString; // String ns=3;i=3031
19
19
  /** The AutoID Identifier (e.g. a code or a transponder) which was accessed by a command.*/
@@ -12,7 +12,7 @@ import { DTRfidSighting } from "./dt_rfid_sighting"
12
12
  * | name |3:RfidScanResult |
13
13
  * | isAbstract|false |
14
14
  */
15
- export interface DTRfidScanResult extends DTScanResult {
15
+ export interface DTRfidScanResult extends DTScanResult {
16
16
  /** Defines the format of the ScanData as string.*/
17
17
  codeType: UAString; // String ns=3;i=3031
18
18
  /** Holds the information about the detected objects e.g. the detected transponders.*/
@@ -9,7 +9,7 @@ import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure"
9
9
  * | name |3:RfidSighting |
10
10
  * | isAbstract|false |
11
11
  */
12
- export interface DTRfidSighting extends DTStructure {
12
+ export interface DTRfidSighting extends DTStructure {
13
13
  /** Returns the number of the antenna which detects the RFID tag first.*/
14
14
  antenna: Int32; // Int32 ns=0;i=6
15
15
  /** Returns the signal strength (RSSI) of the transponder. Higher values indicate a better strength.*/
@@ -8,7 +8,7 @@ import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure"
8
8
  * | name |3:Rotation |
9
9
  * | isAbstract|false |
10
10
  */
11
- export interface DTRotation extends DTStructure {
11
+ export interface DTRotation extends DTStructure {
12
12
  yaw: number; // Double ns=0;i=11
13
13
  pitch: number; // Double ns=0;i=11
14
14
  roll: number; // Double ns=0;i=11
@@ -12,7 +12,7 @@ import { DTRotation } from "./dt_rotation"
12
12
  * | name |3:RtlsLocationResult |
13
13
  * | isAbstract|false |
14
14
  */
15
- export interface DTRtlsLocationResult extends DTScanResult {
15
+ export interface DTRtlsLocationResult extends DTScanResult {
16
16
  /** Defines the format of the ScanData as string.*/
17
17
  codeType: UAString; // String ns=3;i=3031
18
18
  /** Holds the information about the detected objects e.g. the detected transponders.*/
@@ -10,9 +10,33 @@ import { DTScanDataEpc } from "./dt_scan_data_epc"
10
10
  * | name |3:ScanData |
11
11
  * | isAbstract|false |
12
12
  */
13
- export interface DTScanData extends DTUnion {
13
+ export interface DTScanData_0 extends DTUnion {
14
14
  byteString: Buffer; // ByteString ns=0;i=15
15
+ string?: never
16
+ epc?: never
17
+ custom?: never
18
+ }
19
+ export interface DTScanData_1 extends DTUnion {
20
+ byteString?: never
15
21
  string: UAString; // String ns=0;i=12
22
+ epc?: never
23
+ custom?: never
24
+ }
25
+ export interface DTScanData_2 extends DTUnion {
26
+ byteString?: never
27
+ string?: never
16
28
  epc: DTScanDataEpc; // ExtensionObject ns=3;i=3024
29
+ custom?: never
30
+ }
31
+ export interface DTScanData_3 extends DTUnion {
32
+ byteString?: never
33
+ string?: never
34
+ epc?: never
17
35
  custom: undefined; // Null ns=0;i=0
18
- }
36
+ }
37
+ export type DTScanData =
38
+ | DTScanData_0
39
+ | DTScanData_1
40
+ | DTScanData_2
41
+ | DTScanData_3
42
+ ;
@@ -9,7 +9,7 @@ import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure"
9
9
  * | name |3:ScanDataEpc |
10
10
  * | isAbstract|false |
11
11
  */
12
- export interface DTScanDataEpc extends DTStructure {
12
+ export interface DTScanDataEpc extends DTStructure {
13
13
  PC: UInt16; // UInt16 ns=0;i=5
14
14
  uId: Buffer; // ByteString ns=0;i=15
15
15
  XPC_W1: UInt16; // UInt16 ns=0;i=5
@@ -11,7 +11,7 @@ import { DTLocation } from "./dt_location"
11
11
  * | name |3:ScanResult |
12
12
  * | isAbstract|true |
13
13
  */
14
- export interface DTScanResult extends DTStructure {
14
+ export interface DTScanResult extends DTStructure {
15
15
  /** Defines the format of the ScanData as string.*/
16
16
  codeType: UAString; // String ns=3;i=3031
17
17
  /** Holds the information about the detected objects e.g. the detected transponders.*/
@@ -10,7 +10,7 @@ import { EnumLocationType } from "./enum_location_type"
10
10
  * | name |3:ScanSettings |
11
11
  * | isAbstract|false |
12
12
  */
13
- export interface DTScanSettings extends DTStructure {
13
+ export interface DTScanSettings extends DTStructure {
14
14
  duration: number; // Double ns=0;i=290
15
15
  cycles: Int32; // Int32 ns=0;i=6
16
16
  dataAvailable: boolean; // Boolean ns=0;i=1
@@ -9,7 +9,7 @@ import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure"
9
9
  * | name |3:WGS84Coordinate |
10
10
  * | isAbstract|false |
11
11
  */
12
- export interface DTWGS84Coordinate extends DTStructure {
12
+ export interface DTWGS84Coordinate extends DTStructure {
13
13
  "n/S_Hemisphere": UAString; // String ns=0;i=12
14
14
  latitude: number; // Double ns=0;i=11
15
15
  "e/W_Hemisphere": UAString; // String ns=0;i=12
@@ -20,17 +20,17 @@ export interface UAAutoIdAccessEvent_Base extends UAAutoIdDiagnosticsEvent_Base
20
20
  * accessResult
21
21
  * Result values of the access.
22
22
  */
23
- accessResult: UAProperty<DTAccessResult[], /*z*/DataType.ExtensionObject>;
23
+ accessResult: UAProperty<DTAccessResult[], DataType.ExtensionObject>;
24
24
  /**
25
25
  * client
26
26
  * Client which was the originator of the command.
27
27
  */
28
- client?: UAProperty<UAString, /*z*/DataType.String>;
28
+ client?: UAProperty<UAString, DataType.String>;
29
29
  /**
30
30
  * command
31
31
  * Access command
32
32
  */
33
- command?: UAProperty<UAString, /*z*/DataType.String>;
33
+ command?: UAProperty<UAString, DataType.String>;
34
34
  }
35
35
  export interface UAAutoIdAccessEvent extends UAAutoIdDiagnosticsEvent, UAAutoIdAccessEvent_Base {
36
36
  }
@@ -29,7 +29,7 @@ export interface UAAutoIdDevice_diagnostics extends UAFunctionalGroup { // Objec
29
29
  * Current presence of AutoID Identifier (e.g. a
30
30
  * code or a transponder).
31
31
  */
32
- presence?: UABaseDataVariable<UInt16, /*z*/DataType.UInt16>;
32
+ presence?: UABaseDataVariable<UInt16, DataType.UInt16>;
33
33
  }
34
34
  export interface UAAutoIdDevice_runtimeParameters extends UAFunctionalGroup { // Object
35
35
  /**
@@ -37,7 +37,7 @@ export interface UAAutoIdDevice_runtimeParameters extends UAFunctionalGroup { //
37
37
  * Supported CodeTypes and selected CodeType for the
38
38
  * ScanData.
39
39
  */
40
- codeTypes?: UAMultiStateDiscrete<UInt32[], /*z*/DataType.UInt32>;
40
+ codeTypes?: UAMultiStateDiscrete<UInt32[], DataType.UInt32>;
41
41
  /**
42
42
  * scanSettings
43
43
  * Scan settings used together with ScanActive
@@ -54,12 +54,12 @@ export interface UAAutoIdDevice_runtimeParameters extends UAFunctionalGroup { //
54
54
  * |isAbstract |true |
55
55
  */
56
56
  export interface UAAutoIdDevice_Base extends UADevice_Base {
57
- autoIdModelVersion: UAProperty<UAString, /*z*/DataType.String>;
57
+ autoIdModelVersion: UAProperty<UAString, DataType.String>;
58
58
  /**
59
59
  * deviceInfo
60
60
  * Device status information.
61
61
  */
62
- deviceInfo?: UAProperty<UAString, /*z*/DataType.String>;
62
+ deviceInfo?: UAProperty<UAString, DataType.String>;
63
63
  /**
64
64
  * deviceLocation
65
65
  * Union of GPS, UTM, Local.
@@ -69,15 +69,15 @@ export interface UAAutoIdDevice_Base extends UADevice_Base {
69
69
  * deviceLocationName
70
70
  * Symbolic name of the device location.
71
71
  */
72
- deviceLocationName?: UAProperty<UAString, /*z*/DataType.String>;
72
+ deviceLocationName?: UAProperty<UAString, DataType.String>;
73
73
  /**
74
74
  * deviceName
75
75
  * Default could be also host name, IP address or
76
76
  * MAC. This should be a field that can be
77
77
  * configured for a device.
78
78
  */
79
- deviceName: UAProperty<UAString, /*z*/DataType.String>;
80
- deviceStatus: UABaseDataVariable<EnumDeviceStatus, /*z*/DataType.Int32>;
79
+ deviceName: UAProperty<UAString, DataType.String>;
80
+ deviceStatus: UABaseDataVariable<EnumDeviceStatus, DataType.Int32>;
81
81
  /**
82
82
  * diagnostics
83
83
  * Diagnostic data from AutoID Devices.
@@ -95,14 +95,14 @@ export interface UAAutoIdDevice_Base extends UADevice_Base {
95
95
  * Point of time the last AutoID Identifier was
96
96
  * scanned.
97
97
  */
98
- lastScanTimestamp?: UABaseDataVariable<Date, /*z*/DataType.DateTime>;
98
+ lastScanTimestamp?: UABaseDataVariable<Date, DataType.DateTime>;
99
99
  runtimeParameters?: UAAutoIdDevice_runtimeParameters;
100
100
  scan?: UAMethod;
101
101
  /**
102
102
  * scanActive
103
103
  * Triggers the scan process.
104
104
  */
105
- scanActive?: UABaseDataVariable<boolean, /*z*/DataType.Boolean>;
105
+ scanActive?: UABaseDataVariable<boolean, DataType.Boolean>;
106
106
  scanStart?: UAMethod;
107
107
  scanStop?: UAMethod;
108
108
  }
@@ -21,7 +21,7 @@ export interface UAAutoIdDiagnosticsEvent_Base extends UABaseEvent_Base {
21
21
  * deviceName
22
22
  * Name of the device of the diagnostic data.
23
23
  */
24
- deviceName: UAProperty<UAString, /*z*/DataType.String>;
24
+ deviceName: UAProperty<UAString, DataType.String>;
25
25
  }
26
26
  export interface UAAutoIdDiagnosticsEvent extends UABaseEvent, UAAutoIdDiagnosticsEvent_Base {
27
27
  }
@@ -10,7 +10,6 @@ import { UAAutoIdDiagnosticsEvent, UAAutoIdDiagnosticsEvent_Base } from "./ua_au
10
10
  * |typedDefinition |3:AutoIdLogEntryEventType ns=3;i=1017 |
11
11
  * |isAbstract |true |
12
12
  */
13
- export interface UAAutoIdLogEntryEvent_Base extends UAAutoIdDiagnosticsEvent_Base {
14
- }
13
+ export type UAAutoIdLogEntryEvent_Base = UAAutoIdDiagnosticsEvent_Base;
15
14
  export interface UAAutoIdLogEntryEvent extends UAAutoIdDiagnosticsEvent, UAAutoIdLogEntryEvent_Base {
16
15
  }
@@ -18,7 +18,7 @@ export interface UAAutoIdPresenceEvent_Base extends UAAutoIdDiagnosticsEvent_Bas
18
18
  * presence
19
19
  * Current presence of AutoID Identifier.
20
20
  */
21
- presence: UAProperty<UInt16, /*z*/DataType.UInt16>;
21
+ presence: UAProperty<UInt16, DataType.UInt16>;
22
22
  }
23
23
  export interface UAAutoIdPresenceEvent extends UAAutoIdDiagnosticsEvent, UAAutoIdPresenceEvent_Base {
24
24
  }
@@ -13,8 +13,8 @@ import { DTScanResult } from "./dt_scan_result"
13
13
  * |isAbstract |true |
14
14
  */
15
15
  export interface UAAutoIdScanEvent_Base extends UABaseEvent_Base {
16
- deviceName: UAProperty<UAString, /*z*/DataType.String>;
17
- scanResult: UAProperty<DTScanResult[], /*z*/DataType.ExtensionObject>;
16
+ deviceName: UAProperty<UAString, DataType.String>;
17
+ scanResult: UAProperty<DTScanResult[], DataType.ExtensionObject>;
18
18
  }
19
19
  export interface UAAutoIdScanEvent extends UABaseEvent, UAAutoIdScanEvent_Base {
20
20
  }
@@ -14,11 +14,11 @@ import { DTLocation } from "./dt_location"
14
14
  * |dataType Name |DTLocation ns=3;i=3008 |
15
15
  * |isAbstract |false |
16
16
  */
17
- export interface UALocationVariable_Base<T extends DTLocation/*j*/> extends UABaseDataVariable_Base<T, /*e*/DataType.ExtensionObject> {
18
- geographicalUnit?: UAProperty<EUInformation, /*z*/DataType.ExtensionObject>;
19
- lengthUnit?: UAProperty<EUInformation, /*z*/DataType.ExtensionObject>;
20
- rotationalUnit?: UAProperty<EUInformation, /*z*/DataType.ExtensionObject>;
21
- speedUnit?: UAProperty<EUInformation, /*z*/DataType.ExtensionObject>;
17
+ export interface UALocationVariable_Base<T extends DTLocation> extends UABaseDataVariable_Base<T, DataType.ExtensionObject> {
18
+ geographicalUnit?: UAProperty<EUInformation, DataType.ExtensionObject>;
19
+ lengthUnit?: UAProperty<EUInformation, DataType.ExtensionObject>;
20
+ rotationalUnit?: UAProperty<EUInformation, DataType.ExtensionObject>;
21
+ speedUnit?: UAProperty<EUInformation, DataType.ExtensionObject>;
22
22
  }
23
- export interface UALocationVariable<T extends DTLocation/*j*/> extends UABaseDataVariable<T, /*n*/DataType.ExtensionObject>, UALocationVariable_Base<T /*B*/> {
23
+ export interface UALocationVariable<T extends DTLocation> extends UABaseDataVariable<T, DataType.ExtensionObject>, UALocationVariable_Base<T> {
24
24
  }
@@ -11,13 +11,13 @@ export interface UAOcrReaderDevice_runtimeParameters extends UAAutoIdDevice_runt
11
11
  * matchCode
12
12
  * Target value for 2D or OCR decoding.
13
13
  */
14
- matchCode?: UABaseDataVariable<UAString, /*z*/DataType.String>;
14
+ matchCode?: UABaseDataVariable<UAString, DataType.String>;
15
15
  /**
16
16
  * templateName
17
17
  * Activate template which defines a specific
18
18
  * identification task.
19
19
  */
20
- templateName?: UABaseDataVariable<UAString, /*z*/DataType.String>;
20
+ templateName?: UABaseDataVariable<UAString, DataType.String>;
21
21
  }
22
22
  /**
23
23
  * | | |
@@ -13,7 +13,7 @@ import { UAAutoIdScanEvent, UAAutoIdScanEvent_Base } from "./ua_auto_id_scan_eve
13
13
  * |isAbstract |true |
14
14
  */
15
15
  export interface UAOcrScanEvent_Base extends UAAutoIdScanEvent_Base {
16
- scanResult: UAProperty<DTOcrScanResult[], /*z*/DataType.ExtensionObject>;
16
+ scanResult: UAProperty<DTOcrScanResult[], DataType.ExtensionObject>;
17
17
  }
18
18
  export interface UAOcrScanEvent extends Omit<UAAutoIdScanEvent, "scanResult">, UAOcrScanEvent_Base {
19
19
  }
@@ -11,13 +11,13 @@ export interface UAOpticalReaderDevice_runtimeParameters extends UAAutoIdDevice_
11
11
  * matchCode
12
12
  * Target value for 2D or OCR decoding.
13
13
  */
14
- matchCode?: UABaseDataVariable<UAString, /*z*/DataType.String>;
14
+ matchCode?: UABaseDataVariable<UAString, DataType.String>;
15
15
  /**
16
16
  * templateName
17
17
  * Activate template which defines a specific
18
18
  * identification task.
19
19
  */
20
- templateName?: UABaseDataVariable<UAString, /*z*/DataType.String>;
20
+ templateName?: UABaseDataVariable<UAString, DataType.String>;
21
21
  }
22
22
  /**
23
23
  * | | |
@@ -13,7 +13,7 @@ import { UAAutoIdScanEvent, UAAutoIdScanEvent_Base } from "./ua_auto_id_scan_eve
13
13
  * |isAbstract |true |
14
14
  */
15
15
  export interface UAOpticalScanEvent_Base extends UAAutoIdScanEvent_Base {
16
- scanResult: UAProperty<DTOpticalScanResult[], /*z*/DataType.ExtensionObject>;
16
+ scanResult: UAProperty<DTOpticalScanResult[], DataType.ExtensionObject>;
17
17
  }
18
18
  export interface UAOpticalScanEvent extends Omit<UAAutoIdScanEvent, "scanResult">, UAOpticalScanEvent_Base {
19
19
  }
@@ -14,7 +14,7 @@ import { UAOpticalScanEvent, UAOpticalScanEvent_Base } from "./ua_optical_scan_e
14
14
  * |isAbstract |true |
15
15
  */
16
16
  export interface UAOpticalVerifierScanEvent_Base extends UAOpticalScanEvent_Base {
17
- scanResult: UAProperty<DTOpticalVerifierScanResult[], /*z*/DataType.ExtensionObject>;
17
+ scanResult: UAProperty<DTOpticalVerifierScanResult[], DataType.ExtensionObject>;
18
18
  }
19
19
  export interface UAOpticalVerifierScanEvent extends Omit<UAOpticalScanEvent, "scanResult">, UAOpticalVerifierScanEvent_Base {
20
20
  }
@@ -20,7 +20,7 @@ export interface UARfidAccessEvent_Base extends UAAutoIdAccessEvent_Base {
20
20
  * accessResult
21
21
  * Result values of the access.
22
22
  */
23
- accessResult: UAProperty<DTRfidAccessResult[], /*z*/DataType.ExtensionObject>;
23
+ accessResult: UAProperty<DTRfidAccessResult[], DataType.ExtensionObject>;
24
24
  }
25
25
  export interface UARfidAccessEvent extends Omit<UAAutoIdAccessEvent, "accessResult">, UARfidAccessEvent_Base {
26
26
  }
@@ -21,28 +21,28 @@ export interface UARfidReaderDevice_runtimeParameters extends UAAutoIdDevice_run
21
21
  * Supported CodeTypes and selected CodeType for the
22
22
  * diagnostics value RWData.
23
23
  */
24
- codeTypesRWData?: UAMultiStateDiscrete<UInt32[], /*z*/DataType.UInt32>;
24
+ codeTypesRWData?: UAMultiStateDiscrete<UInt32[], DataType.UInt32>;
25
25
  /**
26
26
  * enableAntennas
27
27
  * Antennas that shall be used by the device for its
28
28
  * operation.
29
29
  */
30
- enableAntennas?: UABaseDataVariable<UInt32, /*z*/DataType.UInt32>;
30
+ enableAntennas?: UABaseDataVariable<UInt32, DataType.UInt32>;
31
31
  /**
32
32
  * minRssi
33
33
  * Lowest acceptable RSSI value.
34
34
  */
35
- minRssi?: UABaseDataVariable<Int32, /*z*/DataType.Int32>;
35
+ minRssi?: UABaseDataVariable<Int32, DataType.Int32>;
36
36
  /**
37
37
  * rfPower
38
38
  * Radio transmission power of the antenna.
39
39
  */
40
- rfPower?: UABaseDataVariable<SByte, /*z*/DataType.SByte>;
40
+ rfPower?: UABaseDataVariable<SByte, DataType.SByte>;
41
41
  /**
42
42
  * tagTypes
43
43
  * Expected tags in a multi-type environment.
44
44
  */
45
- tagTypes?: UAMultiStateDiscrete<UInt32[], /*z*/DataType.UInt32>;
45
+ tagTypes?: UAMultiStateDiscrete<UInt32[], DataType.UInt32>;
46
46
  }
47
47
  /**
48
48
  * | | |
@@ -53,7 +53,7 @@ export interface UARfidReaderDevice_runtimeParameters extends UAAutoIdDevice_run
53
53
  * |isAbstract |false |
54
54
  */
55
55
  export interface UARfidReaderDevice_Base extends UAAutoIdDevice_Base {
56
- antennaNames?: UAProperty<DTAntennaNameIdPair[], /*z*/DataType.ExtensionObject>;
56
+ antennaNames?: UAProperty<DTAntennaNameIdPair[], DataType.ExtensionObject>;
57
57
  /**
58
58
  * diagnostics
59
59
  * Diagnostic data from AutoID Devices.
@@ -65,13 +65,13 @@ export interface UARfidReaderDevice_Base extends UAAutoIdDevice_Base {
65
65
  * ID of the antenna with which the last AutoID
66
66
  * Identifier was scanned.
67
67
  */
68
- lastScanAntenna?: UABaseDataVariable<Int32, /*z*/DataType.Int32>;
68
+ lastScanAntenna?: UABaseDataVariable<Int32, DataType.Int32>;
69
69
  /**
70
70
  * lastScanRSSI
71
71
  * RSSI Value with which the last AutoID Identifier
72
72
  * was scanned.
73
73
  */
74
- lastScanRSSI?: UABaseDataVariable<Int32, /*z*/DataType.Int32>;
74
+ lastScanRSSI?: UABaseDataVariable<Int32, DataType.Int32>;
75
75
  lockTag?: UAMethod;
76
76
  readTag?: UAMethod;
77
77
  runtimeParameters?: UARfidReaderDevice_runtimeParameters;
@@ -13,7 +13,7 @@ import { UAAutoIdScanEvent, UAAutoIdScanEvent_Base } from "./ua_auto_id_scan_eve
13
13
  * |isAbstract |true |
14
14
  */
15
15
  export interface UARfidScanEvent_Base extends UAAutoIdScanEvent_Base {
16
- scanResult: UAProperty<DTRfidScanResult[], /*z*/DataType.ExtensionObject>;
16
+ scanResult: UAProperty<DTRfidScanResult[], DataType.ExtensionObject>;
17
17
  }
18
18
  export interface UARfidScanEvent extends Omit<UAAutoIdScanEvent, "scanResult">, UARfidScanEvent_Base {
19
19
  }
@@ -13,14 +13,14 @@ import { UAAutoIdDevice, UAAutoIdDevice_Base } from "./ua_auto_id_device"
13
13
  * |isAbstract |false |
14
14
  */
15
15
  export interface UARtlsDevice_Base extends UAAutoIdDevice_Base {
16
- geographicalUnit: UAProperty<EUInformation, /*z*/DataType.ExtensionObject>;
16
+ geographicalUnit: UAProperty<EUInformation, DataType.ExtensionObject>;
17
17
  getLocation?: UAMethod;
18
18
  getSupportedLocationTypes?: UAMethod;
19
19
  getUnits?: UAMethod;
20
- lengthUnit: UAProperty<EUInformation, /*z*/DataType.ExtensionObject>;
21
- rotationalUnit: UAProperty<EUInformation, /*z*/DataType.ExtensionObject>;
20
+ lengthUnit: UAProperty<EUInformation, DataType.ExtensionObject>;
21
+ rotationalUnit: UAProperty<EUInformation, DataType.ExtensionObject>;
22
22
  scan?: UAMethod;
23
- speedUnit: UAProperty<EUInformation, /*z*/DataType.ExtensionObject>;
23
+ speedUnit: UAProperty<EUInformation, DataType.ExtensionObject>;
24
24
  }
25
25
  export interface UARtlsDevice extends Omit<UAAutoIdDevice, "scan">, UARtlsDevice_Base {
26
26
  }
@@ -13,7 +13,7 @@ import { UAAutoIdScanEvent, UAAutoIdScanEvent_Base } from "./ua_auto_id_scan_eve
13
13
  * |isAbstract |true |
14
14
  */
15
15
  export interface UARtlsLocationEvent_Base extends UAAutoIdScanEvent_Base {
16
- scanResult: UAProperty<DTRtlsLocationResult[], /*z*/DataType.ExtensionObject>;
16
+ scanResult: UAProperty<DTRtlsLocationResult[], DataType.ExtensionObject>;
17
17
  }
18
18
  export interface UARtlsLocationEvent extends Omit<UAAutoIdScanEvent, "scanResult">, UARtlsLocationEvent_Base {
19
19
  }