node-opcua-nodeset-adi 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 (65) hide show
  1. package/dist/ua_accessory.d.ts +2 -2
  2. package/dist/ua_accessory_slot.d.ts +2 -2
  3. package/dist/ua_acoustic_spectrometer_device.d.ts +1 -2
  4. package/dist/ua_acoustic_spectrometer_device_stream.d.ts +1 -2
  5. package/dist/ua_analyser_channel.d.ts +7 -7
  6. package/dist/ua_analyser_channel_local_state.d.ts +1 -2
  7. package/dist/ua_analyser_channel_maintenance_state.d.ts +1 -2
  8. package/dist/ua_analyser_channel_operating_execute_state.d.ts +1 -2
  9. package/dist/ua_analyser_channel_operating_mode_execute_sub_state_machine.d.ts +20 -20
  10. package/dist/ua_analyser_channel_operating_mode_sub_state_machine.d.ts +54 -54
  11. package/dist/ua_analyser_channel_operating_state.d.ts +1 -2
  12. package/dist/ua_analyser_device.d.ts +5 -5
  13. package/dist/ua_chemometric_model.d.ts +5 -5
  14. package/dist/ua_chromatograph_device.d.ts +1 -2
  15. package/dist/ua_chromatograph_device_stream.d.ts +1 -2
  16. package/dist/ua_detector.d.ts +1 -2
  17. package/dist/ua_engineering_value.d.ts +2 -3
  18. package/dist/ua_gc_oven.d.ts +1 -2
  19. package/dist/ua_mass_spectrometer_device.d.ts +1 -2
  20. package/dist/ua_mass_spectrometer_device_stream.d.ts +1 -2
  21. package/dist/ua_mnr_device_stream.d.ts +1 -2
  22. package/dist/ua_mva_model.d.ts +1 -1
  23. package/dist/ua_mva_output_parameter.d.ts +5 -5
  24. package/dist/ua_nmr_device.d.ts +1 -2
  25. package/dist/ua_particle_size_monitor_device.d.ts +1 -2
  26. package/dist/ua_particle_size_monitor_device_stream.d.ts +6 -6
  27. package/dist/ua_process_variable.d.ts +2 -3
  28. package/dist/ua_smart_sampling_system.d.ts +1 -2
  29. package/dist/ua_source.d.ts +1 -2
  30. package/dist/ua_spectrometer_device.d.ts +1 -1
  31. package/dist/ua_spectrometer_device_stream.d.ts +22 -22
  32. package/dist/ua_stream.d.ts +50 -50
  33. package/package.json +10 -10
  34. package/source/ua_accessory.ts +2 -2
  35. package/source/ua_accessory_slot.ts +3 -2
  36. package/source/ua_acoustic_spectrometer_device.ts +1 -2
  37. package/source/ua_acoustic_spectrometer_device_stream.ts +1 -2
  38. package/source/ua_analyser_channel.ts +10 -7
  39. package/source/ua_analyser_channel_local_state.ts +1 -2
  40. package/source/ua_analyser_channel_maintenance_state.ts +1 -2
  41. package/source/ua_analyser_channel_operating_execute_state.ts +1 -2
  42. package/source/ua_analyser_channel_operating_mode_execute_sub_state_machine.ts +20 -20
  43. package/source/ua_analyser_channel_operating_mode_sub_state_machine.ts +54 -54
  44. package/source/ua_analyser_channel_operating_state.ts +1 -2
  45. package/source/ua_analyser_device.ts +7 -5
  46. package/source/ua_chemometric_model.ts +7 -5
  47. package/source/ua_chromatograph_device.ts +1 -2
  48. package/source/ua_chromatograph_device_stream.ts +1 -2
  49. package/source/ua_detector.ts +1 -2
  50. package/source/ua_engineering_value.ts +2 -3
  51. package/source/ua_gc_oven.ts +1 -2
  52. package/source/ua_mass_spectrometer_device.ts +1 -2
  53. package/source/ua_mass_spectrometer_device_stream.ts +1 -2
  54. package/source/ua_mnr_device_stream.ts +1 -2
  55. package/source/ua_mva_model.ts +4 -3
  56. package/source/ua_mva_output_parameter.ts +7 -6
  57. package/source/ua_nmr_device.ts +1 -2
  58. package/source/ua_particle_size_monitor_device.ts +1 -2
  59. package/source/ua_particle_size_monitor_device_stream.ts +6 -6
  60. package/source/ua_process_variable.ts +2 -3
  61. package/source/ua_smart_sampling_system.ts +1 -2
  62. package/source/ua_source.ts +1 -2
  63. package/source/ua_spectrometer_device.ts +1 -1
  64. package/source/ua_spectrometer_device_stream.ts +22 -22
  65. package/source/ua_stream.ts +51 -50
