node-opcua-nodeset-robotics 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.
Files changed (52) hide show
  1. package/dist/ua_auxiliary_component.d.ts +4 -4
  2. package/dist/ua_axis.d.ts +7 -7
  3. package/dist/ua_controller.d.ts +11 -11
  4. package/dist/ua_drive.d.ts +4 -4
  5. package/dist/ua_emergency_stop_function.d.ts +4 -4
  6. package/dist/ua_executing_substate_machine.d.ts +9 -9
  7. package/dist/ua_gear.d.ts +8 -8
  8. package/dist/ua_idle_substate_machine.d.ts +9 -9
  9. package/dist/ua_load.d.ts +7 -7
  10. package/dist/ua_motion_device.d.ts +10 -10
  11. package/dist/ua_motion_device_system.d.ts +5 -5
  12. package/dist/ua_motor.d.ts +7 -7
  13. package/dist/ua_multi_acknowledgeable_condition.d.ts +4 -4
  14. package/dist/ua_operation_state_machine.d.ts +11 -11
  15. package/dist/ua_power_train.d.ts +4 -4
  16. package/dist/ua_protective_stop_function.d.ts +4 -4
  17. package/dist/ua_ready_substate_machine.d.ts +9 -9
  18. package/dist/ua_safety_state.d.ts +7 -7
  19. package/dist/ua_system_operation.d.ts +5 -5
  20. package/dist/ua_system_operation_state_machine.d.ts +13 -13
  21. package/dist/ua_task_control.d.ts +9 -9
  22. package/dist/ua_task_control_operation.d.ts +5 -5
  23. package/dist/ua_task_control_state_machine.d.ts +12 -12
  24. package/dist/ua_task_module.d.ts +3 -3
  25. package/dist/ua_user.d.ts +3 -3
  26. package/package.json +11 -11
  27. package/source/index.ts +1 -1
  28. package/source/ua_auxiliary_component.ts +7 -6
  29. package/source/ua_axis.ts +11 -9
  30. package/source/ua_controller.ts +15 -13
  31. package/source/ua_drive.ts +7 -6
  32. package/source/ua_emergency_stop_function.ts +7 -6
  33. package/source/ua_executing_substate_machine.ts +12 -11
  34. package/source/ua_gear.ts +11 -10
  35. package/source/ua_idle_substate_machine.ts +12 -11
  36. package/source/ua_load.ts +10 -9
  37. package/source/ua_motion_device.ts +14 -12
  38. package/source/ua_motion_device_system.ts +7 -7
  39. package/source/ua_motor.ts +10 -9
  40. package/source/ua_multi_acknowledgeable_condition.ts +7 -6
  41. package/source/ua_operation_state_machine.ts +14 -13
  42. package/source/ua_power_train.ts +7 -6
  43. package/source/ua_protective_stop_function.ts +7 -6
  44. package/source/ua_ready_substate_machine.ts +12 -11
  45. package/source/ua_safety_state.ts +11 -9
  46. package/source/ua_system_operation.ts +9 -7
  47. package/source/ua_system_operation_state_machine.ts +17 -15
  48. package/source/ua_task_control.ts +13 -11
  49. package/source/ua_task_control_operation.ts +9 -7
  50. package/source/ua_task_control_state_machine.ts +16 -14
  51. package/source/ua_task_module.ts +6 -5
  52. package/source/ua_user.ts +6 -5
@@ -1,15 +1,18 @@
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
+
11
+ import type { UASystemOperation } from "./ua_system_operation";
12
+ import type { UAUser } from "./ua_user";
13
+
1
14
  // ----- this file has been automatically generated - do not edit
