node-opcua-nodeset-adi 2.169.0 → 2.172.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 (72) hide show
  1. package/dist/ua_accessory.d.ts +4 -4
  2. package/dist/ua_accessory_slot.d.ts +4 -4
  3. package/dist/ua_accessory_slot_state_machine.d.ts +4 -4
  4. package/dist/ua_acoustic_spectrometer_device.d.ts +1 -1
  5. package/dist/ua_acoustic_spectrometer_device_stream.d.ts +1 -1
  6. package/dist/ua_analyser_channel.d.ts +8 -8
  7. package/dist/ua_analyser_channel_local_state.d.ts +1 -1
  8. package/dist/ua_analyser_channel_maintenance_state.d.ts +1 -1
  9. package/dist/ua_analyser_channel_operating_execute_state.d.ts +1 -1
  10. package/dist/ua_analyser_channel_operating_mode_execute_sub_state_machine.d.ts +7 -7
  11. package/dist/ua_analyser_channel_operating_mode_sub_state_machine.d.ts +9 -9
  12. package/dist/ua_analyser_channel_operating_state.d.ts +1 -1
  13. package/dist/ua_analyser_channel_state_machine.d.ts +7 -7
  14. package/dist/ua_analyser_device.d.ts +10 -10
  15. package/dist/ua_analyser_device_state_machine.d.ts +4 -4
  16. package/dist/ua_chemometric_model.d.ts +4 -4
  17. package/dist/ua_chromatograph_device.d.ts +1 -1
  18. package/dist/ua_chromatograph_device_stream.d.ts +1 -1
  19. package/dist/ua_detector.d.ts +1 -1
  20. package/dist/ua_engineering_value.d.ts +2 -2
  21. package/dist/ua_gc_oven.d.ts +1 -1
  22. package/dist/ua_mass_spectrometer_device.d.ts +1 -1
  23. package/dist/ua_mass_spectrometer_device_stream.d.ts +1 -1
  24. package/dist/ua_mnr_device_stream.d.ts +1 -1
  25. package/dist/ua_mva_model.d.ts +4 -4
  26. package/dist/ua_mva_output_parameter.d.ts +6 -6
  27. package/dist/ua_nmr_device.d.ts +1 -1
  28. package/dist/ua_particle_size_monitor_device.d.ts +1 -1
  29. package/dist/ua_particle_size_monitor_device_stream.d.ts +4 -4
  30. package/dist/ua_process_variable.d.ts +2 -2
  31. package/dist/ua_smart_sampling_system.d.ts +1 -1
  32. package/dist/ua_source.d.ts +1 -1
  33. package/dist/ua_spectrometer_device.d.ts +5 -5
  34. package/dist/ua_spectrometer_device_stream.d.ts +7 -7
  35. package/dist/ua_stream.d.ts +11 -11
  36. package/package.json +10 -10
  37. package/source/index.ts +1 -1
  38. package/source/ua_accessory.ts +7 -6
  39. package/source/ua_accessory_slot.ts +8 -6
  40. package/source/ua_accessory_slot_state_machine.ts +7 -6
  41. package/source/ua_acoustic_spectrometer_device.ts +3 -3
  42. package/source/ua_acoustic_spectrometer_device_stream.ts +3 -3
  43. package/source/ua_analyser_channel.ts +12 -10
  44. package/source/ua_analyser_channel_local_state.ts +3 -3
  45. package/source/ua_analyser_channel_maintenance_state.ts +3 -3
  46. package/source/ua_analyser_channel_operating_execute_state.ts +3 -3
  47. package/source/ua_analyser_channel_operating_mode_execute_sub_state_machine.ts +10 -9
  48. package/source/ua_analyser_channel_operating_mode_sub_state_machine.ts +13 -11
  49. package/source/ua_analyser_channel_operating_state.ts +3 -3
  50. package/source/ua_analyser_channel_state_machine.ts +11 -9
  51. package/source/ua_analyser_device.ts +14 -12
  52. package/source/ua_analyser_device_state_machine.ts +7 -6
  53. package/source/ua_chemometric_model.ts +7 -6
  54. package/source/ua_chromatograph_device.ts +3 -3
  55. package/source/ua_chromatograph_device_stream.ts +3 -3
  56. package/source/ua_detector.ts +3 -3
  57. package/source/ua_engineering_value.ts +4 -4
  58. package/source/ua_gc_oven.ts +3 -3
  59. package/source/ua_mass_spectrometer_device.ts +3 -3
  60. package/source/ua_mass_spectrometer_device_stream.ts +3 -3
  61. package/source/ua_mnr_device_stream.ts +3 -3
  62. package/source/ua_mva_model.ts +8 -6
  63. package/source/ua_mva_output_parameter.ts +10 -8
  64. package/source/ua_nmr_device.ts +3 -3
  65. package/source/ua_particle_size_monitor_device.ts +3 -3
  66. package/source/ua_particle_size_monitor_device_stream.ts +8 -6
  67. package/source/ua_process_variable.ts +4 -4
  68. package/source/ua_smart_sampling_system.ts +3 -3
  69. package/source/ua_source.ts +3 -3
  70. package/source/ua_spectrometer_device.ts +9 -7
  71. package/source/ua_spectrometer_device_stream.ts +11 -9
  72. package/source/ua_stream.ts +15 -13
