node-opcua-nodeset-machinery-process-values 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/ua_process_value.d.ts +6 -6
- package/dist/ua_process_value_setpoint_variable.d.ts +8 -8
- package/dist/ua_process_value_variable.d.ts +8 -8
- package/dist/ua_zero_point_adjustment_event.d.ts +6 -6
- package/package.json +8 -8
- package/source/ua_process_value.ts +6 -6
- package/source/ua_process_value_setpoint_variable.ts +8 -8
- package/source/ua_process_value_variable.ts +8 -8
- package/source/ua_zero_point_adjustment_event.ts +6 -6
|
@@ -43,12 +43,12 @@ export interface UAProcessValue_analogSignal<T, DT extends DataType> extends Omi
|
|
|
43
43
|
/**
|
|
44
44
|
* Represents a process value
|
|
45
45
|
*
|
|
46
|
-
* | |
|
|
47
|
-
*
|
|
48
|
-
* |namespace |http://opcfoundation.org/UA/Machinery/ProcessValues
|
|
49
|
-
* |nodeClass |ObjectType
|
|
50
|
-
* |typedDefinition |
|
|
51
|
-
* |isAbstract |false
|
|
46
|
+
* | | |
|
|
47
|
+
* |----------------|------------------------------------------------------------|
|
|
48
|
+
* |namespace |http://opcfoundation.org/UA/Machinery/ProcessValues/ |
|
|
49
|
+
* |nodeClass |ObjectType |
|
|
50
|
+
* |typedDefinition |ProcessValueType i=1003 |
|
|
51
|
+
* |isAbstract |false |
|
|
52
52
|
*/
|
|
53
53
|
export interface UAProcessValue_Base extends UAAnalogSignal_Base {
|
|
54
54
|
/**
|
|
@@ -9,14 +9,14 @@ import { UABaseDataVariable } from "node-opcua-nodeset-ua/source/ua_base_data_va
|
|
|
9
9
|
* Define the desired value of the Variable it
|
|
10
10
|
* belongs to.
|
|
11
11
|
*
|
|
12
|
-
* | |
|
|
13
|
-
*
|
|
14
|
-
* |namespace |http://opcfoundation.org/UA/Machinery/ProcessValues
|
|
15
|
-
* |nodeClass |VariableType
|
|
16
|
-
* |typedDefinition |
|
|
17
|
-
* |dataType |Variant
|
|
18
|
-
* |dataType Name |Variant
|
|
19
|
-
* |isAbstract |false
|
|
12
|
+
* | | |
|
|
13
|
+
* |----------------|------------------------------------------------------------|
|
|
14
|
+
* |namespace |http://opcfoundation.org/UA/Machinery/ProcessValues/ |
|
|
15
|
+
* |nodeClass |VariableType |
|
|
16
|
+
* |typedDefinition |ProcessValueSetpointVariableType i=2003 |
|
|
17
|
+
* |dataType |Variant |
|
|
18
|
+
* |dataType Name |Variant i=26 |
|
|
19
|
+
* |isAbstract |false |
|
|
20
20
|
*/
|
|
21
21
|
export interface UAProcessValueSetpointVariable_Base<T, DT extends DataType> extends UAAnalogUnitRange_Base<T, DT> {
|
|
22
22
|
/**
|
|
@@ -5,14 +5,14 @@ import { UAAnalogSignalVariable, UAAnalogSignalVariable_Base } from "node-opcua-
|
|
|
5
5
|
/**
|
|
6
6
|
* Provides a process value and additional meta data
|
|
7
7
|
*
|
|
8
|
-
* | |
|
|
9
|
-
*
|
|
10
|
-
* |namespace |http://opcfoundation.org/UA/Machinery/ProcessValues
|
|
11
|
-
* |nodeClass |VariableType
|
|
12
|
-
* |typedDefinition |
|
|
13
|
-
* |dataType |Variant
|
|
14
|
-
* |dataType Name |Variant
|
|
15
|
-
* |isAbstract |false
|
|
8
|
+
* | | |
|
|
9
|
+
* |----------------|------------------------------------------------------------|
|
|
10
|
+
* |namespace |http://opcfoundation.org/UA/Machinery/ProcessValues/ |
|
|
11
|
+
* |nodeClass |VariableType |
|
|
12
|
+
* |typedDefinition |ProcessValueVariableType i=2002 |
|
|
13
|
+
* |dataType |Variant |
|
|
14
|
+
* |dataType Name |Variant i=26 |
|
|
15
|
+
* |isAbstract |false |
|
|
16
16
|
*/
|
|
17
17
|
export interface UAProcessValueVariable_Base<T, DT extends DataType> extends UAAnalogSignalVariable_Base<T, DT> {
|
|
18
18
|
/**
|
|
@@ -6,12 +6,12 @@ import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/source/ua_b
|
|
|
6
6
|
* Provides information, that a zero-point
|
|
7
7
|
* adjustment took place
|
|
8
8
|
*
|
|
9
|
-
* | |
|
|
10
|
-
*
|
|
11
|
-
* |namespace |http://opcfoundation.org/UA/Machinery/ProcessValues
|
|
12
|
-
* |nodeClass |ObjectType
|
|
13
|
-
* |typedDefinition |
|
|
14
|
-
* |isAbstract |true
|
|
9
|
+
* | | |
|
|
10
|
+
* |----------------|------------------------------------------------------------|
|
|
11
|
+
* |namespace |http://opcfoundation.org/UA/Machinery/ProcessValues/ |
|
|
12
|
+
* |nodeClass |ObjectType |
|
|
13
|
+
* |typedDefinition |ZeroPointAdjustmentEventType i=1002 |
|
|
14
|
+
* |isAbstract |true |
|
|
15
15
|
*/
|
|
16
16
|
export interface UAZeroPointAdjustmentEvent_Base extends UABaseEvent_Base {
|
|
17
17
|
zeroPointAdjustmentResult: UAProperty<StatusCode, DataType.StatusCode>;
|
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.103.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",
|
|
@@ -10,15 +10,15 @@
|
|
|
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-padim": "2.
|
|
19
|
-
"node-opcua-nodeset-ua": "2.
|
|
18
|
+
"node-opcua-nodeset-padim": "2.103.0",
|
|
19
|
+
"node-opcua-nodeset-ua": "2.103.0",
|
|
20
20
|
"node-opcua-status-code": "2.98.1",
|
|
21
|
-
"node-opcua-variant": "2.
|
|
21
|
+
"node-opcua-variant": "2.102.0"
|
|
22
22
|
},
|
|
23
23
|
"files": [
|
|
24
24
|
"dist",
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"internet of things"
|
|
38
38
|
],
|
|
39
39
|
"homepage": "http://node-opcua.github.io/",
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "e206cac2daf39bd07e5ac6cbd744f966bb54759e"
|
|
41
41
|
}
|
|
@@ -49,12 +49,12 @@ export interface UAProcessValue_analogSignal<T, DT extends DataType> extends Omi
|
|
|
49
49
|
/**
|
|
50
50
|
* Represents a process value
|
|
51
51
|
*
|
|
52
|
-
* | |
|
|
53
|
-
*
|
|
54
|
-
* |namespace |http://opcfoundation.org/UA/Machinery/ProcessValues
|
|
55
|
-
* |nodeClass |ObjectType
|
|
56
|
-
* |typedDefinition |
|
|
57
|
-
* |isAbstract |false
|
|
52
|
+
* | | |
|
|
53
|
+
* |----------------|------------------------------------------------------------|
|
|
54
|
+
* |namespace |http://opcfoundation.org/UA/Machinery/ProcessValues/ |
|
|
55
|
+
* |nodeClass |ObjectType |
|
|
56
|
+
* |typedDefinition |ProcessValueType i=1003 |
|
|
57
|
+
* |isAbstract |false |
|
|
58
58
|
*/
|
|
59
59
|
export interface UAProcessValue_Base extends UAAnalogSignal_Base {
|
|
60
60
|
/**
|
|
@@ -10,14 +10,14 @@ import { UABaseDataVariable } from "node-opcua-nodeset-ua/source/ua_base_data_va
|
|
|
10
10
|
* Define the desired value of the Variable it
|
|
11
11
|
* belongs to.
|
|
12
12
|
*
|
|
13
|
-
* | |
|
|
14
|
-
*
|
|
15
|
-
* |namespace |http://opcfoundation.org/UA/Machinery/ProcessValues
|
|
16
|
-
* |nodeClass |VariableType
|
|
17
|
-
* |typedDefinition |
|
|
18
|
-
* |dataType |Variant
|
|
19
|
-
* |dataType Name |Variant
|
|
20
|
-
* |isAbstract |false
|
|
13
|
+
* | | |
|
|
14
|
+
* |----------------|------------------------------------------------------------|
|
|
15
|
+
* |namespace |http://opcfoundation.org/UA/Machinery/ProcessValues/ |
|
|
16
|
+
* |nodeClass |VariableType |
|
|
17
|
+
* |typedDefinition |ProcessValueSetpointVariableType i=2003 |
|
|
18
|
+
* |dataType |Variant |
|
|
19
|
+
* |dataType Name |Variant i=26 |
|
|
20
|
+
* |isAbstract |false |
|
|
21
21
|
*/
|
|
22
22
|
export interface UAProcessValueSetpointVariable_Base<T, DT extends DataType> extends UAAnalogUnitRange_Base<T, DT> {
|
|
23
23
|
/**
|
|
@@ -8,14 +8,14 @@ import { UAAnalogSignalVariable, UAAnalogSignalVariable_Base } from "node-opcua-
|
|
|
8
8
|
/**
|
|
9
9
|
* Provides a process value and additional meta data
|
|
10
10
|
*
|
|
11
|
-
* | |
|
|
12
|
-
*
|
|
13
|
-
* |namespace |http://opcfoundation.org/UA/Machinery/ProcessValues
|
|
14
|
-
* |nodeClass |VariableType
|
|
15
|
-
* |typedDefinition |
|
|
16
|
-
* |dataType |Variant
|
|
17
|
-
* |dataType Name |Variant
|
|
18
|
-
* |isAbstract |false
|
|
11
|
+
* | | |
|
|
12
|
+
* |----------------|------------------------------------------------------------|
|
|
13
|
+
* |namespace |http://opcfoundation.org/UA/Machinery/ProcessValues/ |
|
|
14
|
+
* |nodeClass |VariableType |
|
|
15
|
+
* |typedDefinition |ProcessValueVariableType i=2002 |
|
|
16
|
+
* |dataType |Variant |
|
|
17
|
+
* |dataType Name |Variant i=26 |
|
|
18
|
+
* |isAbstract |false |
|
|
19
19
|
*/
|
|
20
20
|
export interface UAProcessValueVariable_Base<T, DT extends DataType> extends UAAnalogSignalVariable_Base<T, DT> {
|
|
21
21
|
/**
|
|
@@ -11,12 +11,12 @@ import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/source/ua_b
|
|
|
11
11
|
* Provides information, that a zero-point
|
|
12
12
|
* adjustment took place
|
|
13
13
|
*
|
|
14
|
-
* | |
|
|
15
|
-
*
|
|
16
|
-
* |namespace |http://opcfoundation.org/UA/Machinery/ProcessValues
|
|
17
|
-
* |nodeClass |ObjectType
|
|
18
|
-
* |typedDefinition |
|
|
19
|
-
* |isAbstract |true
|
|
14
|
+
* | | |
|
|
15
|
+
* |----------------|------------------------------------------------------------|
|
|
16
|
+
* |namespace |http://opcfoundation.org/UA/Machinery/ProcessValues/ |
|
|
17
|
+
* |nodeClass |ObjectType |
|
|
18
|
+
* |typedDefinition |ZeroPointAdjustmentEventType i=1002 |
|
|
19
|
+
* |isAbstract |true |
|
|
20
20
|
*/
|
|
21
21
|
export interface UAZeroPointAdjustmentEvent_Base extends UABaseEvent_Base {
|
|
22
22
|
zeroPointAdjustmentResult: UAProperty<StatusCode, DataType.StatusCode>;
|