@wandelbots/nova-api 25.8.0-dev.48 → 25.8.0-dev.49
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/package.json +1 -1
- package/v2/api.d.ts +26 -7
- package/v2/api.js.map +1 -1
- package/v2/api.ts +26 -7
package/package.json
CHANGED
package/v2/api.d.ts
CHANGED
|
@@ -93,7 +93,7 @@ export interface AddTrajectoryError {
|
|
|
93
93
|
*/
|
|
94
94
|
'message'?: string;
|
|
95
95
|
/**
|
|
96
|
-
* The
|
|
96
|
+
* Location on trajectory where the execution will start. The default value is the start (forward movement) or end (backward movement) of the trajectory. If you want to start your movement from an arbitrary location, e.g. in combination with [streamMoveToTrajectoryViaJointPTP](streamMoveToTrajectoryViaJointPTP), set the location by respecting the following format: - The location is a scalar value that defines a position along a path, typically ranging from 0 to `n`, where `n` denotes the number of motion commands - Each integer value of the location corresponds to a specific motion command, while non-integer values interpolate positions within the segments. - The location is calculated from the joint path
|
|
97
97
|
* @type {number}
|
|
98
98
|
* @memberof AddTrajectoryError
|
|
99
99
|
*/
|
|
@@ -2540,7 +2540,7 @@ export interface JointTrajectory {
|
|
|
2540
2540
|
*/
|
|
2541
2541
|
'times': Array<number>;
|
|
2542
2542
|
/**
|
|
2543
|
-
*
|
|
2543
|
+
*
|
|
2544
2544
|
* @type {Array<number>}
|
|
2545
2545
|
* @memberof JointTrajectory
|
|
2546
2546
|
*/
|
|
@@ -3759,11 +3759,11 @@ export interface PlanTrajectoryFailedResponse {
|
|
|
3759
3759
|
*/
|
|
3760
3760
|
'error_feedback': PlanTrajectoryFailedResponseErrorFeedback;
|
|
3761
3761
|
/**
|
|
3762
|
-
*
|
|
3762
|
+
* Location on trajectory where the execution will start. The default value is the start (forward movement) or end (backward movement) of the trajectory. If you want to start your movement from an arbitrary location, e.g. in combination with [streamMoveToTrajectoryViaJointPTP](streamMoveToTrajectoryViaJointPTP), set the location by respecting the following format: - The location is a scalar value that defines a position along a path, typically ranging from 0 to `n`, where `n` denotes the number of motion commands - Each integer value of the location corresponds to a specific motion command, while non-integer values interpolate positions within the segments. - The location is calculated from the joint path
|
|
3763
3763
|
* @type {number}
|
|
3764
3764
|
* @memberof PlanTrajectoryFailedResponse
|
|
3765
3765
|
*/
|
|
3766
|
-
'error_location_on_trajectory'
|
|
3766
|
+
'error_location_on_trajectory': number;
|
|
3767
3767
|
/**
|
|
3768
3768
|
* The joint trajectory from the start joint position to the error.
|
|
3769
3769
|
* @type {JointTrajectory}
|
|
@@ -4740,6 +4740,25 @@ export interface ServiceStatusStatus {
|
|
|
4740
4740
|
*/
|
|
4741
4741
|
'reason'?: string;
|
|
4742
4742
|
}
|
|
4743
|
+
/**
|
|
4744
|
+
* Defines an input/output that should be set upon reaching a specified location on the trajectory.
|
|
4745
|
+
* @export
|
|
4746
|
+
* @interface SetIO
|
|
4747
|
+
*/
|
|
4748
|
+
export interface SetIO {
|
|
4749
|
+
/**
|
|
4750
|
+
*
|
|
4751
|
+
* @type {IOValue}
|
|
4752
|
+
* @memberof SetIO
|
|
4753
|
+
*/
|
|
4754
|
+
'io': IOValue;
|
|
4755
|
+
/**
|
|
4756
|
+
* The location on the trajectory where the input/output should be set.
|
|
4757
|
+
* @type {number}
|
|
4758
|
+
* @memberof SetIO
|
|
4759
|
+
*/
|
|
4760
|
+
'location': number;
|
|
4761
|
+
}
|
|
4743
4762
|
/**
|
|
4744
4763
|
*
|
|
4745
4764
|
* @export
|
|
@@ -4804,10 +4823,10 @@ export interface StartMovementRequest {
|
|
|
4804
4823
|
'direction'?: Direction;
|
|
4805
4824
|
/**
|
|
4806
4825
|
* Attaches a list of output commands to the trajectory. The outputs are set to the specified values right after the specified location was reached. If the specified location is located before the start location (forward direction: value is smaller, backward direction: value is bigger), the output is not set.
|
|
4807
|
-
* @type {Array<
|
|
4826
|
+
* @type {Array<SetIO>}
|
|
4808
4827
|
* @memberof StartMovementRequest
|
|
4809
4828
|
*/
|
|
4810
|
-
'set_outputs'?: Array<
|
|
4829
|
+
'set_outputs'?: Array<SetIO>;
|
|
4811
4830
|
/**
|
|
4812
4831
|
* Defines an input/output that is listened to before the movement. Execution starts if the defined comparator evaluates to `true`.
|
|
4813
4832
|
* @type {StartOnIO}
|
|
@@ -5062,7 +5081,7 @@ export interface TrajectoryDetails {
|
|
|
5062
5081
|
*/
|
|
5063
5082
|
'trajectory': string;
|
|
5064
5083
|
/**
|
|
5065
|
-
*
|
|
5084
|
+
* Location on trajectory where the execution will start. The default value is the start (forward movement) or end (backward movement) of the trajectory. If you want to start your movement from an arbitrary location, e.g. in combination with [streamMoveToTrajectoryViaJointPTP](streamMoveToTrajectoryViaJointPTP), set the location by respecting the following format: - The location is a scalar value that defines a position along a path, typically ranging from 0 to `n`, where `n` denotes the number of motion commands - Each integer value of the location corresponds to a specific motion command, while non-integer values interpolate positions within the segments. - The location is calculated from the joint path
|
|
5066
5085
|
* @type {number}
|
|
5067
5086
|
* @memberof TrajectoryDetails
|
|
5068
5087
|
*/
|