node-opcua-nodeset-robotics 2.66.1 → 2.67.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/ua_axis.d.ts +2 -1
- package/dist/ua_motion_device.d.ts +2 -1
- package/dist/ua_safety_state.d.ts +2 -1
- package/dist/ua_task_control.d.ts +2 -1
- package/package.json +10 -10
- package/source/ua_auxiliary_component.ts +2 -1
- package/source/ua_axis.ts +3 -2
- package/source/ua_motion_device.ts +3 -2
- package/source/ua_motion_device_system.ts +4 -0
- package/source/ua_safety_state.ts +3 -2
- package/source/ua_task_control.ts +3 -2
package/dist/ua_axis.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import { UAObject, UAProperty } from "node-opcua-address-space-base";
|
|
|
2
2
|
import { DataType } from "node-opcua-variant";
|
|
3
3
|
import { UAAnalogUnit } from "node-opcua-nodeset-ua/source/ua_analog_unit";
|
|
4
4
|
import { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/source/ua_component";
|
|
5
|
+
import { EnumAxisMotionProfile } from "./enum_axis_motion_profile";
|
|
5
6
|
import { UALoad } from "./ua_load";
|
|
6
7
|
export interface UAAxis_parameterSet extends UAObject {
|
|
7
8
|
/**
|
|
@@ -46,7 +47,7 @@ export interface UAAxis_Base extends UAComponent_Base {
|
|
|
46
47
|
* The kind of axis motion as defined with the
|
|
47
48
|
* AxisMotionProfileEnumeration.
|
|
48
49
|
*/
|
|
49
|
-
motionProfile: UAProperty<
|
|
50
|
+
motionProfile: UAProperty<EnumAxisMotionProfile, /*z*/ DataType.Int32>;
|
|
50
51
|
/**
|
|
51
52
|
* additionalLoad
|
|
52
53
|
* The additional load which is mounted on this
|
|
@@ -5,6 +5,7 @@ import { UAString } from "node-opcua-basic-types";
|
|
|
5
5
|
import { UABaseDataVariable } from "node-opcua-nodeset-ua/source/ua_base_data_variable";
|
|
6
6
|
import { UAFolder } from "node-opcua-nodeset-ua/source/ua_folder";
|
|
7
7
|
import { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/source/ua_component";
|
|
8
|
+
import { EnumMotionDeviceCategory } from "./enum_motion_device_category";
|
|
8
9
|
import { UALoad } from "./ua_load";
|
|
9
10
|
export interface UAMotionDevice_parameterSet extends UAObject {
|
|
10
11
|
/**
|
|
@@ -62,7 +63,7 @@ export interface UAMotionDevice_Base extends UAComponent_Base {
|
|
|
62
63
|
* kind of motion device defined by
|
|
63
64
|
* MotionDeviceCategoryEnumeration based on ISO 8373.
|
|
64
65
|
*/
|
|
65
|
-
motionDeviceCategory: UAProperty<
|
|
66
|
+
motionDeviceCategory: UAProperty<EnumMotionDeviceCategory, /*z*/ DataType.Int32>;
|
|
66
67
|
/**
|
|
67
68
|
* axes
|
|
68
69
|
* Axes is a container for one or more instances of
|
|
@@ -3,6 +3,7 @@ import { DataType } from "node-opcua-variant";
|
|
|
3
3
|
import { UABaseDataVariable } from "node-opcua-nodeset-ua/source/ua_base_data_variable";
|
|
4
4
|
import { UAFolder } from "node-opcua-nodeset-ua/source/ua_folder";
|
|
5
5
|
import { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/source/ua_component";
|
|
6
|
+
import { EnumOperationalMode } from "./enum_operational_mode";
|
|
6
7
|
export interface UASafetyState_parameterSet extends UAObject {
|
|
7
8
|
/**
|
|
8
9
|
* operationalMode
|
|
@@ -12,7 +13,7 @@ export interface UASafetyState_parameterSet extends UAObject {
|
|
|
12
13
|
* OperationalModeEnumeration, see ISO 10218-1:2011
|
|
13
14
|
* Ch.5.7 Operational Modes.
|
|
14
15
|
*/
|
|
15
|
-
operationalMode: UABaseDataVariable<
|
|
16
|
+
operationalMode: UABaseDataVariable<EnumOperationalMode, /*z*/ DataType.Int32>;
|
|
16
17
|
/**
|
|
17
18
|
* emergencyStop
|
|
18
19
|
* The EmergencyStop variable is TRUE if one or more
|
|
@@ -4,6 +4,7 @@ import { LocalizedText } from "node-opcua-data-model";
|
|
|
4
4
|
import { UAString } from "node-opcua-basic-types";
|
|
5
5
|
import { UABaseDataVariable } from "node-opcua-nodeset-ua/source/ua_base_data_variable";
|
|
6
6
|
import { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/source/ua_component";
|
|
7
|
+
import { EnumExecutionMode } from "./enum_execution_mode";
|
|
7
8
|
export interface UATaskControl_parameterSet extends UAObject {
|
|
8
9
|
/**
|
|
9
10
|
* taskProgramName
|
|
@@ -22,7 +23,7 @@ export interface UATaskControl_parameterSet extends UAObject {
|
|
|
22
23
|
* Execution mode of the task control (continuous or
|
|
23
24
|
* step-wise).
|
|
24
25
|
*/
|
|
25
|
-
executionMode?: UABaseDataVariable<
|
|
26
|
+
executionMode?: UABaseDataVariable<EnumExecutionMode, /*z*/ DataType.Int32>;
|
|
26
27
|
}
|
|
27
28
|
/**
|
|
28
29
|
* Represents a specific task control active on the
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-opcua-nodeset-robotics",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.67.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -10,14 +10,14 @@
|
|
|
10
10
|
"author": "etienne.rossignon@sterfive.com",
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"node-opcua-address-space-base": "2.
|
|
14
|
-
"node-opcua-basic-types": "2.
|
|
15
|
-
"node-opcua-data-access": "2.
|
|
16
|
-
"node-opcua-data-model": "2.
|
|
17
|
-
"node-opcua-nodeid": "2.
|
|
18
|
-
"node-opcua-nodeset-di": "2.
|
|
19
|
-
"node-opcua-nodeset-ua": "2.
|
|
20
|
-
"node-opcua-variant": "2.
|
|
13
|
+
"node-opcua-address-space-base": "2.67.0",
|
|
14
|
+
"node-opcua-basic-types": "2.67.0",
|
|
15
|
+
"node-opcua-data-access": "2.67.0",
|
|
16
|
+
"node-opcua-data-model": "2.67.0",
|
|
17
|
+
"node-opcua-nodeid": "2.67.0",
|
|
18
|
+
"node-opcua-nodeset-di": "2.67.0",
|
|
19
|
+
"node-opcua-nodeset-ua": "2.67.0",
|
|
20
|
+
"node-opcua-variant": "2.67.0"
|
|
21
21
|
},
|
|
22
|
-
"gitHead": "
|
|
22
|
+
"gitHead": "74c2fd7d4ce3eb48d25a911258bf90a64218ea0e"
|
|
23
23
|
}
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { UAProperty } from "node-opcua-address-space-base"
|
|
3
|
-
import { DataType
|
|
3
|
+
import { DataType } from "node-opcua-variant"
|
|
4
4
|
import { LocalizedText, QualifiedName } from "node-opcua-data-model"
|
|
5
5
|
import { Int32, UAString } from "node-opcua-basic-types"
|
|
6
6
|
import { DTArgument } from "node-opcua-nodeset-ua/source/dt_argument"
|
|
7
|
+
import { EnumDeviceHealth } from "node-opcua-nodeset-di/source/enum_device_health"
|
|
7
8
|
import { UADevice, UADevice_Base } from "node-opcua-nodeset-di/source/ua_device"
|
|
8
9
|
/**
|
|
9
10
|
* Components mounted in a controller cabinet or a
|
package/source/ua_axis.ts
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { UAObject, UAProperty } from "node-opcua-address-space-base"
|
|
3
|
-
import { DataType
|
|
3
|
+
import { DataType } from "node-opcua-variant"
|
|
4
4
|
import { UAAnalogUnit } from "node-opcua-nodeset-ua/source/ua_analog_unit"
|
|
5
5
|
import { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/source/ua_component"
|
|
6
|
+
import { EnumAxisMotionProfile } from "./enum_axis_motion_profile"
|
|
6
7
|
import { UALoad } from "./ua_load"
|
|
7
8
|
export interface UAAxis_parameterSet extends UAObject { // Object
|
|
8
9
|
/**
|
|
@@ -47,7 +48,7 @@ export interface UAAxis_Base extends UAComponent_Base {
|
|
|
47
48
|
* The kind of axis motion as defined with the
|
|
48
49
|
* AxisMotionProfileEnumeration.
|
|
49
50
|
*/
|
|
50
|
-
motionProfile: UAProperty<
|
|
51
|
+
motionProfile: UAProperty<EnumAxisMotionProfile, /*z*/DataType.Int32>;
|
|
51
52
|
/**
|
|
52
53
|
* additionalLoad
|
|
53
54
|
* The additional load which is mounted on this
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { UAObject, UAProperty } from "node-opcua-address-space-base"
|
|
3
|
-
import { DataType
|
|
3
|
+
import { DataType } from "node-opcua-variant"
|
|
4
4
|
import { LocalizedText } from "node-opcua-data-model"
|
|
5
5
|
import { UAString } from "node-opcua-basic-types"
|
|
6
6
|
import { UABaseDataVariable } from "node-opcua-nodeset-ua/source/ua_base_data_variable"
|
|
7
7
|
import { UAFolder } from "node-opcua-nodeset-ua/source/ua_folder"
|
|
8
8
|
import { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/source/ua_component"
|
|
9
|
+
import { EnumMotionDeviceCategory } from "./enum_motion_device_category"
|
|
9
10
|
import { UALoad } from "./ua_load"
|
|
10
11
|
export interface UAMotionDevice_parameterSet extends UAObject { // Object
|
|
11
12
|
/**
|
|
@@ -63,7 +64,7 @@ export interface UAMotionDevice_Base extends UAComponent_Base {
|
|
|
63
64
|
* kind of motion device defined by
|
|
64
65
|
* MotionDeviceCategoryEnumeration based on ISO 8373.
|
|
65
66
|
*/
|
|
66
|
-
motionDeviceCategory: UAProperty<
|
|
67
|
+
motionDeviceCategory: UAProperty<EnumMotionDeviceCategory, /*z*/DataType.Int32>;
|
|
67
68
|
/**
|
|
68
69
|
* axes
|
|
69
70
|
* Axes is a container for one or more instances of
|
|
@@ -16,6 +16,10 @@ import { DTVector } from "node-opcua-nodeset-ua/source/dt_vector"
|
|
|
16
16
|
import { DTRationalNumber } from "node-opcua-nodeset-ua/source/dt_rational_number"
|
|
17
17
|
import { UAFolder } from "node-opcua-nodeset-ua/source/ua_folder"
|
|
18
18
|
import { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/source/ua_component"
|
|
19
|
+
import { EnumMotionDeviceCategory } from "./enum_motion_device_category"
|
|
20
|
+
import { EnumAxisMotionProfile } from "./enum_axis_motion_profile"
|
|
21
|
+
import { EnumExecutionMode } from "./enum_execution_mode"
|
|
22
|
+
import { EnumOperationalMode } from "./enum_operational_mode"
|
|
19
23
|
/**
|
|
20
24
|
* Contains the set of controllers and motion
|
|
21
25
|
* devices in a closely-coupled motion device system.
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { UAObject } from "node-opcua-address-space-base"
|
|
3
|
-
import { DataType
|
|
3
|
+
import { DataType } from "node-opcua-variant"
|
|
4
4
|
import { UABaseDataVariable } from "node-opcua-nodeset-ua/source/ua_base_data_variable"
|
|
5
5
|
import { UAFolder } from "node-opcua-nodeset-ua/source/ua_folder"
|
|
6
6
|
import { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/source/ua_component"
|
|
7
|
+
import { EnumOperationalMode } from "./enum_operational_mode"
|
|
7
8
|
export interface UASafetyState_parameterSet extends UAObject { // Object
|
|
8
9
|
/**
|
|
9
10
|
* operationalMode
|
|
@@ -13,7 +14,7 @@ export interface UASafetyState_parameterSet extends UAObject { // Object
|
|
|
13
14
|
* OperationalModeEnumeration, see ISO 10218-1:2011
|
|
14
15
|
* Ch.5.7 Operational Modes.
|
|
15
16
|
*/
|
|
16
|
-
operationalMode: UABaseDataVariable<
|
|
17
|
+
operationalMode: UABaseDataVariable<EnumOperationalMode, /*z*/DataType.Int32>;
|
|
17
18
|
/**
|
|
18
19
|
* emergencyStop
|
|
19
20
|
* The EmergencyStop variable is TRUE if one or more
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { UAObject, UAProperty } from "node-opcua-address-space-base"
|
|
3
|
-
import { DataType
|
|
3
|
+
import { DataType } from "node-opcua-variant"
|
|
4
4
|
import { LocalizedText } from "node-opcua-data-model"
|
|
5
5
|
import { UAString } from "node-opcua-basic-types"
|
|
6
6
|
import { UABaseDataVariable } from "node-opcua-nodeset-ua/source/ua_base_data_variable"
|
|
7
7
|
import { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/source/ua_component"
|
|
8
|
+
import { EnumExecutionMode } from "./enum_execution_mode"
|
|
8
9
|
export interface UATaskControl_parameterSet extends UAObject { // Object
|
|
9
10
|
/**
|
|
10
11
|
* taskProgramName
|
|
@@ -23,7 +24,7 @@ export interface UATaskControl_parameterSet extends UAObject { // Object
|
|
|
23
24
|
* Execution mode of the task control (continuous or
|
|
24
25
|
* step-wise).
|
|
25
26
|
*/
|
|
26
|
-
executionMode?: UABaseDataVariable<
|
|
27
|
+
executionMode?: UABaseDataVariable<EnumExecutionMode, /*z*/DataType.Int32>;
|
|
27
28
|
}
|
|
28
29
|
/**
|
|
29
30
|
* Represents a specific task control active on the
|