node-opcua-nodeset-padim 2.100.0 → 2.103.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/enum_execution_mode_enum.d.ts +6 -6
- package/dist/enum_execution_mode_enum.js +6 -6
- package/dist/enum_reset_mode_enum.d.ts +6 -6
- package/dist/enum_reset_mode_enum.js +6 -6
- package/dist/ua_actual_density_variable.d.ts +8 -8
- package/dist/ua_actual_volume_flow_rate_variable.d.ts +8 -8
- package/dist/ua_analog_signal.d.ts +6 -6
- package/dist/ua_analog_signal_variable.d.ts +8 -8
- package/dist/ua_analytical_measurement_variable.d.ts +8 -8
- package/dist/ua_control_signal.d.ts +6 -6
- package/dist/ua_control_variable.d.ts +8 -8
- package/dist/ua_discrete_signal.d.ts +6 -6
- package/dist/ua_discrete_signal_variable.d.ts +8 -8
- package/dist/ua_flow_measurement_variable.d.ts +8 -8
- package/dist/ua_i_administration.d.ts +6 -6
- package/dist/ua_i_signal_set.d.ts +6 -6
- package/dist/ua_level_measurement_variable.d.ts +8 -8
- package/dist/ua_mass_flow_rate_variable.d.ts +8 -8
- package/dist/ua_multi_state_discrete_signal.d.ts +6 -6
- package/dist/ua_multi_state_discrete_signal_variable.d.ts +8 -8
- package/dist/ua_normalized_volume_flow_rate_variable.d.ts +8 -8
- package/dist/ua_padim.d.ts +6 -6
- package/dist/ua_pressure_measurement_variable.d.ts +8 -8
- package/dist/ua_signal.d.ts +6 -6
- package/dist/ua_signal_set.d.ts +6 -6
- package/dist/ua_temperature_measurement_variable.d.ts +8 -8
- package/dist/ua_totalizer_variable.d.ts +8 -8
- package/dist/ua_two_state_discrete_signal.d.ts +6 -6
- package/dist/ua_two_state_discrete_signal_variable.d.ts +8 -8
- package/package.json +8 -8
- package/source/enum_execution_mode_enum.ts +6 -6
- package/source/enum_reset_mode_enum.ts +6 -6
- package/source/ua_actual_density_variable.ts +8 -8
- package/source/ua_actual_volume_flow_rate_variable.ts +8 -8
- package/source/ua_analog_signal.ts +6 -6
- package/source/ua_analog_signal_variable.ts +8 -8
- package/source/ua_analytical_measurement_variable.ts +8 -8
- package/source/ua_control_signal.ts +6 -6
- package/source/ua_control_variable.ts +8 -8
- package/source/ua_discrete_signal.ts +6 -6
- package/source/ua_discrete_signal_variable.ts +8 -8
- package/source/ua_flow_measurement_variable.ts +8 -8
- package/source/ua_i_administration.ts +6 -6
- package/source/ua_i_signal_set.ts +6 -6
- package/source/ua_level_measurement_variable.ts +8 -8
- package/source/ua_mass_flow_rate_variable.ts +8 -8
- package/source/ua_multi_state_discrete_signal.ts +6 -6
- package/source/ua_multi_state_discrete_signal_variable.ts +8 -8
- package/source/ua_normalized_volume_flow_rate_variable.ts +8 -8
- package/source/ua_padim.ts +6 -6
- package/source/ua_pressure_measurement_variable.ts +8 -8
- package/source/ua_signal.ts +6 -6
- package/source/ua_signal_set.ts +6 -6
- package/source/ua_temperature_measurement_variable.ts +8 -8
- package/source/ua_totalizer_variable.ts +8 -8
- package/source/ua_two_state_discrete_signal.ts +6 -6
- package/source/ua_two_state_discrete_signal_variable.ts +8 -8
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { UASignal, UASignal_Base } from "./ua_signal";
|
|
2
2
|
import { UATwoStateDiscreteSignalVariable } from "./ua_two_state_discrete_signal_variable";
|
|
3
3
|
/**
|
|
4
|
-
* | |
|
|
5
|
-
*
|
|
6
|
-
* |namespace |http://opcfoundation.org/UA/PADIM/
|
|
7
|
-
* |nodeClass |ObjectType
|
|
8
|
-
* |typedDefinition |
|
|
9
|
-
* |isAbstract |false
|
|
4
|
+
* | | |
|
|
5
|
+
* |----------------|------------------------------------------------------------|
|
|
6
|
+
* |namespace |http://opcfoundation.org/UA/PADIM/ |
|
|
7
|
+
* |nodeClass |ObjectType |
|
|
8
|
+
* |typedDefinition |TwoStateDiscreteSignalType i=1037 |
|
|
9
|
+
* |isAbstract |false |
|
|
10
10
|
*/
|
|
11
11
|
export interface UATwoStateDiscreteSignal_Base extends UASignal_Base {
|
|
12
12
|
twoStateDiscreteSignal: UATwoStateDiscreteSignalVariable<boolean>;
|
|
@@ -2,14 +2,14 @@ import { DataType } from "node-opcua-variant";
|
|
|
2
2
|
import { UATwoStateDiscrete, UATwoStateDiscrete_Base } from "node-opcua-nodeset-ua/source/ua_two_state_discrete";
|
|
3
3
|
import { UABaseDataVariable } from "node-opcua-nodeset-ua/source/ua_base_data_variable";
|
|
4
4
|
/**
|
|
5
|
-
* | |
|
|
6
|
-
*
|
|
7
|
-
* |namespace |http://opcfoundation.org/UA/PADIM/
|
|
8
|
-
* |nodeClass |VariableType
|
|
9
|
-
* |typedDefinition |
|
|
10
|
-
* |dataType |Boolean
|
|
11
|
-
* |dataType Name |boolean
|
|
12
|
-
* |isAbstract |false
|
|
5
|
+
* | | |
|
|
6
|
+
* |----------------|------------------------------------------------------------|
|
|
7
|
+
* |namespace |http://opcfoundation.org/UA/PADIM/ |
|
|
8
|
+
* |nodeClass |VariableType |
|
|
9
|
+
* |typedDefinition |TwoStateDiscreteSignalVariableType i=1141 |
|
|
10
|
+
* |dataType |Boolean |
|
|
11
|
+
* |dataType Name |boolean i=1 |
|
|
12
|
+
* |isAbstract |false |
|
|
13
13
|
*/
|
|
14
14
|
export interface UATwoStateDiscreteSignalVariable_Base<T extends boolean> extends UATwoStateDiscrete_Base<T> {
|
|
15
15
|
actualValue?: UABaseDataVariable<boolean, DataType.Boolean>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-opcua-nodeset-padim",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.103.0",
|
|
4
4
|
"description": "pure nodejs OPCUA SDK - module node-opcua-nodeset-padim",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -10,14 +10,14 @@
|
|
|
10
10
|
"author": "Etienne Rossignon <etienne.rossignon@sterfive.com>",
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"node-opcua-address-space-base": "2.
|
|
13
|
+
"node-opcua-address-space-base": "2.103.0",
|
|
14
14
|
"node-opcua-basic-types": "2.99.0",
|
|
15
|
-
"node-opcua-data-access": "2.
|
|
16
|
-
"node-opcua-data-model": "2.
|
|
15
|
+
"node-opcua-data-access": "2.103.0",
|
|
16
|
+
"node-opcua-data-model": "2.102.0",
|
|
17
17
|
"node-opcua-nodeid": "2.99.0",
|
|
18
|
-
"node-opcua-nodeset-di": "2.
|
|
19
|
-
"node-opcua-nodeset-ua": "2.
|
|
20
|
-
"node-opcua-variant": "2.
|
|
18
|
+
"node-opcua-nodeset-di": "2.103.0",
|
|
19
|
+
"node-opcua-nodeset-ua": "2.103.0",
|
|
20
|
+
"node-opcua-variant": "2.102.0"
|
|
21
21
|
},
|
|
22
22
|
"files": [
|
|
23
23
|
"dist",
|
|
@@ -36,5 +36,5 @@
|
|
|
36
36
|
"internet of things"
|
|
37
37
|
],
|
|
38
38
|
"homepage": "http://node-opcua.github.io/",
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "e206cac2daf39bd07e5ac6cbd744f966bb54759e"
|
|
40
40
|
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
|
-
* | |
|
|
5
|
-
*
|
|
6
|
-
* | namespace |http://opcfoundation.org/UA/PADIM/
|
|
7
|
-
* | nodeClass |DataType
|
|
8
|
-
* | name |
|
|
9
|
-
* | isAbstract|false
|
|
4
|
+
* | | |
|
|
5
|
+
* |-----------|------------------------------------------------------------|
|
|
6
|
+
* | namespace |http://opcfoundation.org/UA/PADIM/ |
|
|
7
|
+
* | nodeClass |DataType |
|
|
8
|
+
* | name |19:ExecutionModeEnum |
|
|
9
|
+
* | isAbstract|false |
|
|
10
10
|
*/
|
|
11
11
|
export enum EnumExecutionModeEnum {
|
|
12
12
|
Start = 2,
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
|
-
* | |
|
|
5
|
-
*
|
|
6
|
-
* | namespace |http://opcfoundation.org/UA/PADIM/
|
|
7
|
-
* | nodeClass |DataType
|
|
8
|
-
* | name |
|
|
9
|
-
* | isAbstract|false
|
|
4
|
+
* | | |
|
|
5
|
+
* |-----------|------------------------------------------------------------|
|
|
6
|
+
* | namespace |http://opcfoundation.org/UA/PADIM/ |
|
|
7
|
+
* | nodeClass |DataType |
|
|
8
|
+
* | name |19:ResetModeEnum |
|
|
9
|
+
* | isAbstract|false |
|
|
10
10
|
*/
|
|
11
11
|
export enum EnumResetModeEnum {
|
|
12
12
|
Application = 1,
|
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
import { DataType } from "node-opcua-variant"
|
|
3
3
|
import { UAAnalogSignalVariable, UAAnalogSignalVariable_Base } from "./ua_analog_signal_variable"
|
|
4
4
|
/**
|
|
5
|
-
* | |
|
|
6
|
-
*
|
|
7
|
-
* |namespace |http://opcfoundation.org/UA/PADIM/
|
|
8
|
-
* |nodeClass |VariableType
|
|
9
|
-
* |typedDefinition |
|
|
10
|
-
* |dataType |Float
|
|
11
|
-
* |dataType Name |number
|
|
12
|
-
* |isAbstract |false
|
|
5
|
+
* | | |
|
|
6
|
+
* |----------------|------------------------------------------------------------|
|
|
7
|
+
* |namespace |http://opcfoundation.org/UA/PADIM/ |
|
|
8
|
+
* |nodeClass |VariableType |
|
|
9
|
+
* |typedDefinition |ActualDensityVariableType i=1124 |
|
|
10
|
+
* |dataType |Float |
|
|
11
|
+
* |dataType Name |number i=10 |
|
|
12
|
+
* |isAbstract |false |
|
|
13
13
|
*/
|
|
14
14
|
export type UAActualDensityVariable_Base<T extends number> = UAAnalogSignalVariable_Base<T, DataType.Float>;
|
|
15
15
|
export interface UAActualDensityVariable<T extends number> extends UAAnalogSignalVariable<T, DataType.Float>, UAActualDensityVariable_Base<T> {
|
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
import { DataType } from "node-opcua-variant"
|
|
3
3
|
import { UAFlowMeasurementVariable, UAFlowMeasurementVariable_Base } from "./ua_flow_measurement_variable"
|
|
4
4
|
/**
|
|
5
|
-
* | |
|
|
6
|
-
*
|
|
7
|
-
* |namespace |http://opcfoundation.org/UA/PADIM/
|
|
8
|
-
* |nodeClass |VariableType
|
|
9
|
-
* |typedDefinition |
|
|
10
|
-
* |dataType |Float
|
|
11
|
-
* |dataType Name |number
|
|
12
|
-
* |isAbstract |false
|
|
5
|
+
* | | |
|
|
6
|
+
* |----------------|------------------------------------------------------------|
|
|
7
|
+
* |namespace |http://opcfoundation.org/UA/PADIM/ |
|
|
8
|
+
* |nodeClass |VariableType |
|
|
9
|
+
* |typedDefinition |ActualVolumeFlowRateVariableType i=1134 |
|
|
10
|
+
* |dataType |Float |
|
|
11
|
+
* |dataType Name |number i=10 |
|
|
12
|
+
* |isAbstract |false |
|
|
13
13
|
*/
|
|
14
14
|
export type UAActualVolumeFlowRateVariable_Base<T extends number> = UAFlowMeasurementVariable_Base<T>;
|
|
15
15
|
export interface UAActualVolumeFlowRateVariable<T extends number> extends UAFlowMeasurementVariable<T>, UAActualVolumeFlowRateVariable_Base<T> {
|
|
@@ -7,12 +7,12 @@ import { DTRange } from "node-opcua-nodeset-ua/source/dt_range"
|
|
|
7
7
|
import { UASignal, UASignal_Base } from "./ua_signal"
|
|
8
8
|
import { UAAnalogSignalVariable } from "./ua_analog_signal_variable"
|
|
9
9
|
/**
|
|
10
|
-
* | |
|
|
11
|
-
*
|
|
12
|
-
* |namespace |http://opcfoundation.org/UA/PADIM/
|
|
13
|
-
* |nodeClass |ObjectType
|
|
14
|
-
* |typedDefinition |
|
|
15
|
-
* |isAbstract |false
|
|
10
|
+
* | | |
|
|
11
|
+
* |----------------|------------------------------------------------------------|
|
|
12
|
+
* |namespace |http://opcfoundation.org/UA/PADIM/ |
|
|
13
|
+
* |nodeClass |ObjectType |
|
|
14
|
+
* |typedDefinition |AnalogSignalType i=1022 |
|
|
15
|
+
* |isAbstract |false |
|
|
16
16
|
*/
|
|
17
17
|
export interface UAAnalogSignal_Base extends UASignal_Base {
|
|
18
18
|
zeroPointAdjustment?: UAMethod;
|
|
@@ -4,14 +4,14 @@ import { DataType, Variant } from "node-opcua-variant"
|
|
|
4
4
|
import { UAAnalogUnitRange, UAAnalogUnitRange_Base } from "node-opcua-nodeset-ua/source/ua_analog_unit_range"
|
|
5
5
|
import { UABaseDataVariable } from "node-opcua-nodeset-ua/source/ua_base_data_variable"
|
|
6
6
|
/**
|
|
7
|
-
* | |
|
|
8
|
-
*
|
|
9
|
-
* |namespace |http://opcfoundation.org/UA/PADIM/
|
|
10
|
-
* |nodeClass |VariableType
|
|
11
|
-
* |typedDefinition |
|
|
12
|
-
* |dataType |Variant
|
|
13
|
-
* |dataType Name |Variant
|
|
14
|
-
* |isAbstract |false
|
|
7
|
+
* | | |
|
|
8
|
+
* |----------------|------------------------------------------------------------|
|
|
9
|
+
* |namespace |http://opcfoundation.org/UA/PADIM/ |
|
|
10
|
+
* |nodeClass |VariableType |
|
|
11
|
+
* |typedDefinition |AnalogSignalVariableType i=1111 |
|
|
12
|
+
* |dataType |Variant |
|
|
13
|
+
* |dataType Name |Variant i=26 |
|
|
14
|
+
* |isAbstract |false |
|
|
15
15
|
*/
|
|
16
16
|
export interface UAAnalogSignalVariable_Base<T, DT extends DataType> extends UAAnalogUnitRange_Base<T, DT> {
|
|
17
17
|
simulationState?: UABaseDataVariable<boolean, DataType.Boolean>;
|
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
import { DataType } from "node-opcua-variant"
|
|
3
3
|
import { UAAnalogSignalVariable, UAAnalogSignalVariable_Base } from "./ua_analog_signal_variable"
|
|
4
4
|
/**
|
|
5
|
-
* | |
|
|
6
|
-
*
|
|
7
|
-
* |namespace |http://opcfoundation.org/UA/PADIM/
|
|
8
|
-
* |nodeClass |VariableType
|
|
9
|
-
* |typedDefinition |
|
|
10
|
-
* |dataType |Float
|
|
11
|
-
* |dataType Name |number
|
|
12
|
-
* |isAbstract |false
|
|
5
|
+
* | | |
|
|
6
|
+
* |----------------|------------------------------------------------------------|
|
|
7
|
+
* |namespace |http://opcfoundation.org/UA/PADIM/ |
|
|
8
|
+
* |nodeClass |VariableType |
|
|
9
|
+
* |typedDefinition |AnalyticalMeasurementVariableType i=1127 |
|
|
10
|
+
* |dataType |Float |
|
|
11
|
+
* |dataType Name |number i=10 |
|
|
12
|
+
* |isAbstract |false |
|
|
13
13
|
*/
|
|
14
14
|
export type UAAnalyticalMeasurementVariable_Base<T extends number> = UAAnalogSignalVariable_Base<T, DataType.Float>;
|
|
15
15
|
export interface UAAnalyticalMeasurementVariable<T extends number> extends UAAnalogSignalVariable<T, DataType.Float>, UAAnalyticalMeasurementVariable_Base<T> {
|
|
@@ -11,12 +11,12 @@ import { DTRange } from "node-opcua-nodeset-ua/source/dt_range"
|
|
|
11
11
|
import { UASignal, UASignal_Base } from "./ua_signal"
|
|
12
12
|
import { UAControlVariable } from "./ua_control_variable"
|
|
13
13
|
/**
|
|
14
|
-
* | |
|
|
15
|
-
*
|
|
16
|
-
* |namespace |http://opcfoundation.org/UA/PADIM/
|
|
17
|
-
* |nodeClass |ObjectType
|
|
18
|
-
* |typedDefinition |
|
|
19
|
-
* |isAbstract |false
|
|
14
|
+
* | | |
|
|
15
|
+
* |----------------|------------------------------------------------------------|
|
|
16
|
+
* |namespace |http://opcfoundation.org/UA/PADIM/ |
|
|
17
|
+
* |nodeClass |ObjectType |
|
|
18
|
+
* |typedDefinition |ControlSignalType i=1023 |
|
|
19
|
+
* |isAbstract |false |
|
|
20
20
|
*/
|
|
21
21
|
export interface UAControlSignal_Base extends UASignal_Base {
|
|
22
22
|
autoAdjustPositioner?: UAMethod;
|
|
@@ -5,14 +5,14 @@ import { UABaseAnalog } from "node-opcua-nodeset-ua/source/ua_base_analog"
|
|
|
5
5
|
import { UAMultiStateDictionaryEntryDiscrete } from "node-opcua-nodeset-ua/source/ua_multi_state_dictionary_entry_discrete"
|
|
6
6
|
import { UAAnalogSignalVariable, UAAnalogSignalVariable_Base } from "./ua_analog_signal_variable"
|
|
7
7
|
/**
|
|
8
|
-
* | |
|
|
9
|
-
*
|
|
10
|
-
* |namespace |http://opcfoundation.org/UA/PADIM/
|
|
11
|
-
* |nodeClass |VariableType
|
|
12
|
-
* |typedDefinition |
|
|
13
|
-
* |dataType |Float
|
|
14
|
-
* |dataType Name |number
|
|
15
|
-
* |isAbstract |false
|
|
8
|
+
* | | |
|
|
9
|
+
* |----------------|------------------------------------------------------------|
|
|
10
|
+
* |namespace |http://opcfoundation.org/UA/PADIM/ |
|
|
11
|
+
* |nodeClass |VariableType |
|
|
12
|
+
* |typedDefinition |ControlVariableType i=1125 |
|
|
13
|
+
* |dataType |Float |
|
|
14
|
+
* |dataType Name |number i=10 |
|
|
15
|
+
* |isAbstract |false |
|
|
16
16
|
*/
|
|
17
17
|
export interface UAControlVariable_Base<T extends number> extends UAAnalogSignalVariable_Base<T, DataType.Float> {
|
|
18
18
|
setpoint: UABaseAnalog<number, DataType.Float>;
|
|
@@ -3,12 +3,12 @@ import { DataType, VariantOptions } from "node-opcua-variant"
|
|
|
3
3
|
import { UASignal, UASignal_Base } from "./ua_signal"
|
|
4
4
|
import { UADiscreteSignalVariable } from "./ua_discrete_signal_variable"
|
|
5
5
|
/**
|
|
6
|
-
* | |
|
|
7
|
-
*
|
|
8
|
-
* |namespace |http://opcfoundation.org/UA/PADIM/
|
|
9
|
-
* |nodeClass |ObjectType
|
|
10
|
-
* |typedDefinition |
|
|
11
|
-
* |isAbstract |false
|
|
6
|
+
* | | |
|
|
7
|
+
* |----------------|------------------------------------------------------------|
|
|
8
|
+
* |namespace |http://opcfoundation.org/UA/PADIM/ |
|
|
9
|
+
* |nodeClass |ObjectType |
|
|
10
|
+
* |typedDefinition |DiscreteSignalType i=1036 |
|
|
11
|
+
* |isAbstract |false |
|
|
12
12
|
*/
|
|
13
13
|
export interface UADiscreteSignal_Base extends UASignal_Base {
|
|
14
14
|
discreteSignal: UADiscreteSignalVariable<any, any>;
|
|
@@ -3,14 +3,14 @@ import { DataType, VariantOptions } from "node-opcua-variant"
|
|
|
3
3
|
import { UADiscreteItem, UADiscreteItem_Base } from "node-opcua-nodeset-ua/source/ua_discrete_item"
|
|
4
4
|
import { UABaseDataVariable } from "node-opcua-nodeset-ua/source/ua_base_data_variable"
|
|
5
5
|
/**
|
|
6
|
-
* | |
|
|
7
|
-
*
|
|
8
|
-
* |namespace |http://opcfoundation.org/UA/PADIM/
|
|
9
|
-
* |nodeClass |VariableType
|
|
10
|
-
* |typedDefinition |
|
|
11
|
-
* |dataType |Null
|
|
12
|
-
* |dataType Name |VariantOptions
|
|
13
|
-
* |isAbstract |false
|
|
6
|
+
* | | |
|
|
7
|
+
* |----------------|------------------------------------------------------------|
|
|
8
|
+
* |namespace |http://opcfoundation.org/UA/PADIM/ |
|
|
9
|
+
* |nodeClass |VariableType |
|
|
10
|
+
* |typedDefinition |DiscreteSignalVariableType i=1143 |
|
|
11
|
+
* |dataType |Null |
|
|
12
|
+
* |dataType Name |VariantOptions i=0 |
|
|
13
|
+
* |isAbstract |false |
|
|
14
14
|
*/
|
|
15
15
|
export interface UADiscreteSignalVariable_Base<T, DT extends DataType> extends UADiscreteItem_Base<T, DT> {
|
|
16
16
|
actualValue?: UABaseDataVariable<any, any>;
|
|
@@ -8,14 +8,14 @@ import { DTEnumValue } from "node-opcua-nodeset-ua/source/dt_enum_value"
|
|
|
8
8
|
import { UAMultiStateDictionaryEntryDiscrete } from "node-opcua-nodeset-ua/source/ua_multi_state_dictionary_entry_discrete"
|
|
9
9
|
import { UAAnalogSignalVariable, UAAnalogSignalVariable_Base } from "./ua_analog_signal_variable"
|
|
10
10
|
/**
|
|
11
|
-
* | |
|
|
12
|
-
*
|
|
13
|
-
* |namespace |http://opcfoundation.org/UA/PADIM/
|
|
14
|
-
* |nodeClass |VariableType
|
|
15
|
-
* |typedDefinition |
|
|
16
|
-
* |dataType |Float
|
|
17
|
-
* |dataType Name |number
|
|
18
|
-
* |isAbstract |false
|
|
11
|
+
* | | |
|
|
12
|
+
* |----------------|------------------------------------------------------------|
|
|
13
|
+
* |namespace |http://opcfoundation.org/UA/PADIM/ |
|
|
14
|
+
* |nodeClass |VariableType |
|
|
15
|
+
* |typedDefinition |FlowMeasurementVariableType i=1122 |
|
|
16
|
+
* |dataType |Float |
|
|
17
|
+
* |dataType Name |number i=10 |
|
|
18
|
+
* |isAbstract |false |
|
|
19
19
|
*/
|
|
20
20
|
export interface UAFlowMeasurementVariable_Base<T extends number> extends UAAnalogSignalVariable_Base<T, DataType.Float> {
|
|
21
21
|
lowFlowCutOff: UAProperty<number, DataType.Float>;
|
|
@@ -6,12 +6,12 @@ import { DTArgument } from "node-opcua-nodeset-ua/source/dt_argument"
|
|
|
6
6
|
import { UABaseInterface, UABaseInterface_Base } from "node-opcua-nodeset-ua/source/ua_base_interface"
|
|
7
7
|
import { UABaseDataVariable } from "node-opcua-nodeset-ua/source/ua_base_data_variable"
|
|
8
8
|
/**
|
|
9
|
-
* | |
|
|
10
|
-
*
|
|
11
|
-
* |namespace |http://opcfoundation.org/UA/PADIM/
|
|
12
|
-
* |nodeClass |ObjectType
|
|
13
|
-
* |typedDefinition |
|
|
14
|
-
* |isAbstract |true
|
|
9
|
+
* | | |
|
|
10
|
+
* |----------------|------------------------------------------------------------|
|
|
11
|
+
* |namespace |http://opcfoundation.org/UA/PADIM/ |
|
|
12
|
+
* |nodeClass |ObjectType |
|
|
13
|
+
* |typedDefinition |IAdministrationType i=1050 |
|
|
14
|
+
* |isAbstract |true |
|
|
15
15
|
*/
|
|
16
16
|
export interface UAIAdministration_Base extends UABaseInterface_Base {
|
|
17
17
|
displayLanguage?: UABaseDataVariable<UAString, DataType.String>;
|
|
@@ -4,12 +4,12 @@ import { UAString } from "node-opcua-basic-types"
|
|
|
4
4
|
import { UABaseInterface, UABaseInterface_Base } from "node-opcua-nodeset-ua/source/ua_base_interface"
|
|
5
5
|
import { UASignalSet } from "./ua_signal_set"
|
|
6
6
|
/**
|
|
7
|
-
* | |
|
|
8
|
-
*
|
|
9
|
-
* |namespace |http://opcfoundation.org/UA/PADIM/
|
|
10
|
-
* |nodeClass |ObjectType
|
|
11
|
-
* |typedDefinition |
|
|
12
|
-
* |isAbstract |true
|
|
7
|
+
* | | |
|
|
8
|
+
* |----------------|------------------------------------------------------------|
|
|
9
|
+
* |namespace |http://opcfoundation.org/UA/PADIM/ |
|
|
10
|
+
* |nodeClass |ObjectType |
|
|
11
|
+
* |typedDefinition |ISignalSetType i=1052 |
|
|
12
|
+
* |isAbstract |true |
|
|
13
13
|
*/
|
|
14
14
|
export interface UAISignalSet_Base extends UABaseInterface_Base {
|
|
15
15
|
signalSet?: UASignalSet;
|
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
import { DataType } from "node-opcua-variant"
|
|
3
3
|
import { UAAnalogSignalVariable, UAAnalogSignalVariable_Base } from "./ua_analog_signal_variable"
|
|
4
4
|
/**
|
|
5
|
-
* | |
|
|
6
|
-
*
|
|
7
|
-
* |namespace |http://opcfoundation.org/UA/PADIM/
|
|
8
|
-
* |nodeClass |VariableType
|
|
9
|
-
* |typedDefinition |
|
|
10
|
-
* |dataType |Float
|
|
11
|
-
* |dataType Name |number
|
|
12
|
-
* |isAbstract |false
|
|
5
|
+
* | | |
|
|
6
|
+
* |----------------|------------------------------------------------------------|
|
|
7
|
+
* |namespace |http://opcfoundation.org/UA/PADIM/ |
|
|
8
|
+
* |nodeClass |VariableType |
|
|
9
|
+
* |typedDefinition |LevelMeasurementVariableType i=1123 |
|
|
10
|
+
* |dataType |Float |
|
|
11
|
+
* |dataType Name |number i=10 |
|
|
12
|
+
* |isAbstract |false |
|
|
13
13
|
*/
|
|
14
14
|
export type UALevelMeasurementVariable_Base<T extends number> = UAAnalogSignalVariable_Base<T, DataType.Float>;
|
|
15
15
|
export interface UALevelMeasurementVariable<T extends number> extends UAAnalogSignalVariable<T, DataType.Float>, UALevelMeasurementVariable_Base<T> {
|
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
import { DataType } from "node-opcua-variant"
|
|
3
3
|
import { UAFlowMeasurementVariable, UAFlowMeasurementVariable_Base } from "./ua_flow_measurement_variable"
|
|
4
4
|
/**
|
|
5
|
-
* | |
|
|
6
|
-
*
|
|
7
|
-
* |namespace |http://opcfoundation.org/UA/PADIM/
|
|
8
|
-
* |nodeClass |VariableType
|
|
9
|
-
* |typedDefinition |
|
|
10
|
-
* |dataType |Float
|
|
11
|
-
* |dataType Name |number
|
|
12
|
-
* |isAbstract |false
|
|
5
|
+
* | | |
|
|
6
|
+
* |----------------|------------------------------------------------------------|
|
|
7
|
+
* |namespace |http://opcfoundation.org/UA/PADIM/ |
|
|
8
|
+
* |nodeClass |VariableType |
|
|
9
|
+
* |typedDefinition |MassFlowRateVariableType i=1133 |
|
|
10
|
+
* |dataType |Float |
|
|
11
|
+
* |dataType Name |number i=10 |
|
|
12
|
+
* |isAbstract |false |
|
|
13
13
|
*/
|
|
14
14
|
export type UAMassFlowRateVariable_Base<T extends number> = UAFlowMeasurementVariable_Base<T>;
|
|
15
15
|
export interface UAMassFlowRateVariable<T extends number> extends UAFlowMeasurementVariable<T>, UAMassFlowRateVariable_Base<T> {
|
|
@@ -7,12 +7,12 @@ import { DTEnumValue } from "node-opcua-nodeset-ua/source/dt_enum_value"
|
|
|
7
7
|
import { UASignal, UASignal_Base } from "./ua_signal"
|
|
8
8
|
import { UAMultiStateDiscreteSignalVariable } from "./ua_multi_state_discrete_signal_variable"
|
|
9
9
|
/**
|
|
10
|
-
* | |
|
|
11
|
-
*
|
|
12
|
-
* |namespace |http://opcfoundation.org/UA/PADIM/
|
|
13
|
-
* |nodeClass |ObjectType
|
|
14
|
-
* |typedDefinition |
|
|
15
|
-
* |isAbstract |false
|
|
10
|
+
* | | |
|
|
11
|
+
* |----------------|------------------------------------------------------------|
|
|
12
|
+
* |namespace |http://opcfoundation.org/UA/PADIM/ |
|
|
13
|
+
* |nodeClass |ObjectType |
|
|
14
|
+
* |typedDefinition |MultiStateDiscreteSignalType i=1038 |
|
|
15
|
+
* |isAbstract |false |
|
|
16
16
|
*/
|
|
17
17
|
export interface UAMultiStateDiscreteSignal_Base extends UASignal_Base {
|
|
18
18
|
multiStateDiscreteSignal: UAMultiStateDiscreteSignalVariable<UInt32>;
|
|
@@ -4,14 +4,14 @@ import { UInt32 } from "node-opcua-basic-types"
|
|
|
4
4
|
import { UAMultiStateDictionaryEntryDiscreteBase, UAMultiStateDictionaryEntryDiscreteBase_Base } from "node-opcua-nodeset-ua/source/ua_multi_state_dictionary_entry_discrete_base"
|
|
5
5
|
import { UABaseDataVariable } from "node-opcua-nodeset-ua/source/ua_base_data_variable"
|
|
6
6
|
/**
|
|
7
|
-
* | |
|
|
8
|
-
*
|
|
9
|
-
* |namespace |http://opcfoundation.org/UA/PADIM/
|
|
10
|
-
* |nodeClass |VariableType
|
|
11
|
-
* |typedDefinition |
|
|
12
|
-
* |dataType |UInt32
|
|
13
|
-
* |dataType Name |UInt32
|
|
14
|
-
* |isAbstract |false
|
|
7
|
+
* | | |
|
|
8
|
+
* |----------------|------------------------------------------------------------|
|
|
9
|
+
* |namespace |http://opcfoundation.org/UA/PADIM/ |
|
|
10
|
+
* |nodeClass |VariableType |
|
|
11
|
+
* |typedDefinition |MultiStateDiscreteSignalVariableType i=1142 |
|
|
12
|
+
* |dataType |UInt32 |
|
|
13
|
+
* |dataType Name |UInt32 i=7 |
|
|
14
|
+
* |isAbstract |false |
|
|
15
15
|
*/
|
|
16
16
|
export interface UAMultiStateDiscreteSignalVariable_Base<T extends UInt32> extends UAMultiStateDictionaryEntryDiscreteBase_Base<T, DataType.UInt32> {
|
|
17
17
|
actualValue?: UABaseDataVariable<UInt32, DataType.UInt32>;
|
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
import { DataType } from "node-opcua-variant"
|
|
3
3
|
import { UAFlowMeasurementVariable, UAFlowMeasurementVariable_Base } from "./ua_flow_measurement_variable"
|
|
4
4
|
/**
|
|
5
|
-
* | |
|
|
6
|
-
*
|
|
7
|
-
* |namespace |http://opcfoundation.org/UA/PADIM/
|
|
8
|
-
* |nodeClass |VariableType
|
|
9
|
-
* |typedDefinition |
|
|
10
|
-
* |dataType |Float
|
|
11
|
-
* |dataType Name |number
|
|
12
|
-
* |isAbstract |false
|
|
5
|
+
* | | |
|
|
6
|
+
* |----------------|------------------------------------------------------------|
|
|
7
|
+
* |namespace |http://opcfoundation.org/UA/PADIM/ |
|
|
8
|
+
* |nodeClass |VariableType |
|
|
9
|
+
* |typedDefinition |NormalizedVolumeFlowRateVariableType i=1135 |
|
|
10
|
+
* |dataType |Float |
|
|
11
|
+
* |dataType Name |number i=10 |
|
|
12
|
+
* |isAbstract |false |
|
|
13
13
|
*/
|
|
14
14
|
export type UANormalizedVolumeFlowRateVariable_Base<T extends number> = UAFlowMeasurementVariable_Base<T>;
|
|
15
15
|
export interface UANormalizedVolumeFlowRateVariable<T extends number> extends UAFlowMeasurementVariable<T>, UANormalizedVolumeFlowRateVariable_Base<T> {
|
package/source/ua_padim.ts
CHANGED
|
@@ -11,12 +11,12 @@ import { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/source/ua_c
|
|
|
11
11
|
import { UAConfigurableObject } from "node-opcua-nodeset-di/source/ua_configurable_object"
|
|
12
12
|
import { UASignalSet } from "./ua_signal_set"
|
|
13
13
|
/**
|
|
14
|
-
* | |
|
|
15
|
-
*
|
|
16
|
-
* |namespace |http://opcfoundation.org/UA/PADIM/
|
|
17
|
-
* |nodeClass |ObjectType
|
|
18
|
-
* |typedDefinition |
|
|
19
|
-
* |isAbstract |false
|
|
14
|
+
* | | |
|
|
15
|
+
* |----------------|------------------------------------------------------------|
|
|
16
|
+
* |namespace |http://opcfoundation.org/UA/PADIM/ |
|
|
17
|
+
* |nodeClass |ObjectType |
|
|
18
|
+
* |typedDefinition |PADIMType i=1009 |
|
|
19
|
+
* |isAbstract |false |
|
|
20
20
|
*/
|
|
21
21
|
export interface UAPADIM_Base extends UAComponent_Base {
|
|
22
22
|
manufacturer: UAProperty<LocalizedText, DataType.LocalizedText>;
|
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
import { DataType } from "node-opcua-variant"
|
|
3
3
|
import { UAAnalogSignalVariable, UAAnalogSignalVariable_Base } from "./ua_analog_signal_variable"
|
|
4
4
|
/**
|
|
5
|
-
* | |
|
|
6
|
-
*
|
|
7
|
-
* |namespace |http://opcfoundation.org/UA/PADIM/
|
|
8
|
-
* |nodeClass |VariableType
|
|
9
|
-
* |typedDefinition |
|
|
10
|
-
* |dataType |Float
|
|
11
|
-
* |dataType Name |number
|
|
12
|
-
* |isAbstract |false
|
|
5
|
+
* | | |
|
|
6
|
+
* |----------------|------------------------------------------------------------|
|
|
7
|
+
* |namespace |http://opcfoundation.org/UA/PADIM/ |
|
|
8
|
+
* |nodeClass |VariableType |
|
|
9
|
+
* |typedDefinition |PressureMeasurementVariableType i=1121 |
|
|
10
|
+
* |dataType |Float |
|
|
11
|
+
* |dataType Name |number i=10 |
|
|
12
|
+
* |isAbstract |false |
|
|
13
13
|
*/
|
|
14
14
|
export type UAPressureMeasurementVariable_Base<T extends number> = UAAnalogSignalVariable_Base<T, DataType.Float>;
|
|
15
15
|
export interface UAPressureMeasurementVariable<T extends number> extends UAAnalogSignalVariable<T, DataType.Float>, UAPressureMeasurementVariable_Base<T> {
|
package/source/ua_signal.ts
CHANGED
|
@@ -3,12 +3,12 @@ import { UAObject, UAProperty } from "node-opcua-address-space-base"
|
|
|
3
3
|
import { DataType } from "node-opcua-variant"
|
|
4
4
|
import { UAString } from "node-opcua-basic-types"
|
|
5
5
|
/**
|
|
6
|
-
* | |
|
|
7
|
-
*
|
|
8
|
-
* |namespace |http://opcfoundation.org/UA/PADIM/
|
|
9
|
-
* |nodeClass |ObjectType
|
|
10
|
-
* |typedDefinition |
|
|
11
|
-
* |isAbstract |false
|
|
6
|
+
* | | |
|
|
7
|
+
* |----------------|------------------------------------------------------------|
|
|
8
|
+
* |namespace |http://opcfoundation.org/UA/PADIM/ |
|
|
9
|
+
* |nodeClass |ObjectType |
|
|
10
|
+
* |typedDefinition |SignalType i=1008 |
|
|
11
|
+
* |isAbstract |false |
|
|
12
12
|
*/
|
|
13
13
|
export interface UASignal_Base {
|
|
14
14
|
signalTag: UAProperty<UAString, DataType.String>;
|
package/source/ua_signal_set.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { UAObject } from "node-opcua-address-space-base"
|
|
3
3
|
/**
|
|
4
|
-
* | |
|
|
5
|
-
*
|
|
6
|
-
* |namespace |http://opcfoundation.org/UA/PADIM/
|
|
7
|
-
* |nodeClass |ObjectType
|
|
8
|
-
* |typedDefinition |
|
|
9
|
-
* |isAbstract |false
|
|
4
|
+
* | | |
|
|
5
|
+
* |----------------|------------------------------------------------------------|
|
|
6
|
+
* |namespace |http://opcfoundation.org/UA/PADIM/ |
|
|
7
|
+
* |nodeClass |ObjectType |
|
|
8
|
+
* |typedDefinition |SignalSetType i=1021 |
|
|
9
|
+
* |isAbstract |false |
|
|
10
10
|
*/
|
|
11
11
|
export interface UASignalSet_Base {
|
|
12
12
|
// PlaceHolder for $SignalIdentifier$
|