@wandelbots/nova-api 25.4.0-dev.16 → 25.4.0-dev.18

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wandelbots/nova-api",
3
- "version": "25.4.0-dev.16",
3
+ "version": "25.4.0-dev.18",
4
4
  "description": "API Client to interact with Wandelbots Public API.",
5
5
  "files": [
6
6
  "*",
package/v2/api.d.ts CHANGED
@@ -3249,7 +3249,7 @@ export interface ModelError {
3249
3249
  * @type {string}
3250
3250
  * @memberof ModelError
3251
3251
  */
3252
- 'code': string;
3252
+ 'code'?: string;
3253
3253
  /**
3254
3254
  *
3255
3255
  * @type {string}
@@ -3294,7 +3294,7 @@ export type MotionCommandBlending = BlendingAuto | BlendingPosition;
3294
3294
  */
3295
3295
  export type MotionCommandPath = PathCartesianPTP | PathCircle | PathCubicSpline | PathJointPTP | PathLine;
3296
3296
  /**
3297
- * The data type describes the physically connected motion groups on a robot controller, e.g. a robot arm.
3297
+ * The data type describes the physically connected motion groups on a robot controller, e.g., a robot arm.
3298
3298
  * @export
3299
3299
  * @interface MotionGroup
3300
3300
  */
@@ -3318,11 +3318,17 @@ export interface MotionGroup {
3318
3318
  */
3319
3319
  'name_from_controller': string;
3320
3320
  /**
3321
- * The robot controller model if available. Usable for frontend 3D visualization.
3321
+ * The robot controller model, if available. Usable for frontend 3D visualization.
3322
3322
  * @type {string}
3323
3323
  * @memberof MotionGroup
3324
3324
  */
3325
3325
  'model_from_controller': string;
3326
+ /**
3327
+ * 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.
3328
+ * @type {string}
3329
+ * @memberof MotionGroup
3330
+ */
3331
+ 'serial_number'?: string;
3326
3332
  }
3327
3333
  /**
3328
3334
  *
@@ -3563,11 +3569,17 @@ export interface MotionGroupPhysical {
3563
3569
  */
3564
3570
  'active': boolean;
3565
3571
  /**
3566
- * The robot controller model if available. Usable for frontend 3D visualization.
3572
+ * The robot controller model, if available. Usable for frontend 3D visualization.
3567
3573
  * @type {string}
3568
3574
  * @memberof MotionGroupPhysical
3569
3575
  */
3570
3576
  'model_from_controller'?: string;
3577
+ /**
3578
+ * 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.
3579
+ * @type {string}
3580
+ * @memberof MotionGroupPhysical
3581
+ */
3582
+ 'serial_number'?: string;
3571
3583
  }
3572
3584
  /**
3573
3585
  * Holding static properties of the motion group.