@wandelbots/nova-api 25.8.0-dev.87 → 25.8.0-dev.89

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/v2/api.ts CHANGED
@@ -5057,6 +5057,12 @@ export interface StartMovementRequest {
5057
5057
  * @memberof StartMovementRequest
5058
5058
  */
5059
5059
  'direction'?: Direction;
5060
+ /**
5061
+ * 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
5062
+ * @type {number}
5063
+ * @memberof StartMovementRequest
5064
+ */
5065
+ 'target_location'?: number;
5060
5066
  /**
5061
5067
  * 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.
5062
5068
  * @type {Array<SetIO>}