node-opcua-nodeset-auto-id 2.180.0 → 2.181.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (61) hide show
  1. package/dist/dt_access_result.d.ts +1 -1
  2. package/dist/dt_location.d.ts +2 -2
  3. package/dist/dt_ocr_scan_result.d.ts +4 -4
  4. package/dist/dt_optical_scan_result.d.ts +4 -4
  5. package/dist/dt_optical_verifier_scan_result.d.ts +4 -4
  6. package/dist/dt_rfid_access_result.d.ts +2 -2
  7. package/dist/dt_rfid_scan_result.d.ts +4 -4
  8. package/dist/dt_rtls_location_result.d.ts +4 -4
  9. package/dist/dt_scan_data.d.ts +1 -1
  10. package/dist/dt_scan_result.d.ts +2 -2
  11. package/dist/dt_scan_settings.d.ts +1 -1
  12. package/dist/index.d.ts +43 -43
  13. package/dist/index.js +43 -43
  14. package/dist/index.js.map +1 -1
  15. package/dist/ua_auto_id_access_event.d.ts +2 -2
  16. package/dist/ua_auto_id_device.d.ts +3 -3
  17. package/dist/ua_auto_id_log_entry_event.d.ts +1 -1
  18. package/dist/ua_auto_id_presence_event.d.ts +1 -1
  19. package/dist/ua_auto_id_scan_event.d.ts +1 -1
  20. package/dist/ua_location_variable.d.ts +1 -1
  21. package/dist/ua_ocr_reader_device.d.ts +1 -1
  22. package/dist/ua_ocr_scan_event.d.ts +2 -2
  23. package/dist/ua_optical_reader_device.d.ts +1 -1
  24. package/dist/ua_optical_scan_event.d.ts +2 -2
  25. package/dist/ua_optical_verifier_device.d.ts +1 -1
  26. package/dist/ua_optical_verifier_scan_event.d.ts +2 -2
  27. package/dist/ua_rfid_access_event.d.ts +2 -2
  28. package/dist/ua_rfid_reader_device.d.ts +2 -2
  29. package/dist/ua_rfid_scan_event.d.ts +2 -2
  30. package/dist/ua_rtls_device.d.ts +1 -1
  31. package/dist/ua_rtls_location_event.d.ts +2 -2
  32. package/package.json +11 -11
  33. package/source/dt_access_result.ts +1 -1
  34. package/source/dt_location.ts +2 -2
  35. package/source/dt_ocr_scan_result.ts +4 -4
  36. package/source/dt_optical_scan_result.ts +4 -4
  37. package/source/dt_optical_verifier_scan_result.ts +4 -4
  38. package/source/dt_rfid_access_result.ts +2 -2
  39. package/source/dt_rfid_scan_result.ts +4 -4
  40. package/source/dt_rtls_location_result.ts +4 -4
  41. package/source/dt_scan_data.ts +1 -1
  42. package/source/dt_scan_result.ts +2 -2
  43. package/source/dt_scan_settings.ts +1 -1
  44. package/source/index.ts +43 -43
  45. package/source/ua_auto_id_access_event.ts +2 -2
  46. package/source/ua_auto_id_device.ts +3 -3
  47. package/source/ua_auto_id_log_entry_event.ts +1 -1
  48. package/source/ua_auto_id_presence_event.ts +1 -1
  49. package/source/ua_auto_id_scan_event.ts +1 -1
  50. package/source/ua_location_variable.ts +1 -1
  51. package/source/ua_ocr_reader_device.ts +1 -1
  52. package/source/ua_ocr_scan_event.ts +2 -2
  53. package/source/ua_optical_reader_device.ts +1 -1
  54. package/source/ua_optical_scan_event.ts +2 -2
  55. package/source/ua_optical_verifier_device.ts +1 -1
  56. package/source/ua_optical_verifier_scan_event.ts +2 -2
  57. package/source/ua_rfid_access_event.ts +2 -2
  58. package/source/ua_rfid_reader_device.ts +2 -2
  59. package/source/ua_rfid_scan_event.ts +2 -2
  60. package/source/ua_rtls_device.ts +1 -1
  61. package/source/ua_rtls_location_event.ts +2 -2
@@ -1,7 +1,7 @@
1
1
  import type { UAString } from "node-opcua-basic-types";
2
2
  import type { ExtensionObject } from "node-opcua-extension-object";
3
3
  import type { DTStructure } from "node-opcua-nodeset-ua/dist/dt_structure";
