@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 +1 -1
- package/v2/api.d.ts +14 -27
- package/v2/api.js.map +1 -1
- package/v2/api.ts +14 -27
package/v2/api.ts
CHANGED
|
@@ -2570,10 +2570,10 @@ export interface JointLimits {
|
|
|
2570
2570
|
export interface JointTrajectory {
|
|
2571
2571
|
/**
|
|
2572
2572
|
* List of joint positions [rad] for each sample. The number of samples must match the number of timestamps provided in the times field.
|
|
2573
|
-
* @type {Array<
|
|
2573
|
+
* @type {Array<Array<number>>}
|
|
2574
2574
|
* @memberof JointTrajectory
|
|
2575
2575
|
*/
|
|
2576
|
-
'joint_positions': Array<
|
|
2576
|
+
'joint_positions': Array<Array<number>>;
|
|
2577
2577
|
/**
|
|
2578
2578
|
* Timestamp for each sample [s].
|
|
2579
2579
|
* @type {Array<number>}
|
|
@@ -2600,11 +2600,11 @@ export interface JointVelocityRequest {
|
|
|
2600
2600
|
*/
|
|
2601
2601
|
'message_type'?: JointVelocityRequestMessageTypeEnum;
|
|
2602
2602
|
/**
|
|
2603
|
-
*
|
|
2604
|
-
* @type {
|
|
2603
|
+
* This structure describes a set of joint values (e.g. positions, currents, torques) of a motion group. Float precision is the default.
|
|
2604
|
+
* @type {Array<number>}
|
|
2605
2605
|
* @memberof JointVelocityRequest
|
|
2606
2606
|
*/
|
|
2607
|
-
'velocity':
|
|
2607
|
+
'velocity': Array<number>;
|
|
2608
2608
|
}
|
|
2609
2609
|
|
|
2610
2610
|
export const JointVelocityRequestMessageTypeEnum = {
|
|
@@ -2639,19 +2639,6 @@ export const JointVelocityResponseKindEnum = {
|
|
|
2639
2639
|
|
|
2640
2640
|
export type JointVelocityResponseKindEnum = typeof JointVelocityResponseKindEnum[keyof typeof JointVelocityResponseKindEnum];
|
|
2641
2641
|
|
|
2642
|
-
/**
|
|
2643
|
-
* 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.
|
|
2644
|
-
* @export
|
|
2645
|
-
* @interface Joints
|
|
2646
|
-
*/
|
|
2647
|
-
export interface Joints {
|
|
2648
|
-
/**
|
|
2649
|
-
*
|
|
2650
|
-
* @type {Array<number>}
|
|
2651
|
-
* @memberof Joints
|
|
2652
|
-
*/
|
|
2653
|
-
'joints': Array<number>;
|
|
2654
|
-
}
|
|
2655
2642
|
/**
|
|
2656
2643
|
* 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.
|
|
2657
2644
|
* @export
|
|
@@ -3242,11 +3229,11 @@ export interface MotionGroupState {
|
|
|
3242
3229
|
*/
|
|
3243
3230
|
'controller': string;
|
|
3244
3231
|
/**
|
|
3245
|
-
*
|
|
3246
|
-
* @type {
|
|
3232
|
+
* This structure describes a set of joint values (e.g. positions, currents, torques) of a motion group. Float precision is the default.
|
|
3233
|
+
* @type {Array<number>}
|
|
3247
3234
|
* @memberof MotionGroupState
|
|
3248
3235
|
*/
|
|
3249
|
-
'joint_position':
|
|
3236
|
+
'joint_position': Array<number>;
|
|
3250
3237
|
/**
|
|
3251
3238
|
* Indicates whether the joint is in a limit for all joints of the motion group.
|
|
3252
3239
|
* @type {MotionGroupStateJointLimitReached}
|
|
@@ -3254,17 +3241,17 @@ export interface MotionGroupState {
|
|
|
3254
3241
|
*/
|
|
3255
3242
|
'joint_limit_reached': MotionGroupStateJointLimitReached;
|
|
3256
3243
|
/**
|
|
3257
|
-
*
|
|
3258
|
-
* @type {
|
|
3244
|
+
* This structure describes a set of joint values (e.g. positions, currents, torques) of a motion group. Float precision is the default.
|
|
3245
|
+
* @type {Array<number>}
|
|
3259
3246
|
* @memberof MotionGroupState
|
|
3260
3247
|
*/
|
|
3261
|
-
'joint_torque'?:
|
|
3248
|
+
'joint_torque'?: Array<number>;
|
|
3262
3249
|
/**
|
|
3263
|
-
*
|
|
3264
|
-
* @type {
|
|
3250
|
+
* This structure describes a set of joint values (e.g. positions, currents, torques) of a motion group. Float precision is the default.
|
|
3251
|
+
* @type {Array<number>}
|
|
3265
3252
|
* @memberof MotionGroupState
|
|
3266
3253
|
*/
|
|
3267
|
-
'joint_current'?:
|
|
3254
|
+
'joint_current'?: Array<number>;
|
|
3268
3255
|
/**
|
|
3269
3256
|
* 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.
|
|
3270
3257
|
* @type {Pose}
|