node-opcua-nodeset-robotics 2.170.1 → 2.173.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_auxiliary_component.d.ts +4 -4
- package/dist/ua_axis.d.ts +7 -7
- package/dist/ua_controller.d.ts +11 -11
- package/dist/ua_drive.d.ts +4 -4
- package/dist/ua_emergency_stop_function.d.ts +4 -4
- package/dist/ua_executing_substate_machine.d.ts +9 -9
- package/dist/ua_gear.d.ts +8 -8
- package/dist/ua_idle_substate_machine.d.ts +9 -9
- package/dist/ua_load.d.ts +7 -7
- package/dist/ua_motion_device.d.ts +10 -10
- package/dist/ua_motion_device_system.d.ts +5 -5
- package/dist/ua_motor.d.ts +7 -7
- package/dist/ua_multi_acknowledgeable_condition.d.ts +4 -4
- package/dist/ua_operation_state_machine.d.ts +11 -11
- package/dist/ua_power_train.d.ts +4 -4
- package/dist/ua_protective_stop_function.d.ts +4 -4
- package/dist/ua_ready_substate_machine.d.ts +9 -9
- package/dist/ua_safety_state.d.ts +7 -7
- package/dist/ua_system_operation.d.ts +5 -5
- package/dist/ua_system_operation_state_machine.d.ts +13 -13
- package/dist/ua_task_control.d.ts +9 -9
- package/dist/ua_task_control_operation.d.ts +5 -5
- package/dist/ua_task_control_state_machine.d.ts +12 -12
- package/dist/ua_task_module.d.ts +3 -3
- package/dist/ua_user.d.ts +3 -3
- package/package.json +11 -11
- package/source/index.ts +1 -1
- package/source/ua_auxiliary_component.ts +7 -6
- package/source/ua_axis.ts +11 -9
- package/source/ua_controller.ts +15 -13
- package/source/ua_drive.ts +7 -6
- package/source/ua_emergency_stop_function.ts +7 -6
- package/source/ua_executing_substate_machine.ts +12 -11
- package/source/ua_gear.ts +11 -10
- package/source/ua_idle_substate_machine.ts +12 -11
- package/source/ua_load.ts +10 -9
- package/source/ua_motion_device.ts +14 -12
- package/source/ua_motion_device_system.ts +7 -7
- package/source/ua_motor.ts +10 -9
- package/source/ua_multi_acknowledgeable_condition.ts +7 -6
- package/source/ua_operation_state_machine.ts +14 -13
- package/source/ua_power_train.ts +7 -6
- package/source/ua_protective_stop_function.ts +7 -6
- package/source/ua_ready_substate_machine.ts +12 -11
- package/source/ua_safety_state.ts +11 -9
- package/source/ua_system_operation.ts +9 -7
- package/source/ua_system_operation_state_machine.ts +17 -15
- package/source/ua_task_control.ts +13 -11
- package/source/ua_task_control_operation.ts +9 -7
- package/source/ua_task_control_state_machine.ts +16 -14
- package/source/ua_task_module.ts +6 -5
- package/source/ua_user.ts +6 -5
|
@@ -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 { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/dist/ua_component";
|
|
4
|
+
import type { DataType } from "node-opcua-variant";
|
|
5
5
|
/**
|
|
6
6
|
* Components mounted in a controller cabinet or a
|
|
7
7
|
* motion device e.g. an IO-board or a power supply.
|
package/dist/ua_axis.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { UAObject, UAProperty } from "node-opcua-address-space-base";
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import { UAAnalogUnit } from "node-opcua-nodeset-ua/dist/ua_analog_unit";
|
|
5
|
-
import {
|
|
6
|
-
import { EnumAxisMotionProfile } from "./enum_axis_motion_profile";
|
|
7
|
-
import { UALoad } from "./ua_load";
|
|
1
|
+
import type { UAObject, UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { UAString } from "node-opcua-basic-types";
|
|
3
|
+
import type { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/dist/ua_component";
|
|
4
|
+
import type { UAAnalogUnit } from "node-opcua-nodeset-ua/dist/ua_analog_unit";
|
|
5
|
+
import type { DataType } from "node-opcua-variant";
|
|
6
|
+
import type { EnumAxisMotionProfile } from "./enum_axis_motion_profile";
|
|
7
|
+
import type { UALoad } from "./ua_load";
|
|
8
8
|
export interface UAAxis_parameterSet extends UAObject {
|
|
9
9
|
/**
|
|
10
10
|
* actualAcceleration
|
package/dist/ua_controller.d.ts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { UAObject, UAProperty } from "node-opcua-address-space-base";
|
|
2
|
-
import {
|
|
3
|
-
import { LocalizedText } from "node-opcua-data-model";
|
|
4
|
-
import {
|
|
5
|
-
import { UAAnalogUnit } from "node-opcua-nodeset-ua/dist/ua_analog_unit";
|
|
6
|
-
import { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
1
|
+
import type { UAObject, UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { UAString } from "node-opcua-basic-types";
|
|
3
|
+
import type { LocalizedText } from "node-opcua-data-model";
|
|
4
|
+
import type { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/dist/ua_component";
|
|
5
|
+
import type { UAAnalogUnit } from "node-opcua-nodeset-ua/dist/ua_analog_unit";
|
|
6
|
+
import type { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
|
|
7
|
+
import type { UAFileDirectory } from "node-opcua-nodeset-ua/dist/ua_file_directory";
|
|
8
|
+
import type { UAFolder } from "node-opcua-nodeset-ua/dist/ua_folder";
|
|
9
|
+
import type { DataType } from "node-opcua-variant";
|
|
10
|
+
import type { UASystemOperation } from "./ua_system_operation";
|
|
11
|
+
import type { UAUser } from "./ua_user";
|
|
12
12
|
export interface UAController_parameterSet extends UAObject {
|
|
13
13
|
/**
|
|
14
14
|
* cabinetFanSpeed
|
package/dist/ua_drive.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 { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/dist/ua_component";
|
|
4
|
+
import type { DataType } from "node-opcua-variant";
|
|
5
5
|
/**
|
|
6
6
|
* Drives (multi-slot or single-slot axis amplifier)
|
|
7
7
|
* mounted in a controller cabinet or a motion
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { UAObject, UAProperty } from "node-opcua-address-space-base";
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
1
|
+
import type { UAObject, UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { UAString } from "node-opcua-basic-types";
|
|
3
|
+
import type { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
|
|
4
|
+
import type { DataType } from "node-opcua-variant";
|
|
5
5
|
/**
|
|
6
6
|
* According to ISO 10218-1:2011 Ch.5.5.2 Emergency
|
|
7
7
|
* stop the robot shall have one or more emergency
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { LocalizedText } from "node-opcua-data-model";
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
1
|
+
import type { Int16 } from "node-opcua-basic-types";
|
|
2
|
+
import type { LocalizedText } from "node-opcua-data-model";
|
|
3
|
+
import type { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/dist/ua_finite_state_machine";
|
|
4
|
+
import type { UAInitialState } from "node-opcua-nodeset-ua/dist/ua_initial_state";
|
|
5
|
+
import type { UAMultiStateValueDiscrete } from "node-opcua-nodeset-ua/dist/ua_multi_state_value_discrete";
|
|
6
|
+
import type { UAState } from "node-opcua-nodeset-ua/dist/ua_state";
|
|
7
|
+
import type { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition";
|
|
8
|
+
import type { UATransitionVariable } from "node-opcua-nodeset-ua/dist/ua_transition_variable";
|
|
9
|
+
import type { DataType } from "node-opcua-variant";
|
|
10
10
|
/**
|
|
11
11
|
* | | |
|
|
12
12
|
* |----------------|------------------------------------------------------------|
|
package/dist/ua_gear.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
-
import {
|
|
3
|
-
import { LocalizedText } from "node-opcua-data-model";
|
|
4
|
-
import {
|
|
5
|
-
import { DTRationalNumber } from "node-opcua-nodeset-ua/dist/dt_rational_number";
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
1
|
+
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { UAString } from "node-opcua-basic-types";
|
|
3
|
+
import type { LocalizedText } from "node-opcua-data-model";
|
|
4
|
+
import type { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/dist/ua_component";
|
|
5
|
+
import type { DTRationalNumber } from "node-opcua-nodeset-ua/dist/dt_rational_number";
|
|
6
|
+
import type { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
|
|
7
|
+
import type { UARationalNumber } from "node-opcua-nodeset-ua/dist/ua_rational_number";
|
|
8
|
+
import type { DataType } from "node-opcua-variant";
|
|
9
9
|
/**
|
|
10
10
|
* The GearType describes a gear in a powertrain,
|
|
11
11
|
* e.g. a gear box or a spindle.
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { LocalizedText } from "node-opcua-data-model";
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
1
|
+
import type { Int16 } from "node-opcua-basic-types";
|
|
2
|
+
import type { LocalizedText } from "node-opcua-data-model";
|
|
3
|
+
import type { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/dist/ua_finite_state_machine";
|
|
4
|
+
import type { UAInitialState } from "node-opcua-nodeset-ua/dist/ua_initial_state";
|
|
5
|
+
import type { UAMultiStateValueDiscrete } from "node-opcua-nodeset-ua/dist/ua_multi_state_value_discrete";
|
|
6
|
+
import type { UAState } from "node-opcua-nodeset-ua/dist/ua_state";
|
|
7
|
+
import type { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition";
|
|
8
|
+
import type { UATransitionVariable } from "node-opcua-nodeset-ua/dist/ua_transition_variable";
|
|
9
|
+
import type { DataType } from "node-opcua-variant";
|
|
10
10
|
/**
|
|
11
11
|
* | | |
|
|
12
12
|
* |----------------|------------------------------------------------------------|
|
package/dist/ua_load.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { UAObject } from "node-opcua-address-space-base";
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import { UA3DFrame } from "node-opcua-nodeset-ua/dist/ua_3_d_frame";
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
1
|
+
import type { UAObject } from "node-opcua-address-space-base";
|
|
2
|
+
import type { DT3DFrame } from "node-opcua-nodeset-ua/dist/dt_3_d_frame";
|
|
3
|
+
import type { DT3DVector } from "node-opcua-nodeset-ua/dist/dt_3_d_vector";
|
|
4
|
+
import type { UA3DFrame } from "node-opcua-nodeset-ua/dist/ua_3_d_frame";
|
|
5
|
+
import type { UA3DVector } from "node-opcua-nodeset-ua/dist/ua_3_d_vector";
|
|
6
|
+
import type { UAAnalogUnit } from "node-opcua-nodeset-ua/dist/ua_analog_unit";
|
|
7
|
+
import type { DataType } from "node-opcua-variant";
|
|
8
8
|
/**
|
|
9
9
|
* The LoadType is for describing loads mounted on
|
|
10
10
|
* the motion device typically by an integrator or a
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { UAObject, UAProperty } from "node-opcua-address-space-base";
|
|
2
|
-
import {
|
|
3
|
-
import { LocalizedText } from "node-opcua-data-model";
|
|
4
|
-
import { NodeId } from "node-opcua-nodeid";
|
|
5
|
-
import {
|
|
6
|
-
import { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
|
|
7
|
-
import { UAFolder } from "node-opcua-nodeset-ua/dist/ua_folder";
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
1
|
+
import type { UAObject, UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { UAString } from "node-opcua-basic-types";
|
|
3
|
+
import type { LocalizedText } from "node-opcua-data-model";
|
|
4
|
+
import type { NodeId } from "node-opcua-nodeid";
|
|
5
|
+
import type { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/dist/ua_component";
|
|
6
|
+
import type { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
|
|
7
|
+
import type { UAFolder } from "node-opcua-nodeset-ua/dist/ua_folder";
|
|
8
|
+
import type { DataType } from "node-opcua-variant";
|
|
9
|
+
import type { EnumMotionDeviceCategory } from "./enum_motion_device_category";
|
|
10
|
+
import type { UALoad } from "./ua_load";
|
|
11
11
|
export interface UAMotionDevice_parameterSet extends UAObject {
|
|
12
12
|
/**
|
|
13
13
|
* inControl
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import { UAFolder } from "node-opcua-nodeset-ua/dist/ua_folder";
|
|
5
|
-
import {
|
|
1
|
+
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { LocalizedText } from "node-opcua-data-model";
|
|
3
|
+
import type { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/dist/ua_component";
|
|
4
|
+
import type { UAFolder } from "node-opcua-nodeset-ua/dist/ua_folder";
|
|
5
|
+
import type { DataType } from "node-opcua-variant";
|
|
6
6
|
/**
|
|
7
7
|
* Contains the set of controllers and motion
|
|
8
8
|
* devices in a closely-coupled motion device system.
|
package/dist/ua_motor.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { UAObject, UAProperty } from "node-opcua-address-space-base";
|
|
2
|
-
import {
|
|
3
|
-
import { LocalizedText } from "node-opcua-data-model";
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
1
|
+
import type { UAObject, UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { UAString, UInt16 } from "node-opcua-basic-types";
|
|
3
|
+
import type { LocalizedText } from "node-opcua-data-model";
|
|
4
|
+
import type { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/dist/ua_component";
|
|
5
|
+
import type { UAAnalogUnit } from "node-opcua-nodeset-ua/dist/ua_analog_unit";
|
|
6
|
+
import type { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
|
|
7
|
+
import type { DataType } from "node-opcua-variant";
|
|
8
8
|
export interface UAMotor_parameterSet extends UAObject {
|
|
9
9
|
/**
|
|
10
10
|
* brakeReleased
|
|
@@ -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 { LocalizedText } from "node-opcua-data-model";
|
|
3
|
+
import type { UAAcknowledgeableCondition, UAAcknowledgeableCondition_Base } from "node-opcua-nodeset-ua/dist/ua_acknowledgeable_condition";
|
|
4
|
+
import type { DataType } from "node-opcua-variant";
|
|
5
5
|
/**
|
|
6
6
|
* | | |
|
|
7
7
|
* |----------------|------------------------------------------------------------|
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { UAMethod } from "node-opcua-address-space-base";
|
|
2
|
-
import {
|
|
3
|
-
import { LocalizedText } from "node-opcua-data-model";
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/dist/ua_finite_state_machine";
|
|
7
|
-
import {
|
|
8
|
-
import { UAState } from "node-opcua-nodeset-ua/dist/ua_state";
|
|
9
|
-
import { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition";
|
|
10
|
-
import { UATransitionVariable } from "node-opcua-nodeset-ua/dist/ua_transition_variable";
|
|
11
|
-
import {
|
|
1
|
+
import type { UAMethod } from "node-opcua-address-space-base";
|
|
2
|
+
import type { Int16 } from "node-opcua-basic-types";
|
|
3
|
+
import type { LocalizedText } from "node-opcua-data-model";
|
|
4
|
+
import type { DTEnumValue } from "node-opcua-nodeset-ua/dist/dt_enum_value";
|
|
5
|
+
import type { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
|
|
6
|
+
import type { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/dist/ua_finite_state_machine";
|
|
7
|
+
import type { UAMultiStateValueDiscrete } from "node-opcua-nodeset-ua/dist/ua_multi_state_value_discrete";
|
|
8
|
+
import type { UAState } from "node-opcua-nodeset-ua/dist/ua_state";
|
|
9
|
+
import type { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition";
|
|
10
|
+
import type { UATransitionVariable } from "node-opcua-nodeset-ua/dist/ua_transition_variable";
|
|
11
|
+
import type { DataType } from "node-opcua-variant";
|
|
12
12
|
/**
|
|
13
13
|
* | | |
|
|
14
14
|
* |----------------|------------------------------------------------------------|
|
package/dist/ua_power_train.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 { LocalizedText } from "node-opcua-data-model";
|
|
3
|
+
import type { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/dist/ua_component";
|
|
4
|
+
import type { DataType } from "node-opcua-variant";
|
|
5
5
|
/**
|
|
6
6
|
* The PowerTrainType represents instances of
|
|
7
7
|
* powertrains of a motion device.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { UAObject, UAProperty } from "node-opcua-address-space-base";
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
1
|
+
import type { UAObject, UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { UAString } from "node-opcua-basic-types";
|
|
3
|
+
import type { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
|
|
4
|
+
import type { DataType } from "node-opcua-variant";
|
|
5
5
|
/**
|
|
6
6
|
* According to ISO 10218-1:2011 Ch.5.5.3 the robot
|
|
7
7
|
* shall have one or more protective stop functions
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { UAMethod } from "node-opcua-address-space-base";
|
|
2
|
-
import {
|
|
3
|
-
import { LocalizedText } from "node-opcua-data-model";
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import { UAState } from "node-opcua-nodeset-ua/dist/ua_state";
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
1
|
+
import type { UAMethod } from "node-opcua-address-space-base";
|
|
2
|
+
import type { Int16 } from "node-opcua-basic-types";
|
|
3
|
+
import type { LocalizedText } from "node-opcua-data-model";
|
|
4
|
+
import type { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/dist/ua_finite_state_machine";
|
|
5
|
+
import type { UAMultiStateValueDiscrete } from "node-opcua-nodeset-ua/dist/ua_multi_state_value_discrete";
|
|
6
|
+
import type { UAState } from "node-opcua-nodeset-ua/dist/ua_state";
|
|
7
|
+
import type { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition";
|
|
8
|
+
import type { UATransitionVariable } from "node-opcua-nodeset-ua/dist/ua_transition_variable";
|
|
9
|
+
import type { DataType } from "node-opcua-variant";
|
|
10
10
|
/**
|
|
11
11
|
* | | |
|
|
12
12
|
* |----------------|------------------------------------------------------------|
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { UAObject, UAProperty } from "node-opcua-address-space-base";
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
|
|
5
|
-
import { UAFolder } from "node-opcua-nodeset-ua/dist/ua_folder";
|
|
6
|
-
import {
|
|
7
|
-
import { EnumOperationalMode } from "./enum_operational_mode";
|
|
1
|
+
import type { UAObject, UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { LocalizedText } from "node-opcua-data-model";
|
|
3
|
+
import type { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/dist/ua_component";
|
|
4
|
+
import type { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
|
|
5
|
+
import type { UAFolder } from "node-opcua-nodeset-ua/dist/ua_folder";
|
|
6
|
+
import type { DataType } from "node-opcua-variant";
|
|
7
|
+
import type { EnumOperationalMode } from "./enum_operational_mode";
|
|
8
8
|
export interface UASafetyState_parameterSet extends UAObject {
|
|
9
9
|
/**
|
|
10
10
|
* emergencyStop
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { UAObject, UAProperty } from "node-opcua-address-space-base";
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import { UASystemOperationStateMachine } from "./ua_system_operation_state_machine";
|
|
1
|
+
import type { UAObject, UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { QualifiedName } from "node-opcua-data-model";
|
|
3
|
+
import type { UAFolder } from "node-opcua-nodeset-ua/dist/ua_folder";
|
|
4
|
+
import type { DataType } from "node-opcua-variant";
|
|
5
|
+
import type { UASystemOperationStateMachine } from "./ua_system_operation_state_machine";
|
|
6
6
|
/**
|
|
7
7
|
* | | |
|
|
8
8
|
* |----------------|------------------------------------------------------------|
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { UAMethod } from "node-opcua-address-space-base";
|
|
2
|
-
import {
|
|
3
|
-
import { LocalizedText } from "node-opcua-data-model";
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import { UAState } from "node-opcua-nodeset-ua/dist/ua_state";
|
|
8
|
-
import { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition";
|
|
9
|
-
import { UATransitionVariable } from "node-opcua-nodeset-ua/dist/ua_transition_variable";
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
1
|
+
import type { UAMethod } from "node-opcua-address-space-base";
|
|
2
|
+
import type { Int16 } from "node-opcua-basic-types";
|
|
3
|
+
import type { LocalizedText } from "node-opcua-data-model";
|
|
4
|
+
import type { DTEnumValue } from "node-opcua-nodeset-ua/dist/dt_enum_value";
|
|
5
|
+
import type { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
|
|
6
|
+
import type { UAMultiStateValueDiscrete } from "node-opcua-nodeset-ua/dist/ua_multi_state_value_discrete";
|
|
7
|
+
import type { UAState } from "node-opcua-nodeset-ua/dist/ua_state";
|
|
8
|
+
import type { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition";
|
|
9
|
+
import type { UATransitionVariable } from "node-opcua-nodeset-ua/dist/ua_transition_variable";
|
|
10
|
+
import type { DataType } from "node-opcua-variant";
|
|
11
|
+
import type { UAExecutingSubstateMachine } from "./ua_executing_substate_machine";
|
|
12
|
+
import type { UAIdleSubstateMachine } from "./ua_idle_substate_machine";
|
|
13
|
+
import type { UAOperationStateMachine, UAOperationStateMachine_Base } from "./ua_operation_state_machine";
|
|
14
14
|
/**
|
|
15
15
|
* | | |
|
|
16
16
|
* |----------------|------------------------------------------------------------|
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { UAObject, UAProperty } from "node-opcua-address-space-base";
|
|
2
|
-
import {
|
|
3
|
-
import { LocalizedText } from "node-opcua-data-model";
|
|
4
|
-
import {
|
|
5
|
-
import { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
|
|
6
|
-
import { UAFolder } from "node-opcua-nodeset-ua/dist/ua_folder";
|
|
7
|
-
import {
|
|
8
|
-
import { EnumExecutionMode } from "./enum_execution_mode";
|
|
9
|
-
import { UATaskControlOperation } from "./ua_task_control_operation";
|
|
1
|
+
import type { UAObject, UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { UAString } from "node-opcua-basic-types";
|
|
3
|
+
import type { LocalizedText } from "node-opcua-data-model";
|
|
4
|
+
import type { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/dist/ua_component";
|
|
5
|
+
import type { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
|
|
6
|
+
import type { UAFolder } from "node-opcua-nodeset-ua/dist/ua_folder";
|
|
7
|
+
import type { DataType } from "node-opcua-variant";
|
|
8
|
+
import type { EnumExecutionMode } from "./enum_execution_mode";
|
|
9
|
+
import type { UATaskControlOperation } from "./ua_task_control_operation";
|
|
10
10
|
export interface UATaskControl_parameterSet extends UAObject {
|
|
11
11
|
/**
|
|
12
12
|
* executionMode
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { UAObject, UAProperty } from "node-opcua-address-space-base";
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import { UATaskControlStateMachine } from "./ua_task_control_state_machine";
|
|
1
|
+
import type { UAObject, UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { QualifiedName } from "node-opcua-data-model";
|
|
3
|
+
import type { NodeId } from "node-opcua-nodeid";
|
|
4
|
+
import type { DataType } from "node-opcua-variant";
|
|
5
|
+
import type { UATaskControlStateMachine } from "./ua_task_control_state_machine";
|
|
6
6
|
/**
|
|
7
7
|
* | | |
|
|
8
8
|
* |----------------|------------------------------------------------------------|
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { UAMethod } from "node-opcua-address-space-base";
|
|
2
|
-
import {
|
|
3
|
-
import { LocalizedText } from "node-opcua-data-model";
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import { UAState } from "node-opcua-nodeset-ua/dist/ua_state";
|
|
8
|
-
import { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition";
|
|
9
|
-
import { UATransitionVariable } from "node-opcua-nodeset-ua/dist/ua_transition_variable";
|
|
10
|
-
import {
|
|
11
|
-
import { UAOperationStateMachine, UAOperationStateMachine_Base } from "./ua_operation_state_machine";
|
|
12
|
-
import { UAReadySubstateMachine } from "./ua_ready_substate_machine";
|
|
1
|
+
import type { UAMethod } from "node-opcua-address-space-base";
|
|
2
|
+
import type { Int16 } from "node-opcua-basic-types";
|
|
3
|
+
import type { LocalizedText } from "node-opcua-data-model";
|
|
4
|
+
import type { DTEnumValue } from "node-opcua-nodeset-ua/dist/dt_enum_value";
|
|
5
|
+
import type { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable";
|
|
6
|
+
import type { UAMultiStateValueDiscrete } from "node-opcua-nodeset-ua/dist/ua_multi_state_value_discrete";
|
|
7
|
+
import type { UAState } from "node-opcua-nodeset-ua/dist/ua_state";
|
|
8
|
+
import type { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition";
|
|
9
|
+
import type { UATransitionVariable } from "node-opcua-nodeset-ua/dist/ua_transition_variable";
|
|
10
|
+
import type { DataType } from "node-opcua-variant";
|
|
11
|
+
import type { UAOperationStateMachine, UAOperationStateMachine_Base } from "./ua_operation_state_machine";
|
|
12
|
+
import type { UAReadySubstateMachine } from "./ua_ready_substate_machine";
|
|
13
13
|
/**
|
|
14
14
|
* | | |
|
|
15
15
|
* |----------------|------------------------------------------------------------|
|
package/dist/ua_task_module.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { UAObject, UAProperty } from "node-opcua-address-space-base";
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
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
4
|
/**
|
|
5
5
|
* | | |
|
|
6
6
|
* |----------------|------------------------------------------------------------|
|
package/dist/ua_user.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { UAObject, UAProperty } from "node-opcua-address-space-base";
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
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
4
|
/**
|
|
5
5
|
* The UserType ObjectType describes information of
|
|
6
6
|
* the registered user groups within the control
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-opcua-nodeset-robotics",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.173.0",
|
|
4
4
|
"description": "pure nodejs OPCUA SDK - module node-opcua-nodeset-robotics",
|
|
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-nodeid": "2.
|
|
19
|
-
"node-opcua-nodeset-di": "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.173.0",
|
|
15
|
+
"node-opcua-basic-types": "2.173.0",
|
|
16
|
+
"node-opcua-data-access": "2.173.0",
|
|
17
|
+
"node-opcua-data-model": "2.173.0",
|
|
18
|
+
"node-opcua-nodeid": "2.173.0",
|
|
19
|
+
"node-opcua-nodeset-di": "2.173.0",
|
|
20
|
+
"node-opcua-nodeset-ua": "2.173.0",
|
|
21
|
+
"node-opcua-status-code": "2.173.0",
|
|
22
|
+
"node-opcua-variant": "2.173.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": "4aa6634e2e1e14e223fa46a632438295be12744c"
|
|
42
42
|
}
|
package/source/index.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 { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/dist/ua_component";
|
|
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 { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/dist/ua_component"
|
|
7
|
+
|
|
6
8
|
/**
|
|
7
9
|
* Components mounted in a controller cabinet or a
|
|
8
10
|
* motion device e.g. an IO-board or a power supply.
|
|
@@ -26,5 +28,4 @@ export interface UAAuxiliaryComponent_Base extends UAComponent_Base {
|
|
|
26
28
|
*/
|
|
27
29
|
productCode: UAProperty<UAString, DataType.String>;
|
|
28
30
|
}
|
|
29
|
-
export interface UAAuxiliaryComponent extends Omit<UAComponent, "assetId"|"productCode">, UAAuxiliaryComponent_Base {
|
|
30
|
-
}
|
|
31
|
+
export interface UAAuxiliaryComponent extends Omit<UAComponent, "assetId"|"productCode">, UAAuxiliaryComponent_Base {}
|
package/source/ua_axis.ts
CHANGED
|
@@ -1,11 +1,14 @@
|
|
|
1
|
+
import type { UAObject, UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { UAString } from "node-opcua-basic-types";
|
|
3
|
+
import type { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/dist/ua_component";
|
|
4
|
+
import type { UAAnalogUnit } from "node-opcua-nodeset-ua/dist/ua_analog_unit";
|
|
5
|
+
import type { DataType } from "node-opcua-variant";
|
|
6
|
+
|
|
7
|
+
import type { EnumAxisMotionProfile } from "./enum_axis_motion_profile";
|
|
8
|
+
import type { UALoad } from "./ua_load";
|
|
9
|
+
|
|
1
10
|
// ----- 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 { UAAnalogUnit } from "node-opcua-nodeset-ua/dist/ua_analog_unit"
|
|
6
|
-
import { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/dist/ua_component"
|
|
7
|
-
import { EnumAxisMotionProfile } from "./enum_axis_motion_profile"
|
|
8
|
-
import { UALoad } from "./ua_load"
|
|
11
|
+
|
|
9
12
|
export interface UAAxis_parameterSet extends UAObject { // Object
|
|
10
13
|
/**
|
|
11
14
|
* actualAcceleration
|
|
@@ -59,5 +62,4 @@ export interface UAAxis_Base extends UAComponent_Base {
|
|
|
59
62
|
*/
|
|
60
63
|
parameterSet: UAAxis_parameterSet;
|
|
61
64
|
}
|
|
62
|
-
export interface UAAxis extends Omit<UAComponent, "assetId"|"parameterSet">, UAAxis_Base {
|
|
63
|
-
}
|
|
65
|
+
export interface UAAxis extends Omit<UAComponent, "assetId"|"parameterSet">, UAAxis_Base {}
|