4
- import type { DTScanData } from "./dt_scan_data";
4
+ import type { DTScanData } from "./dt_scan_data.js";
5
5
  /**
6
6
  * Result values of an AutoID Identifier access.
7
7
  *
@@ -1,7 +1,7 @@
1
1
  import type { UAString } from "node-opcua-basic-types";
2
2
  import type { DTUnion } from "node-opcua-nodeset-ua/dist/dt_union";
3
- import type { DTLocalCoordinate } from "./dt_local_coordinate";
4
- import type { DTWGS84Coordinate } from "./dt_wgs_84_coordinate";
3
+ import type { DTLocalCoordinate } from "./dt_local_coordinate.js";
4
+ import type { DTWGS84Coordinate } from "./dt_wgs_84_coordinate.js";
5
5
  /**
6
6
  * | | |
7
7
  * |-----------|------------------------------------------------------------|
@@ -1,10 +1,10 @@
1
1
  import type { Byte, UAString } from "node-opcua-basic-types";
2
2
  import type { ExtensionObject } from "node-opcua-extension-object";
3
3
  import type { NodeId } from "node-opcua-nodeid";
4
- import type { DTLocation } from "./dt_location";
5
- import type { DTPosition } from "./dt_position";
6
- import type { DTScanData } from "./dt_scan_data";
7
- import type { DTScanResult } from "./dt_scan_result";
4
+ import type { DTLocation } from "./dt_location.js";
5
+ import type { DTPosition } from "./dt_position.js";
6
+ import type { DTScanData } from "./dt_scan_data.js";
7
+ import type { DTScanResult } from "./dt_scan_result.js";
8
8
  /**
9
9
  * | | |
10
10
  * |-----------|------------------------------------------------------------|
@@ -1,10 +1,10 @@
1
1
  import type { UAString } from "node-opcua-basic-types";
2
2
  import type { ExtensionObject } from "node-opcua-extension-object";
3
3
  import type { NodeId } from "node-opcua-nodeid";
4
- import type { DTLocation } from "./dt_location";
5
- import type { DTPosition } from "./dt_position";
6
- import type { DTScanData } from "./dt_scan_data";
7
- import type { DTScanResult } from "./dt_scan_result";
4
+ import type { DTLocation } from "./dt_location.js";
5
+ import type { DTPosition } from "./dt_position.js";
6
+ import type { DTScanData } from "./dt_scan_data.js";
7
+ import type { DTScanResult } from "./dt_scan_result.js";
8
8
  /**
9
9
  * | | |
10
10
  * |-----------|------------------------------------------------------------|
@@ -1,10 +1,10 @@
1
1
  import type { Int16, UAString } from "node-opcua-basic-types";
2
2
  import type { ExtensionObject } from "node-opcua-extension-object";
3
3
  import type { NodeId } from "node-opcua-nodeid";
4
- import type { DTLocation } from "./dt_location";
5
- import type { DTOpticalScanResult } from "./dt_optical_scan_result";
6
- import type { DTPosition } from "./dt_position";
7
- import type { DTScanData } from "./dt_scan_data";
4
+ import type { DTLocation } from "./dt_location.js";
5
+ import type { DTOpticalScanResult } from "./dt_optical_scan_result.js";
6
+ import type { DTPosition } from "./dt_position.js";
7
+ import type { DTScanData } from "./dt_scan_data.js";
8
8
  /**
9
9
  * | | |
10
10
  * |-----------|------------------------------------------------------------|
@@ -1,7 +1,7 @@
1
1
  import type { Int32, UAString, UInt16 } from "node-opcua-basic-types";
2
2
  import type { ExtensionObject } from "node-opcua-extension-object";
3
- import type { DTAccessResult } from "./dt_access_result";
4
- import type { DTScanData } from "./dt_scan_data";
3
+ import type { DTAccessResult } from "./dt_access_result.js";
4
+ import type { DTScanData } from "./dt_scan_data.js";
5
5
  /**
6
6
  * Additional result values of an Rfid Transponder
7
7
  * access.
@@ -1,9 +1,9 @@
1
1
  import type { UAString } from "node-opcua-basic-types";
2
2
  import type { ExtensionObject } from "node-opcua-extension-object";
3
- import type { DTLocation } from "./dt_location";
4
- import type { DTRfidSighting } from "./dt_rfid_sighting";
5
- import type { DTScanData } from "./dt_scan_data";
6
- import type { DTScanResult } from "./dt_scan_result";
3
+ import type { DTLocation } from "./dt_location.js";
4
+ import type { DTRfidSighting } from "./dt_rfid_sighting.js";
5
+ import type { DTScanData } from "./dt_scan_data.js";
6
+ import type { DTScanResult } from "./dt_scan_result.js";
7
7
  /**
8
8
  * | | |
9
9
  * |-----------|------------------------------------------------------------|
@@ -1,9 +1,9 @@
1
1
  import type { UAString } from "node-opcua-basic-types";
2
2
  import type { ExtensionObject } from "node-opcua-extension-object";
3
- import type { DTLocation } from "./dt_location";
4
- import type { DTRotation } from "./dt_rotation";
5
- import type { DTScanData } from "./dt_scan_data";
6
- import type { DTScanResult } from "./dt_scan_result";
3
+ import type { DTLocation } from "./dt_location.js";
4
+ import type { DTRotation } from "./dt_rotation.js";
5
+ import type { DTScanData } from "./dt_scan_data.js";
6
+ import type { DTScanResult } from "./dt_scan_result.js";
7
7
  /**
8
8
  * | | |
9
9
  * |-----------|------------------------------------------------------------|
@@ -1,7 +1,7 @@
1
1
  import type { UAString } from "node-opcua-basic-types";
2
2
  import type { DTUnion } from "node-opcua-nodeset-ua/dist/dt_union";
3
3
  import type { Variant } from "node-opcua-variant";
4
- import type { DTScanDataEpc } from "./dt_scan_data_epc";
4
+ import type { DTScanDataEpc } from "./dt_scan_data_epc.js";
5
5
  /**
6
6
  * | | |
7
7
  * |-----------|------------------------------------------------------------|
@@ -1,8 +1,8 @@
1
1
  import type { UAString } from "node-opcua-basic-types";
2
2
  import type { ExtensionObject } from "node-opcua-extension-object";
3
3
  import type { DTStructure } from "node-opcua-nodeset-ua/dist/dt_structure";
4
- import type { DTLocation } from "./dt_location";
5
- import type { DTScanData } from "./dt_scan_data";
4
+ import type { DTLocation } from "./dt_location.js";
5
+ import type { DTScanData } from "./dt_scan_data.js";
6
6
  /**
7
7
  * | | |
8
8
  * |-----------|------------------------------------------------------------|
@@ -1,7 +1,7 @@
1
1
  import type { Int32 } from "node-opcua-basic-types";
2
2
  import type { ExtensionObject } from "node-opcua-extension-object";
3
3
  import type { DTStructure } from "node-opcua-nodeset-ua/dist/dt_structure";
4
- import type { EnumLocationType } from "./enum_location_type";
4
+ import type { EnumLocationType } from "./enum_location_type.js";
5
5
  /**
6
6
  * | | |
7
7
  * |-----------|------------------------------------------------------------|
package/dist/index.d.ts CHANGED
@@ -1,43 +1,43 @@
1
- export * from "./dt_access_result";
2
- export * from "./dt_antenna_name_id_pair";
3
- export * from "./dt_dhcp_geo_conf_coordinate";
4
- export * from "./dt_local_coordinate";
5
- export * from "./dt_location";
6
- export * from "./dt_ocr_scan_result";
7
- export * from "./dt_optical_scan_result";
8
- export * from "./dt_optical_verifier_scan_result";
9
- export * from "./dt_position";
10
- export * from "./dt_rfid_access_result";
11
- export * from "./dt_rfid_scan_result";
12
- export * from "./dt_rfid_sighting";
13
- export * from "./dt_rotation";
14
- export * from "./dt_rtls_location_result";
15
- export * from "./dt_scan_data";
16
- export * from "./dt_scan_data_epc";
17
- export * from "./dt_scan_result";
18
- export * from "./dt_scan_settings";
19
- export * from "./dt_wgs_84_coordinate";
20
- export * from "./enum_auto_id_operation_status";
21
- export * from "./enum_device_status";
22
- export * from "./enum_location_type";
23
- export * from "./enum_rfid_lock_operation";
24
- export * from "./enum_rfid_lock_region";
25
- export * from "./enum_rfid_password_type";
26
- export * from "./ua_auto_id_access_event";
27
- export * from "./ua_auto_id_device";
28
- export * from "./ua_auto_id_diagnostics_event";
29
- export * from "./ua_auto_id_log_entry_event";
30
- export * from "./ua_auto_id_presence_event";
31
- export * from "./ua_auto_id_scan_event";
32
- export * from "./ua_location_variable";
33
- export * from "./ua_ocr_reader_device";
34
- export * from "./ua_ocr_scan_event";
35
- export * from "./ua_optical_reader_device";
36
- export * from "./ua_optical_scan_event";
37
- export * from "./ua_optical_verifier_device";
38
- export * from "./ua_optical_verifier_scan_event";
39
- export * from "./ua_rfid_access_event";
40
- export * from "./ua_rfid_reader_device";
41
- export * from "./ua_rfid_scan_event";
42
- export * from "./ua_rtls_device";
43
- export * from "./ua_rtls_location_event";
1
+ export * from "./dt_access_result.js";
2
+ export * from "./dt_antenna_name_id_pair.js";
3
+ export * from "./dt_dhcp_geo_conf_coordinate.js";
4
+ export * from "./dt_local_coordinate.js";
5
+ export * from "./dt_location.js";
6
+ export * from "./dt_ocr_scan_result.js";
7
+ export * from "./dt_optical_scan_result.js";
8
+ export * from "./dt_optical_verifier_scan_result.js";
9
+ export * from "./dt_position.js";
10
+ export * from "./dt_rfid_access_result.js";
11
+ export * from "./dt_rfid_scan_result.js";
12
+ export * from "./dt_rfid_sighting.js";
13
+ export * from "./dt_rotation.js";
14
+ export * from "./dt_rtls_location_result.js";
15
+ export * from "./dt_scan_data.js";
16
+ export * from "./dt_scan_data_epc.js";
17
+ export * from "./dt_scan_result.js";
18
+ export * from "./dt_scan_settings.js";
19
+ export * from "./dt_wgs_84_coordinate.js";
20
+ export * from "./enum_auto_id_operation_status.js";
21
+ export * from "./enum_device_status.js";
22
+ export * from "./enum_location_type.js";
23
+ export * from "./enum_rfid_lock_operation.js";
24
+ export * from "./enum_rfid_lock_region.js";
25
+ export * from "./enum_rfid_password_type.js";
26
+ export * from "./ua_auto_id_access_event.js";
27
+ export * from "./ua_auto_id_device.js";
28
+ export * from "./ua_auto_id_diagnostics_event.js";
29
+ export * from "./ua_auto_id_log_entry_event.js";
30
+ export * from "./ua_auto_id_presence_event.js";
31
+ export * from "./ua_auto_id_scan_event.js";
32
+ export * from "./ua_location_variable.js";
33
+ export * from "./ua_ocr_reader_device.js";
34
+ export * from "./ua_ocr_scan_event.js";
35
+ export * from "./ua_optical_reader_device.js";
36
+ export * from "./ua_optical_scan_event.js";
37
+ export * from "./ua_optical_verifier_device.js";
38
+ export * from "./ua_optical_verifier_scan_event.js";
39
+ export * from "./ua_rfid_access_event.js";
40
+ export * from "./ua_rfid_reader_device.js";
41
+ export * from "./ua_rfid_scan_event.js";
42
+ export * from "./ua_rtls_device.js";
43
+ export * from "./ua_rtls_location_event.js";
package/dist/index.js CHANGED
@@ -14,47 +14,47 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
- __exportStar(require("./dt_access_result"), exports);
18
- __exportStar(require("./dt_antenna_name_id_pair"), exports);
19
- __exportStar(require("./dt_dhcp_geo_conf_coordinate"), exports);
20
- __exportStar(require("./dt_local_coordinate"), exports);
21
- __exportStar(require("./dt_location"), exports);
22
- __exportStar(require("./dt_ocr_scan_result"), exports);
23
- __exportStar(require("./dt_optical_scan_result"), exports);
24
- __exportStar(require("./dt_optical_verifier_scan_result"), exports);
25
- __exportStar(require("./dt_position"), exports);
26
- __exportStar(require("./dt_rfid_access_result"), exports);
27
- __exportStar(require("./dt_rfid_scan_result"), exports);
28
- __exportStar(require("./dt_rfid_sighting"), exports);
29
- __exportStar(require("./dt_rotation"), exports);
30
- __exportStar(require("./dt_rtls_location_result"), exports);
31
- __exportStar(require("./dt_scan_data"), exports);
32
- __exportStar(require("./dt_scan_data_epc"), exports);
33
- __exportStar(require("./dt_scan_result"), exports);
34
- __exportStar(require("./dt_scan_settings"), exports);
35
- __exportStar(require("./dt_wgs_84_coordinate"), exports);
36
- __exportStar(require("./enum_auto_id_operation_status"), exports);
37
- __exportStar(require("./enum_device_status"), exports);
38
- __exportStar(require("./enum_location_type"), exports);
39
- __exportStar(require("./enum_rfid_lock_operation"), exports);
40
- __exportStar(require("./enum_rfid_lock_region"), exports);
41
- __exportStar(require("./enum_rfid_password_type"), exports);
42
- __exportStar(require("./ua_auto_id_access_event"), exports);
43
- __exportStar(require("./ua_auto_id_device"), exports);
44
- __exportStar(require("./ua_auto_id_diagnostics_event"), exports);
45
- __exportStar(require("./ua_auto_id_log_entry_event"), exports);
46
- __exportStar(require("./ua_auto_id_presence_event"), exports);
47
- __exportStar(require("./ua_auto_id_scan_event"), exports);
48
- __exportStar(require("./ua_location_variable"), exports);
49
- __exportStar(require("./ua_ocr_reader_device"), exports);
50
- __exportStar(require("./ua_ocr_scan_event"), exports);
51
- __exportStar(require("./ua_optical_reader_device"), exports);
52
- __exportStar(require("./ua_optical_scan_event"), exports);
53
- __exportStar(require("./ua_optical_verifier_device"), exports);
54
- __exportStar(require("./ua_optical_verifier_scan_event"), exports);
55
- __exportStar(require("./ua_rfid_access_event"), exports);
56
- __exportStar(require("./ua_rfid_reader_device"), exports);
57
- __exportStar(require("./ua_rfid_scan_event"), exports);
58
- __exportStar(require("./ua_rtls_device"), exports);
59
- __exportStar(require("./ua_rtls_location_event"), exports);
17
+ __exportStar(require("./dt_access_result.js"), exports);
18
+ __exportStar(require("./dt_antenna_name_id_pair.js"), exports);
19
+ __exportStar(require("./dt_dhcp_geo_conf_coordinate.js"), exports);
20
+ __exportStar(require("./dt_local_coordinate.js"), exports);
21
+ __exportStar(require("./dt_location.js"), exports);
22
+ __exportStar(require("./dt_ocr_scan_result.js"), exports);
23
+ __exportStar(require("./dt_optical_scan_result.js"), exports);
24
+ __exportStar(require("./dt_optical_verifier_scan_result.js"), exports);
25
+ __exportStar(require("./dt_position.js"), exports);
26
+ __exportStar(require("./dt_rfid_access_result.js"), exports);
27
+ __exportStar(require("./dt_rfid_scan_result.js"), exports);
28
+ __exportStar(require("./dt_rfid_sighting.js"), exports);
29
+ __exportStar(require("./dt_rotation.js"), exports);
30
+ __exportStar(require("./dt_rtls_location_result.js"), exports);
31
+ __exportStar(require("./dt_scan_data.js"), exports);
32
+ __exportStar(require("./dt_scan_data_epc.js"), exports);
33
+ __exportStar(require("./dt_scan_result.js"), exports);
34
+ __exportStar(require("./dt_scan_settings.js"), exports);
35
+ __exportStar(require("./dt_wgs_84_coordinate.js"), exports);
36
+ __exportStar(require("./enum_auto_id_operation_status.js"), exports);
37
+ __exportStar(require("./enum_device_status.js"), exports);
38
+ __exportStar(require("./enum_location_type.js"), exports);
39
+ __exportStar(require("./enum_rfid_lock_operation.js"), exports);
40
+ __exportStar(require("./enum_rfid_lock_region.js"), exports);
41
+ __exportStar(require("./enum_rfid_password_type.js"), exports);
42
+ __exportStar(require("./ua_auto_id_access_event.js"), exports);
43
+ __exportStar(require("./ua_auto_id_device.js"), exports);
44
+ __exportStar(require("./ua_auto_id_diagnostics_event.js"), exports);
45
+ __exportStar(require("./ua_auto_id_log_entry_event.js"), exports);
46
+ __exportStar(require("./ua_auto_id_presence_event.js"), exports);
47
+ __exportStar(require("./ua_auto_id_scan_event.js"), exports);
48
+ __exportStar(require("./ua_location_variable.js"), exports);
49
+ __exportStar(require("./ua_ocr_reader_device.js"), exports);
50
+ __exportStar(require("./ua_ocr_scan_event.js"), exports);
51
+ __exportStar(require("./ua_optical_reader_device.js"), exports);
52
+ __exportStar(require("./ua_optical_scan_event.js"), exports);
53
+ __exportStar(require("./ua_optical_verifier_device.js"), exports);
54
+ __exportStar(require("./ua_optical_verifier_scan_event.js"), exports);
55
+ __exportStar(require("./ua_rfid_access_event.js"), exports);
56
+ __exportStar(require("./ua_rfid_reader_device.js"), exports);
57
+ __exportStar(require("./ua_rfid_scan_event.js"), exports);
58
+ __exportStar(require("./ua_rtls_device.js"), exports);
59
+ __exportStar(require("./ua_rtls_location_event.js"), exports);
60
60
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../source/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,qDAAmC;AACnC,4DAA0C;AAC1C,gEAA8C;AAC9C,wDAAsC;AACtC,gDAA8B;AAC9B,uDAAqC;AACrC,2DAAyC;AACzC,oEAAkD;AAClD,gDAA8B;AAC9B,0DAAwC;AACxC,wDAAsC;AACtC,qDAAmC;AACnC,gDAA8B;AAC9B,4DAA0C;AAC1C,iDAA+B;AAC/B,qDAAmC;AACnC,mDAAiC;AACjC,qDAAmC;AACnC,yDAAuC;AACvC,kEAAgD;AAChD,uDAAqC;AACrC,uDAAqC;AACrC,6DAA2C;AAC3C,0DAAwC;AACxC,4DAA0C;AAC1C,4DAA0C;AAC1C,sDAAoC;AACpC,iEAA+C;AAC/C,+DAA6C;AAC7C,8DAA4C;AAC5C,0DAAwC;AACxC,yDAAuC;AACvC,yDAAuC;AACvC,sDAAoC;AACpC,6DAA2C;AAC3C,0DAAwC;AACxC,+DAA6C;AAC7C,mEAAiD;AACjD,yDAAuC;AACvC,0DAAwC;AACxC,uDAAqC;AACrC,mDAAiC;AACjC,2DAAyC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../source/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,wDAAsC;AACtC,+DAA6C;AAC7C,mEAAiD;AACjD,2DAAyC;AACzC,mDAAiC;AACjC,0DAAwC;AACxC,8DAA4C;AAC5C,uEAAqD;AACrD,mDAAiC;AACjC,6DAA2C;AAC3C,2DAAyC;AACzC,wDAAsC;AACtC,mDAAiC;AACjC,+DAA6C;AAC7C,oDAAkC;AAClC,wDAAsC;AACtC,sDAAoC;AACpC,wDAAsC;AACtC,4DAA0C;AAC1C,qEAAmD;AACnD,0DAAwC;AACxC,0DAAwC;AACxC,gEAA8C;AAC9C,6DAA2C;AAC3C,+DAA6C;AAC7C,+DAA6C;AAC7C,yDAAuC;AACvC,oEAAkD;AAClD,kEAAgD;AAChD,iEAA+C;AAC/C,6DAA2C;AAC3C,4DAA0C;AAC1C,4DAA0C;AAC1C,yDAAuC;AACvC,gEAA8C;AAC9C,6DAA2C;AAC3C,kEAAgD;AAChD,sEAAoD;AACpD,4DAA0C;AAC1C,6DAA2C;AAC3C,0DAAwC;AACxC,sDAAoC;AACpC,8DAA4C"}
@@ -1,8 +1,8 @@
1
1
  import type { UAProperty } from "node-opcua-address-space-base";
2
2
  import type { UAString } from "node-opcua-basic-types";
3
3
  import type { DataType } from "node-opcua-variant";
4
- import type { DTAccessResult } from "./dt_access_result";
5
- import type { UAAutoIdDiagnosticsEvent, UAAutoIdDiagnosticsEvent_Base } from "./ua_auto_id_diagnostics_event";
4
+ import type { DTAccessResult } from "./dt_access_result.js";
5
+ import type { UAAutoIdDiagnosticsEvent, UAAutoIdDiagnosticsEvent_Base } from "./ua_auto_id_diagnostics_event.js";
6
6
  /**
7
7
  * Data of the access on one or more AutoID
8
8
  * Identifier.
@@ -5,9 +5,9 @@ import type { UAFunctionalGroup } from "node-opcua-nodeset-di/dist/ua_functional
5
5
  import type { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
6
6
  import type { UAMultiStateDiscrete } from "node-opcua-nodeset-ua/dist/ua_multi_state_discrete";
7
7
  import type { DataType } from "node-opcua-variant";
8
- import type { DTLocation } from "./dt_location";
9
- import type { EnumDeviceStatus } from "./enum_device_status";
10
- import type { UALocationVariable } from "./ua_location_variable";
8
+ import type { DTLocation } from "./dt_location.js";
9
+ import type { EnumDeviceStatus } from "./enum_device_status.js";
10
+ import type { UALocationVariable } from "./ua_location_variable.js";
11
11
  export interface UAAutoIdDevice_diagnostics extends UAFunctionalGroup {
12
12
  /**
13
13
  * lastAccess
@@ -1,4 +1,4 @@
1
- import type { UAAutoIdDiagnosticsEvent, UAAutoIdDiagnosticsEvent_Base } from "./ua_auto_id_diagnostics_event";
1
+ import type { UAAutoIdDiagnosticsEvent, UAAutoIdDiagnosticsEvent_Base } from "./ua_auto_id_diagnostics_event.js";
2
2
  /**
3
3
  * One entry written to the log of the device.
4
4
  *
@@ -1,7 +1,7 @@
1
1
  import type { UAProperty } from "node-opcua-address-space-base";
2
2
  import type { UInt16 } from "node-opcua-basic-types";
3
3
  import type { DataType } from "node-opcua-variant";
4
- import type { UAAutoIdDiagnosticsEvent, UAAutoIdDiagnosticsEvent_Base } from "./ua_auto_id_diagnostics_event";
4
+ import type { UAAutoIdDiagnosticsEvent, UAAutoIdDiagnosticsEvent_Base } from "./ua_auto_id_diagnostics_event.js";
5
5
  /**
6
6
  * Current presence of AutoID Identifier.
7
7
  *
@@ -2,7 +2,7 @@ import type { UAProperty } from "node-opcua-address-space-base";
2
2
  import type { UAString } from "node-opcua-basic-types";
3
3
  import type { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/dist/ua_base_event";
4
4
  import type { DataType } from "node-opcua-variant";
5
- import type { DTScanResult } from "./dt_scan_result";
5
+ import type { DTScanResult } from "./dt_scan_result.js";
6
6
  /**
7
7
  * | | |
8
8
  * |----------------|------------------------------------------------------------|
@@ -2,7 +2,7 @@ import type { UAProperty } from "node-opcua-address-space-base";
2
2
  import type { EUInformation } from "node-opcua-data-access";
3
3
  import type { UABaseDataVariable, UABaseDataVariable_Base } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
4
4
  import type { DataType } from "node-opcua-variant";
5
- import type { DTLocation } from "./dt_location";
5
+ import type { DTLocation } from "./dt_location.js";
6
6
  /**
7
7
  * | | |
8
8
  * |----------------|------------------------------------------------------------|
@@ -3,7 +3,7 @@ import type { UAString } from "node-opcua-basic-types";
3
3
  import type { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
4
4
  import type { UAFolder } from "node-opcua-nodeset-ua/dist/ua_folder";
5
5
  import type { DataType } from "node-opcua-variant";
6
- import type { UAAutoIdDevice, UAAutoIdDevice_Base, UAAutoIdDevice_runtimeParameters } from "./ua_auto_id_device";
6
+ import type { UAAutoIdDevice, UAAutoIdDevice_Base, UAAutoIdDevice_runtimeParameters } from "./ua_auto_id_device.js";
7
7
  export interface UAOcrReaderDevice_runtimeParameters extends UAAutoIdDevice_runtimeParameters {
8
8
  /**
9
9
  * matchCode
@@ -1,7 +1,7 @@
1
1
  import type { UAProperty } from "node-opcua-address-space-base";
2
2
  import type { DataType } from "node-opcua-variant";
3
- import type { DTOcrScanResult } from "./dt_ocr_scan_result";
4
- import type { UAAutoIdScanEvent, UAAutoIdScanEvent_Base } from "./ua_auto_id_scan_event";
3
+ import type { DTOcrScanResult } from "./dt_ocr_scan_result.js";
4
+ import type { UAAutoIdScanEvent, UAAutoIdScanEvent_Base } from "./ua_auto_id_scan_event.js";
5
5
  /**
6
6
  * | | |
7
7
  * |----------------|------------------------------------------------------------|
@@ -3,7 +3,7 @@ import type { UAString } from "node-opcua-basic-types";
3
3
  import type { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
4
4
  import type { UAFolder } from "node-opcua-nodeset-ua/dist/ua_folder";
5
5
  import type { DataType } from "node-opcua-variant";
6
- import type { UAAutoIdDevice, UAAutoIdDevice_Base, UAAutoIdDevice_runtimeParameters } from "./ua_auto_id_device";
6
+ import type { UAAutoIdDevice, UAAutoIdDevice_Base, UAAutoIdDevice_runtimeParameters } from "./ua_auto_id_device.js";
7
7
  export interface UAOpticalReaderDevice_runtimeParameters extends UAAutoIdDevice_runtimeParameters {
8
8
  /**
9
9
  * matchCode
@@ -1,7 +1,7 @@
1
1
  import type { UAProperty } from "node-opcua-address-space-base";
2
2
  import type { DataType } from "node-opcua-variant";
3
- import type { DTOpticalScanResult } from "./dt_optical_scan_result";
4
- import type { UAAutoIdScanEvent, UAAutoIdScanEvent_Base } from "./ua_auto_id_scan_event";
3
+ import type { DTOpticalScanResult } from "./dt_optical_scan_result.js";
4
+ import type { UAAutoIdScanEvent, UAAutoIdScanEvent_Base } from "./ua_auto_id_scan_event.js";
5
5
  /**
6
6
  * | | |
7
7
  * |----------------|------------------------------------------------------------|
@@ -1,5 +1,5 @@
1
1
  import type { UAMethod } from "node-opcua-address-space-base";
2
- import type { UAOpticalReaderDevice, UAOpticalReaderDevice_Base } from "./ua_optical_reader_device";
2
+ import type { UAOpticalReaderDevice, UAOpticalReaderDevice_Base } from "./ua_optical_reader_device.js";
3
3
  /**
4
4
  * | | |
5
5
  * |----------------|------------------------------------------------------------|
@@ -1,7 +1,7 @@
1
1
  import type { UAProperty } from "node-opcua-address-space-base";
2
2
  import type { DataType } from "node-opcua-variant";
3
- import type { DTOpticalVerifierScanResult } from "./dt_optical_verifier_scan_result";
4
- import type { UAOpticalScanEvent, UAOpticalScanEvent_Base } from "./ua_optical_scan_event";
3
+ import type { DTOpticalVerifierScanResult } from "./dt_optical_verifier_scan_result.js";
4
+ import type { UAOpticalScanEvent, UAOpticalScanEvent_Base } from "./ua_optical_scan_event.js";
5
5
  /**
6
6
  * | | |
7
7
  * |----------------|------------------------------------------------------------|
@@ -1,7 +1,7 @@
1
1
  import type { UAProperty } from "node-opcua-address-space-base";
2
2
  import type { DataType } from "node-opcua-variant";
3
- import type { DTRfidAccessResult } from "./dt_rfid_access_result";
4
- import type { UAAutoIdAccessEvent, UAAutoIdAccessEvent_Base } from "./ua_auto_id_access_event";
3
+ import type { DTRfidAccessResult } from "./dt_rfid_access_result.js";
4
+ import type { UAAutoIdAccessEvent, UAAutoIdAccessEvent_Base } from "./ua_auto_id_access_event.js";
5
5
  /**
6
6
  * Data of the access on one or more Rfid
7
7
  * Transponder.
@@ -4,8 +4,8 @@ import type { UAFunctionalGroup } from "node-opcua-nodeset-di/dist/ua_functional
4
4
  import type { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
5
5
  import type { UAMultiStateDiscrete } from "node-opcua-nodeset-ua/dist/ua_multi_state_discrete";
6
6
  import type { DataType } from "node-opcua-variant";
7
- import type { DTAntennaNameIdPair } from "./dt_antenna_name_id_pair";
8
- import type { UAAutoIdDevice, UAAutoIdDevice_Base, UAAutoIdDevice_diagnostics, UAAutoIdDevice_runtimeParameters } from "./ua_auto_id_device";
7
+ import type { DTAntennaNameIdPair } from "./dt_antenna_name_id_pair.js";
8
+ import type { UAAutoIdDevice, UAAutoIdDevice_Base, UAAutoIdDevice_diagnostics, UAAutoIdDevice_runtimeParameters } from "./ua_auto_id_device.js";
9
9
  export interface UARfidReaderDevice_diagnostics extends UAAutoIdDevice_diagnostics {
10
10
  /**
11
11
  * lastAccess
@@ -1,7 +1,7 @@
1
1
  import type { UAProperty } from "node-opcua-address-space-base";
2
2
  import type { DataType } from "node-opcua-variant";
3
- import type { DTRfidScanResult } from "./dt_rfid_scan_result";
4
- import type { UAAutoIdScanEvent, UAAutoIdScanEvent_Base } from "./ua_auto_id_scan_event";
3
+ import type { DTRfidScanResult } from "./dt_rfid_scan_result.js";
4
+ import type { UAAutoIdScanEvent, UAAutoIdScanEvent_Base } from "./ua_auto_id_scan_event.js";
5
5
  /**
6
6
  * | | |
7
7
  * |----------------|------------------------------------------------------------|
@@ -1,7 +1,7 @@
1
1
  import type { UAMethod, UAProperty } from "node-opcua-address-space-base";
2
2
  import type { EUInformation } from "node-opcua-data-access";
3
3
  import type { DataType } from "node-opcua-variant";
4
- import type { UAAutoIdDevice, UAAutoIdDevice_Base } from "./ua_auto_id_device";
4
+ import type { UAAutoIdDevice, UAAutoIdDevice_Base } from "./ua_auto_id_device.js";
5
5
  /**
6
6
  * | | |
7
7
  * |----------------|------------------------------------------------------------|
@@ -1,7 +1,7 @@
1
1
  import type { UAProperty } from "node-opcua-address-space-base";
2
2
  import type { DataType } from "node-opcua-variant";
3
- import type { DTRtlsLocationResult } from "./dt_rtls_location_result";
4
- import type { UAAutoIdScanEvent, UAAutoIdScanEvent_Base } from "./ua_auto_id_scan_event";
3
+ import type { DTRtlsLocationResult } from "./dt_rtls_location_result.js";
4
+ import type { UAAutoIdScanEvent, UAAutoIdScanEvent_Base } from "./ua_auto_id_scan_event.js";
5
5
  /**
6
6
  * | | |
7
7
  * |----------------|------------------------------------------------------------|
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-opcua-nodeset-auto-id",
3
- "version": "2.180.0",
3
+ "version": "2.181.0",
4
4
  "description": "pure nodejs OPCUA SDK - module node-opcua-nodeset-auto-id",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -11,15 +11,15 @@
11
11
  "author": "Etienne Rossignon <etienne.rossignon@sterfive.com>",
12
12
  "license": "MIT",
13
13
  "dependencies": {
14
- "node-opcua-address-space-base": "2.180.0",
15
- "node-opcua-basic-types": "2.180.0",
16
- "node-opcua-data-access": "2.180.0",
17
- "node-opcua-data-model": "2.180.0",
18
- "node-opcua-extension-object": "2.180.0",
19
- "node-opcua-nodeid": "2.179.0",
20
- "node-opcua-nodeset-di": "2.180.0",
21
- "node-opcua-nodeset-ua": "2.180.0",
22
- "node-opcua-variant": "2.180.0"
14
+ "node-opcua-address-space-base": "2.181.0",
15
+ "node-opcua-basic-types": "2.181.0",
16
+ "node-opcua-data-access": "2.181.0",
17
+ "node-opcua-data-model": "2.181.0",
18
+ "node-opcua-extension-object": "2.181.0",
19
+ "node-opcua-nodeid": "2.181.0",
20
+ "node-opcua-nodeset-di": "2.181.0",
21
+ "node-opcua-nodeset-ua": "2.181.0",
22
+ "node-opcua-variant": "2.181.0"
23
23
  },
24
24
  "files": [
25
25
  "dist",
@@ -38,5 +38,5 @@
38
38
  "internet of things"
39
39
  ],
40
40
  "homepage": "http://node-opcua.github.io/",
41
- "gitHead": "11ad1e0894355cd279e19443c6c9a4fc090e7d7a"
41
+ "gitHead": "f8f472c59e681b2aa18ae1533c3d1e5f17614c5c"
42
42
  }
@@ -2,7 +2,7 @@ import type { UAString } from "node-opcua-basic-types";
2
2
  import type { ExtensionObject } from "node-opcua-extension-object";
3
3
  import type { DTStructure } from "node-opcua-nodeset-ua/dist/dt_structure";
4
4
 
5
- import type { DTScanData } from "./dt_scan_data";
5
+ import type { DTScanData } from "./dt_scan_data.js";
6
6
 
7
7
  // ----- this file has been automatically generated - do not edit
8
8
 
@@ -1,8 +1,8 @@
1
1
  import type { UAString } from "node-opcua-basic-types";
2
2
  import type { DTUnion } from "node-opcua-nodeset-ua/dist/dt_union";
3
3
 
4
- import type { DTLocalCoordinate } from "./dt_local_coordinate";
5
- import type { DTWGS84Coordinate } from "./dt_wgs_84_coordinate";
4
+ import type { DTLocalCoordinate } from "./dt_local_coordinate.js";
5
+ import type { DTWGS84Coordinate } from "./dt_wgs_84_coordinate.js";
6
6
 
7
7
  // ----- this file has been automatically generated - do not edit
8
8
 
@@ -2,10 +2,10 @@ import type { Byte, UAString } from "node-opcua-basic-types";
2
2
  import type { ExtensionObject } from "node-opcua-extension-object";
3
3
  import type { NodeId } from "node-opcua-nodeid";
4
4
 
5
- import type { DTLocation } from "./dt_location";
6
- import type { DTPosition } from "./dt_position";
7
- import type { DTScanData } from "./dt_scan_data";
8
- import type { DTScanResult } from "./dt_scan_result";
5
+ import type { DTLocation } from "./dt_location.js";
6
+ import type { DTPosition } from "./dt_position.js";
7
+ import type { DTScanData } from "./dt_scan_data.js";
8
+ import type { DTScanResult } from "./dt_scan_result.js";
9
9
 
10
10
  // ----- this file has been automatically generated - do not edit
11
11
 
@@ -2,10 +2,10 @@ import type { UAString } from "node-opcua-basic-types";
2
2
  import type { ExtensionObject } from "node-opcua-extension-object";
3
3
  import type { NodeId } from "node-opcua-nodeid";
4
4
 
5
- import type { DTLocation } from "./dt_location";
6
- import type { DTPosition } from "./dt_position";
7
- import type { DTScanData } from "./dt_scan_data";
8
- import type { DTScanResult } from "./dt_scan_result";
5
+ import type { DTLocation } from "./dt_location.js";
6
+ import type { DTPosition } from "./dt_position.js";
7
+ import type { DTScanData } from "./dt_scan_data.js";
8
+ import type { DTScanResult } from "./dt_scan_result.js";
9
9
 
10
10
  // ----- this file has been automatically generated - do not edit
11
11
 
@@ -2,10 +2,10 @@ import type { Int16, UAString } from "node-opcua-basic-types";
2
2
  import type { ExtensionObject } from "node-opcua-extension-object";
3
3
  import type { NodeId } from "node-opcua-nodeid";
4
4
 
5
- import type { DTLocation } from "./dt_location";
6
- import type { DTOpticalScanResult } from "./dt_optical_scan_result";
7
- import type { DTPosition } from "./dt_position";
8
- import type { DTScanData } from "./dt_scan_data";
5
+ import type { DTLocation } from "./dt_location.js";
6
+ import type { DTOpticalScanResult } from "./dt_optical_scan_result.js";
7
+ import type { DTPosition } from "./dt_position.js";
8
+ import type { DTScanData } from "./dt_scan_data.js";
9
9
 
10
10
  // ----- this file has been automatically generated - do not edit
11
11
 
@@ -1,8 +1,8 @@
1
1
  import type { Int32, UAString, UInt16 } from "node-opcua-basic-types";
2
2
  import type { ExtensionObject } from "node-opcua-extension-object";
3
3
 
4
- import type { DTAccessResult } from "./dt_access_result";
5
- import type { DTScanData } from "./dt_scan_data";
4
+ import type { DTAccessResult } from "./dt_access_result.js";
5
+ import type { DTScanData } from "./dt_scan_data.js";
6
6
 
7
7
  // ----- this file has been automatically generated - do not edit
8
8
 
@@ -1,10 +1,10 @@
1
1
  import type { UAString } from "node-opcua-basic-types";
2
2
  import type { ExtensionObject } from "node-opcua-extension-object";
3
3
 
4
- import type { DTLocation } from "./dt_location";
5
- import type { DTRfidSighting } from "./dt_rfid_sighting";
6
- import type { DTScanData } from "./dt_scan_data";
7
- import type { DTScanResult } from "./dt_scan_result";
4
+ import type { DTLocation } from "./dt_location.js";
5
+ import type { DTRfidSighting } from "./dt_rfid_sighting.js";
6
+ import type { DTScanData } from "./dt_scan_data.js";
7
+ import type { DTScanResult } from "./dt_scan_result.js";
8
8
 
9
9
  // ----- this file has been automatically generated - do not edit
10
10
 
@@ -1,10 +1,10 @@
1
1
  import type { UAString } from "node-opcua-basic-types";
2
2
  import type { ExtensionObject } from "node-opcua-extension-object";
3
3
 
4
- import type { DTLocation } from "./dt_location";
5
- import type { DTRotation } from "./dt_rotation";
6
- import type { DTScanData } from "./dt_scan_data";
7
- import type { DTScanResult } from "./dt_scan_result";
4
+ import type { DTLocation } from "./dt_location.js";
5
+ import type { DTRotation } from "./dt_rotation.js";
6
+ import type { DTScanData } from "./dt_scan_data.js";
7
+ import type { DTScanResult } from "./dt_scan_result.js";
8
8
 
9
9
  // ----- this file has been automatically generated - do not edit
10
10
 
@@ -2,7 +2,7 @@ import type { UAString } from "node-opcua-basic-types";
2
2
  import type { DTUnion } from "node-opcua-nodeset-ua/dist/dt_union";
3
3
  import type { Variant } from "node-opcua-variant";
4
4
 
5
- import type { DTScanDataEpc } from "./dt_scan_data_epc";
5
+ import type { DTScanDataEpc } from "./dt_scan_data_epc.js";
6
6
 
7
7
  // ----- this file has been automatically generated - do not edit
8
8
 
@@ -2,8 +2,8 @@ import type { UAString } from "node-opcua-basic-types";
2
2
  import type { ExtensionObject } from "node-opcua-extension-object";
3
3
  import type { DTStructure } from "node-opcua-nodeset-ua/dist/dt_structure";
4
4
 
5
- import type { DTLocation } from "./dt_location";
6
- import type { DTScanData } from "./dt_scan_data";
5
+ import type { DTLocation } from "./dt_location.js";
6
+ import type { DTScanData } from "./dt_scan_data.js";
7
7
 
8
8
  // ----- this file has been automatically generated - do not edit
9
9
 
@@ -2,7 +2,7 @@ import type { Int32 } from "node-opcua-basic-types";
2
2
  import type { ExtensionObject } from "node-opcua-extension-object";
3
3
  import type { DTStructure } from "node-opcua-nodeset-ua/dist/dt_structure";
4
4
 
5
- import type { EnumLocationType } from "./enum_location_type";
5
+ import type { EnumLocationType } from "./enum_location_type.js";
6
6
 
7
7
  // ----- this file has been automatically generated - do not edit
8
8
 
package/source/index.ts CHANGED
@@ -1,43 +1,43 @@
1
- export * from "./dt_access_result";
2
- export * from "./dt_antenna_name_id_pair";
3
- export * from "./dt_dhcp_geo_conf_coordinate";
4
- export * from "./dt_local_coordinate";
5
- export * from "./dt_location";
6
- export * from "./dt_ocr_scan_result";
7
- export * from "./dt_optical_scan_result";
8
- export * from "./dt_optical_verifier_scan_result";
9
- export * from "./dt_position";
10
- export * from "./dt_rfid_access_result";
11
- export * from "./dt_rfid_scan_result";
12
- export * from "./dt_rfid_sighting";
13
- export * from "./dt_rotation";
14
- export * from "./dt_rtls_location_result";
15
- export * from "./dt_scan_data";
16
- export * from "./dt_scan_data_epc";
17
- export * from "./dt_scan_result";
18
- export * from "./dt_scan_settings";
19
- export * from "./dt_wgs_84_coordinate";
20
- export * from "./enum_auto_id_operation_status";
21
- export * from "./enum_device_status";
22
- export * from "./enum_location_type";
23
- export * from "./enum_rfid_lock_operation";
24
- export * from "./enum_rfid_lock_region";
25
- export * from "./enum_rfid_password_type";
26
- export * from "./ua_auto_id_access_event";
27
- export * from "./ua_auto_id_device";
28
- export * from "./ua_auto_id_diagnostics_event";
29
- export * from "./ua_auto_id_log_entry_event";
30
- export * from "./ua_auto_id_presence_event";
31
- export * from "./ua_auto_id_scan_event";
32
- export * from "./ua_location_variable";
33
- export * from "./ua_ocr_reader_device";
34
- export * from "./ua_ocr_scan_event";
35
- export * from "./ua_optical_reader_device";
36
- export * from "./ua_optical_scan_event";
37
- export * from "./ua_optical_verifier_device";
38
- export * from "./ua_optical_verifier_scan_event";
39
- export * from "./ua_rfid_access_event";
40
- export * from "./ua_rfid_reader_device";
41
- export * from "./ua_rfid_scan_event";
42
- export * from "./ua_rtls_device";
43
- export * from "./ua_rtls_location_event";
1
+ export * from "./dt_access_result.js";
2
+ export * from "./dt_antenna_name_id_pair.js";
3
+ export * from "./dt_dhcp_geo_conf_coordinate.js";
4
+ export * from "./dt_local_coordinate.js";
5
+ export * from "./dt_location.js";
6
+ export * from "./dt_ocr_scan_result.js";
7
+ export * from "./dt_optical_scan_result.js";
8
+ export * from "./dt_optical_verifier_scan_result.js";
9
+ export * from "./dt_position.js";
10
+ export * from "./dt_rfid_access_result.js";
11
+ export * from "./dt_rfid_scan_result.js";
12
+ export * from "./dt_rfid_sighting.js";
13
+ export * from "./dt_rotation.js";
14
+ export * from "./dt_rtls_location_result.js";
15
+ export * from "./dt_scan_data.js";
16
+ export * from "./dt_scan_data_epc.js";
17
+ export * from "./dt_scan_result.js";
18
+ export * from "./dt_scan_settings.js";
19
+ export * from "./dt_wgs_84_coordinate.js";
20
+ export * from "./enum_auto_id_operation_status.js";
21
+ export * from "./enum_device_status.js";
22
+ export * from "./enum_location_type.js";
23
+ export * from "./enum_rfid_lock_operation.js";
24
+ export * from "./enum_rfid_lock_region.js";
25
+ export * from "./enum_rfid_password_type.js";
26
+ export * from "./ua_auto_id_access_event.js";
27
+ export * from "./ua_auto_id_device.js";
28
+ export * from "./ua_auto_id_diagnostics_event.js";
29
+ export * from "./ua_auto_id_log_entry_event.js";
30
+ export * from "./ua_auto_id_presence_event.js";
31
+ export * from "./ua_auto_id_scan_event.js";
32
+ export * from "./ua_location_variable.js";
33
+ export * from "./ua_ocr_reader_device.js";
34
+ export * from "./ua_ocr_scan_event.js";
35
+ export * from "./ua_optical_reader_device.js";
36
+ export * from "./ua_optical_scan_event.js";
37
+ export * from "./ua_optical_verifier_device.js";
38
+ export * from "./ua_optical_verifier_scan_event.js";
39
+ export * from "./ua_rfid_access_event.js";
40
+ export * from "./ua_rfid_reader_device.js";
41
+ export * from "./ua_rfid_scan_event.js";
42
+ export * from "./ua_rtls_device.js";
43
+ export * from "./ua_rtls_location_event.js";
@@ -2,8 +2,8 @@ import type { UAProperty } from "node-opcua-address-space-base";
2
2
  import type { UAString } from "node-opcua-basic-types";
3
3
  import type { DataType } from "node-opcua-variant";
4
4
 
5
- import type { DTAccessResult } from "./dt_access_result";
6
- import type { UAAutoIdDiagnosticsEvent, UAAutoIdDiagnosticsEvent_Base } from "./ua_auto_id_diagnostics_event";
5
+ import type { DTAccessResult } from "./dt_access_result.js";
6
+ import type { UAAutoIdDiagnosticsEvent, UAAutoIdDiagnosticsEvent_Base } from "./ua_auto_id_diagnostics_event.js";
7
7
 
8
8
  // ----- this file has been automatically generated - do not edit
9
9
 
@@ -6,9 +6,9 @@ import type { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data
6
6
  import type { UAMultiStateDiscrete } from "node-opcua-nodeset-ua/dist/ua_multi_state_discrete";
7
7
  import type { DataType } from "node-opcua-variant";
8
8
 
9
- import type { DTLocation } from "./dt_location";
10
- import type { EnumDeviceStatus } from "./enum_device_status";
11
- import type { UALocationVariable } from "./ua_location_variable";
9
+ import type { DTLocation } from "./dt_location.js";
10
+ import type { EnumDeviceStatus } from "./enum_device_status.js";
11
+ import type { UALocationVariable } from "./ua_location_variable.js";
12
12
 
13
13
  // ----- this file has been automatically generated - do not edit
14
14
 
@@ -1,4 +1,4 @@
1
- import type { UAAutoIdDiagnosticsEvent, UAAutoIdDiagnosticsEvent_Base } from "./ua_auto_id_diagnostics_event";
1
+ import type { UAAutoIdDiagnosticsEvent, UAAutoIdDiagnosticsEvent_Base } from "./ua_auto_id_diagnostics_event.js";
2
2
 
3
3
  // ----- this file has been automatically generated - do not edit
4
4
  /**
@@ -2,7 +2,7 @@ import type { UAProperty } from "node-opcua-address-space-base";
2
2
  import type { UInt16 } from "node-opcua-basic-types";
3
3
  import type { DataType } from "node-opcua-variant";
4
4
 
5
- import type { UAAutoIdDiagnosticsEvent, UAAutoIdDiagnosticsEvent_Base } from "./ua_auto_id_diagnostics_event";
5
+ import type { UAAutoIdDiagnosticsEvent, UAAutoIdDiagnosticsEvent_Base } from "./ua_auto_id_diagnostics_event.js";
6
6
 
7
7
  // ----- this file has been automatically generated - do not edit
8
8
 
@@ -3,7 +3,7 @@ import type { UAString } from "node-opcua-basic-types";
3
3
  import type { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/dist/ua_base_event";
4
4
  import type { DataType } from "node-opcua-variant";
5
5
 
6
- import type { DTScanResult } from "./dt_scan_result";
6
+ import type { DTScanResult } from "./dt_scan_result.js";
7
7
 
8
8
  // ----- this file has been automatically generated - do not edit
9
9
 
@@ -3,7 +3,7 @@ import type { EUInformation } from "node-opcua-data-access";
3
3
  import type { UABaseDataVariable, UABaseDataVariable_Base } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
4
4
  import type { DataType } from "node-opcua-variant";
5
5
 
6
- import type { DTLocation } from "./dt_location";
6
+ import type { DTLocation } from "./dt_location.js";
7
7
 
8
8
  // ----- this file has been automatically generated - do not edit
9
9
 
@@ -4,7 +4,7 @@ import type { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data
4
4
  import type { UAFolder } from "node-opcua-nodeset-ua/dist/ua_folder";
5
5
  import type { DataType } from "node-opcua-variant";
6
6
 
7
- import type { UAAutoIdDevice, UAAutoIdDevice_Base, UAAutoIdDevice_runtimeParameters } from "./ua_auto_id_device";
7
+ import type { UAAutoIdDevice, UAAutoIdDevice_Base, UAAutoIdDevice_runtimeParameters } from "./ua_auto_id_device.js";
8
8
 
9
9
  // ----- this file has been automatically generated - do not edit
10
10
 
@@ -1,8 +1,8 @@
1
1
  import type { UAProperty } from "node-opcua-address-space-base";
2
2
  import type { DataType } from "node-opcua-variant";
3
3
 
4
- import type { DTOcrScanResult } from "./dt_ocr_scan_result";
5
- import type { UAAutoIdScanEvent, UAAutoIdScanEvent_Base } from "./ua_auto_id_scan_event";
4
+ import type { DTOcrScanResult } from "./dt_ocr_scan_result.js";
5
+ import type { UAAutoIdScanEvent, UAAutoIdScanEvent_Base } from "./ua_auto_id_scan_event.js";
6
6
 
7
7
  // ----- this file has been automatically generated - do not edit
8
8
 
@@ -4,7 +4,7 @@ import type { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data
4
4
  import type { UAFolder } from "node-opcua-nodeset-ua/dist/ua_folder";
5
5
  import type { DataType } from "node-opcua-variant";
6
6
 
7
- import type { UAAutoIdDevice, UAAutoIdDevice_Base, UAAutoIdDevice_runtimeParameters } from "./ua_auto_id_device";
7
+ import type { UAAutoIdDevice, UAAutoIdDevice_Base, UAAutoIdDevice_runtimeParameters } from "./ua_auto_id_device.js";
8
8
 
9
9
  // ----- this file has been automatically generated - do not edit
10
10
 
@@ -1,8 +1,8 @@
1
1
  import type { UAProperty } from "node-opcua-address-space-base";
2
2
  import type { DataType } from "node-opcua-variant";
3
3
 
4
- import type { DTOpticalScanResult } from "./dt_optical_scan_result";
5
- import type { UAAutoIdScanEvent, UAAutoIdScanEvent_Base } from "./ua_auto_id_scan_event";
4
+ import type { DTOpticalScanResult } from "./dt_optical_scan_result.js";
5
+ import type { UAAutoIdScanEvent, UAAutoIdScanEvent_Base } from "./ua_auto_id_scan_event.js";
6
6
 
7
7
  // ----- this file has been automatically generated - do not edit
8
8
 
@@ -1,6 +1,6 @@
1
1
  import type { UAMethod } from "node-opcua-address-space-base";
2
2
 
3
- import type { UAOpticalReaderDevice, UAOpticalReaderDevice_Base } from "./ua_optical_reader_device";
3
+ import type { UAOpticalReaderDevice, UAOpticalReaderDevice_Base } from "./ua_optical_reader_device.js";
4
4
 
5
5
  // ----- this file has been automatically generated - do not edit
6
6
 
@@ -1,8 +1,8 @@
1
1
  import type { UAProperty } from "node-opcua-address-space-base";
2
2
  import type { DataType } from "node-opcua-variant";
3
3
 
4
- import type { DTOpticalVerifierScanResult } from "./dt_optical_verifier_scan_result";
5
- import type { UAOpticalScanEvent, UAOpticalScanEvent_Base } from "./ua_optical_scan_event";
4
+ import type { DTOpticalVerifierScanResult } from "./dt_optical_verifier_scan_result.js";
5
+ import type { UAOpticalScanEvent, UAOpticalScanEvent_Base } from "./ua_optical_scan_event.js";
6
6
 
7
7
  // ----- this file has been automatically generated - do not edit
8
8
 
@@ -1,8 +1,8 @@
1
1
  import type { UAProperty } from "node-opcua-address-space-base";
2
2
  import type { DataType } from "node-opcua-variant";
3
3
 
4
- import type { DTRfidAccessResult } from "./dt_rfid_access_result";
5
- import type { UAAutoIdAccessEvent, UAAutoIdAccessEvent_Base } from "./ua_auto_id_access_event";
4
+ import type { DTRfidAccessResult } from "./dt_rfid_access_result.js";
5
+ import type { UAAutoIdAccessEvent, UAAutoIdAccessEvent_Base } from "./ua_auto_id_access_event.js";
6
6
 
7
7
  // ----- this file has been automatically generated - do not edit
8
8
 
@@ -5,8 +5,8 @@ import type { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data
5
5
  import type { UAMultiStateDiscrete } from "node-opcua-nodeset-ua/dist/ua_multi_state_discrete";
6
6
  import type { DataType } from "node-opcua-variant";
7
7
 
8
- import type { DTAntennaNameIdPair } from "./dt_antenna_name_id_pair";
9
- import type { UAAutoIdDevice, UAAutoIdDevice_Base, UAAutoIdDevice_diagnostics, UAAutoIdDevice_runtimeParameters } from "./ua_auto_id_device";
8
+ import type { DTAntennaNameIdPair } from "./dt_antenna_name_id_pair.js";
9
+ import type { UAAutoIdDevice, UAAutoIdDevice_Base, UAAutoIdDevice_diagnostics, UAAutoIdDevice_runtimeParameters } from "./ua_auto_id_device.js";
10
10
 
11
11
  // ----- this file has been automatically generated - do not edit
12
12
 
@@ -1,8 +1,8 @@
1
1
  import type { UAProperty } from "node-opcua-address-space-base";
2
2
  import type { DataType } from "node-opcua-variant";
3
3
 
4
- import type { DTRfidScanResult } from "./dt_rfid_scan_result";
5
- import type { UAAutoIdScanEvent, UAAutoIdScanEvent_Base } from "./ua_auto_id_scan_event";
4
+ import type { DTRfidScanResult } from "./dt_rfid_scan_result.js";
5
+ import type { UAAutoIdScanEvent, UAAutoIdScanEvent_Base } from "./ua_auto_id_scan_event.js";
6
6
 
7
7
  // ----- this file has been automatically generated - do not edit
8
8
 
@@ -2,7 +2,7 @@ import type { UAMethod, UAProperty } from "node-opcua-address-space-base";
2
2
  import type { EUInformation } from "node-opcua-data-access";
3
3
  import type { DataType } from "node-opcua-variant";
4
4
 
5
- import type { UAAutoIdDevice, UAAutoIdDevice_Base } from "./ua_auto_id_device";
5
+ import type { UAAutoIdDevice, UAAutoIdDevice_Base } from "./ua_auto_id_device.js";
6
6
 
7
7
  // ----- this file has been automatically generated - do not edit
8
8
 
@@ -1,8 +1,8 @@
1
1
  import type { UAProperty } from "node-opcua-address-space-base";
2
2
  import type { DataType } from "node-opcua-variant";
3
3
 
4
- import type { DTRtlsLocationResult } from "./dt_rtls_location_result";
5
- import type { UAAutoIdScanEvent, UAAutoIdScanEvent_Base } from "./ua_auto_id_scan_event";
4
+ import type { DTRtlsLocationResult } from "./dt_rtls_location_result.js";
5
+ import type { UAAutoIdScanEvent, UAAutoIdScanEvent_Base } from "./ua_auto_id_scan_event.js";
6
6
 
7
7
  // ----- this file has been automatically generated - do not edit
8
8