@@ -1,7 +1,7 @@
1
- import { UAProperty } from "node-opcua-address-space-base";
2
- import { DataType } from "node-opcua-variant";
3
- import { UATopologyElement, UATopologyElement_Base } from "node-opcua-nodeset-di/dist/ua_topology_element";
4
- import { UAFunctionalGroup } from "node-opcua-nodeset-di/dist/ua_functional_group";
1
+ import type { UAProperty } from "node-opcua-address-space-base";
2
+ import type { UAFunctionalGroup } from "node-opcua-nodeset-di/dist/ua_functional_group";
3
+ import type { UATopologyElement, UATopologyElement_Base } from "node-opcua-nodeset-di/dist/ua_topology_element";
4
+ import type { DataType } from "node-opcua-variant";
5
5
  /**
6
6
  * | | |
7
7
  * |----------------|------------------------------------------------------------|
@@ -1,7 +1,7 @@
1
- import { UAProperty } from "node-opcua-address-space-base";
2
- import { DataType } from "node-opcua-variant";
3
- import { UAConfigurableObject, UAConfigurableObject_Base } from "node-opcua-nodeset-di/dist/ua_configurable_object";
4
- import { UAAccessorySlotStateMachine } from "./ua_accessory_slot_state_machine";
1
+ import type { UAProperty } from "node-opcua-address-space-base";
2
+ import type { UAConfigurableObject, UAConfigurableObject_Base } from "node-opcua-nodeset-di/dist/ua_configurable_object";
3
+ import type { DataType } from "node-opcua-variant";
4
+ import type { UAAccessorySlotStateMachine } from "./ua_accessory_slot_state_machine";
5
5
  /**
6
6
  * Organizes zero or more Accessory objects
7
7
  * identified by "AccessoryIdentifier" which
@@ -1,7 +1,7 @@
1
- import { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/dist/ua_finite_state_machine";
2
- import { UAInitialState } from "node-opcua-nodeset-ua/dist/ua_initial_state";
3
- import { UAState } from "node-opcua-nodeset-ua/dist/ua_state";
4
- import { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition";
1
+ import type { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/dist/ua_finite_state_machine";
2
+ import type { UAInitialState } from "node-opcua-nodeset-ua/dist/ua_initial_state";
3
+ import type { UAState } from "node-opcua-nodeset-ua/dist/ua_state";
4
+ import type { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition";
5
5
  /**
6
6
  * Describes the behaviour of an AccessorySlot when
7
7
  * a physical accessory is inserted or removed.
@@ -1,4 +1,4 @@
1
- import { UAAnalyserDevice, UAAnalyserDevice_Base } from "./ua_analyser_device";
1
+ import type { UAAnalyserDevice, UAAnalyserDevice_Base } from "./ua_analyser_device";
2
2
  /**
3
3
  * | | |
4
4
  * |----------------|------------------------------------------------------------|
@@ -1,4 +1,4 @@
1
- import { UAStream, UAStream_Base } from "./ua_stream";
1
+ import type { UAStream, UAStream_Base } from "./ua_stream";
2
2
  /**
3
3
  * | | |
4
4
  * |----------------|------------------------------------------------------------|
@@ -1,11 +1,11 @@
1
- import { UAObject, UAMethod } from "node-opcua-address-space-base";
2
- import { DataType } from "node-opcua-variant";
3
- import { UAString } from "node-opcua-basic-types";
4
- import { UADataItem } from "node-opcua-nodeset-ua/dist/ua_data_item";
5
- import { EnumDeviceHealth } from "node-opcua-nodeset-di/dist/enum_device_health";
6
- import { UAFunctionalGroup } from "node-opcua-nodeset-di/dist/ua_functional_group";
7
- import { UATopologyElement, UATopologyElement_Base } from "node-opcua-nodeset-di/dist/ua_topology_element";
8
- import { UAAnalyserChannelStateMachine } from "./ua_analyser_channel_state_machine";
1
+ import type { UAMethod, UAObject } from "node-opcua-address-space-base";
2
+ import type { UAString } from "node-opcua-basic-types";
3
+ import type { EnumDeviceHealth } from "node-opcua-nodeset-di/dist/enum_device_health";
4
+ import type { UAFunctionalGroup } from "node-opcua-nodeset-di/dist/ua_functional_group";
5
+ import type { UATopologyElement, UATopologyElement_Base } from "node-opcua-nodeset-di/dist/ua_topology_element";
6
+ import type { UADataItem } from "node-opcua-nodeset-ua/dist/ua_data_item";
7
+ import type { DataType } from "node-opcua-variant";
8
+ import type { UAAnalyserChannelStateMachine } from "./ua_analyser_channel_state_machine";
9
9
  export interface UAAnalyserChannel_parameterSet extends UAObject {
10
10
  /**
11
11
  * channelId
@@ -1,4 +1,4 @@
1
- import { UAState, UAState_Base } from "node-opcua-nodeset-ua/dist/ua_state";
1
+ import type { UAState, UAState_Base } from "node-opcua-nodeset-ua/dist/ua_state";
2
2
  /**
3
3
  * | | |
4
4
  * |----------------|------------------------------------------------------------|
@@ -1,4 +1,4 @@
1
- import { UAState, UAState_Base } from "node-opcua-nodeset-ua/dist/ua_state";
1
+ import type { UAState, UAState_Base } from "node-opcua-nodeset-ua/dist/ua_state";
2
2
  /**
3
3
  * | | |
4
4
  * |----------------|------------------------------------------------------------|
@@ -1,4 +1,4 @@
1
- import { UAState, UAState_Base } from "node-opcua-nodeset-ua/dist/ua_state";
1
+ import type { UAState, UAState_Base } from "node-opcua-nodeset-ua/dist/ua_state";
2
2
  /**
3
3
  * | | |
4
4
  * |----------------|------------------------------------------------------------|
@@ -1,10 +1,10 @@
1
- import { UAProperty } from "node-opcua-address-space-base";
2
- import { DataType } from "node-opcua-variant";
3
- import { UInt32 } from "node-opcua-basic-types";
4
- import { UAInitialState } from "node-opcua-nodeset-ua/dist/ua_initial_state";
5
- import { UAState } from "node-opcua-nodeset-ua/dist/ua_state";
6
- import { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/dist/ua_finite_state_machine";
7
- import { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition";
1
+ import type { UAProperty } from "node-opcua-address-space-base";
2
+ import type { UInt32 } from "node-opcua-basic-types";
3
+ import type { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/dist/ua_finite_state_machine";
4
+ import type { UAInitialState } from "node-opcua-nodeset-ua/dist/ua_initial_state";
5
+ import type { UAState } from "node-opcua-nodeset-ua/dist/ua_state";
6
+ import type { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition";
7
+ import type { DataType } from "node-opcua-variant";
8
8
  export interface UAAnalyserChannel_OperatingModeExecuteSubStateMachine_selectExecutionCycle extends Omit<UAInitialState, "stateNumber"> {
9
9
  stateNumber: UAProperty<UInt32, DataType.UInt32>;
10
10
  }
@@ -1,12 +1,12 @@
1
- import { UAProperty } from "node-opcua-address-space-base";
2
- import { DataType } from "node-opcua-variant";
3
- import { UInt32 } from "node-opcua-basic-types";
4
- import { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition";
5
- import { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/dist/ua_finite_state_machine";
6
- import { UAInitialState } from "node-opcua-nodeset-ua/dist/ua_initial_state";
7
- import { UAState } from "node-opcua-nodeset-ua/dist/ua_state";
8
- import { UAAnalyserChannel_OperatingModeExecuteSubStateMachine } from "./ua_analyser_channel_operating_mode_execute_sub_state_machine";
9
- import { UAAnalyserChannelOperatingExecuteState } from "./ua_analyser_channel_operating_execute_state";
1
+ import type { UAProperty } from "node-opcua-address-space-base";
2
+ import type { UInt32 } from "node-opcua-basic-types";
3
+ import type { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/dist/ua_finite_state_machine";
4
+ import type { UAInitialState } from "node-opcua-nodeset-ua/dist/ua_initial_state";
5
+ import type { UAState } from "node-opcua-nodeset-ua/dist/ua_state";
6
+ import type { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition";
7
+ import type { DataType } from "node-opcua-variant";
8
+ import type { UAAnalyserChannelOperatingExecuteState } from "./ua_analyser_channel_operating_execute_state";
9
+ import type { UAAnalyserChannel_OperatingModeExecuteSubStateMachine } from "./ua_analyser_channel_operating_mode_execute_sub_state_machine";
10
10
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_stoppedToResettingTransition extends Omit<UATransition, "transitionNumber"> {
11
11
  transitionNumber: UAProperty<UInt32, DataType.UInt32>;
12
12
  }
@@ -1,4 +1,4 @@
1
- import { UAState, UAState_Base } from "node-opcua-nodeset-ua/dist/ua_state";
1
+ import type { UAState, UAState_Base } from "node-opcua-nodeset-ua/dist/ua_state";
2
2
  /**
3
3
  * | | |
4
4
  * |----------------|------------------------------------------------------------|
@@ -1,10 +1,10 @@
1
- import { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/dist/ua_finite_state_machine";
2
- import { UAInitialState } from "node-opcua-nodeset-ua/dist/ua_initial_state";
3
- import { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition";
4
- import { UAAnalyserChannel_OperatingModeSubStateMachine } from "./ua_analyser_channel_operating_mode_sub_state_machine";
5
- import { UAAnalyserChannelOperatingState } from "./ua_analyser_channel_operating_state";
6
- import { UAAnalyserChannelLocalState } from "./ua_analyser_channel_local_state";
7
- import { UAAnalyserChannelMaintenanceState } from "./ua_analyser_channel_maintenance_state";
1
+ import type { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/dist/ua_finite_state_machine";
2
+ import type { UAInitialState } from "node-opcua-nodeset-ua/dist/ua_initial_state";
3
+ import type { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition";
4
+ import type { UAAnalyserChannelLocalState } from "./ua_analyser_channel_local_state";
5
+ import type { UAAnalyserChannelMaintenanceState } from "./ua_analyser_channel_maintenance_state";
6
+ import type { UAAnalyserChannel_OperatingModeSubStateMachine } from "./ua_analyser_channel_operating_mode_sub_state_machine";
7
+ import type { UAAnalyserChannelOperatingState } from "./ua_analyser_channel_operating_state";
8
8
  /**
9
9
  * Contains a nested state model that defines the
10
10
  * top level states Operating, Local and Maintenance
@@ -1,13 +1,13 @@
1
- import { UAObject, UAMethod, UAProperty } from "node-opcua-address-space-base";
2
- import { DataType } from "node-opcua-variant";
3
- import { LocalizedText } from "node-opcua-data-model";
4
- import { UAString } from "node-opcua-basic-types";
5
- import { UADataItem } from "node-opcua-nodeset-ua/dist/ua_data_item";
6
- import { UAFile } from "node-opcua-nodeset-ua/dist/ua_file";
7
- import { EnumDeviceHealth } from "node-opcua-nodeset-di/dist/enum_device_health";
8
- import { UAFunctionalGroup } from "node-opcua-nodeset-di/dist/ua_functional_group";
9
- import { UADevice, UADevice_Base } from "node-opcua-nodeset-di/dist/ua_device";
10
- import { UAAnalyserDeviceStateMachine } from "./ua_analyser_device_state_machine";
1
+ import type { UAMethod, UAObject, UAProperty } from "node-opcua-address-space-base";
2
+ import type { UAString } from "node-opcua-basic-types";
3
+ import type { LocalizedText } from "node-opcua-data-model";
4
+ import type { EnumDeviceHealth } from "node-opcua-nodeset-di/dist/enum_device_health";
5
+ import type { UADevice, UADevice_Base } from "node-opcua-nodeset-di/dist/ua_device";
6
+ import type { UAFunctionalGroup } from "node-opcua-nodeset-di/dist/ua_functional_group";
7
+ import type { UADataItem } from "node-opcua-nodeset-ua/dist/ua_data_item";
8
+ import type { UAFile } from "node-opcua-nodeset-ua/dist/ua_file";
9
+ import type { DataType } from "node-opcua-variant";
10
+ import type { UAAnalyserDeviceStateMachine } from "./ua_analyser_device_state_machine";
11
11
  export interface UAAnalyserDevice_parameterSet extends UAObject {
12
12
  /**
13
13
  * diagnosticStatus
@@ -1,7 +1,7 @@
1
- import { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/dist/ua_finite_state_machine";
2
- import { UAInitialState } from "node-opcua-nodeset-ua/dist/ua_initial_state";
3
- import { UAState } from "node-opcua-nodeset-ua/dist/ua_state";
4
- import { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition";
1
+ import type { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/dist/ua_finite_state_machine";
2
+ import type { UAInitialState } from "node-opcua-nodeset-ua/dist/ua_initial_state";
3
+ import type { UAState } from "node-opcua-nodeset-ua/dist/ua_state";
4
+ import type { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition";
5
5
  /**
6
6
  * | | |
7
7
  * |----------------|------------------------------------------------------------|
@@ -1,7 +1,7 @@
1
- import { UAProperty } from "node-opcua-address-space-base";
2
- import { DataType } from "node-opcua-variant";
3
- import { LocalizedText } from "node-opcua-data-model";
4
- import { UABaseDataVariable, UABaseDataVariable_Base } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
1
+ import type { UAProperty } from "node-opcua-address-space-base";
2
+ import type { LocalizedText } from "node-opcua-data-model";
3
+ import type { UABaseDataVariable, UABaseDataVariable_Base } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
4
+ import type { DataType } from "node-opcua-variant";
5
5
  /**
6
6
  * Hold the descriptions of a mathematical process
7
7
  * and associated information to convert scaled data
@@ -1,4 +1,4 @@
1
- import { UAAnalyserDevice, UAAnalyserDevice_Base } from "./ua_analyser_device";
1
+ import type { UAAnalyserDevice, UAAnalyserDevice_Base } from "./ua_analyser_device";
2
2
  /**
3
3
  * | | |
4
4
  * |----------------|------------------------------------------------------------|
@@ -1,4 +1,4 @@
1
- import { UAStream, UAStream_Base } from "./ua_stream";
1
+ import type { UAStream, UAStream_Base } from "./ua_stream";
2
2
  /**
3
3
  * | | |
4
4
  * |----------------|------------------------------------------------------------|
@@ -1,4 +1,4 @@
1
- import { UAAccessory, UAAccessory_Base } from "./ua_accessory";
1
+ import type { UAAccessory, UAAccessory_Base } from "./ua_accessory";
2
2
  /**
3
3
  * | | |
4
4
  * |----------------|------------------------------------------------------------|
@@ -1,5 +1,5 @@
1
- import { DataType } from "node-opcua-variant";
2
- import { UADataItem, UADataItem_Base } from "node-opcua-nodeset-ua/dist/ua_data_item";
1
+ import type { UADataItem, UADataItem_Base } from "node-opcua-nodeset-ua/dist/ua_data_item";
2
+ import type { DataType } from "node-opcua-variant";
3
3
  /**
4
4
  * Expose key results of an analyser and the
5
5
  * associated values that qualified it
@@ -1,4 +1,4 @@
1
- import { UAAccessory, UAAccessory_Base } from "./ua_accessory";
1
+ import type { UAAccessory, UAAccessory_Base } from "./ua_accessory";
2
2
  /**
3
3
  * | | |
4
4
  * |----------------|------------------------------------------------------------|
@@ -1,4 +1,4 @@
1
- import { UAAnalyserDevice, UAAnalyserDevice_Base } from "./ua_analyser_device";
1
+ import type { UAAnalyserDevice, UAAnalyserDevice_Base } from "./ua_analyser_device";
2
2
  /**
3
3
  * | | |
4
4
  * |----------------|------------------------------------------------------------|
@@ -1,4 +1,4 @@
1
- import { UAStream, UAStream_Base } from "./ua_stream";
1
+ import type { UAStream, UAStream_Base } from "./ua_stream";
2
2
  /**
3
3
  * | | |
4
4
  * |----------------|------------------------------------------------------------|
@@ -1,4 +1,4 @@
1
- import { UAStream, UAStream_Base } from "./ua_stream";
1
+ import type { UAStream, UAStream_Base } from "./ua_stream";
2
2
  /**
3
3
  * | | |
4
4
  * |----------------|------------------------------------------------------------|
@@ -1,7 +1,7 @@
1
- import { UAProperty } from "node-opcua-address-space-base";
2
- import { DataType } from "node-opcua-variant";
3
- import { Int32 } from "node-opcua-basic-types";
4
- import { UAChemometricModel, UAChemometricModel_Base } from "./ua_chemometric_model";
1
+ import type { UAProperty } from "node-opcua-address-space-base";
2
+ import type { Int32 } from "node-opcua-basic-types";
3
+ import type { DataType } from "node-opcua-variant";
4
+ import type { UAChemometricModel, UAChemometricModel_Base } from "./ua_chemometric_model";
5
5
  /**
6
6
  * Hold the descriptions of a mathematical process
7
7
  * and associated information to convert scaled data
@@ -1,9 +1,9 @@
1
- import { UAProperty } from "node-opcua-address-space-base";
2
- import { DataType } from "node-opcua-variant";
3
- import { UAString } from "node-opcua-basic-types";
4
- import { UABaseDataVariable, UABaseDataVariable_Base } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
5
- import { DTRange } from "node-opcua-nodeset-ua/dist/dt_range";
6
- import { EnumAlarmState } from "./enum_alarm_state";
1
+ import type { UAProperty } from "node-opcua-address-space-base";
2
+ import type { UAString } from "node-opcua-basic-types";
3
+ import type { DTRange } from "node-opcua-nodeset-ua/dist/dt_range";
4
+ import type { UABaseDataVariable, UABaseDataVariable_Base } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
5
+ import type { DataType } from "node-opcua-variant";
6
+ import type { EnumAlarmState } from "./enum_alarm_state";
7
7
  /**
8
8
  * Hold the descriptions of a mathematical process
9
9
  * and associated information to convert scaled data
@@ -1,4 +1,4 @@
1
- import { UAAnalyserDevice, UAAnalyserDevice_Base } from "./ua_analyser_device";
1
+ import type { UAAnalyserDevice, UAAnalyserDevice_Base } from "./ua_analyser_device";
2
2
  /**
3
3
  * | | |
4
4
  * |----------------|------------------------------------------------------------|
@@ -1,4 +1,4 @@
1
- import { UAAnalyserDevice, UAAnalyserDevice_Base } from "./ua_analyser_device";
1
+ import type { UAAnalyserDevice, UAAnalyserDevice_Base } from "./ua_analyser_device";
2
2
  /**
3
3
  * | | |
4
4
  * |----------------|------------------------------------------------------------|
@@ -1,7 +1,7 @@
1
- import { DataType } from "node-opcua-variant";
2
- import { UAYArrayItem } from "node-opcua-nodeset-ua/dist/ua_y_array_item";
3
- import { UADataItem } from "node-opcua-nodeset-ua/dist/ua_data_item";
4
- import { UAStream_parameterSet, UAStream_acquisitionData, UAStream, UAStream_Base } from "./ua_stream";
1
+ import type { UADataItem } from "node-opcua-nodeset-ua/dist/ua_data_item";
2
+ import type { UAYArrayItem } from "node-opcua-nodeset-ua/dist/ua_y_array_item";
3
+ import type { DataType } from "node-opcua-variant";
4
+ import type { UAStream, UAStream_acquisitionData, UAStream_Base, UAStream_parameterSet } from "./ua_stream";
5
5
  export interface UAParticleSizeMonitorDeviceStream_parameterSet extends UAStream_parameterSet {
6
6
  background?: UAYArrayItem<number, DataType.Float>;
7
7
  sizeDistribution: UAYArrayItem<number, DataType.Float>;
@@ -1,5 +1,5 @@
1
- import { DataType } from "node-opcua-variant";
2
- import { UADataItem, UADataItem_Base } from "node-opcua-nodeset-ua/dist/ua_data_item";
1
+ import type { UADataItem, UADataItem_Base } from "node-opcua-nodeset-ua/dist/ua_data_item";
2
+ import type { DataType } from "node-opcua-variant";
3
3
  /**
4
4
  * Provides a stable address space view from the
5
5
  * user point of view even if the ADI server address
@@ -1,4 +1,4 @@
1
- import { UAAccessory, UAAccessory_Base } from "./ua_accessory";
1
+ import type { UAAccessory, UAAccessory_Base } from "./ua_accessory";
2
2
  /**
3
3
  * | | |
4
4
  * |----------------|------------------------------------------------------------|
@@ -1,4 +1,4 @@
1
- import { UAAccessory, UAAccessory_Base } from "./ua_accessory";
1
+ import type { UAAccessory, UAAccessory_Base } from "./ua_accessory";
2
2
  /**
3
3
  * | | |
4
4
  * |----------------|------------------------------------------------------------|
@@ -1,8 +1,8 @@
1
- import { DataType } from "node-opcua-variant";
2
- import { DTRange } from "node-opcua-nodeset-ua/dist/dt_range";
3
- import { UADataItem } from "node-opcua-nodeset-ua/dist/ua_data_item";
4
- import { UAFunctionalGroup } from "node-opcua-nodeset-di/dist/ua_functional_group";
5
- import { UAAnalyserDevice_parameterSet, UAAnalyserDevice, UAAnalyserDevice_Base } from "./ua_analyser_device";
1
+ import type { UAFunctionalGroup } from "node-opcua-nodeset-di/dist/ua_functional_group";
2
+ import type { DTRange } from "node-opcua-nodeset-ua/dist/dt_range";
3
+ import type { UADataItem } from "node-opcua-nodeset-ua/dist/ua_data_item";
4
+ import type { DataType } from "node-opcua-variant";
5
+ import type { UAAnalyserDevice, UAAnalyserDevice_Base, UAAnalyserDevice_parameterSet } from "./ua_analyser_device";
6
6
  export interface UASpectrometerDevice_parameterSet extends UAAnalyserDevice_parameterSet {
7
7
  spectralRange?: UADataItem<DTRange[], DataType.ExtensionObject>;
8
8
  }
@@ -1,10 +1,10 @@
1
- import { UAObject } from "node-opcua-address-space-base";
2
- import { DataType } from "node-opcua-variant";
3
- import { Int32 } from "node-opcua-basic-types";
4
- import { DTRange } from "node-opcua-nodeset-ua/dist/dt_range";
5
- import { UAYArrayItem } from "node-opcua-nodeset-ua/dist/ua_y_array_item";
6
- import { UADataItem } from "node-opcua-nodeset-ua/dist/ua_data_item";
7
- import { UAStream_parameterSet, UAStream_configuration, UAStream_acquisitionSettings, UAStream_acquisitionStatus, UAStream_acquisitionData, UAStream, UAStream_Base } from "./ua_stream";
1
+ import type { UAObject } from "node-opcua-address-space-base";
2
+ import type { Int32 } from "node-opcua-basic-types";
3
+ import type { DTRange } from "node-opcua-nodeset-ua/dist/dt_range";
4
+ import type { UADataItem } from "node-opcua-nodeset-ua/dist/ua_data_item";
5
+ import type { UAYArrayItem } from "node-opcua-nodeset-ua/dist/ua_y_array_item";
6
+ import type { DataType } from "node-opcua-variant";
7
+ import type { UAStream, UAStream_acquisitionData, UAStream_acquisitionSettings, UAStream_acquisitionStatus, UAStream_Base, UAStream_configuration, UAStream_parameterSet } from "./ua_stream";
8
8
  export interface UASpectrometerDeviceStream_parameterSet extends UAStream_parameterSet {
9
9
  activeBackground: UAYArrayItem<number, DataType.Float>;
10
10
  activeBackground1?: UAYArrayItem<number, DataType.Float>;
@@ -1,14 +1,14 @@
1
- import { UAObject } from "node-opcua-address-space-base";
2
- import { DataType } from "node-opcua-variant";
3
- import { UInt32, UAString } from "node-opcua-basic-types";
4
- import { UADataItem } from "node-opcua-nodeset-ua/dist/ua_data_item";
5
- import { UAAnalogItem } from "node-opcua-nodeset-ua/dist/ua_analog_item";
6
- import { UAMultiStateDiscrete } from "node-opcua-nodeset-ua/dist/ua_multi_state_discrete";
7
- import { EnumDeviceHealth } from "node-opcua-nodeset-di/dist/enum_device_health";
8
- import { UAFunctionalGroup } from "node-opcua-nodeset-di/dist/ua_functional_group";
9
- import { UATopologyElement, UATopologyElement_Base } from "node-opcua-nodeset-di/dist/ua_topology_element";
10
- import { EnumExecutionCycle } from "./enum_execution_cycle";
11
- import { EnumAcquisitionResultStatus } from "./enum_acquisition_result_status";
1
+ import type { UAObject } from "node-opcua-address-space-base";
2
+ import type { UAString, UInt32 } from "node-opcua-basic-types";
3
+ import type { EnumDeviceHealth } from "node-opcua-nodeset-di/dist/enum_device_health";
4
+ import type { UAFunctionalGroup } from "node-opcua-nodeset-di/dist/ua_functional_group";
5
+ import type { UATopologyElement, UATopologyElement_Base } from "node-opcua-nodeset-di/dist/ua_topology_element";
6
+ import type { UAAnalogItem } from "node-opcua-nodeset-ua/dist/ua_analog_item";
7
+ import type { UADataItem } from "node-opcua-nodeset-ua/dist/ua_data_item";
8
+ import type { UAMultiStateDiscrete } from "node-opcua-nodeset-ua/dist/ua_multi_state_discrete";
9
+ import type { DataType } from "node-opcua-variant";
10
+ import type { EnumAcquisitionResultStatus } from "./enum_acquisition_result_status";
11
+ import type { EnumExecutionCycle } from "./enum_execution_cycle";
12
12
  export interface UAStream_parameterSet extends UAObject {
13
13
  /**
14
14
  * isEnabled
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-opcua-nodeset-adi",
3
- "version": "2.169.0",
3
+ "version": "2.172.0",
4
4
  "description": "pure nodejs OPCUA SDK - module node-opcua-nodeset-adi",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -11,14 +11,14 @@
11
11
  "author": "Etienne Rossignon <etienne.rossignon@sterfive.com>",
12
12
  "license": "MIT",
13
13
  "dependencies": {
14
- "node-opcua-address-space-base": "2.169.0",
15
- "node-opcua-basic-types": "2.169.0",
16
- "node-opcua-data-access": "2.169.0",
17
- "node-opcua-data-model": "2.169.0",
18
- "node-opcua-nodeid": "2.169.0",
19
- "node-opcua-nodeset-di": "2.169.0",
20
- "node-opcua-nodeset-ua": "2.169.0",
21
- "node-opcua-variant": "2.169.0"
14
+ "node-opcua-address-space-base": "2.172.0",
15
+ "node-opcua-basic-types": "2.172.0",
16
+ "node-opcua-data-access": "2.172.0",
17
+ "node-opcua-data-model": "2.172.0",
18
+ "node-opcua-nodeid": "2.172.0",
19
+ "node-opcua-nodeset-di": "2.172.0",
20
+ "node-opcua-nodeset-ua": "2.172.0",
21
+ "node-opcua-variant": "2.172.0"
22
22
  },
23
23
  "files": [
24
24
  "dist",
@@ -37,5 +37,5 @@
37
37
  "internet of things"
38
38
  ],
39
39
  "homepage": "http://node-opcua.github.io/",
40
- "gitHead": "82d570d3e95bea689cbbe30096279885c5282245"
40
+ "gitHead": "dfe9993a93b5c3897825e898b5f07b25952c7f45"
41
41
  }
package/source/index.ts CHANGED
@@ -35,4 +35,4 @@ export * from "./ua_smart_sampling_system";
35
35
  export * from "./ua_source";
36
36
  export * from "./ua_spectrometer_device";
37
37
  export * from "./ua_spectrometer_device_stream";
38
- export * from "./ua_stream";
38
+ export * from "./ua_stream";
@@ -1,8 +1,10 @@
1
+ import type { UAProperty } from "node-opcua-address-space-base";
2
+ import type { UAFunctionalGroup } from "node-opcua-nodeset-di/dist/ua_functional_group";
3
+ import type { UATopologyElement, UATopologyElement_Base } from "node-opcua-nodeset-di/dist/ua_topology_element";
4
+ import type { DataType } from "node-opcua-variant";
5
+
1
6
  // ----- this file has been automatically generated - do not edit
2
- import { UAProperty } from "node-opcua-address-space-base"
3
- import { DataType } from "node-opcua-variant"
4
- import { UATopologyElement, UATopologyElement_Base } from "node-opcua-nodeset-di/dist/ua_topology_element"
5
- import { UAFunctionalGroup } from "node-opcua-nodeset-di/dist/ua_functional_group"
7
+
6
8
  /**
7
9
  * | | |
8
10
  * |----------------|------------------------------------------------------------|
@@ -27,5 +29,4 @@ export interface UAAccessory_Base extends UATopologyElement_Base {
27
29
  */
