node-opcua-nodeset-machine-vision 2.161.0 → 2.163.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/dist/dt_result.d.ts +2 -2
- package/package.json +9 -9
- package/source/dt_result.ts +2 -2
package/dist/dt_result.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { VariantOptions } from "node-opcua-variant";
|
|
2
2
|
import { Int32 } from "node-opcua-basic-types";
|
|
3
3
|
import { ExtensionObject } from "node-opcua-extension-object";
|
|
4
4
|
import { DTStructure } from "node-opcua-nodeset-ua/dist/dt_structure";
|
|
@@ -51,7 +51,7 @@ export interface DTResult extends DTStructure {
|
|
|
51
51
|
/** Collection of different processing times that were needed to create the result.*/
|
|
52
52
|
processingTimes?: DTProcessingTimes;
|
|
53
53
|
/** Abstract data type to be subtyped from to hold result data created by the selected recipe.*/
|
|
54
|
-
resultContent?:
|
|
54
|
+
resultContent?: VariantOptions[];
|
|
55
55
|
}
|
|
56
56
|
export interface UDTResult extends ExtensionObject, DTResult {
|
|
57
57
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-opcua-nodeset-machine-vision",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.163.0",
|
|
4
4
|
"description": "pure nodejs OPCUA SDK - module node-opcua-nodeset-machine-vision",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -11,14 +11,14 @@
|
|
|
11
11
|
"author": "Etienne Rossignon <etienne.rossignon@sterfive.com>",
|
|
12
12
|
"license": "MIT",
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"node-opcua-address-space-base": "2.
|
|
15
|
-
"node-opcua-basic-types": "2.
|
|
16
|
-
"node-opcua-data-model": "2.
|
|
17
|
-
"node-opcua-extension-object": "2.
|
|
14
|
+
"node-opcua-address-space-base": "2.163.0",
|
|
15
|
+
"node-opcua-basic-types": "2.162.0",
|
|
16
|
+
"node-opcua-data-model": "2.163.0",
|
|
17
|
+
"node-opcua-extension-object": "2.163.0",
|
|
18
18
|
"node-opcua-nodeid": "2.157.0",
|
|
19
|
-
"node-opcua-nodeset-ua": "2.
|
|
20
|
-
"node-opcua-status-code": "2.
|
|
21
|
-
"node-opcua-variant": "2.
|
|
19
|
+
"node-opcua-nodeset-ua": "2.163.0",
|
|
20
|
+
"node-opcua-status-code": "2.162.0",
|
|
21
|
+
"node-opcua-variant": "2.163.0"
|
|
22
22
|
},
|
|
23
23
|
"files": [
|
|
24
24
|
"dist",
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"internet of things"
|
|
38
38
|
],
|
|
39
39
|
"homepage": "http://node-opcua.github.io/",
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "20862daa7ac42893d32d2bcb4dcecc272c320a67"
|
|
41
41
|
}
|
package/source/dt_result.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
|
-
import {
|
|
2
|
+
import { VariantOptions } from "node-opcua-variant"
|
|
3
3
|
import { Int32 } from "node-opcua-basic-types"
|
|
4
4
|
import { ExtensionObject } from "node-opcua-extension-object"
|
|
5
5
|
import { DTStructure } from "node-opcua-nodeset-ua/dist/dt_structure"
|
|
@@ -52,6 +52,6 @@ export interface DTResult extends DTStructure {
|
|
|
52
52
|
/** Collection of different processing times that were needed to create the result.*/
|
|
53
53
|
processingTimes?: DTProcessingTimes; // ExtensionObject ns=4;i=3005
|
|
54
54
|
/** Abstract data type to be subtyped from to hold result data created by the selected recipe.*/
|
|
55
|
-
resultContent?:
|
|
55
|
+
resultContent?: VariantOptions[]; // Variant ns=0;i=0
|
|
56
56
|
}
|
|
57
57
|
export interface UDTResult extends ExtensionObject, DTResult {};
|