@wandelbots/nova-api 25.8.0-dev.56 → 25.8.0-dev.57

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
@@ -2847,25 +2847,6 @@ export const LicenseStatusEnum = {
2847
2847
  export type LicenseStatusEnum = typeof LicenseStatusEnum[keyof typeof LicenseStatusEnum];
2848
2848
 
2849
2849
 
2850
- /**
2851
- *
2852
- * @export
2853
- * @interface LimitConfig
2854
- */
2855
- export interface LimitConfig {
2856
- /**
2857
- *
2858
- * @type {LimitSet}
2859
- * @memberof LimitConfig
2860
- */
2861
- 'physical_limits'?: LimitSet;
2862
- /**
2863
- *
2864
- * @type {OperationLimits}
2865
- * @memberof LimitConfig
2866
- */
2867
- 'operation_limits'?: OperationLimits;
2868
- }
2869
2850
  /**
2870
2851
  * The upper_limit must be greater then the lower_limit.
2871
2852
  * @export
@@ -3095,13 +3076,13 @@ export interface MotionGroupDescription {
3095
3076
  * @type {Pose}
3096
3077
  * @memberof MotionGroupDescription
3097
3078
  */
3098
- 'mounting': Pose;
3079
+ 'mounting'?: Pose;
3099
3080
  /**
3100
3081
  * Maps a TCP name to its offset relative to the flange coordinate system. Key must be a TCP identifier. Values are TcpOffsets.
3101
3082
  * @type {{ [key: string]: TcpOffset; }}
3102
3083
  * @memberof MotionGroupDescription
3103
3084
  */
3104
- 'tcps': { [key: string]: TcpOffset; };
3085
+ 'tcps'?: { [key: string]: TcpOffset; };
3105
3086
  /**
3106
3087
  * A collection of identifiable colliders.
3107
3088
  * @type {{ [key: string]: Collider; }}
@@ -3122,10 +3103,10 @@ export interface MotionGroupDescription {
3122
3103
  'safety_tool_colliders'?: { [key: string]: { [key: string]: Collider; }; };
3123
3104
  /**
3124
3105
  *
3125
- * @type {LimitConfig}
3106
+ * @type {OperationLimits}
3126
3107
  * @memberof MotionGroupDescription
3127
3108
  */
3128
- 'global_limits': LimitConfig;
3109
+ 'operation_limits': OperationLimits;
3129
3110
  /**
3130
3111
  * Maps a payload name to its configuration. Key must be a payload identifier. Values are payload objects.
3131
3112
  * @type {{ [key: string]: Payload; }}
@@ -5381,7 +5362,7 @@ export interface TrajectoryId {
5381
5362
  * @type {string}
5382
5363
  * @memberof TrajectoryId
5383
5364
  */
5384
- 'message_type'?: TrajectoryIdMessageTypeEnum;
5365
+ 'message_type': TrajectoryIdMessageTypeEnum;
5385
5366
  /**
5386
5367
  * The identifier of the trajectory which was returned by the [addTrajectory](addTrajectory) endpoint.
5387
5368
  * @type {string}