@wandelbots/nova-api 25.8.0-dev.20 → 25.8.0-dev.23

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.20",
3
+ "version": "25.8.0-dev.23",
4
4
  "description": "API Client to interact with Wandelbots Public API.",
5
5
  "files": [
6
6
  "*",
package/v2/api.d.ts CHANGED
@@ -2898,13 +2898,13 @@ export declare const Manufacturer: {
2898
2898
  };
2899
2899
  export type Manufacturer = typeof Manufacturer[keyof typeof Manufacturer];
2900
2900
  /**
2901
- * Midpoint insertion algorithm configuration for collision-free path planning. This algorithm iteratively inserts midpoints between the start and target joint position to find collision-free paths.
2901
+ *
2902
2902
  * @export
2903
2903
  * @interface MidpointInsertionAlgorithm
2904
2904
  */
2905
2905
  export interface MidpointInsertionAlgorithm {
2906
2906
  /**
2907
- * Algorithm discriminator.
2907
+ * Algorithm discriminator. Midpoint insertion algorithm configuration for collision-free path planning. This algorithm adds a single midpoint between the start and target joint position to find collision-free paths.
2908
2908
  * @type {string}
2909
2909
  * @memberof MidpointInsertionAlgorithm
2910
2910
  */
@@ -4322,13 +4322,13 @@ export interface ProgramStartRequest {
4322
4322
  'arguments': object;
4323
4323
  }
4324
4324
  /**
4325
- * <!-- theme: danger --> > **Experimental** RRT Connect algorithm configuration for collision-free path planning. Rapidly-exploring Random Trees (RRT) builds trees of valid configurations by randomly sampling the joint space and connecting feasible points. RRT Connect grows two trees simultaneously from start and target positions until they meet. This is a custom implementation optimized for manipulator kinematics and collision checking in industrial contexts.
4325
+ *
4326
4326
  * @export
4327
4327
  * @interface RRTConnectAlgorithm
4328
4328
  */
4329
4329
  export interface RRTConnectAlgorithm {
4330
4330
  /**
4331
- * Algorithm discriminator.
4331
+ * Algorithm discriminator. <!-- theme: danger --> > **Experimental** RRT Connect algorithm configuration for collision-free path planning. Rapidly-exploring Random Trees (RRT) builds trees of valid configurations by randomly sampling the joint space and connecting feasible points with JointPTP motions. RRT Connect grows two trees simultaneously from start and target positions until they meet. This is a custom implementation optimized for manipulator kinematics and collision checking in industrial contexts.
4332
4332
  * @type {string}
4333
4333
  * @memberof RRTConnectAlgorithm
4334
4334
  */
@@ -4339,6 +4339,30 @@ export interface RRTConnectAlgorithm {
4339
4339
  * @memberof RRTConnectAlgorithm
4340
4340
  */
4341
4341
  'max_iterations'?: number;
4342
+ /**
4343
+ * Maximum step size for tree extension in joint space.
4344
+ * @type {number}
4345
+ * @memberof RRTConnectAlgorithm
4346
+ */
4347
+ 'max_step_size'?: number;
4348
+ /**
4349
+ * Adjust the maximum step size during the search based on the recent success rate of tree expansion.
4350
+ * @type {boolean}
4351
+ * @memberof RRTConnectAlgorithm
4352
+ */
4353
+ 'adaptive_step_size'?: boolean;
4354
+ /**
4355
+ * Apply smoothing after the search has succeeded. This will remove as many intermediate points as possible while keeping the path valid.
4356
+ * @type {boolean}
4357
+ * @memberof RRTConnectAlgorithm
4358
+ */
4359
+ 'apply_smoothing'?: boolean;
4360
+ /**
4361
+ * Apply blending after the search has succeeded and smoothing has been applied. This will apply the largest viable blending at each intermediate point.
4362
+ * @type {boolean}
4363
+ * @memberof RRTConnectAlgorithm
4364
+ */
4365
+ 'apply_blending'?: boolean;
4342
4366
  }
4343
4367
  export declare const RRTConnectAlgorithmAlgorithmNameEnum: {
4344
4368
  readonly RrtConnectAlgorithm: "RRTConnectAlgorithm";