@wandelbots/nova-api 25.9.0-dev.34 → 25.9.0-dev.35

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/dist/v2/index.js CHANGED
@@ -3348,6 +3348,7 @@ const KinematicsApiAxiosParamCreator = function(configuration) {
3348
3348
  return {
3349
3349
  forwardKinematics: async (cell, forwardKinematicsRequest, options = {}) => {
3350
3350
  assertParamExists("forwardKinematics", "cell", cell);
3351
+ assertParamExists("forwardKinematics", "forwardKinematicsRequest", forwardKinematicsRequest);
3351
3352
  const localVarPath = `/cells/{cell}/kinematic/forward`.replace(`{cell}`, encodeURIComponent(String(cell)));
3352
3353
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3353
3354
  let baseOptions;
@@ -3377,6 +3378,7 @@ const KinematicsApiAxiosParamCreator = function(configuration) {
3377
3378
  },
3378
3379
  inverseKinematics: async (cell, inverseKinematicsRequest, options = {}) => {
3379
3380
  assertParamExists("inverseKinematics", "cell", cell);
3381
+ assertParamExists("inverseKinematics", "inverseKinematicsRequest", inverseKinematicsRequest);
3380
3382
  const localVarPath = `/cells/{cell}/kinematic/inverse`.replace(`{cell}`, encodeURIComponent(String(cell)));
3381
3383
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3382
3384
  let baseOptions;
@@ -3453,7 +3455,7 @@ var KinematicsApi = class extends BaseAPI {
3453
3455
  * Returns the TCP poses for a list of given joint positions.
3454
3456
  * @summary Forward kinematics
3455
3457
  * @param {string} cell Unique identifier addressing a cell in all API calls.
3456
- * @param {ForwardKinematicsRequest} [forwardKinematicsRequest]
3458
+ * @param {ForwardKinematicsRequest} forwardKinematicsRequest
3457
3459
  * @param {*} [options] Override http request option.
3458
3460
  * @throws {RequiredError}
3459
3461
  * @memberof KinematicsApi
@@ -3465,7 +3467,7 @@ var KinematicsApi = class extends BaseAPI {
3465
3467
  * Returns the reachable joint positions for a list of given poses.
3466
3468
  * @summary Inverse kinematics
3467
3469
  * @param {string} cell Unique identifier addressing a cell in all API calls.
3468
- * @param {InverseKinematicsRequest} [inverseKinematicsRequest]
3470
+ * @param {InverseKinematicsRequest} inverseKinematicsRequest
3469
3471
  * @param {*} [options] Override http request option.
3470
3472
  * @throws {RequiredError}
3471
3473
  * @memberof KinematicsApi
@@ -6444,6 +6446,7 @@ const TrajectoryPlanningApiAxiosParamCreator = function(configuration) {
6444
6446
  return {
6445
6447
  planCollisionFree: async (cell, planCollisionFreeRequest, options = {}) => {
6446
6448
  assertParamExists("planCollisionFree", "cell", cell);
6449
+ assertParamExists("planCollisionFree", "planCollisionFreeRequest", planCollisionFreeRequest);
6447
6450
  const localVarPath = `/cells/{cell}/trajectory-planning/plan-collision-free`.replace(`{cell}`, encodeURIComponent(String(cell)));
6448
6451
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
6449
6452
  let baseOptions;
@@ -6473,6 +6476,7 @@ const TrajectoryPlanningApiAxiosParamCreator = function(configuration) {
6473
6476
  },
6474
6477
  planTrajectory: async (cell, planTrajectoryRequest, options = {}) => {
6475
6478
  assertParamExists("planTrajectory", "cell", cell);
6479
+ assertParamExists("planTrajectory", "planTrajectoryRequest", planTrajectoryRequest);
6476
6480
  const localVarPath = `/cells/{cell}/trajectory-planning/plan-trajectory`.replace(`{cell}`, encodeURIComponent(String(cell)));
6477
6481
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
6478
6482
  let baseOptions;
@@ -6549,7 +6553,7 @@ var TrajectoryPlanningApi = class extends BaseAPI {
6549
6553
  * Plans a collision-free trajectory for a single motion group using point-to-point (PTP) motions. This endpoint is specifically designed for collision-free path planning algorithms that find a trajectory from a start joint position to a target position while avoiding obstacles. Use the following workflow to execute a planned collision-free trajectory: 1. Plan a collision-free trajectory. 2. Optional: Load the planned trajectory into the cache using the [addTrajectory](addTrajectory) endpoint. 3. Execute the (cached) trajectory using the [executeTrajectory](executeTrajectory) endpoint. If the trajectory planning fails due to collision or algorithm constraints, the response will contain error information about the failure.
6550
6554
  * @summary Plan Collision-Free Trajectory
6551
6555
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6552
- * @param {PlanCollisionFreeRequest} [planCollisionFreeRequest]
6556
+ * @param {PlanCollisionFreeRequest} planCollisionFreeRequest
6553
6557
  * @param {*} [options] Override http request option.
6554
6558
  * @throws {RequiredError}
6555
6559
  * @memberof TrajectoryPlanningApi
@@ -6561,7 +6565,7 @@ var TrajectoryPlanningApi = class extends BaseAPI {
6561
6565
  * Plans a new trajectory for a single motion group. Describe the trajectory as a sequence of motion commands that the robots TCP should follow. Use the following workflow to execute a planned trajectory: 1. Plan a trajectory. 2. Optional: Load the planned trajectory into the cache using the [addTrajectory](addTrajectory) endpoint. 3. Execute the (cached) trajectory using the [executeTrajectory](executeTrajectory) endpoint. If the trajectory is not executable, the response will contain the joint trajectory up until the error, e.g., all samples until a collision occurs. <!-- theme: info --> > #### Exception > > If a CartesianPTP or JointPTP motion command has an invalid target, the response will contain the trajectory up until the start of the invalid PTP motion.
6562
6566
  * @summary Plan Trajectory
6563
6567
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6564
- * @param {PlanTrajectoryRequest} [planTrajectoryRequest]
6568
+ * @param {PlanTrajectoryRequest} planTrajectoryRequest
6565
6569
  * @param {*} [options] Override http request option.
6566
6570
  * @throws {RequiredError}
6567
6571
  * @memberof TrajectoryPlanningApi
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wandelbots/nova-api",
3
- "version": "25.9.0-dev.34",
3
+ "version": "25.9.0-dev.35",
4
4
  "description": "API Client to interact with Wandelbots Public API.",
5
5
  "type": "module",
6
6
  "files": [