@wandelbots/nova-api 25.7.0-dev.7 → 25.7.0-dev.9

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.7.0-dev.7",
3
+ "version": "25.7.0-dev.9",
4
4
  "description": "API Client to interact with Wandelbots Public API.",
5
5
  "files": [
6
6
  "*",
package/v2/api.d.ts CHANGED
@@ -1118,19 +1118,6 @@ export declare const EndOfTrajectoryKindEnum: {
1118
1118
  readonly EndOfTrajectory: "END_OF_TRAJECTORY";
1119
1119
  };
1120
1120
  export type EndOfTrajectoryKindEnum = typeof EndOfTrajectoryKindEnum[keyof typeof EndOfTrajectoryKindEnum];
1121
- /**
1122
- *
1123
- * @export
1124
- * @interface Error2
1125
- */
1126
- export interface Error2 {
1127
- /**
1128
- *
1129
- * @type {string}
1130
- * @memberof Error2
1131
- */
1132
- 'message': string;
1133
- }
1134
1121
  /**
1135
1122
  * Details about the state of the motion execution. The details are either for a jogging or a trajectory. If NOVA is not controlling this motion group at the moment, this field is omitted.
1136
1123
  * @export
@@ -4330,7 +4317,7 @@ export interface VirtualController {
4330
4317
  */
4331
4318
  'type'?: VirtualControllerTypes;
4332
4319
  /**
4333
- * Complete JSON configuration of the virtual robot controller. Can be obtained from the physical controller\'s configuration via [getVirtualRobotConfiguration](getVirtualRobotConfiguration). If provided, the `type` field should not be used.
4320
+ * Complete JSON configuration of the virtual robot controller. Can be obtained from the physical controller\'s configuration via [getVirtualControllerConfiguration](getVirtualControllerConfiguration). If provided, the `type` field should not be used.
4334
4321
  * @type {string}
4335
4322
  * @memberof VirtualController
4336
4323
  */
@@ -5155,13 +5142,13 @@ export declare const ControllerApiAxiosParamCreator: (configuration?: Configurat
5155
5142
  getRobotController: (cell: string, controller: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5156
5143
  /**
5157
5144
  * Receive data to configure a virtual robot controller based on another controller. This can be used to create a virtual clone of a specific physical robot. When adding a virtual controller, use the Virtual configuration variant of [addRobotController](addRobotController) and pass the content string from this endpoint as the `json` field. Omit the `type` field that selects a preset configuration which is not required when providing a complete configuration. > **NOTE** > > The output generated by this endpoint can be too large for the site to handle, and may produce an error or incorrect output. > Use `curl` in combination with `> output.json` to capture the output, or use an API client like Postman.
5158
- * @summary Virtual Robot Configuration
5145
+ * @summary Virtual Controller Configuration
5159
5146
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5160
5147
  * @param {string} controller Unique identifier to address a controller in the cell.
5161
5148
  * @param {*} [options] Override http request option.
5162
5149
  * @throws {RequiredError}
5163
5150
  */
5164
- getVirtualRobotConfiguration: (cell: string, controller: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5151
+ getVirtualControllerConfiguration: (cell: string, controller: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5165
5152
  /**
5166
5153
  * Lists all specifications of coordinate systems from robot controllers. Use parameter orientation_type to get the orientation part of the transformation offset of the coordinate system returned in the requested orientation notation. If parameter orientation_type is not set, the orientation part of the transformation offset of the coordinate system is returned in rotation vector notation. The coordinate systems from the robot controller are loaded when the motion group associated with the coordinate system is activated. With deactivation of the motion group, the associated coordinate systems are removed from NOVA. The unique identifier of the coordinate systems from the robot controllers are suffixed with \"On\" + the unique identifier of the robot controller.
5167
5154
  * @summary List Coordinate Systems
@@ -5305,13 +5292,13 @@ export declare const ControllerApiFp: (configuration?: Configuration) => {
5305
5292
  getRobotController(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RobotController>>;
5306
5293
  /**
5307
5294
  * Receive data to configure a virtual robot controller based on another controller. This can be used to create a virtual clone of a specific physical robot. When adding a virtual controller, use the Virtual configuration variant of [addRobotController](addRobotController) and pass the content string from this endpoint as the `json` field. Omit the `type` field that selects a preset configuration which is not required when providing a complete configuration. > **NOTE** > > The output generated by this endpoint can be too large for the site to handle, and may produce an error or incorrect output. > Use `curl` in combination with `> output.json` to capture the output, or use an API client like Postman.
5308
- * @summary Virtual Robot Configuration
5295
+ * @summary Virtual Controller Configuration
5309
5296
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5310
5297
  * @param {string} controller Unique identifier to address a controller in the cell.
5311
5298
  * @param {*} [options] Override http request option.
5312
5299
  * @throws {RequiredError}
5313
5300
  */
5314
- getVirtualRobotConfiguration(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VirtualRobotConfiguration>>;
5301
+ getVirtualControllerConfiguration(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VirtualRobotConfiguration>>;
5315
5302
  /**
5316
5303
  * Lists all specifications of coordinate systems from robot controllers. Use parameter orientation_type to get the orientation part of the transformation offset of the coordinate system returned in the requested orientation notation. If parameter orientation_type is not set, the orientation part of the transformation offset of the coordinate system is returned in rotation vector notation. The coordinate systems from the robot controller are loaded when the motion group associated with the coordinate system is activated. With deactivation of the motion group, the associated coordinate systems are removed from NOVA. The unique identifier of the coordinate systems from the robot controllers are suffixed with \"On\" + the unique identifier of the robot controller.
5317
5304
  * @summary List Coordinate Systems
@@ -5455,13 +5442,13 @@ export declare const ControllerApiFactory: (configuration?: Configuration, baseP
5455
5442
  getRobotController(cell: string, controller: string, options?: RawAxiosRequestConfig): AxiosPromise<RobotController>;
5456
5443
  /**
5457
5444
  * Receive data to configure a virtual robot controller based on another controller. This can be used to create a virtual clone of a specific physical robot. When adding a virtual controller, use the Virtual configuration variant of [addRobotController](addRobotController) and pass the content string from this endpoint as the `json` field. Omit the `type` field that selects a preset configuration which is not required when providing a complete configuration. > **NOTE** > > The output generated by this endpoint can be too large for the site to handle, and may produce an error or incorrect output. > Use `curl` in combination with `> output.json` to capture the output, or use an API client like Postman.
5458
- * @summary Virtual Robot Configuration
5445
+ * @summary Virtual Controller Configuration
5459
5446
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5460
5447
  * @param {string} controller Unique identifier to address a controller in the cell.
5461
5448
  * @param {*} [options] Override http request option.
5462
5449
  * @throws {RequiredError}
5463
5450
  */
5464
- getVirtualRobotConfiguration(cell: string, controller: string, options?: RawAxiosRequestConfig): AxiosPromise<VirtualRobotConfiguration>;
5451
+ getVirtualControllerConfiguration(cell: string, controller: string, options?: RawAxiosRequestConfig): AxiosPromise<VirtualRobotConfiguration>;
5465
5452
  /**
5466
5453
  * Lists all specifications of coordinate systems from robot controllers. Use parameter orientation_type to get the orientation part of the transformation offset of the coordinate system returned in the requested orientation notation. If parameter orientation_type is not set, the orientation part of the transformation offset of the coordinate system is returned in rotation vector notation. The coordinate systems from the robot controller are loaded when the motion group associated with the coordinate system is activated. With deactivation of the motion group, the associated coordinate systems are removed from NOVA. The unique identifier of the coordinate systems from the robot controllers are suffixed with \"On\" + the unique identifier of the robot controller.
5467
5454
  * @summary List Coordinate Systems
@@ -5615,14 +5602,14 @@ export declare class ControllerApi extends BaseAPI {
5615
5602
  getRobotController(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RobotController, any>>;
5616
5603
  /**
5617
5604
  * Receive data to configure a virtual robot controller based on another controller. This can be used to create a virtual clone of a specific physical robot. When adding a virtual controller, use the Virtual configuration variant of [addRobotController](addRobotController) and pass the content string from this endpoint as the `json` field. Omit the `type` field that selects a preset configuration which is not required when providing a complete configuration. > **NOTE** > > The output generated by this endpoint can be too large for the site to handle, and may produce an error or incorrect output. > Use `curl` in combination with `> output.json` to capture the output, or use an API client like Postman.
5618
- * @summary Virtual Robot Configuration
5605
+ * @summary Virtual Controller Configuration
5619
5606
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5620
5607
  * @param {string} controller Unique identifier to address a controller in the cell.
5621
5608
  * @param {*} [options] Override http request option.
5622
5609
  * @throws {RequiredError}
5623
5610
  * @memberof ControllerApi
5624
5611
  */
5625
- getVirtualRobotConfiguration(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VirtualRobotConfiguration, any>>;
5612
+ getVirtualControllerConfiguration(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VirtualRobotConfiguration, any>>;
5626
5613
  /**
5627
5614
  * Lists all specifications of coordinate systems from robot controllers. Use parameter orientation_type to get the orientation part of the transformation offset of the coordinate system returned in the requested orientation notation. If parameter orientation_type is not set, the orientation part of the transformation offset of the coordinate system is returned in rotation vector notation. The coordinate systems from the robot controller are loaded when the motion group associated with the coordinate system is activated. With deactivation of the motion group, the associated coordinate systems are removed from NOVA. The unique identifier of the coordinate systems from the robot controllers are suffixed with \"On\" + the unique identifier of the robot controller.
5628
5615
  * @summary List Coordinate Systems
@@ -8138,7 +8125,7 @@ export declare const VirtualControllerApiAxiosParamCreator: (configuration?: Con
8138
8125
  * @param {*} [options] Override http request option.
8139
8126
  * @throws {RequiredError}
8140
8127
  */
8141
- addVirtualRobotCoordinateSystem: (cell: string, controller: string, coordinateSystem: string, coordinateSystemData: CoordinateSystemData, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8128
+ addVirtualControllerCoordinateSystem: (cell: string, controller: string, coordinateSystem: string, coordinateSystemData: CoordinateSystemData, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8142
8129
  /**
8143
8130
  * Adds a new TCP or updates an existing TCP in the motion group. The position and rotation values in the request body are defined within the flange’s coordinate system. > **NOTE** > > Ensure the TCP\'s position is within the robot\'s reach. Refer to the robot’s documentation or data sheet for details like joint limits or reach.
8144
8131
  * @summary Add TCP
@@ -8150,7 +8137,7 @@ export declare const VirtualControllerApiAxiosParamCreator: (configuration?: Con
8150
8137
  * @param {*} [options] Override http request option.
8151
8138
  * @throws {RequiredError}
8152
8139
  */
8153
- addVirtualRobotTcp: (cell: string, controller: string, motionGroup: string, tcp: string, robotTcpData: RobotTcpData, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8140
+ addVirtualControllerTcp: (cell: string, controller: string, motionGroup: string, tcp: string, robotTcpData: RobotTcpData, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8154
8141
  /**
8155
8142
  * Deletes a coordinate system from the virtual controller. This will remove the coordinate system from the list of coordinate systems and remove all dependent coordinate systems which use the deleted coordinate system as reference.
8156
8143
  * @summary Remove Coordinate System
@@ -8161,7 +8148,7 @@ export declare const VirtualControllerApiAxiosParamCreator: (configuration?: Con
8161
8148
  * @param {*} [options] Override http request option.
8162
8149
  * @throws {RequiredError}
8163
8150
  */
8164
- deleteVirtualRobotCoordinateSystem: (cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8151
+ deleteVirtualControllerCoordinateSystem: (cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8165
8152
  /**
8166
8153
  * Removes the TCP from the motion group. An unknown TCP is a valid input.
8167
8154
  * @summary Remove TCP
@@ -8172,7 +8159,7 @@ export declare const VirtualControllerApiAxiosParamCreator: (configuration?: Con
8172
8159
  * @param {*} [options] Override http request option.
8173
8160
  * @throws {RequiredError}
8174
8161
  */
8175
- deleteVirtualRobotTcp: (cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8162
+ deleteVirtualControllerTcp: (cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8176
8163
  /**
8177
8164
  * Requests the Emergency Stop state of the virtual robot controller. Use [getCurrentMotionGroupState](getCurrentMotionGroupState) to get the Emergency Stop state regardless of the controller type. There the Emergency Stop state is visible as the `safety_state`. > **NOTE** > > The Emergency Stop state can only be changed when using virtual robot controllers.
8178
8165
  * @summary Get Emergency Stop State
@@ -8219,7 +8206,7 @@ export declare const VirtualControllerApiAxiosParamCreator: (configuration?: Con
8219
8206
  * @param {*} [options] Override http request option.
8220
8207
  * @throws {RequiredError}
8221
8208
  */
8222
- getVirtualRobotMounting: (cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8209
+ getVirtualControllerMounting: (cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8223
8210
  /**
8224
8211
  * Lists all coordinate systems on the robot controller.
8225
8212
  * @summary List Coordinate Systems
@@ -8228,7 +8215,7 @@ export declare const VirtualControllerApiAxiosParamCreator: (configuration?: Con
8228
8215
  * @param {*} [options] Override http request option.
8229
8216
  * @throws {RequiredError}
8230
8217
  */
8231
- listVirtualRobotCoordinateSystems: (cell: string, controller: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8218
+ listVirtualControllerCoordinateSystems: (cell: string, controller: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8232
8219
  /**
8233
8220
  * Lists TCPs of the motion group. An empty TCP list is valid, for example for external axes.
8234
8221
  * @summary List TCPs
@@ -8238,7 +8225,7 @@ export declare const VirtualControllerApiAxiosParamCreator: (configuration?: Con
8238
8225
  * @param {*} [options] Override http request option.
8239
8226
  * @throws {RequiredError}
8240
8227
  */
8241
- listVirtualRobotTcps: (cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8228
+ listVirtualControllerTcps: (cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8242
8229
  /**
8243
8230
  * Activates or releases the Emergency Stop on the virtual robot controller. Activating the Emergency Stop stops the execution of all motions. The stop is executed on physical controllers immediately not gracefully and not on paths. Due to restricted physical behavior of the virtual robot controller, the Emergency Stop is executed on paths. To return to normal operation the Emergency Stop needs to be released. Use [getCurrentMotionGroupState](getCurrentMotionGroupState) to get the Emergency Stop state regardless of the controller type. There the Emergency Stop state is visible as the `safety_state`. > **NOTE** > > The Emergency Stop state can only be changed via API when using virtual robot controllers.
8244
8231
  * @summary Push or Release Emergency Stop
@@ -8280,7 +8267,7 @@ export declare const VirtualControllerApiAxiosParamCreator: (configuration?: Con
8280
8267
  * @param {*} [options] Override http request option.
8281
8268
  * @throws {RequiredError}
8282
8269
  */
8283
- setVirtualRobotMounting: (cell: string, controller: string, motionGroup: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8270
+ setVirtualControllerMounting: (cell: string, controller: string, motionGroup: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8284
8271
  };
8285
8272
  /**
8286
8273
  * VirtualControllerApi - functional programming interface
@@ -8297,7 +8284,7 @@ export declare const VirtualControllerApiFp: (configuration?: Configuration) =>
8297
8284
  * @param {*} [options] Override http request option.
8298
8285
  * @throws {RequiredError}
8299
8286
  */
8300
- addVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: string, coordinateSystemData: CoordinateSystemData, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
8287
+ addVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, coordinateSystemData: CoordinateSystemData, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
8301
8288
  /**
8302
8289
  * Adds a new TCP or updates an existing TCP in the motion group. The position and rotation values in the request body are defined within the flange’s coordinate system. > **NOTE** > > Ensure the TCP\'s position is within the robot\'s reach. Refer to the robot’s documentation or data sheet for details like joint limits or reach.
8303
8290
  * @summary Add TCP
@@ -8309,7 +8296,7 @@ export declare const VirtualControllerApiFp: (configuration?: Configuration) =>
8309
8296
  * @param {*} [options] Override http request option.
8310
8297
  * @throws {RequiredError}
8311
8298
  */
8312
- addVirtualRobotTcp(cell: string, controller: string, motionGroup: string, tcp: string, robotTcpData: RobotTcpData, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
8299
+ addVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, robotTcpData: RobotTcpData, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
8313
8300
  /**
8314
8301
  * Deletes a coordinate system from the virtual controller. This will remove the coordinate system from the list of coordinate systems and remove all dependent coordinate systems which use the deleted coordinate system as reference.
8315
8302
  * @summary Remove Coordinate System
@@ -8320,7 +8307,7 @@ export declare const VirtualControllerApiFp: (configuration?: Configuration) =>
8320
8307
  * @param {*} [options] Override http request option.
8321
8308
  * @throws {RequiredError}
8322
8309
  */
8323
- deleteVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
8310
+ deleteVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
8324
8311
  /**
8325
8312
  * Removes the TCP from the motion group. An unknown TCP is a valid input.
8326
8313
  * @summary Remove TCP
@@ -8331,7 +8318,7 @@ export declare const VirtualControllerApiFp: (configuration?: Configuration) =>
8331
8318
  * @param {*} [options] Override http request option.
8332
8319
  * @throws {RequiredError}
8333
8320
  */
8334
- deleteVirtualRobotTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
8321
+ deleteVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
8335
8322
  /**
8336
8323
  * Requests the Emergency Stop state of the virtual robot controller. Use [getCurrentMotionGroupState](getCurrentMotionGroupState) to get the Emergency Stop state regardless of the controller type. There the Emergency Stop state is visible as the `safety_state`. > **NOTE** > > The Emergency Stop state can only be changed when using virtual robot controllers.
8337
8324
  * @summary Get Emergency Stop State
@@ -8378,7 +8365,7 @@ export declare const VirtualControllerApiFp: (configuration?: Configuration) =>
8378
8365
  * @param {*} [options] Override http request option.
8379
8366
  * @throws {RequiredError}
8380
8367
  */
8381
- getVirtualRobotMounting(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CoordinateSystem>>;
8368
+ getVirtualControllerMounting(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CoordinateSystem>>;
8382
8369
  /**
8383
8370
  * Lists all coordinate systems on the robot controller.
8384
8371
  * @summary List Coordinate Systems
@@ -8387,7 +8374,7 @@ export declare const VirtualControllerApiFp: (configuration?: Configuration) =>
8387
8374
  * @param {*} [options] Override http request option.
8388
8375
  * @throws {RequiredError}
8389
8376
  */
8390
- listVirtualRobotCoordinateSystems(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<CoordinateSystem>>>;
8377
+ listVirtualControllerCoordinateSystems(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<CoordinateSystem>>>;
8391
8378
  /**
8392
8379
  * Lists TCPs of the motion group. An empty TCP list is valid, for example for external axes.
8393
8380
  * @summary List TCPs
@@ -8397,7 +8384,7 @@ export declare const VirtualControllerApiFp: (configuration?: Configuration) =>
8397
8384
  * @param {*} [options] Override http request option.
8398
8385
  * @throws {RequiredError}
8399
8386
  */
8400
- listVirtualRobotTcps(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<RobotTcp>>>;
8387
+ listVirtualControllerTcps(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<RobotTcp>>>;
8401
8388
  /**
8402
8389
  * Activates or releases the Emergency Stop on the virtual robot controller. Activating the Emergency Stop stops the execution of all motions. The stop is executed on physical controllers immediately not gracefully and not on paths. Due to restricted physical behavior of the virtual robot controller, the Emergency Stop is executed on paths. To return to normal operation the Emergency Stop needs to be released. Use [getCurrentMotionGroupState](getCurrentMotionGroupState) to get the Emergency Stop state regardless of the controller type. There the Emergency Stop state is visible as the `safety_state`. > **NOTE** > > The Emergency Stop state can only be changed via API when using virtual robot controllers.
8403
8390
  * @summary Push or Release Emergency Stop
@@ -8439,7 +8426,7 @@ export declare const VirtualControllerApiFp: (configuration?: Configuration) =>
8439
8426
  * @param {*} [options] Override http request option.
8440
8427
  * @throws {RequiredError}
8441
8428
  */
8442
- setVirtualRobotMounting(cell: string, controller: string, motionGroup: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CoordinateSystem>>;
8429
+ setVirtualControllerMounting(cell: string, controller: string, motionGroup: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CoordinateSystem>>;
8443
8430
  };
8444
8431
  /**
8445
8432
  * VirtualControllerApi - factory interface
@@ -8456,7 +8443,7 @@ export declare const VirtualControllerApiFactory: (configuration?: Configuration
8456
8443
  * @param {*} [options] Override http request option.
8457
8444
  * @throws {RequiredError}
8458
8445
  */
8459
- addVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: string, coordinateSystemData: CoordinateSystemData, options?: RawAxiosRequestConfig): AxiosPromise<void>;
8446
+ addVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, coordinateSystemData: CoordinateSystemData, options?: RawAxiosRequestConfig): AxiosPromise<void>;
8460
8447
  /**
8461
8448
  * Adds a new TCP or updates an existing TCP in the motion group. The position and rotation values in the request body are defined within the flange’s coordinate system. > **NOTE** > > Ensure the TCP\'s position is within the robot\'s reach. Refer to the robot’s documentation or data sheet for details like joint limits or reach.
8462
8449
  * @summary Add TCP
@@ -8468,7 +8455,7 @@ export declare const VirtualControllerApiFactory: (configuration?: Configuration
8468
8455
  * @param {*} [options] Override http request option.
8469
8456
  * @throws {RequiredError}
8470
8457
  */
8471
- addVirtualRobotTcp(cell: string, controller: string, motionGroup: string, tcp: string, robotTcpData: RobotTcpData, options?: RawAxiosRequestConfig): AxiosPromise<void>;
8458
+ addVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, robotTcpData: RobotTcpData, options?: RawAxiosRequestConfig): AxiosPromise<void>;
8472
8459
  /**
8473
8460
  * Deletes a coordinate system from the virtual controller. This will remove the coordinate system from the list of coordinate systems and remove all dependent coordinate systems which use the deleted coordinate system as reference.
8474
8461
  * @summary Remove Coordinate System
@@ -8479,7 +8466,7 @@ export declare const VirtualControllerApiFactory: (configuration?: Configuration
8479
8466
  * @param {*} [options] Override http request option.
8480
8467
  * @throws {RequiredError}
8481
8468
  */
8482
- deleteVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<void>;
8469
+ deleteVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<void>;
8483
8470
  /**
8484
8471
  * Removes the TCP from the motion group. An unknown TCP is a valid input.
8485
8472
  * @summary Remove TCP
@@ -8490,7 +8477,7 @@ export declare const VirtualControllerApiFactory: (configuration?: Configuration
8490
8477
  * @param {*} [options] Override http request option.
8491
8478
  * @throws {RequiredError}
8492
8479
  */
8493
- deleteVirtualRobotTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
8480
+ deleteVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
8494
8481
  /**
8495
8482
  * Requests the Emergency Stop state of the virtual robot controller. Use [getCurrentMotionGroupState](getCurrentMotionGroupState) to get the Emergency Stop state regardless of the controller type. There the Emergency Stop state is visible as the `safety_state`. > **NOTE** > > The Emergency Stop state can only be changed when using virtual robot controllers.
8496
8483
  * @summary Get Emergency Stop State
@@ -8537,7 +8524,7 @@ export declare const VirtualControllerApiFactory: (configuration?: Configuration
8537
8524
  * @param {*} [options] Override http request option.
8538
8525
  * @throws {RequiredError}
8539
8526
  */
8540
- getVirtualRobotMounting(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): AxiosPromise<CoordinateSystem>;
8527
+ getVirtualControllerMounting(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): AxiosPromise<CoordinateSystem>;
8541
8528
  /**
8542
8529
  * Lists all coordinate systems on the robot controller.
8543
8530
  * @summary List Coordinate Systems
@@ -8546,7 +8533,7 @@ export declare const VirtualControllerApiFactory: (configuration?: Configuration
8546
8533
  * @param {*} [options] Override http request option.
8547
8534
  * @throws {RequiredError}
8548
8535
  */
8549
- listVirtualRobotCoordinateSystems(cell: string, controller: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<CoordinateSystem>>;
8536
+ listVirtualControllerCoordinateSystems(cell: string, controller: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<CoordinateSystem>>;
8550
8537
  /**
8551
8538
  * Lists TCPs of the motion group. An empty TCP list is valid, for example for external axes.
8552
8539
  * @summary List TCPs
@@ -8556,7 +8543,7 @@ export declare const VirtualControllerApiFactory: (configuration?: Configuration
8556
8543
  * @param {*} [options] Override http request option.
8557
8544
  * @throws {RequiredError}
8558
8545
  */
8559
- listVirtualRobotTcps(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<RobotTcp>>;
8546
+ listVirtualControllerTcps(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<RobotTcp>>;
8560
8547
  /**
8561
8548
  * Activates or releases the Emergency Stop on the virtual robot controller. Activating the Emergency Stop stops the execution of all motions. The stop is executed on physical controllers immediately not gracefully and not on paths. Due to restricted physical behavior of the virtual robot controller, the Emergency Stop is executed on paths. To return to normal operation the Emergency Stop needs to be released. Use [getCurrentMotionGroupState](getCurrentMotionGroupState) to get the Emergency Stop state regardless of the controller type. There the Emergency Stop state is visible as the `safety_state`. > **NOTE** > > The Emergency Stop state can only be changed via API when using virtual robot controllers.
8562
8549
  * @summary Push or Release Emergency Stop
@@ -8598,7 +8585,7 @@ export declare const VirtualControllerApiFactory: (configuration?: Configuration
8598
8585
  * @param {*} [options] Override http request option.
8599
8586
  * @throws {RequiredError}
8600
8587
  */
8601
- setVirtualRobotMounting(cell: string, controller: string, motionGroup: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): AxiosPromise<CoordinateSystem>;
8588
+ setVirtualControllerMounting(cell: string, controller: string, motionGroup: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): AxiosPromise<CoordinateSystem>;
8602
8589
  };
8603
8590
  /**
8604
8591
  * VirtualControllerApi - object-oriented interface
@@ -8618,7 +8605,7 @@ export declare class VirtualControllerApi extends BaseAPI {
8618
8605
  * @throws {RequiredError}
8619
8606
  * @memberof VirtualControllerApi
8620
8607
  */
8621
- addVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: string, coordinateSystemData: CoordinateSystemData, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
8608
+ addVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, coordinateSystemData: CoordinateSystemData, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
8622
8609
  /**
8623
8610
  * Adds a new TCP or updates an existing TCP in the motion group. The position and rotation values in the request body are defined within the flange’s coordinate system. > **NOTE** > > Ensure the TCP\'s position is within the robot\'s reach. Refer to the robot’s documentation or data sheet for details like joint limits or reach.
8624
8611
  * @summary Add TCP
@@ -8631,7 +8618,7 @@ export declare class VirtualControllerApi extends BaseAPI {
8631
8618
  * @throws {RequiredError}
8632
8619
  * @memberof VirtualControllerApi
8633
8620
  */
8634
- addVirtualRobotTcp(cell: string, controller: string, motionGroup: string, tcp: string, robotTcpData: RobotTcpData, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
8621
+ addVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, robotTcpData: RobotTcpData, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
8635
8622
  /**
8636
8623
  * Deletes a coordinate system from the virtual controller. This will remove the coordinate system from the list of coordinate systems and remove all dependent coordinate systems which use the deleted coordinate system as reference.
8637
8624
  * @summary Remove Coordinate System
@@ -8643,7 +8630,7 @@ export declare class VirtualControllerApi extends BaseAPI {
8643
8630
  * @throws {RequiredError}
8644
8631
  * @memberof VirtualControllerApi
8645
8632
  */
8646
- deleteVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
8633
+ deleteVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
8647
8634
  /**
8648
8635
  * Removes the TCP from the motion group. An unknown TCP is a valid input.
8649
8636
  * @summary Remove TCP
@@ -8655,7 +8642,7 @@ export declare class VirtualControllerApi extends BaseAPI {
8655
8642
  * @throws {RequiredError}
8656
8643
  * @memberof VirtualControllerApi
8657
8644
  */
8658
- deleteVirtualRobotTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
8645
+ deleteVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
8659
8646
  /**
8660
8647
  * Requests the Emergency Stop state of the virtual robot controller. Use [getCurrentMotionGroupState](getCurrentMotionGroupState) to get the Emergency Stop state regardless of the controller type. There the Emergency Stop state is visible as the `safety_state`. > **NOTE** > > The Emergency Stop state can only be changed when using virtual robot controllers.
8661
8648
  * @summary Get Emergency Stop State
@@ -8707,7 +8694,7 @@ export declare class VirtualControllerApi extends BaseAPI {
8707
8694
  * @throws {RequiredError}
8708
8695
  * @memberof VirtualControllerApi
8709
8696
  */
8710
- getVirtualRobotMounting(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CoordinateSystem, any>>;
8697
+ getVirtualControllerMounting(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CoordinateSystem, any>>;
8711
8698
  /**
8712
8699
  * Lists all coordinate systems on the robot controller.
8713
8700
  * @summary List Coordinate Systems
@@ -8717,7 +8704,7 @@ export declare class VirtualControllerApi extends BaseAPI {
8717
8704
  * @throws {RequiredError}
8718
8705
  * @memberof VirtualControllerApi
8719
8706
  */
8720
- listVirtualRobotCoordinateSystems(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CoordinateSystem[], any>>;
8707
+ listVirtualControllerCoordinateSystems(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CoordinateSystem[], any>>;
8721
8708
  /**
8722
8709
  * Lists TCPs of the motion group. An empty TCP list is valid, for example for external axes.
8723
8710
  * @summary List TCPs
@@ -8728,7 +8715,7 @@ export declare class VirtualControllerApi extends BaseAPI {
8728
8715
  * @throws {RequiredError}
8729
8716
  * @memberof VirtualControllerApi
8730
8717
  */
8731
- listVirtualRobotTcps(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RobotTcp[], any>>;
8718
+ listVirtualControllerTcps(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RobotTcp[], any>>;
8732
8719
  /**
8733
8720
  * Activates or releases the Emergency Stop on the virtual robot controller. Activating the Emergency Stop stops the execution of all motions. The stop is executed on physical controllers immediately not gracefully and not on paths. Due to restricted physical behavior of the virtual robot controller, the Emergency Stop is executed on paths. To return to normal operation the Emergency Stop needs to be released. Use [getCurrentMotionGroupState](getCurrentMotionGroupState) to get the Emergency Stop state regardless of the controller type. There the Emergency Stop state is visible as the `safety_state`. > **NOTE** > > The Emergency Stop state can only be changed via API when using virtual robot controllers.
8734
8721
  * @summary Push or Release Emergency Stop
@@ -8774,7 +8761,7 @@ export declare class VirtualControllerApi extends BaseAPI {
8774
8761
  * @throws {RequiredError}
8775
8762
  * @memberof VirtualControllerApi
8776
8763
  */
8777
- setVirtualRobotMounting(cell: string, controller: string, motionGroup: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CoordinateSystem, any>>;
8764
+ setVirtualControllerMounting(cell: string, controller: string, motionGroup: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CoordinateSystem, any>>;
8778
8765
  }
8779
8766
  /**
8780
8767
  * VirtualControllerBehaviorApi - axios parameter creator
@@ -8801,14 +8788,14 @@ export declare const VirtualControllerBehaviorApiAxiosParamCreator: (configurati
8801
8788
  */
8802
8789
  getCycleTime: (cell: string, controller: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8803
8790
  /**
8804
- * Get the current virtual controller behavior - please see the setter [setVirtualRobotBehavior](setVirtualRobotBehavior) and the enum for details.
8791
+ * Get the current virtual controller behavior - please see the setter [setVirtualControllerBehavior](setVirtualControllerBehavior) and the enum for details.
8805
8792
  * @summary Get Behavior
8806
8793
  * @param {string} cell Unique identifier addressing a cell in all API calls.
8807
8794
  * @param {string} controller Unique identifier to address a controller in the cell.
8808
8795
  * @param {*} [options] Override http request option.
8809
8796
  * @throws {RequiredError}
8810
8797
  */
8811
- getVirtualRobotBehavior: (cell: string, controller: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8798
+ getVirtualControllerBehavior: (cell: string, controller: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8812
8799
  /**
8813
8800
  * Set virtual controller behavior.
8814
8801
  * @summary Set Behavior
@@ -8818,7 +8805,7 @@ export declare const VirtualControllerBehaviorApiAxiosParamCreator: (configurati
8818
8805
  * @param {*} [options] Override http request option.
8819
8806
  * @throws {RequiredError}
8820
8807
  */
8821
- setVirtualRobotBehavior: (cell: string, controller: string, behavior?: Behavior, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8808
+ setVirtualControllerBehavior: (cell: string, controller: string, behavior?: Behavior, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8822
8809
  };
8823
8810
  /**
8824
8811
  * VirtualControllerBehaviorApi - functional programming interface
@@ -8845,14 +8832,14 @@ export declare const VirtualControllerBehaviorApiFp: (configuration?: Configurat
8845
8832
  */
8846
8833
  getCycleTime(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CycleTime>>;
8847
8834
  /**
8848
- * Get the current virtual controller behavior - please see the setter [setVirtualRobotBehavior](setVirtualRobotBehavior) and the enum for details.
8835
+ * Get the current virtual controller behavior - please see the setter [setVirtualControllerBehavior](setVirtualControllerBehavior) and the enum for details.
8849
8836
  * @summary Get Behavior
8850
8837
  * @param {string} cell Unique identifier addressing a cell in all API calls.
8851
8838
  * @param {string} controller Unique identifier to address a controller in the cell.
8852
8839
  * @param {*} [options] Override http request option.
8853
8840
  * @throws {RequiredError}
8854
8841
  */
8855
- getVirtualRobotBehavior(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Behavior>>;
8842
+ getVirtualControllerBehavior(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Behavior>>;
8856
8843
  /**
8857
8844
  * Set virtual controller behavior.
8858
8845
  * @summary Set Behavior
@@ -8862,7 +8849,7 @@ export declare const VirtualControllerBehaviorApiFp: (configuration?: Configurat
8862
8849
  * @param {*} [options] Override http request option.
8863
8850
  * @throws {RequiredError}
8864
8851
  */
8865
- setVirtualRobotBehavior(cell: string, controller: string, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
8852
+ setVirtualControllerBehavior(cell: string, controller: string, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
8866
8853
  };
8867
8854
  /**
8868
8855
  * VirtualControllerBehaviorApi - factory interface
@@ -8889,14 +8876,14 @@ export declare const VirtualControllerBehaviorApiFactory: (configuration?: Confi
8889
8876
  */
8890
8877
  getCycleTime(cell: string, controller: string, options?: RawAxiosRequestConfig): AxiosPromise<CycleTime>;
8891
8878
  /**
8892
- * Get the current virtual controller behavior - please see the setter [setVirtualRobotBehavior](setVirtualRobotBehavior) and the enum for details.
8879
+ * Get the current virtual controller behavior - please see the setter [setVirtualControllerBehavior](setVirtualControllerBehavior) and the enum for details.
8893
8880
  * @summary Get Behavior
8894
8881
  * @param {string} cell Unique identifier addressing a cell in all API calls.
8895
8882
  * @param {string} controller Unique identifier to address a controller in the cell.
8896
8883
  * @param {*} [options] Override http request option.
8897
8884
  * @throws {RequiredError}
8898
8885
  */
8899
- getVirtualRobotBehavior(cell: string, controller: string, options?: RawAxiosRequestConfig): AxiosPromise<Behavior>;
8886
+ getVirtualControllerBehavior(cell: string, controller: string, options?: RawAxiosRequestConfig): AxiosPromise<Behavior>;
8900
8887
  /**
8901
8888
  * Set virtual controller behavior.
8902
8889
  * @summary Set Behavior
@@ -8906,7 +8893,7 @@ export declare const VirtualControllerBehaviorApiFactory: (configuration?: Confi
8906
8893
  * @param {*} [options] Override http request option.
8907
8894
  * @throws {RequiredError}
8908
8895
  */
8909
- setVirtualRobotBehavior(cell: string, controller: string, behavior?: Behavior, options?: RawAxiosRequestConfig): AxiosPromise<void>;
8896
+ setVirtualControllerBehavior(cell: string, controller: string, behavior?: Behavior, options?: RawAxiosRequestConfig): AxiosPromise<void>;
8910
8897
  };
8911
8898
  /**
8912
8899
  * VirtualControllerBehaviorApi - object-oriented interface
@@ -8937,7 +8924,7 @@ export declare class VirtualControllerBehaviorApi extends BaseAPI {
8937
8924
  */
8938
8925
  getCycleTime(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CycleTime, any>>;
8939
8926
  /**
8940
- * Get the current virtual controller behavior - please see the setter [setVirtualRobotBehavior](setVirtualRobotBehavior) and the enum for details.
8927
+ * Get the current virtual controller behavior - please see the setter [setVirtualControllerBehavior](setVirtualControllerBehavior) and the enum for details.
8941
8928
  * @summary Get Behavior
8942
8929
  * @param {string} cell Unique identifier addressing a cell in all API calls.
8943
8930
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -8945,7 +8932,7 @@ export declare class VirtualControllerBehaviorApi extends BaseAPI {
8945
8932
  * @throws {RequiredError}
8946
8933
  * @memberof VirtualControllerBehaviorApi
8947
8934
  */
8948
- getVirtualRobotBehavior(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Behavior, any>>;
8935
+ getVirtualControllerBehavior(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Behavior, any>>;
8949
8936
  /**
8950
8937
  * Set virtual controller behavior.
8951
8938
  * @summary Set Behavior
@@ -8956,7 +8943,7 @@ export declare class VirtualControllerBehaviorApi extends BaseAPI {
8956
8943
  * @throws {RequiredError}
8957
8944
  * @memberof VirtualControllerBehaviorApi
8958
8945
  */
8959
- setVirtualRobotBehavior(cell: string, controller: string, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
8946
+ setVirtualControllerBehavior(cell: string, controller: string, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
8960
8947
  }
8961
8948
  /**
8962
8949
  * VirtualControllerInputsOutputsApi - axios parameter creator
@@ -8964,7 +8951,7 @@ export declare class VirtualControllerBehaviorApi extends BaseAPI {
8964
8951
  */
8965
8952
  export declare const VirtualControllerInputsOutputsApiAxiosParamCreator: (configuration?: Configuration) => {
8966
8953
  /**
8967
- * Retrieves the current values of inputs/outputs of the virtual controller. The identifiers of inputs/outputs must be provided in the request. Request all available input/output identifiers via [listVirtualRobotIODescriptions](listVirtualRobotIODescriptions).
8954
+ * Retrieves the current values of inputs/outputs of the virtual controller. The identifiers of inputs/outputs must be provided in the request. Request all available input/output identifiers via [listVirtualControllerIODescriptions](listVirtualControllerIODescriptions).
8968
8955
  * @summary Get Input/Output Values
8969
8956
  * @param {string} cell Unique identifier addressing a cell in all API calls.
8970
8957
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -8985,7 +8972,7 @@ export declare const VirtualControllerInputsOutputsApiAxiosParamCreator: (config
8985
8972
  * @param {*} [options] Override http request option.
8986
8973
  * @throws {RequiredError}
8987
8974
  */
8988
- listVirtualRobotIODescriptions: (cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8975
+ listVirtualControllerIODescriptions: (cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8989
8976
  /**
8990
8977
  * Sets a list of values of a virtual controller inputs/outputs.
8991
8978
  * @summary Set Input/Ouput Values
@@ -9003,7 +8990,7 @@ export declare const VirtualControllerInputsOutputsApiAxiosParamCreator: (config
9003
8990
  */
9004
8991
  export declare const VirtualControllerInputsOutputsApiFp: (configuration?: Configuration) => {
9005
8992
  /**
9006
- * Retrieves the current values of inputs/outputs of the virtual controller. The identifiers of inputs/outputs must be provided in the request. Request all available input/output identifiers via [listVirtualRobotIODescriptions](listVirtualRobotIODescriptions).
8993
+ * Retrieves the current values of inputs/outputs of the virtual controller. The identifiers of inputs/outputs must be provided in the request. Request all available input/output identifiers via [listVirtualControllerIODescriptions](listVirtualControllerIODescriptions).
9007
8994
  * @summary Get Input/Output Values
9008
8995
  * @param {string} cell Unique identifier addressing a cell in all API calls.
9009
8996
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -9024,7 +9011,7 @@ export declare const VirtualControllerInputsOutputsApiFp: (configuration?: Confi
9024
9011
  * @param {*} [options] Override http request option.
9025
9012
  * @throws {RequiredError}
9026
9013
  */
9027
- listVirtualRobotIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<IODescription>>>;
9014
+ listVirtualControllerIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<IODescription>>>;
9028
9015
  /**
9029
9016
  * Sets a list of values of a virtual controller inputs/outputs.
9030
9017
  * @summary Set Input/Ouput Values
@@ -9042,7 +9029,7 @@ export declare const VirtualControllerInputsOutputsApiFp: (configuration?: Confi
9042
9029
  */
9043
9030
  export declare const VirtualControllerInputsOutputsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
9044
9031
  /**
9045
- * Retrieves the current values of inputs/outputs of the virtual controller. The identifiers of inputs/outputs must be provided in the request. Request all available input/output identifiers via [listVirtualRobotIODescriptions](listVirtualRobotIODescriptions).
9032
+ * Retrieves the current values of inputs/outputs of the virtual controller. The identifiers of inputs/outputs must be provided in the request. Request all available input/output identifiers via [listVirtualControllerIODescriptions](listVirtualControllerIODescriptions).
9046
9033
  * @summary Get Input/Output Values
9047
9034
  * @param {string} cell Unique identifier addressing a cell in all API calls.
9048
9035
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -9063,7 +9050,7 @@ export declare const VirtualControllerInputsOutputsApiFactory: (configuration?:
9063
9050
  * @param {*} [options] Override http request option.
9064
9051
  * @throws {RequiredError}
9065
9052
  */
9066
- listVirtualRobotIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<IODescription>>;
9053
+ listVirtualControllerIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<IODescription>>;
9067
9054
  /**
9068
9055
  * Sets a list of values of a virtual controller inputs/outputs.
9069
9056
  * @summary Set Input/Ouput Values
@@ -9083,7 +9070,7 @@ export declare const VirtualControllerInputsOutputsApiFactory: (configuration?:
9083
9070
  */
9084
9071
  export declare class VirtualControllerInputsOutputsApi extends BaseAPI {
9085
9072
  /**
9086
- * Retrieves the current values of inputs/outputs of the virtual controller. The identifiers of inputs/outputs must be provided in the request. Request all available input/output identifiers via [listVirtualRobotIODescriptions](listVirtualRobotIODescriptions).
9073
+ * Retrieves the current values of inputs/outputs of the virtual controller. The identifiers of inputs/outputs must be provided in the request. Request all available input/output identifiers via [listVirtualControllerIODescriptions](listVirtualControllerIODescriptions).
9087
9074
  * @summary Get Input/Output Values
9088
9075
  * @param {string} cell Unique identifier addressing a cell in all API calls.
9089
9076
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -9106,7 +9093,7 @@ export declare class VirtualControllerInputsOutputsApi extends BaseAPI {
9106
9093
  * @throws {RequiredError}
9107
9094
  * @memberof VirtualControllerInputsOutputsApi
9108
9095
  */
9109
- listVirtualRobotIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IODescription[], any>>;
9096
+ listVirtualControllerIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IODescription[], any>>;
9110
9097
  /**
9111
9098
  * Sets a list of values of a virtual controller inputs/outputs.
9112
9099
  * @summary Set Input/Ouput Values