node-opcua-nodeset-machine-vision 2.66.2 → 2.68.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 { UAString } from "node-opcua-basic-types";
|
|
3
2
|
import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure";
|
|
3
|
+
import { EnumSystemState } from "./enum_system_state";
|
|
4
4
|
/**
|
|
5
5
|
* | | |
|
|
6
6
|
* |-----------|--------------------------------------------------|
|
|
@@ -11,7 +11,7 @@ import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure";
|
|
|
11
11
|
*/
|
|
12
12
|
export interface DTSystemStateDescription extends DTStructure {
|
|
13
13
|
/** Denotes one of the basic SEMI E10 states*/
|
|
14
|
-
state:
|
|
14
|
+
state: EnumSystemState;
|
|
15
15
|
/** Optional string describing the full state path, starting with the SEMI E10 state denoted by the state member; the string format is described in Section 11.5.*/
|
|
16
16
|
stateDescription: UAString;
|
|
17
17
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-opcua-nodeset-machine-vision",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.68.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -10,13 +10,13 @@
|
|
|
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-model": "2.
|
|
16
|
-
"node-opcua-nodeid": "2.
|
|
17
|
-
"node-opcua-nodeset-ua": "2.
|
|
18
|
-
"node-opcua-status-code": "2.
|
|
19
|
-
"node-opcua-variant": "2.
|
|
13
|
+
"node-opcua-address-space-base": "2.68.0",
|
|
14
|
+
"node-opcua-basic-types": "2.68.0",
|
|
15
|
+
"node-opcua-data-model": "2.68.0",
|
|
16
|
+
"node-opcua-nodeid": "2.68.0",
|
|
17
|
+
"node-opcua-nodeset-ua": "2.68.0",
|
|
18
|
+
"node-opcua-status-code": "2.67.0",
|
|
19
|
+
"node-opcua-variant": "2.68.0"
|
|
20
20
|
},
|
|
21
|
-
"gitHead": "
|
|
21
|
+
"gitHead": "363b466440d0910acddd0cde2c37792ce4724d76"
|
|
22
22
|
}
|
|
@@ -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 { UAString } from "node-opcua-basic-types"
|
|
4
3
|
import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure"
|
|
4
|
+
import { EnumSystemState } from "./enum_system_state"
|
|
5
5
|
/**
|
|
6
6
|
* | | |
|
|
7
7
|
* |-----------|--------------------------------------------------|
|
|
@@ -12,7 +12,7 @@ import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure"
|
|
|
12
12
|
*/
|
|
13
13
|
export interface DTSystemStateDescription extends DTStructure {
|
|
14
14
|
/** Denotes one of the basic SEMI E10 states*/
|
|
15
|
-
state:
|
|
15
|
+
state: EnumSystemState; // Int32 ns=4;i=3023
|
|
16
16
|
/** Optional string describing the full state path, starting with the SEMI E10 state denoted by the state member; the string format is described in Section 11.5.*/
|
|
17
17
|
stateDescription: UAString; // String ns=4;i=3017
|
|
18
18
|
}
|