node-opcua-nodeset-adi 2.181.0 → 2.183.0
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 +1 -1
- package/dist/ua_accessory_slot_state_machine.d.ts +4 -4
- package/dist/ua_analyser_channel.d.ts +4 -4
- package/dist/ua_analyser_channel_local_state.d.ts +1 -1
- package/dist/ua_analyser_channel_maintenance_state.d.ts +1 -1
- package/dist/ua_analyser_channel_operating_execute_state.d.ts +1 -1
- package/dist/ua_analyser_channel_operating_mode_execute_sub_state_machine.d.ts +4 -4
- package/dist/ua_analyser_channel_operating_mode_sub_state_machine.d.ts +4 -4
- package/dist/ua_analyser_channel_operating_state.d.ts +1 -1
- package/dist/ua_analyser_channel_state_machine.d.ts +3 -3
- package/dist/ua_analyser_device.d.ts +5 -5
- package/dist/ua_analyser_device_state_machine.d.ts +4 -4
- package/dist/ua_chemometric_model.d.ts +1 -1
- package/dist/ua_engineering_value.d.ts +3 -3
- package/dist/ua_mva_output_parameter.d.ts +4 -4
- package/dist/ua_particle_size_monitor_device_stream.d.ts +2 -2
- package/dist/ua_process_variable.d.ts +3 -3
- package/dist/ua_spectrometer_device.d.ts +3 -3
- package/dist/ua_spectrometer_device_stream.d.ts +3 -3
- package/dist/ua_stream.d.ts +6 -6
- package/package.json +13 -10
- package/source/ua_accessory.ts +2 -2
- package/source/ua_accessory_slot.ts +1 -1
- package/source/ua_accessory_slot_state_machine.ts +4 -4
- package/source/ua_analyser_channel.ts +4 -4
- package/source/ua_analyser_channel_local_state.ts +1 -1
- package/source/ua_analyser_channel_maintenance_state.ts +1 -1
- package/source/ua_analyser_channel_operating_execute_state.ts +1 -1
- package/source/ua_analyser_channel_operating_mode_execute_sub_state_machine.ts +4 -4
- package/source/ua_analyser_channel_operating_mode_sub_state_machine.ts +4 -4
- package/source/ua_analyser_channel_operating_state.ts +1 -1
- package/source/ua_analyser_channel_state_machine.ts +3 -3
- package/source/ua_analyser_device.ts +5 -5
- package/source/ua_analyser_device_state_machine.ts +4 -4
- package/source/ua_chemometric_model.ts +1 -1
- package/source/ua_engineering_value.ts +3 -3
- package/source/ua_mva_output_parameter.ts +4 -4
- package/source/ua_particle_size_monitor_device_stream.ts +2 -2
- package/source/ua_process_variable.ts +3 -3
- package/source/ua_spectrometer_device.ts +3 -3
- package/source/ua_spectrometer_device_stream.ts +3 -3
- package/source/ua_stream.ts +6 -6
package/dist/ua_accessory.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
-
import type { UAFunctionalGroup } from "node-opcua-nodeset-di/dist/ua_functional_group";
|
|
3
|
-
import type { UATopologyElement, UATopologyElement_Base } from "node-opcua-nodeset-di/dist/ua_topology_element";
|
|
2
|
+
import type { UAFunctionalGroup } from "node-opcua-nodeset-di/dist/ua_functional_group.js";
|
|
3
|
+
import type { UATopologyElement, UATopologyElement_Base } from "node-opcua-nodeset-di/dist/ua_topology_element.js";
|
|
4
4
|
import type { DataType } from "node-opcua-variant";
|
|
5
5
|
/**
|
|
6
6
|
* | | |
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
-
import type { UAConfigurableObject, UAConfigurableObject_Base } from "node-opcua-nodeset-di/dist/ua_configurable_object";
|
|
2
|
+
import type { UAConfigurableObject, UAConfigurableObject_Base } from "node-opcua-nodeset-di/dist/ua_configurable_object.js";
|
|
3
3
|
import type { DataType } from "node-opcua-variant";
|
|
4
4
|
import type { UAAccessorySlotStateMachine } from "./ua_accessory_slot_state_machine.js";
|
|
5
5
|
/**
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import type { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/dist/ua_finite_state_machine";
|
|
2
|
-
import type { UAInitialState } from "node-opcua-nodeset-ua/dist/ua_initial_state";
|
|
3
|
-
import type { UAState } from "node-opcua-nodeset-ua/dist/ua_state";
|
|
4
|
-
import type { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition";
|
|
1
|
+
import type { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/dist/ua_finite_state_machine.js";
|
|
2
|
+
import type { UAInitialState } from "node-opcua-nodeset-ua/dist/ua_initial_state.js";
|
|
3
|
+
import type { UAState } from "node-opcua-nodeset-ua/dist/ua_state.js";
|
|
4
|
+
import type { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition.js";
|
|
5
5
|
/**
|
|
6
6
|
* Describes the behaviour of an AccessorySlot when
|
|
7
7
|
* a physical accessory is inserted or removed.
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import type { UAMethod, UAObject } from "node-opcua-address-space-base";
|
|
2
2
|
import type { UAString } from "node-opcua-basic-types";
|
|
3
|
-
import type { EnumDeviceHealth } from "node-opcua-nodeset-di/dist/enum_device_health";
|
|
4
|
-
import type { UAFunctionalGroup } from "node-opcua-nodeset-di/dist/ua_functional_group";
|
|
5
|
-
import type { UATopologyElement, UATopologyElement_Base } from "node-opcua-nodeset-di/dist/ua_topology_element";
|
|
6
|
-
import type { UADataItem } from "node-opcua-nodeset-ua/dist/ua_data_item";
|
|
3
|
+
import type { EnumDeviceHealth } from "node-opcua-nodeset-di/dist/enum_device_health.js";
|
|
4
|
+
import type { UAFunctionalGroup } from "node-opcua-nodeset-di/dist/ua_functional_group.js";
|
|
5
|
+
import type { UATopologyElement, UATopologyElement_Base } from "node-opcua-nodeset-di/dist/ua_topology_element.js";
|
|
6
|
+
import type { UADataItem } from "node-opcua-nodeset-ua/dist/ua_data_item.js";
|
|
7
7
|
import type { DataType } from "node-opcua-variant";
|
|
8
8
|
import type { UAAnalyserChannelStateMachine } from "./ua_analyser_channel_state_machine.js";
|
|
9
9
|
export interface UAAnalyserChannel_parameterSet extends UAObject {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
2
|
import type { UInt32 } from "node-opcua-basic-types";
|
|
3
|
-
import type { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/dist/ua_finite_state_machine";
|
|
4
|
-
import type { UAInitialState } from "node-opcua-nodeset-ua/dist/ua_initial_state";
|
|
5
|
-
import type { UAState } from "node-opcua-nodeset-ua/dist/ua_state";
|
|
6
|
-
import type { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition";
|
|
3
|
+
import type { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/dist/ua_finite_state_machine.js";
|
|
4
|
+
import type { UAInitialState } from "node-opcua-nodeset-ua/dist/ua_initial_state.js";
|
|
5
|
+
import type { UAState } from "node-opcua-nodeset-ua/dist/ua_state.js";
|
|
6
|
+
import type { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition.js";
|
|
7
7
|
import type { DataType } from "node-opcua-variant";
|
|
8
8
|
export interface UAAnalyserChannel_OperatingModeExecuteSubStateMachine_selectExecutionCycle extends Omit<UAInitialState, "stateNumber"> {
|
|
9
9
|
stateNumber: UAProperty<UInt32, DataType.UInt32>;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
2
|
import type { UInt32 } from "node-opcua-basic-types";
|
|
3
|
-
import type { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/dist/ua_finite_state_machine";
|
|
4
|
-
import type { UAInitialState } from "node-opcua-nodeset-ua/dist/ua_initial_state";
|
|
5
|
-
import type { UAState } from "node-opcua-nodeset-ua/dist/ua_state";
|
|
6
|
-
import type { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition";
|
|
3
|
+
import type { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/dist/ua_finite_state_machine.js";
|
|
4
|
+
import type { UAInitialState } from "node-opcua-nodeset-ua/dist/ua_initial_state.js";
|
|
5
|
+
import type { UAState } from "node-opcua-nodeset-ua/dist/ua_state.js";
|
|
6
|
+
import type { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition.js";
|
|
7
7
|
import type { DataType } from "node-opcua-variant";
|
|
8
8
|
import type { UAAnalyserChannelOperatingExecuteState } from "./ua_analyser_channel_operating_execute_state.js";
|
|
9
9
|
import type { UAAnalyserChannel_OperatingModeExecuteSubStateMachine } from "./ua_analyser_channel_operating_mode_execute_sub_state_machine.js";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import type { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/dist/ua_finite_state_machine";
|
|
2
|
-
import type { UAInitialState } from "node-opcua-nodeset-ua/dist/ua_initial_state";
|
|
3
|
-
import type { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition";
|
|
1
|
+
import type { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/dist/ua_finite_state_machine.js";
|
|
2
|
+
import type { UAInitialState } from "node-opcua-nodeset-ua/dist/ua_initial_state.js";
|
|
3
|
+
import type { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition.js";
|
|
4
4
|
import type { UAAnalyserChannelLocalState } from "./ua_analyser_channel_local_state.js";
|
|
5
5
|
import type { UAAnalyserChannelMaintenanceState } from "./ua_analyser_channel_maintenance_state.js";
|
|
6
6
|
import type { UAAnalyserChannel_OperatingModeSubStateMachine } from "./ua_analyser_channel_operating_mode_sub_state_machine.js";
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import type { UAMethod, UAObject, UAProperty } from "node-opcua-address-space-base";
|
|
2
2
|
import type { UAString } from "node-opcua-basic-types";
|
|
3
3
|
import type { LocalizedText } from "node-opcua-data-model";
|
|
4
|
-
import type { EnumDeviceHealth } from "node-opcua-nodeset-di/dist/enum_device_health";
|
|
5
|
-
import type { UADevice, UADevice_Base } from "node-opcua-nodeset-di/dist/ua_device";
|
|
6
|
-
import type { UAFunctionalGroup } from "node-opcua-nodeset-di/dist/ua_functional_group";
|
|
7
|
-
import type { UADataItem } from "node-opcua-nodeset-ua/dist/ua_data_item";
|
|
8
|
-
import type { UAFile } from "node-opcua-nodeset-ua/dist/ua_file";
|
|
4
|
+
import type { EnumDeviceHealth } from "node-opcua-nodeset-di/dist/enum_device_health.js";
|
|
5
|
+
import type { UADevice, UADevice_Base } from "node-opcua-nodeset-di/dist/ua_device.js";
|
|
6
|
+
import type { UAFunctionalGroup } from "node-opcua-nodeset-di/dist/ua_functional_group.js";
|
|
7
|
+
import type { UADataItem } from "node-opcua-nodeset-ua/dist/ua_data_item.js";
|
|
8
|
+
import type { UAFile } from "node-opcua-nodeset-ua/dist/ua_file.js";
|
|
9
9
|
import type { DataType } from "node-opcua-variant";
|
|
10
10
|
import type { UAAnalyserDeviceStateMachine } from "./ua_analyser_device_state_machine.js";
|
|
11
11
|
export interface UAAnalyserDevice_parameterSet extends UAObject {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import type { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/dist/ua_finite_state_machine";
|
|
2
|
-
import type { UAInitialState } from "node-opcua-nodeset-ua/dist/ua_initial_state";
|
|
3
|
-
import type { UAState } from "node-opcua-nodeset-ua/dist/ua_state";
|
|
4
|
-
import type { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition";
|
|
1
|
+
import type { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/dist/ua_finite_state_machine.js";
|
|
2
|
+
import type { UAInitialState } from "node-opcua-nodeset-ua/dist/ua_initial_state.js";
|
|
3
|
+
import type { UAState } from "node-opcua-nodeset-ua/dist/ua_state.js";
|
|
4
|
+
import type { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition.js";
|
|
5
5
|
/**
|
|
6
6
|
* | | |
|
|
7
7
|
* |----------------|------------------------------------------------------------|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
2
|
import type { LocalizedText } from "node-opcua-data-model";
|
|
3
|
-
import type { UABaseDataVariable, UABaseDataVariable_Base } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
|
|
3
|
+
import type { UABaseDataVariable, UABaseDataVariable_Base } from "node-opcua-nodeset-ua/dist/ua_base_data_variable.js";
|
|
4
4
|
import type { DataType } from "node-opcua-variant";
|
|
5
5
|
/**
|
|
6
6
|
* Hold the descriptions of a mathematical process
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { UADataItem, UADataItem_Base } from "node-opcua-nodeset-ua/dist/ua_data_item";
|
|
1
|
+
import type { UADataItem, UADataItem_Base } from "node-opcua-nodeset-ua/dist/ua_data_item.js";
|
|
2
2
|
import type { DataType } from "node-opcua-variant";
|
|
3
3
|
/**
|
|
4
4
|
* Expose key results of an analyser and the
|
|
@@ -9,8 +9,8 @@ import type { DataType } from "node-opcua-variant";
|
|
|
9
9
|
* |namespace |http://opcfoundation.org/UA/ADI/ |
|
|
10
10
|
* |nodeClass |VariableType |
|
|
11
11
|
* |typedDefinition |EngineeringValueType i=9380 |
|
|
12
|
-
* |dataType |
|
|
13
|
-
* |dataType Name |(VariantOptions | VariantOptions[]) i=
|
|
12
|
+
* |dataType |Variant |
|
|
13
|
+
* |dataType Name |(VariantOptions | VariantOptions[]) i=24 |
|
|
14
14
|
* |value rank |-2 |
|
|
15
15
|
* |isAbstract |false |
|
|
16
16
|
*/
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
2
|
import type { UAString } from "node-opcua-basic-types";
|
|
3
|
-
import type { DTRange } from "node-opcua-nodeset-ua/dist/dt_range";
|
|
4
|
-
import type { UABaseDataVariable, UABaseDataVariable_Base } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
|
|
3
|
+
import type { DTRange } from "node-opcua-nodeset-ua/dist/dt_range.js";
|
|
4
|
+
import type { UABaseDataVariable, UABaseDataVariable_Base } from "node-opcua-nodeset-ua/dist/ua_base_data_variable.js";
|
|
5
5
|
import type { DataType } from "node-opcua-variant";
|
|
6
6
|
import type { EnumAlarmState } from "./enum_alarm_state.js";
|
|
7
7
|
/**
|
|
@@ -14,8 +14,8 @@ import type { EnumAlarmState } from "./enum_alarm_state.js";
|
|
|
14
14
|
* |namespace |http://opcfoundation.org/UA/ADI/ |
|
|
15
15
|
* |nodeClass |VariableType |
|
|
16
16
|
* |typedDefinition |MVAOutputParameterType i=2010 |
|
|
17
|
-
* |dataType |
|
|
18
|
-
* |dataType Name |(VariantOptions | VariantOptions[]) i=
|
|
17
|
+
* |dataType |Variant |
|
|
18
|
+
* |dataType Name |(VariantOptions | VariantOptions[]) i=24 |
|
|
19
19
|
* |value rank |-2 |
|
|
20
20
|
* |isAbstract |false |
|
|
21
21
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import type { UADataItem } from "node-opcua-nodeset-ua/dist/ua_data_item";
|
|
2
|
-
import type { UAYArrayItem } from "node-opcua-nodeset-ua/dist/ua_y_array_item";
|
|
1
|
+
import type { UADataItem } from "node-opcua-nodeset-ua/dist/ua_data_item.js";
|
|
2
|
+
import type { UAYArrayItem } from "node-opcua-nodeset-ua/dist/ua_y_array_item.js";
|
|
3
3
|
import type { DataType } from "node-opcua-variant";
|
|
4
4
|
import type { UAStream, UAStream_acquisitionData, UAStream_Base, UAStream_parameterSet } from "./ua_stream.js";
|
|
5
5
|
export interface UAParticleSizeMonitorDeviceStream_parameterSet extends UAStream_parameterSet {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { UADataItem, UADataItem_Base } from "node-opcua-nodeset-ua/dist/ua_data_item";
|
|
1
|
+
import type { UADataItem, UADataItem_Base } from "node-opcua-nodeset-ua/dist/ua_data_item.js";
|
|
2
2
|
import type { DataType } from "node-opcua-variant";
|
|
3
3
|
/**
|
|
4
4
|
* Provides a stable address space view from the
|
|
@@ -11,8 +11,8 @@ import type { DataType } from "node-opcua-variant";
|
|
|
11
11
|
* |namespace |http://opcfoundation.org/UA/ADI/ |
|
|
12
12
|
* |nodeClass |VariableType |
|
|
13
13
|
* |typedDefinition |ProcessVariableType i=2008 |
|
|
14
|
-
* |dataType |
|
|
15
|
-
* |dataType Name |(VariantOptions | VariantOptions[]) i=
|
|
14
|
+
* |dataType |Variant |
|
|
15
|
+
* |dataType Name |(VariantOptions | VariantOptions[]) i=24 |
|
|
16
16
|
* |value rank |-2 |
|
|
17
17
|
* |isAbstract |false |
|
|
18
18
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import type { UAFunctionalGroup } from "node-opcua-nodeset-di/dist/ua_functional_group";
|
|
2
|
-
import type { DTRange } from "node-opcua-nodeset-ua/dist/dt_range";
|
|
3
|
-
import type { UADataItem } from "node-opcua-nodeset-ua/dist/ua_data_item";
|
|
1
|
+
import type { UAFunctionalGroup } from "node-opcua-nodeset-di/dist/ua_functional_group.js";
|
|
2
|
+
import type { DTRange } from "node-opcua-nodeset-ua/dist/dt_range.js";
|
|
3
|
+
import type { UADataItem } from "node-opcua-nodeset-ua/dist/ua_data_item.js";
|
|
4
4
|
import type { DataType } from "node-opcua-variant";
|
|
5
5
|
import type { UAAnalyserDevice, UAAnalyserDevice_Base, UAAnalyserDevice_parameterSet } from "./ua_analyser_device.js";
|
|
6
6
|
export interface UASpectrometerDevice_parameterSet extends UAAnalyserDevice_parameterSet {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import type { UAObject } from "node-opcua-address-space-base";
|
|
2
2
|
import type { Int32 } from "node-opcua-basic-types";
|
|
3
|
-
import type { DTRange } from "node-opcua-nodeset-ua/dist/dt_range";
|
|
4
|
-
import type { UADataItem } from "node-opcua-nodeset-ua/dist/ua_data_item";
|
|
5
|
-
import type { UAYArrayItem } from "node-opcua-nodeset-ua/dist/ua_y_array_item";
|
|
3
|
+
import type { DTRange } from "node-opcua-nodeset-ua/dist/dt_range.js";
|
|
4
|
+
import type { UADataItem } from "node-opcua-nodeset-ua/dist/ua_data_item.js";
|
|
5
|
+
import type { UAYArrayItem } from "node-opcua-nodeset-ua/dist/ua_y_array_item.js";
|
|
6
6
|
import type { DataType } from "node-opcua-variant";
|
|
7
7
|
import type { UAStream, UAStream_acquisitionData, UAStream_acquisitionSettings, UAStream_acquisitionStatus, UAStream_Base, UAStream_configuration, UAStream_parameterSet } from "./ua_stream.js";
|
|
8
8
|
export interface UASpectrometerDeviceStream_parameterSet extends UAStream_parameterSet {
|
package/dist/ua_stream.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import type { UAObject } from "node-opcua-address-space-base";
|
|
2
2
|
import type { UAString, UInt32 } from "node-opcua-basic-types";
|
|
3
|
-
import type { EnumDeviceHealth } from "node-opcua-nodeset-di/dist/enum_device_health";
|
|
4
|
-
import type { UAFunctionalGroup } from "node-opcua-nodeset-di/dist/ua_functional_group";
|
|
5
|
-
import type { UATopologyElement, UATopologyElement_Base } from "node-opcua-nodeset-di/dist/ua_topology_element";
|
|
6
|
-
import type { UAAnalogItem } from "node-opcua-nodeset-ua/dist/ua_analog_item";
|
|
7
|
-
import type { UADataItem } from "node-opcua-nodeset-ua/dist/ua_data_item";
|
|
8
|
-
import type { UAMultiStateDiscrete } from "node-opcua-nodeset-ua/dist/ua_multi_state_discrete";
|
|
3
|
+
import type { EnumDeviceHealth } from "node-opcua-nodeset-di/dist/enum_device_health.js";
|
|
4
|
+
import type { UAFunctionalGroup } from "node-opcua-nodeset-di/dist/ua_functional_group.js";
|
|
5
|
+
import type { UATopologyElement, UATopologyElement_Base } from "node-opcua-nodeset-di/dist/ua_topology_element.js";
|
|
6
|
+
import type { UAAnalogItem } from "node-opcua-nodeset-ua/dist/ua_analog_item.js";
|
|
7
|
+
import type { UADataItem } from "node-opcua-nodeset-ua/dist/ua_data_item.js";
|
|
8
|
+
import type { UAMultiStateDiscrete } from "node-opcua-nodeset-ua/dist/ua_multi_state_discrete.js";
|
|
9
9
|
import type { DataType } from "node-opcua-variant";
|
|
10
10
|
import type { EnumAcquisitionResultStatus } from "./enum_acquisition_result_status.js";
|
|
11
11
|
import type { EnumExecutionCycle } from "./enum_execution_cycle.js";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-opcua-nodeset-adi",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.183.0",
|
|
4
4
|
"description": "pure nodejs OPCUA SDK - module node-opcua-nodeset-adi",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -10,15 +10,18 @@
|
|
|
10
10
|
},
|
|
11
11
|
"author": "Etienne Rossignon <etienne.rossignon@sterfive.com>",
|
|
12
12
|
"license": "MIT",
|
|
13
|
+
"engines": {
|
|
14
|
+
"node": ">=22.13.0"
|
|
15
|
+
},
|
|
13
16
|
"dependencies": {
|
|
14
|
-
"node-opcua-address-space-base": "2.
|
|
15
|
-
"node-opcua-basic-types": "2.
|
|
16
|
-
"node-opcua-data-access": "2.
|
|
17
|
-
"node-opcua-data-model": "2.
|
|
18
|
-
"node-opcua-nodeid": "2.
|
|
19
|
-
"node-opcua-nodeset-di": "2.
|
|
20
|
-
"node-opcua-nodeset-ua": "2.
|
|
21
|
-
"node-opcua-variant": "2.
|
|
17
|
+
"node-opcua-address-space-base": "2.183.0",
|
|
18
|
+
"node-opcua-basic-types": "2.183.0",
|
|
19
|
+
"node-opcua-data-access": "2.183.0",
|
|
20
|
+
"node-opcua-data-model": "2.183.0",
|
|
21
|
+
"node-opcua-nodeid": "2.183.0",
|
|
22
|
+
"node-opcua-nodeset-di": "2.183.0",
|
|
23
|
+
"node-opcua-nodeset-ua": "2.183.0",
|
|
24
|
+
"node-opcua-variant": "2.183.0"
|
|
22
25
|
},
|
|
23
26
|
"files": [
|
|
24
27
|
"dist",
|
|
@@ -37,5 +40,5 @@
|
|
|
37
40
|
"internet of things"
|
|
38
41
|
],
|
|
39
42
|
"homepage": "http://node-opcua.github.io/",
|
|
40
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "d9a9af54d162f0fbb8d287e168aaeeda2d5c38b7"
|
|
41
44
|
}
|
package/source/ua_accessory.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
-
import type { UAFunctionalGroup } from "node-opcua-nodeset-di/dist/ua_functional_group";
|
|
3
|
-
import type { UATopologyElement, UATopologyElement_Base } from "node-opcua-nodeset-di/dist/ua_topology_element";
|
|
2
|
+
import type { UAFunctionalGroup } from "node-opcua-nodeset-di/dist/ua_functional_group.js";
|
|
3
|
+
import type { UATopologyElement, UATopologyElement_Base } from "node-opcua-nodeset-di/dist/ua_topology_element.js";
|
|
4
4
|
import type { DataType } from "node-opcua-variant";
|
|
5
5
|
|
|
6
6
|
// ----- this file has been automatically generated - do not edit
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
-
import type { UAConfigurableObject, UAConfigurableObject_Base } from "node-opcua-nodeset-di/dist/ua_configurable_object";
|
|
2
|
+
import type { UAConfigurableObject, UAConfigurableObject_Base } from "node-opcua-nodeset-di/dist/ua_configurable_object.js";
|
|
3
3
|
import type { DataType } from "node-opcua-variant";
|
|
4
4
|
|
|
5
5
|
import type { UAAccessorySlotStateMachine } from "./ua_accessory_slot_state_machine.js";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import type { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/dist/ua_finite_state_machine";
|
|
2
|
-
import type { UAInitialState } from "node-opcua-nodeset-ua/dist/ua_initial_state";
|
|
3
|
-
import type { UAState } from "node-opcua-nodeset-ua/dist/ua_state";
|
|
4
|
-
import type { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition";
|
|
1
|
+
import type { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/dist/ua_finite_state_machine.js";
|
|
2
|
+
import type { UAInitialState } from "node-opcua-nodeset-ua/dist/ua_initial_state.js";
|
|
3
|
+
import type { UAState } from "node-opcua-nodeset-ua/dist/ua_state.js";
|
|
4
|
+
import type { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition.js";
|
|
5
5
|
|
|
6
6
|
// ----- this file has been automatically generated - do not edit
|
|
7
7
|
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import type { UAMethod, UAObject } from "node-opcua-address-space-base";
|
|
2
2
|
import type { UAString } from "node-opcua-basic-types";
|
|
3
|
-
import type { EnumDeviceHealth } from "node-opcua-nodeset-di/dist/enum_device_health";
|
|
4
|
-
import type { UAFunctionalGroup } from "node-opcua-nodeset-di/dist/ua_functional_group";
|
|
5
|
-
import type { UATopologyElement, UATopologyElement_Base } from "node-opcua-nodeset-di/dist/ua_topology_element";
|
|
6
|
-
import type { UADataItem } from "node-opcua-nodeset-ua/dist/ua_data_item";
|
|
3
|
+
import type { EnumDeviceHealth } from "node-opcua-nodeset-di/dist/enum_device_health.js";
|
|
4
|
+
import type { UAFunctionalGroup } from "node-opcua-nodeset-di/dist/ua_functional_group.js";
|
|
5
|
+
import type { UATopologyElement, UATopologyElement_Base } from "node-opcua-nodeset-di/dist/ua_topology_element.js";
|
|
6
|
+
import type { UADataItem } from "node-opcua-nodeset-ua/dist/ua_data_item.js";
|
|
7
7
|
import type { DataType } from "node-opcua-variant";
|
|
8
8
|
|
|
9
9
|
import type { UAAnalyserChannelStateMachine } from "./ua_analyser_channel_state_machine.js";
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
2
|
import type { UInt32 } from "node-opcua-basic-types";
|
|
3
|
-
import type { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/dist/ua_finite_state_machine";
|
|
4
|
-
import type { UAInitialState } from "node-opcua-nodeset-ua/dist/ua_initial_state";
|
|
5
|
-
import type { UAState } from "node-opcua-nodeset-ua/dist/ua_state";
|
|
6
|
-
import type { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition";
|
|
3
|
+
import type { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/dist/ua_finite_state_machine.js";
|
|
4
|
+
import type { UAInitialState } from "node-opcua-nodeset-ua/dist/ua_initial_state.js";
|
|
5
|
+
import type { UAState } from "node-opcua-nodeset-ua/dist/ua_state.js";
|
|
6
|
+
import type { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition.js";
|
|
7
7
|
import type { DataType } from "node-opcua-variant";
|
|
8
8
|
|
|
9
9
|
// ----- this file has been automatically generated - do not edit
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
2
|
import type { UInt32 } from "node-opcua-basic-types";
|
|
3
|
-
import type { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/dist/ua_finite_state_machine";
|
|
4
|
-
import type { UAInitialState } from "node-opcua-nodeset-ua/dist/ua_initial_state";
|
|
5
|
-
import type { UAState } from "node-opcua-nodeset-ua/dist/ua_state";
|
|
6
|
-
import type { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition";
|
|
3
|
+
import type { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/dist/ua_finite_state_machine.js";
|
|
4
|
+
import type { UAInitialState } from "node-opcua-nodeset-ua/dist/ua_initial_state.js";
|
|
5
|
+
import type { UAState } from "node-opcua-nodeset-ua/dist/ua_state.js";
|
|
6
|
+
import type { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition.js";
|
|
7
7
|
import type { DataType } from "node-opcua-variant";
|
|
8
8
|
|
|
9
9
|
import type { UAAnalyserChannelOperatingExecuteState } from "./ua_analyser_channel_operating_execute_state.js";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import type { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/dist/ua_finite_state_machine";
|
|
2
|
-
import type { UAInitialState } from "node-opcua-nodeset-ua/dist/ua_initial_state";
|
|
3
|
-
import type { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition";
|
|
1
|
+
import type { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/dist/ua_finite_state_machine.js";
|
|
2
|
+
import type { UAInitialState } from "node-opcua-nodeset-ua/dist/ua_initial_state.js";
|
|
3
|
+
import type { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition.js";
|
|
4
4
|
|
|
5
5
|
import type { UAAnalyserChannelLocalState } from "./ua_analyser_channel_local_state.js";
|
|
6
6
|
import type { UAAnalyserChannelMaintenanceState } from "./ua_analyser_channel_maintenance_state.js";
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import type { UAMethod, UAObject, UAProperty } from "node-opcua-address-space-base";
|
|
2
2
|
import type { UAString } from "node-opcua-basic-types";
|
|
3
3
|
import type { LocalizedText } from "node-opcua-data-model";
|
|
4
|
-
import type { EnumDeviceHealth } from "node-opcua-nodeset-di/dist/enum_device_health";
|
|
5
|
-
import type { UADevice, UADevice_Base } from "node-opcua-nodeset-di/dist/ua_device";
|
|
6
|
-
import type { UAFunctionalGroup } from "node-opcua-nodeset-di/dist/ua_functional_group";
|
|
7
|
-
import type { UADataItem } from "node-opcua-nodeset-ua/dist/ua_data_item";
|
|
8
|
-
import type { UAFile } from "node-opcua-nodeset-ua/dist/ua_file";
|
|
4
|
+
import type { EnumDeviceHealth } from "node-opcua-nodeset-di/dist/enum_device_health.js";
|
|
5
|
+
import type { UADevice, UADevice_Base } from "node-opcua-nodeset-di/dist/ua_device.js";
|
|
6
|
+
import type { UAFunctionalGroup } from "node-opcua-nodeset-di/dist/ua_functional_group.js";
|
|
7
|
+
import type { UADataItem } from "node-opcua-nodeset-ua/dist/ua_data_item.js";
|
|
8
|
+
import type { UAFile } from "node-opcua-nodeset-ua/dist/ua_file.js";
|
|
9
9
|
import type { DataType } from "node-opcua-variant";
|
|
10
10
|
|
|
11
11
|
import type { UAAnalyserDeviceStateMachine } from "./ua_analyser_device_state_machine.js";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import type { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/dist/ua_finite_state_machine";
|
|
2
|
-
import type { UAInitialState } from "node-opcua-nodeset-ua/dist/ua_initial_state";
|
|
3
|
-
import type { UAState } from "node-opcua-nodeset-ua/dist/ua_state";
|
|
4
|
-
import type { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition";
|
|
1
|
+
import type { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/dist/ua_finite_state_machine.js";
|
|
2
|
+
import type { UAInitialState } from "node-opcua-nodeset-ua/dist/ua_initial_state.js";
|
|
3
|
+
import type { UAState } from "node-opcua-nodeset-ua/dist/ua_state.js";
|
|
4
|
+
import type { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition.js";
|
|
5
5
|
|
|
6
6
|
// ----- this file has been automatically generated - do not edit
|
|
7
7
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
2
|
import type { LocalizedText } from "node-opcua-data-model";
|
|
3
|
-
import type { UABaseDataVariable, UABaseDataVariable_Base } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
|
|
3
|
+
import type { UABaseDataVariable, UABaseDataVariable_Base } from "node-opcua-nodeset-ua/dist/ua_base_data_variable.js";
|
|
4
4
|
import type { DataType } from "node-opcua-variant";
|
|
5
5
|
|
|
6
6
|
// ----- this file has been automatically generated - do not edit
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { UADataItem, UADataItem_Base } from "node-opcua-nodeset-ua/dist/ua_data_item";
|
|
1
|
+
import type { UADataItem, UADataItem_Base } from "node-opcua-nodeset-ua/dist/ua_data_item.js";
|
|
2
2
|
import type { DataType } from "node-opcua-variant";
|
|
3
3
|
|
|
4
4
|
// ----- this file has been automatically generated - do not edit
|
|
@@ -11,8 +11,8 @@ import type { DataType } from "node-opcua-variant";
|
|
|
11
11
|
* |namespace |http://opcfoundation.org/UA/ADI/ |
|
|
12
12
|
* |nodeClass |VariableType |
|
|
13
13
|
* |typedDefinition |EngineeringValueType i=9380 |
|
|
14
|
-
* |dataType |
|
|
15
|
-
* |dataType Name |(VariantOptions | VariantOptions[]) i=
|
|
14
|
+
* |dataType |Variant |
|
|
15
|
+
* |dataType Name |(VariantOptions | VariantOptions[]) i=24 |
|
|
16
16
|
* |value rank |-2 |
|
|
17
17
|
* |isAbstract |false |
|
|
18
18
|
*/
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
2
|
import type { UAString } from "node-opcua-basic-types";
|
|
3
|
-
import type { DTRange } from "node-opcua-nodeset-ua/dist/dt_range";
|
|
4
|
-
import type { UABaseDataVariable, UABaseDataVariable_Base } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
|
|
3
|
+
import type { DTRange } from "node-opcua-nodeset-ua/dist/dt_range.js";
|
|
4
|
+
import type { UABaseDataVariable, UABaseDataVariable_Base } from "node-opcua-nodeset-ua/dist/ua_base_data_variable.js";
|
|
5
5
|
import type { DataType } from "node-opcua-variant";
|
|
6
6
|
|
|
7
7
|
import type { EnumAlarmState } from "./enum_alarm_state.js";
|
|
@@ -18,8 +18,8 @@ import type { EnumAlarmState } from "./enum_alarm_state.js";
|
|
|
18
18
|
* |namespace |http://opcfoundation.org/UA/ADI/ |
|
|
19
19
|
* |nodeClass |VariableType |
|
|
20
20
|
* |typedDefinition |MVAOutputParameterType i=2010 |
|
|
21
|
-
* |dataType |
|
|
22
|
-
* |dataType Name |(VariantOptions | VariantOptions[]) i=
|
|
21
|
+
* |dataType |Variant |
|
|
22
|
+
* |dataType Name |(VariantOptions | VariantOptions[]) i=24 |
|
|
23
23
|
* |value rank |-2 |
|
|
24
24
|
* |isAbstract |false |
|
|
25
25
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import type { UADataItem } from "node-opcua-nodeset-ua/dist/ua_data_item";
|
|
2
|
-
import type { UAYArrayItem } from "node-opcua-nodeset-ua/dist/ua_y_array_item";
|
|
1
|
+
import type { UADataItem } from "node-opcua-nodeset-ua/dist/ua_data_item.js";
|
|
2
|
+
import type { UAYArrayItem } from "node-opcua-nodeset-ua/dist/ua_y_array_item.js";
|
|
3
3
|
import type { DataType } from "node-opcua-variant";
|
|
4
4
|
|
|
5
5
|
import type { UAStream, UAStream_acquisitionData, UAStream_Base, UAStream_parameterSet } from "./ua_stream.js";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { UADataItem, UADataItem_Base } from "node-opcua-nodeset-ua/dist/ua_data_item";
|
|
1
|
+
import type { UADataItem, UADataItem_Base } from "node-opcua-nodeset-ua/dist/ua_data_item.js";
|
|
2
2
|
import type { DataType } from "node-opcua-variant";
|
|
3
3
|
|
|
4
4
|
// ----- this file has been automatically generated - do not edit
|
|
@@ -13,8 +13,8 @@ import type { DataType } from "node-opcua-variant";
|
|
|
13
13
|
* |namespace |http://opcfoundation.org/UA/ADI/ |
|
|
14
14
|
* |nodeClass |VariableType |
|
|
15
15
|
* |typedDefinition |ProcessVariableType i=2008 |
|
|
16
|
-
* |dataType |
|
|
17
|
-
* |dataType Name |(VariantOptions | VariantOptions[]) i=
|
|
16
|
+
* |dataType |Variant |
|
|
17
|
+
* |dataType Name |(VariantOptions | VariantOptions[]) i=24 |
|
|
18
18
|
* |value rank |-2 |
|
|
19
19
|
* |isAbstract |false |
|
|
20
20
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import type { UAFunctionalGroup } from "node-opcua-nodeset-di/dist/ua_functional_group";
|
|
2
|
-
import type { DTRange } from "node-opcua-nodeset-ua/dist/dt_range";
|
|
3
|
-
import type { UADataItem } from "node-opcua-nodeset-ua/dist/ua_data_item";
|
|
1
|
+
import type { UAFunctionalGroup } from "node-opcua-nodeset-di/dist/ua_functional_group.js";
|
|
2
|
+
import type { DTRange } from "node-opcua-nodeset-ua/dist/dt_range.js";
|
|
3
|
+
import type { UADataItem } from "node-opcua-nodeset-ua/dist/ua_data_item.js";
|
|
4
4
|
import type { DataType } from "node-opcua-variant";
|
|
5
5
|
|
|
6
6
|
import type { UAAnalyserDevice, UAAnalyserDevice_Base, UAAnalyserDevice_parameterSet } from "./ua_analyser_device.js";
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import type { UAObject } from "node-opcua-address-space-base";
|
|
2
2
|
import type { Int32 } from "node-opcua-basic-types";
|
|
3
|
-
import type { DTRange } from "node-opcua-nodeset-ua/dist/dt_range";
|
|
4
|
-
import type { UADataItem } from "node-opcua-nodeset-ua/dist/ua_data_item";
|
|
5
|
-
import type { UAYArrayItem } from "node-opcua-nodeset-ua/dist/ua_y_array_item";
|
|
3
|
+
import type { DTRange } from "node-opcua-nodeset-ua/dist/dt_range.js";
|
|
4
|
+
import type { UADataItem } from "node-opcua-nodeset-ua/dist/ua_data_item.js";
|
|
5
|
+
import type { UAYArrayItem } from "node-opcua-nodeset-ua/dist/ua_y_array_item.js";
|
|
6
6
|
import type { DataType } from "node-opcua-variant";
|
|
7
7
|
|
|
8
8
|
import type { UAStream, UAStream_acquisitionData, UAStream_acquisitionSettings, UAStream_acquisitionStatus, UAStream_Base, UAStream_configuration, UAStream_parameterSet } from "./ua_stream.js";
|
package/source/ua_stream.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import type { UAObject } from "node-opcua-address-space-base";
|
|
2
2
|
import type { UAString, UInt32 } from "node-opcua-basic-types";
|
|
3
|
-
import type { EnumDeviceHealth } from "node-opcua-nodeset-di/dist/enum_device_health";
|
|
4
|
-
import type { UAFunctionalGroup } from "node-opcua-nodeset-di/dist/ua_functional_group";
|
|
5
|
-
import type { UATopologyElement, UATopologyElement_Base } from "node-opcua-nodeset-di/dist/ua_topology_element";
|
|
6
|
-
import type { UAAnalogItem } from "node-opcua-nodeset-ua/dist/ua_analog_item";
|
|
7
|
-
import type { UADataItem } from "node-opcua-nodeset-ua/dist/ua_data_item";
|
|
8
|
-
import type { UAMultiStateDiscrete } from "node-opcua-nodeset-ua/dist/ua_multi_state_discrete";
|
|
3
|
+
import type { EnumDeviceHealth } from "node-opcua-nodeset-di/dist/enum_device_health.js";
|
|
4
|
+
import type { UAFunctionalGroup } from "node-opcua-nodeset-di/dist/ua_functional_group.js";
|
|
5
|
+
import type { UATopologyElement, UATopologyElement_Base } from "node-opcua-nodeset-di/dist/ua_topology_element.js";
|
|
6
|
+
import type { UAAnalogItem } from "node-opcua-nodeset-ua/dist/ua_analog_item.js";
|
|
7
|
+
import type { UADataItem } from "node-opcua-nodeset-ua/dist/ua_data_item.js";
|
|
8
|
+
import type { UAMultiStateDiscrete } from "node-opcua-nodeset-ua/dist/ua_multi_state_discrete.js";
|
|
9
9
|
import type { DataType } from "node-opcua-variant";
|
|
10
10
|
|
|
11
11
|
import type { EnumAcquisitionResultStatus } from "./enum_acquisition_result_status.js";
|