2
- import { UAObject, UAProperty } from "node-opcua-address-space-base"
3
- import { DataType } from "node-opcua-variant"
4
- import { LocalizedText } from "node-opcua-data-model"
5
- import { UAString } from "node-opcua-basic-types"
6
- import { UAAnalogUnit } from "node-opcua-nodeset-ua/dist/ua_analog_unit"
7
- import { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable"
8
- import { UAFolder } from "node-opcua-nodeset-ua/dist/ua_folder"
9
- import { UAFileDirectory } from "node-opcua-nodeset-ua/dist/ua_file_directory"
10
- import { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/dist/ua_component"
11
- import { UAUser } from "./ua_user"
12
- import { UASystemOperation } from "./ua_system_operation"
15
+
13
16
  export interface UAController_parameterSet extends UAObject { // Object
14
17
  /**
15
18
  * cabinetFanSpeed
@@ -116,5 +119,4 @@ export interface UAController_Base extends UAComponent_Base {
116
119
  */
117
120
  taskControls: UAFolder;
118
121
  }
119
- export interface UAController extends Omit<UAComponent, "assetId"|"componentName"|"deviceManual"|"manufacturer"|"model"|"parameterSet"|"productCode"|"serialNumber">, UAController_Base {
120
- }
122
+ export interface UAController extends Omit<UAComponent, "assetId"|"componentName"|"deviceManual"|"manufacturer"|"model"|"parameterSet"|"productCode"|"serialNumber">, UAController_Base {}
@@ -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
- import { UAProperty } from "node-opcua-address-space-base"
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
  * Drives (multi-slot or single-slot axis amplifier)
8
10
  * mounted in a controller cabinet or a motion
@@ -27,5 +29,4 @@ export interface UADrive_Base extends UAComponent_Base {
27
29
  */
28
30
  productCode: UAProperty<UAString, DataType.String>;
29
31
  }
30
- export interface UADrive extends Omit<UAComponent, "assetId"|"productCode">, UADrive_Base {
31
- }
32
+ export interface UADrive extends Omit<UAComponent, "assetId"|"productCode">, UADrive_Base {}
@@ -1,8 +1,10 @@
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
+
1
6
  // ----- this file has been automatically generated - do not edit
2
- import { UAObject, UAProperty } from "node-opcua-address-space-base"
3
- import { DataType } from "node-opcua-variant"
4
- import { UAString } from "node-opcua-basic-types"
5
- import { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable"
7
+
6
8
  /**
7
9
  * According to ISO 10218-1:2011 Ch.5.5.2 Emergency
8
10
  * stop the robot shall have one or more emergency
@@ -31,5 +33,4 @@ export interface UAEmergencyStopFunction_Base {
31
33
  */
32
34
  name: UAProperty<UAString, DataType.String>;
33
35
  }
34
- export interface UAEmergencyStopFunction extends UAObject, UAEmergencyStopFunction_Base {
35
- }
36
+ export interface UAEmergencyStopFunction extends UAObject, UAEmergencyStopFunction_Base {}
@@ -1,13 +1,15 @@
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
+
1
11
  // ----- this file has been automatically generated - do not edit
2
- import { DataType } from "node-opcua-variant"
3
- import { LocalizedText } from "node-opcua-data-model"
4
- import { Int16 } from "node-opcua-basic-types"
5
- import { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/dist/ua_finite_state_machine"
6
- import { UATransitionVariable } from "node-opcua-nodeset-ua/dist/ua_transition_variable"
7
- import { UAMultiStateValueDiscrete } from "node-opcua-nodeset-ua/dist/ua_multi_state_value_discrete"
8
- import { UAInitialState } from "node-opcua-nodeset-ua/dist/ua_initial_state"
9
- import { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition"
10
- import { UAState } from "node-opcua-nodeset-ua/dist/ua_state"
12
+
11
13
  /**
12
14
  * | | |
13
15
  * |----------------|------------------------------------------------------------|
@@ -23,5 +25,4 @@ export interface UAExecutingSubstateMachine_Base extends UAFiniteStateMachine_Ba
23
25
  runningToStopping: UATransition;
24
26
  stopping: UAState;
25
27
  }
26
- export interface UAExecutingSubstateMachine extends Omit<UAFiniteStateMachine, "lastTransition">, UAExecutingSubstateMachine_Base {
27
- }
28
+ export interface UAExecutingSubstateMachine extends Omit<UAFiniteStateMachine, "lastTransition">, UAExecutingSubstateMachine_Base {}
package/source/ua_gear.ts CHANGED
@@ -1,12 +1,14 @@
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
+
1
10
  // ----- this file has been automatically generated - do not edit
2
- import { UAProperty } from "node-opcua-address-space-base"
3
- import { DataType } from "node-opcua-variant"
4
- import { LocalizedText } from "node-opcua-data-model"
5
- import { UAString } from "node-opcua-basic-types"
6
- import { DTRationalNumber } from "node-opcua-nodeset-ua/dist/dt_rational_number"
7
- import { UARationalNumber } from "node-opcua-nodeset-ua/dist/ua_rational_number"
8
- import { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable"
9
- import { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/dist/ua_component"
11
+
10
12
  /**
11
13
  * The GearType describes a gear in a powertrain,
12
14
  * e.g. a gear box or a spindle.
@@ -42,5 +44,4 @@ export interface UAGear_Base extends UAComponent_Base {
42
44
  productCode: UAProperty<UAString, DataType.String>;
43
45
  serialNumber: UAProperty<UAString, DataType.String>;
44
46
  }
45
- export interface UAGear extends Omit<UAComponent, "assetId"|"manufacturer"|"model"|"productCode"|"serialNumber">, UAGear_Base {
46
- }
47
+ export interface UAGear extends Omit<UAComponent, "assetId"|"manufacturer"|"model"|"productCode"|"serialNumber">, UAGear_Base {}
@@ -1,13 +1,15 @@
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
+
1
11
  // ----- this file has been automatically generated - do not edit
2
- import { DataType } from "node-opcua-variant"
3
- import { LocalizedText } from "node-opcua-data-model"
4
- import { Int16 } from "node-opcua-basic-types"
5
- import { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/dist/ua_finite_state_machine"
6
- import { UAState } from "node-opcua-nodeset-ua/dist/ua_state"
7
- import { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition"
8
- import { UATransitionVariable } from "node-opcua-nodeset-ua/dist/ua_transition_variable"
9
- import { UAMultiStateValueDiscrete } from "node-opcua-nodeset-ua/dist/ua_multi_state_value_discrete"
10
- import { UAInitialState } from "node-opcua-nodeset-ua/dist/ua_initial_state"
12
+
11
13
  /**
12
14
  * | | |
13
15
  * |----------------|------------------------------------------------------------|
@@ -24,5 +26,4 @@ export interface UAIdleSubstateMachine_Base extends UAFiniteStateMachine_Base {
24
26
  standBy: UAInitialState;
25
27
  standByToGettingReady: UATransition;
26
28
  }
27
- export interface UAIdleSubstateMachine extends Omit<UAFiniteStateMachine, "lastTransition">, UAIdleSubstateMachine_Base {
28
- }
29
+ export interface UAIdleSubstateMachine extends Omit<UAFiniteStateMachine, "lastTransition">, UAIdleSubstateMachine_Base {}
package/source/ua_load.ts CHANGED
@@ -1,11 +1,13 @@
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
+
1
9
  // ----- this file has been automatically generated - do not edit
2
- import { UAObject } from "node-opcua-address-space-base"
3
- import { DataType } from "node-opcua-variant"
4
- import { DT3DFrame } from "node-opcua-nodeset-ua/dist/dt_3_d_frame"
5
- import { UA3DFrame } from "node-opcua-nodeset-ua/dist/ua_3_d_frame"
6
- import { DT3DVector } from "node-opcua-nodeset-ua/dist/dt_3_d_vector"
7
- import { UA3DVector } from "node-opcua-nodeset-ua/dist/ua_3_d_vector"
8
- import { UAAnalogUnit } from "node-opcua-nodeset-ua/dist/ua_analog_unit"
10
+
9
11
  /**
10
12
  * The LoadType is for describing loads mounted on
11
13
  * the motion device typically by an integrator or a
@@ -49,5 +51,4 @@ export interface UALoad_Base {
49
51
  */
50
52
  mass: UAAnalogUnit<number, DataType.Double>;
51
53
  }
52
- export interface UALoad extends UAObject, UALoad_Base {
53
- }
54
+ export interface UALoad extends UAObject, UALoad_Base {}
@@ -1,14 +1,17 @@
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
+
10
+ import type { EnumMotionDeviceCategory } from "./enum_motion_device_category";
11
+ import type { UALoad } from "./ua_load";
12
+
1
13
  // ----- this file has been automatically generated - do not edit
2
- import { UAObject, UAProperty } from "node-opcua-address-space-base"
3
- import { DataType } from "node-opcua-variant"
4
- import { LocalizedText } from "node-opcua-data-model"
5
- import { NodeId } from "node-opcua-nodeid"
6
- import { UAString } from "node-opcua-basic-types"
7
- import { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable"
8
- import { UAFolder } from "node-opcua-nodeset-ua/dist/ua_folder"
9
- import { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/dist/ua_component"
10
- import { UALoad } from "./ua_load"
11
- import { EnumMotionDeviceCategory } from "./enum_motion_device_category"
14
+
12
15
  export interface UAMotionDevice_parameterSet extends UAObject { // Object
13
16
  /**
14
17
  * inControl
@@ -98,5 +101,4 @@ export interface UAMotionDevice_Base extends UAComponent_Base {
98
101
  serialNumber: UAProperty<UAString, DataType.String>;
99
102
  taskControlReference?: UABaseDataVariable<NodeId, DataType.NodeId>;
100
103
  }
101
- export interface UAMotionDevice extends Omit<UAComponent, "assetId"|"componentName"|"deviceManual"|"manufacturer"|"model"|"parameterSet"|"productCode"|"serialNumber">, UAMotionDevice_Base {
102
- }
104
+ export interface UAMotionDevice extends Omit<UAComponent, "assetId"|"componentName"|"deviceManual"|"manufacturer"|"model"|"parameterSet"|"productCode"|"serialNumber">, UAMotionDevice_Base {}
@@ -1,9 +1,10 @@
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
+
1
7
  // ----- this file has been automatically generated - do not edit
2
- import { UAProperty } from "node-opcua-address-space-base"
3
- import { DataType } from "node-opcua-variant"
4
- import { LocalizedText } from "node-opcua-data-model"
5
- import { UAFolder } from "node-opcua-nodeset-ua/dist/ua_folder"
6
- import { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/dist/ua_component"
7
8
 
8
9
  /**
9
10
  * Contains the set of controllers and motion
@@ -37,5 +38,4 @@ export interface UAMotionDeviceSystem_Base extends UAComponent_Base {
37
38
  */
38
39
  safetyStates: UAFolder;
39
40
  }
40
- export interface UAMotionDeviceSystem extends Omit<UAComponent, "componentName">, UAMotionDeviceSystem_Base {
41
- }
41
+ export interface UAMotionDeviceSystem extends Omit<UAComponent, "componentName">, UAMotionDeviceSystem_Base {}
@@ -1,11 +1,13 @@
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
+
1
9
  // ----- this file has been automatically generated - do not edit
2
- import { UAObject, UAProperty } from "node-opcua-address-space-base"
3
- import { DataType } from "node-opcua-variant"
4
- import { LocalizedText } from "node-opcua-data-model"
5
- import { UInt16, UAString } from "node-opcua-basic-types"
6
- import { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable"
7
- import { UAAnalogUnit } from "node-opcua-nodeset-ua/dist/ua_analog_unit"
8
- import { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/dist/ua_component"
10
+
9
11
  export interface UAMotor_parameterSet extends UAObject { // Object
10
12
  /**
11
13
  * brakeReleased
@@ -55,5 +57,4 @@ export interface UAMotor_Base extends UAComponent_Base {
55
57
  productCode: UAProperty<UAString, DataType.String>;
56
58
  serialNumber: UAProperty<UAString, DataType.String>;
57
59
  }
58
- export interface UAMotor extends Omit<UAComponent, "assetId"|"manufacturer"|"model"|"parameterSet"|"productCode"|"serialNumber">, UAMotor_Base {
59
- }
60
+ export interface UAMotor extends Omit<UAComponent, "assetId"|"manufacturer"|"model"|"parameterSet"|"productCode"|"serialNumber">, UAMotor_Base {}
@@ -1,8 +1,10 @@
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
+
1
6
  // ----- this file has been automatically generated - do not edit
2
- import { UAProperty } from "node-opcua-address-space-base"
3
- import { DataType } from "node-opcua-variant"
4
- import { LocalizedText } from "node-opcua-data-model"
5
- import { UAAcknowledgeableCondition, UAAcknowledgeableCondition_Base } from "node-opcua-nodeset-ua/dist/ua_acknowledgeable_condition"
7
+
6
8
  /**
7
9
  * | | |
8
10
  * |----------------|------------------------------------------------------------|
@@ -14,5 +16,4 @@ import { UAAcknowledgeableCondition, UAAcknowledgeableCondition_Base } from "nod
14
16
  export interface UAMultiAcknowledgeableCondition_Base extends UAAcknowledgeableCondition_Base {
15
17
  conditionDescriptions: UAProperty<LocalizedText[], DataType.LocalizedText>;
16
18
  }
17
- export interface UAMultiAcknowledgeableCondition extends UAAcknowledgeableCondition, UAMultiAcknowledgeableCondition_Base {
18
- }
19
+ export interface UAMultiAcknowledgeableCondition extends UAAcknowledgeableCondition, UAMultiAcknowledgeableCondition_Base {}
@@ -1,15 +1,17 @@
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
+
1
13
  // ----- this file has been automatically generated - do not edit
2
- import { UAMethod } from "node-opcua-address-space-base"
3
- import { DataType } from "node-opcua-variant"
4
- import { LocalizedText } from "node-opcua-data-model"
5
- import { Int16 } from "node-opcua-basic-types"
6
- import { DTEnumValue } from "node-opcua-nodeset-ua/dist/dt_enum_value"
7
- import { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/dist/ua_finite_state_machine"
8
- import { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable"
9
- import { UAState } from "node-opcua-nodeset-ua/dist/ua_state"
10
- import { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition"
11
- import { UATransitionVariable } from "node-opcua-nodeset-ua/dist/ua_transition_variable"
12
- import { UAMultiStateValueDiscrete } from "node-opcua-nodeset-ua/dist/ua_multi_state_value_discrete"
14
+
13
15
  /**
14
16
  * | | |
15
17
  * |----------------|------------------------------------------------------------|
@@ -71,5 +73,4 @@ export interface UAOperationStateMachine_Base extends UAFiniteStateMachine_Base
71
73
  start?: UAMethod;
72
74
  stop?: UAMethod;
73
75
  }
74
- export interface UAOperationStateMachine extends Omit<UAFiniteStateMachine, "lastTransition">, UAOperationStateMachine_Base {
75
- }
76
+ export interface UAOperationStateMachine extends Omit<UAFiniteStateMachine, "lastTransition">, UAOperationStateMachine_Base {}
@@ -1,8 +1,10 @@
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
+
1
6
  // ----- this file has been automatically generated - do not edit
2
- import { UAProperty } from "node-opcua-address-space-base"
3
- import { DataType } from "node-opcua-variant"
4
- import { LocalizedText } from "node-opcua-data-model"
5
- import { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/dist/ua_component"
7
+
6
8
  /**
7
9
  * The PowerTrainType represents instances of
8
10
  * powertrains of a motion device.
@@ -19,5 +21,4 @@ export interface UAPowerTrain_Base extends UAComponent_Base {
19
21
  // PlaceHolder for $MotorIdentifier$
20
22
  componentName?: UAProperty<LocalizedText, DataType.LocalizedText>;
21
23
  }
22
- export interface UAPowerTrain extends Omit<UAComponent, "componentName">, UAPowerTrain_Base {
23
- }
24
+ export interface UAPowerTrain extends Omit<UAComponent, "componentName">, UAPowerTrain_Base {}
@@ -1,8 +1,10 @@
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
+
1
6
  // ----- this file has been automatically generated - do not edit
2
- import { UAObject, UAProperty } from "node-opcua-address-space-base"
3
- import { DataType } from "node-opcua-variant"
4
- import { UAString } from "node-opcua-basic-types"
5
- import { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable"
7
+
6
8
  /**
7
9
  * According to ISO 10218-1:2011 Ch.5.5.3 the robot
8
10
  * shall have one or more protective stop functions
@@ -48,5 +50,4 @@ export interface UAProtectiveStopFunction_Base {
48
50
  */
49
51
  name: UAProperty<UAString, DataType.String>;
50
52
  }
51
- export interface UAProtectiveStopFunction extends UAObject, UAProtectiveStopFunction_Base {
52
- }
53
+ export interface UAProtectiveStopFunction extends UAObject, UAProtectiveStopFunction_Base {}
@@ -1,13 +1,15 @@
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
+
1
11
  // ----- this file has been automatically generated - do not edit
2
- import { UAMethod } from "node-opcua-address-space-base"
3
- import { DataType } from "node-opcua-variant"
4
- import { LocalizedText } from "node-opcua-data-model"
5
- import { Int16 } from "node-opcua-basic-types"
6
- import { UAFiniteStateMachine, UAFiniteStateMachine_Base } from "node-opcua-nodeset-ua/dist/ua_finite_state_machine"
7
- import { UAState } from "node-opcua-nodeset-ua/dist/ua_state"
8
- import { UATransitionVariable } from "node-opcua-nodeset-ua/dist/ua_transition_variable"
9
- import { UAMultiStateValueDiscrete } from "node-opcua-nodeset-ua/dist/ua_multi_state_value_discrete"
10
- import { UATransition } from "node-opcua-nodeset-ua/dist/ua_transition"
12
+
11
13
  /**
12
14
  * | | |
13
15
  * |----------------|------------------------------------------------------------|
@@ -25,5 +27,4 @@ export interface UAReadySubstateMachine_Base extends UAFiniteStateMachine_Base {
25
27
  suspended: UAState;
26
28
  suspendedToProgramStart: UATransition;
27
29
  }
28
- export interface UAReadySubstateMachine extends Omit<UAFiniteStateMachine, "lastTransition">, UAReadySubstateMachine_Base {
29
- }
30
+ export interface UAReadySubstateMachine extends Omit<UAFiniteStateMachine, "lastTransition">, UAReadySubstateMachine_Base {}
@@ -1,11 +1,14 @@
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
+
8
+ import type { EnumOperationalMode } from "./enum_operational_mode";
9
+
1
10
  // ----- this file has been automatically generated - do not edit
2
- import { UAObject, UAProperty } from "node-opcua-address-space-base"
3
- import { DataType } from "node-opcua-variant"
4
- import { LocalizedText } from "node-opcua-data-model"
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 { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/dist/ua_component"
8
- import { EnumOperationalMode } from "./enum_operational_mode"
11
+
9
12
  export interface UASafetyState_parameterSet extends UAObject { // Object
10
13
  /**
11
14
  * emergencyStop
@@ -71,5 +74,4 @@ export interface UASafetyState_Base extends UAComponent_Base {
71
74
  */
72
75
  protectiveStopFunctions?: UAFolder;
73
76
  }
74
- export interface UASafetyState extends Omit<UAComponent, "componentName"|"parameterSet">, UASafetyState_Base {
75
- }
77
+ export interface UASafetyState extends Omit<UAComponent, "componentName"|"parameterSet">, UASafetyState_Base {}
@@ -1,9 +1,12 @@
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
+
6
+ import type { UASystemOperationStateMachine } from "./ua_system_operation_state_machine";
7
+
1
8
  // ----- this file has been automatically generated - do not edit
2
- import { UAObject, UAProperty } from "node-opcua-address-space-base"
3
- import { DataType } from "node-opcua-variant"
4
- import { QualifiedName } from "node-opcua-data-model"
5
- import { UAFolder } from "node-opcua-nodeset-ua/dist/ua_folder"
6
- import { UASystemOperationStateMachine } from "./ua_system_operation_state_machine"
9
+
7
10
  /**
8
11
  * | | |
9
12
  * |----------------|------------------------------------------------------------|
@@ -17,5 +20,4 @@ export interface UASystemOperation_Base {
17
20
  defaultInstanceBrowseName: UAProperty<QualifiedName, DataType.QualifiedName>;
18
21
  systemOperationStateMachine: UASystemOperationStateMachine;
19
22
  }
20
- export interface UASystemOperation extends UAObject, UASystemOperation_Base {
21
- }
23
+ export interface UASystemOperation extends UAObject, UASystemOperation_Base {}
@@ -1,17 +1,20 @@
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
+
12
+ import type { UAExecutingSubstateMachine } from "./ua_executing_substate_machine";
13
+ import type { UAIdleSubstateMachine } from "./ua_idle_substate_machine";
14
+ import type { UAOperationStateMachine, UAOperationStateMachine_Base } from "./ua_operation_state_machine";
15
+
1
16
  // ----- this file has been automatically generated - do not edit
2
- import { UAMethod } from "node-opcua-address-space-base"
3
- import { DataType } from "node-opcua-variant"
4
- import { LocalizedText } from "node-opcua-data-model"
5
- import { Int16 } from "node-opcua-basic-types"
6
- import { DTEnumValue } from "node-opcua-nodeset-ua/dist/dt_enum_value"
7
- import { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable"
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 { UAMultiStateValueDiscrete } from "node-opcua-nodeset-ua/dist/ua_multi_state_value_discrete"
12
- import { UAOperationStateMachine, UAOperationStateMachine_Base } from "./ua_operation_state_machine"
13
- import { UAExecutingSubstateMachine } from "./ua_executing_substate_machine"
14
- import { UAIdleSubstateMachine } from "./ua_idle_substate_machine"
17
+
15
18
  /**
16
19
  * | | |
17
20
  * |----------------|------------------------------------------------------------|
@@ -41,5 +44,4 @@ export interface UASystemOperationStateMachine_Base extends UAOperationStateMach
41
44
  start?: UAMethod;
42
45
  stop?: UAMethod;
43
46
  }
44
- export interface UASystemOperationStateMachine extends Omit<UAOperationStateMachine, "configuredDefaultStopMode"|"executing"|"executingToIdle"|"executingToReady"|"idle"|"idleToIdle"|"idleToReady"|"lastTransition"|"lastTransitionReason"|"possibleStopModes"|"ready"|"readyToExecuting"|"readyToIdle"|"start"|"stop">, UASystemOperationStateMachine_Base {
45
- }
47
+ export interface UASystemOperationStateMachine extends Omit<UAOperationStateMachine, "configuredDefaultStopMode"|"executing"|"executingToIdle"|"executingToReady"|"idle"|"idleToIdle"|"idleToReady"|"lastTransition"|"lastTransitionReason"|"possibleStopModes"|"ready"|"readyToExecuting"|"readyToIdle"|"start"|"stop">, UASystemOperationStateMachine_Base {}
@@ -1,13 +1,16 @@
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
+
9
+ import type { EnumExecutionMode } from "./enum_execution_mode";
10
+ import type { UATaskControlOperation } from "./ua_task_control_operation";
11
+
1
12
  // ----- this file has been automatically generated - do not edit
2
- import { UAObject, UAProperty } from "node-opcua-address-space-base"
3
- import { DataType } from "node-opcua-variant"
4
- import { LocalizedText } from "node-opcua-data-model"
5
- import { UAString } from "node-opcua-basic-types"
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 { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/dist/ua_component"
9
- import { EnumExecutionMode } from "./enum_execution_mode"
10
- import { UATaskControlOperation } from "./ua_task_control_operation"
13
+
11
14
  export interface UATaskControl_parameterSet extends UAObject { // Object
12
15
  /**
13
16
  * executionMode
@@ -54,5 +57,4 @@ export interface UATaskControl_Base extends UAComponent_Base {
54
57
  taskControlOperation?: UATaskControlOperation;
55
58
  taskModules?: UAFolder;
56
59
  }
57
- export interface UATaskControl extends Omit<UAComponent, "componentName"|"parameterSet">, UATaskControl_Base {
58
- }
60
+ export interface UATaskControl extends Omit<UAComponent, "componentName"|"parameterSet">, UATaskControl_Base {}
@@ -1,9 +1,12 @@
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
+
6
+ import type { UATaskControlStateMachine } from "./ua_task_control_state_machine";
7
+
1
8
  // ----- this file has been automatically generated - do not edit
2
- import { UAObject, UAProperty } from "node-opcua-address-space-base"
3
- import { DataType } from "node-opcua-variant"
4
- import { QualifiedName } from "node-opcua-data-model"
5
- import { NodeId } from "node-opcua-nodeid"
6
- import { UATaskControlStateMachine } from "./ua_task_control_state_machine"
9
+
7
10
  /**
8
11
  * | | |
9
12
  * |----------------|------------------------------------------------------------|
@@ -17,5 +20,4 @@ export interface UATaskControlOperation_Base {
17
20
  motionDevicesUnderControl?: UAProperty<NodeId[], DataType.NodeId>;
18
21
  taskControlStateMachine: UATaskControlStateMachine;
19
22
  }
20
- export interface UATaskControlOperation extends UAObject, UATaskControlOperation_Base {
21
- }
23
+ export interface UATaskControlOperation extends UAObject, UATaskControlOperation_Base {}
@@ -1,16 +1,19 @@
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
+
12
+ import type { UAOperationStateMachine, UAOperationStateMachine_Base } from "./ua_operation_state_machine";
13
+ import type { UAReadySubstateMachine } from "./ua_ready_substate_machine";
14
+
1
15
  // ----- this file has been automatically generated - do not edit
2
- import { UAMethod } from "node-opcua-address-space-base"
3
- import { DataType } from "node-opcua-variant"
4
- import { LocalizedText } from "node-opcua-data-model"
5
- import { Int16 } from "node-opcua-basic-types"
6
- import { DTEnumValue } from "node-opcua-nodeset-ua/dist/dt_enum_value"
7
- import { UABaseDataVariable } from "node-opcua-nodeset-ua/dist/ua_base_data_variable"
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 { UAMultiStateValueDiscrete } from "node-opcua-nodeset-ua/dist/ua_multi_state_value_discrete"
12
- import { UAOperationStateMachine, UAOperationStateMachine_Base } from "./ua_operation_state_machine"
13
- import { UAReadySubstateMachine } from "./ua_ready_substate_machine"
16
+
14
17
  /**
15
18
  * | | |
16
19
  * |----------------|------------------------------------------------------------|
@@ -42,5 +45,4 @@ export interface UATaskControlStateMachine_Base extends UAOperationStateMachine_
42
45
  unloadByNodeId?: UAMethod;
43
46
  unloadProgram?: UAMethod;
44
47
  }
45
- export interface UATaskControlStateMachine extends Omit<UAOperationStateMachine, "configuredDefaultStopMode"|"executing"|"executingToIdle"|"executingToReady"|"idle"|"idleToIdle"|"idleToReady"|"lastTransition"|"lastTransitionReason"|"possibleStopModes"|"ready"|"readyToExecuting"|"readyToIdle"|"start"|"stop">, UATaskControlStateMachine_Base {
46
- }
48
+ export interface UATaskControlStateMachine extends Omit<UAOperationStateMachine, "configuredDefaultStopMode"|"executing"|"executingToIdle"|"executingToReady"|"idle"|"idleToIdle"|"idleToReady"|"lastTransition"|"lastTransitionReason"|"possibleStopModes"|"ready"|"readyToExecuting"|"readyToIdle"|"start"|"stop">, UATaskControlStateMachine_Base {}