node-opcua-nodeset-cnc 2.169.0 → 2.172.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_cnc_position.d.ts +2 -2
- package/dist/dt_cnc_position.js.map +1 -1
- package/dist/ua_cnc_alarm.d.ts +4 -4
- package/dist/ua_cnc_axis.d.ts +10 -10
- package/dist/ua_cnc_axis_list.d.ts +1 -1
- package/dist/ua_cnc_channel.d.ts +13 -13
- package/dist/ua_cnc_channel_list.d.ts +1 -1
- package/dist/ua_cnc_component.d.ts +1 -12
- package/dist/ua_cnc_drive.d.ts +8 -8
- package/dist/ua_cnc_interface.d.ts +6 -6
- package/dist/ua_cnc_message.d.ts +1 -1
- package/dist/ua_cnc_position_variable.d.ts +6 -6
- package/dist/ua_cnc_spindle.d.ts +12 -12
- package/dist/ua_cnc_spindle_list.d.ts +13 -13
- package/package.json +11 -11
- package/source/dt_cnc_position.ts +4 -2
- package/source/index.ts +1 -1
- package/source/ua_cnc_alarm.ts +7 -6
- package/source/ua_cnc_axis.ts +14 -12
- package/source/ua_cnc_axis_list.ts +4 -3
- package/source/ua_cnc_channel.ts +17 -15
- package/source/ua_cnc_channel_list.ts +4 -3
- package/source/ua_cnc_component.ts +6 -16
- package/source/ua_cnc_drive.ts +12 -10
- package/source/ua_cnc_interface.ts +10 -8
- package/source/ua_cnc_message.ts +3 -3
- package/source/ua_cnc_position_variable.ts +10 -8
- package/source/ua_cnc_spindle.ts +16 -14
- package/source/ua_cnc_spindle_list.ts +18 -15
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ExtensionObject } from "node-opcua-extension-object";
|
|
2
|
-
import { DTStructure } from "node-opcua-nodeset-ua/dist/dt_structure";
|
|
1
|
+
import type { ExtensionObject } from "node-opcua-extension-object";
|
|
2
|
+
import type { DTStructure } from "node-opcua-nodeset-ua/dist/dt_structure";
|
|
3
3
|
/**
|
|
4
4
|
* Structure of position elements.
|
|
5
5
|
*
|
|
@@ -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":";;AAuByE,CAAC"}
|
package/dist/ua_cnc_alarm.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
1
|
+
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { UAString } from "node-opcua-basic-types";
|
|
3
|
+
import type { UADiscreteAlarm, UADiscreteAlarm_Base } from "node-opcua-nodeset-ua/dist/ua_discrete_alarm";
|
|
4
|
+
import type { DataType } from "node-opcua-variant";
|
|
5
5
|
/**
|
|
6
6
|
* Event transmitting Alarms within a CNC system.
|
|
7
7
|
*
|
package/dist/ua_cnc_axis.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import { UAAnalogItem } from "node-opcua-nodeset-ua/dist/ua_analog_item";
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import { EnumCncAxisStatus } from "./enum_cnc_axis_status";
|
|
9
|
-
import {
|
|
10
|
-
import { UACncPositionVariable } from "./ua_cnc_position_variable";
|
|
1
|
+
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { EUInformation } from "node-opcua-data-access";
|
|
3
|
+
import type { DTRange } from "node-opcua-nodeset-ua/dist/dt_range";
|
|
4
|
+
import type { UAAnalogItem } from "node-opcua-nodeset-ua/dist/ua_analog_item";
|
|
5
|
+
import type { UADataItem } from "node-opcua-nodeset-ua/dist/ua_data_item";
|
|
6
|
+
import type { DataType } from "node-opcua-variant";
|
|
7
|
+
import type { DTCncPosition } from "./dt_cnc_position";
|
|
8
|
+
import type { EnumCncAxisStatus } from "./enum_cnc_axis_status";
|
|
9
|
+
import type { UACncDrive, UACncDrive_Base } from "./ua_cnc_drive";
|
|
10
|
+
import type { UACncPositionVariable } from "./ua_cnc_position_variable";
|
|
11
11
|
export interface UACncAxis_zeroOffset<T, DT extends DataType> extends Omit<UAAnalogItem<T, DT>, "engineeringUnits" | "euRange"> {
|
|
12
12
|
engineeringUnits: UAProperty<EUInformation, DataType.ExtensionObject>;
|
|
13
13
|
euRange: UAProperty<DTRange, DataType.ExtensionObject>;
|
package/dist/ua_cnc_channel.d.ts
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
-
import {
|
|
3
|
-
import { EUInformation } from "node-opcua-data-access";
|
|
4
|
-
import {
|
|
5
|
-
import { UAAnalogItem } from "node-opcua-nodeset-ua/dist/ua_analog_item";
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import { UACncPositionVariable } from "./ua_cnc_position_variable";
|
|
1
|
+
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { UAString, UInt32 } from "node-opcua-basic-types";
|
|
3
|
+
import type { EUInformation } from "node-opcua-data-access";
|
|
4
|
+
import type { DTRange } from "node-opcua-nodeset-ua/dist/dt_range";
|
|
5
|
+
import type { UAAnalogItem } from "node-opcua-nodeset-ua/dist/ua_analog_item";
|
|
6
|
+
import type { UADataItem } from "node-opcua-nodeset-ua/dist/ua_data_item";
|
|
7
|
+
import type { DataType } from "node-opcua-variant";
|
|
8
|
+
import type { DTCncPosition } from "./dt_cnc_position";
|
|
9
|
+
import type { EnumCncChannelProgramStatus } from "./enum_cnc_channel_program_status";
|
|
10
|
+
import type { EnumCncChannelStatus } from "./enum_cnc_channel_status";
|
|
11
|
+
import type { EnumCncOperationMode } from "./enum_cnc_operation_mode";
|
|
12
|
+
import type { UACncComponent, UACncComponent_Base } from "./ua_cnc_component";
|
|
13
|
+
import type { UACncPositionVariable } from "./ua_cnc_position_variable";
|
|
14
14
|
export interface UACncChannel_actFeedrate<T, DT extends DataType> extends Omit<UAAnalogItem<T, DT>, "engineeringUnits" | "euRange"> {
|
|
15
15
|
engineeringUnits: UAProperty<EUInformation, DataType.ExtensionObject>;
|
|
16
16
|
euRange: UAProperty<DTRange, DataType.ExtensionObject>;
|
|
@@ -1,15 +1,4 @@
|
|
|
1
|
-
import { UAObject } from "node-opcua-address-space-base";
|
|
2
|
-
/**
|
|
3
|
-
* Base component for soft- or hardware elements of
|
|
4
|
-
* a CNC system.
|
|
5
|
-
*
|
|
6
|
-
* | | |
|
|
7
|
-
* |----------------|------------------------------------------------------------|
|
|
8
|
-
* |namespace |http://opcfoundation.org/UA/CNC |
|
|
9
|
-
* |nodeClass |ObjectType |
|
|
10
|
-
* |typedDefinition |CncComponentType i=1001 |
|
|
11
|
-
* |isAbstract |true |
|
|
12
|
-
*/
|
|
1
|
+
import type { UAObject } from "node-opcua-address-space-base";
|
|
13
2
|
export interface UACncComponent_Base {
|
|
14
3
|
}
|
|
15
4
|
export interface UACncComponent extends UAObject, UACncComponent_Base {
|
package/dist/ua_cnc_drive.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import { UAAnalogItem } from "node-opcua-nodeset-ua/dist/ua_analog_item";
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import { UACncComponent, UACncComponent_Base } from "./ua_cnc_component";
|
|
1
|
+
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { EUInformation } from "node-opcua-data-access";
|
|
3
|
+
import type { NodeId } from "node-opcua-nodeid";
|
|
4
|
+
import type { DTRange } from "node-opcua-nodeset-ua/dist/dt_range";
|
|
5
|
+
import type { UAAnalogItem } from "node-opcua-nodeset-ua/dist/ua_analog_item";
|
|
6
|
+
import type { UADataItem } from "node-opcua-nodeset-ua/dist/ua_data_item";
|
|
7
|
+
import type { DataType } from "node-opcua-variant";
|
|
8
|
+
import type { UACncComponent, UACncComponent_Base } from "./ua_cnc_component";
|
|
9
9
|
export interface UACncDrive_actLoad<T, DT extends DataType> extends Omit<UAAnalogItem<T, DT>, "engineeringUnits" | "euRange"> {
|
|
10
10
|
engineeringUnits: UAProperty<EUInformation, DataType.ExtensionObject>;
|
|
11
11
|
euRange: UAProperty<DTRange, DataType.ExtensionObject>;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { UAObject, UAProperty } from "node-opcua-address-space-base";
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import { UACncAxisList } from "./ua_cnc_axis_list";
|
|
5
|
-
import { UACncChannelList } from "./ua_cnc_channel_list";
|
|
6
|
-
import { UACncSpindleList } from "./ua_cnc_spindle_list";
|
|
1
|
+
import type { UAObject, UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { UAString } from "node-opcua-basic-types";
|
|
3
|
+
import type { DataType } from "node-opcua-variant";
|
|
4
|
+
import type { UACncAxisList } from "./ua_cnc_axis_list";
|
|
5
|
+
import type { UACncChannelList } from "./ua_cnc_channel_list";
|
|
6
|
+
import type { UACncSpindleList } from "./ua_cnc_spindle_list";
|
|
7
7
|
/**
|
|
8
8
|
* Entry point to CNC data interface.
|
|
9
9
|
*
|
package/dist/ua_cnc_message.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import { UABaseDataVariable, UABaseDataVariable_Base } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
|
|
5
|
-
import {
|
|
6
|
-
import { DTCncPosition } from "./dt_cnc_position";
|
|
1
|
+
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { EUInformation } from "node-opcua-data-access";
|
|
3
|
+
import type { DTRange } from "node-opcua-nodeset-ua/dist/dt_range";
|
|
4
|
+
import type { UABaseDataVariable, UABaseDataVariable_Base } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
|
|
5
|
+
import type { DataType } from "node-opcua-variant";
|
|
6
|
+
import type { DTCncPosition } from "./dt_cnc_position";
|
|
7
7
|
/**
|
|
8
8
|
* Group of position values.
|
|
9
9
|
*
|
package/dist/ua_cnc_spindle.d.ts
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
-
import {
|
|
3
|
-
import { EUInformation } from "node-opcua-data-access";
|
|
4
|
-
import {
|
|
5
|
-
import { UAAnalogItem } from "node-opcua-nodeset-ua/dist/ua_analog_item";
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import { EnumCncSpindleStatus } from "./enum_cnc_spindle_status";
|
|
10
|
-
import { EnumCncSpindleTurnDirection } from "./enum_cnc_spindle_turn_direction";
|
|
11
|
-
import {
|
|
12
|
-
import { UACncPositionVariable } from "./ua_cnc_position_variable";
|
|
1
|
+
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { UInt32 } from "node-opcua-basic-types";
|
|
3
|
+
import type { EUInformation } from "node-opcua-data-access";
|
|
4
|
+
import type { DTRange } from "node-opcua-nodeset-ua/dist/dt_range";
|
|
5
|
+
import type { UAAnalogItem } from "node-opcua-nodeset-ua/dist/ua_analog_item";
|
|
6
|
+
import type { UADataItem } from "node-opcua-nodeset-ua/dist/ua_data_item";
|
|
7
|
+
import type { DataType } from "node-opcua-variant";
|
|
8
|
+
import type { DTCncPosition } from "./dt_cnc_position";
|
|
9
|
+
import type { EnumCncSpindleStatus } from "./enum_cnc_spindle_status";
|
|
10
|
+
import type { EnumCncSpindleTurnDirection } from "./enum_cnc_spindle_turn_direction";
|
|
11
|
+
import type { UACncDrive, UACncDrive_Base } from "./ua_cnc_drive";
|
|
12
|
+
import type { UACncPositionVariable } from "./ua_cnc_position_variable";
|
|
13
13
|
export interface UACncSpindle_actSpeed<T, DT extends DataType> extends Omit<UAAnalogItem<T, DT>, "engineeringUnits" | "euRange"> {
|
|
14
14
|
engineeringUnits: UAProperty<EUInformation, DataType.ExtensionObject>;
|
|
15
15
|
euRange: UAProperty<DTRange, DataType.ExtensionObject>;
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { UAObject } from "node-opcua-address-space-base";
|
|
2
|
-
import {
|
|
3
|
-
import { NodeId } from "node-opcua-nodeid";
|
|
4
|
-
import {
|
|
5
|
-
import { UADataItem } from "node-opcua-nodeset-ua/dist/ua_data_item";
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import { EnumCncSpindleStatus } from "./enum_cnc_spindle_status";
|
|
11
|
-
import { EnumCncSpindleTurnDirection } from "./enum_cnc_spindle_turn_direction";
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
1
|
+
import type { UAObject } from "node-opcua-address-space-base";
|
|
2
|
+
import type { UAString, UInt32 } from "node-opcua-basic-types";
|
|
3
|
+
import type { NodeId } from "node-opcua-nodeid";
|
|
4
|
+
import type { UAAnalogItem } from "node-opcua-nodeset-ua/dist/ua_analog_item";
|
|
5
|
+
import type { UADataItem } from "node-opcua-nodeset-ua/dist/ua_data_item";
|
|
6
|
+
import type { DataType } from "node-opcua-variant";
|
|
7
|
+
import type { DTCncPosition } from "./dt_cnc_position";
|
|
8
|
+
import type { EnumCncChannelProgramStatus } from "./enum_cnc_channel_program_status";
|
|
9
|
+
import type { EnumCncOperationMode } from "./enum_cnc_operation_mode";
|
|
10
|
+
import type { EnumCncSpindleStatus } from "./enum_cnc_spindle_status";
|
|
11
|
+
import type { EnumCncSpindleTurnDirection } from "./enum_cnc_spindle_turn_direction";
|
|
12
|
+
import type { UACncPositionVariable } from "./ua_cnc_position_variable";
|
|
13
|
+
import type { UACncSpindle, UACncSpindle_actSpeed, UACncSpindle_cmdSpeed } from "./ua_cnc_spindle";
|
|
14
14
|
export interface UACncSpindleList_$CncSpindle$ extends Omit<UACncSpindle, "actChannel" | "actGear" | "actLoad" | "actOverride" | "actPower" | "actSpeed" | "actStatus" | "actTorque" | "actTurnDirection" | "anglePos" | "cmdGear" | "cmdOverride" | "cmdSpeed" | "cmdTorque" | "isInactive" | "isVirtual"> {
|
|
15
15
|
/**
|
|
16
16
|
* actChannel
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-opcua-nodeset-cnc",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.172.0",
|
|
4
4
|
"description": "pure nodejs OPCUA SDK - module node-opcua-nodeset-cnc",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -11,15 +11,15 @@
|
|
|
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-access": "2.
|
|
17
|
-
"node-opcua-data-model": "2.
|
|
18
|
-
"node-opcua-extension-object": "2.
|
|
19
|
-
"node-opcua-nodeid": "2.
|
|
20
|
-
"node-opcua-nodeset-ua": "2.
|
|
21
|
-
"node-opcua-status-code": "2.
|
|
22
|
-
"node-opcua-variant": "2.
|
|
14
|
+
"node-opcua-address-space-base": "2.172.0",
|
|
15
|
+
"node-opcua-basic-types": "2.172.0",
|
|
16
|
+
"node-opcua-data-access": "2.172.0",
|
|
17
|
+
"node-opcua-data-model": "2.172.0",
|
|
18
|
+
"node-opcua-extension-object": "2.172.0",
|
|
19
|
+
"node-opcua-nodeid": "2.172.0",
|
|
20
|
+
"node-opcua-nodeset-ua": "2.172.0",
|
|
21
|
+
"node-opcua-status-code": "2.172.0",
|
|
22
|
+
"node-opcua-variant": "2.172.0"
|
|
23
23
|
},
|
|
24
24
|
"files": [
|
|
25
25
|
"dist",
|
|
@@ -38,5 +38,5 @@
|
|
|
38
38
|
"internet of things"
|
|
39
39
|
],
|
|
40
40
|
"homepage": "http://node-opcua.github.io/",
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "dfe9993a93b5c3897825e898b5f07b25952c7f45"
|
|
42
42
|
}
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
+
import type { ExtensionObject } from "node-opcua-extension-object";
|
|
2
|
+
import type { DTStructure } from "node-opcua-nodeset-ua/dist/dt_structure";
|
|
3
|
+
|
|
1
4
|
// ----- this file has been automatically generated - do not edit
|
|
2
|
-
|
|
3
|
-
import { DTStructure } from "node-opcua-nodeset-ua/dist/dt_structure"
|
|
5
|
+
|
|
4
6
|
/**
|
|
5
7
|
* Structure of position elements.
|
|
6
8
|
*
|
package/source/index.ts
CHANGED
package/source/ua_cnc_alarm.ts
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
|
+
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { UAString } from "node-opcua-basic-types";
|
|
3
|
+
import type { UADiscreteAlarm, UADiscreteAlarm_Base } from "node-opcua-nodeset-ua/dist/ua_discrete_alarm";
|
|
4
|
+
import type { DataType } from "node-opcua-variant";
|
|
5
|
+
|
|
1
6
|
// ----- this file has been automatically generated - do not edit
|
|
2
|
-
|
|
3
|
-
import { DataType } from "node-opcua-variant"
|
|
4
|
-
import { UAString } from "node-opcua-basic-types"
|
|
5
|
-
import { UADiscreteAlarm, UADiscreteAlarm_Base } from "node-opcua-nodeset-ua/dist/ua_discrete_alarm"
|
|
7
|
+
|
|
6
8
|
/**
|
|
7
9
|
* Event transmitting Alarms within a CNC system.
|
|
8
10
|
*
|
|
@@ -33,5 +35,4 @@ export interface UACncAlarm_Base extends UADiscreteAlarm_Base {
|
|
|
33
35
|
*/
|
|
34
36
|
helpSource?: UAProperty<UAString, DataType.String>;
|
|
35
37
|
}
|
|
36
|
-
export interface UACncAlarm extends UADiscreteAlarm, UACncAlarm_Base {
|
|
37
|
-
}
|
|
38
|
+
export interface UACncAlarm extends UADiscreteAlarm, UACncAlarm_Base {}
|
package/source/ua_cnc_axis.ts
CHANGED
|
@@ -1,14 +1,17 @@
|
|
|
1
|
+
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { EUInformation } from "node-opcua-data-access";
|
|
3
|
+
import type { DTRange } from "node-opcua-nodeset-ua/dist/dt_range";
|
|
4
|
+
import type { UAAnalogItem } from "node-opcua-nodeset-ua/dist/ua_analog_item";
|
|
5
|
+
import type { UADataItem } from "node-opcua-nodeset-ua/dist/ua_data_item";
|
|
6
|
+
import type { DataType } from "node-opcua-variant";
|
|
7
|
+
|
|
8
|
+
import type { DTCncPosition } from "./dt_cnc_position";
|
|
9
|
+
import type { EnumCncAxisStatus } from "./enum_cnc_axis_status";
|
|
10
|
+
import type { UACncDrive, UACncDrive_Base } from "./ua_cnc_drive";
|
|
11
|
+
import type { UACncPositionVariable } from "./ua_cnc_position_variable";
|
|
12
|
+
|
|
1
13
|
// ----- this file has been automatically generated - do not edit
|
|
2
|
-
|
|
3
|
-
import { DataType } from "node-opcua-variant"
|
|
4
|
-
import { EUInformation } from "node-opcua-data-access"
|
|
5
|
-
import { UAAnalogItem } from "node-opcua-nodeset-ua/dist/ua_analog_item"
|
|
6
|
-
import { DTRange } from "node-opcua-nodeset-ua/dist/dt_range"
|
|
7
|
-
import { UADataItem } from "node-opcua-nodeset-ua/dist/ua_data_item"
|
|
8
|
-
import { UACncDrive, UACncDrive_Base } from "./ua_cnc_drive"
|
|
9
|
-
import { EnumCncAxisStatus } from "./enum_cnc_axis_status"
|
|
10
|
-
import { DTCncPosition } from "./dt_cnc_position"
|
|
11
|
-
import { UACncPositionVariable } from "./ua_cnc_position_variable"
|
|
14
|
+
|
|
12
15
|
export interface UACncAxis_zeroOffset<T, DT extends DataType> extends Omit<UAAnalogItem<T, DT>, "engineeringUnits"|"euRange"> { // Variable
|
|
13
16
|
engineeringUnits: UAProperty<EUInformation, DataType.ExtensionObject>;
|
|
14
17
|
euRange: UAProperty<DTRange, DataType.ExtensionObject>;
|
|
@@ -59,5 +62,4 @@ export interface UACncAxis_Base extends UACncDrive_Base {
|
|
|
59
62
|
*/
|
|
60
63
|
zeroOffset: UACncAxis_zeroOffset<number, DataType.Double>;
|
|
61
64
|
}
|
|
62
|
-
export interface UACncAxis extends UACncDrive, UACncAxis_Base {
|
|
63
|
-
}
|
|
65
|
+
export interface UACncAxis extends UACncDrive, UACncAxis_Base {}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
import type { UAObject } from "node-opcua-address-space-base";
|
|
2
|
+
|
|
1
3
|
// ----- this file has been automatically generated - do not edit
|
|
2
|
-
import { UAObject } from "node-opcua-address-space-base"
|
|
3
4
|
|
|
4
5
|
/**
|
|
5
6
|
* List of CNC axis objects.
|
|
@@ -11,8 +12,8 @@ import { UAObject } from "node-opcua-address-space-base"
|
|
|
11
12
|
* |typedDefinition |CncAxisListType i=1008 |
|
|
12
13
|
* |isAbstract |false |
|
|
13
14
|
*/
|
|
15
|
+
// biome-ignore lint/suspicious/noEmptyInterface: forward-compatible placeholder for OPC-UA generated types
|
|
14
16
|
export interface UACncAxisList_Base {
|
|
15
17
|
// PlaceHolder for $CncAxis$
|
|
16
18
|
}
|
|
17
|
-
export interface UACncAxisList extends UAObject, UACncAxisList_Base {
|
|
18
|
-
}
|
|
19
|
+
export interface UACncAxisList extends UAObject, UACncAxisList_Base {}
|
package/source/ua_cnc_channel.ts
CHANGED
|
@@ -1,17 +1,20 @@
|
|
|
1
|
+
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { UAString, UInt32 } from "node-opcua-basic-types";
|
|
3
|
+
import type { EUInformation } from "node-opcua-data-access";
|
|
4
|
+
import type { DTRange } from "node-opcua-nodeset-ua/dist/dt_range";
|
|
5
|
+
import type { UAAnalogItem } from "node-opcua-nodeset-ua/dist/ua_analog_item";
|
|
6
|
+
import type { UADataItem } from "node-opcua-nodeset-ua/dist/ua_data_item";
|
|
7
|
+
import type { DataType } from "node-opcua-variant";
|
|
8
|
+
|
|
9
|
+
import type { DTCncPosition } from "./dt_cnc_position";
|
|
10
|
+
import type { EnumCncChannelProgramStatus } from "./enum_cnc_channel_program_status";
|
|
11
|
+
import type { EnumCncChannelStatus } from "./enum_cnc_channel_status";
|
|
12
|
+
import type { EnumCncOperationMode } from "./enum_cnc_operation_mode";
|
|
13
|
+
import type { UACncComponent, UACncComponent_Base } from "./ua_cnc_component";
|
|
14
|
+
import type { UACncPositionVariable } from "./ua_cnc_position_variable";
|
|
15
|
+
|
|
1
16
|
// ----- this file has been automatically generated - do not edit
|
|
2
|
-
|
|
3
|
-
import { DataType } from "node-opcua-variant"
|
|
4
|
-
import { EUInformation } from "node-opcua-data-access"
|
|
5
|
-
import { UInt32, UAString } from "node-opcua-basic-types"
|
|
6
|
-
import { UAAnalogItem } from "node-opcua-nodeset-ua/dist/ua_analog_item"
|
|
7
|
-
import { DTRange } from "node-opcua-nodeset-ua/dist/dt_range"
|
|
8
|
-
import { UADataItem } from "node-opcua-nodeset-ua/dist/ua_data_item"
|
|
9
|
-
import { UACncComponent, UACncComponent_Base } from "./ua_cnc_component"
|
|
10
|
-
import { EnumCncOperationMode } from "./enum_cnc_operation_mode"
|
|
11
|
-
import { EnumCncChannelProgramStatus } from "./enum_cnc_channel_program_status"
|
|
12
|
-
import { EnumCncChannelStatus } from "./enum_cnc_channel_status"
|
|
13
|
-
import { DTCncPosition } from "./dt_cnc_position"
|
|
14
|
-
import { UACncPositionVariable } from "./ua_cnc_position_variable"
|
|
17
|
+
|
|
15
18
|
export interface UACncChannel_actFeedrate<T, DT extends DataType> extends Omit<UAAnalogItem<T, DT>, "engineeringUnits"|"euRange"> { // Variable
|
|
16
19
|
engineeringUnits: UAProperty<EUInformation, DataType.ExtensionObject>;
|
|
17
20
|
euRange: UAProperty<DTRange, DataType.ExtensionObject>;
|
|
@@ -263,5 +266,4 @@ export interface UACncChannel_Base extends UACncComponent_Base {
|
|
|
263
266
|
*/
|
|
264
267
|
toolId: UADataItem<UInt32, DataType.UInt32>;
|
|
265
268
|
}
|
|
266
|
-
export interface UACncChannel extends UACncComponent, UACncChannel_Base {
|
|
267
|
-
}
|
|
269
|
+
export interface UACncChannel extends UACncComponent, UACncChannel_Base {}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
import type { UAObject } from "node-opcua-address-space-base";
|
|
2
|
+
|
|
1
3
|
// ----- this file has been automatically generated - do not edit
|
|
2
|
-
import { UAObject } from "node-opcua-address-space-base"
|
|
3
4
|
|
|
4
5
|
/**
|
|
5
6
|
* List of CNC channel objects.
|
|
@@ -11,8 +12,8 @@ import { UAObject } from "node-opcua-address-space-base"
|
|
|
11
12
|
* |typedDefinition |CncChannelListType i=1010 |
|
|
12
13
|
* |isAbstract |false |
|
|
13
14
|
*/
|
|
15
|
+
// biome-ignore lint/suspicious/noEmptyInterface: forward-compatible placeholder for OPC-UA generated types
|
|
14
16
|
export interface UACncChannelList_Base {
|
|
15
17
|
// PlaceHolder for $CncChannel$
|
|
16
18
|
}
|
|
17
|
-
export interface UACncChannelList extends UAObject, UACncChannelList_Base {
|
|
18
|
-
}
|
|
19
|
+
export interface UACncChannelList extends UAObject, UACncChannelList_Base {}
|
|
@@ -1,17 +1,7 @@
|
|
|
1
|
+
import type { UAObject } from "node-opcua-address-space-base";
|
|
2
|
+
|
|
1
3
|
// ----- this file has been automatically generated - do not edit
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
*
|
|
7
|
-
* | | |
|
|
8
|
-
* |----------------|------------------------------------------------------------|
|
|
9
|
-
* |namespace |http://opcfoundation.org/UA/CNC |
|
|
10
|
-
* |nodeClass |ObjectType |
|
|
11
|
-
* |typedDefinition |CncComponentType i=1001 |
|
|
12
|
-
* |isAbstract |true |
|
|
13
|
-
*/
|
|
14
|
-
export interface UACncComponent_Base {
|
|
15
|
-
}
|
|
16
|
-
export interface UACncComponent extends UAObject, UACncComponent_Base {
|
|
17
|
-
}
|
|
4
|
+
|
|
5
|
+
// biome-ignore lint/suspicious/noEmptyInterface: forward-compatible placeholder for OPC-UA generated types
|
|
6
|
+
export interface UACncComponent_Base {}
|
|
7
|
+
export interface UACncComponent extends UAObject, UACncComponent_Base {}
|
package/source/ua_cnc_drive.ts
CHANGED
|
@@ -1,12 +1,15 @@
|
|
|
1
|
+
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { EUInformation } from "node-opcua-data-access";
|
|
3
|
+
import type { NodeId } from "node-opcua-nodeid";
|
|
4
|
+
import type { DTRange } from "node-opcua-nodeset-ua/dist/dt_range";
|
|
5
|
+
import type { UAAnalogItem } from "node-opcua-nodeset-ua/dist/ua_analog_item";
|
|
6
|
+
import type { UADataItem } from "node-opcua-nodeset-ua/dist/ua_data_item";
|
|
7
|
+
import type { DataType } from "node-opcua-variant";
|
|
8
|
+
|
|
9
|
+
import type { UACncComponent, UACncComponent_Base } from "./ua_cnc_component";
|
|
10
|
+
|
|
1
11
|
// ----- this file has been automatically generated - do not edit
|
|
2
|
-
|
|
3
|
-
import { DataType } from "node-opcua-variant"
|
|
4
|
-
import { EUInformation } from "node-opcua-data-access"
|
|
5
|
-
import { NodeId } from "node-opcua-nodeid"
|
|
6
|
-
import { UAAnalogItem } from "node-opcua-nodeset-ua/dist/ua_analog_item"
|
|
7
|
-
import { DTRange } from "node-opcua-nodeset-ua/dist/dt_range"
|
|
8
|
-
import { UADataItem } from "node-opcua-nodeset-ua/dist/ua_data_item"
|
|
9
|
-
import { UACncComponent, UACncComponent_Base } from "./ua_cnc_component"
|
|
12
|
+
|
|
10
13
|
export interface UACncDrive_actLoad<T, DT extends DataType> extends Omit<UAAnalogItem<T, DT>, "engineeringUnits"|"euRange"> { // Variable
|
|
11
14
|
engineeringUnits: UAProperty<EUInformation, DataType.ExtensionObject>;
|
|
12
15
|
euRange: UAProperty<DTRange, DataType.ExtensionObject>;
|
|
@@ -75,5 +78,4 @@ export interface UACncDrive_Base extends UACncComponent_Base {
|
|
|
75
78
|
*/
|
|
76
79
|
isVirtual: UADataItem<boolean, DataType.Boolean>;
|
|
77
80
|
}
|
|
78
|
-
export interface UACncDrive extends UACncComponent, UACncDrive_Base {
|
|
79
|
-
}
|
|
81
|
+
export interface UACncDrive extends UACncComponent, UACncDrive_Base {}
|
|
@@ -1,10 +1,13 @@
|
|
|
1
|
+
import type { UAObject, UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { UAString } from "node-opcua-basic-types";
|
|
3
|
+
import type { DataType } from "node-opcua-variant";
|
|
4
|
+
|
|
5
|
+
import type { UACncAxisList } from "./ua_cnc_axis_list";
|
|
6
|
+
import type { UACncChannelList } from "./ua_cnc_channel_list";
|
|
7
|
+
import type { UACncSpindleList } from "./ua_cnc_spindle_list";
|
|
8
|
+
|
|
1
9
|
// ----- this file has been automatically generated - do not edit
|
|
2
|
-
|
|
3
|
-
import { DataType } from "node-opcua-variant"
|
|
4
|
-
import { UAString } from "node-opcua-basic-types"
|
|
5
|
-
import { UACncAxisList } from "./ua_cnc_axis_list"
|
|
6
|
-
import { UACncChannelList } from "./ua_cnc_channel_list"
|
|
7
|
-
import { UACncSpindleList } from "./ua_cnc_spindle_list"
|
|
10
|
+
|
|
8
11
|
/**
|
|
9
12
|
* Entry point to CNC data interface.
|
|
10
13
|
*
|
|
@@ -57,5 +60,4 @@ export interface UACncInterface_Base {
|
|
|
57
60
|
*/
|
|
58
61
|
version: UAProperty<UAString, DataType.String>;
|
|
59
62
|
}
|
|
60
|
-
export interface UACncInterface extends UAObject, UACncInterface_Base {
|
|
61
|
-
}
|
|
63
|
+
export interface UACncInterface extends UAObject, UACncInterface_Base {}
|
package/source/ua_cnc_message.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
import type { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/dist/ua_base_event";
|
|
2
|
+
|
|
1
3
|
// ----- this file has been automatically generated - do not edit
|
|
2
|
-
import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/dist/ua_base_event"
|
|
3
4
|
/**
|
|
4
5
|
* Event transmitting simple information messages.
|
|
5
6
|
*
|
|
@@ -11,5 +12,4 @@ import { UABaseEvent, UABaseEvent_Base } from "node-opcua-nodeset-ua/dist/ua_bas
|
|
|
11
12
|
* |isAbstract |false |
|
|
12
13
|
*/
|
|
13
14
|
export type UACncMessage_Base = UABaseEvent_Base;
|
|
14
|
-
export interface UACncMessage extends UABaseEvent, UACncMessage_Base {
|
|
15
|
-
}
|
|
15
|
+
export interface UACncMessage extends UABaseEvent, UACncMessage_Base {}
|
|
@@ -1,10 +1,13 @@
|
|
|
1
|
+
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { EUInformation } from "node-opcua-data-access";
|
|
3
|
+
import type { DTRange } from "node-opcua-nodeset-ua/dist/dt_range";
|
|
4
|
+
import type { UABaseDataVariable, UABaseDataVariable_Base } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
|
|
5
|
+
import type { DataType } from "node-opcua-variant";
|
|
6
|
+
|
|
7
|
+
import type { DTCncPosition } from "./dt_cnc_position";
|
|
8
|
+
|
|
1
9
|
// ----- this file has been automatically generated - do not edit
|
|
2
|
-
|
|
3
|
-
import { DataType } from "node-opcua-variant"
|
|
4
|
-
import { EUInformation } from "node-opcua-data-access"
|
|
5
|
-
import { UABaseDataVariable, UABaseDataVariable_Base } from "node-opcua-nodeset-ua/dist/ua_base_data_variable"
|
|
6
|
-
import { DTRange } from "node-opcua-nodeset-ua/dist/dt_range"
|
|
7
|
-
import { DTCncPosition } from "./dt_cnc_position"
|
|
10
|
+
|
|
8
11
|
/**
|
|
9
12
|
* Group of position values.
|
|
10
13
|
*
|
|
@@ -37,5 +40,4 @@ export interface UACncPositionVariable_Base<T extends DTCncPosition> extends UA
|
|
|
37
40
|
*/
|
|
38
41
|
remDist: UABaseDataVariable<number, DataType.Double>;
|
|
39
42
|
}
|
|
40
|
-
export interface UACncPositionVariable<T extends DTCncPosition> extends UABaseDataVariable<T, DataType.ExtensionObject>, UACncPositionVariable_Base<T> {
|
|
41
|
-
}
|
|
43
|
+
export interface UACncPositionVariable<T extends DTCncPosition> extends UABaseDataVariable<T, DataType.ExtensionObject>, UACncPositionVariable_Base<T> {}
|
package/source/ua_cnc_spindle.ts
CHANGED
|
@@ -1,16 +1,19 @@
|
|
|
1
|
+
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { UInt32 } from "node-opcua-basic-types";
|
|
3
|
+
import type { EUInformation } from "node-opcua-data-access";
|
|
4
|
+
import type { DTRange } from "node-opcua-nodeset-ua/dist/dt_range";
|
|
5
|
+
import type { UAAnalogItem } from "node-opcua-nodeset-ua/dist/ua_analog_item";
|
|
6
|
+
import type { UADataItem } from "node-opcua-nodeset-ua/dist/ua_data_item";
|
|
7
|
+
import type { DataType } from "node-opcua-variant";
|
|
8
|
+
|
|
9
|
+
import type { DTCncPosition } from "./dt_cnc_position";
|
|
10
|
+
import type { EnumCncSpindleStatus } from "./enum_cnc_spindle_status";
|
|
11
|
+
import type { EnumCncSpindleTurnDirection } from "./enum_cnc_spindle_turn_direction";
|
|
12
|
+
import type { UACncDrive, UACncDrive_Base } from "./ua_cnc_drive";
|
|
13
|
+
import type { UACncPositionVariable } from "./ua_cnc_position_variable";
|
|
14
|
+
|
|
1
15
|
// ----- this file has been automatically generated - do not edit
|
|
2
|
-
|
|
3
|
-
import { DataType } from "node-opcua-variant"
|
|
4
|
-
import { EUInformation } from "node-opcua-data-access"
|
|
5
|
-
import { UInt32 } from "node-opcua-basic-types"
|
|
6
|
-
import { UAAnalogItem } from "node-opcua-nodeset-ua/dist/ua_analog_item"
|
|
7
|
-
import { DTRange } from "node-opcua-nodeset-ua/dist/dt_range"
|
|
8
|
-
import { UADataItem } from "node-opcua-nodeset-ua/dist/ua_data_item"
|
|
9
|
-
import { UACncDrive, UACncDrive_Base } from "./ua_cnc_drive"
|
|
10
|
-
import { EnumCncSpindleStatus } from "./enum_cnc_spindle_status"
|
|
11
|
-
import { EnumCncSpindleTurnDirection } from "./enum_cnc_spindle_turn_direction"
|
|
12
|
-
import { DTCncPosition } from "./dt_cnc_position"
|
|
13
|
-
import { UACncPositionVariable } from "./ua_cnc_position_variable"
|
|
16
|
+
|
|
14
17
|
export interface UACncSpindle_actSpeed<T, DT extends DataType> extends Omit<UAAnalogItem<T, DT>, "engineeringUnits"|"euRange"> { // Variable
|
|
15
18
|
engineeringUnits: UAProperty<EUInformation, DataType.ExtensionObject>;
|
|
16
19
|
euRange: UAProperty<DTRange, DataType.ExtensionObject>;
|
|
@@ -79,5 +82,4 @@ export interface UACncSpindle_Base extends UACncDrive_Base {
|
|
|
79
82
|
*/
|
|
80
83
|
cmdSpeed: UACncSpindle_cmdSpeed<number, DataType.Double>;
|
|
81
84
|
}
|
|
82
|
-
export interface UACncSpindle extends UACncDrive, UACncSpindle_Base {
|
|
83
|
-
}
|
|
85
|
+
export interface UACncSpindle extends UACncDrive, UACncSpindle_Base {}
|
|
@@ -1,17 +1,20 @@
|
|
|
1
|
+
import type { UAObject } from "node-opcua-address-space-base";
|
|
2
|
+
import type { UAString, UInt32 } from "node-opcua-basic-types";
|
|
3
|
+
import type { NodeId } from "node-opcua-nodeid";
|
|
4
|
+
import type { UAAnalogItem } from "node-opcua-nodeset-ua/dist/ua_analog_item";
|
|
5
|
+
import type { UADataItem } from "node-opcua-nodeset-ua/dist/ua_data_item";
|
|
6
|
+
import type { DataType } from "node-opcua-variant";
|
|
7
|
+
|
|
8
|
+
import type { DTCncPosition } from "./dt_cnc_position";
|
|
9
|
+
import type { EnumCncChannelProgramStatus } from "./enum_cnc_channel_program_status";
|
|
10
|
+
import type { EnumCncOperationMode } from "./enum_cnc_operation_mode";
|
|
11
|
+
import type { EnumCncSpindleStatus } from "./enum_cnc_spindle_status";
|
|
12
|
+
import type { EnumCncSpindleTurnDirection } from "./enum_cnc_spindle_turn_direction";
|
|
13
|
+
import type { UACncPositionVariable } from "./ua_cnc_position_variable";
|
|
14
|
+
import type { UACncSpindle, UACncSpindle_actSpeed, UACncSpindle_cmdSpeed } from "./ua_cnc_spindle";
|
|
15
|
+
|
|
1
16
|
// ----- this file has been automatically generated - do not edit
|
|
2
|
-
|
|
3
|
-
import { DataType } from "node-opcua-variant"
|
|
4
|
-
import { NodeId } from "node-opcua-nodeid"
|
|
5
|
-
import { UInt32, UAString } from "node-opcua-basic-types"
|
|
6
|
-
import { UADataItem } from "node-opcua-nodeset-ua/dist/ua_data_item"
|
|
7
|
-
import { UAAnalogItem } from "node-opcua-nodeset-ua/dist/ua_analog_item"
|
|
8
|
-
import { UACncSpindle, UACncSpindle_actSpeed, UACncSpindle_cmdSpeed } from "./ua_cnc_spindle"
|
|
9
|
-
import { EnumCncOperationMode } from "./enum_cnc_operation_mode"
|
|
10
|
-
import { EnumCncChannelProgramStatus } from "./enum_cnc_channel_program_status"
|
|
11
|
-
import { EnumCncSpindleStatus } from "./enum_cnc_spindle_status"
|
|
12
|
-
import { EnumCncSpindleTurnDirection } from "./enum_cnc_spindle_turn_direction"
|
|
13
|
-
import { DTCncPosition } from "./dt_cnc_position"
|
|
14
|
-
import { UACncPositionVariable } from "./ua_cnc_position_variable"
|
|
17
|
+
|
|
15
18
|
export interface UACncSpindleList_$CncSpindle$ extends Omit<UACncSpindle, "actChannel"|"actGear"|"actLoad"|"actOverride"|"actPower"|"actSpeed"|"actStatus"|"actTorque"|"actTurnDirection"|"anglePos"|"cmdGear"|"cmdOverride"|"cmdSpeed"|"cmdTorque"|"isInactive"|"isVirtual"> { // Object
|
|
16
19
|
/**
|
|
17
20
|
* actChannel
|
|
@@ -216,8 +219,8 @@ export interface UACncSpindleList_$CncSpindle$ extends Omit<UACncSpindle, "actCh
|
|
|
216
219
|
* |typedDefinition |CncSpindleListType i=1009 |
|
|
217
220
|
* |isAbstract |false |
|
|
218
221
|
*/
|
|
222
|
+
// biome-ignore lint/suspicious/noEmptyInterface: forward-compatible placeholder for OPC-UA generated types
|
|
219
223
|
export interface UACncSpindleList_Base {
|
|
220
224
|
// PlaceHolder for $CncSpindle$
|
|
221
225
|
}
|
|
222
|
-
export interface UACncSpindleList extends UAObject, UACncSpindleList_Base {
|
|
223
|
-
}
|
|
226
|
+
export interface UACncSpindleList extends UAObject, UACncSpindleList_Base {}
|