node-opcua-nodeset-cnc 2.76.2 → 2.77.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,3 +1,4 @@
1
+ import { ExtensionObject } from "node-opcua-extension-object";
1
2
  import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure";
2
3
  /**
3
4
  * Structure of position elements.
@@ -17,3 +18,5 @@ export interface DTCncPosition extends DTStructure {
17
18
  /** Remaining distance.*/
18
19
  remDist: number;
19
20
  }
21
+ export interface UDTCncPosition extends ExtensionObject, DTCncPosition {
22
+ }
@@ -1,3 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ ;
3
4
  //# sourceMappingURL=dt_cnc_position.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"dt_cnc_position.js","sourceRoot":"","sources":["../source/dt_cnc_position.ts"],"names":[],"mappings":""}
1
+ {"version":3,"file":"dt_cnc_position.js","sourceRoot":"","sources":["../source/dt_cnc_position.ts"],"names":[],"mappings":";;AAqByE,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-opcua-nodeset-cnc",
3
- "version": "2.76.2",
3
+ "version": "2.77.0",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -10,14 +10,15 @@
10
10
  "author": "etienne.rossignon@sterfive.com",
11
11
  "license": "MIT",
12
12
  "dependencies": {
13
- "node-opcua-address-space-base": "2.76.2",
14
- "node-opcua-basic-types": "2.76.2",
15
- "node-opcua-data-access": "2.76.2",
16
- "node-opcua-data-model": "2.76.2",
17
- "node-opcua-nodeid": "2.76.2",
18
- "node-opcua-nodeset-ua": "2.76.2",
19
- "node-opcua-status-code": "2.76.2",
20
- "node-opcua-variant": "2.76.2"
13
+ "node-opcua-address-space-base": "2.77.0",
14
+ "node-opcua-basic-types": "2.77.0",
15
+ "node-opcua-data-access": "2.77.0",
16
+ "node-opcua-data-model": "2.77.0",
17
+ "node-opcua-extension-object": "2.77.0",
18
+ "node-opcua-nodeid": "2.77.0",
19
+ "node-opcua-nodeset-ua": "2.77.0",
20
+ "node-opcua-status-code": "2.77.0",
21
+ "node-opcua-variant": "2.77.0"
21
22
  },
22
- "gitHead": "acb5ecaf1e1c71af3b63e80909d58447f3f298e7"
23
+ "gitHead": "5c8d45772d786fa4ba59369dd26679353ab5482b"
23
24
  }
@@ -1,4 +1,5 @@
1
1
  // ----- this file has been automatically generated - do not edit
2
+ import { ExtensionObject } from "node-opcua-extension-object"
2
3
  import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure"
3
4
  /**
4
5
  * Structure of position elements.
@@ -11,10 +12,11 @@ import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure"
11
12
  * | isAbstract|false |
12
13
  */
13
14
  export interface DTCncPosition extends DTStructure {
14
- /** Position current value.*/
15
+ /** Position current value.*/
15
16
  actPos: number; // Double ns=0;i=11
16
- /** Position setpoint value.*/
17
+ /** Position setpoint value.*/
17
18
  cmdPos: number; // Double ns=0;i=11
18
- /** Remaining distance.*/
19
+ /** Remaining distance.*/
19
20
  remDist: number; // Double ns=0;i=11
20
- }
21
+ }
22
+ export interface UDTCncPosition extends ExtensionObject, DTCncPosition {};
@@ -1,6 +1,6 @@
1
1
  // ----- this file has been automatically generated - do not edit
2
2
  import { UAProperty } from "node-opcua-address-space-base"
3
- import { DataType } from "node-opcua-variant"
3
+ import { DataType, VariantOptions } from "node-opcua-variant"
4
4
  import { LocalizedText, QualifiedName } from "node-opcua-data-model"
5
5
  import { NodeId } from "node-opcua-nodeid"
6
6
  import { StatusCode } from "node-opcua-status-code"
@@ -1,6 +1,6 @@
1
1
  // ----- this file has been automatically generated - do not edit
2
2
  import { UAObject } from "node-opcua-address-space-base"
3
- import { DataType, Variant } from "node-opcua-variant"
3
+ import { DataType, Variant, VariantOptions } from "node-opcua-variant"
4
4
  import { EUInformation } from "node-opcua-data-access"
5
5
  import { NodeId } from "node-opcua-nodeid"
6
6
  import { UAString } from "node-opcua-basic-types"