node-opcua-nodeset-cnc 2.64.0 → 2.64.1

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.
Files changed (41) hide show
  1. package/dist/dt_cnc_position.d.ts +19 -19
  2. package/dist/dt_cnc_position.js +2 -2
  3. package/dist/enum_cnc_axis_status.d.ts +24 -24
  4. package/dist/enum_cnc_axis_status.js +29 -29
  5. package/dist/enum_cnc_channel_program_status.d.ts +32 -32
  6. package/dist/enum_cnc_channel_program_status.js +37 -37
  7. package/dist/enum_cnc_channel_status.d.ts +24 -24
  8. package/dist/enum_cnc_channel_status.js +29 -29
  9. package/dist/enum_cnc_operation_mode.d.ts +15 -15
  10. package/dist/enum_cnc_operation_mode.js +20 -20
  11. package/dist/enum_cnc_spindle_status.d.ts +32 -32
  12. package/dist/enum_cnc_spindle_status.js +37 -37
  13. package/dist/enum_cnc_spindle_turn_direction.d.ts +24 -24
  14. package/dist/enum_cnc_spindle_turn_direction.js +29 -29
  15. package/dist/index.d.ts +19 -19
  16. package/dist/index.js +31 -31
  17. package/dist/ua_cnc_alarm.d.ts +36 -36
  18. package/dist/ua_cnc_alarm.js +2 -2
  19. package/dist/ua_cnc_axis.d.ts +61 -61
  20. package/dist/ua_cnc_axis.js +2 -2
  21. package/dist/ua_cnc_axis_list.d.ts +15 -15
  22. package/dist/ua_cnc_axis_list.js +2 -2
  23. package/dist/ua_cnc_channel.d.ts +0 -0
  24. package/dist/ua_cnc_channel.js +2 -2
  25. package/dist/ua_cnc_channel_list.d.ts +15 -15
  26. package/dist/ua_cnc_channel_list.js +2 -2
  27. package/dist/ua_cnc_component.d.ts +16 -16
  28. package/dist/ua_cnc_component.js +2 -2
  29. package/dist/ua_cnc_drive.d.ts +0 -0
  30. package/dist/ua_cnc_drive.js +2 -2
  31. package/dist/ua_cnc_interface.d.ts +60 -60
  32. package/dist/ua_cnc_interface.js +2 -2
  33. package/dist/ua_cnc_message.d.ts +15 -15
  34. package/dist/ua_cnc_message.js +2 -2
  35. package/dist/ua_cnc_position_variable.d.ts +39 -39
  36. package/dist/ua_cnc_position_variable.js +2 -2
  37. package/dist/ua_cnc_spindle.d.ts +80 -80
  38. package/dist/ua_cnc_spindle.js +2 -2
  39. package/dist/ua_cnc_spindle_list.d.ts +0 -0
  40. package/dist/ua_cnc_spindle_list.js +2 -2
  41. package/package.json +22 -21
