node-opcua-nodeset-machine-vision 2.159.0 → 2.162.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,7 +1,7 @@
1
1
 
2
2
  The MIT License (MIT)
3
3
 
4
- Copyright (c) 2022-2025 Sterfive SAS - 833264583 RCS ORLEANS - France (https://www.sterfive.com)
4
+ Copyright (c) 2022-2026 Sterfive SAS - 833264583 RCS ORLEANS - France (https://www.sterfive.com)
5
5
 
6
6
  Copyright (c) 2014-2022 Etienne Rossignon
7
7
 
@@ -1,4 +1,4 @@
1
- import { Variant } from "node-opcua-variant";
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?: Variant[];
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.159.0",
3
+ "version": "2.162.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.159.0",
15
- "node-opcua-basic-types": "2.157.0",
16
- "node-opcua-data-model": "2.158.0",
17
- "node-opcua-extension-object": "2.158.0",
14
+ "node-opcua-address-space-base": "2.162.0",
15
+ "node-opcua-basic-types": "2.162.0",
16
+ "node-opcua-data-model": "2.162.0",
17
+ "node-opcua-extension-object": "2.162.0",
18
18
  "node-opcua-nodeid": "2.157.0",
19
- "node-opcua-nodeset-ua": "2.159.0",
20
- "node-opcua-status-code": "2.157.0",
21
- "node-opcua-variant": "2.159.0"
19
+ "node-opcua-nodeset-ua": "2.162.0",
20
+ "node-opcua-status-code": "2.162.0",
21
+ "node-opcua-variant": "2.162.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": "578718b5df15e3f2652e96cd935b07736bee7210"
40
+ "gitHead": "78989e867fc6c2009002f6db4b7cbf8fb95161ae"
41
41
  }
@@ -1,5 +1,5 @@
1
1
  // ----- this file has been automatically generated - do not edit
2
- import { Variant } from "node-opcua-variant"
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?: Variant[]; // Variant ns=0;i=24
55
+ resultContent?: VariantOptions[]; // Variant ns=0;i=0
56
56
  }
57
57
  export interface UDTResult extends ExtensionObject, DTResult {};