node-opcua-nodeset-auto-id 2.66.3 → 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:
|
|
16
|
+
locationType: EnumLocationType;
|
|
17
17
|
}
|
package/dist/index.js
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
3
|
if (k2 === undefined) k2 = k;
|
|
4
|
-
Object.
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
5
9
|
}) : (function(o, m, k, k2) {
|
|
6
10
|
if (k2 === undefined) k2 = k;
|
|
7
11
|
o[k2] = m[k];
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../source/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../source/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,qDAAmC;AACnC,4DAA0C;AAC1C,gEAA8C;AAC9C,wDAAsC;AACtC,gDAA8B;AAC9B,uDAAqC;AACrC,2DAAyC;AACzC,oEAAkD;AAClD,gDAA8B;AAC9B,0DAAwC;AACxC,wDAAsC;AACtC,qDAAmC;AACnC,gDAA8B;AAC9B,4DAA0C;AAC1C,iDAA+B;AAC/B,qDAAmC;AACnC,mDAAiC;AACjC,qDAAmC;AACnC,yDAAuC;AACvC,kEAAgD;AAChD,uDAAqC;AACrC,uDAAqC;AACrC,6DAA2C;AAC3C,0DAAwC;AACxC,4DAA0C;AAC1C,4DAA0C;AAC1C,sDAAoC;AACpC,iEAA+C;AAC/C,+DAA6C;AAC7C,8DAA4C;AAC5C,0DAAwC;AACxC,yDAAuC;AACvC,yDAAuC;AACvC,sDAAoC;AACpC,6DAA2C;AAC3C,0DAAwC;AACxC,+DAA6C;AAC7C,mEAAiD;AACjD,yDAAuC;AACvC,0DAAwC;AACxC,uDAAqC;AACrC,mDAAiC;AACjC,2DAAyC"}
|
|
@@ -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<
|
|
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.
|
|
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.
|
|
14
|
-
"node-opcua-basic-types": "2.
|
|
15
|
-
"node-opcua-data-access": "2.
|
|
16
|
-
"node-opcua-data-model": "2.
|
|
17
|
-
"node-opcua-nodeid": "2.
|
|
18
|
-
"node-opcua-nodeset-di": "2.
|
|
19
|
-
"node-opcua-nodeset-ua": "2.
|
|
20
|
-
"node-opcua-variant": "2.
|
|
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": "
|
|
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:
|
|
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<
|
|
80
|
+
deviceStatus: UABaseDataVariable<EnumDeviceStatus, /*z*/DataType.Int32>;
|
|
79
81
|
/**
|
|
80
82
|
* diagnostics
|
|
81
83
|
* Diagnostic data from AutoID Devices.
|