node-opcua-nodeset-adi 2.66.3 → 2.68.1
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_analyser_channel.d.ts +3 -2
- package/dist/ua_analyser_device.d.ts +3 -2
- package/dist/ua_mva_output_parameter.d.ts +2 -1
- package/dist/ua_stream.d.ts +9 -6
- package/package.json +10 -10
- package/source/ua_analyser_channel.ts +4 -3
- package/source/ua_analyser_device.ts +5 -2
- package/source/ua_mva_model.ts +2 -1
- package/source/ua_mva_output_parameter.ts +3 -2
- package/source/ua_particle_size_monitor_device_stream.ts +3 -0
- package/source/ua_spectrometer_device.ts +2 -1
- package/source/ua_spectrometer_device_stream.ts +4 -0
- package/source/ua_stream.ts +9 -6
|
@@ -2,6 +2,7 @@ import { UAObject, UAMethod } from "node-opcua-address-space-base";
|
|
|
2
2
|
import { DataType } from "node-opcua-variant";
|
|
3
3
|
import { UAString } from "node-opcua-basic-types";
|
|
4
4
|
import { UADataItem } from "node-opcua-nodeset-ua/source/ua_data_item";
|
|
5
|
+
import { EnumDeviceHealth } from "node-opcua-nodeset-di/source/enum_device_health";
|
|
5
6
|
import { UAFunctionalGroup } from "node-opcua-nodeset-di/source/ua_functional_group";
|
|
6
7
|
import { UATopologyElement, UATopologyElement_Base } from "node-opcua-nodeset-di/source/ua_topology_element";
|
|
7
8
|
import { UAAnalyserChannelStateMachine } from "./ua_analyser_channel_state_machine";
|
|
@@ -21,7 +22,7 @@ export interface UAAnalyserChannel_parameterSet extends UAObject {
|
|
|
21
22
|
* diagnosticStatus
|
|
22
23
|
* AnalyserChannel health status
|
|
23
24
|
*/
|
|
24
|
-
diagnosticStatus: UADataItem<
|
|
25
|
+
diagnosticStatus: UADataItem<EnumDeviceHealth, /*z*/ DataType.Int32>;
|
|
25
26
|
/**
|
|
26
27
|
* activeStream
|
|
27
28
|
* Active stream for this AnalyserChannel
|
|
@@ -55,7 +56,7 @@ export interface UAAnalyserChannel_status extends UAFunctionalGroup {
|
|
|
55
56
|
* diagnosticStatus
|
|
56
57
|
* AnalyserChannel health status
|
|
57
58
|
*/
|
|
58
|
-
diagnosticStatus: UADataItem<
|
|
59
|
+
diagnosticStatus: UADataItem<EnumDeviceHealth, /*z*/ DataType.Int32>;
|
|
59
60
|
/**
|
|
60
61
|
* activeStream
|
|
61
62
|
* Active stream for this AnalyserChannel
|
|
@@ -4,6 +4,7 @@ import { LocalizedText } from "node-opcua-data-model";
|
|
|
4
4
|
import { UAString } from "node-opcua-basic-types";
|
|
5
5
|
import { UADataItem } from "node-opcua-nodeset-ua/source/ua_data_item";
|
|
6
6
|
import { UAFile } from "node-opcua-nodeset-ua/source/ua_file";
|
|
7
|
+
import { EnumDeviceHealth } from "node-opcua-nodeset-di/source/enum_device_health";
|
|
7
8
|
import { UAFunctionalGroup } from "node-opcua-nodeset-di/source/ua_functional_group";
|
|
8
9
|
import { UADevice, UADevice_Base } from "node-opcua-nodeset-di/source/ua_device";
|
|
9
10
|
import { UAAnalyserDeviceStateMachine } from "./ua_analyser_device_state_machine";
|
|
@@ -12,7 +13,7 @@ export interface UAAnalyserDevice_parameterSet extends UAObject {
|
|
|
12
13
|
* diagnosticStatus
|
|
13
14
|
* General health status of the analyser
|
|
14
15
|
*/
|
|
15
|
-
diagnosticStatus: UADataItem<
|
|
16
|
+
diagnosticStatus: UADataItem<EnumDeviceHealth, /*z*/ DataType.Int32>;
|
|
16
17
|
/**
|
|
17
18
|
* configData
|
|
18
19
|
* Optional analyser device large configuration
|
|
@@ -61,7 +62,7 @@ export interface UAAnalyserDevice_status extends UAFunctionalGroup {
|
|
|
61
62
|
* diagnosticStatus
|
|
62
63
|
* General health status of the analyser
|
|
63
64
|
*/
|
|
64
|
-
diagnosticStatus: UADataItem<
|
|
65
|
+
diagnosticStatus: UADataItem<EnumDeviceHealth, /*z*/ DataType.Int32>;
|
|
65
66
|
}
|
|
66
67
|
/**
|
|
67
68
|
* | | |
|
|
@@ -3,6 +3,7 @@ import { DataType } from "node-opcua-variant";
|
|
|
3
3
|
import { UAString } from "node-opcua-basic-types";
|
|
4
4
|
import { UABaseDataVariable, UABaseDataVariable_Base } from "node-opcua-nodeset-ua/source/ua_base_data_variable";
|
|
5
5
|
import { DTRange } from "node-opcua-nodeset-ua/source/dt_range";
|
|
6
|
+
import { EnumAlarmState } from "./enum_alarm_state";
|
|
6
7
|
/**
|
|
7
8
|
* Hold the descriptions of a mathematical process
|
|
8
9
|
* and associated information to convert scaled data
|
|
@@ -20,7 +21,7 @@ import { DTRange } from "node-opcua-nodeset-ua/source/dt_range";
|
|
|
20
21
|
export interface UAMVAOutputParameter_Base<T, DT extends DataType> extends UABaseDataVariable_Base<T, DT> {
|
|
21
22
|
warningLimits?: UAProperty<DTRange, /*z*/ DataType.ExtensionObject>;
|
|
22
23
|
alarmLimits?: UAProperty<DTRange, /*z*/ DataType.ExtensionObject>;
|
|
23
|
-
alarmState: UAProperty<
|
|
24
|
+
alarmState: UAProperty<EnumAlarmState, /*z*/ DataType.Int32>;
|
|
24
25
|
vendorSpecificError?: UAProperty<UAString, /*z*/ DataType.String>;
|
|
25
26
|
}
|
|
26
27
|
export interface UAMVAOutputParameter<T, DT extends DataType> extends UABaseDataVariable<T, /*m*/ DT>, UAMVAOutputParameter_Base<T, DT> {
|
package/dist/ua_stream.d.ts
CHANGED
|
@@ -4,8 +4,11 @@ import { UInt32, UAString } from "node-opcua-basic-types";
|
|
|
4
4
|
import { UADataItem } from "node-opcua-nodeset-ua/source/ua_data_item";
|
|
5
5
|
import { UAAnalogItem } from "node-opcua-nodeset-ua/source/ua_analog_item";
|
|
6
6
|
import { UAMultiStateDiscrete } from "node-opcua-nodeset-ua/source/ua_multi_state_discrete";
|
|
7
|
+
import { EnumDeviceHealth } from "node-opcua-nodeset-di/source/enum_device_health";
|
|
7
8
|
import { UAFunctionalGroup } from "node-opcua-nodeset-di/source/ua_functional_group";
|
|
8
9
|
import { UATopologyElement, UATopologyElement_Base } from "node-opcua-nodeset-di/source/ua_topology_element";
|
|
10
|
+
import { EnumExecutionCycle } from "./enum_execution_cycle";
|
|
11
|
+
import { EnumAcquisitionResultStatus } from "./enum_acquisition_result_status";
|
|
9
12
|
export interface UAStream_parameterSet extends UAObject {
|
|
10
13
|
/**
|
|
11
14
|
* isEnabled
|
|
@@ -24,7 +27,7 @@ export interface UAStream_parameterSet extends UAObject {
|
|
|
24
27
|
* diagnosticStatus
|
|
25
28
|
* Stream health status
|
|
26
29
|
*/
|
|
27
|
-
diagnosticStatus: UADataItem<
|
|
30
|
+
diagnosticStatus: UADataItem<EnumDeviceHealth, /*z*/ DataType.Int32>;
|
|
28
31
|
/**
|
|
29
32
|
* lastCalibrationTime
|
|
30
33
|
* Time at which the last calibration was run
|
|
@@ -56,7 +59,7 @@ export interface UAStream_parameterSet extends UAObject {
|
|
|
56
59
|
* executionCycle
|
|
57
60
|
* Indicates which Execution cycle is in progress
|
|
58
61
|
*/
|
|
59
|
-
executionCycle: UADataItem<
|
|
62
|
+
executionCycle: UADataItem<EnumExecutionCycle, /*z*/ DataType.Int32>;
|
|
60
63
|
/**
|
|
61
64
|
* executionCycleSubcode
|
|
62
65
|
* Indicates which Execution cycle subcode is in
|
|
@@ -80,7 +83,7 @@ export interface UAStream_parameterSet extends UAObject {
|
|
|
80
83
|
* acquisitionResultStatus
|
|
81
84
|
* Quality of the acquisition
|
|
82
85
|
*/
|
|
83
|
-
acquisitionResultStatus: UADataItem<
|
|
86
|
+
acquisitionResultStatus: UADataItem<EnumAcquisitionResultStatus, /*z*/ DataType.Int32>;
|
|
84
87
|
/**
|
|
85
88
|
* rawData
|
|
86
89
|
* Raw data produced as a result of data acquisition
|
|
@@ -186,7 +189,7 @@ export interface UAStream_status extends UAFunctionalGroup {
|
|
|
186
189
|
* diagnosticStatus
|
|
187
190
|
* Stream health status
|
|
188
191
|
*/
|
|
189
|
-
diagnosticStatus: UADataItem<
|
|
192
|
+
diagnosticStatus: UADataItem<EnumDeviceHealth, /*z*/ DataType.Int32>;
|
|
190
193
|
/**
|
|
191
194
|
* lastCalibrationTime
|
|
192
195
|
* Time at which the last calibration was run
|
|
@@ -222,7 +225,7 @@ export interface UAStream_acquisitionStatus extends UAFunctionalGroup {
|
|
|
222
225
|
* executionCycle
|
|
223
226
|
* Indicates which Execution cycle is in progress
|
|
224
227
|
*/
|
|
225
|
-
executionCycle: UADataItem<
|
|
228
|
+
executionCycle: UADataItem<EnumExecutionCycle, /*z*/ DataType.Int32>;
|
|
226
229
|
/**
|
|
227
230
|
* executionCycleSubcode
|
|
228
231
|
* Indicates which Execution cycle subcode is in
|
|
@@ -248,7 +251,7 @@ export interface UAStream_acquisitionData extends UAFunctionalGroup {
|
|
|
248
251
|
* acquisitionResultStatus
|
|
249
252
|
* Quality of the acquisition
|
|
250
253
|
*/
|
|
251
|
-
acquisitionResultStatus: UADataItem<
|
|
254
|
+
acquisitionResultStatus: UADataItem<EnumAcquisitionResultStatus, /*z*/ DataType.Int32>;
|
|
252
255
|
/**
|
|
253
256
|
* rawData
|
|
254
257
|
* Raw data produced as a result of data acquisition
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-opcua-nodeset-adi",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.68.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -10,14 +10,14 @@
|
|
|
10
10
|
"author": "etienne.rossignon@sterfive.com",
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"node-opcua-address-space-base": "2.
|
|
14
|
-
"node-opcua-basic-types": "2.
|
|
15
|
-
"node-opcua-data-access": "2.
|
|
16
|
-
"node-opcua-data-model": "2.
|
|
17
|
-
"node-opcua-nodeid": "2.
|
|
18
|
-
"node-opcua-nodeset-di": "2.
|
|
19
|
-
"node-opcua-nodeset-ua": "2.
|
|
20
|
-
"node-opcua-variant": "2.
|
|
13
|
+
"node-opcua-address-space-base": "2.68.1",
|
|
14
|
+
"node-opcua-basic-types": "2.68.0",
|
|
15
|
+
"node-opcua-data-access": "2.68.1",
|
|
16
|
+
"node-opcua-data-model": "2.68.0",
|
|
17
|
+
"node-opcua-nodeid": "2.68.0",
|
|
18
|
+
"node-opcua-nodeset-di": "2.68.1",
|
|
19
|
+
"node-opcua-nodeset-ua": "2.68.1",
|
|
20
|
+
"node-opcua-variant": "2.68.0"
|
|
21
21
|
},
|
|
22
|
-
"gitHead": "
|
|
22
|
+
"gitHead": "7bcb67b06ea755d438e91f5c143d20531497e286"
|
|
23
23
|
}
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { UAObject, UAMethod } from "node-opcua-address-space-base"
|
|
3
|
-
import { DataType
|
|
3
|
+
import { DataType } from "node-opcua-variant"
|
|
4
4
|
import { UAString } from "node-opcua-basic-types"
|
|
5
5
|
import { UADataItem } from "node-opcua-nodeset-ua/source/ua_data_item"
|
|
6
|
+
import { EnumDeviceHealth } from "node-opcua-nodeset-di/source/enum_device_health"
|
|
6
7
|
import { UAFunctionalGroup } from "node-opcua-nodeset-di/source/ua_functional_group"
|
|
7
8
|
import { UATopologyElement, UATopologyElement_Base } from "node-opcua-nodeset-di/source/ua_topology_element"
|
|
8
9
|
import { UAAnalyserChannelStateMachine } from "./ua_analyser_channel_state_machine"
|
|
@@ -22,7 +23,7 @@ export interface UAAnalyserChannel_parameterSet extends UAObject { // Object
|
|
|
22
23
|
* diagnosticStatus
|
|
23
24
|
* AnalyserChannel health status
|
|
24
25
|
*/
|
|
25
|
-
diagnosticStatus: UADataItem<
|
|
26
|
+
diagnosticStatus: UADataItem<EnumDeviceHealth, /*z*/DataType.Int32>;
|
|
26
27
|
/**
|
|
27
28
|
* activeStream
|
|
28
29
|
* Active stream for this AnalyserChannel
|
|
@@ -56,7 +57,7 @@ export interface UAAnalyserChannel_status extends UAFunctionalGroup { // Object
|
|
|
56
57
|
* diagnosticStatus
|
|
57
58
|
* AnalyserChannel health status
|
|
58
59
|
*/
|
|
59
|
-
diagnosticStatus: UADataItem<
|
|
60
|
+
diagnosticStatus: UADataItem<EnumDeviceHealth, /*z*/DataType.Int32>;
|
|
60
61
|
/**
|
|
61
62
|
* activeStream
|
|
62
63
|
* Active stream for this AnalyserChannel
|
|
@@ -8,15 +8,18 @@ import { DTArgument } from "node-opcua-nodeset-ua/source/dt_argument"
|
|
|
8
8
|
import { DTRange } from "node-opcua-nodeset-ua/source/dt_range"
|
|
9
9
|
import { UADataItem } from "node-opcua-nodeset-ua/source/ua_data_item"
|
|
10
10
|
import { UAFile } from "node-opcua-nodeset-ua/source/ua_file"
|
|
11
|
+
import { EnumDeviceHealth } from "node-opcua-nodeset-di/source/enum_device_health"
|
|
11
12
|
import { UAFunctionalGroup } from "node-opcua-nodeset-di/source/ua_functional_group"
|
|
12
13
|
import { UADevice, UADevice_Base } from "node-opcua-nodeset-di/source/ua_device"
|
|
14
|
+
import { EnumExecutionCycle } from "./enum_execution_cycle"
|
|
15
|
+
import { EnumAcquisitionResultStatus } from "./enum_acquisition_result_status"
|
|
13
16
|
import { UAAnalyserDeviceStateMachine } from "./ua_analyser_device_state_machine"
|
|
14
17
|
export interface UAAnalyserDevice_parameterSet extends UAObject { // Object
|
|
15
18
|
/**
|
|
16
19
|
* diagnosticStatus
|
|
17
20
|
* General health status of the analyser
|
|
18
21
|
*/
|
|
19
|
-
diagnosticStatus: UADataItem<
|
|
22
|
+
diagnosticStatus: UADataItem<EnumDeviceHealth, /*z*/DataType.Int32>;
|
|
20
23
|
/**
|
|
21
24
|
* configData
|
|
22
25
|
* Optional analyser device large configuration
|
|
@@ -65,7 +68,7 @@ export interface UAAnalyserDevice_status extends UAFunctionalGroup { // Object
|
|
|
65
68
|
* diagnosticStatus
|
|
66
69
|
* General health status of the analyser
|
|
67
70
|
*/
|
|
68
|
-
diagnosticStatus: UADataItem<
|
|
71
|
+
diagnosticStatus: UADataItem<EnumDeviceHealth, /*z*/DataType.Int32>;
|
|
69
72
|
}
|
|
70
73
|
/**
|
|
71
74
|
* | | |
|
package/source/ua_mva_model.ts
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { UAProperty } from "node-opcua-address-space-base"
|
|
3
|
-
import { DataType
|
|
3
|
+
import { DataType } from "node-opcua-variant"
|
|
4
4
|
import { Int32, UAString } from "node-opcua-basic-types"
|
|
5
5
|
import { DTRange } from "node-opcua-nodeset-ua/source/dt_range"
|
|
6
|
+
import { EnumAlarmState } from "./enum_alarm_state"
|
|
6
7
|
import { UAChemometricModel, UAChemometricModel_Base } from "./ua_chemometric_model"
|
|
7
8
|
/**
|
|
8
9
|
* Hold the descriptions of a mathematical process
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { UAProperty } from "node-opcua-address-space-base"
|
|
3
|
-
import { DataType
|
|
3
|
+
import { DataType } from "node-opcua-variant"
|
|
4
4
|
import { UAString } from "node-opcua-basic-types"
|
|
5
5
|
import { UABaseDataVariable, UABaseDataVariable_Base } from "node-opcua-nodeset-ua/source/ua_base_data_variable"
|
|
6
6
|
import { DTRange } from "node-opcua-nodeset-ua/source/dt_range"
|
|
7
|
+
import { EnumAlarmState } from "./enum_alarm_state"
|
|
7
8
|
/**
|
|
8
9
|
* Hold the descriptions of a mathematical process
|
|
9
10
|
* and associated information to convert scaled data
|
|
@@ -21,7 +22,7 @@ import { DTRange } from "node-opcua-nodeset-ua/source/dt_range"
|
|
|
21
22
|
export interface UAMVAOutputParameter_Base<T, DT extends DataType> extends UABaseDataVariable_Base<T/*g*/, DT> {
|
|
22
23
|
warningLimits?: UAProperty<DTRange, /*z*/DataType.ExtensionObject>;
|
|
23
24
|
alarmLimits?: UAProperty<DTRange, /*z*/DataType.ExtensionObject>;
|
|
24
|
-
alarmState: UAProperty<
|
|
25
|
+
alarmState: UAProperty<EnumAlarmState, /*z*/DataType.Int32>;
|
|
25
26
|
vendorSpecificError?: UAProperty<UAString, /*z*/DataType.String>;
|
|
26
27
|
}
|
|
27
28
|
export interface UAMVAOutputParameter<T, DT extends DataType> extends UABaseDataVariable<T, /*m*/DT>, UAMVAOutputParameter_Base<T, DT /*A*/> {
|
|
@@ -3,6 +3,9 @@ import { DataType, Variant } from "node-opcua-variant"
|
|
|
3
3
|
import { UInt32, UAString } from "node-opcua-basic-types"
|
|
4
4
|
import { UAYArrayItem } from "node-opcua-nodeset-ua/source/ua_y_array_item"
|
|
5
5
|
import { UADataItem } from "node-opcua-nodeset-ua/source/ua_data_item"
|
|
6
|
+
import { EnumDeviceHealth } from "node-opcua-nodeset-di/source/enum_device_health"
|
|
7
|
+
import { EnumExecutionCycle } from "./enum_execution_cycle"
|
|
8
|
+
import { EnumAcquisitionResultStatus } from "./enum_acquisition_result_status"
|
|
6
9
|
import { UAStream_parameterSet, UAStream_acquisitionData, UAStream, UAStream_Base } from "./ua_stream"
|
|
7
10
|
export interface UAParticleSizeMonitorDeviceStream_parameterSet extends UAStream_parameterSet { // Object
|
|
8
11
|
background?: UAYArrayItem<number, /*z*/DataType.Float>;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
|
-
import { DataType
|
|
2
|
+
import { DataType } from "node-opcua-variant"
|
|
3
3
|
import { DTRange } from "node-opcua-nodeset-ua/source/dt_range"
|
|
4
4
|
import { UADataItem } from "node-opcua-nodeset-ua/source/ua_data_item"
|
|
5
|
+
import { EnumDeviceHealth } from "node-opcua-nodeset-di/source/enum_device_health"
|
|
5
6
|
import { UAFunctionalGroup } from "node-opcua-nodeset-di/source/ua_functional_group"
|
|
6
7
|
import { UAAnalyserDevice_parameterSet, UAAnalyserDevice, UAAnalyserDevice_Base } from "./ua_analyser_device"
|
|
7
8
|
export interface UASpectrometerDevice_parameterSet extends UAAnalyserDevice_parameterSet { // Object
|
|
@@ -5,9 +5,13 @@ import { LocalizedText } from "node-opcua-data-model"
|
|
|
5
5
|
import { EUInformation } from "node-opcua-data-access"
|
|
6
6
|
import { UInt32, Int32, UAString } from "node-opcua-basic-types"
|
|
7
7
|
import { DTRange } from "node-opcua-nodeset-ua/source/dt_range"
|
|
8
|
+
import { EnumAxisScale } from "node-opcua-nodeset-ua/source/enum_axis_scale"
|
|
8
9
|
import { DTAxisInformation } from "node-opcua-nodeset-ua/source/dt_axis_information"
|
|
9
10
|
import { UAYArrayItem } from "node-opcua-nodeset-ua/source/ua_y_array_item"
|
|
10
11
|
import { UADataItem } from "node-opcua-nodeset-ua/source/ua_data_item"
|
|
12
|
+
import { EnumDeviceHealth } from "node-opcua-nodeset-di/source/enum_device_health"
|
|
13
|
+
import { EnumExecutionCycle } from "./enum_execution_cycle"
|
|
14
|
+
import { EnumAcquisitionResultStatus } from "./enum_acquisition_result_status"
|
|
11
15
|
import { UAStream_parameterSet, UAStream_configuration, UAStream_acquisitionSettings, UAStream_acquisitionStatus, UAStream_acquisitionData, UAStream, UAStream_Base } from "./ua_stream"
|
|
12
16
|
export interface UASpectrometerDeviceStream_parameterSet extends UAStream_parameterSet { // Object
|
|
13
17
|
activeBackground: UAYArrayItem<number, /*z*/DataType.Float>;
|
package/source/ua_stream.ts
CHANGED
|
@@ -5,8 +5,11 @@ import { UInt32, UAString } from "node-opcua-basic-types"
|
|
|
5
5
|
import { UADataItem } from "node-opcua-nodeset-ua/source/ua_data_item"
|
|
6
6
|
import { UAAnalogItem } from "node-opcua-nodeset-ua/source/ua_analog_item"
|
|
7
7
|
import { UAMultiStateDiscrete } from "node-opcua-nodeset-ua/source/ua_multi_state_discrete"
|
|
8
|
+
import { EnumDeviceHealth } from "node-opcua-nodeset-di/source/enum_device_health"
|
|
8
9
|
import { UAFunctionalGroup } from "node-opcua-nodeset-di/source/ua_functional_group"
|
|
9
10
|
import { UATopologyElement, UATopologyElement_Base } from "node-opcua-nodeset-di/source/ua_topology_element"
|
|
11
|
+
import { EnumExecutionCycle } from "./enum_execution_cycle"
|
|
12
|
+
import { EnumAcquisitionResultStatus } from "./enum_acquisition_result_status"
|
|
10
13
|
export interface UAStream_parameterSet extends UAObject { // Object
|
|
11
14
|
/**
|
|
12
15
|
* isEnabled
|
|
@@ -25,7 +28,7 @@ export interface UAStream_parameterSet extends UAObject { // Object
|
|
|
25
28
|
* diagnosticStatus
|
|
26
29
|
* Stream health status
|
|
27
30
|
*/
|
|
28
|
-
diagnosticStatus: UADataItem<
|
|
31
|
+
diagnosticStatus: UADataItem<EnumDeviceHealth, /*z*/DataType.Int32>;
|
|
29
32
|
/**
|
|
30
33
|
* lastCalibrationTime
|
|
31
34
|
* Time at which the last calibration was run
|
|
@@ -57,7 +60,7 @@ export interface UAStream_parameterSet extends UAObject { // Object
|
|
|
57
60
|
* executionCycle
|
|
58
61
|
* Indicates which Execution cycle is in progress
|
|
59
62
|
*/
|
|
60
|
-
executionCycle: UADataItem<
|
|
63
|
+
executionCycle: UADataItem<EnumExecutionCycle, /*z*/DataType.Int32>;
|
|
61
64
|
/**
|
|
62
65
|
* executionCycleSubcode
|
|
63
66
|
* Indicates which Execution cycle subcode is in
|
|
@@ -81,7 +84,7 @@ export interface UAStream_parameterSet extends UAObject { // Object
|
|
|
81
84
|
* acquisitionResultStatus
|
|
82
85
|
* Quality of the acquisition
|
|
83
86
|
*/
|
|
84
|
-
acquisitionResultStatus: UADataItem<
|
|
87
|
+
acquisitionResultStatus: UADataItem<EnumAcquisitionResultStatus, /*z*/DataType.Int32>;
|
|
85
88
|
/**
|
|
86
89
|
* rawData
|
|
87
90
|
* Raw data produced as a result of data acquisition
|
|
@@ -187,7 +190,7 @@ export interface UAStream_status extends UAFunctionalGroup { // Object
|
|
|
187
190
|
* diagnosticStatus
|
|
188
191
|
* Stream health status
|
|
189
192
|
*/
|
|
190
|
-
diagnosticStatus: UADataItem<
|
|
193
|
+
diagnosticStatus: UADataItem<EnumDeviceHealth, /*z*/DataType.Int32>;
|
|
191
194
|
/**
|
|
192
195
|
* lastCalibrationTime
|
|
193
196
|
* Time at which the last calibration was run
|
|
@@ -223,7 +226,7 @@ export interface UAStream_acquisitionStatus extends UAFunctionalGroup { // Objec
|
|
|
223
226
|
* executionCycle
|
|
224
227
|
* Indicates which Execution cycle is in progress
|
|
225
228
|
*/
|
|
226
|
-
executionCycle: UADataItem<
|
|
229
|
+
executionCycle: UADataItem<EnumExecutionCycle, /*z*/DataType.Int32>;
|
|
227
230
|
/**
|
|
228
231
|
* executionCycleSubcode
|
|
229
232
|
* Indicates which Execution cycle subcode is in
|
|
@@ -249,7 +252,7 @@ export interface UAStream_acquisitionData extends UAFunctionalGroup { // Object
|
|
|
249
252
|
* acquisitionResultStatus
|
|
250
253
|
* Quality of the acquisition
|
|
251
254
|
*/
|
|
252
|
-
acquisitionResultStatus: UADataItem<
|
|
255
|
+
acquisitionResultStatus: UADataItem<EnumAcquisitionResultStatus, /*z*/DataType.Int32>;
|
|
253
256
|
/**
|
|
254
257
|
* rawData
|
|
255
258
|
* Raw data produced as a result of data acquisition
|