@@ -1,60 +1,60 @@
1
- import { UAObject, UAProperty } from "node-opcua-address-space-base";
2
- import { DataType } from "node-opcua-variant";
3
- import { UAString } from "node-opcua-basic-types";
4
- import { UACncAxisList } from "./ua_cnc_axis_list";
5
- import { UACncChannelList } from "./ua_cnc_channel_list";
6
- import { UACncSpindleList } from "./ua_cnc_spindle_list";
7
- /**
8
- * Entry point to CNC data interface.
9
- *
10
- * | | |
11
- * |----------------|--------------------------------------------------|
12
- * |namespace |http://opcfoundation.org/UA/CNC |
13
- * |nodeClass |ObjectType |
14
- * |typedDefinition |11:CncInterfaceType ns=11;i=1007 |
15
- * |isAbstract |false |
16
- */
17
- export interface UACncInterface_Base {
18
- /**
19
- * cncAxisList
20
- * List of CNC axis objects.
21
- */
22
- cncAxisList: UACncAxisList;
23
- /**
24
- * cncChannelList
25
- * List of CNC channel objects.
26
- */
27
- cncChannelList: UACncChannelList;
28
- /**
29
- * cncSpindleList
30
- * List of CNC spindle objects.
31
- */
32
- cncSpindleList: UACncSpindleList;
33
- cncTypeName?: UAProperty<UAString, /*z*/ DataType.String>;
34
- /**
35
- * fix
36
- * Version of CNC interface considering changes in
37
- * implementation (Bug Fix).
38
- */
39
- fix?: UAProperty<UAString, /*z*/ DataType.String>;
40
- /**
41
- * vendorName
42
- * Name of CNC system vendor. Format and content may
43
- * be chosen by vendor.
44
- */
45
- vendorName: UAProperty<UAString, /*z*/ DataType.String>;
46
- /**
47
- * vendorRevision
48
- * Vendor revision of CNC interface. Format and
49
- * content may be chosen by vendor.
50
- */
51
- vendorRevision: UAProperty<UAString, /*z*/ DataType.String>;
52
- /**
53
- * version
54
- * Version of CNC interface - corresponds to version
55
- * of OPC UA companion standard.
56
- */
57
- version: UAProperty<UAString, /*z*/ DataType.String>;
58
- }
59
- export interface UACncInterface extends UAObject, UACncInterface_Base {
60
- }
1
+ import { UAObject, UAProperty } from "node-opcua-address-space-base";
2
+ import { DataType } from "node-opcua-variant";
3
+ import { UAString } from "node-opcua-basic-types";
4
+ import { UACncAxisList } from "./ua_cnc_axis_list";
5
+ import { UACncChannelList } from "./ua_cnc_channel_list";
6
+ import { UACncSpindleList } from "./ua_cnc_spindle_list";
7
+ /**
8
+ * Entry point to CNC data interface.
9
+ *
10
+ * | | |
11
+ * |----------------|--------------------------------------------------|
12
+ * |namespace |http://opcfoundation.org/UA/CNC |
13
+ * |nodeClass |ObjectType |
14
+ * |typedDefinition |11:CncInterfaceType ns=11;i=1007 |
15
+ * |isAbstract |false |
16
+ */
17
+ export interface UACncInterface_Base {
18
+ /**
19
+ * cncAxisList
20
+ * List of CNC axis objects.
21
+ */
22
+ cncAxisList: UACncAxisList;
23
+ /**
24
+ * cncChannelList
25
+ * List of CNC channel objects.
26
+ */
27
+ cncChannelList: UACncChannelList;
28
+ /**
29
+ * cncSpindleList
30
+ * List of CNC spindle objects.
31
+ */
32
+ cncSpindleList: UACncSpindleList;
33
+ cncTypeName?: UAProperty<UAString, /*z*/ DataType.String>;
34
+ /**
35
+ * fix
36
+ * Version of CNC interface considering changes in
37
+ * implementation (Bug Fix).
38
+ */
39
+ fix?: UAProperty<UAString, /*z*/ DataType.String>;
40
+ /**
41
+ * vendorName
42
+ * Name of CNC system vendor. Format and content may
43
+ * be chosen by vendor.
44
+ */
45
+ vendorName: UAProperty<UAString, /*z*/ DataType.String>;
46
+ /**
47
+ * vendorRevision
48
+ * Vendor revision of CNC interface. Format and
49
+ * content may be chosen by vendor.
50
+ */
51
+ vendorRevision: UAProperty<UAString, /*z*/ DataType.String>;
52
+ /**
53
+ * version
54
+ * Version of CNC interface - corresponds to version
55
+ * of OPC UA companion standard.
56
+ */
57
+ version: UAProperty<UAString, /*z*/ DataType.String>;
58
+ }
59
+ export interface UACncInterface extends UAObject, UACncInterface_Base {
60
+ }
@@ -1,3 +1,3 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  //# sourceMappingURL=ua_cnc_interface.js.map
@@ -1,15 +1,15 @@
1
- import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/source/ua_base_event";
2
- /**
3
- * Event transmitting simple information messages.
4
- *
5
- * | | |
6
- * |----------------|--------------------------------------------------|
7
- * |namespace |http://opcfoundation.org/UA/CNC |
8
- * |nodeClass |ObjectType |
9
- * |typedDefinition |11:CncMessageType ns=11;i=1011 |
10
- * |isAbstract |false |
11
- */
12
- export interface UACncMessage_Base extends UABaseEvent_Base {
13
- }
14
- export interface UACncMessage extends UABaseEvent, UACncMessage_Base {
15
- }
1
+ import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/source/ua_base_event";
2
+ /**
3
+ * Event transmitting simple information messages.
4
+ *
5
+ * | | |
6
+ * |----------------|--------------------------------------------------|
7
+ * |namespace |http://opcfoundation.org/UA/CNC |
8
+ * |nodeClass |ObjectType |
9
+ * |typedDefinition |11:CncMessageType ns=11;i=1011 |
10
+ * |isAbstract |false |
11
+ */
12
+ export interface UACncMessage_Base extends UABaseEvent_Base {
13
+ }
14
+ export interface UACncMessage extends UABaseEvent, UACncMessage_Base {
15
+ }
@@ -1,3 +1,3 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  //# sourceMappingURL=ua_cnc_message.js.map
@@ -1,39 +1,39 @@
1
- import { UAProperty } from "node-opcua-address-space-base";
2
- import { DataType } from "node-opcua-variant";
3
- import { EUInformation } from "node-opcua-data-access";
4
- import { UABaseDataVariable, UABaseDataVariable_Base } from "node-opcua-nodeset-ua/source/ua_base_data_variable";
5
- import { DTRange } from "node-opcua-nodeset-ua/source/dt_range";
6
- import { DTCncPosition } from "./dt_cnc_position";
7
- /**
8
- * Group of position values.
9
- *
10
- * | | |
11
- * |----------------|--------------------------------------------------|
12
- * |namespace |http://opcfoundation.org/UA/CNC |
13
- * |nodeClass |VariableType |
14
- * |typedDefinition |11:CncPositionVariableType ns=11;i=2001 |
15
- * |dataType |ExtensionObject |
16
- * |dataType Name |DTCncPosition ns=11;i=3007 |
17
- * |isAbstract |false |
18
- */
19
- export interface UACncPositionVariable_Base<T extends DTCncPosition> extends UABaseDataVariable_Base<T, /*e*/ DataType.ExtensionObject> {
20
- /**
21
- * actPos
22
- * Position current value.
23
- */
24
- actPos: UABaseDataVariable<number, /*z*/ DataType.Double>;
25
- /**
26
- * cmdPos
27
- * Position setpoint value.
28
- */
29
- cmdPos: UABaseDataVariable<number, /*z*/ DataType.Double>;
30
- engineeringUnits: UAProperty<EUInformation, /*z*/ DataType.ExtensionObject>;
31
- euRange: UAProperty<DTRange, /*z*/ DataType.ExtensionObject>;
32
- /**
33
- * remDist
34
- * Remaining distance to go.
35
- */
36
- remDist: UABaseDataVariable<number, /*z*/ DataType.Double>;
37
- }
38
- export interface UACncPositionVariable<T extends DTCncPosition> extends UABaseDataVariable<T, /*n*/ DataType.ExtensionObject>, UACncPositionVariable_Base<T> {
39
- }
1
+ import { UAProperty } from "node-opcua-address-space-base";
2
+ import { DataType } from "node-opcua-variant";
3
+ import { EUInformation } from "node-opcua-data-access";
4
+ import { UABaseDataVariable, UABaseDataVariable_Base } from "node-opcua-nodeset-ua/source/ua_base_data_variable";
5
+ import { DTRange } from "node-opcua-nodeset-ua/source/dt_range";
6
+ import { DTCncPosition } from "./dt_cnc_position";
7
+ /**
8
+ * Group of position values.
9
+ *
10
+ * | | |
11
+ * |----------------|--------------------------------------------------|
12
+ * |namespace |http://opcfoundation.org/UA/CNC |
13
+ * |nodeClass |VariableType |
14
+ * |typedDefinition |11:CncPositionVariableType ns=11;i=2001 |
15
+ * |dataType |ExtensionObject |
16
+ * |dataType Name |DTCncPosition ns=11;i=3007 |
17
+ * |isAbstract |false |
18
+ */
19
+ export interface UACncPositionVariable_Base<T extends DTCncPosition> extends UABaseDataVariable_Base<T, /*e*/ DataType.ExtensionObject> {
20
+ /**
21
+ * actPos
22
+ * Position current value.
23
+ */
24
+ actPos: UABaseDataVariable<number, /*z*/ DataType.Double>;
25
+ /**
26
+ * cmdPos
27
+ * Position setpoint value.
28
+ */
29
+ cmdPos: UABaseDataVariable<number, /*z*/ DataType.Double>;
30
+ engineeringUnits: UAProperty<EUInformation, /*z*/ DataType.ExtensionObject>;
31
+ euRange: UAProperty<DTRange, /*z*/ DataType.ExtensionObject>;
32
+ /**
33
+ * remDist
34
+ * Remaining distance to go.
35
+ */
36
+ remDist: UABaseDataVariable<number, /*z*/ DataType.Double>;
37
+ }
38
+ export interface UACncPositionVariable<T extends DTCncPosition> extends UABaseDataVariable<T, /*n*/ DataType.ExtensionObject>, UACncPositionVariable_Base<T> {
39
+ }
@@ -1,3 +1,3 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  //# sourceMappingURL=ua_cnc_position_variable.js.map
@@ -1,80 +1,80 @@
1
- import { UAProperty } from "node-opcua-address-space-base";
2
- import { DataType } from "node-opcua-variant";
3
- import { EUInformation } from "node-opcua-data-access";
4
- import { UInt32 } from "node-opcua-basic-types";
5
- import { UAAnalogItem } from "node-opcua-nodeset-ua/source/ua_analog_item";
6
- import { DTRange } from "node-opcua-nodeset-ua/source/dt_range";
7
- import { UADataItem } from "node-opcua-nodeset-ua/source/ua_data_item";
8
- import { UACncDrive, UACncDrive_Base } from "./ua_cnc_drive";
9
- import { DTCncPosition } from "./dt_cnc_position";
10
- import { UACncPositionVariable } from "./ua_cnc_position_variable";
11
- export interface UACncSpindle_actSpeed<T, DT extends DataType> extends Omit<UAAnalogItem<T, /*b*/ DT>, "engineeringUnits" | "euRange"> {
12
- engineeringUnits: UAProperty<EUInformation, /*z*/ DataType.ExtensionObject>;
13
- euRange: UAProperty<DTRange, /*z*/ DataType.ExtensionObject>;
14
- }
15
- export interface UACncSpindle_cmdSpeed<T, DT extends DataType> extends Omit<UAAnalogItem<T, /*b*/ DT>, "engineeringUnits" | "euRange"> {
16
- engineeringUnits: UAProperty<EUInformation, /*z*/ DataType.ExtensionObject>;
17
- euRange: UAProperty<DTRange, /*z*/ DataType.ExtensionObject>;
18
- }
19
- /**
20
- * CNC spindle component.
21
- *
22
- * | | |
23
- * |----------------|--------------------------------------------------|
24
- * |namespace |http://opcfoundation.org/UA/CNC |
25
- * |nodeClass |ObjectType |
26
- * |typedDefinition |11:CncSpindleType ns=11;i=1005 |
27
- * |isAbstract |false |
28
- */
29
- export interface UACncSpindle_Base extends UACncDrive_Base {
30
- /**
31
- * actGear
32
- * Gear stage actual value.
33
- */
34
- actGear: UADataItem<UInt32, /*z*/ DataType.UInt32>;
35
- /**
36
- * actOverride
37
- * Override actual value.
38
- */
39
- actOverride: UAAnalogItem<number, /*z*/ DataType.Double>;
40
- /**
41
- * actSpeed
42
- * Speed actual value.
43
- */
44
- actSpeed: UACncSpindle_actSpeed<number, /*z*/ DataType.Double>;
45
- /**
46
- * actStatus
47
- * Actual spindle state.
48
- */
49
- actStatus: UADataItem<any, any>;
50
- /**
51
- * actTurnDirection
52
- * Turn direction actual value.
53
- */
54
- actTurnDirection: UADataItem<any, any>;
55
- /**
56
- * anglePos
57
- * Spindle angular position values in case of
58
- * interpolated (position controlled) spindle
59
- * movement. Returns zeros in case of regular
60
- * spindle operation (velocity controlled).
61
- */
62
- anglePos: UACncPositionVariable<DTCncPosition>;
63
- /**
64
- * cmdGear
65
- * Gear stage setpoint value.
66
- */
67
- cmdGear: UADataItem<UInt32, /*z*/ DataType.UInt32>;
68
- /**
69
- * cmdOverride
70
- * Override setpoint value.
71
- */
72
- cmdOverride: UAAnalogItem<number, /*z*/ DataType.Double>;
73
- /**
74
- * cmdSpeed
75
- * Speed setpoint value.
76
- */
77
- cmdSpeed: UACncSpindle_cmdSpeed<number, /*z*/ DataType.Double>;
78
- }
79
- export interface UACncSpindle extends UACncDrive, UACncSpindle_Base {
80
- }
1
+ import { UAProperty } from "node-opcua-address-space-base";
2
+ import { DataType } from "node-opcua-variant";
3
+ import { EUInformation } from "node-opcua-data-access";
4
+ import { UInt32 } from "node-opcua-basic-types";
5
+ import { UAAnalogItem } from "node-opcua-nodeset-ua/source/ua_analog_item";
6
+ import { DTRange } from "node-opcua-nodeset-ua/source/dt_range";
7
+ import { UADataItem } from "node-opcua-nodeset-ua/source/ua_data_item";
8
+ import { UACncDrive, UACncDrive_Base } from "./ua_cnc_drive";
9
+ import { DTCncPosition } from "./dt_cnc_position";
10
+ import { UACncPositionVariable } from "./ua_cnc_position_variable";
11
+ export interface UACncSpindle_actSpeed<T, DT extends DataType> extends Omit<UAAnalogItem<T, /*b*/ DT>, "engineeringUnits" | "euRange"> {
12
+ engineeringUnits: UAProperty<EUInformation, /*z*/ DataType.ExtensionObject>;
13
+ euRange: UAProperty<DTRange, /*z*/ DataType.ExtensionObject>;
14
+ }
15
+ export interface UACncSpindle_cmdSpeed<T, DT extends DataType> extends Omit<UAAnalogItem<T, /*b*/ DT>, "engineeringUnits" | "euRange"> {
16
+ engineeringUnits: UAProperty<EUInformation, /*z*/ DataType.ExtensionObject>;
17
+ euRange: UAProperty<DTRange, /*z*/ DataType.ExtensionObject>;
18
+ }
19
+ /**
20
+ * CNC spindle component.
21
+ *
22
+ * | | |
23
+ * |----------------|--------------------------------------------------|
24
+ * |namespace |http://opcfoundation.org/UA/CNC |
25
+ * |nodeClass |ObjectType |
26
+ * |typedDefinition |11:CncSpindleType ns=11;i=1005 |
27
+ * |isAbstract |false |
28
+ */
29
+ export interface UACncSpindle_Base extends UACncDrive_Base {
30
+ /**
31
+ * actGear
32
+ * Gear stage actual value.
33
+ */
34
+ actGear: UADataItem<UInt32, /*z*/ DataType.UInt32>;
35
+ /**
36
+ * actOverride
37
+ * Override actual value.
38
+ */
39
+ actOverride: UAAnalogItem<number, /*z*/ DataType.Double>;
40
+ /**
41
+ * actSpeed
42
+ * Speed actual value.
43
+ */
44
+ actSpeed: UACncSpindle_actSpeed<number, /*z*/ DataType.Double>;
45
+ /**
46
+ * actStatus
47
+ * Actual spindle state.
48
+ */
49
+ actStatus: UADataItem<any, any>;
50
+ /**
51
+ * actTurnDirection
52
+ * Turn direction actual value.
53
+ */
54
+ actTurnDirection: UADataItem<any, any>;
55
+ /**
56
+ * anglePos
57
+ * Spindle angular position values in case of
58
+ * interpolated (position controlled) spindle
59
+ * movement. Returns zeros in case of regular
60
+ * spindle operation (velocity controlled).
61
+ */
62
+ anglePos: UACncPositionVariable<DTCncPosition>;
63
+ /**
64
+ * cmdGear
65
+ * Gear stage setpoint value.
66
+ */
67
+ cmdGear: UADataItem<UInt32, /*z*/ DataType.UInt32>;
68
+ /**
69
+ * cmdOverride
70
+ * Override setpoint value.
71
+ */
72
+ cmdOverride: UAAnalogItem<number, /*z*/ DataType.Double>;
73
+ /**
74
+ * cmdSpeed
75
+ * Speed setpoint value.
76
+ */
77
+ cmdSpeed: UACncSpindle_cmdSpeed<number, /*z*/ DataType.Double>;
78
+ }
79
+ export interface UACncSpindle extends UACncDrive, UACncSpindle_Base {
80
+ }
@@ -1,3 +1,3 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  //# sourceMappingURL=ua_cnc_spindle.js.map
Binary file
@@ -1,3 +1,3 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  //# sourceMappingURL=ua_cnc_spindle_list.js.map
package/package.json CHANGED
@@ -1,22 +1,23 @@
1
1
  {
2
- "name": "node-opcua-nodeset-cnc",
3
- "version": "2.64.0",
4
- "description": "",
5
- "main": "dist/index.js",
6
- "types": "dist/index.d.ts",
7
- "author": "etienne.rossignon@sterfive.com",
8
- "license": "MIT",
9
- "dependencies": {
10
- "node-opcua-address-space-base": "2.64.0",
11
- "node-opcua-basic-types": "2.64.0",
12
- "node-opcua-data-access": "2.64.0",
13
- "node-opcua-data-model": "2.64.0",
14
- "node-opcua-nodeid": "2.64.0",
15
- "node-opcua-nodeset-ua": "2.64.0",
16
- "node-opcua-status-code": "2.64.0",
17
- "node-opcua-variant": "2.64.0"
18
- },
19
- "scripts": {
20
- "build": "tsc -b"
21
- }
22
- }
2
+ "name": "node-opcua-nodeset-cnc",
3
+ "version": "2.64.1",
4
+ "description": "",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "scripts": {
8
+ "build": "tsc -b"
9
+ },
10
+ "author": "etienne.rossignon@sterfive.com",
11
+ "license": "MIT",
12
+ "dependencies": {
13
+ "node-opcua-address-space-base": "2.64.1",
14
+ "node-opcua-basic-types": "2.64.1",
15
+ "node-opcua-data-access": "2.64.1",
16
+ "node-opcua-data-model": "2.64.1",
17
+ "node-opcua-nodeid": "2.64.1",
18
+ "node-opcua-nodeset-ua": "2.64.1",
19
+ "node-opcua-status-code": "2.64.1",
20
+ "node-opcua-variant": "2.64.1"
21
+ },
22
+ "gitHead": "b65b8738603cd475d7d99a2b20b0ae9d32b4110c"
23
+ }