@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wandelbots/nova-api",
3
- "version": "25.8.0-dev.87",
3
+ "version": "25.8.0-dev.89",
4
4
  "description": "API Client to interact with Wandelbots Public API.",
5
5
  "files": [
6
6
  "*",
package/v2/api.d.ts CHANGED
@@ -4818,6 +4818,12 @@ export interface StartMovementRequest {
4818
4818
  * @memberof StartMovementRequest
4819
4819
  */
4820
4820
  'direction'?: Direction;
4821
+ /**
4822
+ * 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
4823
+ * @type {number}
4824
+ * @memberof StartMovementRequest
4825
+ */
4826
+ 'target_location'?: number;
4821
4827
  /**
4822
4828
  * 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.
4823
4829
  * @type {Array<SetIO>}