@wandelbots/nova-api 25.7.0-rc.1 → 25.8.0-dev.2

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.7.0-rc.1",
3
+ "version": "25.8.0-dev.2",
4
4
  "description": "API Client to interact with Wandelbots Public API.",
5
5
  "files": [
6
6
  "*",
package/v2/api.d.ts CHANGED
@@ -2463,10 +2463,10 @@ export interface JointLimits {
2463
2463
  export interface JointTrajectory {
2464
2464
  /**
2465
2465
  * List of joint positions [rad] for each sample. The number of samples must match the number of timestamps provided in the times field.
2466
- * @type {Array<Joints>}
2466
+ * @type {Array<Array<number>>}
2467
2467
  * @memberof JointTrajectory
2468
2468
  */
2469
- 'joint_positions': Array<Joints>;
2469
+ 'joint_positions': Array<Array<number>>;
2470
2470
  /**
2471
2471
  * Timestamp for each sample [s].
2472
2472
  * @type {Array<number>}
@@ -2493,11 +2493,11 @@ export interface JointVelocityRequest {
2493
2493
  */
2494
2494
  'message_type'?: JointVelocityRequestMessageTypeEnum;
2495
2495
  /**
2496
- * in [rad/s]
2497
- * @type {Joints}
2496
+ * This structure describes a set of joint values (e.g. positions, currents, torques) of a motion group. Float precision is the default.
2497
+ * @type {Array<number>}
2498
2498
  * @memberof JointVelocityRequest
2499
2499
  */
2500
- 'velocity': Joints;
2500
+ 'velocity': Array<number>;
2501
2501
  }
2502
2502
  export declare const JointVelocityRequestMessageTypeEnum: {
2503
2503
  readonly JointVelocityRequest: "JointVelocityRequest";
@@ -2526,19 +2526,6 @@ export declare const JointVelocityResponseKindEnum: {
2526
2526
  readonly JointVelocityReceived: "JOINT_VELOCITY_RECEIVED";
2527
2527
  };
2528
2528
  export type JointVelocityResponseKindEnum = typeof JointVelocityResponseKindEnum[keyof typeof JointVelocityResponseKindEnum];
2529
- /**
2530
- * This structure describes a set of joint values of a motion group. We call a set of joint values describing the current position in joint space of a motion group a \"joint position\". Joint position was chosen as the term to be consistent with the terms \"joint velocity\" and \"joint acceleration\". `joints` must have as many entries as the motion group\'s degrees of freedom to be valid. Float precision is the default.
2531
- * @export
2532
- * @interface Joints
2533
- */
2534
- export interface Joints {
2535
- /**
2536
- *
2537
- * @type {Array<number>}
2538
- * @memberof Joints
2539
- */
2540
- 'joints': Array<number>;
2541
- }
2542
2529
  /**
2543
2530
  * The configuration of a physical KUKA robot controller has to contain an IP address. Additionally an RSI server configuration has to be specified in order to control the robot. Deploying the server is a functionality of this API.
2544
2531
  * @export
@@ -3127,11 +3114,11 @@ export interface MotionGroupState {
3127
3114
  */
3128
3115
  'controller': string;
3129
3116
  /**
3130
- * Current joint position of each joint in [rad]
3131
- * @type {Joints}
3117
+ * This structure describes a set of joint values (e.g. positions, currents, torques) of a motion group. Float precision is the default.
3118
+ * @type {Array<number>}
3132
3119
  * @memberof MotionGroupState
3133
3120
  */
3134
- 'joint_position': Joints;
3121
+ 'joint_position': Array<number>;
3135
3122
  /**
3136
3123
  * Indicates whether the joint is in a limit for all joints of the motion group.
3137
3124
  * @type {MotionGroupStateJointLimitReached}
@@ -3139,17 +3126,17 @@ export interface MotionGroupState {
3139
3126
  */
3140
3127
  'joint_limit_reached': MotionGroupStateJointLimitReached;
3141
3128
  /**
3142
- * Current joint torque of each joint in [Nm]. Is only available if the robot controller supports it, e.g. available for UR controllers.
3143
- * @type {Joints}
3129
+ * This structure describes a set of joint values (e.g. positions, currents, torques) of a motion group. Float precision is the default.
3130
+ * @type {Array<number>}
3144
3131
  * @memberof MotionGroupState
3145
3132
  */
3146
- 'joint_torque'?: Joints;
3133
+ 'joint_torque'?: Array<number>;
3147
3134
  /**
3148
- * Current at TCP in [A]. Is only available if the robot controller supports it, e.g. available for UR controllers.
3149
- * @type {Joints}
3135
+ * This structure describes a set of joint values (e.g. positions, currents, torques) of a motion group. Float precision is the default.
3136
+ * @type {Array<number>}
3150
3137
  * @memberof MotionGroupState
3151
3138
  */
3152
- 'joint_current'?: Joints;
3139
+ 'joint_current'?: Array<number>;
3153
3140
  /**
3154
3141
  * Pose of the flange. Positions are in [mm]. Oriantations are in [rad]. The pose is relative to the response_coordinate_system specified in the request. For robot arms a flange pose is always returned, for positioners the flange might not be available, depending on the model.
3155
3142
  * @type {Pose}