@wandelbots/nova-api 25.5.0-dev.15 → 25.5.0-dev.17

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/v1/api.ts CHANGED
@@ -3620,6 +3620,12 @@ export interface MotionGroupState {
3620
3620
  * @memberof MotionGroupState
3621
3621
  */
3622
3622
  'joint_current'?: Joints;
3623
+ /**
3624
+ * 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.
3625
+ * @type {string}
3626
+ * @memberof MotionGroupState
3627
+ */
3628
+ 'sequence_number': string;
3623
3629
  }
3624
3630
  /**
3625
3631
  * 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.
@@ -5936,6 +5942,12 @@ export interface RobotControllerState {
5936
5942
  * @memberof RobotControllerState
5937
5943
  */
5938
5944
  'motion_groups': Array<MotionGroupState>;
5945
+ /**
5946
+ * 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.
5947
+ * @type {string}
5948
+ * @memberof RobotControllerState
5949
+ */
5950
+ 'sequence_number': string;
5939
5951
  }
5940
5952
 
5941
5953
  export const RobotControllerStateOperationModeEnum = {
package/v2/api.d.ts CHANGED
@@ -5375,6 +5375,12 @@ export interface TrajectoryData {
5375
5375
  * @memberof TrajectoryData
5376
5376
  */
5377
5377
  'message_type': TrajectoryDataMessageTypeEnum;
5378
+ /**
5379
+ * Identifier of the motion-group.
5380
+ * @type {string}
5381
+ * @memberof TrajectoryData
5382
+ */
5383
+ 'motion_group'?: string;
5378
5384
  /**
5379
5385
  * The trajectory consisting of a list of joint positions and an equal number of corresponding timestamps.
5380
5386
  * @type {JointTrajectory}