@wandelbots/nova-api 25.4.0-dev.15 → 25.4.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/v2/api.ts CHANGED
@@ -3348,7 +3348,7 @@ export interface ModelError {
3348
3348
  * @type {string}
3349
3349
  * @memberof ModelError
3350
3350
  */
3351
- 'code': string;
3351
+ 'code'?: string;
3352
3352
  /**
3353
3353
  *
3354
3354
  * @type {string}
@@ -3395,7 +3395,7 @@ export type MotionCommandBlending = BlendingAuto | BlendingPosition;
3395
3395
  export type MotionCommandPath = PathCartesianPTP | PathCircle | PathCubicSpline | PathJointPTP | PathLine;
3396
3396
 
3397
3397
  /**
3398
- * The data type describes the physically connected motion groups on a robot controller, e.g. a robot arm.
3398
+ * The data type describes the physically connected motion groups on a robot controller, e.g., a robot arm.
3399
3399
  * @export
3400
3400
  * @interface MotionGroup
3401
3401
  */
@@ -3419,11 +3419,17 @@ export interface MotionGroup {
3419
3419
  */
3420
3420
  'name_from_controller': string;
3421
3421
  /**
3422
- * The robot controller model if available. Usable for frontend 3D visualization.
3422
+ * The robot controller model, if available. Usable for frontend 3D visualization.
3423
3423
  * @type {string}
3424
3424
  * @memberof MotionGroup
3425
3425
  */
3426
3426
  'model_from_controller': string;
3427
+ /**
3428
+ * The serial number of the motion group, if available. If not available, the serial number of the robot controller. if available. If not available, then empty.
3429
+ * @type {string}
3430
+ * @memberof MotionGroup
3431
+ */
3432
+ 'serial_number'?: string;
3427
3433
  }
3428
3434
  /**
3429
3435
  *
@@ -3670,11 +3676,17 @@ export interface MotionGroupPhysical {
3670
3676
  */
3671
3677
  'active': boolean;
3672
3678
  /**
3673
- * The robot controller model if available. Usable for frontend 3D visualization.
3679
+ * The robot controller model, if available. Usable for frontend 3D visualization.
3674
3680
  * @type {string}
3675
3681
  * @memberof MotionGroupPhysical
3676
3682
  */
3677
3683
  'model_from_controller'?: string;
3684
+ /**
3685
+ * The serial number of the motion group, if available. If not available, the serial number of the robot controller. if available. If not available, the response is empty.
3686
+ * @type {string}
3687
+ * @memberof MotionGroupPhysical
3688
+ */
3689
+ 'serial_number'?: string;
3678
3690
  }
3679
3691
  /**
3680
3692
  * Holding static properties of the motion group.