node-opcua-nodeset-auto-id 2.66.1 → 2.67.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.
@@ -1,6 +1,6 @@
1
- import { Variant } from "node-opcua-variant";
2
1
  import { Int32 } from "node-opcua-basic-types";
3
2
  import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure";
3
+ import { EnumLocationType } from "./enum_location_type";
4
4
  /**
5
5
  * | | |
6
6
  * |-----------|--------------------------------------------------|
@@ -13,5 +13,5 @@ export interface DTScanSettings extends DTStructure {
13
13
  duration: number;
14
14
  cycles: Int32;
15
15
  dataAvailable: boolean;
16
- locationType: Variant;
16
+ locationType: EnumLocationType;
17
17
  }
@@ -6,6 +6,7 @@ import { UAMultiStateDiscrete } from "node-opcua-nodeset-ua/source/ua_multi_stat
6
6
  import { UAFunctionalGroup } from "node-opcua-nodeset-di/source/ua_functional_group";
7
7
  import { UADevice, UADevice_Base } from "node-opcua-nodeset-di/source/ua_device";
8
8
  import { DTLocation } from "./dt_location";
9
+ import { EnumDeviceStatus } from "./enum_device_status";
9
10
  import { UALocationVariable } from "./ua_location_variable";
10
11
  export interface UAAutoIdDevice_diagnostics extends UAFunctionalGroup {
11
12
  /**
@@ -71,7 +72,7 @@ export interface UAAutoIdDevice_Base extends UADevice_Base {
71
72
  * configured for a device.
72
73
  */
73
74
  deviceName: UAProperty<UAString, /*z*/ DataType.String>;
74
- deviceStatus: UABaseDataVariable<any, any>;
75
+ deviceStatus: UABaseDataVariable<EnumDeviceStatus, /*z*/ DataType.Int32>;
75
76
  /**
76
77
  * diagnostics
77
78
  * Diagnostic data from AutoID Devices.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-opcua-nodeset-auto-id",
3
- "version": "2.66.1",
3
+ "version": "2.67.0",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -10,14 +10,14 @@
10
10
  "author": "etienne.rossignon@sterfive.com",
11
11
  "license": "MIT",
12
12
  "dependencies": {
13
- "node-opcua-address-space-base": "2.66.1",
14
- "node-opcua-basic-types": "2.66.0",
15
- "node-opcua-data-access": "2.66.0",
16
- "node-opcua-data-model": "2.66.0",
17
- "node-opcua-nodeid": "2.66.0",
18
- "node-opcua-nodeset-di": "2.66.1",
19
- "node-opcua-nodeset-ua": "2.66.1",
20
- "node-opcua-variant": "2.66.0"
13
+ "node-opcua-address-space-base": "2.67.0",
14
+ "node-opcua-basic-types": "2.67.0",
15
+ "node-opcua-data-access": "2.67.0",
16
+ "node-opcua-data-model": "2.67.0",
17
+ "node-opcua-nodeid": "2.67.0",
18
+ "node-opcua-nodeset-di": "2.67.0",
19
+ "node-opcua-nodeset-ua": "2.67.0",
20
+ "node-opcua-variant": "2.67.0"
21
21
  },
22
- "gitHead": "1a6c8ca803eb794dcdd3af58ab34d1b48dcd7c18"
22
+ "gitHead": "74c2fd7d4ce3eb48d25a911258bf90a64218ea0e"
23
23
  }
@@ -1,7 +1,7 @@
1
1
  // ----- this file has been automatically generated - do not edit
2
- import { Variant } from "node-opcua-variant"
3
2
  import { Int32 } from "node-opcua-basic-types"
4
3
  import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure"
4
+ import { EnumLocationType } from "./enum_location_type"
5
5
  /**
6
6
  * | | |
7
7
  * |-----------|--------------------------------------------------|
@@ -14,5 +14,5 @@ export interface DTScanSettings extends DTStructure {
14
14
  duration: number; // Double ns=0;i=290
15
15
  cycles: Int32; // Int32 ns=0;i=6
16
16
  dataAvailable: boolean; // Boolean ns=0;i=1
17
- locationType: Variant; // Variant ns=3;i=3009
17
+ locationType: EnumLocationType; // Int32 ns=3;i=3009
18
18
  }
@@ -7,9 +7,11 @@ import { UInt32, Int32, UInt16, UAString } from "node-opcua-basic-types"
7
7
  import { DTArgument } from "node-opcua-nodeset-ua/source/dt_argument"
8
8
  import { UABaseDataVariable } from "node-opcua-nodeset-ua/source/ua_base_data_variable"
9
9
  import { UAMultiStateDiscrete } from "node-opcua-nodeset-ua/source/ua_multi_state_discrete"
10
+ import { EnumDeviceHealth } from "node-opcua-nodeset-di/source/enum_device_health"
10
11
  import { UAFunctionalGroup } from "node-opcua-nodeset-di/source/ua_functional_group"
11
12
  import { UADevice, UADevice_Base } from "node-opcua-nodeset-di/source/ua_device"
12
13
  import { DTLocation } from "./dt_location"
14
+ import { EnumDeviceStatus } from "./enum_device_status"
13
15
  import { UALocationVariable } from "./ua_location_variable"
14
16
  export interface UAAutoIdDevice_diagnostics extends UAFunctionalGroup { // Object
15
17
  /**
@@ -75,7 +77,7 @@ export interface UAAutoIdDevice_Base extends UADevice_Base {
75
77
  * configured for a device.
76
78
  */
77
79
  deviceName: UAProperty<UAString, /*z*/DataType.String>;
78
- deviceStatus: UABaseDataVariable<any, any>;
80
+ deviceStatus: UABaseDataVariable<EnumDeviceStatus, /*z*/DataType.Int32>;
79
81
  /**
80
82
  * diagnostics
81
83
  * Diagnostic data from AutoID Devices.