node-opcua-nodeset-machinery-process-values 2.102.0 → 2.104.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/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2022-2023 Sterfive SAS - 833264583 RCS ORLEANS - France (https://www.sterfive.com)
4
+
5
+ Copyright (c) 2014-2022 Etienne Rossignon
6
+
7
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
8
+ this software and associated documentation files (the "Software"), to deal in
9
+ the Software without restriction, including without limitation the rights to
10
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
11
+ the Software, and to permit persons to whom the Software is furnished to do so,
12
+ subject to the following conditions:
13
+
14
+ The above copyright notice and this permission notice shall be included in all
15
+ copies or substantial portions of the Software.
16
+
17
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
19
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
20
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
21
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -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 |21:ProcessValueType ns=21;i=1003 |
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 |21:ProcessValueSetpointVariableType ns=21;i=2003 |
17
- * |dataType |Variant |
18
- * |dataType Name |Variant ns=0;i=26 |
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 |21:ProcessValueVariableType ns=21;i=2002 |
13
- * |dataType |Variant |
14
- * |dataType Name |Variant ns=0;i=26 |
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 |21:ZeroPointAdjustmentEventType ns=21;i=1002 |
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.102.0",
3
+ "version": "2.104.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.102.0",
14
- "node-opcua-basic-types": "2.99.0",
15
- "node-opcua-data-access": "2.102.0",
16
- "node-opcua-data-model": "2.102.0",
17
- "node-opcua-nodeid": "2.99.0",
18
- "node-opcua-nodeset-padim": "2.102.0",
19
- "node-opcua-nodeset-ua": "2.102.0",
20
- "node-opcua-status-code": "2.98.1",
21
- "node-opcua-variant": "2.102.0"
13
+ "node-opcua-address-space-base": "2.104.0",
14
+ "node-opcua-basic-types": "2.104.0",
15
+ "node-opcua-data-access": "2.104.0",
16
+ "node-opcua-data-model": "2.104.0",
17
+ "node-opcua-nodeid": "2.104.0",
18
+ "node-opcua-nodeset-padim": "2.104.0",
19
+ "node-opcua-nodeset-ua": "2.104.0",
20
+ "node-opcua-status-code": "2.104.0",
21
+ "node-opcua-variant": "2.104.0"
22
22
  },
23
23
  "files": [
24
24
  "dist",
@@ -36,5 +36,6 @@
36
36
  "opc ua",
37
37
  "internet of things"
38
38
  ],
39
- "homepage": "http://node-opcua.github.io/"
39
+ "homepage": "http://node-opcua.github.io/",
40
+ "gitHead": "3cd6d355e8b3c66822d08a3ca682659ea5d1a55d"
40
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 |21:ProcessValueType ns=21;i=1003 |
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 |21:ProcessValueSetpointVariableType ns=21;i=2003 |
18
- * |dataType |Variant |
19
- * |dataType Name |Variant ns=0;i=26 |
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 |21:ProcessValueVariableType ns=21;i=2002 |
16
- * |dataType |Variant |
17
- * |dataType Name |Variant ns=0;i=26 |
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 |21:ZeroPointAdjustmentEventType ns=21;i=1002 |
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>;