28
30
  isReady: UAProperty<boolean, DataType.Boolean>;
29
31
  }
30
- export interface UAAccessory extends UATopologyElement, UAAccessory_Base {
31
- }
32
+ export interface UAAccessory extends UATopologyElement, UAAccessory_Base {}
@@ -1,8 +1,11 @@
1
+ import type { UAProperty } from "node-opcua-address-space-base";
2
+ import type { UAConfigurableObject, UAConfigurableObject_Base } from "node-opcua-nodeset-di/dist/ua_configurable_object";
3
+ import type { DataType } from "node-opcua-variant";
4
+
5
+ import type { UAAccessorySlotStateMachine } from "./ua_accessory_slot_state_machine";
6
+
1
7
  // ----- this file has been automatically generated - do not edit
2
- import { UAProperty } from "node-opcua-address-space-base"
3
- import { DataType } from "node-opcua-variant"
4
- import { UAConfigurableObject, UAConfigurableObject_Base } from "node-opcua-nodeset-di/dist/ua_configurable_object"
5
- import { UAAccessorySlotStateMachine } from "./ua_accessory_slot_state_machine"
8
+
6
9
  /**
7
10
  * Organizes zero or more Accessory objects
8
11
  * identified by "AccessoryIdentifier" which
@@ -32,5 +35,4 @@ export interface UAAccessorySlot_Base extends UAConfigurableObject_Base {
32
35
  accessorySlotStateMachine: UAAccessorySlotStateMachine;
33
36
  // PlaceHolder for $AccessoryIdentifier$
34
37
  }
35
- export interface UAAccessorySlot extends UAConfigurableObject, UAAccessorySlot_Base {
36
- }
38
+ export interface UAAccessorySlot extends UAConfigurableObject, UAAccessorySlot_Base {}
@@ -1,8 +1,10 @@
1
+ import type { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/dist/ua_finite_state_machine";
2
+ import type { UAInitialState } from "node-opcua-nodeset-ua/dist/ua_initial_state";
3
+ import type { UAState } from "node-opcua-nodeset-ua/dist/ua_state";
4
+ import type { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition";
5
+
1
6
  // ----- this file has been automatically generated - do not edit
2
- import { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/dist/ua_finite_state_machine"
3
- import { UAInitialState } from "node-opcua-nodeset-ua/dist/ua_initial_state"
4
- import { UAState } from "node-opcua-nodeset-ua/dist/ua_state"
5
- import { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition"
7
+
6
8
  /**
7
9
  * Describes the behaviour of an AccessorySlot when
8
10
  * a physical accessory is inserted or removed.
@@ -64,5 +66,4 @@ export interface UAAccessorySlotStateMachine_Base extends UAFiniteStateMachine_B
64
66
  installedToShutdownTransition: UATransition;
65
67
  removingToShutdownTransition: UATransition;
66
68
  }
67
- export interface UAAccessorySlotStateMachine extends UAFiniteStateMachine, UAAccessorySlotStateMachine_Base {
68
- }
69
+ export interface UAAccessorySlotStateMachine extends UAFiniteStateMachine, UAAccessorySlotStateMachine_Base {}
@@ -1,5 +1,6 @@
1
+ import type { UAAnalyserDevice, UAAnalyserDevice_Base } from "./ua_analyser_device";
2
+
1
3
  // ----- this file has been automatically generated - do not edit
2
- import { UAAnalyserDevice, UAAnalyserDevice_Base } from "./ua_analyser_device"
3
4
  /**
4
5
  * | | |
5
6
  * |----------------|------------------------------------------------------------|
@@ -9,5 +10,4 @@ import { UAAnalyserDevice, UAAnalyserDevice_Base } from "./ua_analyser_device"
9
10
  * |isAbstract |false |
10
11
  */
