node-opcua-nodeset-adi 2.134.0 → 2.138.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 CHANGED
@@ -1,3 +1,4 @@
1
+
1
2
  The MIT License (MIT)
2
3
 
3
4
  Copyright (c) 2022-2024 Sterfive SAS - 833264583 RCS ORLEANS - France (https://www.sterfive.com)
@@ -3,7 +3,7 @@
3
3
  * |-----------|------------------------------------------------------------|
4
4
  * | namespace |http://opcfoundation.org/UA/ADI/ |
5
5
  * | nodeClass |DataType |
6
- * | name |2:AcquisitionResultStatusEnumeration |
6
+ * | name |AcquisitionResultStatusEnumeration |
7
7
  * | isAbstract|false |
8
8
  */
9
9
  export declare enum EnumAcquisitionResultStatus {
@@ -7,7 +7,7 @@ exports.EnumAcquisitionResultStatus = void 0;
7
7
  * |-----------|------------------------------------------------------------|
8
8
  * | namespace |http://opcfoundation.org/UA/ADI/ |
9
9
  * | nodeClass |DataType |
10
- * | name |2:AcquisitionResultStatusEnumeration |
10
+ * | name |AcquisitionResultStatusEnumeration |
11
11
  * | isAbstract|false |
12
12
  */
13
13
  var EnumAcquisitionResultStatus;
@@ -3,7 +3,7 @@
3
3
  * |-----------|------------------------------------------------------------|
4
4
  * | namespace |http://opcfoundation.org/UA/ADI/ |
5
5
  * | nodeClass |DataType |
6
- * | name |2:AlarmStateEnumeration |
6
+ * | name |AlarmStateEnumeration |
7
7
  * | isAbstract|false |
8
8
  */
9
9
  export declare enum EnumAlarmState {
@@ -7,7 +7,7 @@ exports.EnumAlarmState = void 0;
7
7
  * |-----------|------------------------------------------------------------|
8
8
  * | namespace |http://opcfoundation.org/UA/ADI/ |
9
9
  * | nodeClass |DataType |
10
- * | name |2:AlarmStateEnumeration |
10
+ * | name |AlarmStateEnumeration |
11
11
  * | isAbstract|false |
12
12
  */
13
13
  var EnumAlarmState;
@@ -3,7 +3,7 @@
3
3
  * |-----------|------------------------------------------------------------|
4
4
  * | namespace |http://opcfoundation.org/UA/ADI/ |
5
5
  * | nodeClass |DataType |
6
- * | name |2:ExecutionCycleEnumeration |
6
+ * | name |ExecutionCycleEnumeration |
7
7
  * | isAbstract|false |
8
8
  */
9
9
  export declare enum EnumExecutionCycle {
@@ -7,7 +7,7 @@ exports.EnumExecutionCycle = void 0;
7
7
  * |-----------|------------------------------------------------------------|
8
8
  * | namespace |http://opcfoundation.org/UA/ADI/ |
9
9
  * | nodeClass |DataType |
10
- * | name |2:ExecutionCycleEnumeration |
10
+ * | name |ExecutionCycleEnumeration |
11
11
  * | isAbstract|false |
12
12
  */
13
13
  var EnumExecutionCycle;
@@ -13,13 +13,14 @@ import { UABaseDataVariable, UABaseDataVariable_Base } from "node-opcua-nodeset-
13
13
  * |nodeClass |VariableType |
14
14
  * |typedDefinition |ChemometricModelType i=2007 |
15
15
  * |dataType |ByteString |
16
- * |dataType Name |Buffer i=15 |
16
+ * |dataType Name |(Buffer | Buffer[]) i=15 |
17
+ * |value rank |-2 |
17
18
  * |isAbstract |false |
18
19
  */
19
- export interface UAChemometricModel_Base<T extends Buffer> extends UABaseDataVariable_Base<T, DataType.ByteString> {
20
+ export interface UAChemometricModel_Base<T extends (Buffer | Buffer[])> extends UABaseDataVariable_Base<T, DataType.ByteString> {
20
21
  name: UAProperty<LocalizedText, DataType.LocalizedText>;
21
22
  creationDate: UAProperty<Date, DataType.DateTime>;
22
23
  modelDescription: UAProperty<LocalizedText, DataType.LocalizedText>;
23
24
  }
24
- export interface UAChemometricModel<T extends Buffer> extends UABaseDataVariable<T, DataType.ByteString>, UAChemometricModel_Base<T> {
25
+ export interface UAChemometricModel<T extends (Buffer | Buffer[])> extends UABaseDataVariable<T, DataType.ByteString>, UAChemometricModel_Base<T> {
25
26
  }
@@ -10,7 +10,8 @@ import { UADataItem, UADataItem_Base } from "node-opcua-nodeset-ua/source/ua_dat
10
10
  * |nodeClass |VariableType |
11
11
  * |typedDefinition |EngineeringValueType i=9380 |
12
12
  * |dataType |Null |
13
- * |dataType Name |VariantOptions i=0 |
13
+ * |dataType Name |(VariantOptions | VariantOptions[]) i=0 |
14
+ * |value rank |-2 |
14
15
  * |isAbstract |false |
15
16
  */
16
17
  export type UAEngineeringValue_Base<T, DT extends DataType> = UADataItem_Base<T, DT>;
@@ -13,11 +13,12 @@ import { UAChemometricModel, UAChemometricModel_Base } from "./ua_chemometric_mo
13
13
  * |nodeClass |VariableType |
14
14
  * |typedDefinition |MVAModelType i=2009 |
15
15
  * |dataType |ByteString |
16
- * |dataType Name |Buffer i=15 |
16
+ * |dataType Name |(Buffer | Buffer[]) i=15 |
17
+ * |value rank |-2 |
17
18
  * |isAbstract |false |
18
19
  */
19
- export interface UAMVAModel_Base<T extends Buffer> extends UAChemometricModel_Base<T> {
20
+ export interface UAMVAModel_Base<T extends (Buffer | Buffer[])> extends UAChemometricModel_Base<T> {
20
21
  mainDataIndex: UAProperty<Int32, DataType.Int32>;
21
22
  }
22
- export interface UAMVAModel<T extends Buffer> extends Omit<UAChemometricModel<T>, "$User_defined_Output_$">, UAMVAModel_Base<T> {
23
+ export interface UAMVAModel<T extends (Buffer | Buffer[])> extends Omit<UAChemometricModel<T>, "$User_defined_Output_$">, UAMVAModel_Base<T> {
23
24
  }
@@ -15,7 +15,8 @@ import { EnumAlarmState } from "./enum_alarm_state";
15
15
  * |nodeClass |VariableType |
16
16
  * |typedDefinition |MVAOutputParameterType i=2010 |
17
17
  * |dataType |Null |
18
- * |dataType Name |VariantOptions i=0 |
18
+ * |dataType Name |(VariantOptions | VariantOptions[]) i=0 |
19
+ * |value rank |-2 |
19
20
  * |isAbstract |false |
20
21
  */
21
22
  export interface UAMVAOutputParameter_Base<T, DT extends DataType> extends UABaseDataVariable_Base<T, DT> {
@@ -12,7 +12,8 @@ import { UADataItem, UADataItem_Base } from "node-opcua-nodeset-ua/source/ua_dat
12
12
  * |nodeClass |VariableType |
13
13
  * |typedDefinition |ProcessVariableType i=2008 |
14
14
  * |dataType |Null |
15
- * |dataType Name |VariantOptions i=0 |
15
+ * |dataType Name |(VariantOptions | VariantOptions[]) i=0 |
16
+ * |value rank |-2 |
16
17
  * |isAbstract |false |
17
18
  */
18
19
  export type UAProcessVariable_Base<T, DT extends DataType> = UADataItem_Base<T, DT>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-opcua-nodeset-adi",
3
- "version": "2.134.0",
3
+ "version": "2.138.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,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.134.0",
13
+ "node-opcua-address-space-base": "2.138.0",
14
14
  "node-opcua-basic-types": "2.134.0",
15
- "node-opcua-data-access": "2.134.0",
16
- "node-opcua-data-model": "2.134.0",
15
+ "node-opcua-data-access": "2.137.0",
16
+ "node-opcua-data-model": "2.137.0",
17
17
  "node-opcua-nodeid": "2.133.0",
18
- "node-opcua-nodeset-di": "2.134.0",
19
- "node-opcua-nodeset-ua": "2.134.0",
20
- "node-opcua-variant": "2.134.0"
18
+ "node-opcua-nodeset-di": "2.138.0",
19
+ "node-opcua-nodeset-ua": "2.138.0",
20
+ "node-opcua-variant": "2.137.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": "ccb34926a3c195f6a7e66fca58a2f101858e78be"
39
+ "gitHead": "383bbe814f9261b2bc01a5d0fe476813153bb110"
40
40
  }
@@ -5,7 +5,7 @@
5
5
  * |-----------|------------------------------------------------------------|
6
6
  * | namespace |http://opcfoundation.org/UA/ADI/ |
7
7
  * | nodeClass |DataType |
8
- * | name |2:AcquisitionResultStatusEnumeration |
8
+ * | name |AcquisitionResultStatusEnumeration |
9
9
  * | isAbstract|false |
10
10
  */
11
11
  export enum EnumAcquisitionResultStatus {
@@ -5,7 +5,7 @@
5
5
  * |-----------|------------------------------------------------------------|
6
6
  * | namespace |http://opcfoundation.org/UA/ADI/ |
7
7
  * | nodeClass |DataType |
8
- * | name |2:AlarmStateEnumeration |
8
+ * | name |AlarmStateEnumeration |
9
9
  * | isAbstract|false |
10
10
  */
11
11
  export enum EnumAlarmState {
@@ -5,7 +5,7 @@
5
5
  * |-----------|------------------------------------------------------------|
6
6
  * | namespace |http://opcfoundation.org/UA/ADI/ |
7
7
  * | nodeClass |DataType |
8
- * | name |2:ExecutionCycleEnumeration |
8
+ * | name |ExecutionCycleEnumeration |
9
9
  * | isAbstract|false |
10
10
  */
11
11
  export enum EnumExecutionCycle {
@@ -1,6 +1,6 @@
1
1
  // ----- this file has been automatically generated - do not edit
2
2
  import { UAObject, UAMethod, UAProperty } from "node-opcua-address-space-base"
3
- import { DataType, Variant, VariantOptions } from "node-opcua-variant"
3
+ import { DataType, VariantOptions } from "node-opcua-variant"
4
4
  import { LocalizedText, QualifiedName } from "node-opcua-data-model"
5
5
  import { EUInformation } from "node-opcua-data-access"
6
6
  import { UInt64, UInt32, Int32, UInt16, UAString } from "node-opcua-basic-types"
@@ -14,15 +14,16 @@ import { UABaseDataVariable, UABaseDataVariable_Base } from "node-opcua-nodeset-
14
14
  * |nodeClass |VariableType |
15
15
  * |typedDefinition |ChemometricModelType i=2007 |
16
16
  * |dataType |ByteString |
17
- * |dataType Name |Buffer i=15 |
17
+ * |dataType Name |(Buffer | Buffer[]) i=15 |
18
+ * |value rank |-2 |
18
19
  * |isAbstract |false |
19
20
  */
20
- export interface UAChemometricModel_Base<T extends Buffer> extends UABaseDataVariable_Base<T, DataType.ByteString> {
21
+ export interface UAChemometricModel_Base<T extends (Buffer | Buffer[])> extends UABaseDataVariable_Base<T, DataType.ByteString> {
21
22
  name: UAProperty<LocalizedText, DataType.LocalizedText>;
22
23
  creationDate: UAProperty<Date, DataType.DateTime>;
23
24
  modelDescription: UAProperty<LocalizedText, DataType.LocalizedText>;
24
25
  // PlaceHolder for $User_defined_Input_$
25
26
  // PlaceHolder for $User_defined_Output_$
26
27
  }
27
- export interface UAChemometricModel<T extends Buffer> extends UABaseDataVariable<T, DataType.ByteString>, UAChemometricModel_Base<T> {
28
+ export interface UAChemometricModel<T extends (Buffer | Buffer[])> extends UABaseDataVariable<T, DataType.ByteString>, UAChemometricModel_Base<T> {
28
29
  }
@@ -11,7 +11,8 @@ import { UADataItem, UADataItem_Base } from "node-opcua-nodeset-ua/source/ua_dat
11
11
  * |nodeClass |VariableType |
12
12
  * |typedDefinition |EngineeringValueType i=9380 |
13
13
  * |dataType |Null |
14
- * |dataType Name |VariantOptions i=0 |
14
+ * |dataType Name |(VariantOptions | VariantOptions[]) i=0 |
15
+ * |value rank |-2 |
15
16
  * |isAbstract |false |
16
17
  */
17
18
  export type UAEngineeringValue_Base<T, DT extends DataType> = UADataItem_Base<T, DT>;
@@ -16,12 +16,13 @@ import { UAChemometricModel, UAChemometricModel_Base } from "./ua_chemometric_mo
16
16
  * |nodeClass |VariableType |
17
17
  * |typedDefinition |MVAModelType i=2009 |
18
18
  * |dataType |ByteString |
19
- * |dataType Name |Buffer i=15 |
19
+ * |dataType Name |(Buffer | Buffer[]) i=15 |
20
+ * |value rank |-2 |
20
21
  * |isAbstract |false |
21
22
  */
22
- export interface UAMVAModel_Base<T extends Buffer> extends UAChemometricModel_Base<T> {
23
+ export interface UAMVAModel_Base<T extends (Buffer | Buffer[])> extends UAChemometricModel_Base<T> {
23
24
  // PlaceHolder for $User_defined_Output_$
24
25
  mainDataIndex: UAProperty<Int32, DataType.Int32>;
25
26
  }
26
- export interface UAMVAModel<T extends Buffer> extends Omit<UAChemometricModel<T>, "$User_defined_Output_$">, UAMVAModel_Base<T> {
27
+ export interface UAMVAModel<T extends (Buffer | Buffer[])> extends Omit<UAChemometricModel<T>, "$User_defined_Output_$">, UAMVAModel_Base<T> {
27
28
  }
@@ -16,7 +16,8 @@ import { EnumAlarmState } from "./enum_alarm_state"
16
16
  * |nodeClass |VariableType |
17
17
  * |typedDefinition |MVAOutputParameterType i=2010 |
18
18
  * |dataType |Null |
19
- * |dataType Name |VariantOptions i=0 |
19
+ * |dataType Name |(VariantOptions | VariantOptions[]) i=0 |
20
+ * |value rank |-2 |
20
21
  * |isAbstract |false |
21
22
  */
22
23
  export interface UAMVAOutputParameter_Base<T, DT extends DataType> extends UABaseDataVariable_Base<T, DT> {
@@ -1,5 +1,5 @@
1
1
  // ----- this file has been automatically generated - do not edit
2
- import { DataType, Variant, VariantOptions } from "node-opcua-variant"
2
+ import { DataType, VariantOptions } from "node-opcua-variant"
3
3
  import { UInt32, UAString } from "node-opcua-basic-types"
4
4
  import { UAYArrayItem } from "node-opcua-nodeset-ua/source/ua_y_array_item"
5
5
  import { UADataItem } from "node-opcua-nodeset-ua/source/ua_data_item"
@@ -13,7 +13,8 @@ import { UADataItem, UADataItem_Base } from "node-opcua-nodeset-ua/source/ua_dat
13
13
  * |nodeClass |VariableType |
14
14
  * |typedDefinition |ProcessVariableType i=2008 |
15
15
  * |dataType |Null |
16
- * |dataType Name |VariantOptions i=0 |
16
+ * |dataType Name |(VariantOptions | VariantOptions[]) i=0 |
17
+ * |value rank |-2 |
17
18
  * |isAbstract |false |
18
19
  */
19
20
  export type UAProcessVariable_Base<T, DT extends DataType> = UADataItem_Base<T, DT>;
@@ -1,6 +1,6 @@
1
1
  // ----- this file has been automatically generated - do not edit
2
2
  import { UAObject } from "node-opcua-address-space-base"
3
- import { DataType, Variant, VariantOptions } from "node-opcua-variant"
3
+ import { DataType, VariantOptions } from "node-opcua-variant"
4
4
  import { LocalizedText } from "node-opcua-data-model"
5
5
  import { EUInformation } from "node-opcua-data-access"
6
6
  import { UInt32, Int32, UAString } from "node-opcua-basic-types"
@@ -1,6 +1,6 @@
1
1
  // ----- this file has been automatically generated - do not edit
2
2
  import { UAObject } from "node-opcua-address-space-base"
3
- import { DataType, Variant, VariantOptions } from "node-opcua-variant"
3
+ import { DataType, VariantOptions } from "node-opcua-variant"
4
4
  import { UInt32, UAString } from "node-opcua-basic-types"
5
5
  import { UADataItem } from "node-opcua-nodeset-ua/source/ua_data_item"
6
6
  import { UAAnalogItem } from "node-opcua-nodeset-ua/source/ua_analog_item"