@@ -19,12 +19,12 @@ export interface UAAccessory_Base extends UATopologyElement_Base {
19
19
  * True if this accessory can be inserted in the
20
20
  * accessory slot while it is powered
21
21
  */
22
- isHotSwappable: UAProperty<boolean, /*z*/ DataType.Boolean>;
22
+ isHotSwappable: UAProperty<boolean, DataType.Boolean>;
23
23
  /**
24
24
  * isReady
25
25
  * True if this accessory is ready for use
26
26
  */
27
- isReady: UAProperty<boolean, /*z*/ DataType.Boolean>;
27
+ isReady: UAProperty<boolean, DataType.Boolean>;
28
28
  }
29
29
  export interface UAAccessory extends UATopologyElement, UAAccessory_Base {
30
30
  }
@@ -21,13 +21,13 @@ export interface UAAccessorySlot_Base extends UAConfigurableObject_Base {
21
21
  * True if an accessory can be inserted in the
22
22
  * accessory slot while it is powered
23
23
  */
24
- isHotSwappable: UAProperty<boolean, /*z*/ DataType.Boolean>;
24
+ isHotSwappable: UAProperty<boolean, DataType.Boolean>;
25
25
  /**
26
26
  * isEnabled
27
27
  * True if this accessory slot is capable of
28
28
  * accepting an accessory in it
29
29
  */
30
- isEnabled: UAProperty<boolean, /*z*/ DataType.Boolean>;
30
+ isEnabled: UAProperty<boolean, DataType.Boolean>;
31
31
  accessorySlotStateMachine: UAAccessorySlotStateMachine;
32
32
  }
