@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/package.json
CHANGED
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<
|
|
2466
|
+
* @type {Array<Array<number>>}
|
|
2467
2467
|
* @memberof JointTrajectory
|
|
2468
2468
|
*/
|
|
2469
|
-
'joint_positions': Array<
|
|
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
|
-
*
|
|
2497
|
-
* @type {
|
|
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':
|
|
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
|
-
*
|
|
3131
|
-
* @type {
|
|
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':
|
|
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
|
-
*
|
|
3143
|
-
* @type {
|
|
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'?:
|
|
3133
|
+
'joint_torque'?: Array<number>;
|
|
3147
3134
|
/**
|
|
3148
|
-
*
|
|
3149
|
-
* @type {
|
|
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'?:
|
|
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}
|