@wandelbots/nova-api 25.6.0-dev.14 → 25.6.0-dev.15

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.6.0-dev.14",
3
+ "version": "25.6.0-dev.15",
4
4
  "description": "API Client to interact with Wandelbots Public API.",
5
5
  "files": [
6
6
  "*",
package/v2/api.d.ts CHANGED
@@ -2795,6 +2795,31 @@ export interface MotionGroupStateWithoutPayload {
2795
2795
  */
2796
2796
  'coordinate_system': string;
2797
2797
  }
2798
+ /**
2799
+ * Collection of information on the current state of the robot.
2800
+ * @export
2801
+ * @interface MotionState
2802
+ */
2803
+ export interface MotionState {
2804
+ /**
2805
+ * Unique identifier of the motion group that executed the program
2806
+ * @type {string}
2807
+ * @memberof MotionState
2808
+ */
2809
+ 'motion_group_id'?: string;
2810
+ /**
2811
+ * Parameters of the path that was executed
2812
+ * @type {number}
2813
+ * @memberof MotionState
2814
+ */
2815
+ 'path_parameters'?: number;
2816
+ /**
2817
+ *
2818
+ * @type {RobotState}
2819
+ * @memberof MotionState
2820
+ */
2821
+ 'state': RobotState;
2822
+ }
2798
2823
  /**
2799
2824
  *
2800
2825
  * @export
@@ -3651,22 +3676,22 @@ export interface ProgramRun {
3651
3676
  'traceback'?: string;
3652
3677
  /**
3653
3678
  * Start time of the program run
3654
- * @type {number}
3679
+ * @type {string}
3655
3680
  * @memberof ProgramRun
3656
3681
  */
3657
- 'start_time'?: number;
3682
+ 'start_time'?: string;
3658
3683
  /**
3659
3684
  * End time of the program run
3660
- * @type {number}
3685
+ * @type {string}
3661
3686
  * @memberof ProgramRun
3662
3687
  */
3663
- 'end_time'?: number;
3688
+ 'end_time'?: string;
3664
3689
  /**
3665
- * Execution results of the program run
3666
- * @type {Array<ProgramRunResult>}
3690
+ * Paths executed by the motion group
3691
+ * @type {Array<Array<MotionState>>}
3667
3692
  * @memberof ProgramRun
3668
3693
  */
3669
- 'execution_results'?: Array<ProgramRunResult>;
3694
+ 'execution_results'?: Array<Array<MotionState>>;
3670
3695
  }
3671
3696
  /**
3672
3697
  *
@@ -3761,31 +3786,6 @@ export interface ProgramRunRequest {
3761
3786
  */
3762
3787
  'run_args'?: object;
3763
3788
  }
3764
- /**
3765
- * Contains the execution results of a program executed by one motion group. Arguments: motion_group_id: The unique identifier of the motion group motion_duration: The total duration of all executions completed by a motion group paths: The paths executed by the motion group as list of path objects
3766
- * @export
3767
- * @interface ProgramRunResult
3768
- */
3769
- export interface ProgramRunResult {
3770
- /**
3771
- * Unique identifier of the motion group that was executed
3772
- * @type {string}
3773
- * @memberof ProgramRunResult
3774
- */
3775
- 'motion_group_id': string;
3776
- /**
3777
- * Total execution duration of the motion group
3778
- * @type {number}
3779
- * @memberof ProgramRunResult
3780
- */
3781
- 'motion_duration': number;
3782
- /**
3783
- * Paths executed by the motion group as list of path objects
3784
- * @type {Array<Array<RobotState>>}
3785
- * @memberof ProgramRunResult
3786
- */
3787
- 'paths': Array<Array<RobotState>>;
3788
- }
3789
3789
  /**
3790
3790
  * The state of a program run.
3791
3791
  * @export