node-opcua-nodeset-machinery-process-values 2.151.0 → 2.154.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_process_value.d.ts +8 -8
- package/dist/ua_process_value_setpoint_variable.d.ts +4 -4
- package/dist/ua_process_value_variable.d.ts +3 -3
- package/dist/ua_zero_point_adjustment_event.d.ts +1 -1
- package/package.json +11 -11
- package/source/ua_process_value.ts +10 -15
- package/source/ua_process_value_setpoint_variable.ts +4 -4
- package/source/ua_process_value_variable.ts +3 -5
- package/source/ua_zero_point_adjustment_event.ts +2 -6
|
@@ -2,14 +2,14 @@ import { UAMethod, UAProperty } from "node-opcua-address-space-base";
|
|
|
2
2
|
import { DataType } from "node-opcua-variant";
|
|
3
3
|
import { EUInformation } from "node-opcua-data-access";
|
|
4
4
|
import { UInt16 } from "node-opcua-basic-types";
|
|
5
|
-
import { DTRange } from "node-opcua-nodeset-ua/
|
|
6
|
-
import { UAAnalogUnit } from "node-opcua-nodeset-ua/
|
|
7
|
-
import { UAAnalogUnitRange } from "node-opcua-nodeset-ua/
|
|
8
|
-
import { UAMultiStateValueDiscrete } from "node-opcua-nodeset-ua/
|
|
9
|
-
import { UAExclusiveDeviationAlarm } from "node-opcua-nodeset-ua/
|
|
10
|
-
import { UAExclusiveLimitAlarm } from "node-opcua-nodeset-ua/
|
|
11
|
-
import { UAAnalogSignalVariable } from "node-opcua-nodeset-padim/
|
|
12
|
-
import { UAAnalogSignal, UAAnalogSignal_Base } from "node-opcua-nodeset-padim/
|
|
5
|
+
import { DTRange } from "node-opcua-nodeset-ua/dist/dt_range";
|
|
6
|
+
import { UAAnalogUnit } from "node-opcua-nodeset-ua/dist/ua_analog_unit";
|
|
7
|
+
import { UAAnalogUnitRange } from "node-opcua-nodeset-ua/dist/ua_analog_unit_range";
|
|
8
|
+
import { UAMultiStateValueDiscrete } from "node-opcua-nodeset-ua/dist/ua_multi_state_value_discrete";
|
|
9
|
+
import { UAExclusiveDeviationAlarm } from "node-opcua-nodeset-ua/dist/ua_exclusive_deviation_alarm";
|
|
10
|
+
import { UAExclusiveLimitAlarm } from "node-opcua-nodeset-ua/dist/ua_exclusive_limit_alarm";
|
|
11
|
+
import { UAAnalogSignalVariable } from "node-opcua-nodeset-padim/dist/ua_analog_signal_variable";
|
|
12
|
+
import { UAAnalogSignal, UAAnalogSignal_Base } from "node-opcua-nodeset-padim/dist/ua_analog_signal";
|
|
13
13
|
import { UAProcessValueSetpointVariable } from "./ua_process_value_setpoint_variable";
|
|
14
14
|
export interface UAProcessValue_analogSignal<T, DT extends DataType> extends Omit<UAAnalogSignalVariable<T, DT>, "engineeringUnits" | "euRange"> {
|
|
15
15
|
engineeringUnits: UAProperty<EUInformation, DataType.ExtensionObject>;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { UAProperty } from "node-opcua-address-space-base";
|
|
2
2
|
import { DataType } from "node-opcua-variant";
|
|
3
3
|
import { UInt16 } from "node-opcua-basic-types";
|
|
4
|
-
import { UAAnalogUnitRange, UAAnalogUnitRange_Base } from "node-opcua-nodeset-ua/
|
|
5
|
-
import { UAMultiStateValueDiscrete } from "node-opcua-nodeset-ua/
|
|
6
|
-
import { UAAnalogUnit } from "node-opcua-nodeset-ua/
|
|
7
|
-
import { UABaseDataVariable } from "node-opcua-nodeset-ua/
|
|
4
|
+
import { UAAnalogUnitRange, UAAnalogUnitRange_Base } from "node-opcua-nodeset-ua/dist/ua_analog_unit_range";
|
|
5
|
+
import { UAMultiStateValueDiscrete } from "node-opcua-nodeset-ua/dist/ua_multi_state_value_discrete";
|
|
6
|
+
import { UAAnalogUnit } from "node-opcua-nodeset-ua/dist/ua_analog_unit";
|
|
7
|
+
import { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
|
|
8
8
|
/**
|
|
9
9
|
* Define the desired value of the Variable it
|
|
10
10
|
* belongs to.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { DataType } from "node-opcua-variant";
|
|
2
|
-
import { UAAnalogUnit } from "node-opcua-nodeset-ua/
|
|
3
|
-
import { UAAnalogUnitRange } from "node-opcua-nodeset-ua/
|
|
4
|
-
import { UAAnalogSignalVariable, UAAnalogSignalVariable_Base } from "node-opcua-nodeset-padim/
|
|
2
|
+
import { UAAnalogUnit } from "node-opcua-nodeset-ua/dist/ua_analog_unit";
|
|
3
|
+
import { UAAnalogUnitRange } from "node-opcua-nodeset-ua/dist/ua_analog_unit_range";
|
|
4
|
+
import { UAAnalogSignalVariable, UAAnalogSignalVariable_Base } from "node-opcua-nodeset-padim/dist/ua_analog_signal_variable";
|
|
5
5
|
/**
|
|
6
6
|
* Provides a process value and additional meta data
|
|
7
7
|
*
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { UAProperty } from "node-opcua-address-space-base";
|
|
2
2
|
import { DataType } from "node-opcua-variant";
|
|
3
3
|
import { StatusCode } from "node-opcua-status-code";
|
|
4
|
-
import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/
|
|
4
|
+
import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/dist/ua_base_event";
|
|
5
5
|
/**
|
|
6
6
|
* Provides information, that a zero-point
|
|
7
7
|
* adjustment took place
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-opcua-nodeset-machinery-process-values",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.154.0",
|
|
4
4
|
"description": "pure nodejs OPCUA SDK - module node-opcua-nodeset-machinery-process-values",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -11,15 +11,15 @@
|
|
|
11
11
|
"author": "Etienne Rossignon <etienne.rossignon@sterfive.com>",
|
|
12
12
|
"license": "MIT",
|
|
13
13
|
"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-padim": "2.
|
|
20
|
-
"node-opcua-nodeset-ua": "2.
|
|
21
|
-
"node-opcua-status-code": "2.
|
|
22
|
-
"node-opcua-variant": "2.
|
|
14
|
+
"node-opcua-address-space-base": "2.154.0",
|
|
15
|
+
"node-opcua-basic-types": "2.154.0",
|
|
16
|
+
"node-opcua-data-access": "2.154.0",
|
|
17
|
+
"node-opcua-data-model": "2.154.0",
|
|
18
|
+
"node-opcua-nodeid": "2.153.0",
|
|
19
|
+
"node-opcua-nodeset-padim": "2.154.0",
|
|
20
|
+
"node-opcua-nodeset-ua": "2.154.0",
|
|
21
|
+
"node-opcua-status-code": "2.153.0",
|
|
22
|
+
"node-opcua-variant": "2.154.0"
|
|
23
23
|
},
|
|
24
24
|
"files": [
|
|
25
25
|
"dist",
|
|
@@ -38,5 +38,5 @@
|
|
|
38
38
|
"internet of things"
|
|
39
39
|
],
|
|
40
40
|
"homepage": "http://node-opcua.github.io/",
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "134c73195f93f46c0101b2837bed22754156c916"
|
|
42
42
|
}
|
|
@@ -1,21 +1,16 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { UAMethod, UAProperty } from "node-opcua-address-space-base"
|
|
3
|
-
import { DataType
|
|
4
|
-
import { LocalizedText, QualifiedName } from "node-opcua-data-model"
|
|
3
|
+
import { DataType } from "node-opcua-variant"
|
|
5
4
|
import { EUInformation } from "node-opcua-data-access"
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import { UAExclusiveDeviationAlarm } from "node-opcua-nodeset-ua/source/ua_exclusive_deviation_alarm"
|
|
16
|
-
import { UAExclusiveLimitAlarm } from "node-opcua-nodeset-ua/source/ua_exclusive_limit_alarm"
|
|
17
|
-
import { UAAnalogSignalVariable } from "node-opcua-nodeset-padim/source/ua_analog_signal_variable"
|
|
18
|
-
import { UAAnalogSignal, UAAnalogSignal_Base } from "node-opcua-nodeset-padim/source/ua_analog_signal"
|
|
5
|
+
import { UInt16 } from "node-opcua-basic-types"
|
|
6
|
+
import { DTRange } from "node-opcua-nodeset-ua/dist/dt_range"
|
|
7
|
+
import { UAAnalogUnit } from "node-opcua-nodeset-ua/dist/ua_analog_unit"
|
|
8
|
+
import { UAAnalogUnitRange } from "node-opcua-nodeset-ua/dist/ua_analog_unit_range"
|
|
9
|
+
import { UAMultiStateValueDiscrete } from "node-opcua-nodeset-ua/dist/ua_multi_state_value_discrete"
|
|
10
|
+
import { UAExclusiveDeviationAlarm } from "node-opcua-nodeset-ua/dist/ua_exclusive_deviation_alarm"
|
|
11
|
+
import { UAExclusiveLimitAlarm } from "node-opcua-nodeset-ua/dist/ua_exclusive_limit_alarm"
|
|
12
|
+
import { UAAnalogSignalVariable } from "node-opcua-nodeset-padim/dist/ua_analog_signal_variable"
|
|
13
|
+
import { UAAnalogSignal, UAAnalogSignal_Base } from "node-opcua-nodeset-padim/dist/ua_analog_signal"
|
|
19
14
|
import { UAProcessValueSetpointVariable } from "./ua_process_value_setpoint_variable"
|
|
20
15
|
export interface UAProcessValue_analogSignal<T, DT extends DataType> extends Omit<UAAnalogSignalVariable<T, DT>, "engineeringUnits"|"euRange"> { // Variable
|
|
21
16
|
engineeringUnits: UAProperty<EUInformation, DataType.ExtensionObject>;
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
import { UAProperty } from "node-opcua-address-space-base"
|
|
3
3
|
import { DataType } from "node-opcua-variant"
|
|
4
4
|
import { UInt16 } from "node-opcua-basic-types"
|
|
5
|
-
import { UAAnalogUnitRange, UAAnalogUnitRange_Base } from "node-opcua-nodeset-ua/
|
|
6
|
-
import { UAMultiStateValueDiscrete } from "node-opcua-nodeset-ua/
|
|
7
|
-
import { UAAnalogUnit } from "node-opcua-nodeset-ua/
|
|
8
|
-
import { UABaseDataVariable } from "node-opcua-nodeset-ua/
|
|
5
|
+
import { UAAnalogUnitRange, UAAnalogUnitRange_Base } from "node-opcua-nodeset-ua/dist/ua_analog_unit_range"
|
|
6
|
+
import { UAMultiStateValueDiscrete } from "node-opcua-nodeset-ua/dist/ua_multi_state_value_discrete"
|
|
7
|
+
import { UAAnalogUnit } from "node-opcua-nodeset-ua/dist/ua_analog_unit"
|
|
8
|
+
import { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable"
|
|
9
9
|
/**
|
|
10
10
|
* Define the desired value of the Variable it
|
|
11
11
|
* belongs to.
|
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { DataType } from "node-opcua-variant"
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import { UAAnalogUnitRange } from "node-opcua-nodeset-ua/source/ua_analog_unit_range"
|
|
7
|
-
import { UAAnalogSignalVariable, UAAnalogSignalVariable_Base } from "node-opcua-nodeset-padim/source/ua_analog_signal_variable"
|
|
3
|
+
import { UAAnalogUnit } from "node-opcua-nodeset-ua/dist/ua_analog_unit"
|
|
4
|
+
import { UAAnalogUnitRange } from "node-opcua-nodeset-ua/dist/ua_analog_unit_range"
|
|
5
|
+
import { UAAnalogSignalVariable, UAAnalogSignalVariable_Base } from "node-opcua-nodeset-padim/dist/ua_analog_signal_variable"
|
|
8
6
|
/**
|
|
9
7
|
* Provides a process value and additional meta data
|
|
10
8
|
*
|
|
@@ -1,12 +1,8 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { UAProperty } from "node-opcua-address-space-base"
|
|
3
|
-
import { DataType
|
|
4
|
-
import { LocalizedText } from "node-opcua-data-model"
|
|
5
|
-
import { NodeId } from "node-opcua-nodeid"
|
|
3
|
+
import { DataType } from "node-opcua-variant"
|
|
6
4
|
import { StatusCode } from "node-opcua-status-code"
|
|
7
|
-
import {
|
|
8
|
-
import { DTTimeZone } from "node-opcua-nodeset-ua/source/dt_time_zone"
|
|
9
|
-
import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/source/ua_base_event"
|
|
5
|
+
import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/dist/ua_base_event"
|
|
10
6
|
/**
|
|
11
7
|
* Provides information, that a zero-point
|
|
12
8
|
* adjustment took place
|