@wandelbots/nova-api 25.5.0-dev.14 → 25.5.0-dev.16
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/v1/api.d.ts +12 -0
- package/v1/api.js.map +1 -1
- package/v1/api.ts +12 -0
- package/v2/api.d.ts +35 -66
- package/v2/api.js.map +1 -1
- package/v2/api.ts +34 -61
package/package.json
CHANGED
package/v1/api.d.ts
CHANGED
|
@@ -3562,6 +3562,12 @@ export interface MotionGroupState {
|
|
|
3562
3562
|
* @memberof MotionGroupState
|
|
3563
3563
|
*/
|
|
3564
3564
|
'joint_current'?: Joints;
|
|
3565
|
+
/**
|
|
3566
|
+
* Sequence number of the controller state. It starts with 0 upon establishing the connection with a physical controller. The sequence number is reset when the connection to the physical controller is closed and re-established. It is of type string to represent uint64 values, which is not supported by OpenAPI.
|
|
3567
|
+
* @type {string}
|
|
3568
|
+
* @memberof MotionGroupState
|
|
3569
|
+
*/
|
|
3570
|
+
'sequence_number': string;
|
|
3565
3571
|
}
|
|
3566
3572
|
/**
|
|
3567
3573
|
* Indicates which joint of the motion group is in a limit. If a joint is in its limit, only this joint can be moved. Movements that affect any other joints are not executed.
|
|
@@ -5838,6 +5844,12 @@ export interface RobotControllerState {
|
|
|
5838
5844
|
* @memberof RobotControllerState
|
|
5839
5845
|
*/
|
|
5840
5846
|
'motion_groups': Array<MotionGroupState>;
|
|
5847
|
+
/**
|
|
5848
|
+
* Sequence number of the controller state. It starts with 0 upon establishing the connection with a physical controller. The sequence number is reset when the connection to the physical controller is closed and re-established. It is of type string to represent uint64 values, which is not supported by OpenAPI.
|
|
5849
|
+
* @type {string}
|
|
5850
|
+
* @memberof RobotControllerState
|
|
5851
|
+
*/
|
|
5852
|
+
'sequence_number': string;
|
|
5841
5853
|
}
|
|
5842
5854
|
export declare const RobotControllerStateOperationModeEnum: {
|
|
5843
5855
|
readonly OperationModeUnknown: "OPERATION_MODE_UNKNOWN";
|