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
|
@@ -14,40 +14,40 @@ import { EnumExecutionCycle } from "./enum_execution_cycle"
|
|
|
14
14
|
import { EnumAcquisitionResultStatus } from "./enum_acquisition_result_status"
|
|
15
15
|
import { UAStream_parameterSet, UAStream_configuration, UAStream_acquisitionSettings, UAStream_acquisitionStatus, UAStream_acquisitionData, UAStream, UAStream_Base } from "./ua_stream"
|
|
16
16
|
export interface UASpectrometerDeviceStream_parameterSet extends UAStream_parameterSet { // Object
|
|
17
|
-
activeBackground: UAYArrayItem<number,
|
|
18
|
-
activeBackground1?: UAYArrayItem<number,
|
|
19
|
-
spectralRange?: UADataItem<DTRange[],
|
|
17
|
+
activeBackground: UAYArrayItem<number, DataType.Float>;
|
|
18
|
+
activeBackground1?: UAYArrayItem<number, DataType.Float>;
|
|
19
|
+
spectralRange?: UADataItem<DTRange[], DataType.ExtensionObject>;
|
|
20
20
|
resolution?: UADataItem<any, any>;
|
|
21
|
-
requestedNumberOfScans?: UADataItem<Int32,
|
|
21
|
+
requestedNumberOfScans?: UADataItem<Int32, DataType.Int32>;
|
|
22
22
|
gain?: UADataItem<any, any>;
|
|
23
|
-
transmittanceCutoff?: UADataItem<DTRange,
|
|
24
|
-
absorbanceCutoff?: UADataItem<DTRange,
|
|
25
|
-
numberOfScansDone?: UADataItem<Int32,
|
|
26
|
-
totalNumberOfScansDone: UADataItem<Int32,
|
|
27
|
-
backgroundAcquisitionTime: UADataItem<Date,
|
|
28
|
-
pendingBackground: UAYArrayItem<number,
|
|
29
|
-
pendingBackground1?: UAYArrayItem<number,
|
|
23
|
+
transmittanceCutoff?: UADataItem<DTRange, DataType.ExtensionObject>;
|
|
24
|
+
absorbanceCutoff?: UADataItem<DTRange, DataType.ExtensionObject>;
|
|
25
|
+
numberOfScansDone?: UADataItem<Int32, DataType.Int32>;
|
|
26
|
+
totalNumberOfScansDone: UADataItem<Int32, DataType.Int32>;
|
|
27
|
+
backgroundAcquisitionTime: UADataItem<Date, DataType.DateTime>;
|
|
28
|
+
pendingBackground: UAYArrayItem<number, DataType.Float>;
|
|
29
|
+
pendingBackground1?: UAYArrayItem<number, DataType.Float>;
|
|
30
30
|
}
|
|
31
31
|
export interface UASpectrometerDeviceStream_configuration extends UAStream_configuration { // Object
|
|
32
|
-
activeBackground: UAYArrayItem<number,
|
|
33
|
-
activeBackground1?: UAYArrayItem<number,
|
|
32
|
+
activeBackground: UAYArrayItem<number, DataType.Float>;
|
|
33
|
+
activeBackground1?: UAYArrayItem<number, DataType.Float>;
|
|
34
34
|
}
|
|
35
35
|
export interface UASpectrometerDeviceStream_acquisitionSettings extends UAStream_acquisitionSettings { // Object
|
|
36
|
-
spectralRange?: UADataItem<DTRange[],
|
|
36
|
+
spectralRange?: UADataItem<DTRange[], DataType.ExtensionObject>;
|
|
37
37
|
resolution?: UADataItem<any, any>;
|
|
38
|
-
requestedNumberOfScans?: UADataItem<Int32,
|
|
38
|
+
requestedNumberOfScans?: UADataItem<Int32, DataType.Int32>;
|
|
39
39
|
gain?: UADataItem<any, any>;
|
|
40
|
-
transmittanceCutoff?: UADataItem<DTRange,
|
|
41
|
-
absorbanceCutoff?: UADataItem<DTRange,
|
|
40
|
+
transmittanceCutoff?: UADataItem<DTRange, DataType.ExtensionObject>;
|
|
41
|
+
absorbanceCutoff?: UADataItem<DTRange, DataType.ExtensionObject>;
|
|
42
42
|
}
|
|
43
43
|
export interface UASpectrometerDeviceStream_acquisitionStatus extends UAStream_acquisitionStatus { // Object
|
|
44
|
-
numberOfScansDone?: UADataItem<Int32,
|
|
44
|
+
numberOfScansDone?: UADataItem<Int32, DataType.Int32>;
|
|
45
45
|
}
|
|
46
46
|
export interface UASpectrometerDeviceStream_acquisitionData extends UAStream_acquisitionData { // Object
|
|
47
|
-
totalNumberOfScansDone: UADataItem<Int32,
|
|
48
|
-
backgroundAcquisitionTime: UADataItem<Date,
|
|
49
|
-
pendingBackground: UAYArrayItem<number,
|
|
50
|
-
pendingBackground1?: UAYArrayItem<number,
|
|
47
|
+
totalNumberOfScansDone: UADataItem<Int32, DataType.Int32>;
|
|
48
|
+
backgroundAcquisitionTime: UADataItem<Date, DataType.DateTime>;
|
|
49
|
+
pendingBackground: UAYArrayItem<number, DataType.Float>;
|
|
50
|
+
pendingBackground1?: UAYArrayItem<number, DataType.Float>;
|
|
51
51
|
}
|
|
52
52
|
/**
|
|
53
53
|
* | | |
|
package/source/ua_stream.ts
CHANGED
|
@@ -16,51 +16,51 @@ export interface UAStream_parameterSet extends UAObject { // Object
|
|
|
16
16
|
* True if this stream maybe used to perform
|
|
17
17
|
* acquisition
|
|
18
18
|
*/
|
|
19
|
-
isEnabled: UADataItem<boolean,
|
|
19
|
+
isEnabled: UADataItem<boolean, DataType.Boolean>;
|
|
20
20
|
/**
|
|
21
21
|
* isForced
|
|
22
22
|
* True if this stream is forced, which means that
|
|
23
23
|
* is the only Stream on this AnalyserChannel that
|
|
24
24
|
* can be used to perform acquisition
|
|
25
25
|
*/
|
|
26
|
-
isForced?: UADataItem<boolean,
|
|
26
|
+
isForced?: UADataItem<boolean, DataType.Boolean>;
|
|
27
27
|
/**
|
|
28
28
|
* diagnosticStatus
|
|
29
29
|
* Stream health status
|
|
30
30
|
*/
|
|
31
|
-
diagnosticStatus: UADataItem<EnumDeviceHealth,
|
|
31
|
+
diagnosticStatus: UADataItem<EnumDeviceHealth, DataType.Int32>;
|
|
32
32
|
/**
|
|
33
33
|
* lastCalibrationTime
|
|
34
34
|
* Time at which the last calibration was run
|
|
35
35
|
*/
|
|
36
|
-
lastCalibrationTime?: UADataItem<Date,
|
|
36
|
+
lastCalibrationTime?: UADataItem<Date, DataType.DateTime>;
|
|
37
37
|
/**
|
|
38
38
|
* lastValidationTime
|
|
39
39
|
* Time at which the last validation was run
|
|
40
40
|
*/
|
|
41
|
-
lastValidationTime?: UADataItem<Date,
|
|
41
|
+
lastValidationTime?: UADataItem<Date, DataType.DateTime>;
|
|
42
42
|
/**
|
|
43
43
|
* lastSampleTime
|
|
44
44
|
* Time at which the last sample was acquired
|
|
45
45
|
*/
|
|
46
|
-
lastSampleTime: UADataItem<Date,
|
|
46
|
+
lastSampleTime: UADataItem<Date, DataType.DateTime>;
|
|
47
47
|
/**
|
|
48
48
|
* timeBetweenSamples
|
|
49
49
|
* Number of milliseconds between two consecutive
|
|
50
50
|
* starts of acquisition
|
|
51
51
|
*/
|
|
52
|
-
timeBetweenSamples?: UAAnalogItem<number,
|
|
52
|
+
timeBetweenSamples?: UAAnalogItem<number, DataType.Double>;
|
|
53
53
|
/**
|
|
54
54
|
* isActive
|
|
55
55
|
* True if this stream is actually running,
|
|
56
56
|
* acquiring data
|
|
57
57
|
*/
|
|
58
|
-
isActive: UADataItem<boolean,
|
|
58
|
+
isActive: UADataItem<boolean, DataType.Boolean>;
|
|
59
59
|
/**
|
|
60
60
|
* executionCycle
|
|
61
61
|
* Indicates which Execution cycle is in progress
|
|
62
62
|
*/
|
|
63
|
-
executionCycle: UADataItem<EnumExecutionCycle,
|
|
63
|
+
executionCycle: UADataItem<EnumExecutionCycle, DataType.Int32>;
|
|
64
64
|
/**
|
|
65
65
|
* executionCycleSubcode
|
|
66
66
|
* Indicates which Execution cycle subcode is in
|
|
@@ -73,18 +73,18 @@ export interface UAStream_parameterSet extends UAObject { // Object
|
|
|
73
73
|
* of percentage of completion. Its value shall be
|
|
74
74
|
* between 0 and 100.
|
|
75
75
|
*/
|
|
76
|
-
progress: UADataItem<number,
|
|
76
|
+
progress: UADataItem<number, DataType.Float>;
|
|
77
77
|
/**
|
|
78
78
|
* acquisitionCounter
|
|
79
79
|
* Simple counter incremented after each Sampling
|
|
80
80
|
* acquisition performed on this Stream
|
|
81
81
|
*/
|
|
82
|
-
acquisitionCounter: UAAnalogItem<UInt32,
|
|
82
|
+
acquisitionCounter: UAAnalogItem<UInt32, DataType.UInt32>;
|
|
83
83
|
/**
|
|
84
84
|
* acquisitionResultStatus
|
|
85
85
|
* Quality of the acquisition
|
|
86
86
|
*/
|
|
87
|
-
acquisitionResultStatus: UADataItem<EnumAcquisitionResultStatus,
|
|
87
|
+
acquisitionResultStatus: UADataItem<EnumAcquisitionResultStatus, DataType.Int32>;
|
|
88
88
|
/**
|
|
89
89
|
* rawData
|
|
90
90
|
* Raw data produced as a result of data acquisition
|
|
@@ -103,7 +103,7 @@ export interface UAStream_parameterSet extends UAObject { // Object
|
|
|
103
103
|
* Difference in milliseconds between the start of
|
|
104
104
|
* sample extraction and the start of the analysis.
|
|
105
105
|
*/
|
|
106
|
-
offset?: UADataItem<number,
|
|
106
|
+
offset?: UADataItem<number, DataType.Double>;
|
|
107
107
|
/**
|
|
108
108
|
* acquisitionEndTime
|
|
109
109
|
* The end time of the AnalyseSample or
|
|
@@ -112,63 +112,63 @@ export interface UAStream_parameterSet extends UAObject { // Object
|
|
|
112
112
|
* AnalyserChannel_OperatingModeExecuteSubStateMachine
|
|
113
113
|
* state machine
|
|
114
114
|
*/
|
|
115
|
-
acquisitionEndTime: UADataItem<Date,
|
|
115
|
+
acquisitionEndTime: UADataItem<Date, DataType.DateTime>;
|
|
116
116
|
/**
|
|
117
117
|
* campaignId
|
|
118
118
|
* Defines the current campaign
|
|
119
119
|
*/
|
|
120
|
-
campaignId?: UADataItem<UAString,
|
|
120
|
+
campaignId?: UADataItem<UAString, DataType.String>;
|
|
121
121
|
/**
|
|
122
122
|
* batchId
|
|
123
123
|
* Defines the current batch
|
|
124
124
|
*/
|
|
125
|
-
batchId?: UADataItem<UAString,
|
|
125
|
+
batchId?: UADataItem<UAString, DataType.String>;
|
|
126
126
|
/**
|
|
127
127
|
* subBatchId
|
|
128
128
|
* Defines the current sub-batch
|
|
129
129
|
*/
|
|
130
|
-
subBatchId?: UADataItem<UAString,
|
|
130
|
+
subBatchId?: UADataItem<UAString, DataType.String>;
|
|
131
131
|
/**
|
|
132
132
|
* lotId
|
|
133
133
|
* Defines the current lot
|
|
134
134
|
*/
|
|
135
|
-
lotId?: UADataItem<UAString,
|
|
135
|
+
lotId?: UADataItem<UAString, DataType.String>;
|
|
136
136
|
/**
|
|
137
137
|
* materialId
|
|
138
138
|
* Defines the current material
|
|
139
139
|
*/
|
|
140
|
-
materialId?: UADataItem<UAString,
|
|
140
|
+
materialId?: UADataItem<UAString, DataType.String>;
|
|
141
141
|
/**
|
|
142
142
|
* process
|
|
143
143
|
* Current Process name
|
|
144
144
|
*/
|
|
145
|
-
process?: UADataItem<UAString,
|
|
145
|
+
process?: UADataItem<UAString, DataType.String>;
|
|
146
146
|
/**
|
|
147
147
|
* unit
|
|
148
148
|
* Current Unit name
|
|
149
149
|
*/
|
|
150
|
-
unit?: UADataItem<UAString,
|
|
150
|
+
unit?: UADataItem<UAString, DataType.String>;
|
|
151
151
|
/**
|
|
152
152
|
* operation
|
|
153
153
|
* Current Operation name
|
|
154
154
|
*/
|
|
155
|
-
operation?: UADataItem<UAString,
|
|
155
|
+
operation?: UADataItem<UAString, DataType.String>;
|
|
156
156
|
/**
|
|
157
157
|
* phase
|
|
158
158
|
* Current Phase name
|
|
159
159
|
*/
|
|
160
|
-
phase?: UADataItem<UAString,
|
|
160
|
+
phase?: UADataItem<UAString, DataType.String>;
|
|
161
161
|
/**
|
|
162
162
|
* userId
|
|
163
163
|
* Login name of the user who is logged on at the
|
|
164
164
|
* device console
|
|
165
165
|
*/
|
|
166
|
-
userId?: UADataItem<UAString,
|
|
166
|
+
userId?: UADataItem<UAString, DataType.String>;
|
|
167
167
|
/**
|
|
168
168
|
* sampleId
|
|
169
169
|
* Identifier for the sample
|
|
170
170
|
*/
|
|
171
|
-
sampleId?: UADataItem<UAString,
|
|
171
|
+
sampleId?: UADataItem<UAString, DataType.String>;
|
|
172
172
|
}
|
|
173
173
|
export interface UAStream_configuration extends UAFunctionalGroup { // Object
|
|
174
174
|
/**
|
|
@@ -176,36 +176,36 @@ export interface UAStream_configuration extends UAFunctionalGroup { // Object
|
|
|
176
176
|
* True if this stream maybe used to perform
|
|
177
177
|
* acquisition
|
|
178
178
|
*/
|
|
179
|
-
isEnabled: UADataItem<boolean,
|
|
179
|
+
isEnabled: UADataItem<boolean, DataType.Boolean>;
|
|
180
180
|
/**
|
|
181
181
|
* isForced
|
|
182
182
|
* True if this stream is forced, which means that
|
|
183
183
|
* is the only Stream on this AnalyserChannel that
|
|
184
184
|
* can be used to perform acquisition
|
|
185
185
|
*/
|
|
186
|
-
isForced?: UADataItem<boolean,
|
|
186
|
+
isForced?: UADataItem<boolean, DataType.Boolean>;
|
|
187
187
|
}
|
|
188
188
|
export interface UAStream_status extends UAFunctionalGroup { // Object
|
|
189
189
|
/**
|
|
190
190
|
* diagnosticStatus
|
|
191
191
|
* Stream health status
|
|
192
192
|
*/
|
|
193
|
-
diagnosticStatus: UADataItem<EnumDeviceHealth,
|
|
193
|
+
diagnosticStatus: UADataItem<EnumDeviceHealth, DataType.Int32>;
|
|
194
194
|
/**
|
|
195
195
|
* lastCalibrationTime
|
|
196
196
|
* Time at which the last calibration was run
|
|
197
197
|
*/
|
|
198
|
-
lastCalibrationTime?: UADataItem<Date,
|
|
198
|
+
lastCalibrationTime?: UADataItem<Date, DataType.DateTime>;
|
|
199
199
|
/**
|
|
200
200
|
* lastValidationTime
|
|
201
201
|
* Time at which the last validation was run
|
|
202
202
|
*/
|
|
203
|
-
lastValidationTime?: UADataItem<Date,
|
|
203
|
+
lastValidationTime?: UADataItem<Date, DataType.DateTime>;
|
|
204
204
|
/**
|
|
205
205
|
* lastSampleTime
|
|
206
206
|
* Time at which the last sample was acquired
|
|
207
207
|
*/
|
|
208
|
-
lastSampleTime: UADataItem<Date,
|
|
208
|
+
lastSampleTime: UADataItem<Date, DataType.DateTime>;
|
|
209
209
|
}
|
|
210
210
|
export interface UAStream_acquisitionSettings extends UAFunctionalGroup { // Object
|
|
211
211
|
/**
|
|
@@ -213,7 +213,7 @@ export interface UAStream_acquisitionSettings extends UAFunctionalGroup { // Obj
|
|
|
213
213
|
* Number of milliseconds between two consecutive
|
|
214
214
|
* starts of acquisition
|
|
215
215
|
*/
|
|
216
|
-
timeBetweenSamples?: UAAnalogItem<number,
|
|
216
|
+
timeBetweenSamples?: UAAnalogItem<number, DataType.Double>;
|
|
217
217
|
}
|
|
218
218
|
export interface UAStream_acquisitionStatus extends UAFunctionalGroup { // Object
|
|
219
219
|
/**
|
|
@@ -221,12 +221,12 @@ export interface UAStream_acquisitionStatus extends UAFunctionalGroup { // Objec
|
|
|
221
221
|
* True if this stream is actually running,
|
|
222
222
|
* acquiring data
|
|
223
223
|
*/
|
|
224
|
-
isActive: UADataItem<boolean,
|
|
224
|
+
isActive: UADataItem<boolean, DataType.Boolean>;
|
|
225
225
|
/**
|
|
226
226
|
* executionCycle
|
|
227
227
|
* Indicates which Execution cycle is in progress
|
|
228
228
|
*/
|
|
229
|
-
executionCycle: UADataItem<EnumExecutionCycle,
|
|
229
|
+
executionCycle: UADataItem<EnumExecutionCycle, DataType.Int32>;
|
|
230
230
|
/**
|
|
231
231
|
* executionCycleSubcode
|
|
232
232
|
* Indicates which Execution cycle subcode is in
|
|
@@ -239,7 +239,7 @@ export interface UAStream_acquisitionStatus extends UAFunctionalGroup { // Objec
|
|
|
239
239
|
* of percentage of completion. Its value shall be
|
|
240
240
|
* between 0 and 100.
|
|
241
241
|
*/
|
|
242
|
-
progress: UADataItem<number,
|
|
242
|
+
progress: UADataItem<number, DataType.Float>;
|
|
243
243
|
}
|
|
244
244
|
export interface UAStream_acquisitionData extends UAFunctionalGroup { // Object
|
|
245
245
|
/**
|
|
@@ -247,12 +247,12 @@ export interface UAStream_acquisitionData extends UAFunctionalGroup { // Object
|
|
|
247
247
|
* Simple counter incremented after each Sampling
|
|
248
248
|
* acquisition performed on this Stream
|
|
249
249
|
*/
|
|
250
|
-
acquisitionCounter: UAAnalogItem<UInt32,
|
|
250
|
+
acquisitionCounter: UAAnalogItem<UInt32, DataType.UInt32>;
|
|
251
251
|
/**
|
|
252
252
|
* acquisitionResultStatus
|
|
253
253
|
* Quality of the acquisition
|
|
254
254
|
*/
|
|
255
|
-
acquisitionResultStatus: UADataItem<EnumAcquisitionResultStatus,
|
|
255
|
+
acquisitionResultStatus: UADataItem<EnumAcquisitionResultStatus, DataType.Int32>;
|
|
256
256
|
/**
|
|
257
257
|
* rawData
|
|
258
258
|
* Raw data produced as a result of data acquisition
|
|
@@ -271,7 +271,7 @@ export interface UAStream_acquisitionData extends UAFunctionalGroup { // Object
|
|
|
271
271
|
* Difference in milliseconds between the start of
|
|
272
272
|
* sample extraction and the start of the analysis.
|
|
273
273
|
*/
|
|
274
|
-
offset?: UADataItem<number,
|
|
274
|
+
offset?: UADataItem<number, DataType.Double>;
|
|
275
275
|
/**
|
|
276
276
|
* acquisitionEndTime
|
|
277
277
|
* The end time of the AnalyseSample or
|
|
@@ -280,65 +280,65 @@ export interface UAStream_acquisitionData extends UAFunctionalGroup { // Object
|
|
|
280
280
|
* AnalyserChannel_OperatingModeExecuteSubStateMachine
|
|
281
281
|
* state machine
|
|
282
282
|
*/
|
|
283
|
-
acquisitionEndTime: UADataItem<Date,
|
|
283
|
+
acquisitionEndTime: UADataItem<Date, DataType.DateTime>;
|
|
284
284
|
}
|
|
285
285
|
export interface UAStream_context extends UAFunctionalGroup { // Object
|
|
286
286
|
/**
|
|
287
287
|
* campaignId
|
|
288
288
|
* Defines the current campaign
|
|
289
289
|
*/
|
|
290
|
-
campaignId?: UADataItem<UAString,
|
|
290
|
+
campaignId?: UADataItem<UAString, DataType.String>;
|
|
291
291
|
/**
|
|
292
292
|
* batchId
|
|
293
293
|
* Defines the current batch
|
|
294
294
|
*/
|
|
295
|
-
batchId?: UADataItem<UAString,
|
|
295
|
+
batchId?: UADataItem<UAString, DataType.String>;
|
|
296
296
|
/**
|
|
297
297
|
* subBatchId
|
|
298
298
|
* Defines the current sub-batch
|
|
299
299
|
*/
|
|
300
|
-
subBatchId?: UADataItem<UAString,
|
|
300
|
+
subBatchId?: UADataItem<UAString, DataType.String>;
|
|
301
301
|
/**
|
|
302
302
|
* lotId
|
|
303
303
|
* Defines the current lot
|
|
304
304
|
*/
|
|
305
|
-
lotId?: UADataItem<UAString,
|
|
305
|
+
lotId?: UADataItem<UAString, DataType.String>;
|
|
306
306
|
/**
|
|
307
307
|
* materialId
|
|
308
308
|
* Defines the current material
|
|
309
309
|
*/
|
|
310
|
-
materialId?: UADataItem<UAString,
|
|
310
|
+
materialId?: UADataItem<UAString, DataType.String>;
|
|
311
311
|
/**
|
|
312
312
|
* process
|
|
313
313
|
* Current Process name
|
|
314
314
|
*/
|
|
315
|
-
process?: UADataItem<UAString,
|
|
315
|
+
process?: UADataItem<UAString, DataType.String>;
|
|
316
316
|
/**
|
|
317
317
|
* unit
|
|
318
318
|
* Current Unit name
|
|
319
319
|
*/
|
|
320
|
-
unit?: UADataItem<UAString,
|
|
320
|
+
unit?: UADataItem<UAString, DataType.String>;
|
|
321
321
|
/**
|
|
322
322
|
* operation
|
|
323
323
|
* Current Operation name
|
|
324
324
|
*/
|
|
325
|
-
operation?: UADataItem<UAString,
|
|
325
|
+
operation?: UADataItem<UAString, DataType.String>;
|
|
326
326
|
/**
|
|
327
327
|
* phase
|
|
328
328
|
* Current Phase name
|
|
329
329
|
*/
|
|
330
|
-
phase?: UADataItem<UAString,
|
|
330
|
+
phase?: UADataItem<UAString, DataType.String>;
|
|
331
331
|
/**
|
|
332
332
|
* userId
|
|
333
333
|
* Login name of the user who is logged on at the
|
|
334
334
|
* device console
|
|
335
335
|
*/
|
|
336
|
-
userId?: UADataItem<UAString,
|
|
336
|
+
userId?: UADataItem<UAString, DataType.String>;
|
|
337
337
|
/**
|
|
338
338
|
* sampleId
|
|
339
339
|
* Identifier for the sample
|
|
340
340
|
*/
|
|
341
|
-
sampleId?: UADataItem<UAString,
|
|
341
|
+
sampleId?: UADataItem<UAString, DataType.String>;
|
|
342
342
|
}
|
|
343
343
|
/**
|
|
344
344
|
* | | |
|
|
@@ -354,6 +354,7 @@ export interface UAStream_Base extends UATopologyElement_Base {
|
|
|
354
354
|
* Flat list of Parameters
|
|
355
355
|
*/
|
|
356
356
|
parameterSet?: UAStream_parameterSet;
|
|
357
|
+
// PlaceHolder for $GroupIdentifier$
|
|
357
358
|
configuration: UAStream_configuration;
|
|
358
359
|
status: UAStream_status;
|
|
359
360
|
acquisitionSettings: UAStream_acquisitionSettings;
|