@wandelbots/nova-api 26.2.0-dev.61 → 26.2.0-dev.63
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/dist/v1/index.d.cts +178 -178
- package/dist/v1/index.d.ts +178 -178
- package/dist/v2/index.cjs +135 -34
- package/dist/v2/index.d.cts +157 -6
- package/dist/v2/index.d.ts +157 -6
- package/dist/v2/index.js +135 -34
- package/package.json +1 -1
package/dist/v2/index.d.ts
CHANGED
|
@@ -1776,6 +1776,72 @@ declare const Manufacturer: {
|
|
|
1776
1776
|
readonly Yaskawa: "yaskawa";
|
|
1777
1777
|
};
|
|
1778
1778
|
type Manufacturer = typeof Manufacturer[keyof typeof Manufacturer];
|
|
1779
|
+
interface MergeTrajectories422Response {
|
|
1780
|
+
'detail'?: Array<MergeTrajectoriesValidationError>;
|
|
1781
|
+
}
|
|
1782
|
+
interface MergeTrajectoriesError {
|
|
1783
|
+
'error_feedback': PlanTrajectoryFailedResponseErrorFeedback;
|
|
1784
|
+
/**
|
|
1785
|
+
* - The location is a scalar value that defines a position along a path, typically ranging from 0 to `n`, where `n` denotes the number of motion commands - Each integer value of the location corresponds to a specific motion command, while non-integer values interpolate positions within the segments. - The location is calculated from the joint path
|
|
1786
|
+
*/
|
|
1787
|
+
'error_location_on_trajectory': number;
|
|
1788
|
+
}
|
|
1789
|
+
interface MergeTrajectoriesRequest {
|
|
1790
|
+
/**
|
|
1791
|
+
* The motion group setup required for collision checking and timescaling.
|
|
1792
|
+
*/
|
|
1793
|
+
'motion_group_setup': MotionGroupSetup;
|
|
1794
|
+
/**
|
|
1795
|
+
* List of trajectory segments to merge together. Each segment contains a trajectory with its own limits override, blending configuration and collision setup.
|
|
1796
|
+
*/
|
|
1797
|
+
'trajectory_segments': Array<MergeTrajectoriesSegment>;
|
|
1798
|
+
}
|
|
1799
|
+
interface MergeTrajectoriesResponse {
|
|
1800
|
+
/**
|
|
1801
|
+
* The merged joint trajectory. If a blending was requested on a segment but could not be applied, the trajectory is merged without blending. The feedback will contain further information on why blending could not be applied.
|
|
1802
|
+
*/
|
|
1803
|
+
'joint_trajectory'?: JointTrajectory;
|
|
1804
|
+
/**
|
|
1805
|
+
* For each blending, feedback will either contain the section in which the trajectory deviates from the original path, or an error message stating why blending could not be applied. The response will include `trajectory_segments` - 1 elements. If no blending was requested at the corresponding segment, the feedback will be a null section where `start_location == end_location`.
|
|
1806
|
+
*/
|
|
1807
|
+
'feedback'?: Array<MergeTrajectoriesResponseFeedbackInner>;
|
|
1808
|
+
}
|
|
1809
|
+
/**
|
|
1810
|
+
* @type MergeTrajectoriesResponseFeedbackInner
|
|
1811
|
+
*/
|
|
1812
|
+
type MergeTrajectoriesResponseFeedbackInner = MergeTrajectoriesError | TrajectorySection;
|
|
1813
|
+
interface MergeTrajectoriesSegment {
|
|
1814
|
+
/**
|
|
1815
|
+
* The trajectory segment to merge. Both the time and location arrays must start at 0 and be strictly increasing.
|
|
1816
|
+
*/
|
|
1817
|
+
'trajectory': JointTrajectory;
|
|
1818
|
+
/**
|
|
1819
|
+
* Limits override is used to override the global limits of the motion group for the blending at the end of this segment.
|
|
1820
|
+
*/
|
|
1821
|
+
'limits_override'?: LimitsOverride;
|
|
1822
|
+
/**
|
|
1823
|
+
* Blending configuration for merging this trajectory segment with the next one. Specifies how the end of this trajectory should be blended with the start of the next trajectory. Ignored for the last segment.
|
|
1824
|
+
*/
|
|
1825
|
+
'blending'?: BlendingPosition;
|
|
1826
|
+
/**
|
|
1827
|
+
* Collision layers to be respected by the motion planner when planning for a single motion group. Each setup represents one layer, e.g., the safety zones and shapes or a fine grained tool and workpiece model. Layers are checked individually along the trajectory and independently of other layers. To respect the safety zones of the controller and check for collision: 1. Fetch the safety zones, link and tool shapes from the controller. 2. Add the fetched zones, links and tools to a layer. 3. Create other layers from your own 3D data as needed. 4. Plan trajectory. 5. The response highlights the layer in which a collision was detected by key.
|
|
1828
|
+
*/
|
|
1829
|
+
'collision_setups'?: {
|
|
1830
|
+
[key: string]: CollisionSetup;
|
|
1831
|
+
};
|
|
1832
|
+
}
|
|
1833
|
+
interface MergeTrajectoriesValidationError {
|
|
1834
|
+
'loc': Array<ValidationErrorLocInner>;
|
|
1835
|
+
'msg': string;
|
|
1836
|
+
'type': string;
|
|
1837
|
+
'input': {
|
|
1838
|
+
[key: string]: any;
|
|
1839
|
+
};
|
|
1840
|
+
/**
|
|
1841
|
+
* Optional data further specifying the merge validation error.
|
|
1842
|
+
*/
|
|
1843
|
+
'data'?: ErrorInvalidJointCount;
|
|
1844
|
+
}
|
|
1779
1845
|
interface MidpointInsertionAlgorithm {
|
|
1780
1846
|
/**
|
|
1781
1847
|
* Algorithm discriminator. Midpoint insertion algorithm configuration for collision-free path planning. This algorithm adds a single midpoint between the start and target joint position to find collision-free paths.
|
|
@@ -1955,7 +2021,7 @@ interface MotionGroupFromJson {
|
|
|
1955
2021
|
/**
|
|
1956
2022
|
* Full JSON configuration of the virtual robot controller. This can be obtained from the physical controller\'s configuration via [getVirtualControllerConfiguration](#/operations/getVirtualControllerConfiguration).
|
|
1957
2023
|
*/
|
|
1958
|
-
'
|
|
2024
|
+
'json_data': string;
|
|
1959
2025
|
/**
|
|
1960
2026
|
* The identifier of the motion group that needs to be extracted from the provided JSON configuration.
|
|
1961
2027
|
*/
|
|
@@ -2845,6 +2911,19 @@ interface RobotController {
|
|
|
2845
2911
|
* @type RobotControllerConfiguration
|
|
2846
2912
|
*/
|
|
2847
2913
|
type RobotControllerConfiguration = AbbController | FanucController | KukaController | UniversalrobotsController | VirtualController | YaskawaController;
|
|
2914
|
+
/**
|
|
2915
|
+
* Information to generate all robot controller configurations that match a given ARP scan result.
|
|
2916
|
+
*/
|
|
2917
|
+
interface RobotControllerConfigurationRequest {
|
|
2918
|
+
/**
|
|
2919
|
+
* The IPv4 address assigned to the network interface where the ARP scan was performed.
|
|
2920
|
+
*/
|
|
2921
|
+
'ip': string;
|
|
2922
|
+
/**
|
|
2923
|
+
* Array of network devices.
|
|
2924
|
+
*/
|
|
2925
|
+
'network_devices': Array<NetworkDevice>;
|
|
2926
|
+
}
|
|
2848
2927
|
/**
|
|
2849
2928
|
* Returns the whole current state of robot controller.
|
|
2850
2929
|
*/
|
|
@@ -3295,6 +3374,10 @@ declare const TrajectoryRunningKindEnum: {
|
|
|
3295
3374
|
readonly Running: "RUNNING";
|
|
3296
3375
|
};
|
|
3297
3376
|
type TrajectoryRunningKindEnum = typeof TrajectoryRunningKindEnum[keyof typeof TrajectoryRunningKindEnum];
|
|
3377
|
+
interface TrajectorySection {
|
|
3378
|
+
'start_location': number;
|
|
3379
|
+
'end_location': number;
|
|
3380
|
+
}
|
|
3298
3381
|
/**
|
|
3299
3382
|
* Waiting for an I/O event to start execution.
|
|
3300
3383
|
*/
|
|
@@ -6240,6 +6323,14 @@ declare class ProgramApi extends BaseAPI {
|
|
|
6240
6323
|
* RobotConfigurationsApi - axios parameter creator
|
|
6241
6324
|
*/
|
|
6242
6325
|
declare const RobotConfigurationsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
6326
|
+
/**
|
|
6327
|
+
* Returns all robot controller configurations that match the provided [ARP scan result](#/operations/getArpScan).
|
|
6328
|
+
* @summary Robot Controller Configurations
|
|
6329
|
+
* @param {RobotControllerConfigurationRequest} robotControllerConfigurationRequest
|
|
6330
|
+
* @param {*} [options] Override http request option.
|
|
6331
|
+
* @throws {RequiredError}
|
|
6332
|
+
*/
|
|
6333
|
+
getControllerConfigFromArpScan: (robotControllerConfigurationRequest: RobotControllerConfigurationRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6243
6334
|
/**
|
|
6244
6335
|
* Returns the identifiers of available robot configurations. A robot configuration represents a robot controller with one or more attached motion groups.
|
|
6245
6336
|
* @summary List Robot Configurations
|
|
@@ -6252,6 +6343,14 @@ declare const RobotConfigurationsApiAxiosParamCreator: (configuration?: Configur
|
|
|
6252
6343
|
* RobotConfigurationsApi - functional programming interface
|
|
6253
6344
|
*/
|
|
6254
6345
|
declare const RobotConfigurationsApiFp: (configuration?: Configuration) => {
|
|
6346
|
+
/**
|
|
6347
|
+
* Returns all robot controller configurations that match the provided [ARP scan result](#/operations/getArpScan).
|
|
6348
|
+
* @summary Robot Controller Configurations
|
|
6349
|
+
* @param {RobotControllerConfigurationRequest} robotControllerConfigurationRequest
|
|
6350
|
+
* @param {*} [options] Override http request option.
|
|
6351
|
+
* @throws {RequiredError}
|
|
6352
|
+
*/
|
|
6353
|
+
getControllerConfigFromArpScan(robotControllerConfigurationRequest: RobotControllerConfigurationRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<RobotController>>>;
|
|
6255
6354
|
/**
|
|
6256
6355
|
* Returns the identifiers of available robot configurations. A robot configuration represents a robot controller with one or more attached motion groups.
|
|
6257
6356
|
* @summary List Robot Configurations
|
|
@@ -6264,6 +6363,14 @@ declare const RobotConfigurationsApiFp: (configuration?: Configuration) => {
|
|
|
6264
6363
|
* RobotConfigurationsApi - factory interface
|
|
6265
6364
|
*/
|
|
6266
6365
|
declare const RobotConfigurationsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
6366
|
+
/**
|
|
6367
|
+
* Returns all robot controller configurations that match the provided [ARP scan result](#/operations/getArpScan).
|
|
6368
|
+
* @summary Robot Controller Configurations
|
|
6369
|
+
* @param {RobotControllerConfigurationRequest} robotControllerConfigurationRequest
|
|
6370
|
+
* @param {*} [options] Override http request option.
|
|
6371
|
+
* @throws {RequiredError}
|
|
6372
|
+
*/
|
|
6373
|
+
getControllerConfigFromArpScan(robotControllerConfigurationRequest: RobotControllerConfigurationRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<RobotController>>;
|
|
6267
6374
|
/**
|
|
6268
6375
|
* Returns the identifiers of available robot configurations. A robot configuration represents a robot controller with one or more attached motion groups.
|
|
6269
6376
|
* @summary List Robot Configurations
|
|
@@ -6276,6 +6383,14 @@ declare const RobotConfigurationsApiFactory: (configuration?: Configuration, bas
|
|
|
6276
6383
|
* RobotConfigurationsApi - object-oriented interface
|
|
6277
6384
|
*/
|
|
6278
6385
|
declare class RobotConfigurationsApi extends BaseAPI {
|
|
6386
|
+
/**
|
|
6387
|
+
* Returns all robot controller configurations that match the provided [ARP scan result](#/operations/getArpScan).
|
|
6388
|
+
* @summary Robot Controller Configurations
|
|
6389
|
+
* @param {RobotControllerConfigurationRequest} robotControllerConfigurationRequest
|
|
6390
|
+
* @param {*} [options] Override http request option.
|
|
6391
|
+
* @throws {RequiredError}
|
|
6392
|
+
*/
|
|
6393
|
+
getControllerConfigFromArpScan(robotControllerConfigurationRequest: RobotControllerConfigurationRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotController[], any>>;
|
|
6279
6394
|
/**
|
|
6280
6395
|
* Returns the identifiers of available robot configurations. A robot configuration represents a robot controller with one or more attached motion groups.
|
|
6281
6396
|
* @summary List Robot Configurations
|
|
@@ -8028,6 +8143,15 @@ declare class TrajectoryExecutionApi extends BaseAPI {
|
|
|
8028
8143
|
* TrajectoryPlanningApi - axios parameter creator
|
|
8029
8144
|
*/
|
|
8030
8145
|
declare const TrajectoryPlanningApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
8146
|
+
/**
|
|
8147
|
+
* <!-- theme: danger --> > **Experimental** Merges a list of joint trajectories into a single trajectory with collision-aware blending. This endpoint merges a list of separate trajectories by connecting them via blending. The blending is performed with collision checking to ensure the merged trajectory is safe to execute. Timescaling will be applied to the blended area to ensure all limits are respected.
|
|
8148
|
+
* @summary Merge Trajectories
|
|
8149
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8150
|
+
* @param {MergeTrajectoriesRequest} mergeTrajectoriesRequest
|
|
8151
|
+
* @param {*} [options] Override http request option.
|
|
8152
|
+
* @throws {RequiredError}
|
|
8153
|
+
*/
|
|
8154
|
+
mergeTrajectories: (cell: string, mergeTrajectoriesRequest: MergeTrajectoriesRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8031
8155
|
/**
|
|
8032
8156
|
* Plans a collision-free trajectory for a single motion group using point-to-point (PTP) motions. This endpoint is specifically designed for collision-free path planning algorithms that find a trajectory from a start joint position to a target position while avoiding obstacles. Use the following workflow to execute a planned collision-free trajectory: 1. Plan a collision-free trajectory. 2. Optional: Load the planned trajectory into the cache using the [addTrajectory](#/operations/addTrajectory) endpoint. 3. Execute the (cached) trajectory using the [executeTrajectory](#/operations/executeTrajectory) endpoint. If the trajectory planning fails due to collision or algorithm constraints, the response will contain error information about the failure.
|
|
8033
8157
|
* @summary Plan Collision-Free Trajectory
|
|
@@ -8051,6 +8175,15 @@ declare const TrajectoryPlanningApiAxiosParamCreator: (configuration?: Configura
|
|
|
8051
8175
|
* TrajectoryPlanningApi - functional programming interface
|
|
8052
8176
|
*/
|
|
8053
8177
|
declare const TrajectoryPlanningApiFp: (configuration?: Configuration) => {
|
|
8178
|
+
/**
|
|
8179
|
+
* <!-- theme: danger --> > **Experimental** Merges a list of joint trajectories into a single trajectory with collision-aware blending. This endpoint merges a list of separate trajectories by connecting them via blending. The blending is performed with collision checking to ensure the merged trajectory is safe to execute. Timescaling will be applied to the blended area to ensure all limits are respected.
|
|
8180
|
+
* @summary Merge Trajectories
|
|
8181
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8182
|
+
* @param {MergeTrajectoriesRequest} mergeTrajectoriesRequest
|
|
8183
|
+
* @param {*} [options] Override http request option.
|
|
8184
|
+
* @throws {RequiredError}
|
|
8185
|
+
*/
|
|
8186
|
+
mergeTrajectories(cell: string, mergeTrajectoriesRequest: MergeTrajectoriesRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MergeTrajectoriesResponse>>;
|
|
8054
8187
|
/**
|
|
8055
8188
|
* Plans a collision-free trajectory for a single motion group using point-to-point (PTP) motions. This endpoint is specifically designed for collision-free path planning algorithms that find a trajectory from a start joint position to a target position while avoiding obstacles. Use the following workflow to execute a planned collision-free trajectory: 1. Plan a collision-free trajectory. 2. Optional: Load the planned trajectory into the cache using the [addTrajectory](#/operations/addTrajectory) endpoint. 3. Execute the (cached) trajectory using the [executeTrajectory](#/operations/executeTrajectory) endpoint. If the trajectory planning fails due to collision or algorithm constraints, the response will contain error information about the failure.
|
|
8056
8189
|
* @summary Plan Collision-Free Trajectory
|
|
@@ -8074,6 +8207,15 @@ declare const TrajectoryPlanningApiFp: (configuration?: Configuration) => {
|
|
|
8074
8207
|
* TrajectoryPlanningApi - factory interface
|
|
8075
8208
|
*/
|
|
8076
8209
|
declare const TrajectoryPlanningApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
8210
|
+
/**
|
|
8211
|
+
* <!-- theme: danger --> > **Experimental** Merges a list of joint trajectories into a single trajectory with collision-aware blending. This endpoint merges a list of separate trajectories by connecting them via blending. The blending is performed with collision checking to ensure the merged trajectory is safe to execute. Timescaling will be applied to the blended area to ensure all limits are respected.
|
|
8212
|
+
* @summary Merge Trajectories
|
|
8213
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8214
|
+
* @param {MergeTrajectoriesRequest} mergeTrajectoriesRequest
|
|
8215
|
+
* @param {*} [options] Override http request option.
|
|
8216
|
+
* @throws {RequiredError}
|
|
8217
|
+
*/
|
|
8218
|
+
mergeTrajectories(cell: string, mergeTrajectoriesRequest: MergeTrajectoriesRequest, options?: RawAxiosRequestConfig): AxiosPromise<MergeTrajectoriesResponse>;
|
|
8077
8219
|
/**
|
|
8078
8220
|
* Plans a collision-free trajectory for a single motion group using point-to-point (PTP) motions. This endpoint is specifically designed for collision-free path planning algorithms that find a trajectory from a start joint position to a target position while avoiding obstacles. Use the following workflow to execute a planned collision-free trajectory: 1. Plan a collision-free trajectory. 2. Optional: Load the planned trajectory into the cache using the [addTrajectory](#/operations/addTrajectory) endpoint. 3. Execute the (cached) trajectory using the [executeTrajectory](#/operations/executeTrajectory) endpoint. If the trajectory planning fails due to collision or algorithm constraints, the response will contain error information about the failure.
|
|
8079
8221
|
* @summary Plan Collision-Free Trajectory
|
|
@@ -8097,6 +8239,15 @@ declare const TrajectoryPlanningApiFactory: (configuration?: Configuration, base
|
|
|
8097
8239
|
* TrajectoryPlanningApi - object-oriented interface
|
|
8098
8240
|
*/
|
|
8099
8241
|
declare class TrajectoryPlanningApi extends BaseAPI {
|
|
8242
|
+
/**
|
|
8243
|
+
* <!-- theme: danger --> > **Experimental** Merges a list of joint trajectories into a single trajectory with collision-aware blending. This endpoint merges a list of separate trajectories by connecting them via blending. The blending is performed with collision checking to ensure the merged trajectory is safe to execute. Timescaling will be applied to the blended area to ensure all limits are respected.
|
|
8244
|
+
* @summary Merge Trajectories
|
|
8245
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8246
|
+
* @param {MergeTrajectoriesRequest} mergeTrajectoriesRequest
|
|
8247
|
+
* @param {*} [options] Override http request option.
|
|
8248
|
+
* @throws {RequiredError}
|
|
8249
|
+
*/
|
|
8250
|
+
mergeTrajectories(cell: string, mergeTrajectoriesRequest: MergeTrajectoriesRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MergeTrajectoriesResponse, any>>;
|
|
8100
8251
|
/**
|
|
8101
8252
|
* Plans a collision-free trajectory for a single motion group using point-to-point (PTP) motions. This endpoint is specifically designed for collision-free path planning algorithms that find a trajectory from a start joint position to a target position while avoiding obstacles. Use the following workflow to execute a planned collision-free trajectory: 1. Plan a collision-free trajectory. 2. Optional: Load the planned trajectory into the cache using the [addTrajectory](#/operations/addTrajectory) endpoint. 3. Execute the (cached) trajectory using the [executeTrajectory](#/operations/executeTrajectory) endpoint. If the trajectory planning fails due to collision or algorithm constraints, the response will contain error information about the failure.
|
|
8102
8253
|
* @summary Plan Collision-Free Trajectory
|
|
@@ -8180,7 +8331,7 @@ declare const VirtualControllerApiAxiosParamCreator: (configuration?: Configurat
|
|
|
8180
8331
|
*/
|
|
8181
8332
|
addVirtualControllerCoordinateSystem: (cell: string, controller: string, coordinateSystem: string, coordinateSystemData: CoordinateSystemData, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8182
8333
|
/**
|
|
8183
|
-
* Adds a motion group configuration for the virtual robot controller. Fields: - Only one of **motion_group_model** or **
|
|
8334
|
+
* Adds a motion group configuration for the virtual robot controller. Fields: - Only one of **motion_group_model** or **json_data** should be set. - **motion_group_model**: Identifies a single motion group. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported types. - **json_data**: Full JSON configuration of the virtual robot controller. This can be obtained from the physical controller\'s configuration via [getVirtualControllerConfiguration](#/operations/getVirtualControllerConfiguration). - **extracted_motion_group_id** (required when using json_data): The motion group identifier to extract from the provided JSON configuration. - **motion_group**: Unique identifier for the motion group to be added. - **initial_joint_position**: Specifies the initial joint position for the added motion group. <!-- theme: info --> > #### NOTE > > When a motion group is added, **the virtual robot is restarted** to apply the new configuration. > > During this restart: > - Robot visualization can temporarily disappear or appear outdated in the UI. > - Motion group changes are not immediately visible in visualizations. > - All connections to virtual robot are closed and re-established, which introduces a short delay before the system is fully operational again. > > The API call itself **does not wait until the restart and re-synchronization are complete**. > This means that immediately after a successful response, the new motion group may not yet be available for use.
|
|
8184
8335
|
* @summary Add Motion Group
|
|
8185
8336
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8186
8337
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -8358,7 +8509,7 @@ declare const VirtualControllerApiFp: (configuration?: Configuration) => {
|
|
|
8358
8509
|
*/
|
|
8359
8510
|
addVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, coordinateSystemData: CoordinateSystemData, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
8360
8511
|
/**
|
|
8361
|
-
* Adds a motion group configuration for the virtual robot controller. Fields: - Only one of **motion_group_model** or **
|
|
8512
|
+
* Adds a motion group configuration for the virtual robot controller. Fields: - Only one of **motion_group_model** or **json_data** should be set. - **motion_group_model**: Identifies a single motion group. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported types. - **json_data**: Full JSON configuration of the virtual robot controller. This can be obtained from the physical controller\'s configuration via [getVirtualControllerConfiguration](#/operations/getVirtualControllerConfiguration). - **extracted_motion_group_id** (required when using json_data): The motion group identifier to extract from the provided JSON configuration. - **motion_group**: Unique identifier for the motion group to be added. - **initial_joint_position**: Specifies the initial joint position for the added motion group. <!-- theme: info --> > #### NOTE > > When a motion group is added, **the virtual robot is restarted** to apply the new configuration. > > During this restart: > - Robot visualization can temporarily disappear or appear outdated in the UI. > - Motion group changes are not immediately visible in visualizations. > - All connections to virtual robot are closed and re-established, which introduces a short delay before the system is fully operational again. > > The API call itself **does not wait until the restart and re-synchronization are complete**. > This means that immediately after a successful response, the new motion group may not yet be available for use.
|
|
8362
8513
|
* @summary Add Motion Group
|
|
8363
8514
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8364
8515
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -8536,7 +8687,7 @@ declare const VirtualControllerApiFactory: (configuration?: Configuration, baseP
|
|
|
8536
8687
|
*/
|
|
8537
8688
|
addVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, coordinateSystemData: CoordinateSystemData, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
8538
8689
|
/**
|
|
8539
|
-
* Adds a motion group configuration for the virtual robot controller. Fields: - Only one of **motion_group_model** or **
|
|
8690
|
+
* Adds a motion group configuration for the virtual robot controller. Fields: - Only one of **motion_group_model** or **json_data** should be set. - **motion_group_model**: Identifies a single motion group. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported types. - **json_data**: Full JSON configuration of the virtual robot controller. This can be obtained from the physical controller\'s configuration via [getVirtualControllerConfiguration](#/operations/getVirtualControllerConfiguration). - **extracted_motion_group_id** (required when using json_data): The motion group identifier to extract from the provided JSON configuration. - **motion_group**: Unique identifier for the motion group to be added. - **initial_joint_position**: Specifies the initial joint position for the added motion group. <!-- theme: info --> > #### NOTE > > When a motion group is added, **the virtual robot is restarted** to apply the new configuration. > > During this restart: > - Robot visualization can temporarily disappear or appear outdated in the UI. > - Motion group changes are not immediately visible in visualizations. > - All connections to virtual robot are closed and re-established, which introduces a short delay before the system is fully operational again. > > The API call itself **does not wait until the restart and re-synchronization are complete**. > This means that immediately after a successful response, the new motion group may not yet be available for use.
|
|
8540
8691
|
* @summary Add Motion Group
|
|
8541
8692
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8542
8693
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -8714,7 +8865,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
8714
8865
|
*/
|
|
8715
8866
|
addVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, coordinateSystemData: CoordinateSystemData, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
8716
8867
|
/**
|
|
8717
|
-
* Adds a motion group configuration for the virtual robot controller. Fields: - Only one of **motion_group_model** or **
|
|
8868
|
+
* Adds a motion group configuration for the virtual robot controller. Fields: - Only one of **motion_group_model** or **json_data** should be set. - **motion_group_model**: Identifies a single motion group. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported types. - **json_data**: Full JSON configuration of the virtual robot controller. This can be obtained from the physical controller\'s configuration via [getVirtualControllerConfiguration](#/operations/getVirtualControllerConfiguration). - **extracted_motion_group_id** (required when using json_data): The motion group identifier to extract from the provided JSON configuration. - **motion_group**: Unique identifier for the motion group to be added. - **initial_joint_position**: Specifies the initial joint position for the added motion group. <!-- theme: info --> > #### NOTE > > When a motion group is added, **the virtual robot is restarted** to apply the new configuration. > > During this restart: > - Robot visualization can temporarily disappear or appear outdated in the UI. > - Motion group changes are not immediately visible in visualizations. > - All connections to virtual robot are closed and re-established, which introduces a short delay before the system is fully operational again. > > The API call itself **does not wait until the restart and re-synchronization are complete**. > This means that immediately after a successful response, the new motion group may not yet be available for use.
|
|
8718
8869
|
* @summary Add Motion Group
|
|
8719
8870
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8720
8871
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -9201,4 +9352,4 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
|
|
|
9201
9352
|
setIOValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
9202
9353
|
}
|
|
9203
9354
|
//#endregion
|
|
9204
|
-
export { AbbController, AbbControllerEgmServer, AbbControllerKindEnum, ActivateLicenseRequest, AddTrajectoryError, AddTrajectoryErrorData, AddTrajectoryRequest, AddTrajectoryResponse, AddVirtualControllerMotionGroupRequest, ApiVersion, App, ApplicationApi, ApplicationApiAxiosParamCreator, ApplicationApiFactory, ApplicationApiFp, BASE_PATH, BUSInputsOutputsApi, BUSInputsOutputsApiAxiosParamCreator, BUSInputsOutputsApiFactory, BUSInputsOutputsApiFp, BaseAPI, Behavior, BlendingAuto, BlendingAutoBlendingNameEnum, BlendingPosition, BlendingPositionBlendingNameEnum, BlendingSpace, BooleanValue, BooleanValueValueTypeEnum, Box, BoxBoxTypeEnum, BoxShapeTypeEnum, BusIODescription, BusIOModbusClient, BusIOModbusClientBusTypeEnum, BusIOModbusServer, BusIOModbusServerBusTypeEnum, BusIOModbusTCPClient, BusIOModbusTCPClientNetworkTypeEnum, BusIOModbusTCPServer, BusIOModbusTCPServerNetworkTypeEnum, BusIOModbusVirtual, BusIOModbusVirtualBusTypeEnum, BusIOProfinet, BusIOProfinetBusTypeEnum, BusIOProfinetDefaultRoute, BusIOProfinetIpConfig, BusIOProfinetNetwork, BusIOProfinetVirtual, BusIOProfinetVirtualBusTypeEnum, BusIOType, BusIOsState, BusIOsStateEnum, COLLECTION_FORMATS, Capsule, CapsuleShapeTypeEnum, CartesianLimits, Cell, CellApi, CellApiAxiosParamCreator, CellApiFactory, CellApiFp, Collider, ColliderShape, Collision, CollisionContact, CollisionError, CollisionErrorKindEnum, CollisionFreeAlgorithm, CollisionSetup, Comparator, Configuration, ConfigurationArchiveStatus, ConfigurationArchiveStatusCreating, ConfigurationArchiveStatusCreatingStatusEnum, ConfigurationArchiveStatusError, ConfigurationArchiveStatusErrorStatusEnum, ConfigurationArchiveStatusSuccess, ConfigurationArchiveStatusSuccessStatusEnum, ConfigurationParameters, ConfigurationResource, ContainerEnvironmentInner, ContainerImage, ContainerImageSecretsInner, ContainerResources, ContainerStorage, ControllerApi, ControllerApiAxiosParamCreator, ControllerApiFactory, ControllerApiFp, ControllerDescription, ControllerInputsOutputsApi, ControllerInputsOutputsApiAxiosParamCreator, ControllerInputsOutputsApiFactory, ControllerInputsOutputsApiFp, ConvexHull, ConvexHullShapeTypeEnum, CoordinateSystem, CoordinateSystemData, CubicSplineParameter, CycleTime, Cylinder, CylinderShapeTypeEnum, DHParameter, Direction, ErrorInvalidJointCount, ErrorInvalidJointCountErrorFeedbackNameEnum, ErrorJointLimitExceeded, ErrorJointLimitExceededErrorFeedbackNameEnum, ErrorJointPositionCollision, ErrorJointPositionCollisionErrorFeedbackNameEnum, ErrorMaxIterationsExceeded, ErrorMaxIterationsExceededErrorFeedbackNameEnum, Execute, ExecuteDetails, ExecuteJoggingRequest, ExecuteJoggingResponse, ExecuteTrajectoryRequest, ExecuteTrajectoryResponse, ExternalJointStreamDatapoint, ExternalJointStreamRequest, FanucController, FanucControllerKindEnum, FeedbackCollision, FeedbackCollisionErrorFeedbackNameEnum, FeedbackJointLimitExceeded, FeedbackJointLimitExceededErrorFeedbackNameEnum, FeedbackOutOfWorkspace, FeedbackOutOfWorkspaceErrorFeedbackNameEnum, FeedbackSingularity, FeedbackSingularityErrorFeedbackNameEnum, Flag, FloatValue, FloatValueValueTypeEnum, ForwardKinematics422Response, ForwardKinematicsRequest, ForwardKinematicsResponse, ForwardKinematicsValidationError, GetTrajectoryResponse, HTTPValidationError, IOBooleanValue, IOBooleanValueValueTypeEnum, IOBoundary, IODescription, IODirection, IOFloatValue, IOFloatValueValueTypeEnum, IOIntegerValue, IOIntegerValueValueTypeEnum, IOOrigin, IOValue, IOValueType, ImageCredentials, InconsistentTrajectorySizeError, InconsistentTrajectorySizeErrorInconsistentTrajectorySize, InconsistentTrajectorySizeErrorKindEnum, InitializeJoggingRequest, InitializeJoggingRequestMessageTypeEnum, InitializeJoggingResponse, InitializeJoggingResponseKindEnum, InitializeMovementRequest, InitializeMovementRequestMessageTypeEnum, InitializeMovementRequestTrajectory, InitializeMovementResponse, InitializeMovementResponseKindEnum, IntegerValue, IntegerValueValueTypeEnum, InvalidDofError, InvalidDofErrorInvalidDof, InvalidDofErrorKindEnum, InverseKinematics422Response, InverseKinematicsRequest, InverseKinematicsResponse, InverseKinematicsValidationError, InverseKinematicsValidationErrorAllOfData, JoggingApi, JoggingApiAxiosParamCreator, JoggingApiFactory, JoggingApiFp, JoggingDetails, JoggingDetailsKindEnum, JoggingDetailsState, JoggingPausedByUser, JoggingPausedByUserKindEnum, JoggingPausedNearCollision, JoggingPausedNearCollisionKindEnum, JoggingPausedNearJointLimit, JoggingPausedNearJointLimitKindEnum, JoggingPausedOnIO, JoggingPausedOnIOKindEnum, JoggingRunning, JoggingRunningKindEnum, JointLimitExceededError, JointLimitExceededErrorKindEnum, JointLimits, JointTrajectory, JointTypeEnum, JointVelocityRequest, JointVelocityRequestMessageTypeEnum, JointVelocityResponse, JointVelocityResponseKindEnum, KinematicModel, KinematicsApi, KinematicsApiAxiosParamCreator, KinematicsApiFactory, KinematicsApiFp, KukaController, KukaControllerKindEnum, KukaControllerRsiServer, License, LicenseApi, LicenseApiAxiosParamCreator, LicenseApiFactory, LicenseApiFp, LicenseStatus, LicenseStatusEnum, LimitRange, LimitSet, LimitsOverride, ListTrajectoriesResponse, Manufacturer, MidpointInsertionAlgorithm, MidpointInsertionAlgorithmAlgorithmNameEnum, ModbusIO, ModbusIOArea, ModbusIOByteOrder, ModbusIOData, ModbusIOTypeEnum, ModelError, MotionCommand, MotionCommandBlending, MotionCommandPath, MotionGroupApi, MotionGroupApiAxiosParamCreator, MotionGroupApiFactory, MotionGroupApiFp, MotionGroupDescription, MotionGroupFromJson, MotionGroupFromType, MotionGroupInfo, MotionGroupJoints, MotionGroupModelsApi, MotionGroupModelsApiAxiosParamCreator, MotionGroupModelsApiFactory, MotionGroupModelsApiFp, MotionGroupSetup, MotionGroupState, MotionGroupStateJointLimitReached, MovementErrorResponse, MovementErrorResponseKindEnum, NanValueError, NanValueErrorKindEnum, NanValueErrorNanValue, NetworkDevice, NetworkInterface, NetworkState, NetworkStateConnectionTypeEnum, OpMode, OperatingState, OperationLimits, OperationMode, OrientationType, PathCartesianPTP, PathCartesianPTPPathDefinitionNameEnum, PathCircle, PathCirclePathDefinitionNameEnum, PathCubicSpline, PathCubicSplinePathDefinitionNameEnum, PathJointPTP, PathJointPTPPathDefinitionNameEnum, PathLine, PathLinePathDefinitionNameEnum, PauseJoggingRequest, PauseJoggingRequestMessageTypeEnum, PauseJoggingResponse, PauseJoggingResponseKindEnum, PauseMovementRequest, PauseMovementRequestMessageTypeEnum, PauseMovementResponse, PauseMovementResponseKindEnum, PauseOnIO, Payload, Plan422Response, PlanCollisionFreeFailedResponse, PlanCollisionFreeRequest, PlanCollisionFreeResponse, PlanCollisionFreeResponseResponse, PlanTrajectoryFailedResponse, PlanTrajectoryFailedResponseErrorFeedback, PlanTrajectoryRequest, PlanTrajectoryResponse, PlanTrajectoryResponseResponse, PlanValidationError, PlanValidationErrorAllOfData, Plane, PlaneShapeTypeEnum, PlaybackSpeedRequest, PlaybackSpeedRequestMessageTypeEnum, PlaybackSpeedResponse, PlaybackSpeedResponseKindEnum, Pose, ProfinetDescription, ProfinetIO, ProfinetIOData, ProfinetIODirection, ProfinetIOTypeEnum, ProfinetInputOutputConfig, ProfinetSlotDescription, ProfinetSubSlotDescription, Program, ProgramApi, ProgramApiAxiosParamCreator, ProgramApiFactory, ProgramApiFp, ProgramRun, ProgramRunState, ProgramStartRequest, RRTConnectAlgorithm, RRTConnectAlgorithmAlgorithmNameEnum, Rectangle, RectangleShapeTypeEnum, RectangularCapsule, RectangularCapsuleShapeTypeEnum, ReleaseChannel, RequestArgs, RequiredError, RobotConfigurationsApi, RobotConfigurationsApiAxiosParamCreator, RobotConfigurationsApiFactory, RobotConfigurationsApiFp, RobotController, RobotControllerConfiguration, RobotControllerState, RobotSystemMode, RobotTcp, RobotTcpData, SafetyStateType, ServiceGroup, ServiceStatus, ServiceStatusPhase, ServiceStatusResponse, ServiceStatusSeverity, ServiceStatusStatus, SetIO, SettableRobotSystemMode, SingularityTypeEnum, Sphere, SphereShapeTypeEnum, StartMovementRequest, StartMovementRequestMessageTypeEnum, StartMovementResponse, StartMovementResponseKindEnum, StartOnIO, StoreCollisionComponentsApi, StoreCollisionComponentsApiAxiosParamCreator, StoreCollisionComponentsApiFactory, StoreCollisionComponentsApiFp, StoreCollisionSetupsApi, StoreCollisionSetupsApiAxiosParamCreator, StoreCollisionSetupsApiFactory, StoreCollisionSetupsApiFp, StoreObjectApi, StoreObjectApiAxiosParamCreator, StoreObjectApiFactory, StoreObjectApiFp, StreamIOValuesResponse, SystemApi, SystemApiAxiosParamCreator, SystemApiFactory, SystemApiFp, TcpOffset, TcpRequiredError, TcpRequiredErrorKindEnum, TcpVelocityRequest, TcpVelocityRequestMessageTypeEnum, TcpVelocityResponse, TcpVelocityResponseKindEnum, TorqueExceededError, TorqueExceededErrorKindEnum, TorqueExceededErrorTorqueExceeded, TrajectoryCachingApi, TrajectoryCachingApiAxiosParamCreator, TrajectoryCachingApiFactory, TrajectoryCachingApiFp, TrajectoryData, TrajectoryDataMessageTypeEnum, TrajectoryDetails, TrajectoryDetailsKindEnum, TrajectoryDetailsState, TrajectoryEnded, TrajectoryEndedKindEnum, TrajectoryExecutionApi, TrajectoryExecutionApiAxiosParamCreator, TrajectoryExecutionApiFactory, TrajectoryExecutionApiFp, TrajectoryId, TrajectoryIdMessageTypeEnum, TrajectoryPausedByUser, TrajectoryPausedByUserKindEnum, TrajectoryPausedOnIO, TrajectoryPausedOnIOKindEnum, TrajectoryPlanningApi, TrajectoryPlanningApiAxiosParamCreator, TrajectoryPlanningApiFactory, TrajectoryPlanningApiFp, TrajectoryRunning, TrajectoryRunningKindEnum, TrajectoryWaitForIO, TrajectoryWaitForIOKindEnum, UnitType, UniversalrobotsController, UniversalrobotsControllerKindEnum, UpdateCellVersionRequest, UpdateNovaVersionRequest, ValidationError, ValidationError2, ValidationErrorLocInner, VersionApi, VersionApiAxiosParamCreator, VersionApiFactory, VersionApiFp, VirtualController, VirtualControllerApi, VirtualControllerApiAxiosParamCreator, VirtualControllerApiFactory, VirtualControllerApiFp, VirtualControllerBehaviorApi, VirtualControllerBehaviorApiAxiosParamCreator, VirtualControllerBehaviorApiFactory, VirtualControllerBehaviorApiFp, VirtualControllerInputsOutputsApi, VirtualControllerInputsOutputsApiAxiosParamCreator, VirtualControllerInputsOutputsApiFactory, VirtualControllerInputsOutputsApiFp, VirtualControllerKindEnum, VirtualRobotConfiguration, WaitForIOEventRequest, YaskawaController, YaskawaControllerKindEnum, operationServerMap };
|
|
9355
|
+
export { AbbController, AbbControllerEgmServer, AbbControllerKindEnum, ActivateLicenseRequest, AddTrajectoryError, AddTrajectoryErrorData, AddTrajectoryRequest, AddTrajectoryResponse, AddVirtualControllerMotionGroupRequest, ApiVersion, App, ApplicationApi, ApplicationApiAxiosParamCreator, ApplicationApiFactory, ApplicationApiFp, BASE_PATH, BUSInputsOutputsApi, BUSInputsOutputsApiAxiosParamCreator, BUSInputsOutputsApiFactory, BUSInputsOutputsApiFp, BaseAPI, Behavior, BlendingAuto, BlendingAutoBlendingNameEnum, BlendingPosition, BlendingPositionBlendingNameEnum, BlendingSpace, BooleanValue, BooleanValueValueTypeEnum, Box, BoxBoxTypeEnum, BoxShapeTypeEnum, BusIODescription, BusIOModbusClient, BusIOModbusClientBusTypeEnum, BusIOModbusServer, BusIOModbusServerBusTypeEnum, BusIOModbusTCPClient, BusIOModbusTCPClientNetworkTypeEnum, BusIOModbusTCPServer, BusIOModbusTCPServerNetworkTypeEnum, BusIOModbusVirtual, BusIOModbusVirtualBusTypeEnum, BusIOProfinet, BusIOProfinetBusTypeEnum, BusIOProfinetDefaultRoute, BusIOProfinetIpConfig, BusIOProfinetNetwork, BusIOProfinetVirtual, BusIOProfinetVirtualBusTypeEnum, BusIOType, BusIOsState, BusIOsStateEnum, COLLECTION_FORMATS, Capsule, CapsuleShapeTypeEnum, CartesianLimits, Cell, CellApi, CellApiAxiosParamCreator, CellApiFactory, CellApiFp, Collider, ColliderShape, Collision, CollisionContact, CollisionError, CollisionErrorKindEnum, CollisionFreeAlgorithm, CollisionSetup, Comparator, Configuration, ConfigurationArchiveStatus, ConfigurationArchiveStatusCreating, ConfigurationArchiveStatusCreatingStatusEnum, ConfigurationArchiveStatusError, ConfigurationArchiveStatusErrorStatusEnum, ConfigurationArchiveStatusSuccess, ConfigurationArchiveStatusSuccessStatusEnum, ConfigurationParameters, ConfigurationResource, ContainerEnvironmentInner, ContainerImage, ContainerImageSecretsInner, ContainerResources, ContainerStorage, ControllerApi, ControllerApiAxiosParamCreator, ControllerApiFactory, ControllerApiFp, ControllerDescription, ControllerInputsOutputsApi, ControllerInputsOutputsApiAxiosParamCreator, ControllerInputsOutputsApiFactory, ControllerInputsOutputsApiFp, ConvexHull, ConvexHullShapeTypeEnum, CoordinateSystem, CoordinateSystemData, CubicSplineParameter, CycleTime, Cylinder, CylinderShapeTypeEnum, DHParameter, Direction, ErrorInvalidJointCount, ErrorInvalidJointCountErrorFeedbackNameEnum, ErrorJointLimitExceeded, ErrorJointLimitExceededErrorFeedbackNameEnum, ErrorJointPositionCollision, ErrorJointPositionCollisionErrorFeedbackNameEnum, ErrorMaxIterationsExceeded, ErrorMaxIterationsExceededErrorFeedbackNameEnum, Execute, ExecuteDetails, ExecuteJoggingRequest, ExecuteJoggingResponse, ExecuteTrajectoryRequest, ExecuteTrajectoryResponse, ExternalJointStreamDatapoint, ExternalJointStreamRequest, FanucController, FanucControllerKindEnum, FeedbackCollision, FeedbackCollisionErrorFeedbackNameEnum, FeedbackJointLimitExceeded, FeedbackJointLimitExceededErrorFeedbackNameEnum, FeedbackOutOfWorkspace, FeedbackOutOfWorkspaceErrorFeedbackNameEnum, FeedbackSingularity, FeedbackSingularityErrorFeedbackNameEnum, Flag, FloatValue, FloatValueValueTypeEnum, ForwardKinematics422Response, ForwardKinematicsRequest, ForwardKinematicsResponse, ForwardKinematicsValidationError, GetTrajectoryResponse, HTTPValidationError, IOBooleanValue, IOBooleanValueValueTypeEnum, IOBoundary, IODescription, IODirection, IOFloatValue, IOFloatValueValueTypeEnum, IOIntegerValue, IOIntegerValueValueTypeEnum, IOOrigin, IOValue, IOValueType, ImageCredentials, InconsistentTrajectorySizeError, InconsistentTrajectorySizeErrorInconsistentTrajectorySize, InconsistentTrajectorySizeErrorKindEnum, InitializeJoggingRequest, InitializeJoggingRequestMessageTypeEnum, InitializeJoggingResponse, InitializeJoggingResponseKindEnum, InitializeMovementRequest, InitializeMovementRequestMessageTypeEnum, InitializeMovementRequestTrajectory, InitializeMovementResponse, InitializeMovementResponseKindEnum, IntegerValue, IntegerValueValueTypeEnum, InvalidDofError, InvalidDofErrorInvalidDof, InvalidDofErrorKindEnum, InverseKinematics422Response, InverseKinematicsRequest, InverseKinematicsResponse, InverseKinematicsValidationError, InverseKinematicsValidationErrorAllOfData, JoggingApi, JoggingApiAxiosParamCreator, JoggingApiFactory, JoggingApiFp, JoggingDetails, JoggingDetailsKindEnum, JoggingDetailsState, JoggingPausedByUser, JoggingPausedByUserKindEnum, JoggingPausedNearCollision, JoggingPausedNearCollisionKindEnum, JoggingPausedNearJointLimit, JoggingPausedNearJointLimitKindEnum, JoggingPausedOnIO, JoggingPausedOnIOKindEnum, JoggingRunning, JoggingRunningKindEnum, JointLimitExceededError, JointLimitExceededErrorKindEnum, JointLimits, JointTrajectory, JointTypeEnum, JointVelocityRequest, JointVelocityRequestMessageTypeEnum, JointVelocityResponse, JointVelocityResponseKindEnum, KinematicModel, KinematicsApi, KinematicsApiAxiosParamCreator, KinematicsApiFactory, KinematicsApiFp, KukaController, KukaControllerKindEnum, KukaControllerRsiServer, License, LicenseApi, LicenseApiAxiosParamCreator, LicenseApiFactory, LicenseApiFp, LicenseStatus, LicenseStatusEnum, LimitRange, LimitSet, LimitsOverride, ListTrajectoriesResponse, Manufacturer, MergeTrajectories422Response, MergeTrajectoriesError, MergeTrajectoriesRequest, MergeTrajectoriesResponse, MergeTrajectoriesResponseFeedbackInner, MergeTrajectoriesSegment, MergeTrajectoriesValidationError, MidpointInsertionAlgorithm, MidpointInsertionAlgorithmAlgorithmNameEnum, ModbusIO, ModbusIOArea, ModbusIOByteOrder, ModbusIOData, ModbusIOTypeEnum, ModelError, MotionCommand, MotionCommandBlending, MotionCommandPath, MotionGroupApi, MotionGroupApiAxiosParamCreator, MotionGroupApiFactory, MotionGroupApiFp, MotionGroupDescription, MotionGroupFromJson, MotionGroupFromType, MotionGroupInfo, MotionGroupJoints, MotionGroupModelsApi, MotionGroupModelsApiAxiosParamCreator, MotionGroupModelsApiFactory, MotionGroupModelsApiFp, MotionGroupSetup, MotionGroupState, MotionGroupStateJointLimitReached, MovementErrorResponse, MovementErrorResponseKindEnum, NanValueError, NanValueErrorKindEnum, NanValueErrorNanValue, NetworkDevice, NetworkInterface, NetworkState, NetworkStateConnectionTypeEnum, OpMode, OperatingState, OperationLimits, OperationMode, OrientationType, PathCartesianPTP, PathCartesianPTPPathDefinitionNameEnum, PathCircle, PathCirclePathDefinitionNameEnum, PathCubicSpline, PathCubicSplinePathDefinitionNameEnum, PathJointPTP, PathJointPTPPathDefinitionNameEnum, PathLine, PathLinePathDefinitionNameEnum, PauseJoggingRequest, PauseJoggingRequestMessageTypeEnum, PauseJoggingResponse, PauseJoggingResponseKindEnum, PauseMovementRequest, PauseMovementRequestMessageTypeEnum, PauseMovementResponse, PauseMovementResponseKindEnum, PauseOnIO, Payload, Plan422Response, PlanCollisionFreeFailedResponse, PlanCollisionFreeRequest, PlanCollisionFreeResponse, PlanCollisionFreeResponseResponse, PlanTrajectoryFailedResponse, PlanTrajectoryFailedResponseErrorFeedback, PlanTrajectoryRequest, PlanTrajectoryResponse, PlanTrajectoryResponseResponse, PlanValidationError, PlanValidationErrorAllOfData, Plane, PlaneShapeTypeEnum, PlaybackSpeedRequest, PlaybackSpeedRequestMessageTypeEnum, PlaybackSpeedResponse, PlaybackSpeedResponseKindEnum, Pose, ProfinetDescription, ProfinetIO, ProfinetIOData, ProfinetIODirection, ProfinetIOTypeEnum, ProfinetInputOutputConfig, ProfinetSlotDescription, ProfinetSubSlotDescription, Program, ProgramApi, ProgramApiAxiosParamCreator, ProgramApiFactory, ProgramApiFp, ProgramRun, ProgramRunState, ProgramStartRequest, RRTConnectAlgorithm, RRTConnectAlgorithmAlgorithmNameEnum, Rectangle, RectangleShapeTypeEnum, RectangularCapsule, RectangularCapsuleShapeTypeEnum, ReleaseChannel, RequestArgs, RequiredError, RobotConfigurationsApi, RobotConfigurationsApiAxiosParamCreator, RobotConfigurationsApiFactory, RobotConfigurationsApiFp, RobotController, RobotControllerConfiguration, RobotControllerConfigurationRequest, RobotControllerState, RobotSystemMode, RobotTcp, RobotTcpData, SafetyStateType, ServiceGroup, ServiceStatus, ServiceStatusPhase, ServiceStatusResponse, ServiceStatusSeverity, ServiceStatusStatus, SetIO, SettableRobotSystemMode, SingularityTypeEnum, Sphere, SphereShapeTypeEnum, StartMovementRequest, StartMovementRequestMessageTypeEnum, StartMovementResponse, StartMovementResponseKindEnum, StartOnIO, StoreCollisionComponentsApi, StoreCollisionComponentsApiAxiosParamCreator, StoreCollisionComponentsApiFactory, StoreCollisionComponentsApiFp, StoreCollisionSetupsApi, StoreCollisionSetupsApiAxiosParamCreator, StoreCollisionSetupsApiFactory, StoreCollisionSetupsApiFp, StoreObjectApi, StoreObjectApiAxiosParamCreator, StoreObjectApiFactory, StoreObjectApiFp, StreamIOValuesResponse, SystemApi, SystemApiAxiosParamCreator, SystemApiFactory, SystemApiFp, TcpOffset, TcpRequiredError, TcpRequiredErrorKindEnum, TcpVelocityRequest, TcpVelocityRequestMessageTypeEnum, TcpVelocityResponse, TcpVelocityResponseKindEnum, TorqueExceededError, TorqueExceededErrorKindEnum, TorqueExceededErrorTorqueExceeded, TrajectoryCachingApi, TrajectoryCachingApiAxiosParamCreator, TrajectoryCachingApiFactory, TrajectoryCachingApiFp, TrajectoryData, TrajectoryDataMessageTypeEnum, TrajectoryDetails, TrajectoryDetailsKindEnum, TrajectoryDetailsState, TrajectoryEnded, TrajectoryEndedKindEnum, TrajectoryExecutionApi, TrajectoryExecutionApiAxiosParamCreator, TrajectoryExecutionApiFactory, TrajectoryExecutionApiFp, TrajectoryId, TrajectoryIdMessageTypeEnum, TrajectoryPausedByUser, TrajectoryPausedByUserKindEnum, TrajectoryPausedOnIO, TrajectoryPausedOnIOKindEnum, TrajectoryPlanningApi, TrajectoryPlanningApiAxiosParamCreator, TrajectoryPlanningApiFactory, TrajectoryPlanningApiFp, TrajectoryRunning, TrajectoryRunningKindEnum, TrajectorySection, TrajectoryWaitForIO, TrajectoryWaitForIOKindEnum, UnitType, UniversalrobotsController, UniversalrobotsControllerKindEnum, UpdateCellVersionRequest, UpdateNovaVersionRequest, ValidationError, ValidationError2, ValidationErrorLocInner, VersionApi, VersionApiAxiosParamCreator, VersionApiFactory, VersionApiFp, VirtualController, VirtualControllerApi, VirtualControllerApiAxiosParamCreator, VirtualControllerApiFactory, VirtualControllerApiFp, VirtualControllerBehaviorApi, VirtualControllerBehaviorApiAxiosParamCreator, VirtualControllerBehaviorApiFactory, VirtualControllerBehaviorApiFp, VirtualControllerInputsOutputsApi, VirtualControllerInputsOutputsApiAxiosParamCreator, VirtualControllerInputsOutputsApiFactory, VirtualControllerInputsOutputsApiFp, VirtualControllerKindEnum, VirtualRobotConfiguration, WaitForIOEventRequest, YaskawaController, YaskawaControllerKindEnum, operationServerMap };
|
package/dist/v2/index.js
CHANGED
|
@@ -4153,56 +4153,108 @@ var ProgramApi = class extends BaseAPI {
|
|
|
4153
4153
|
* RobotConfigurationsApi - axios parameter creator
|
|
4154
4154
|
*/
|
|
4155
4155
|
const RobotConfigurationsApiAxiosParamCreator = function(configuration) {
|
|
4156
|
-
return {
|
|
4157
|
-
|
|
4158
|
-
|
|
4159
|
-
|
|
4160
|
-
|
|
4161
|
-
|
|
4162
|
-
|
|
4163
|
-
|
|
4164
|
-
|
|
4165
|
-
|
|
4166
|
-
|
|
4167
|
-
|
|
4168
|
-
|
|
4169
|
-
|
|
4170
|
-
|
|
4171
|
-
|
|
4172
|
-
|
|
4173
|
-
|
|
4174
|
-
|
|
4175
|
-
|
|
4176
|
-
|
|
4177
|
-
|
|
4178
|
-
|
|
4179
|
-
|
|
4156
|
+
return {
|
|
4157
|
+
getControllerConfigFromArpScan: async (robotControllerConfigurationRequest, options = {}) => {
|
|
4158
|
+
assertParamExists("getControllerConfigFromArpScan", "robotControllerConfigurationRequest", robotControllerConfigurationRequest);
|
|
4159
|
+
const localVarUrlObj = new URL(`/v2/experimental/system/network/controllers`, DUMMY_BASE_URL);
|
|
4160
|
+
let baseOptions;
|
|
4161
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
4162
|
+
const localVarRequestOptions = {
|
|
4163
|
+
method: "POST",
|
|
4164
|
+
...baseOptions,
|
|
4165
|
+
...options
|
|
4166
|
+
};
|
|
4167
|
+
const localVarHeaderParameter = {};
|
|
4168
|
+
const localVarQueryParameter = {};
|
|
4169
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
4170
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
4171
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4172
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4173
|
+
localVarRequestOptions.headers = {
|
|
4174
|
+
...localVarHeaderParameter,
|
|
4175
|
+
...headersFromBaseOptions,
|
|
4176
|
+
...options.headers
|
|
4177
|
+
};
|
|
4178
|
+
localVarRequestOptions.data = serializeDataIfNeeded(robotControllerConfigurationRequest, localVarRequestOptions, configuration);
|
|
4179
|
+
return {
|
|
4180
|
+
url: toPathString(localVarUrlObj),
|
|
4181
|
+
options: localVarRequestOptions
|
|
4182
|
+
};
|
|
4183
|
+
},
|
|
4184
|
+
getRobotConfigurations: async (options = {}) => {
|
|
4185
|
+
const localVarUrlObj = new URL(`/robot-configurations`, DUMMY_BASE_URL);
|
|
4186
|
+
let baseOptions;
|
|
4187
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
4188
|
+
const localVarRequestOptions = {
|
|
4189
|
+
method: "GET",
|
|
4190
|
+
...baseOptions,
|
|
4191
|
+
...options
|
|
4192
|
+
};
|
|
4193
|
+
const localVarHeaderParameter = {};
|
|
4194
|
+
const localVarQueryParameter = {};
|
|
4195
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
4196
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4197
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4198
|
+
localVarRequestOptions.headers = {
|
|
4199
|
+
...localVarHeaderParameter,
|
|
4200
|
+
...headersFromBaseOptions,
|
|
4201
|
+
...options.headers
|
|
4202
|
+
};
|
|
4203
|
+
return {
|
|
4204
|
+
url: toPathString(localVarUrlObj),
|
|
4205
|
+
options: localVarRequestOptions
|
|
4206
|
+
};
|
|
4207
|
+
}
|
|
4208
|
+
};
|
|
4180
4209
|
};
|
|
4181
4210
|
/**
|
|
4182
4211
|
* RobotConfigurationsApi - functional programming interface
|
|
4183
4212
|
*/
|
|
4184
4213
|
const RobotConfigurationsApiFp = function(configuration) {
|
|
4185
4214
|
const localVarAxiosParamCreator = RobotConfigurationsApiAxiosParamCreator(configuration);
|
|
4186
|
-
return {
|
|
4187
|
-
|
|
4188
|
-
|
|
4189
|
-
|
|
4190
|
-
|
|
4191
|
-
|
|
4215
|
+
return {
|
|
4216
|
+
async getControllerConfigFromArpScan(robotControllerConfigurationRequest, options) {
|
|
4217
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getControllerConfigFromArpScan(robotControllerConfigurationRequest, options);
|
|
4218
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4219
|
+
const localVarOperationServerBasePath = operationServerMap["RobotConfigurationsApi.getControllerConfigFromArpScan"]?.[localVarOperationServerIndex]?.url;
|
|
4220
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4221
|
+
},
|
|
4222
|
+
async getRobotConfigurations(options) {
|
|
4223
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getRobotConfigurations(options);
|
|
4224
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4225
|
+
const localVarOperationServerBasePath = operationServerMap["RobotConfigurationsApi.getRobotConfigurations"]?.[localVarOperationServerIndex]?.url;
|
|
4226
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4227
|
+
}
|
|
4228
|
+
};
|
|
4192
4229
|
};
|
|
4193
4230
|
/**
|
|
4194
4231
|
* RobotConfigurationsApi - factory interface
|
|
4195
4232
|
*/
|
|
4196
4233
|
const RobotConfigurationsApiFactory = function(configuration, basePath, axios) {
|
|
4197
4234
|
const localVarFp = RobotConfigurationsApiFp(configuration);
|
|
4198
|
-
return {
|
|
4199
|
-
|
|
4200
|
-
|
|
4235
|
+
return {
|
|
4236
|
+
getControllerConfigFromArpScan(robotControllerConfigurationRequest, options) {
|
|
4237
|
+
return localVarFp.getControllerConfigFromArpScan(robotControllerConfigurationRequest, options).then((request) => request(axios, basePath));
|
|
4238
|
+
},
|
|
4239
|
+
getRobotConfigurations(options) {
|
|
4240
|
+
return localVarFp.getRobotConfigurations(options).then((request) => request(axios, basePath));
|
|
4241
|
+
}
|
|
4242
|
+
};
|
|
4201
4243
|
};
|
|
4202
4244
|
/**
|
|
4203
4245
|
* RobotConfigurationsApi - object-oriented interface
|
|
4204
4246
|
*/
|
|
4205
4247
|
var RobotConfigurationsApi = class extends BaseAPI {
|
|
4248
|
+
/**
|
|
4249
|
+
* Returns all robot controller configurations that match the provided [ARP scan result](#/operations/getArpScan).
|
|
4250
|
+
* @summary Robot Controller Configurations
|
|
4251
|
+
* @param {RobotControllerConfigurationRequest} robotControllerConfigurationRequest
|
|
4252
|
+
* @param {*} [options] Override http request option.
|
|
4253
|
+
* @throws {RequiredError}
|
|
4254
|
+
*/
|
|
4255
|
+
getControllerConfigFromArpScan(robotControllerConfigurationRequest, options) {
|
|
4256
|
+
return RobotConfigurationsApiFp(this.configuration).getControllerConfigFromArpScan(robotControllerConfigurationRequest, options).then((request) => request(this.axios, this.basePath));
|
|
4257
|
+
}
|
|
4206
4258
|
/**
|
|
4207
4259
|
* Returns the identifiers of available robot configurations. A robot configuration represents a robot controller with one or more attached motion groups.
|
|
4208
4260
|
* @summary List Robot Configurations
|
|
@@ -6429,6 +6481,35 @@ var TrajectoryExecutionApi = class extends BaseAPI {
|
|
|
6429
6481
|
*/
|
|
6430
6482
|
const TrajectoryPlanningApiAxiosParamCreator = function(configuration) {
|
|
6431
6483
|
return {
|
|
6484
|
+
mergeTrajectories: async (cell, mergeTrajectoriesRequest, options = {}) => {
|
|
6485
|
+
assertParamExists("mergeTrajectories", "cell", cell);
|
|
6486
|
+
assertParamExists("mergeTrajectories", "mergeTrajectoriesRequest", mergeTrajectoriesRequest);
|
|
6487
|
+
const localVarPath = `/experimental/cells/{cell}/trajectory-planning/merge-trajectories`.replace(`{cell}`, encodeURIComponent(String(cell)));
|
|
6488
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
6489
|
+
let baseOptions;
|
|
6490
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
6491
|
+
const localVarRequestOptions = {
|
|
6492
|
+
method: "POST",
|
|
6493
|
+
...baseOptions,
|
|
6494
|
+
...options
|
|
6495
|
+
};
|
|
6496
|
+
const localVarHeaderParameter = {};
|
|
6497
|
+
const localVarQueryParameter = {};
|
|
6498
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
6499
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
6500
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6501
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6502
|
+
localVarRequestOptions.headers = {
|
|
6503
|
+
...localVarHeaderParameter,
|
|
6504
|
+
...headersFromBaseOptions,
|
|
6505
|
+
...options.headers
|
|
6506
|
+
};
|
|
6507
|
+
localVarRequestOptions.data = serializeDataIfNeeded(mergeTrajectoriesRequest, localVarRequestOptions, configuration);
|
|
6508
|
+
return {
|
|
6509
|
+
url: toPathString(localVarUrlObj),
|
|
6510
|
+
options: localVarRequestOptions
|
|
6511
|
+
};
|
|
6512
|
+
},
|
|
6432
6513
|
planCollisionFree: async (cell, planCollisionFreeRequest, options = {}) => {
|
|
6433
6514
|
assertParamExists("planCollisionFree", "cell", cell);
|
|
6434
6515
|
assertParamExists("planCollisionFree", "planCollisionFreeRequest", planCollisionFreeRequest);
|
|
@@ -6495,6 +6576,12 @@ const TrajectoryPlanningApiAxiosParamCreator = function(configuration) {
|
|
|
6495
6576
|
const TrajectoryPlanningApiFp = function(configuration) {
|
|
6496
6577
|
const localVarAxiosParamCreator = TrajectoryPlanningApiAxiosParamCreator(configuration);
|
|
6497
6578
|
return {
|
|
6579
|
+
async mergeTrajectories(cell, mergeTrajectoriesRequest, options) {
|
|
6580
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.mergeTrajectories(cell, mergeTrajectoriesRequest, options);
|
|
6581
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6582
|
+
const localVarOperationServerBasePath = operationServerMap["TrajectoryPlanningApi.mergeTrajectories"]?.[localVarOperationServerIndex]?.url;
|
|
6583
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
6584
|
+
},
|
|
6498
6585
|
async planCollisionFree(cell, planCollisionFreeRequest, options) {
|
|
6499
6586
|
const localVarAxiosArgs = await localVarAxiosParamCreator.planCollisionFree(cell, planCollisionFreeRequest, options);
|
|
6500
6587
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
@@ -6515,6 +6602,9 @@ const TrajectoryPlanningApiFp = function(configuration) {
|
|
|
6515
6602
|
const TrajectoryPlanningApiFactory = function(configuration, basePath, axios) {
|
|
6516
6603
|
const localVarFp = TrajectoryPlanningApiFp(configuration);
|
|
6517
6604
|
return {
|
|
6605
|
+
mergeTrajectories(cell, mergeTrajectoriesRequest, options) {
|
|
6606
|
+
return localVarFp.mergeTrajectories(cell, mergeTrajectoriesRequest, options).then((request) => request(axios, basePath));
|
|
6607
|
+
},
|
|
6518
6608
|
planCollisionFree(cell, planCollisionFreeRequest, options) {
|
|
6519
6609
|
return localVarFp.planCollisionFree(cell, planCollisionFreeRequest, options).then((request) => request(axios, basePath));
|
|
6520
6610
|
},
|
|
@@ -6527,6 +6617,17 @@ const TrajectoryPlanningApiFactory = function(configuration, basePath, axios) {
|
|
|
6527
6617
|
* TrajectoryPlanningApi - object-oriented interface
|
|
6528
6618
|
*/
|
|
6529
6619
|
var TrajectoryPlanningApi = class extends BaseAPI {
|
|
6620
|
+
/**
|
|
6621
|
+
* <!-- theme: danger --> > **Experimental** Merges a list of joint trajectories into a single trajectory with collision-aware blending. This endpoint merges a list of separate trajectories by connecting them via blending. The blending is performed with collision checking to ensure the merged trajectory is safe to execute. Timescaling will be applied to the blended area to ensure all limits are respected.
|
|
6622
|
+
* @summary Merge Trajectories
|
|
6623
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6624
|
+
* @param {MergeTrajectoriesRequest} mergeTrajectoriesRequest
|
|
6625
|
+
* @param {*} [options] Override http request option.
|
|
6626
|
+
* @throws {RequiredError}
|
|
6627
|
+
*/
|
|
6628
|
+
mergeTrajectories(cell, mergeTrajectoriesRequest, options) {
|
|
6629
|
+
return TrajectoryPlanningApiFp(this.configuration).mergeTrajectories(cell, mergeTrajectoriesRequest, options).then((request) => request(this.axios, this.basePath));
|
|
6630
|
+
}
|
|
6530
6631
|
/**
|
|
6531
6632
|
* Plans a collision-free trajectory for a single motion group using point-to-point (PTP) motions. This endpoint is specifically designed for collision-free path planning algorithms that find a trajectory from a start joint position to a target position while avoiding obstacles. Use the following workflow to execute a planned collision-free trajectory: 1. Plan a collision-free trajectory. 2. Optional: Load the planned trajectory into the cache using the [addTrajectory](#/operations/addTrajectory) endpoint. 3. Execute the (cached) trajectory using the [executeTrajectory](#/operations/executeTrajectory) endpoint. If the trajectory planning fails due to collision or algorithm constraints, the response will contain error information about the failure.
|
|
6532
6633
|
* @summary Plan Collision-Free Trajectory
|
|
@@ -7298,7 +7399,7 @@ var VirtualControllerApi = class extends BaseAPI {
|
|
|
7298
7399
|
return VirtualControllerApiFp(this.configuration).addVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options).then((request) => request(this.axios, this.basePath));
|
|
7299
7400
|
}
|
|
7300
7401
|
/**
|
|
7301
|
-
* Adds a motion group configuration for the virtual robot controller. Fields: - Only one of **motion_group_model** or **
|
|
7402
|
+
* Adds a motion group configuration for the virtual robot controller. Fields: - Only one of **motion_group_model** or **json_data** should be set. - **motion_group_model**: Identifies a single motion group. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported types. - **json_data**: Full JSON configuration of the virtual robot controller. This can be obtained from the physical controller\'s configuration via [getVirtualControllerConfiguration](#/operations/getVirtualControllerConfiguration). - **extracted_motion_group_id** (required when using json_data): The motion group identifier to extract from the provided JSON configuration. - **motion_group**: Unique identifier for the motion group to be added. - **initial_joint_position**: Specifies the initial joint position for the added motion group. <!-- theme: info --> > #### NOTE > > When a motion group is added, **the virtual robot is restarted** to apply the new configuration. > > During this restart: > - Robot visualization can temporarily disappear or appear outdated in the UI. > - Motion group changes are not immediately visible in visualizations. > - All connections to virtual robot are closed and re-established, which introduces a short delay before the system is fully operational again. > > The API call itself **does not wait until the restart and re-synchronization are complete**. > This means that immediately after a successful response, the new motion group may not yet be available for use.
|
|
7302
7403
|
* @summary Add Motion Group
|
|
7303
7404
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7304
7405
|
* @param {string} controller Unique identifier to address a controller in the cell.
|