11
12
  export type UAAcousticSpectrometerDevice_Base = UAAnalyserDevice_Base;
12
- export interface UAAcousticSpectrometerDevice extends UAAnalyserDevice, UAAcousticSpectrometerDevice_Base {
13
- }
13
+ export interface UAAcousticSpectrometerDevice extends UAAnalyserDevice, UAAcousticSpectrometerDevice_Base {}
@@ -1,5 +1,6 @@
1
+ import type { UAStream, UAStream_Base } from "./ua_stream";
2
+
1
3
  // ----- this file has been automatically generated - do not edit
2
- import { UAStream, UAStream_Base } from "./ua_stream"
3
4
  /**
4
5
  * | | |
5
6
  * |----------------|------------------------------------------------------------|
@@ -9,5 +10,4 @@ import { UAStream, UAStream_Base } from "./ua_stream"
9
10
  * |isAbstract |false |
10
11
  */
11
12
  export type UAAcousticSpectrometerDeviceStream_Base = UAStream_Base;
12
- export interface UAAcousticSpectrometerDeviceStream extends UAStream, UAAcousticSpectrometerDeviceStream_Base {
13
- }
13
+ export interface UAAcousticSpectrometerDeviceStream extends UAStream, UAAcousticSpectrometerDeviceStream_Base {}