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.
- package/dist/ua_accessory.d.ts +2 -2
- package/dist/ua_accessory_slot.d.ts +2 -2
- package/dist/ua_acoustic_spectrometer_device.d.ts +1 -2
- package/dist/ua_acoustic_spectrometer_device_stream.d.ts +1 -2
- package/dist/ua_analyser_channel.d.ts +7 -7
- package/dist/ua_analyser_channel_local_state.d.ts +1 -2
- package/dist/ua_analyser_channel_maintenance_state.d.ts +1 -2
- package/dist/ua_analyser_channel_operating_execute_state.d.ts +1 -2
- package/dist/ua_analyser_channel_operating_mode_execute_sub_state_machine.d.ts +20 -20
- package/dist/ua_analyser_channel_operating_mode_sub_state_machine.d.ts +54 -54
- package/dist/ua_analyser_channel_operating_state.d.ts +1 -2
- package/dist/ua_analyser_device.d.ts +5 -5
- package/dist/ua_chemometric_model.d.ts +5 -5
- package/dist/ua_chromatograph_device.d.ts +1 -2
- package/dist/ua_chromatograph_device_stream.d.ts +1 -2
- package/dist/ua_detector.d.ts +1 -2
- package/dist/ua_engineering_value.d.ts +2 -3
- package/dist/ua_gc_oven.d.ts +1 -2
- package/dist/ua_mass_spectrometer_device.d.ts +1 -2
- package/dist/ua_mass_spectrometer_device_stream.d.ts +1 -2
- package/dist/ua_mnr_device_stream.d.ts +1 -2
- package/dist/ua_mva_model.d.ts +1 -1
- package/dist/ua_mva_output_parameter.d.ts +5 -5
- package/dist/ua_nmr_device.d.ts +1 -2
- package/dist/ua_particle_size_monitor_device.d.ts +1 -2
- package/dist/ua_particle_size_monitor_device_stream.d.ts +6 -6
- package/dist/ua_process_variable.d.ts +2 -3
- package/dist/ua_smart_sampling_system.d.ts +1 -2
- package/dist/ua_source.d.ts +1 -2
- package/dist/ua_spectrometer_device.d.ts +1 -1
- package/dist/ua_spectrometer_device_stream.d.ts +22 -22
- package/dist/ua_stream.d.ts +50 -50
- package/package.json +10 -10
- package/source/ua_accessory.ts +2 -2
- package/source/ua_accessory_slot.ts +3 -2
- package/source/ua_acoustic_spectrometer_device.ts +1 -2
- package/source/ua_acoustic_spectrometer_device_stream.ts +1 -2
- package/source/ua_analyser_channel.ts +10 -7
- package/source/ua_analyser_channel_local_state.ts +1 -2
- package/source/ua_analyser_channel_maintenance_state.ts +1 -2
- package/source/ua_analyser_channel_operating_execute_state.ts +1 -2
- package/source/ua_analyser_channel_operating_mode_execute_sub_state_machine.ts +20 -20
- package/source/ua_analyser_channel_operating_mode_sub_state_machine.ts +54 -54
- package/source/ua_analyser_channel_operating_state.ts +1 -2
- package/source/ua_analyser_device.ts +7 -5
- package/source/ua_chemometric_model.ts +7 -5
- package/source/ua_chromatograph_device.ts +1 -2
- package/source/ua_chromatograph_device_stream.ts +1 -2
- package/source/ua_detector.ts +1 -2
- package/source/ua_engineering_value.ts +2 -3
- package/source/ua_gc_oven.ts +1 -2
- package/source/ua_mass_spectrometer_device.ts +1 -2
- package/source/ua_mass_spectrometer_device_stream.ts +1 -2
- package/source/ua_mnr_device_stream.ts +1 -2
- package/source/ua_mva_model.ts +4 -3
- package/source/ua_mva_output_parameter.ts +7 -6
- package/source/ua_nmr_device.ts +1 -2
- package/source/ua_particle_size_monitor_device.ts +1 -2
- package/source/ua_particle_size_monitor_device_stream.ts +6 -6
- package/source/ua_process_variable.ts +2 -3
- package/source/ua_smart_sampling_system.ts +1 -2
- package/source/ua_source.ts +1 -2
- package/source/ua_spectrometer_device.ts +1 -1
- package/source/ua_spectrometer_device_stream.ts +22 -22
- package/source/ua_stream.ts +51 -50
package/dist/ua_accessory.d.ts
CHANGED
|
@@ -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,
|
|
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,
|
|
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,
|
|
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,
|
|
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
|
|
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
|
|
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,
|
|
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,
|
|
20
|
+
isEnabled: UADataItem<boolean, DataType.Boolean>;
|
|
21
21
|
/**
|
|
22
22
|
* diagnosticStatus
|
|
23
23
|
* AnalyserChannel health status
|
|
24
24
|
*/
|
|
25
|
-
diagnosticStatus: UADataItem<EnumDeviceHealth,
|
|
25
|
+
diagnosticStatus: UADataItem<EnumDeviceHealth, DataType.Int32>;
|
|
26
26
|
/**
|
|
27
27
|
* activeStream
|
|
28
28
|
* Active stream for this AnalyserChannel
|
|
29
29
|
*/
|
|
30
|
-
activeStream: UADataItem<UAString,
|
|
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,
|
|
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,
|
|
59
|
+
diagnosticStatus: UADataItem<EnumDeviceHealth, DataType.Int32>;
|
|
60
60
|
/**
|
|
61
61
|
* activeStream
|
|
62
62
|
* Active stream for this AnalyserChannel
|
|
63
63
|
*/
|
|
64
|
-
activeStream: UADataItem<UAString,
|
|
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
|
|
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
|
|
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
|
|
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,
|
|
9
|
+
stateNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
10
10
|
}
|
|
11
11
|
export interface UAAnalyserChannel_OperatingModeExecuteSubStateMachine_waitForCalibrationTrigger extends Omit<UAState, "stateNumber"> {
|
|
12
|
-
stateNumber: UAProperty<UInt32,
|
|
12
|
+
stateNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
13
13
|
}
|
|
14
14
|
export interface UAAnalyserChannel_OperatingModeExecuteSubStateMachine_extractCalibrationSample extends Omit<UAState, "stateNumber"> {
|
|
15
|
-
stateNumber: UAProperty<UInt32,
|
|
15
|
+
stateNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
16
16
|
}
|
|
17
17
|
export interface UAAnalyserChannel_OperatingModeExecuteSubStateMachine_prepareCalibrationSample extends Omit<UAState, "stateNumber"> {
|
|
18
|
-
stateNumber: UAProperty<UInt32,
|
|
18
|
+
stateNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
19
19
|
}
|
|
20
20
|
export interface UAAnalyserChannel_OperatingModeExecuteSubStateMachine_analyseCalibrationSample extends Omit<UAState, "stateNumber"> {
|
|
21
|
-
stateNumber: UAProperty<UInt32,
|
|
21
|
+
stateNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
22
22
|
}
|
|
23
23
|
export interface UAAnalyserChannel_OperatingModeExecuteSubStateMachine_waitForValidationTrigger extends Omit<UAState, "stateNumber"> {
|
|
24
|
-
stateNumber: UAProperty<UInt32,
|
|
24
|
+
stateNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
25
25
|
}
|
|
26
26
|
export interface UAAnalyserChannel_OperatingModeExecuteSubStateMachine_extractValidationSample extends Omit<UAState, "stateNumber"> {
|
|
27
|
-
stateNumber: UAProperty<UInt32,
|
|
27
|
+
stateNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
28
28
|
}
|
|
29
29
|
export interface UAAnalyserChannel_OperatingModeExecuteSubStateMachine_prepareValidationSample extends Omit<UAState, "stateNumber"> {
|
|
30
|
-
stateNumber: UAProperty<UInt32,
|
|
30
|
+
stateNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
31
31
|
}
|
|
32
32
|
export interface UAAnalyserChannel_OperatingModeExecuteSubStateMachine_analyseValidationSample extends Omit<UAState, "stateNumber"> {
|
|
33
|
-
stateNumber: UAProperty<UInt32,
|
|
33
|
+
stateNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
34
34
|
}
|
|
35
35
|
export interface UAAnalyserChannel_OperatingModeExecuteSubStateMachine_waitForSampleTrigger extends Omit<UAState, "stateNumber"> {
|
|
36
|
-
stateNumber: UAProperty<UInt32,
|
|
36
|
+
stateNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
37
37
|
}
|
|
38
38
|
export interface UAAnalyserChannel_OperatingModeExecuteSubStateMachine_extractSample extends Omit<UAState, "stateNumber"> {
|
|
39
|
-
stateNumber: UAProperty<UInt32,
|
|
39
|
+
stateNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
40
40
|
}
|
|
41
41
|
export interface UAAnalyserChannel_OperatingModeExecuteSubStateMachine_prepareSample extends Omit<UAState, "stateNumber"> {
|
|
42
|
-
stateNumber: UAProperty<UInt32,
|
|
42
|
+
stateNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
43
43
|
}
|
|
44
44
|
export interface UAAnalyserChannel_OperatingModeExecuteSubStateMachine_analyseSample extends Omit<UAState, "stateNumber"> {
|
|
45
|
-
stateNumber: UAProperty<UInt32,
|
|
45
|
+
stateNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
46
46
|
}
|
|
47
47
|
export interface UAAnalyserChannel_OperatingModeExecuteSubStateMachine_waitForDiagnosticTrigger extends Omit<UAState, "stateNumber"> {
|
|
48
|
-
stateNumber: UAProperty<UInt32,
|
|
48
|
+
stateNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
49
49
|
}
|
|
50
50
|
export interface UAAnalyserChannel_OperatingModeExecuteSubStateMachine_diagnostic extends Omit<UAState, "stateNumber"> {
|
|
51
|
-
stateNumber: UAProperty<UInt32,
|
|
51
|
+
stateNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
52
52
|
}
|
|
53
53
|
export interface UAAnalyserChannel_OperatingModeExecuteSubStateMachine_waitForCleaningTrigger extends Omit<UAState, "stateNumber"> {
|
|
54
|
-
stateNumber: UAProperty<UInt32,
|
|
54
|
+
stateNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
55
55
|
}
|
|
56
56
|
export interface UAAnalyserChannel_OperatingModeExecuteSubStateMachine_cleaning extends Omit<UAState, "stateNumber"> {
|
|
57
|
-
stateNumber: UAProperty<UInt32,
|
|
57
|
+
stateNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
58
58
|
}
|
|
59
59
|
export interface UAAnalyserChannel_OperatingModeExecuteSubStateMachine_publishResults extends Omit<UAState, "stateNumber"> {
|
|
60
|
-
stateNumber: UAProperty<UInt32,
|
|
60
|
+
stateNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
61
61
|
}
|
|
62
62
|
export interface UAAnalyserChannel_OperatingModeExecuteSubStateMachine_ejectGrabSample extends Omit<UAState, "stateNumber"> {
|
|
63
|
-
stateNumber: UAProperty<UInt32,
|
|
63
|
+
stateNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
64
64
|
}
|
|
65
65
|
export interface UAAnalyserChannel_OperatingModeExecuteSubStateMachine_cleanupSamplingSystem extends Omit<UAState, "stateNumber"> {
|
|
66
|
-
stateNumber: UAProperty<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,
|
|
11
|
+
transitionNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
12
12
|
}
|
|
13
13
|
export interface UAAnalyserChannel_OperatingModeSubStateMachine_resettingTransition extends Omit<UATransition, "transitionNumber"> {
|
|
14
|
-
transitionNumber: UAProperty<UInt32,
|
|
14
|
+
transitionNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
15
15
|
}
|
|
16
16
|
export interface UAAnalyserChannel_OperatingModeSubStateMachine_resettingToIdleTransition extends Omit<UATransition, "transitionNumber"> {
|
|
17
|
-
transitionNumber: UAProperty<UInt32,
|
|
17
|
+
transitionNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
18
18
|
}
|
|
19
19
|
export interface UAAnalyserChannel_OperatingModeSubStateMachine_idleToStartingTransition extends Omit<UATransition, "transitionNumber"> {
|
|
20
|
-
transitionNumber: UAProperty<UInt32,
|
|
20
|
+
transitionNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
21
21
|
}
|
|
22
22
|
export interface UAAnalyserChannel_OperatingModeSubStateMachine_startingTransition extends Omit<UATransition, "transitionNumber"> {
|
|
23
|
-
transitionNumber: UAProperty<UInt32,
|
|
23
|
+
transitionNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
24
24
|
}
|
|
25
25
|
export interface UAAnalyserChannel_OperatingModeSubStateMachine_startingToExecuteTransition extends Omit<UATransition, "transitionNumber"> {
|
|
26
|
-
transitionNumber: UAProperty<UInt32,
|
|
26
|
+
transitionNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
27
27
|
}
|
|
28
28
|
export interface UAAnalyserChannel_OperatingModeSubStateMachine_executeToCompletingTransition extends Omit<UATransition, "transitionNumber"> {
|
|
29
|
-
transitionNumber: UAProperty<UInt32,
|
|
29
|
+
transitionNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
30
30
|
}
|
|
31
31
|
export interface UAAnalyserChannel_OperatingModeSubStateMachine_completingTransition extends Omit<UATransition, "transitionNumber"> {
|
|
32
|
-
transitionNumber: UAProperty<UInt32,
|
|
32
|
+
transitionNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
33
33
|
}
|
|
34
34
|
export interface UAAnalyserChannel_OperatingModeSubStateMachine_completingToCompleteTransition extends Omit<UATransition, "transitionNumber"> {
|
|
35
|
-
transitionNumber: UAProperty<UInt32,
|
|
35
|
+
transitionNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
36
36
|
}
|
|
37
37
|
export interface UAAnalyserChannel_OperatingModeSubStateMachine_completeToStoppedTransition extends Omit<UATransition, "transitionNumber"> {
|
|
38
|
-
transitionNumber: UAProperty<UInt32,
|
|
38
|
+
transitionNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
39
39
|
}
|
|
40
40
|
export interface UAAnalyserChannel_OperatingModeSubStateMachine_executeToHoldingTransition extends Omit<UATransition, "transitionNumber"> {
|
|
41
|
-
transitionNumber: UAProperty<UInt32,
|
|
41
|
+
transitionNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
42
42
|
}
|
|
43
43
|
export interface UAAnalyserChannel_OperatingModeSubStateMachine_holdingTransition extends Omit<UATransition, "transitionNumber"> {
|
|
44
|
-
transitionNumber: UAProperty<UInt32,
|
|
44
|
+
transitionNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
45
45
|
}
|
|
46
46
|
export interface UAAnalyserChannel_OperatingModeSubStateMachine_holdingToHeldTransition extends Omit<UATransition, "transitionNumber"> {
|
|
47
|
-
transitionNumber: UAProperty<UInt32,
|
|
47
|
+
transitionNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
48
48
|
}
|
|
49
49
|
export interface UAAnalyserChannel_OperatingModeSubStateMachine_heldToUnholdingTransition extends Omit<UATransition, "transitionNumber"> {
|
|
50
|
-
transitionNumber: UAProperty<UInt32,
|
|
50
|
+
transitionNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
51
51
|
}
|
|
52
52
|
export interface UAAnalyserChannel_OperatingModeSubStateMachine_unholdingTransition extends Omit<UATransition, "transitionNumber"> {
|
|
53
|
-
transitionNumber: UAProperty<UInt32,
|
|
53
|
+
transitionNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
54
54
|
}
|
|
55
55
|
export interface UAAnalyserChannel_OperatingModeSubStateMachine_unholdingToHoldingTransition extends Omit<UATransition, "transitionNumber"> {
|
|
56
|
-
transitionNumber: UAProperty<UInt32,
|
|
56
|
+
transitionNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
57
57
|
}
|
|
58
58
|
export interface UAAnalyserChannel_OperatingModeSubStateMachine_unholdingToExecuteTransition extends Omit<UATransition, "transitionNumber"> {
|
|
59
|
-
transitionNumber: UAProperty<UInt32,
|
|
59
|
+
transitionNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
60
60
|
}
|
|
61
61
|
export interface UAAnalyserChannel_OperatingModeSubStateMachine_executeToSuspendingTransition extends Omit<UATransition, "transitionNumber"> {
|
|
62
|
-
transitionNumber: UAProperty<UInt32,
|
|
62
|
+
transitionNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
63
63
|
}
|
|
64
64
|
export interface UAAnalyserChannel_OperatingModeSubStateMachine_suspendingTransition extends Omit<UATransition, "transitionNumber"> {
|
|
65
|
-
transitionNumber: UAProperty<UInt32,
|
|
65
|
+
transitionNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
66
66
|
}
|
|
67
67
|
export interface UAAnalyserChannel_OperatingModeSubStateMachine_suspendingToSuspendedTransition extends Omit<UATransition, "transitionNumber"> {
|
|
68
|
-
transitionNumber: UAProperty<UInt32,
|
|
68
|
+
transitionNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
69
69
|
}
|
|
70
70
|
export interface UAAnalyserChannel_OperatingModeSubStateMachine_suspendedToUnsuspendingTransition extends Omit<UATransition, "transitionNumber"> {
|
|
71
|
-
transitionNumber: UAProperty<UInt32,
|
|
71
|
+
transitionNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
72
72
|
}
|
|
73
73
|
export interface UAAnalyserChannel_OperatingModeSubStateMachine_unsuspendingTransition extends Omit<UATransition, "transitionNumber"> {
|
|
74
|
-
transitionNumber: UAProperty<UInt32,
|
|
74
|
+
transitionNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
75
75
|
}
|
|
76
76
|
export interface UAAnalyserChannel_OperatingModeSubStateMachine_unsuspendingToSuspendingTransition extends Omit<UATransition, "transitionNumber"> {
|
|
77
|
-
transitionNumber: UAProperty<UInt32,
|
|
77
|
+
transitionNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
78
78
|
}
|
|
79
79
|
export interface UAAnalyserChannel_OperatingModeSubStateMachine_unsuspendingToExecuteTransition extends Omit<UATransition, "transitionNumber"> {
|
|
80
|
-
transitionNumber: UAProperty<UInt32,
|
|
80
|
+
transitionNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
81
81
|
}
|
|
82
82
|
export interface UAAnalyserChannel_OperatingModeSubStateMachine_stoppingToStoppedTransition extends Omit<UATransition, "transitionNumber"> {
|
|
83
|
-
transitionNumber: UAProperty<UInt32,
|
|
83
|
+
transitionNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
84
84
|
}
|
|
85
85
|
export interface UAAnalyserChannel_OperatingModeSubStateMachine_abortingToAbortedTransition extends Omit<UATransition, "transitionNumber"> {
|
|
86
|
-
transitionNumber: UAProperty<UInt32,
|
|
86
|
+
transitionNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
87
87
|
}
|
|
88
88
|
export interface UAAnalyserChannel_OperatingModeSubStateMachine_abortedToClearingTransition extends Omit<UATransition, "transitionNumber"> {
|
|
89
|
-
transitionNumber: UAProperty<UInt32,
|
|
89
|
+
transitionNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
90
90
|
}
|
|
91
91
|
export interface UAAnalyserChannel_OperatingModeSubStateMachine_clearingToStoppedTransition extends Omit<UATransition, "transitionNumber"> {
|
|
92
|
-
transitionNumber: UAProperty<UInt32,
|
|
92
|
+
transitionNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
93
93
|
}
|
|
94
94
|
export interface UAAnalyserChannel_OperatingModeSubStateMachine_resettingToStoppingTransition extends Omit<UATransition, "transitionNumber"> {
|
|
95
|
-
transitionNumber: UAProperty<UInt32,
|
|
95
|
+
transitionNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
96
96
|
}
|
|
97
97
|
export interface UAAnalyserChannel_OperatingModeSubStateMachine_idleToStoppingTransition extends Omit<UATransition, "transitionNumber"> {
|
|
98
|
-
transitionNumber: UAProperty<UInt32,
|
|
98
|
+
transitionNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
99
99
|
}
|
|
100
100
|
export interface UAAnalyserChannel_OperatingModeSubStateMachine_startingToStoppingTransition extends Omit<UATransition, "transitionNumber"> {
|
|
101
|
-
transitionNumber: UAProperty<UInt32,
|
|
101
|
+
transitionNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
102
102
|
}
|
|
103
103
|
export interface UAAnalyserChannel_OperatingModeSubStateMachine_executeToStoppingTransition extends Omit<UATransition, "transitionNumber"> {
|
|
104
|
-
transitionNumber: UAProperty<UInt32,
|
|
104
|
+
transitionNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
105
105
|
}
|
|
106
106
|
export interface UAAnalyserChannel_OperatingModeSubStateMachine_completingToStoppingTransition extends Omit<UATransition, "transitionNumber"> {
|
|
107
|
-
transitionNumber: UAProperty<UInt32,
|
|
107
|
+
transitionNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
108
108
|
}
|
|
109
109
|
export interface UAAnalyserChannel_OperatingModeSubStateMachine_completeToStoppingTransition extends Omit<UATransition, "transitionNumber"> {
|
|
110
|
-
transitionNumber: UAProperty<UInt32,
|
|
110
|
+
transitionNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
111
111
|
}
|
|
112
112
|
export interface UAAnalyserChannel_OperatingModeSubStateMachine_suspendingToStoppingTransition extends Omit<UATransition, "transitionNumber"> {
|
|
113
|
-
transitionNumber: UAProperty<UInt32,
|
|
113
|
+
transitionNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
114
114
|
}
|
|
115
115
|
export interface UAAnalyserChannel_OperatingModeSubStateMachine_suspendedToStoppingTransition extends Omit<UATransition, "transitionNumber"> {
|
|
116
|
-
transitionNumber: UAProperty<UInt32,
|
|
116
|
+
transitionNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
117
117
|
}
|
|
118
118
|
export interface UAAnalyserChannel_OperatingModeSubStateMachine_unsuspendingToStoppingTransition extends Omit<UATransition, "transitionNumber"> {
|
|
119
|
-
transitionNumber: UAProperty<UInt32,
|
|
119
|
+
transitionNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
120
120
|
}
|
|
121
121
|
export interface UAAnalyserChannel_OperatingModeSubStateMachine_holdingToStoppingTransition extends Omit<UATransition, "transitionNumber"> {
|
|
122
|
-
transitionNumber: UAProperty<UInt32,
|
|
122
|
+
transitionNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
123
123
|
}
|
|
124
124
|
export interface UAAnalyserChannel_OperatingModeSubStateMachine_heldToStoppingTransition extends Omit<UATransition, "transitionNumber"> {
|
|
125
|
-
transitionNumber: UAProperty<UInt32,
|
|
125
|
+
transitionNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
126
126
|
}
|
|
127
127
|
export interface UAAnalyserChannel_OperatingModeSubStateMachine_unholdingToStoppingTransition extends Omit<UATransition, "transitionNumber"> {
|
|
128
|
-
transitionNumber: UAProperty<UInt32,
|
|
128
|
+
transitionNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
129
129
|
}
|
|
130
130
|
export interface UAAnalyserChannel_OperatingModeSubStateMachine_stoppedToAbortingTransition extends Omit<UATransition, "transitionNumber"> {
|
|
131
|
-
transitionNumber: UAProperty<UInt32,
|
|
131
|
+
transitionNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
132
132
|
}
|
|
133
133
|
export interface UAAnalyserChannel_OperatingModeSubStateMachine_resettingToAbortingTransition extends Omit<UATransition, "transitionNumber"> {
|
|
134
|
-
transitionNumber: UAProperty<UInt32,
|
|
134
|
+
transitionNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
135
135
|
}
|
|
136
136
|
export interface UAAnalyserChannel_OperatingModeSubStateMachine_idleToAbortingTransition extends Omit<UATransition, "transitionNumber"> {
|
|
137
|
-
transitionNumber: UAProperty<UInt32,
|
|
137
|
+
transitionNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
138
138
|
}
|
|
139
139
|
export interface UAAnalyserChannel_OperatingModeSubStateMachine_startingToAbortingTransition extends Omit<UATransition, "transitionNumber"> {
|
|
140
|
-
transitionNumber: UAProperty<UInt32,
|
|
140
|
+
transitionNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
141
141
|
}
|
|
142
142
|
export interface UAAnalyserChannel_OperatingModeSubStateMachine_executeToAbortingTransition extends Omit<UATransition, "transitionNumber"> {
|
|
143
|
-
transitionNumber: UAProperty<UInt32,
|
|
143
|
+
transitionNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
144
144
|
}
|
|
145
145
|
export interface UAAnalyserChannel_OperatingModeSubStateMachine_completingToAbortingTransition extends Omit<UATransition, "transitionNumber"> {
|
|
146
|
-
transitionNumber: UAProperty<UInt32,
|
|
146
|
+
transitionNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
147
147
|
}
|
|
148
148
|
export interface UAAnalyserChannel_OperatingModeSubStateMachine_completeToAbortingTransition extends Omit<UATransition, "transitionNumber"> {
|
|
149
|
-
transitionNumber: UAProperty<UInt32,
|
|
149
|
+
transitionNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
150
150
|
}
|
|
151
151
|
export interface UAAnalyserChannel_OperatingModeSubStateMachine_suspendingToAbortingTransition extends Omit<UATransition, "transitionNumber"> {
|
|
152
|
-
transitionNumber: UAProperty<UInt32,
|
|
152
|
+
transitionNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
153
153
|
}
|
|
154
154
|
export interface UAAnalyserChannel_OperatingModeSubStateMachine_suspendedToAbortingTransition extends Omit<UATransition, "transitionNumber"> {
|
|
155
|
-
transitionNumber: UAProperty<UInt32,
|
|
155
|
+
transitionNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
156
156
|
}
|
|
157
157
|
export interface UAAnalyserChannel_OperatingModeSubStateMachine_unsuspendingToAbortingTransition extends Omit<UATransition, "transitionNumber"> {
|
|
158
|
-
transitionNumber: UAProperty<UInt32,
|
|
158
|
+
transitionNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
159
159
|
}
|
|
160
160
|
export interface UAAnalyserChannel_OperatingModeSubStateMachine_holdingToAbortingTransition extends Omit<UATransition, "transitionNumber"> {
|
|
161
|
-
transitionNumber: UAProperty<UInt32,
|
|
161
|
+
transitionNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
162
162
|
}
|
|
163
163
|
export interface UAAnalyserChannel_OperatingModeSubStateMachine_heldToAbortingTransition extends Omit<UATransition, "transitionNumber"> {
|
|
164
|
-
transitionNumber: UAProperty<UInt32,
|
|
164
|
+
transitionNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
165
165
|
}
|
|
166
166
|
export interface UAAnalyserChannel_OperatingModeSubStateMachine_unholdingToAbortingTransition extends Omit<UATransition, "transitionNumber"> {
|
|
167
|
-
transitionNumber: UAProperty<UInt32,
|
|
167
|
+
transitionNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
168
168
|
}
|
|
169
169
|
export interface UAAnalyserChannel_OperatingModeSubStateMachine_stoppingToAbortingTransition extends Omit<UATransition, "transitionNumber"> {
|
|
170
|
-
transitionNumber: UAProperty<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
|
|
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,
|
|
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,
|
|
40
|
+
manufacturer: UAProperty<LocalizedText, DataType.LocalizedText>;
|
|
41
41
|
/**
|
|
42
42
|
* model
|
|
43
43
|
* Model name of the device
|
|
44
44
|
*/
|
|
45
|
-
model: UAProperty<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,
|
|
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,
|
|
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,
|
|
21
|
-
name: UAProperty<LocalizedText,
|
|
22
|
-
creationDate: UAProperty<Date,
|
|
23
|
-
modelDescription: UAProperty<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,
|
|
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
|
|
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
|
|
11
|
-
}
|
|
10
|
+
export declare type UAChromatographDeviceStream_Base = UAStream_Base;
|
|
12
11
|
export interface UAChromatographDeviceStream extends UAStream, UAChromatographDeviceStream_Base {
|
|
13
12
|
}
|
package/dist/ua_detector.d.ts
CHANGED
|
@@ -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
|
|
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
|
|
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
|
}
|
package/dist/ua_gc_oven.d.ts
CHANGED
|
@@ -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
|
|
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
|
|
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
|
|
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
|
|
11
|
-
}
|
|
10
|
+
export declare type UAMNRDeviceStream_Base = UAStream_Base;
|
|
12
11
|
export interface UAMNRDeviceStream extends UAStream, UAMNRDeviceStream_Base {
|
|
13
12
|
}
|
package/dist/ua_mva_model.d.ts
CHANGED
|
@@ -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,
|
|
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,
|
|
23
|
-
alarmLimits?: UAProperty<DTRange,
|
|
24
|
-
alarmState: UAProperty<EnumAlarmState,
|
|
25
|
-
vendorSpecificError?: UAProperty<UAString,
|
|
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,
|
|
27
|
+
export interface UAMVAOutputParameter<T, DT extends DataType> extends UABaseDataVariable<T, DT>, UAMVAOutputParameter_Base<T, DT> {
|
|
28
28
|
}
|