@wandelbots/nova-api 25.6.0-dev.13 → 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/v2/api.ts CHANGED
@@ -2872,6 +2872,31 @@ export interface MotionGroupStateWithoutPayload {
2872
2872
  */
2873
2873
  'coordinate_system': string;
2874
2874
  }
2875
+ /**
2876
+ * Collection of information on the current state of the robot.
2877
+ * @export
2878
+ * @interface MotionState
2879
+ */
2880
+ export interface MotionState {
2881
+ /**
2882
+ * Unique identifier of the motion group that executed the program
2883
+ * @type {string}
2884
+ * @memberof MotionState
2885
+ */
2886
+ 'motion_group_id'?: string;
2887
+ /**
2888
+ * Parameters of the path that was executed
2889
+ * @type {number}
2890
+ * @memberof MotionState
2891
+ */
2892
+ 'path_parameters'?: number;
2893
+ /**
2894
+ *
2895
+ * @type {RobotState}
2896
+ * @memberof MotionState
2897
+ */
2898
+ 'state': RobotState;
2899
+ }
2875
2900
  /**
2876
2901
  *
2877
2902
  * @export
@@ -3762,22 +3787,22 @@ export interface ProgramRun {
3762
3787
  'traceback'?: string;
3763
3788
  /**
3764
3789
  * Start time of the program run
3765
- * @type {number}
3790
+ * @type {string}
3766
3791
  * @memberof ProgramRun
3767
3792
  */
3768
- 'start_time'?: number;
3793
+ 'start_time'?: string;
3769
3794
  /**
3770
3795
  * End time of the program run
3771
- * @type {number}
3796
+ * @type {string}
3772
3797
  * @memberof ProgramRun
3773
3798
  */
3774
- 'end_time'?: number;
3799
+ 'end_time'?: string;
3775
3800
  /**
3776
- * Execution results of the program run
3777
- * @type {Array<ProgramRunResult>}
3801
+ * Paths executed by the motion group
3802
+ * @type {Array<Array<MotionState>>}
3778
3803
  * @memberof ProgramRun
3779
3804
  */
3780
- 'execution_results'?: Array<ProgramRunResult>;
3805
+ 'execution_results'?: Array<Array<MotionState>>;
3781
3806
  }
3782
3807
 
3783
3808
 
@@ -3876,31 +3901,6 @@ export interface ProgramRunRequest {
3876
3901
  */
3877
3902
  'run_args'?: object;
3878
3903
  }
3879
- /**
3880
- * 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
3881
- * @export
3882
- * @interface ProgramRunResult
3883
- */
3884
- export interface ProgramRunResult {
3885
- /**
3886
- * Unique identifier of the motion group that was executed
3887
- * @type {string}
3888
- * @memberof ProgramRunResult
3889
- */
3890
- 'motion_group_id': string;
3891
- /**
3892
- * Total execution duration of the motion group
3893
- * @type {number}
3894
- * @memberof ProgramRunResult
3895
- */
3896
- 'motion_duration': number;
3897
- /**
3898
- * Paths executed by the motion group as list of path objects
3899
- * @type {Array<Array<RobotState>>}
3900
- * @memberof ProgramRunResult
3901
- */
3902
- 'paths': Array<Array<RobotState>>;
3903
- }
3904
3904
  /**
3905
3905
  * The state of a program run.
3906
3906
  * @export