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_nmr_device.d.ts
CHANGED
|
@@ -7,7 +7,6 @@ import { UAAnalyserDevice, UAAnalyserDevice_Base } from "./ua_analyser_device";
|
|
|
7
7
|
* |typedDefinition |2:NMRDeviceType ns=2;i=1016 |
|
|
8
8
|
* |isAbstract |false |
|
|
9
9
|
*/
|
|
10
|
-
export
|
|
11
|
-
}
|
|
10
|
+
export declare type UANMRDevice_Base = UAAnalyserDevice_Base;
|
|
12
11
|
export interface UANMRDevice extends UAAnalyserDevice, UANMRDevice_Base {
|
|
13
12
|
}
|
|
@@ -7,7 +7,6 @@ import { UAAnalyserDevice, UAAnalyserDevice_Base } from "./ua_analyser_device";
|
|
|
7
7
|
* |typedDefinition |2:ParticleSizeMonitorDeviceType ns=2;i=1012 |
|
|
8
8
|
* |isAbstract |false |
|
|
9
9
|
*/
|
|
10
|
-
export
|
|
11
|
-
}
|
|
10
|
+
export declare type UAParticleSizeMonitorDevice_Base = UAAnalyserDevice_Base;
|
|
12
11
|
export interface UAParticleSizeMonitorDevice extends UAAnalyserDevice, UAParticleSizeMonitorDevice_Base {
|
|
13
12
|
}
|
|
@@ -3,14 +3,14 @@ import { UAYArrayItem } from "node-opcua-nodeset-ua/source/ua_y_array_item";
|
|
|
3
3
|
import { UADataItem } from "node-opcua-nodeset-ua/source/ua_data_item";
|
|
4
4
|
import { UAStream_parameterSet, UAStream_acquisitionData, UAStream, UAStream_Base } from "./ua_stream";
|
|
5
5
|
export interface UAParticleSizeMonitorDeviceStream_parameterSet extends UAStream_parameterSet {
|
|
6
|
-
background?: UAYArrayItem<number,
|
|
7
|
-
sizeDistribution: UAYArrayItem<number,
|
|
8
|
-
backgroundAcquisitionTime: UADataItem<Date,
|
|
6
|
+
background?: UAYArrayItem<number, DataType.Float>;
|
|
7
|
+
sizeDistribution: UAYArrayItem<number, DataType.Float>;
|
|
8
|
+
backgroundAcquisitionTime: UADataItem<Date, DataType.DateTime>;
|
|
9
9
|
}
|
|
10
10
|
export interface UAParticleSizeMonitorDeviceStream_acquisitionData extends UAStream_acquisitionData {
|
|
11
|
-
background?: UAYArrayItem<number,
|
|
12
|
-
sizeDistribution: UAYArrayItem<number,
|
|
13
|
-
backgroundAcquisitionTime: UADataItem<Date,
|
|
11
|
+
background?: UAYArrayItem<number, DataType.Float>;
|
|
12
|
+
sizeDistribution: UAYArrayItem<number, DataType.Float>;
|
|
13
|
+
backgroundAcquisitionTime: UADataItem<Date, DataType.DateTime>;
|
|
14
14
|
}
|
|
15
15
|
/**
|
|
16
16
|
* | | |
|
|
@@ -15,7 +15,6 @@ import { UADataItem, UADataItem_Base } from "node-opcua-nodeset-ua/source/ua_dat
|
|
|
15
15
|
* |dataType Name |undefined ns=0;i=0 |
|
|
16
16
|
* |isAbstract |false |
|
|
17
17
|
*/
|
|
18
|
-
export
|
|
19
|
-
|
|
20
|
-
export interface UAProcessVariable<T, DT extends DataType> extends UADataItem<T, /*m*/ DT>, UAProcessVariable_Base<T, DT> {
|
|
18
|
+
export declare type UAProcessVariable_Base<T, DT extends DataType> = UADataItem_Base<T, DT>;
|
|
19
|
+
export interface UAProcessVariable<T, DT extends DataType> extends UADataItem<T, DT>, UAProcessVariable_Base<T, DT> {
|
|
21
20
|
}
|
|
@@ -7,7 +7,6 @@ import { UAAccessory, UAAccessory_Base } from "./ua_accessory";
|
|
|
7
7
|
* |typedDefinition |2:SmartSamplingSystemType ns=2;i=9359 |
|
|
8
8
|
* |isAbstract |false |
|
|
9
9
|
*/
|
|
10
|
-
export
|
|
11
|
-
}
|
|
10
|
+
export declare type UASmartSamplingSystem_Base = UAAccessory_Base;
|
|
12
11
|
export interface UASmartSamplingSystem extends UAAccessory, UASmartSamplingSystem_Base {
|
|
13
12
|
}
|
package/dist/ua_source.d.ts
CHANGED
|
@@ -7,7 +7,6 @@ import { UAAccessory, UAAccessory_Base } from "./ua_accessory";
|
|
|
7
7
|
* |typedDefinition |2:SourceType ns=2;i=9368 |
|
|
8
8
|
* |isAbstract |false |
|
|
9
9
|
*/
|
|
10
|
-
export
|
|
11
|
-
}
|
|
10
|
+
export declare type UASource_Base = UAAccessory_Base;
|
|
12
11
|
export interface UASource extends UAAccessory, UASource_Base {
|
|
13
12
|
}
|
|
@@ -4,7 +4,7 @@ import { UADataItem } from "node-opcua-nodeset-ua/source/ua_data_item";
|
|
|
4
4
|
import { UAFunctionalGroup } from "node-opcua-nodeset-di/source/ua_functional_group";
|
|
5
5
|
import { UAAnalyserDevice_parameterSet, UAAnalyserDevice, UAAnalyserDevice_Base } from "./ua_analyser_device";
|
|
6
6
|
export interface UASpectrometerDevice_parameterSet extends UAAnalyserDevice_parameterSet {
|
|
7
|
-
spectralRange?: UADataItem<DTRange[],
|
|
7
|
+
spectralRange?: UADataItem<DTRange[], DataType.ExtensionObject>;
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
10
|
* | | |
|
|
@@ -6,40 +6,40 @@ import { UAYArrayItem } from "node-opcua-nodeset-ua/source/ua_y_array_item";
|
|
|
6
6
|
import { UADataItem } from "node-opcua-nodeset-ua/source/ua_data_item";
|
|
7
7
|
import { UAStream_parameterSet, UAStream_configuration, UAStream_acquisitionSettings, UAStream_acquisitionStatus, UAStream_acquisitionData, UAStream, UAStream_Base } from "./ua_stream";
|
|
8
8
|
export interface UASpectrometerDeviceStream_parameterSet extends UAStream_parameterSet {
|
|
9
|
-
activeBackground: UAYArrayItem<number,
|
|
10
|
-
activeBackground1?: UAYArrayItem<number,
|
|
11
|
-
spectralRange?: UADataItem<DTRange[],
|
|
9
|
+
activeBackground: UAYArrayItem<number, DataType.Float>;
|
|
10
|
+
activeBackground1?: UAYArrayItem<number, DataType.Float>;
|
|
11
|
+
spectralRange?: UADataItem<DTRange[], DataType.ExtensionObject>;
|
|
12
12
|
resolution?: UADataItem<any, any>;
|
|
13
|
-
requestedNumberOfScans?: UADataItem<Int32,
|
|
13
|
+
requestedNumberOfScans?: UADataItem<Int32, DataType.Int32>;
|
|
14
14
|
gain?: UADataItem<any, any>;
|
|
15
|
-
transmittanceCutoff?: UADataItem<DTRange,
|
|
16
|
-
absorbanceCutoff?: UADataItem<DTRange,
|
|
17
|
-
numberOfScansDone?: UADataItem<Int32,
|
|
18
|
-
totalNumberOfScansDone: UADataItem<Int32,
|
|
19
|
-
backgroundAcquisitionTime: UADataItem<Date,
|
|
20
|
-
pendingBackground: UAYArrayItem<number,
|
|
21
|
-
pendingBackground1?: UAYArrayItem<number,
|
|
15
|
+
transmittanceCutoff?: UADataItem<DTRange, DataType.ExtensionObject>;
|
|
16
|
+
absorbanceCutoff?: UADataItem<DTRange, DataType.ExtensionObject>;
|
|
17
|
+
numberOfScansDone?: UADataItem<Int32, DataType.Int32>;
|
|
18
|
+
totalNumberOfScansDone: UADataItem<Int32, DataType.Int32>;
|
|
19
|
+
backgroundAcquisitionTime: UADataItem<Date, DataType.DateTime>;
|
|
20
|
+
pendingBackground: UAYArrayItem<number, DataType.Float>;
|
|
21
|
+
pendingBackground1?: UAYArrayItem<number, DataType.Float>;
|
|
22
22
|
}
|
|
23
23
|
export interface UASpectrometerDeviceStream_configuration extends UAStream_configuration {
|
|
24
|
-
activeBackground: UAYArrayItem<number,
|
|
25
|
-
activeBackground1?: UAYArrayItem<number,
|
|
24
|
+
activeBackground: UAYArrayItem<number, DataType.Float>;
|
|
25
|
+
activeBackground1?: UAYArrayItem<number, DataType.Float>;
|
|
26
26
|
}
|
|
27
27
|
export interface UASpectrometerDeviceStream_acquisitionSettings extends UAStream_acquisitionSettings {
|
|
28
|
-
spectralRange?: UADataItem<DTRange[],
|
|
28
|
+
spectralRange?: UADataItem<DTRange[], DataType.ExtensionObject>;
|
|
29
29
|
resolution?: UADataItem<any, any>;
|
|
30
|
-
requestedNumberOfScans?: UADataItem<Int32,
|
|
30
|
+
requestedNumberOfScans?: UADataItem<Int32, DataType.Int32>;
|
|
31
31
|
gain?: UADataItem<any, any>;
|
|
32
|
-
transmittanceCutoff?: UADataItem<DTRange,
|
|
33
|
-
absorbanceCutoff?: UADataItem<DTRange,
|
|
32
|
+
transmittanceCutoff?: UADataItem<DTRange, DataType.ExtensionObject>;
|
|
33
|
+
absorbanceCutoff?: UADataItem<DTRange, DataType.ExtensionObject>;
|
|
34
34
|
}
|
|
35
35
|
export interface UASpectrometerDeviceStream_acquisitionStatus extends UAStream_acquisitionStatus {
|
|
36
|
-
numberOfScansDone?: UADataItem<Int32,
|
|
36
|
+
numberOfScansDone?: UADataItem<Int32, DataType.Int32>;
|
|
37
37
|
}
|
|
38
38
|
export interface UASpectrometerDeviceStream_acquisitionData extends UAStream_acquisitionData {
|
|
39
|
-
totalNumberOfScansDone: UADataItem<Int32,
|
|
40
|
-
backgroundAcquisitionTime: UADataItem<Date,
|
|
41
|
-
pendingBackground: UAYArrayItem<number,
|
|
42
|
-
pendingBackground1?: UAYArrayItem<number,
|
|
39
|
+
totalNumberOfScansDone: UADataItem<Int32, DataType.Int32>;
|
|
40
|
+
backgroundAcquisitionTime: UADataItem<Date, DataType.DateTime>;
|
|
41
|
+
pendingBackground: UAYArrayItem<number, DataType.Float>;
|
|
42
|
+
pendingBackground1?: UAYArrayItem<number, DataType.Float>;
|
|
43
43
|
}
|
|
44
44
|
/**
|
|
45
45
|
* | | |
|
package/dist/ua_stream.d.ts
CHANGED
|
@@ -15,51 +15,51 @@ export interface UAStream_parameterSet extends UAObject {
|
|
|
15
15
|
* True if this stream maybe used to perform
|
|
16
16
|
* acquisition
|
|
17
17
|
*/
|
|
18
|
-
isEnabled: UADataItem<boolean,
|
|
18
|
+
isEnabled: UADataItem<boolean, DataType.Boolean>;
|
|
19
19
|
/**
|
|
20
20
|
* isForced
|
|
21
21
|
* True if this stream is forced, which means that
|
|
22
22
|
* is the only Stream on this AnalyserChannel that
|
|
23
23
|
* can be used to perform acquisition
|
|
24
24
|
*/
|
|
25
|
-
isForced?: UADataItem<boolean,
|
|
25
|
+
isForced?: UADataItem<boolean, DataType.Boolean>;
|
|
26
26
|
/**
|
|
27
27
|
* diagnosticStatus
|
|
28
28
|
* Stream health status
|
|
29
29
|
*/
|
|
30
|
-
diagnosticStatus: UADataItem<EnumDeviceHealth,
|
|
30
|
+
diagnosticStatus: UADataItem<EnumDeviceHealth, DataType.Int32>;
|
|
31
31
|
/**
|
|
32
32
|
* lastCalibrationTime
|
|
33
33
|
* Time at which the last calibration was run
|
|
34
34
|
*/
|
|
35
|
-
lastCalibrationTime?: UADataItem<Date,
|
|
35
|
+
lastCalibrationTime?: UADataItem<Date, DataType.DateTime>;
|
|
36
36
|
/**
|
|
37
37
|
* lastValidationTime
|
|
38
38
|
* Time at which the last validation was run
|
|
39
39
|
*/
|
|
40
|
-
lastValidationTime?: UADataItem<Date,
|
|
40
|
+
lastValidationTime?: UADataItem<Date, DataType.DateTime>;
|
|
41
41
|
/**
|
|
42
42
|
* lastSampleTime
|
|
43
43
|
* Time at which the last sample was acquired
|
|
44
44
|
*/
|
|
45
|
-
lastSampleTime: UADataItem<Date,
|
|
45
|
+
lastSampleTime: UADataItem<Date, DataType.DateTime>;
|
|
46
46
|
/**
|
|
47
47
|
* timeBetweenSamples
|
|
48
48
|
* Number of milliseconds between two consecutive
|
|
49
49
|
* starts of acquisition
|
|
50
50
|
*/
|
|
51
|
-
timeBetweenSamples?: UAAnalogItem<number,
|
|
51
|
+
timeBetweenSamples?: UAAnalogItem<number, DataType.Double>;
|
|
52
52
|
/**
|
|
53
53
|
* isActive
|
|
54
54
|
* True if this stream is actually running,
|
|
55
55
|
* acquiring data
|
|
56
56
|
*/
|
|
57
|
-
isActive: UADataItem<boolean,
|
|
57
|
+
isActive: UADataItem<boolean, DataType.Boolean>;
|
|
58
58
|
/**
|
|
59
59
|
* executionCycle
|
|
60
60
|
* Indicates which Execution cycle is in progress
|
|
61
61
|
*/
|
|
62
|
-
executionCycle: UADataItem<EnumExecutionCycle,
|
|
62
|
+
executionCycle: UADataItem<EnumExecutionCycle, DataType.Int32>;
|
|
63
63
|
/**
|
|
64
64
|
* executionCycleSubcode
|
|
65
65
|
* Indicates which Execution cycle subcode is in
|
|
@@ -72,18 +72,18 @@ export interface UAStream_parameterSet extends UAObject {
|
|
|
72
72
|
* of percentage of completion. Its value shall be
|
|
73
73
|
* between 0 and 100.
|
|
74
74
|
*/
|
|
75
|
-
progress: UADataItem<number,
|
|
75
|
+
progress: UADataItem<number, DataType.Float>;
|
|
76
76
|
/**
|
|
77
77
|
* acquisitionCounter
|
|
78
78
|
* Simple counter incremented after each Sampling
|
|
79
79
|
* acquisition performed on this Stream
|
|
80
80
|
*/
|
|
81
|
-
acquisitionCounter: UAAnalogItem<UInt32,
|
|
81
|
+
acquisitionCounter: UAAnalogItem<UInt32, DataType.UInt32>;
|
|
82
82
|
/**
|
|
83
83
|
* acquisitionResultStatus
|
|
84
84
|
* Quality of the acquisition
|
|
85
85
|
*/
|
|
86
|
-
acquisitionResultStatus: UADataItem<EnumAcquisitionResultStatus,
|
|
86
|
+
acquisitionResultStatus: UADataItem<EnumAcquisitionResultStatus, DataType.Int32>;
|
|
87
87
|
/**
|
|
88
88
|
* rawData
|
|
89
89
|
* Raw data produced as a result of data acquisition
|
|
@@ -102,7 +102,7 @@ export interface UAStream_parameterSet extends UAObject {
|
|
|
102
102
|
* Difference in milliseconds between the start of
|
|
103
103
|
* sample extraction and the start of the analysis.
|
|
104
104
|
*/
|
|
105
|
-
offset?: UADataItem<number,
|
|
105
|
+
offset?: UADataItem<number, DataType.Double>;
|
|
106
106
|
/**
|
|
107
107
|
* acquisitionEndTime
|
|
108
108
|
* The end time of the AnalyseSample or
|
|
@@ -111,63 +111,63 @@ export interface UAStream_parameterSet extends UAObject {
|
|
|
111
111
|
* AnalyserChannel_OperatingModeExecuteSubStateMachine
|
|
112
112
|
* state machine
|
|
113
113
|
*/
|
|
114
|
-
acquisitionEndTime: UADataItem<Date,
|
|
114
|
+
acquisitionEndTime: UADataItem<Date, DataType.DateTime>;
|
|
115
115
|
/**
|
|
116
116
|
* campaignId
|
|
117
117
|
* Defines the current campaign
|
|
118
118
|
*/
|
|
119
|
-
campaignId?: UADataItem<UAString,
|
|
119
|
+
campaignId?: UADataItem<UAString, DataType.String>;
|
|
120
120
|
/**
|
|
121
121
|
* batchId
|
|
122
122
|
* Defines the current batch
|
|
123
123
|
*/
|
|
124
|
-
batchId?: UADataItem<UAString,
|
|
124
|
+
batchId?: UADataItem<UAString, DataType.String>;
|
|
125
125
|
/**
|
|
126
126
|
* subBatchId
|
|
127
127
|
* Defines the current sub-batch
|
|
128
128
|
*/
|
|
129
|
-
subBatchId?: UADataItem<UAString,
|
|
129
|
+
subBatchId?: UADataItem<UAString, DataType.String>;
|
|
130
130
|
/**
|
|
131
131
|
* lotId
|
|
132
132
|
* Defines the current lot
|
|
133
133
|
*/
|
|
134
|
-
lotId?: UADataItem<UAString,
|
|
134
|
+
lotId?: UADataItem<UAString, DataType.String>;
|
|
135
135
|
/**
|
|
136
136
|
* materialId
|
|
137
137
|
* Defines the current material
|
|
138
138
|
*/
|
|
139
|
-
materialId?: UADataItem<UAString,
|
|
139
|
+
materialId?: UADataItem<UAString, DataType.String>;
|
|
140
140
|
/**
|
|
141
141
|
* process
|
|
142
142
|
* Current Process name
|
|
143
143
|
*/
|
|
144
|
-
process?: UADataItem<UAString,
|
|
144
|
+
process?: UADataItem<UAString, DataType.String>;
|
|
145
145
|
/**
|
|
146
146
|
* unit
|
|
147
147
|
* Current Unit name
|
|
148
148
|
*/
|
|
149
|
-
unit?: UADataItem<UAString,
|
|
149
|
+
unit?: UADataItem<UAString, DataType.String>;
|
|
150
150
|
/**
|
|
151
151
|
* operation
|
|
152
152
|
* Current Operation name
|
|
153
153
|
*/
|
|
154
|
-
operation?: UADataItem<UAString,
|
|
154
|
+
operation?: UADataItem<UAString, DataType.String>;
|
|
155
155
|
/**
|
|
156
156
|
* phase
|
|
157
157
|
* Current Phase name
|
|
158
158
|
*/
|
|
159
|
-
phase?: UADataItem<UAString,
|
|
159
|
+
phase?: UADataItem<UAString, DataType.String>;
|
|
160
160
|
/**
|
|
161
161
|
* userId
|
|
162
162
|
* Login name of the user who is logged on at the
|
|
163
163
|
* device console
|
|
164
164
|
*/
|
|
165
|
-
userId?: UADataItem<UAString,
|
|
165
|
+
userId?: UADataItem<UAString, DataType.String>;
|
|
166
166
|
/**
|
|
167
167
|
* sampleId
|
|
168
168
|
* Identifier for the sample
|
|
169
169
|
*/
|
|
170
|
-
sampleId?: UADataItem<UAString,
|
|
170
|
+
sampleId?: UADataItem<UAString, DataType.String>;
|
|
171
171
|
}
|
|
172
172
|
export interface UAStream_configuration extends UAFunctionalGroup {
|
|
173
173
|
/**
|
|
@@ -175,36 +175,36 @@ export interface UAStream_configuration extends UAFunctionalGroup {
|
|
|
175
175
|
* True if this stream maybe used to perform
|
|
176
176
|
* acquisition
|
|
177
177
|
*/
|
|
178
|
-
isEnabled: UADataItem<boolean,
|
|
178
|
+
isEnabled: UADataItem<boolean, DataType.Boolean>;
|
|
179
179
|
/**
|
|
180
180
|
* isForced
|
|
181
181
|
* True if this stream is forced, which means that
|
|
182
182
|
* is the only Stream on this AnalyserChannel that
|
|
183
183
|
* can be used to perform acquisition
|
|
184
184
|
*/
|
|
185
|
-
isForced?: UADataItem<boolean,
|
|
185
|
+
isForced?: UADataItem<boolean, DataType.Boolean>;
|
|
186
186
|
}
|
|
187
187
|
export interface UAStream_status extends UAFunctionalGroup {
|
|
188
188
|
/**
|
|
189
189
|
* diagnosticStatus
|
|
190
190
|
* Stream health status
|
|
191
191
|
*/
|
|
192
|
-
diagnosticStatus: UADataItem<EnumDeviceHealth,
|
|
192
|
+
diagnosticStatus: UADataItem<EnumDeviceHealth, DataType.Int32>;
|
|
193
193
|
/**
|
|
194
194
|
* lastCalibrationTime
|
|
195
195
|
* Time at which the last calibration was run
|
|
196
196
|
*/
|
|
197
|
-
lastCalibrationTime?: UADataItem<Date,
|
|
197
|
+
lastCalibrationTime?: UADataItem<Date, DataType.DateTime>;
|
|
198
198
|
/**
|
|
199
199
|
* lastValidationTime
|
|
200
200
|
* Time at which the last validation was run
|
|
201
201
|
*/
|
|
202
|
-
lastValidationTime?: UADataItem<Date,
|
|
202
|
+
lastValidationTime?: UADataItem<Date, DataType.DateTime>;
|
|
203
203
|
/**
|
|
204
204
|
* lastSampleTime
|
|
205
205
|
* Time at which the last sample was acquired
|
|
206
206
|
*/
|
|
207
|
-
lastSampleTime: UADataItem<Date,
|
|
207
|
+
lastSampleTime: UADataItem<Date, DataType.DateTime>;
|
|
208
208
|
}
|
|
209
209
|
export interface UAStream_acquisitionSettings extends UAFunctionalGroup {
|
|
210
210
|
/**
|
|
@@ -212,7 +212,7 @@ export interface UAStream_acquisitionSettings extends UAFunctionalGroup {
|
|
|
212
212
|
* Number of milliseconds between two consecutive
|
|
213
213
|
* starts of acquisition
|
|
214
214
|
*/
|
|
215
|
-
timeBetweenSamples?: UAAnalogItem<number,
|
|
215
|
+
timeBetweenSamples?: UAAnalogItem<number, DataType.Double>;
|
|
216
216
|
}
|
|
217
217
|
export interface UAStream_acquisitionStatus extends UAFunctionalGroup {
|
|
218
218
|
/**
|
|
@@ -220,12 +220,12 @@ export interface UAStream_acquisitionStatus extends UAFunctionalGroup {
|
|
|
220
220
|
* True if this stream is actually running,
|
|
221
221
|
* acquiring data
|
|
222
222
|
*/
|
|
223
|
-
isActive: UADataItem<boolean,
|
|
223
|
+
isActive: UADataItem<boolean, DataType.Boolean>;
|
|
224
224
|
/**
|
|
225
225
|
* executionCycle
|
|
226
226
|
* Indicates which Execution cycle is in progress
|
|
227
227
|
*/
|
|
228
|
-
executionCycle: UADataItem<EnumExecutionCycle,
|
|
228
|
+
executionCycle: UADataItem<EnumExecutionCycle, DataType.Int32>;
|
|
229
229
|
/**
|
|
230
230
|
* executionCycleSubcode
|
|
231
231
|
* Indicates which Execution cycle subcode is in
|
|
@@ -238,7 +238,7 @@ export interface UAStream_acquisitionStatus extends UAFunctionalGroup {
|
|
|
238
238
|
* of percentage of completion. Its value shall be
|
|
239
239
|
* between 0 and 100.
|
|
240
240
|
*/
|
|
241
|
-
progress: UADataItem<number,
|
|
241
|
+
progress: UADataItem<number, DataType.Float>;
|
|
242
242
|
}
|
|
243
243
|
export interface UAStream_acquisitionData extends UAFunctionalGroup {
|
|
244
244
|
/**
|
|
@@ -246,12 +246,12 @@ export interface UAStream_acquisitionData extends UAFunctionalGroup {
|
|
|
246
246
|
* Simple counter incremented after each Sampling
|
|
247
247
|
* acquisition performed on this Stream
|
|
248
248
|
*/
|
|
249
|
-
acquisitionCounter: UAAnalogItem<UInt32,
|
|
249
|
+
acquisitionCounter: UAAnalogItem<UInt32, DataType.UInt32>;
|
|
250
250
|
/**
|
|
251
251
|
* acquisitionResultStatus
|
|
252
252
|
* Quality of the acquisition
|
|
253
253
|
*/
|
|
254
|
-
acquisitionResultStatus: UADataItem<EnumAcquisitionResultStatus,
|
|
254
|
+
acquisitionResultStatus: UADataItem<EnumAcquisitionResultStatus, DataType.Int32>;
|
|
255
255
|
/**
|
|
256
256
|
* rawData
|
|
257
257
|
* Raw data produced as a result of data acquisition
|
|
@@ -270,7 +270,7 @@ export interface UAStream_acquisitionData extends UAFunctionalGroup {
|
|
|
270
270
|
* Difference in milliseconds between the start of
|
|
271
271
|
* sample extraction and the start of the analysis.
|
|
272
272
|
*/
|
|
273
|
-
offset?: UADataItem<number,
|
|
273
|
+
offset?: UADataItem<number, DataType.Double>;
|
|
274
274
|
/**
|
|
275
275
|
* acquisitionEndTime
|
|
276
276
|
* The end time of the AnalyseSample or
|
|
@@ -279,65 +279,65 @@ export interface UAStream_acquisitionData extends UAFunctionalGroup {
|
|
|
279
279
|
* AnalyserChannel_OperatingModeExecuteSubStateMachine
|
|
280
280
|
* state machine
|
|
281
281
|
*/
|
|
282
|
-
acquisitionEndTime: UADataItem<Date,
|
|
282
|
+
acquisitionEndTime: UADataItem<Date, DataType.DateTime>;
|
|
283
283
|
}
|
|
284
284
|
export interface UAStream_context extends UAFunctionalGroup {
|
|
285
285
|
/**
|
|
286
286
|
* campaignId
|
|
287
287
|
* Defines the current campaign
|
|
288
288
|
*/
|
|
289
|
-
campaignId?: UADataItem<UAString,
|
|
289
|
+
campaignId?: UADataItem<UAString, DataType.String>;
|
|
290
290
|
/**
|
|
291
291
|
* batchId
|
|
292
292
|
* Defines the current batch
|
|
293
293
|
*/
|
|
294
|
-
batchId?: UADataItem<UAString,
|
|
294
|
+
batchId?: UADataItem<UAString, DataType.String>;
|
|
295
295
|
/**
|
|
296
296
|
* subBatchId
|
|
297
297
|
* Defines the current sub-batch
|
|
298
298
|
*/
|
|
299
|
-
subBatchId?: UADataItem<UAString,
|
|
299
|
+
subBatchId?: UADataItem<UAString, DataType.String>;
|
|
300
300
|
/**
|
|
301
301
|
* lotId
|
|
302
302
|
* Defines the current lot
|
|
303
303
|
*/
|
|
304
|
-
lotId?: UADataItem<UAString,
|
|
304
|
+
lotId?: UADataItem<UAString, DataType.String>;
|
|
305
305
|
/**
|
|
306
306
|
* materialId
|
|
307
307
|
* Defines the current material
|
|
308
308
|
*/
|
|
309
|
-
materialId?: UADataItem<UAString,
|
|
309
|
+
materialId?: UADataItem<UAString, DataType.String>;
|
|
310
310
|
/**
|
|
311
311
|
* process
|
|
312
312
|
* Current Process name
|
|
313
313
|
*/
|
|
314
|
-
process?: UADataItem<UAString,
|
|
314
|
+
process?: UADataItem<UAString, DataType.String>;
|
|
315
315
|
/**
|
|
316
316
|
* unit
|
|
317
317
|
* Current Unit name
|
|
318
318
|
*/
|
|
319
|
-
unit?: UADataItem<UAString,
|
|
319
|
+
unit?: UADataItem<UAString, DataType.String>;
|
|
320
320
|
/**
|
|
321
321
|
* operation
|
|
322
322
|
* Current Operation name
|
|
323
323
|
*/
|
|
324
|
-
operation?: UADataItem<UAString,
|
|
324
|
+
operation?: UADataItem<UAString, DataType.String>;
|
|
325
325
|
/**
|
|
326
326
|
* phase
|
|
327
327
|
* Current Phase name
|
|
328
328
|
*/
|
|
329
|
-
phase?: UADataItem<UAString,
|
|
329
|
+
phase?: UADataItem<UAString, DataType.String>;
|
|
330
330
|
/**
|
|
331
331
|
* userId
|
|
332
332
|
* Login name of the user who is logged on at the
|
|
333
333
|
* device console
|
|
334
334
|
*/
|
|
335
|
-
userId?: UADataItem<UAString,
|
|
335
|
+
userId?: UADataItem<UAString, DataType.String>;
|
|
336
336
|
/**
|
|
337
337
|
* sampleId
|
|
338
338
|
* Identifier for the sample
|
|
339
339
|
*/
|
|
340
|
-
sampleId?: UADataItem<UAString,
|
|
340
|
+
sampleId?: UADataItem<UAString, DataType.String>;
|
|
341
341
|
}
|
|
342
342
|
/**
|
|
343
343
|
* | | |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-opcua-nodeset-adi",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.76.2",
|
|
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.76.2",
|
|
14
|
+
"node-opcua-basic-types": "2.76.2",
|
|
15
|
+
"node-opcua-data-access": "2.76.2",
|
|
16
|
+
"node-opcua-data-model": "2.76.2",
|
|
17
|
+
"node-opcua-nodeid": "2.76.2",
|
|
18
|
+
"node-opcua-nodeset-di": "2.76.2",
|
|
19
|
+
"node-opcua-nodeset-ua": "2.76.2",
|
|
20
|
+
"node-opcua-variant": "2.76.2"
|
|
21
21
|
},
|
|
22
|
-
"gitHead": "
|
|
22
|
+
"gitHead": "acb5ecaf1e1c71af3b63e80909d58447f3f298e7"
|
|
23
23
|
}
|
package/source/ua_accessory.ts
CHANGED
|
@@ -20,12 +20,12 @@ export interface UAAccessory_Base extends UATopologyElement_Base {
|
|
|
20
20
|
* True if this accessory can be inserted in the
|
|
21
21
|
* accessory slot while it is powered
|
|
22
22
|
*/
|
|
23
|
-
isHotSwappable: UAProperty<boolean,
|
|
23
|
+
isHotSwappable: UAProperty<boolean, DataType.Boolean>;
|
|
24
24
|
/**
|
|
25
25
|
* isReady
|
|
26
26
|
* True if this accessory is ready for use
|
|
27
27
|
*/
|
|
28
|
-
isReady: UAProperty<boolean,
|
|
28
|
+
isReady: UAProperty<boolean, DataType.Boolean>;
|
|
29
29
|
}
|
|
30
30
|
export interface UAAccessory extends UATopologyElement, UAAccessory_Base {
|
|
31
31
|
}
|
|
@@ -22,14 +22,15 @@ export interface UAAccessorySlot_Base extends UAConfigurableObject_Base {
|
|
|
22
22
|
* True if an accessory can be inserted in the
|
|
23
23
|
* accessory slot while it is powered
|
|
24
24
|
*/
|
|
25
|
-
isHotSwappable: UAProperty<boolean,
|
|
25
|
+
isHotSwappable: UAProperty<boolean, DataType.Boolean>;
|
|
26
26
|
/**
|
|
27
27
|
* isEnabled
|
|
28
28
|
* True if this accessory slot is capable of
|
|
29
29
|
* accepting an accessory in it
|
|
30
30
|
*/
|
|
31
|
-
isEnabled: UAProperty<boolean,
|
|
31
|
+
isEnabled: UAProperty<boolean, DataType.Boolean>;
|
|
32
32
|
accessorySlotStateMachine: UAAccessorySlotStateMachine;
|
|
33
|
+
// PlaceHolder for $AccessoryIdentifier$
|
|
33
34
|
}
|
|
34
35
|
export interface UAAccessorySlot extends UAConfigurableObject, UAAccessorySlot_Base {
|
|
35
36
|
}
|
|
@@ -8,7 +8,6 @@ import { UAAnalyserDevice, UAAnalyserDevice_Base } from "./ua_analyser_device"
|
|
|
8
8
|
* |typedDefinition |2:AcousticSpectrometerDeviceType ns=2;i=1015 |
|
|
9
9
|
* |isAbstract |false |
|
|
10
10
|
*/
|
|
11
|
-
export
|
|
12
|
-
}
|
|
11
|
+
export type UAAcousticSpectrometerDevice_Base = UAAnalyserDevice_Base;
|
|
13
12
|
export interface UAAcousticSpectrometerDevice extends UAAnalyserDevice, UAAcousticSpectrometerDevice_Base {
|
|
14
13
|
}
|
|
@@ -8,7 +8,6 @@ import { UAStream, UAStream_Base } from "./ua_stream"
|
|
|
8
8
|
* |typedDefinition |2:AcousticSpectrometerDeviceStreamType ns=2;i=1033|
|
|
9
9
|
* |isAbstract |false |
|
|
10
10
|
*/
|
|
11
|
-
export
|
|
12
|
-
}
|
|
11
|
+
export type UAAcousticSpectrometerDeviceStream_Base = UAStream_Base;
|
|
13
12
|
export interface UAAcousticSpectrometerDeviceStream extends UAStream, UAAcousticSpectrometerDeviceStream_Base {
|
|
14
13
|
}
|
|
@@ -12,23 +12,23 @@ export interface UAAnalyserChannel_parameterSet extends UAObject { // Object
|
|
|
12
12
|
* channelId
|
|
13
13
|
* Channel Id defined by user
|
|
14
14
|
*/
|
|
15
|
-
channelId?: UADataItem<UAString,
|
|
15
|
+
channelId?: UADataItem<UAString, DataType.String>;
|
|
16
16
|
/**
|
|
17
17
|
* isEnabled
|
|
18
18
|
* True if the channel is enabled and accepting
|
|
19
19
|
* commands
|
|
20
20
|
*/
|
|
21
|
-
isEnabled: UADataItem<boolean,
|
|
21
|
+
isEnabled: UADataItem<boolean, DataType.Boolean>;
|
|
22
22
|
/**
|
|
23
23
|
* diagnosticStatus
|
|
24
24
|
* AnalyserChannel health status
|
|
25
25
|
*/
|
|
26
|
-
diagnosticStatus: UADataItem<EnumDeviceHealth,
|
|
26
|
+
diagnosticStatus: UADataItem<EnumDeviceHealth, DataType.Int32>;
|
|
27
27
|
/**
|
|
28
28
|
* activeStream
|
|
29
29
|
* Active stream for this AnalyserChannel
|
|
30
30
|
*/
|
|
31
|
-
activeStream: UADataItem<UAString,
|
|
31
|
+
activeStream: UADataItem<UAString, DataType.String>;
|
|
32
32
|
}
|
|
33
33
|
export interface UAAnalyserChannel_methodSet extends UAObject { // Object
|
|
34
34
|
gotoOperating: UAMethod;
|
|
@@ -50,19 +50,19 @@ export interface UAAnalyserChannel_configuration extends UAFunctionalGroup { //
|
|
|
50
50
|
* True if the channel is enabled and accepting
|
|
51
51
|
* commands
|
|
52
52
|
*/
|
|
53
|
-
isEnabled: UADataItem<boolean,
|
|
53
|
+
isEnabled: UADataItem<boolean, DataType.Boolean>;
|
|
54
54
|
}
|
|
55
55
|
export interface UAAnalyserChannel_status extends UAFunctionalGroup { // Object
|
|
56
56
|
/**
|
|
57
57
|
* diagnosticStatus
|
|
58
58
|
* AnalyserChannel health status
|
|
59
59
|
*/
|
|
60
|
-
diagnosticStatus: UADataItem<EnumDeviceHealth,
|
|
60
|
+
diagnosticStatus: UADataItem<EnumDeviceHealth, DataType.Int32>;
|
|
61
61
|
/**
|
|
62
62
|
* activeStream
|
|
63
63
|
* Active stream for this AnalyserChannel
|
|
64
64
|
*/
|
|
65
|
-
activeStream: UADataItem<UAString,
|
|
65
|
+
activeStream: UADataItem<UAString, DataType.String>;
|
|
66
66
|
}
|
|
67
67
|
/**
|
|
68
68
|
* | | |
|
|
@@ -83,9 +83,12 @@ export interface UAAnalyserChannel_Base extends UATopologyElement_Base {
|
|
|
83
83
|
* Flat list of Methods
|
|
84
84
|
*/
|
|
85
85
|
methodSet: UAAnalyserChannel_methodSet;
|
|
86
|
+
// PlaceHolder for $GroupIdentifier$
|
|
86
87
|
configuration: UAAnalyserChannel_configuration;
|
|
87
88
|
status: UAAnalyserChannel_status;
|
|
88
89
|
channelStateMachine: UAAnalyserChannelStateMachine;
|
|
90
|
+
// PlaceHolder for $StreamIdentifier$
|
|
91
|
+
// PlaceHolder for $AccessorySlotIdentifier$
|
|
89
92
|
}
|
|
90
93
|
export interface UAAnalyserChannel extends Omit<UATopologyElement, "parameterSet"|"methodSet"|"$GroupIdentifier$">, UAAnalyserChannel_Base {
|
|
91
94
|
}
|
|
@@ -8,7 +8,6 @@ import { UAState, UAState_Base } from "node-opcua-nodeset-ua/source/ua_state"
|
|
|
8
8
|
* |typedDefinition |2:AnalyserChannelLocalStateType ns=2;i=1005 |
|
|
9
9
|
* |isAbstract |false |
|
|
10
10
|
*/
|
|
11
|
-
export
|
|
12
|
-
}
|
|
11
|
+
export type UAAnalyserChannelLocalState_Base = UAState_Base;
|
|
13
12
|
export interface UAAnalyserChannelLocalState extends UAState, UAAnalyserChannelLocalState_Base {
|
|
14
13
|
}
|