33
33
  export interface UAAccessorySlot extends UAConfigurableObject, UAAccessorySlot_Base {
@@ -7,7 +7,6 @@ import { UAAnalyserDevice, UAAnalyserDevice_Base } from "./ua_analyser_device";
7
7
  * |typedDefinition |2:AcousticSpectrometerDeviceType ns=2;i=1015 |
8
8
  * |isAbstract |false |
9
9
  */
10
- export interface UAAcousticSpectrometerDevice_Base extends UAAnalyserDevice_Base {
11
- }
10
+ export declare type UAAcousticSpectrometerDevice_Base = UAAnalyserDevice_Base;
12
11
  export interface UAAcousticSpectrometerDevice extends UAAnalyserDevice, UAAcousticSpectrometerDevice_Base {
13
12
  }
@@ -7,7 +7,6 @@ import { UAStream, UAStream_Base } from "./ua_stream";
7
7
  * |typedDefinition |2:AcousticSpectrometerDeviceStreamType ns=2;i=1033|
8
8
  * |isAbstract |false |
9
9
  */
10
- export interface UAAcousticSpectrometerDeviceStream_Base extends UAStream_Base {
11
- }
10
+ export declare type UAAcousticSpectrometerDeviceStream_Base = UAStream_Base;
12
11
  export interface UAAcousticSpectrometerDeviceStream extends UAStream, UAAcousticSpectrometerDeviceStream_Base {
13
12
  }
@@ -11,23 +11,23 @@ export interface UAAnalyserChannel_parameterSet extends UAObject {
11
11
  * channelId
12
12
  * Channel Id defined by user
13
13
  */
14
- channelId?: UADataItem<UAString, /*z*/ DataType.String>;
14
+ channelId?: UADataItem<UAString, DataType.String>;
15
15
  /**
16
16
  * isEnabled
17
17
  * True if the channel is enabled and accepting
18
18
  * commands
19
19
  */
20
- isEnabled: UADataItem<boolean, /*z*/ DataType.Boolean>;
20
+ isEnabled: UADataItem<boolean, DataType.Boolean>;
21
21
  /**
22
22
  * diagnosticStatus
23
23
  * AnalyserChannel health status
24
24
  */
25
- diagnosticStatus: UADataItem<EnumDeviceHealth, /*z*/ DataType.Int32>;
25
+ diagnosticStatus: UADataItem<EnumDeviceHealth, DataType.Int32>;
26
26
  /**
27
27
  * activeStream
28
28
  * Active stream for this AnalyserChannel
29
29
  */
30
- activeStream: UADataItem<UAString, /*z*/ DataType.String>;
30
+ activeStream: UADataItem<UAString, DataType.String>;
31
31
  }
32
32
  export interface UAAnalyserChannel_methodSet extends UAObject {
33
33
  gotoOperating: UAMethod;
@@ -49,19 +49,19 @@ export interface UAAnalyserChannel_configuration extends UAFunctionalGroup {
49
49
  * True if the channel is enabled and accepting
50
50
  * commands
51
51
  */
52
- isEnabled: UADataItem<boolean, /*z*/ DataType.Boolean>;
52
+ isEnabled: UADataItem<boolean, DataType.Boolean>;
53
53
  }
54
54
  export interface UAAnalyserChannel_status extends UAFunctionalGroup {
55
55
  /**
56
56
  * diagnosticStatus
57
57
  * AnalyserChannel health status
58
58
  */
59
- diagnosticStatus: UADataItem<EnumDeviceHealth, /*z*/ DataType.Int32>;
59
+ diagnosticStatus: UADataItem<EnumDeviceHealth, DataType.Int32>;
60
60
  /**
61
61
  * activeStream
62
62
  * Active stream for this AnalyserChannel
63
63
  */
64
- activeStream: UADataItem<UAString, /*z*/ DataType.String>;
64
+ activeStream: UADataItem<UAString, DataType.String>;
65
65
  }
66
66
  /**
67
67
  * | | |
@@ -7,7 +7,6 @@ import { UAState, UAState_Base } from "node-opcua-nodeset-ua/source/ua_state";
7
7
  * |typedDefinition |2:AnalyserChannelLocalStateType ns=2;i=1005 |
8
8
  * |isAbstract |false |
9
9
  */
10
- export interface UAAnalyserChannelLocalState_Base extends UAState_Base {
11
- }
10
+ export declare type UAAnalyserChannelLocalState_Base = UAState_Base;
12
11
  export interface UAAnalyserChannelLocalState extends UAState, UAAnalyserChannelLocalState_Base {
13
12
  }
@@ -7,7 +7,6 @@ import { UAState, UAState_Base } from "node-opcua-nodeset-ua/source/ua_state";
7
7
  * |typedDefinition |2:AnalyserChannelMaintenanceStateType ns=2;i=1006 |
8
8
  * |isAbstract |false |
9
9
  */
10
- export interface UAAnalyserChannelMaintenanceState_Base extends UAState_Base {
11
- }
10
+ export declare type UAAnalyserChannelMaintenanceState_Base = UAState_Base;
12
11
  export interface UAAnalyserChannelMaintenanceState extends UAState, UAAnalyserChannelMaintenanceState_Base {
13
12
  }
@@ -7,7 +7,6 @@ import { UAState, UAState_Base } from "node-opcua-nodeset-ua/source/ua_state";
7
7
  * |typedDefinition |2:AnalyserChannelOperatingExecuteStateType ns=2;i=8964|
8
8
  * |isAbstract |false |
9
9
  */
10
- export interface UAAnalyserChannelOperatingExecuteState_Base extends UAState_Base {
11
- }
10
+ export declare type UAAnalyserChannelOperatingExecuteState_Base = UAState_Base;
12
11
  export interface UAAnalyserChannelOperatingExecuteState extends UAState, UAAnalyserChannelOperatingExecuteState_Base {
13
12
  }
@@ -6,64 +6,64 @@ import { UAState } from "node-opcua-nodeset-ua/source/ua_state";
6
6
  import { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/source/ua_finite_state_machine";
7
7
  import { UATransition } from "node-opcua-nodeset-ua/source/ua_transition";
8
8
  export interface UAAnalyserChannel_OperatingModeExecuteSubStateMachine_selectExecutionCycle extends Omit<UAInitialState, "stateNumber"> {
9
- stateNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
9
+ stateNumber: UAProperty<UInt32, DataType.UInt32>;
10
10
  }
11
11
  export interface UAAnalyserChannel_OperatingModeExecuteSubStateMachine_waitForCalibrationTrigger extends Omit<UAState, "stateNumber"> {
12
- stateNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
12
+ stateNumber: UAProperty<UInt32, DataType.UInt32>;
13
13
  }
14
14
  export interface UAAnalyserChannel_OperatingModeExecuteSubStateMachine_extractCalibrationSample extends Omit<UAState, "stateNumber"> {
15
- stateNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
15
+ stateNumber: UAProperty<UInt32, DataType.UInt32>;
16
16
  }
17
17
  export interface UAAnalyserChannel_OperatingModeExecuteSubStateMachine_prepareCalibrationSample extends Omit<UAState, "stateNumber"> {
18
- stateNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
18
+ stateNumber: UAProperty<UInt32, DataType.UInt32>;
19
19
  }
20
20
  export interface UAAnalyserChannel_OperatingModeExecuteSubStateMachine_analyseCalibrationSample extends Omit<UAState, "stateNumber"> {
21
- stateNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
21
+ stateNumber: UAProperty<UInt32, DataType.UInt32>;
22
22
  }
23
23
  export interface UAAnalyserChannel_OperatingModeExecuteSubStateMachine_waitForValidationTrigger extends Omit<UAState, "stateNumber"> {
24
- stateNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
24
+ stateNumber: UAProperty<UInt32, DataType.UInt32>;
25
25
  }
26
26
  export interface UAAnalyserChannel_OperatingModeExecuteSubStateMachine_extractValidationSample extends Omit<UAState, "stateNumber"> {
27
- stateNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
27
+ stateNumber: UAProperty<UInt32, DataType.UInt32>;
28
28
  }
29
29
  export interface UAAnalyserChannel_OperatingModeExecuteSubStateMachine_prepareValidationSample extends Omit<UAState, "stateNumber"> {
30
- stateNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
30
+ stateNumber: UAProperty<UInt32, DataType.UInt32>;
31
31
  }
32
32
  export interface UAAnalyserChannel_OperatingModeExecuteSubStateMachine_analyseValidationSample extends Omit<UAState, "stateNumber"> {
33
- stateNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
33
+ stateNumber: UAProperty<UInt32, DataType.UInt32>;
34
34
  }
35
35
  export interface UAAnalyserChannel_OperatingModeExecuteSubStateMachine_waitForSampleTrigger extends Omit<UAState, "stateNumber"> {
36
- stateNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
36
+ stateNumber: UAProperty<UInt32, DataType.UInt32>;
37
37
  }
38
38
  export interface UAAnalyserChannel_OperatingModeExecuteSubStateMachine_extractSample extends Omit<UAState, "stateNumber"> {
39
- stateNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
39
+ stateNumber: UAProperty<UInt32, DataType.UInt32>;
40
40
  }
41
41
  export interface UAAnalyserChannel_OperatingModeExecuteSubStateMachine_prepareSample extends Omit<UAState, "stateNumber"> {
42
- stateNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
42
+ stateNumber: UAProperty<UInt32, DataType.UInt32>;
43
43
  }
44
44
  export interface UAAnalyserChannel_OperatingModeExecuteSubStateMachine_analyseSample extends Omit<UAState, "stateNumber"> {
45
- stateNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
45
+ stateNumber: UAProperty<UInt32, DataType.UInt32>;
46
46
  }
47
47
  export interface UAAnalyserChannel_OperatingModeExecuteSubStateMachine_waitForDiagnosticTrigger extends Omit<UAState, "stateNumber"> {
48
- stateNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
48
+ stateNumber: UAProperty<UInt32, DataType.UInt32>;
49
49
  }
50
50
  export interface UAAnalyserChannel_OperatingModeExecuteSubStateMachine_diagnostic extends Omit<UAState, "stateNumber"> {
51
- stateNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
51
+ stateNumber: UAProperty<UInt32, DataType.UInt32>;
52
52
  }
53
53
  export interface UAAnalyserChannel_OperatingModeExecuteSubStateMachine_waitForCleaningTrigger extends Omit<UAState, "stateNumber"> {
54
- stateNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
54
+ stateNumber: UAProperty<UInt32, DataType.UInt32>;
55
55
  }
56
56
  export interface UAAnalyserChannel_OperatingModeExecuteSubStateMachine_cleaning extends Omit<UAState, "stateNumber"> {
57
- stateNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
57
+ stateNumber: UAProperty<UInt32, DataType.UInt32>;
58
58
  }
59
59
  export interface UAAnalyserChannel_OperatingModeExecuteSubStateMachine_publishResults extends Omit<UAState, "stateNumber"> {
60
- stateNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
60
+ stateNumber: UAProperty<UInt32, DataType.UInt32>;
61
61
  }
62
62
  export interface UAAnalyserChannel_OperatingModeExecuteSubStateMachine_ejectGrabSample extends Omit<UAState, "stateNumber"> {
63
- stateNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
63
+ stateNumber: UAProperty<UInt32, DataType.UInt32>;
64
64
  }
65
65
  export interface UAAnalyserChannel_OperatingModeExecuteSubStateMachine_cleanupSamplingSystem extends Omit<UAState, "stateNumber"> {
66
- stateNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
66
+ stateNumber: UAProperty<UInt32, DataType.UInt32>;
67
67
  }
68
68
  /**
69
69
  * | | |
@@ -8,166 +8,166 @@ import { UAState } from "node-opcua-nodeset-ua/source/ua_state";
8
8
  import { UAAnalyserChannel_OperatingModeExecuteSubStateMachine } from "./ua_analyser_channel_operating_mode_execute_sub_state_machine";
9
9
  import { UAAnalyserChannelOperatingExecuteState } from "./ua_analyser_channel_operating_execute_state";
10
10
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_stoppedToResettingTransition extends Omit<UATransition, "transitionNumber"> {
11
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
11
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
12
12
  }
13
13
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_resettingTransition extends Omit<UATransition, "transitionNumber"> {
14
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
14
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
15
15
  }
16
16
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_resettingToIdleTransition extends Omit<UATransition, "transitionNumber"> {
17
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
17
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
18
18
  }
19
19
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_idleToStartingTransition extends Omit<UATransition, "transitionNumber"> {
20
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
20
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
21
21
  }
22
22
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_startingTransition extends Omit<UATransition, "transitionNumber"> {
23
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
23
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
24
24
  }
25
25
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_startingToExecuteTransition extends Omit<UATransition, "transitionNumber"> {
26
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
26
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
27
27
  }
28
28
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_executeToCompletingTransition extends Omit<UATransition, "transitionNumber"> {
29
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
29
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
30
30
  }
31
31
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_completingTransition extends Omit<UATransition, "transitionNumber"> {
32
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
32
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
33
33
  }
34
34
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_completingToCompleteTransition extends Omit<UATransition, "transitionNumber"> {
35
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
35
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
36
36
  }
37
37
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_completeToStoppedTransition extends Omit<UATransition, "transitionNumber"> {
38
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
38
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
39
39
  }
40
40
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_executeToHoldingTransition extends Omit<UATransition, "transitionNumber"> {
41
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
41
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
42
42
  }
43
43
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_holdingTransition extends Omit<UATransition, "transitionNumber"> {
44
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
44
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
45
45
  }
46
46
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_holdingToHeldTransition extends Omit<UATransition, "transitionNumber"> {
47
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
47
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
48
48
  }
49
49
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_heldToUnholdingTransition extends Omit<UATransition, "transitionNumber"> {
50
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
50
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
51
51
  }
52
52
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_unholdingTransition extends Omit<UATransition, "transitionNumber"> {
53
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
53
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
54
54
  }
55
55
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_unholdingToHoldingTransition extends Omit<UATransition, "transitionNumber"> {
56
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
56
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
57
57
  }
58
58
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_unholdingToExecuteTransition extends Omit<UATransition, "transitionNumber"> {
59
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
59
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
60
60
  }
61
61
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_executeToSuspendingTransition extends Omit<UATransition, "transitionNumber"> {
62
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
62
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
63
63
  }
64
64
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_suspendingTransition extends Omit<UATransition, "transitionNumber"> {
65
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
65
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
66
66
  }
67
67
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_suspendingToSuspendedTransition extends Omit<UATransition, "transitionNumber"> {
68
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
68
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
69
69
  }
70
70
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_suspendedToUnsuspendingTransition extends Omit<UATransition, "transitionNumber"> {
71
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
71
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
72
72
  }
73
73
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_unsuspendingTransition extends Omit<UATransition, "transitionNumber"> {
74
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
74
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
75
75
  }
76
76
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_unsuspendingToSuspendingTransition extends Omit<UATransition, "transitionNumber"> {
77
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
77
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
78
78
  }
79
79
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_unsuspendingToExecuteTransition extends Omit<UATransition, "transitionNumber"> {
80
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
80
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
81
81
  }
82
82
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_stoppingToStoppedTransition extends Omit<UATransition, "transitionNumber"> {
83
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
83
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
84
84
  }
85
85
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_abortingToAbortedTransition extends Omit<UATransition, "transitionNumber"> {
86
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
86
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
87
87
  }
88
88
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_abortedToClearingTransition extends Omit<UATransition, "transitionNumber"> {
89
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
89
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
90
90
  }
91
91
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_clearingToStoppedTransition extends Omit<UATransition, "transitionNumber"> {
92
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
92
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
93
93
  }
94
94
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_resettingToStoppingTransition extends Omit<UATransition, "transitionNumber"> {
95
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
95
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
96
96
  }
97
97
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_idleToStoppingTransition extends Omit<UATransition, "transitionNumber"> {
98
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
98
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
99
99
  }
100
100
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_startingToStoppingTransition extends Omit<UATransition, "transitionNumber"> {
101
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
101
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
102
102
  }
103
103
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_executeToStoppingTransition extends Omit<UATransition, "transitionNumber"> {
104
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
104
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
105
105
  }
106
106
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_completingToStoppingTransition extends Omit<UATransition, "transitionNumber"> {
107
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
107
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
108
108
  }
109
109
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_completeToStoppingTransition extends Omit<UATransition, "transitionNumber"> {
110
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
110
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
111
111
  }
112
112
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_suspendingToStoppingTransition extends Omit<UATransition, "transitionNumber"> {
113
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
113
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
114
114
  }
115
115
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_suspendedToStoppingTransition extends Omit<UATransition, "transitionNumber"> {
116
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
116
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
117
117
  }
118
118
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_unsuspendingToStoppingTransition extends Omit<UATransition, "transitionNumber"> {
119
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
119
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
120
120
  }
121
121
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_holdingToStoppingTransition extends Omit<UATransition, "transitionNumber"> {
122
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
122
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
123
123
  }
124
124
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_heldToStoppingTransition extends Omit<UATransition, "transitionNumber"> {
125
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
125
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
126
126
  }
127
127
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_unholdingToStoppingTransition extends Omit<UATransition, "transitionNumber"> {
128
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
128
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
129
129
  }
130
130
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_stoppedToAbortingTransition extends Omit<UATransition, "transitionNumber"> {
131
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
131
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
132
132
  }
133
133
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_resettingToAbortingTransition extends Omit<UATransition, "transitionNumber"> {
134
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
134
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
135
135
  }
136
136
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_idleToAbortingTransition extends Omit<UATransition, "transitionNumber"> {
137
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
137
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
138
138
  }
139
139
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_startingToAbortingTransition extends Omit<UATransition, "transitionNumber"> {
140
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
140
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
141
141
  }
142
142
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_executeToAbortingTransition extends Omit<UATransition, "transitionNumber"> {
143
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
143
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
144
144
  }
145
145
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_completingToAbortingTransition extends Omit<UATransition, "transitionNumber"> {
146
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
146
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
147
147
  }
148
148
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_completeToAbortingTransition extends Omit<UATransition, "transitionNumber"> {
149
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
149
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
150
150
  }
151
151
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_suspendingToAbortingTransition extends Omit<UATransition, "transitionNumber"> {
152
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
152
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
153
153
  }
154
154
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_suspendedToAbortingTransition extends Omit<UATransition, "transitionNumber"> {
155
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
155
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
156
156
  }
157
157
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_unsuspendingToAbortingTransition extends Omit<UATransition, "transitionNumber"> {
158
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
158
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
159
159
  }
160
160
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_holdingToAbortingTransition extends Omit<UATransition, "transitionNumber"> {
161
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
161
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
162
162
  }
163
163
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_heldToAbortingTransition extends Omit<UATransition, "transitionNumber"> {
164
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
164
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
165
165
  }
166
166
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_unholdingToAbortingTransition extends Omit<UATransition, "transitionNumber"> {
167
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
167
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
168
168
  }
169
169
  export interface UAAnalyserChannel_OperatingModeSubStateMachine_stoppingToAbortingTransition extends Omit<UATransition, "transitionNumber"> {
170
- transitionNumber: UAProperty<UInt32, /*z*/ DataType.UInt32>;
170
+ transitionNumber: UAProperty<UInt32, DataType.UInt32>;
171
171
  }
172
172
  /**
173
173
  * AnalyserChannel OperatingMode SubStateMachine
@@ -7,7 +7,6 @@ import { UAState, UAState_Base } from "node-opcua-nodeset-ua/source/ua_state";
7
7
  * |typedDefinition |2:AnalyserChannelOperatingStateType ns=2;i=1004 |
8
8
  * |isAbstract |false |
9
9
  */
10
- export interface UAAnalyserChannelOperatingState_Base extends UAState_Base {
11
- }
10
+ export declare type UAAnalyserChannelOperatingState_Base = UAState_Base;
12
11
  export interface UAAnalyserChannelOperatingState extends UAState, UAAnalyserChannelOperatingState_Base {
13
12
  }
@@ -13,7 +13,7 @@ export interface UAAnalyserDevice_parameterSet extends UAObject {
13
13
  * diagnosticStatus
14
14
  * General health status of the analyser
15
15
  */
16
- diagnosticStatus: UADataItem<EnumDeviceHealth, /*z*/ DataType.Int32>;
16
+ diagnosticStatus: UADataItem<EnumDeviceHealth, DataType.Int32>;
17
17
  /**
18
18
  * configData
19
19
  * Optional analyser device large configuration
@@ -37,18 +37,18 @@ export interface UAAnalyserDevice_identification extends UAFunctionalGroup {
37
37
  * manufacturer
38
38
  * Name of the company that manufactured the device
39
39
  */
40
- manufacturer: UAProperty<LocalizedText, /*z*/ DataType.LocalizedText>;
40
+ manufacturer: UAProperty<LocalizedText, DataType.LocalizedText>;
41
41
  /**
42
42
  * model
43
43
  * Model name of the device
44
44
  */
45
- model: UAProperty<LocalizedText, /*z*/ DataType.LocalizedText>;
45
+ model: UAProperty<LocalizedText, DataType.LocalizedText>;
46
46
  /**
47
47
  * serialNumber
48
48
  * Identifier that uniquely identifies, within a
49
49
  * manufacturer, a device instance
50
50
  */
51
- serialNumber: UAProperty<UAString, /*z*/ DataType.String>;
51
+ serialNumber: UAProperty<UAString, DataType.String>;
52
52
  }
53
53
  export interface UAAnalyserDevice_configuration extends UAFunctionalGroup {
54
54
  /**
@@ -62,7 +62,7 @@ export interface UAAnalyserDevice_status extends UAFunctionalGroup {
62
62
  * diagnosticStatus
63
63
  * General health status of the analyser
64
64
  */
65
- diagnosticStatus: UADataItem<EnumDeviceHealth, /*z*/ DataType.Int32>;
65
+ diagnosticStatus: UADataItem<EnumDeviceHealth, DataType.Int32>;
66
66
  }
67
67
  /**
68
68
  * | | |
@@ -17,10 +17,10 @@ import { UABaseDataVariable, UABaseDataVariable_Base } from "node-opcua-nodeset-
17
17
  * |dataType Name |Buffer ns=0;i=15 |
18
18
  * |isAbstract |false |
19
19
  */
20
- export interface UAChemometricModel_Base<T extends Buffer> extends UABaseDataVariable_Base<T, /*e*/ DataType.ByteString> {
21
- name: UAProperty<LocalizedText, /*z*/ DataType.LocalizedText>;
22
- creationDate: UAProperty<Date, /*z*/ DataType.DateTime>;
23
- modelDescription: UAProperty<LocalizedText, /*z*/ DataType.LocalizedText>;
20
+ export interface UAChemometricModel_Base<T extends Buffer> extends UABaseDataVariable_Base<T, DataType.ByteString> {
21
+ name: UAProperty<LocalizedText, DataType.LocalizedText>;
22
+ creationDate: UAProperty<Date, DataType.DateTime>;
23
+ modelDescription: UAProperty<LocalizedText, DataType.LocalizedText>;
24
24
  }
25
- export interface UAChemometricModel<T extends Buffer> extends UABaseDataVariable<T, /*n*/ DataType.ByteString>, UAChemometricModel_Base<T> {
25
+ export interface UAChemometricModel<T extends Buffer> extends UABaseDataVariable<T, DataType.ByteString>, UAChemometricModel_Base<T> {
26
26
  }
@@ -7,7 +7,6 @@ import { UAAnalyserDevice, UAAnalyserDevice_Base } from "./ua_analyser_device";
7
7
  * |typedDefinition |2:ChromatographDeviceType ns=2;i=1013 |
8
8
  * |isAbstract |false |
9
9
  */
10
- export interface UAChromatographDevice_Base extends UAAnalyserDevice_Base {
11
- }
10
+ export declare type UAChromatographDevice_Base = UAAnalyserDevice_Base;
12
11
  export interface UAChromatographDevice extends UAAnalyserDevice, UAChromatographDevice_Base {
13
12
  }
@@ -7,7 +7,6 @@ import { UAStream, UAStream_Base } from "./ua_stream";
7
7
  * |typedDefinition |2:ChromatographDeviceStreamType ns=2;i=1034 |
8
8
  * |isAbstract |false |
9
9
  */
10
- export interface UAChromatographDeviceStream_Base extends UAStream_Base {
11
- }
10
+ export declare type UAChromatographDeviceStream_Base = UAStream_Base;
12
11
  export interface UAChromatographDeviceStream extends UAStream, UAChromatographDeviceStream_Base {
13
12
  }
@@ -7,7 +7,6 @@ import { UAAccessory, UAAccessory_Base } from "./ua_accessory";
7
7
  * |typedDefinition |2:DetectorType ns=2;i=9350 |
8
8
  * |isAbstract |false |
9
9
  */
10
- export interface UADetector_Base extends UAAccessory_Base {
11
- }
10
+ export declare type UADetector_Base = UAAccessory_Base;
12
11
  export interface UADetector extends UAAccessory, UADetector_Base {
13
12
  }
@@ -13,7 +13,6 @@ import { UADataItem, UADataItem_Base } from "node-opcua-nodeset-ua/source/ua_dat
13
13
  * |dataType Name |undefined ns=0;i=0 |
14
14
  * |isAbstract |false |
15
15
  */
16
- export interface UAEngineeringValue_Base<T, DT extends DataType> extends UADataItem_Base<T, DT> {
17
- }
18
- export interface UAEngineeringValue<T, DT extends DataType> extends UADataItem<T, /*m*/ DT>, UAEngineeringValue_Base<T, DT> {
16
+ export declare type UAEngineeringValue_Base<T, DT extends DataType> = UADataItem_Base<T, DT>;
17
+ export interface UAEngineeringValue<T, DT extends DataType> extends UADataItem<T, DT>, UAEngineeringValue_Base<T, DT> {
19
18
  }
@@ -7,7 +7,6 @@ import { UAAccessory, UAAccessory_Base } from "./ua_accessory";
7
7
  * |typedDefinition |2:GcOvenType ns=2;i=1020 |
8
8
  * |isAbstract |false |
9
9
  */
10
- export interface UAGcOven_Base extends UAAccessory_Base {
11
- }
10
+ export declare type UAGcOven_Base = UAAccessory_Base;
12
11
  export interface UAGcOven extends UAAccessory, UAGcOven_Base {
13
12
  }
@@ -7,7 +7,6 @@ import { UAAnalyserDevice, UAAnalyserDevice_Base } from "./ua_analyser_device";
7
7
  * |typedDefinition |2:MassSpectrometerDeviceType ns=2;i=1014 |
8
8
  * |isAbstract |false |
9
9
  */
10
- export interface UAMassSpectrometerDevice_Base extends UAAnalyserDevice_Base {
11
- }
10
+ export declare type UAMassSpectrometerDevice_Base = UAAnalyserDevice_Base;
12
11
  export interface UAMassSpectrometerDevice extends UAAnalyserDevice, UAMassSpectrometerDevice_Base {
13
12
  }
@@ -7,7 +7,6 @@ import { UAStream, UAStream_Base } from "./ua_stream";
7
7
  * |typedDefinition |2:MassSpectrometerDeviceStreamType ns=2;i=1031 |
8
8
  * |isAbstract |false |
9
9
  */
10
- export interface UAMassSpectrometerDeviceStream_Base extends UAStream_Base {
11
- }
10
+ export declare type UAMassSpectrometerDeviceStream_Base = UAStream_Base;
12
11
  export interface UAMassSpectrometerDeviceStream extends UAStream, UAMassSpectrometerDeviceStream_Base {
13
12
  }
@@ -7,7 +7,6 @@ import { UAStream, UAStream_Base } from "./ua_stream";
7
7
  * |typedDefinition |2:MNRDeviceStreamType ns=2;i=1035 |
8
8
  * |isAbstract |false |
9
9
  */
10
- export interface UAMNRDeviceStream_Base extends UAStream_Base {
11
- }
10
+ export declare type UAMNRDeviceStream_Base = UAStream_Base;
12
11
  export interface UAMNRDeviceStream extends UAStream, UAMNRDeviceStream_Base {
13
12
  }
@@ -18,7 +18,7 @@ import { UAChemometricModel, UAChemometricModel_Base } from "./ua_chemometric_mo
18
18
  * |isAbstract |false |
19
19
  */
20
20
  export interface UAMVAModel_Base<T extends Buffer> extends UAChemometricModel_Base<T> {
21
- mainDataIndex: UAProperty<Int32, /*z*/ DataType.Int32>;
21
+ mainDataIndex: UAProperty<Int32, DataType.Int32>;
22
22
  }
23
23
  export interface UAMVAModel<T extends Buffer> extends Omit<UAChemometricModel<T>, "$User_defined_Output_$">, UAMVAModel_Base<T> {
24
24
  }
@@ -19,10 +19,10 @@ import { EnumAlarmState } from "./enum_alarm_state";
19
19
  * |isAbstract |false |
20
20
  */
21
21
  export interface UAMVAOutputParameter_Base<T, DT extends DataType> extends UABaseDataVariable_Base<T, DT> {
22
- warningLimits?: UAProperty<DTRange, /*z*/ DataType.ExtensionObject>;
23
- alarmLimits?: UAProperty<DTRange, /*z*/ DataType.ExtensionObject>;
24
- alarmState: UAProperty<EnumAlarmState, /*z*/ DataType.Int32>;
25
- vendorSpecificError?: UAProperty<UAString, /*z*/ DataType.String>;
22
+ warningLimits?: UAProperty<DTRange, DataType.ExtensionObject>;
23
+ alarmLimits?: UAProperty<DTRange, DataType.ExtensionObject>;
24
+ alarmState: UAProperty<EnumAlarmState, DataType.Int32>;
25
+ vendorSpecificError?: UAProperty<UAString, DataType.String>;
26
26
  }
27
- export interface UAMVAOutputParameter<T, DT extends DataType> extends UABaseDataVariable<T, /*m*/ DT>, UAMVAOutputParameter_Base<T, DT> {
27
+ export interface UAMVAOutputParameter<T, DT extends DataType> extends UABaseDataVariable<T, DT>, UAMVAOutputParameter_Base<T, DT> {
28
28
  }