@wandelbots/nova-api 25.11.0-dev.32 → 25.11.0-dev.33

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.
@@ -1,4 +1,4 @@
1
- import * as axios0 from "axios";
1
+ import * as axios176 from "axios";
2
2
  import { AxiosInstance, AxiosPromise, RawAxiosRequestConfig } from "axios";
3
3
 
4
4
  //#region v2/configuration.d.ts
@@ -3550,7 +3550,7 @@ declare class ApplicationApi extends BaseAPI {
3550
3550
  * @param {*} [options] Override http request option.
3551
3551
  * @throws {RequiredError}
3552
3552
  */
3553
- addApp(cell: string, app: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
3553
+ addApp(cell: string, app: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
3554
3554
  /**
3555
3555
  * Delete all GUI applications from the cell.
3556
3556
  * @summary Clear Applications
@@ -3559,7 +3559,7 @@ declare class ApplicationApi extends BaseAPI {
3559
3559
  * @param {*} [options] Override http request option.
3560
3560
  * @throws {RequiredError}
3561
3561
  */
3562
- clearApps(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
3562
+ clearApps(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
3563
3563
  /**
3564
3564
  * Delete a GUI application from the cell.
3565
3565
  * @summary Delete Application
@@ -3569,7 +3569,7 @@ declare class ApplicationApi extends BaseAPI {
3569
3569
  * @param {*} [options] Override http request option.
3570
3570
  * @throws {RequiredError}
3571
3571
  */
3572
- deleteApp(cell: string, app: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
3572
+ deleteApp(cell: string, app: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
3573
3573
  /**
3574
3574
  * Get the configuration for an active GUI application in the cell. To update the configuration of a GUI application in the cell, use this configuration with [updateApp](updateApp).
3575
3575
  * @summary Configuration
@@ -3578,7 +3578,7 @@ declare class ApplicationApi extends BaseAPI {
3578
3578
  * @param {*} [options] Override http request option.
3579
3579
  * @throws {RequiredError}
3580
3580
  */
3581
- getApp(cell: string, app: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<App, any>>;
3581
+ getApp(cell: string, app: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<App, any>>;
3582
3582
  /**
3583
3583
  * List all GUI applications that have been added to a cell with [addApp](addApp). If the cell does not contain GUI applications, the list is returned empty.
3584
3584
  * @summary List Applications
@@ -3586,7 +3586,7 @@ declare class ApplicationApi extends BaseAPI {
3586
3586
  * @param {*} [options] Override http request option.
3587
3587
  * @throws {RequiredError}
3588
3588
  */
3589
- listApps(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
3589
+ listApps(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
3590
3590
  /**
3591
3591
  * Update the configuration of a GUI application in the cell.
3592
3592
  * @summary Update Configuration
@@ -3597,7 +3597,7 @@ declare class ApplicationApi extends BaseAPI {
3597
3597
  * @param {*} [options] Override http request option.
3598
3598
  * @throws {RequiredError}
3599
3599
  */
3600
- updateApp(cell: string, app: string, app2: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
3600
+ updateApp(cell: string, app: string, app2: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
3601
3601
  }
3602
3602
  /**
3603
3603
  * BUSInputsOutputsApi - axios parameter creator
@@ -4101,7 +4101,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4101
4101
  * @param {*} [options] Override http request option.
4102
4102
  * @throws {RequiredError}
4103
4103
  */
4104
- addBusIOService(cell: string, busIOType: BusIOType, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4104
+ addBusIOService(cell: string, busIOType: BusIOType, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4105
4105
  /**
4106
4106
  * Adds an input/output variable to or updates an input/output variable on the MODBUS device, e.g., NOVA\'s MODBUS service. The inputs/outputs map variables to specific memory addresses in the process image. The NOVA\'s MODBUS service\'s configuration can be viewed via [listModbusIOs](listModbusIOs).
4107
4107
  * @summary Add MODBUS Input/Output
@@ -4111,7 +4111,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4111
4111
  * @param {*} [options] Override http request option.
4112
4112
  * @throws {RequiredError}
4113
4113
  */
4114
- addModbusIO(cell: string, io: string, modbusIOData: ModbusIOData, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4114
+ addModbusIO(cell: string, io: string, modbusIOData: ModbusIOData, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4115
4115
  /**
4116
4116
  * Adds an input/output variable to or updates an input/output variable on the PROFINET device, e.g., NOVA\'s PROFINET service. The inputs/outputs map variables to specific memory addresses in the process image. The default process image has buffer lengths of 64 bytes for input and output. - The size of the buffer is determined by the `config_file_content` that is passed in [addBusIOService](addBusIOService) and has to be in accordance with the GSDML file describing the PROFINET device. The PROFINET controller as well as NOVA\'s PROFINET service use an input/output variable configuration to interpret the bits of the input/output process image. - The NOVA\'s PROFINET service\'s configuration can be viewed via [listProfinetIOs](listProfinetIOs). For the PROFINET controller, e.g., a connected PLC, refer to the corresponding third party software, e.g., TIA portal).
4117
4117
  * @summary Add PROFINET Input/Output
@@ -4121,7 +4121,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4121
4121
  * @param {*} [options] Override http request option.
4122
4122
  * @throws {RequiredError}
4123
4123
  */
4124
- addProfinetIO(cell: string, io: string, profinetIOData: ProfinetIOData, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4124
+ addProfinetIO(cell: string, io: string, profinetIOData: ProfinetIOData, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4125
4125
  /**
4126
4126
  * Remove the BUS inputs/outputs service from the cell.
4127
4127
  * @summary Clear Service
@@ -4130,7 +4130,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4130
4130
  * @param {*} [options] Override http request option.
4131
4131
  * @throws {RequiredError}
4132
4132
  */
4133
- clearBusIOService(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4133
+ clearBusIOService(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4134
4134
  /**
4135
4135
  * Removes all input/output variable configurations from the MODBUS device, e.g., NOVA\'s MODBUS service.
4136
4136
  * @summary Remove all MODBUS Input/Outputs
@@ -4138,7 +4138,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4138
4138
  * @param {*} [options] Override http request option.
4139
4139
  * @throws {RequiredError}
4140
4140
  */
4141
- deleteAllModbusIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4141
+ deleteAllModbusIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4142
4142
  /**
4143
4143
  * Removes all input/output variable configurations from the PROFINET device, e.g., NOVA\'s PROFINET service.
4144
4144
  * @summary Remove all PROFINET Input/Outputs
@@ -4146,7 +4146,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4146
4146
  * @param {*} [options] Override http request option.
4147
4147
  * @throws {RequiredError}
4148
4148
  */
4149
- deleteAllProfinetIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4149
+ deleteAllProfinetIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4150
4150
  /**
4151
4151
  * Removes an input/output variable configuration from the MODBUS device, e.g., NOVA\'s MODBUS service.
4152
4152
  * @summary Remove MODBUS Input/Ouptut
@@ -4155,7 +4155,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4155
4155
  * @param {*} [options] Override http request option.
4156
4156
  * @throws {RequiredError}
4157
4157
  */
4158
- deleteModbusIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4158
+ deleteModbusIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4159
4159
  /**
4160
4160
  * Removes an input/output variable configuration from the PROFINET device, e.g., NOVA\'s PROFINET service.
4161
4161
  * @summary Remove PROFINET Input/Ouptut
@@ -4164,7 +4164,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4164
4164
  * @param {*} [options] Override http request option.
4165
4165
  * @throws {RequiredError}
4166
4166
  */
4167
- deleteProfinetIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4167
+ deleteProfinetIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4168
4168
  /**
4169
4169
  * Get deployed BUS inputs/outputs service.
4170
4170
  * @summary Get Service
@@ -4172,7 +4172,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4172
4172
  * @param {*} [options] Override http request option.
4173
4173
  * @throws {RequiredError}
4174
4174
  */
4175
- getBusIOService(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<BusIOType, any>>;
4175
+ getBusIOService(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<BusIOType, any>>;
4176
4176
  /**
4177
4177
  * Get the current state of the BUS Inputs/Outputs service.
4178
4178
  * @summary State
@@ -4180,7 +4180,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4180
4180
  * @param {*} [options] Override http request option.
4181
4181
  * @throws {RequiredError}
4182
4182
  */
4183
- getBusIOState(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<BusIOsState, any>>;
4183
+ getBusIOState(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<BusIOsState, any>>;
4184
4184
  /**
4185
4185
  * Retrieves the current values of inputs/outputs. The identifiers of the inputs/outputs must be provided in the request. Request all available input/output identifiers via [listBusIODescriptions](listBusIODescriptions).
4186
4186
  * @summary Get Input/Output Values
@@ -4189,7 +4189,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4189
4189
  * @param {*} [options] Override http request option.
4190
4190
  * @throws {RequiredError}
4191
4191
  */
4192
- getBusIOValues(cell: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IOValue[], any>>;
4192
+ getBusIOValues(cell: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<IOValue[], any>>;
4193
4193
  /**
4194
4194
  * Get description of NOVA as a PROFINET device.
4195
4195
  * @summary Get PROFINET Description
@@ -4197,7 +4197,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4197
4197
  * @param {*} [options] Override http request option.
4198
4198
  * @throws {RequiredError}
4199
4199
  */
4200
- getProfinetDescription(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProfinetDescription, any>>;
4200
+ getProfinetDescription(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ProfinetDescription, any>>;
4201
4201
  /**
4202
4202
  * Get input/output variable configuration of the PROFINET device, e.g., NOVA\'s PROFINET service as file. You can specify byte offsets for the input and output variable addresses to get an XML tagmap that is ready to paste to the third party software, e.g., TIA portal.
4203
4203
  * @summary PROFINET Inputs/Outputs to File
@@ -4207,7 +4207,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4207
4207
  * @param {*} [options] Override http request option.
4208
4208
  * @throws {RequiredError}
4209
4209
  */
4210
- getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string, any>>;
4210
+ getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string, any>>;
4211
4211
  /**
4212
4212
  * List all input/output descriptions for configured BUS services. The input/output descriptions contain information like name, type and unit. The input/output direction is given in perspective of the BUS service.
4213
4213
  * @summary List Descriptions
@@ -4215,7 +4215,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4215
4215
  * @param {*} [options] Override http request option.
4216
4216
  * @throws {RequiredError}
4217
4217
  */
4218
- listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<BusIODescription[], any>>;
4218
+ listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<BusIODescription[], any>>;
4219
4219
  /**
4220
4220
  * List descriptions for all configured input/output variables of the MODBUS service. The input/output descriptions contain information like name, type and address. The input/output direction is given in perspective of the active MODBUS type (service or client). - The byte and bit addresses are the locations in the MODBUS input/output process image the variable points to. - The MODBUS controller as well as NOVA\'s MODBUS service use an input/output variable configuration to interpret the bits of the input and output process image. - The NOVA MODBUS service\'s configuration is modified via [addModbusIO](addModbusIO).
4221
4221
  * @summary List MODBUS Input/Output Configuration
@@ -4223,7 +4223,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4223
4223
  * @param {*} [options] Override http request option.
4224
4224
  * @throws {RequiredError}
4225
4225
  */
4226
- listModbusIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ModbusIO[], any>>;
4226
+ listModbusIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ModbusIO[], any>>;
4227
4227
  /**
4228
4228
  * List descriptions for all configured input/output variables of the PROFINET service. The input/output descriptions contain information like name, type and unit. The input/output direction is given in perspective of the PROFINET device, e.g., the configured PROFINET service. - The byte and bit addresses are the locations in the PROFINET input/output process image the variable points to. - The PROFINET controller as well as NOVA\'s PROFINET service use an input/output variable configuration to interpret the bits of the input and output process image. - The NOVA PROFINET service\'s configuration is modified via [addProfinetIO](addProfinetIO) and [setProfinetIOsFromFile](setProfinetIOsFromFile). For the PROFINET controller, e.g., a connected PLC, refer to the corresponding third party software, e.g., TIA portal.
4229
4229
  * @summary List PROFINET Input/Output Configuration
@@ -4231,7 +4231,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4231
4231
  * @param {*} [options] Override http request option.
4232
4232
  * @throws {RequiredError}
4233
4233
  */
4234
- listProfinetIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProfinetIO[], any>>;
4234
+ listProfinetIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ProfinetIO[], any>>;
4235
4235
  /**
4236
4236
  * Set values of outputs. In case of virtual Bus Input/Outputs, also inputs can be set. All available output identifiers can be requested via [listBusIODescriptions](listBusIODescriptions). The call will return once the values have been set and accepted by the service.
4237
4237
  * @summary Set Output Values
@@ -4240,7 +4240,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4240
4240
  * @param {*} [options] Override http request option.
4241
4241
  * @throws {RequiredError}
4242
4242
  */
4243
- setBusIOValues(cell: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4243
+ setBusIOValues(cell: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4244
4244
  /**
4245
4245
  * Sets input/output variable configuration on the PROFINET device (i.e. NOVA\'s PROFINET service) from XML file. The inputs/outputs map variables to specific memory addresses in the process image. The default process image has buffer lengths of 64 bytes for input and output. - The size of the buffer is determined by the `config_file_content` that is passed in [addBusIOService](addBusIOService) and has to be in accordance with the GSDML file describing the PROFINET device. The PROFINET controller as well as NOVA\'s PROFINET service use an input/output variable configuration to interpret the bits of the input/output process image. - The NOVA\'s PROFINET service\'s configuration can be viewed via [listProfinetIOs](listProfinetIOs). For the PROFINET controller, e.g., a connected PLC, refer to the corresponding engineering system, e.g., TIA portal. #### Export variables You can export the variable configuration of the PROFINET controller as XML file from your engineering system, e.g., TIA portal. - The endpoint is built so that the perspective of input and output (PROFINET Device\'s input is PROFINET Controller\'s output) is internally handled (PROFINET device input is PROFINET controller output), meaning that you can paste the exported XML file here without modifying.
4246
4246
  * @summary Set PROFINET Inputs/Outputs from File
@@ -4249,7 +4249,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4249
4249
  * @param {*} [options] Override http request option.
4250
4250
  * @throws {RequiredError}
4251
4251
  */
4252
- setProfinetIOsFromFile(cell: string, profinetInputOutputConfig: ProfinetInputOutputConfig, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4252
+ setProfinetIOsFromFile(cell: string, profinetInputOutputConfig: ProfinetInputOutputConfig, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4253
4253
  }
4254
4254
  /**
4255
4255
  * CellApi - axios parameter creator
@@ -4458,7 +4458,7 @@ declare class CellApi extends BaseAPI {
4458
4458
  * @param {*} [options] Override http request option.
4459
4459
  * @throws {RequiredError}
4460
4460
  */
4461
- deleteCell(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4461
+ deleteCell(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4462
4462
  /**
4463
4463
  * Deploy an entire cell with all its resources. A cell can be used to deploy a robot controller, one or more robots, as well as custom applications. Refer to the [Wandelbots NOVA documentation](https://docs.wandelbots.io/latest/setup-cell) for more information.
4464
4464
  * @summary Add Cell
@@ -4467,7 +4467,7 @@ declare class CellApi extends BaseAPI {
4467
4467
  * @param {*} [options] Override http request option.
4468
4468
  * @throws {RequiredError}
4469
4469
  */
4470
- deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4470
+ deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4471
4471
  /**
4472
4472
  * List all cell resources.
4473
4473
  * @summary Configuration
@@ -4475,7 +4475,7 @@ declare class CellApi extends BaseAPI {
4475
4475
  * @param {*} [options] Override http request option.
4476
4476
  * @throws {RequiredError}
4477
4477
  */
4478
- getCell(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Cell, any>>;
4478
+ getCell(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Cell, any>>;
4479
4479
  /**
4480
4480
  * List the status of all cell resources.
4481
4481
  * @summary Service Status
@@ -4483,14 +4483,14 @@ declare class CellApi extends BaseAPI {
4483
4483
  * @param {*} [options] Override http request option.
4484
4484
  * @throws {RequiredError}
4485
4485
  */
4486
- getCellStatus(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ServiceStatusResponse, any>>;
4486
+ getCellStatus(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ServiceStatusResponse, any>>;
4487
4487
  /**
4488
4488
  * List all deployed cell names. If no cells are deployed, an empty list is returned.
4489
4489
  * @summary List Cells
4490
4490
  * @param {*} [options] Override http request option.
4491
4491
  * @throws {RequiredError}
4492
4492
  */
4493
- listCells(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
4493
+ listCells(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
4494
4494
  /**
4495
4495
  * Deactivate or activate the services of a cell.
4496
4496
  * @summary Operating State
@@ -4499,7 +4499,7 @@ declare class CellApi extends BaseAPI {
4499
4499
  * @param {*} [options] Override http request option.
4500
4500
  * @throws {RequiredError}
4501
4501
  */
4502
- setCellStatus(cell: string, operatingState: OperatingState, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4502
+ setCellStatus(cell: string, operatingState: OperatingState, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4503
4503
  /**
4504
4504
  * Update the definition of the entire Cell.
4505
4505
  * @summary Update Configuration
@@ -4509,7 +4509,7 @@ declare class CellApi extends BaseAPI {
4509
4509
  * @param {*} [options] Override http request option.
4510
4510
  * @throws {RequiredError}
4511
4511
  */
4512
- updateCell(cell: string, cell2: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4512
+ updateCell(cell: string, cell2: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4513
4513
  }
4514
4514
  /**
4515
4515
  * ControllerApi - axios parameter creator
@@ -4947,7 +4947,7 @@ declare class ControllerApi extends BaseAPI {
4947
4947
  * @param {*} [options] Override http request option.
4948
4948
  * @throws {RequiredError}
4949
4949
  */
4950
- addRobotController(cell: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4950
+ addRobotController(cell: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4951
4951
  /**
4952
4952
  * Delete all robot controllers from the cell. To replace all robot controllers in a cell, use this endpoint in combination with [addRobotController](addRobotController).
4953
4953
  * @summary Clear Robot Controllers
@@ -4956,7 +4956,7 @@ declare class ControllerApi extends BaseAPI {
4956
4956
  * @param {*} [options] Override http request option.
4957
4957
  * @throws {RequiredError}
4958
4958
  */
4959
- clearRobotControllers(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4959
+ clearRobotControllers(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4960
4960
  /**
4961
4961
  * Delete a robot controller from the cell.
4962
4962
  * @summary Delete Robot Controller
@@ -4966,7 +4966,7 @@ declare class ControllerApi extends BaseAPI {
4966
4966
  * @param {*} [options] Override http request option.
4967
4967
  * @throws {RequiredError}
4968
4968
  */
4969
- deleteRobotController(cell: string, controller: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4969
+ deleteRobotController(cell: string, controller: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4970
4970
  /**
4971
4971
  * Get description of a configured robot controller including a list of connected motion group identifiers. Use [getMotionGroupDescription](getMotionGroupDescription) to get more information about the motion group.
4972
4972
  * @summary Description
@@ -4975,7 +4975,7 @@ declare class ControllerApi extends BaseAPI {
4975
4975
  * @param {*} [options] Override http request option.
4976
4976
  * @throws {RequiredError}
4977
4977
  */
4978
- getControllerDescription(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ControllerDescription, any>>;
4978
+ getControllerDescription(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ControllerDescription, any>>;
4979
4979
  /**
4980
4980
  * Request a coordinate system specification for a given identifier. 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.
4981
4981
  * @summary Coordinate System
@@ -4986,7 +4986,7 @@ declare class ControllerApi extends BaseAPI {
4986
4986
  * @param {*} [options] Override http request option.
4987
4987
  * @throws {RequiredError}
4988
4988
  */
4989
- getCoordinateSystem(cell: string, controller: string, coordinateSystem: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem, any>>;
4989
+ getCoordinateSystem(cell: string, controller: string, coordinateSystem: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CoordinateSystem, any>>;
4990
4990
  /**
4991
4991
  * Get the current state of a robot controller.
4992
4992
  * @summary State
@@ -4995,7 +4995,7 @@ declare class ControllerApi extends BaseAPI {
4995
4995
  * @param {*} [options] Override http request option.
4996
4996
  * @throws {RequiredError}
4997
4997
  */
4998
- getCurrentRobotControllerState(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotControllerState, any>>;
4998
+ getCurrentRobotControllerState(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<RobotControllerState, any>>;
4999
4999
  /**
5000
5000
  * Get the configuration for a robot controller.
5001
5001
  * @summary Robot Controller
@@ -5004,7 +5004,7 @@ declare class ControllerApi extends BaseAPI {
5004
5004
  * @param {*} [options] Override http request option.
5005
5005
  * @throws {RequiredError}
5006
5006
  */
5007
- getRobotController(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotController, any>>;
5007
+ getRobotController(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<RobotController, any>>;
5008
5008
  /**
5009
5009
  * 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.
5010
5010
  * @summary Virtual Controller Configuration
@@ -5013,7 +5013,7 @@ declare class ControllerApi extends BaseAPI {
5013
5013
  * @param {*} [options] Override http request option.
5014
5014
  * @throws {RequiredError}
5015
5015
  */
5016
- getVirtualControllerConfiguration(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<VirtualRobotConfiguration, any>>;
5016
+ getVirtualControllerConfiguration(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<VirtualRobotConfiguration, any>>;
5017
5017
  /**
5018
5018
  * 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.
5019
5019
  * @summary List Coordinate Systems
@@ -5023,7 +5023,7 @@ declare class ControllerApi extends BaseAPI {
5023
5023
  * @param {*} [options] Override http request option.
5024
5024
  * @throws {RequiredError}
5025
5025
  */
5026
- listCoordinateSystems(cell: string, controller: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem[], any>>;
5026
+ listCoordinateSystems(cell: string, controller: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CoordinateSystem[], any>>;
5027
5027
  /**
5028
5028
  * List the names of all deployed robot controllers.
5029
5029
  * @summary List Robot Controllers
@@ -5031,7 +5031,7 @@ declare class ControllerApi extends BaseAPI {
5031
5031
  * @param {*} [options] Override http request option.
5032
5032
  * @throws {RequiredError}
5033
5033
  */
5034
- listRobotControllers(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
5034
+ listRobotControllers(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
5035
5035
  /**
5036
5036
  * Switch between monitor and control usage as default for a robot controller. Monitoring mode is used to read information from the robot controller and control mode is used to command the robot system. As long as the robot controller is connected via network, monitoring mode is always possible. To switch to control mode the robot controller must be in `automatic` or `manual` operating mode and safety state `normal` or `reduced`. If the robot controller is in `manual` operating mode, you have to manually confirm the control usage activation on the robot control panel. This manual confirmation can\'t be replaced with this API. Without manual confirmation the robot controller will stay in monitor mode. The robot system will try to activate the required operation mode for the requested usage unless no active call requires a different mode. > **NOTE** > > `setDefaultMode` enables the robot controller to stay in control mode to keep the motors activated. > This allows for faster execution of sequential movements as no mode switches are required. > **NOTE** > > Some robot controllers prevent the external activation of automatic operating mode. In this case, changing the operating mode manually at the robot controller is mandatory. > **NOTE** > > The current operation mode and safety state can be requested via [getCurrentRobotControllerState](getCurrentRobotControllerState). If a mode change is not possible, the response lists reasons for the failed change.
5037
5037
  * @summary Set Default Mode
@@ -5041,7 +5041,7 @@ declare class ControllerApi extends BaseAPI {
5041
5041
  * @param {*} [options] Override http request option.
5042
5042
  * @throws {RequiredError}
5043
5043
  */
5044
- setDefaultMode(cell: string, controller: string, mode: SettableRobotSystemMode, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
5044
+ setDefaultMode(cell: string, controller: string, mode: SettableRobotSystemMode, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
5045
5045
  /**
5046
5046
  * <!-- theme: success --> > Websocket endpoint Sets the robot controller into freedrive mode and stays in freedrive until the websocket connection is closed by the client. In freedrive mode, it is possible to move the attached motion groups by hand. This is a blocking call. As long as the websocket connection is open, no other endpoint can control or move the robot. <!-- theme: danger --> > **DANGER** > > Danger caused by robot. Improper assessment by the integrator of the application-specific hazards can result in people being > crushed, drawn in or caught due to the robot\'s complex movement sequences. Before opening the websocket, ensure that > > - The robot is in a safe state, > - The right payload is set, > - No humans or object are within the robot\'s reach or within the cell. As long as the websocket connection is open you will get the current state of the robot system in the response in the specified `response_rate`. If the activation failed, the returned status will return possible reasons for the failure. Free drive mode is only available for robot controllers that support it, in particular cobots. Use [listRobotControllers](listRobotControllers) to check if the robot controller supports free drive mode.
5047
5047
  * @summary Stream Free Drive
@@ -5051,7 +5051,7 @@ declare class ControllerApi extends BaseAPI {
5051
5051
  * @param {*} [options] Override http request option.
5052
5052
  * @throws {RequiredError}
5053
5053
  */
5054
- streamFreeDrive(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotControllerState, any>>;
5054
+ streamFreeDrive(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<RobotControllerState, any>>;
5055
5055
  /**
5056
5056
  * <!-- theme: success --> > Websocket endpoint Receive updates of the state of a robot controller. The stream can be opened before the controller is registered. To register a controller, call [addRobotController](addRobotController). While connecting, the stream sends initialization updates. Once the controller reaches `MODE_MONITOR`, it sends controller state updates.
5057
5057
  * @summary Stream State
@@ -5062,7 +5062,7 @@ declare class ControllerApi extends BaseAPI {
5062
5062
  * @param {*} [options] Override http request option.
5063
5063
  * @throws {RequiredError}
5064
5064
  */
5065
- streamRobotControllerState(cell: string, controller: string, responseRate?: number, addControllerTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotControllerState, any>>;
5065
+ streamRobotControllerState(cell: string, controller: string, responseRate?: number, addControllerTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<RobotControllerState, any>>;
5066
5066
  /**
5067
5067
  * Update the configuration of a robot controller. Reconfigure certain options of a robot controller, or deploy a specific container image of a robot controller. To update a virtual controller, the previous controller will be deleted and a new one created. Changes to the configuration, e.g., TCPs, coordinate systems, mounting, are **not** transferred to the new robot. <!-- theme: info --> > **NOTE** > > An update is not a reset. To do a reset: > 1. Get the current configuration via [getRobotController](getRobotController). > 2. Delete the existing virtual robot controller via [deleteRobotController](deleteRobotController). > 3. Add a virtual robot controller with [addRobotController](addRobotController).
5068
5068
  * @summary Update Robot Controller
@@ -5073,7 +5073,7 @@ declare class ControllerApi extends BaseAPI {
5073
5073
  * @param {*} [options] Override http request option.
5074
5074
  * @throws {RequiredError}
5075
5075
  */
5076
- updateRobotController(cell: string, controller: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
5076
+ updateRobotController(cell: string, controller: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
5077
5077
  }
5078
5078
  /**
5079
5079
  * ControllerInputsOutputsApi - axios parameter creator
@@ -5265,7 +5265,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
5265
5265
  * @param {*} [options] Override http request option.
5266
5266
  * @throws {RequiredError}
5267
5267
  */
5268
- listIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IODescription[], any>>;
5268
+ listIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<IODescription[], any>>;
5269
5269
  /**
5270
5270
  * Retrieves the current values of inputs/outputs. The identifiers of the inputs/outputs must be provided in the request. Request all available input/output identifiers via [listIODescriptions](listIODescriptions).
5271
5271
  * @summary Get Input/Output Values
@@ -5275,7 +5275,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
5275
5275
  * @param {*} [options] Override http request option.
5276
5276
  * @throws {RequiredError}
5277
5277
  */
5278
- listIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IOValue[], any>>;
5278
+ listIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<IOValue[], any>>;
5279
5279
  /**
5280
5280
  * Set the values of outputs. All available output identifiers and possible value ranges can be requested via [listIODescriptions](listIODescriptions). The call will return once the values have been set on and accepted by the robot. This can take up to 200 milliseconds. > **NOTE** > > Do not call this endpoint while another request is still in progress. The second call will fail.
5281
5281
  * @summary Set Output Values
@@ -5285,7 +5285,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
5285
5285
  * @param {*} [options] Override http request option.
5286
5286
  * @throws {RequiredError}
5287
5287
  */
5288
- setOutputValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
5288
+ setOutputValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
5289
5289
  /**
5290
5290
  * <!-- theme: success --> > Websocket endpoint Continuously receive updates of input/output values via websocket. Updates are sent in the update rate of the controller. > **NOTE** > > If you request many values simultaneously, the request is likely to fail. The amount of values that can be streamed simultaneously depends on the specific robot controller. > **NOTE** > > The inputs and outputs are sent in the update rate of the controller to prevent losing any values. This can lead to a high amount of data transmitted.
5291
5291
  * @summary Stream Input/Output Values
@@ -5295,7 +5295,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
5295
5295
  * @param {*} [options] Override http request option.
5296
5296
  * @throws {RequiredError}
5297
5297
  */
5298
- streamIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<StreamIOValuesResponse, any>>;
5298
+ streamIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<StreamIOValuesResponse, any>>;
5299
5299
  /**
5300
5300
  * Wait until an input/output reaches a certain value. This call returns as soon as the condition is met or the request fails. The `comparison_type` value is used to define how the current value of the input/output is compared with given value. Only set the value that corresponds to the `value_type` of the input/output. See [listIODescriptions](listIODescriptions) for more information. **Examples** 1. Wait until analog input `AI_1` < 10: ``` io: \"AI_1\" comparison_type: \"COMPARISON_LESS\" value: 10 ``` 2. Wait until analog input `AI_2` > 5.0: ``` io: \"AI_2\" comparison_type: \"COMPARISON_GREATER\" value: 5.0 ``` 3. Wait until digital input `DI_3` is true: ``` io: \"DI_3\" comparison_type: \"COMPARISON_EQUAL\" value: true ```
5301
5301
  * @summary Wait For
@@ -5305,7 +5305,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
5305
5305
  * @param {*} [options] Override http request option.
5306
5306
  * @throws {RequiredError}
5307
5307
  */
5308
- waitForIOEvent(cell: string, controller: string, waitForIOEventRequest: WaitForIOEventRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<boolean, any>>;
5308
+ waitForIOEvent(cell: string, controller: string, waitForIOEventRequest: WaitForIOEventRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<boolean, any>>;
5309
5309
  }
5310
5310
  /**
5311
5311
  * JoggingApi - axios parameter creator
@@ -5365,7 +5365,7 @@ declare class JoggingApi extends BaseAPI {
5365
5365
  * @param {*} [options] Override http request option.
5366
5366
  * @throws {RequiredError}
5367
5367
  */
5368
- executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ExecuteJoggingResponse, any>>;
5368
+ executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ExecuteJoggingResponse, any>>;
5369
5369
  }
5370
5370
  /**
5371
5371
  * KinematicsApi - axios parameter creator
@@ -5448,7 +5448,7 @@ declare class KinematicsApi extends BaseAPI {
5448
5448
  * @param {*} [options] Override http request option.
5449
5449
  * @throws {RequiredError}
5450
5450
  */
5451
- forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ForwardKinematicsResponse, any>>;
5451
+ forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ForwardKinematicsResponse, any>>;
5452
5452
  /**
5453
5453
  * Returns the reachable joint positions for a list of given poses.
5454
5454
  * @summary Inverse kinematics
@@ -5457,7 +5457,7 @@ declare class KinematicsApi extends BaseAPI {
5457
5457
  * @param {*} [options] Override http request option.
5458
5458
  * @throws {RequiredError}
5459
5459
  */
5460
- inverseKinematics(cell: string, inverseKinematicsRequest: InverseKinematicsRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<InverseKinematicsResponse, any>>;
5460
+ inverseKinematics(cell: string, inverseKinematicsRequest: InverseKinematicsRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<InverseKinematicsResponse, any>>;
5461
5461
  }
5462
5462
  /**
5463
5463
  * LicenseApi - axios parameter creator
@@ -5572,28 +5572,28 @@ declare class LicenseApi extends BaseAPI {
5572
5572
  * @param {*} [options] Override http request option.
5573
5573
  * @throws {RequiredError}
5574
5574
  */
5575
- activateLicense(activateLicenseRequest: ActivateLicenseRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<License, any>>;
5575
+ activateLicense(activateLicenseRequest: ActivateLicenseRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<License, any>>;
5576
5576
  /**
5577
5577
  * Deactivates active license.
5578
5578
  * @summary Deactivate license
5579
5579
  * @param {*} [options] Override http request option.
5580
5580
  * @throws {RequiredError}
5581
5581
  */
5582
- deactivateLicense(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
5582
+ deactivateLicense(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
5583
5583
  /**
5584
5584
  * Get information on the license used with the Wandelbots NOVA instance, e.g., licensed product, expiration date, license status.
5585
5585
  * @summary Get license
5586
5586
  * @param {*} [options] Override http request option.
5587
5587
  * @throws {RequiredError}
5588
5588
  */
5589
- getLicense(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<License, any>>;
5589
+ getLicense(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<License, any>>;
5590
5590
  /**
5591
5591
  * Get the license status. - If `valid`, Wandelbots NOVA can be used. - If `expired`, the license has to be renewed in order to use Wandelbots NOVA.
5592
5592
  * @summary Get license status
5593
5593
  * @param {*} [options] Override http request option.
5594
5594
  * @throws {RequiredError}
5595
5595
  */
5596
- getLicenseStatus(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<LicenseStatus, any>>;
5596
+ getLicenseStatus(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<LicenseStatus, any>>;
5597
5597
  }
5598
5598
  /**
5599
5599
  * MotionGroupApi - axios parameter creator
@@ -5723,7 +5723,7 @@ declare class MotionGroupApi extends BaseAPI {
5723
5723
  * @param {*} [options] Override http request option.
5724
5724
  * @throws {RequiredError}
5725
5725
  */
5726
- getCurrentMotionGroupState(cell: string, controller: string, motionGroup: string, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupState, any>>;
5726
+ getCurrentMotionGroupState(cell: string, controller: string, motionGroup: string, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<MotionGroupState, any>>;
5727
5727
  /**
5728
5728
  * Get the set of parameters that describe the motion group and its configuration including safety zones, limits, etc. This data can change upon connection to the robot.
5729
5729
  * @summary Description
@@ -5733,7 +5733,7 @@ declare class MotionGroupApi extends BaseAPI {
5733
5733
  * @param {*} [options] Override http request option.
5734
5734
  * @throws {RequiredError}
5735
5735
  */
5736
- getMotionGroupDescription(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupDescription, any>>;
5736
+ getMotionGroupDescription(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<MotionGroupDescription, any>>;
5737
5737
  /**
5738
5738
  * <!-- theme: success --> > Websocket endpoint Receive updates of the motion group state. The stream will be closed from the server if the controller is disconnected.
5739
5739
  * @summary Stream State
@@ -5745,7 +5745,7 @@ declare class MotionGroupApi extends BaseAPI {
5745
5745
  * @param {*} [options] Override http request option.
5746
5746
  * @throws {RequiredError}
5747
5747
  */
5748
- streamMotionGroupState(cell: string, controller: string, motionGroup: string, responseRate?: number, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupState, any>>;
5748
+ streamMotionGroupState(cell: string, controller: string, motionGroup: string, responseRate?: number, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<MotionGroupState, any>>;
5749
5749
  }
5750
5750
  /**
5751
5751
  * MotionGroupModelsApi - axios parameter creator
@@ -5822,7 +5822,7 @@ declare class MotionGroupModelsApi extends BaseAPI {
5822
5822
  * @param {*} [options] Override http request option.
5823
5823
  * @throws {RequiredError}
5824
5824
  */
5825
- getMotionGroupCollisionModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
5825
+ getMotionGroupCollisionModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
5826
5826
  [key: string]: Collider;
5827
5827
  }[], any>>;
5828
5828
  /**
@@ -5831,7 +5831,7 @@ declare class MotionGroupModelsApi extends BaseAPI {
5831
5831
  * @param {*} [options] Override http request option.
5832
5832
  * @throws {RequiredError}
5833
5833
  */
5834
- getMotionGroupModels(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
5834
+ getMotionGroupModels(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
5835
5835
  }
5836
5836
  /**
5837
5837
  * ProgramApi - axios parameter creator
@@ -5968,7 +5968,7 @@ declare class ProgramApi extends BaseAPI {
5968
5968
  * @param {*} [options] Override http request option.
5969
5969
  * @throws {RequiredError}
5970
5970
  */
5971
- getProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Program, any>>;
5971
+ getProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Program, any>>;
5972
5972
  /**
5973
5973
  * <!-- theme: danger --> > **Experimental** List details of all existing programs.
5974
5974
  * @summary List programs
@@ -5976,7 +5976,7 @@ declare class ProgramApi extends BaseAPI {
5976
5976
  * @param {*} [options] Override http request option.
5977
5977
  * @throws {RequiredError}
5978
5978
  */
5979
- listPrograms(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Program[], any>>;
5979
+ listPrograms(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Program[], any>>;
5980
5980
  /**
5981
5981
  * <!-- theme: danger --> > **Experimental** This endpoint starts a new program execution. The program will be executed asynchronously.
5982
5982
  * @summary Start the program
@@ -5986,7 +5986,7 @@ declare class ProgramApi extends BaseAPI {
5986
5986
  * @param {*} [options] Override http request option.
5987
5987
  * @throws {RequiredError}
5988
5988
  */
5989
- startProgram(cell: string, program: string, programStartRequest: ProgramStartRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProgramRun, any>>;
5989
+ startProgram(cell: string, program: string, programStartRequest: ProgramStartRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ProgramRun, any>>;
5990
5990
  /**
5991
5991
  * <!-- theme: danger --> > **Experimental** Stop a specific program run.
5992
5992
  * @summary Stop program run
@@ -5995,7 +5995,7 @@ declare class ProgramApi extends BaseAPI {
5995
5995
  * @param {*} [options] Override http request option.
5996
5996
  * @throws {RequiredError}
5997
5997
  */
5998
- stopProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
5998
+ stopProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
5999
5999
  }
6000
6000
  /**
6001
6001
  * StoreCollisionComponentsApi - axios parameter creator
@@ -6468,7 +6468,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6468
6468
  * @param {*} [options] Override http request option.
6469
6469
  * @throws {RequiredError}
6470
6470
  */
6471
- deleteStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
6471
+ deleteStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
6472
6472
  /**
6473
6473
  * Deletes the stored link chain. <!-- theme: danger --> > This will delete persistently stored data.
6474
6474
  * @summary Delete Link Chain
@@ -6477,7 +6477,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6477
6477
  * @param {*} [options] Override http request option.
6478
6478
  * @throws {RequiredError}
6479
6479
  */
6480
- deleteStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
6480
+ deleteStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
6481
6481
  /**
6482
6482
  * Deletes the stored tool. <!-- theme: danger --> > This will delete persistently stored data.
6483
6483
  * @summary Delete Tool
@@ -6486,7 +6486,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6486
6486
  * @param {*} [options] Override http request option.
6487
6487
  * @throws {RequiredError}
6488
6488
  */
6489
- deleteStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
6489
+ deleteStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
6490
6490
  /**
6491
6491
  * Returns the collider.
6492
6492
  * @summary Get Collider
@@ -6495,7 +6495,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6495
6495
  * @param {*} [options] Override http request option.
6496
6496
  * @throws {RequiredError}
6497
6497
  */
6498
- getStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Collider, any>>;
6498
+ getStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Collider, any>>;
6499
6499
  /**
6500
6500
  * Returns the collision link chain.
6501
6501
  * @summary Get Link Chain
@@ -6504,7 +6504,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6504
6504
  * @param {*} [options] Override http request option.
6505
6505
  * @throws {RequiredError}
6506
6506
  */
6507
- getStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6507
+ getStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6508
6508
  [key: string]: Collider;
6509
6509
  }[], any>>;
6510
6510
  /**
@@ -6515,7 +6515,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6515
6515
  * @param {*} [options] Override http request option.
6516
6516
  * @throws {RequiredError}
6517
6517
  */
6518
- getStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6518
+ getStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6519
6519
  [key: string]: Collider;
6520
6520
  }, any>>;
6521
6521
  /**
@@ -6525,7 +6525,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6525
6525
  * @param {*} [options] Override http request option.
6526
6526
  * @throws {RequiredError}
6527
6527
  */
6528
- listCollisionLinkChains(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6528
+ listCollisionLinkChains(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6529
6529
  [key: string]: {
6530
6530
  [key: string]: Collider;
6531
6531
  }[];
@@ -6537,7 +6537,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6537
6537
  * @param {*} [options] Override http request option.
6538
6538
  * @throws {RequiredError}
6539
6539
  */
6540
- listCollisionLinkChainsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
6540
+ listCollisionLinkChainsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
6541
6541
  /**
6542
6542
  * Returns all stored colliders.
6543
6543
  * @summary List Colliders
@@ -6545,7 +6545,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6545
6545
  * @param {*} [options] Override http request option.
6546
6546
  * @throws {RequiredError}
6547
6547
  */
6548
- listStoredColliders(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6548
+ listStoredColliders(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6549
6549
  [key: string]: Collider;
6550
6550
  }, any>>;
6551
6551
  /**
@@ -6555,7 +6555,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6555
6555
  * @param {*} [options] Override http request option.
6556
6556
  * @throws {RequiredError}
6557
6557
  */
6558
- listStoredCollidersKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
6558
+ listStoredCollidersKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
6559
6559
  /**
6560
6560
  * Returns the list of stored tools.
6561
6561
  * @summary List Tools
@@ -6563,7 +6563,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6563
6563
  * @param {*} [options] Override http request option.
6564
6564
  * @throws {RequiredError}
6565
6565
  */
6566
- listStoredCollisionTools(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6566
+ listStoredCollisionTools(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6567
6567
  [key: string]: {
6568
6568
  [key: string]: Collider;
6569
6569
  };
@@ -6575,7 +6575,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6575
6575
  * @param {*} [options] Override http request option.
6576
6576
  * @throws {RequiredError}
6577
6577
  */
6578
- listStoredCollisionToolsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
6578
+ listStoredCollisionToolsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
6579
6579
  /**
6580
6580
  * Stores collider. - If the collider does not exist, it will be created. - If the collider exists, it will be updated.
6581
6581
  * @summary Store Collider
@@ -6585,7 +6585,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6585
6585
  * @param {*} [options] Override http request option.
6586
6586
  * @throws {RequiredError}
6587
6587
  */
6588
- storeCollider(cell: string, collider: string, collider2: Collider, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Collider, any>>;
6588
+ storeCollider(cell: string, collider: string, collider2: Collider, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Collider, any>>;
6589
6589
  /**
6590
6590
  * Stores link chain. - If the link chain does not exist, it will be created. - If the link chain exists, it will be updated.
6591
6591
  * @summary Store Link Chain
@@ -6597,7 +6597,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6597
6597
  */
6598
6598
  storeCollisionLinkChain(cell: string, linkChain: string, collider: Array<{
6599
6599
  [key: string]: Collider;
6600
- }>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6600
+ }>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6601
6601
  [key: string]: Collider;
6602
6602
  }[], any>>;
6603
6603
  /**
@@ -6611,7 +6611,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6611
6611
  */
6612
6612
  storeCollisionTool(cell: string, tool: string, requestBody: {
6613
6613
  [key: string]: Collider;
6614
- }, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6614
+ }, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6615
6615
  [key: string]: Collider;
6616
6616
  }, any>>;
6617
6617
  }
@@ -6778,7 +6778,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
6778
6778
  * @param {*} [options] Override http request option.
6779
6779
  * @throws {RequiredError}
6780
6780
  */
6781
- deleteStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
6781
+ deleteStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
6782
6782
  /**
6783
6783
  * Returns the stored collision setup.
6784
6784
  * @summary Get Collision Setup
@@ -6787,7 +6787,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
6787
6787
  * @param {*} [options] Override http request option.
6788
6788
  * @throws {RequiredError}
6789
6789
  */
6790
- getStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CollisionSetup, any>>;
6790
+ getStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CollisionSetup, any>>;
6791
6791
  /**
6792
6792
  * Returns a list of stored collision setups.
6793
6793
  * @summary List Collision Setups
@@ -6795,7 +6795,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
6795
6795
  * @param {*} [options] Override http request option.
6796
6796
  * @throws {RequiredError}
6797
6797
  */
6798
- listStoredCollisionSetups(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6798
+ listStoredCollisionSetups(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6799
6799
  [key: string]: CollisionSetup;
6800
6800
  }, any>>;
6801
6801
  /**
@@ -6805,7 +6805,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
6805
6805
  * @param {*} [options] Override http request option.
6806
6806
  * @throws {RequiredError}
6807
6807
  */
6808
- listStoredCollisionSetupsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
6808
+ listStoredCollisionSetupsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
6809
6809
  /**
6810
6810
  * Stores collision setup. - If the collision setup does not exist, it will be created. - If the collision setup exists, it will be updated.
6811
6811
  * @summary Store Collision Setup
@@ -6815,7 +6815,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
6815
6815
  * @param {*} [options] Override http request option.
6816
6816
  * @throws {RequiredError}
6817
6817
  */
6818
- storeCollisionSetup(cell: string, setup: string, collisionSetup: CollisionSetup, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CollisionSetup, any>>;
6818
+ storeCollisionSetup(cell: string, setup: string, collisionSetup: CollisionSetup, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CollisionSetup, any>>;
6819
6819
  }
6820
6820
  /**
6821
6821
  * StoreObjectApi - axios parameter creator
@@ -7011,7 +7011,7 @@ declare class StoreObjectApi extends BaseAPI {
7011
7011
  * @param {*} [options] Override http request option.
7012
7012
  * @throws {RequiredError}
7013
7013
  */
7014
- clearAllObjects(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
7014
+ clearAllObjects(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
7015
7015
  /**
7016
7016
  * Delete an object <!-- theme: danger --> > This will delete persistently stored data.
7017
7017
  * @summary Delete Object
@@ -7020,7 +7020,7 @@ declare class StoreObjectApi extends BaseAPI {
7020
7020
  * @param {*} [options] Override http request option.
7021
7021
  * @throws {RequiredError}
7022
7022
  */
7023
- deleteObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
7023
+ deleteObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
7024
7024
  /**
7025
7025
  * Returns content and metadata of a stored object.
7026
7026
  * @summary Get Object
@@ -7029,7 +7029,7 @@ declare class StoreObjectApi extends BaseAPI {
7029
7029
  * @param {*} [options] Override http request option.
7030
7030
  * @throws {RequiredError}
7031
7031
  */
7032
- getObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<File, any>>;
7032
+ getObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<File, any>>;
7033
7033
  /**
7034
7034
  * Returns metadata. Object content is not returned.
7035
7035
  * @summary Get Object Metadata
@@ -7038,7 +7038,7 @@ declare class StoreObjectApi extends BaseAPI {
7038
7038
  * @param {*} [options] Override http request option.
7039
7039
  * @throws {RequiredError}
7040
7040
  */
7041
- getObjectMetadata(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
7041
+ getObjectMetadata(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
7042
7042
  /**
7043
7043
  * List the keys for all objects.
7044
7044
  * @summary List all Object Keys
@@ -7046,7 +7046,7 @@ declare class StoreObjectApi extends BaseAPI {
7046
7046
  * @param {*} [options] Override http request option.
7047
7047
  * @throws {RequiredError}
7048
7048
  */
7049
- listAllObjectKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
7049
+ listAllObjectKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
7050
7050
  /**
7051
7051
  * Store any data as an object. Using a key which already contains an object will override the previously stored object. Use [getObjectMetadata](getObjectMetadata) to verify that the key does not contain objects. #### Optional Specify metadata as a dictionary with names and values.
7052
7052
  * @summary Store Object
@@ -7059,7 +7059,7 @@ declare class StoreObjectApi extends BaseAPI {
7059
7059
  */
7060
7060
  storeObject(cell: string, key: string, xMetadata?: {
7061
7061
  [key: string]: string;
7062
- }, anyValue?: any, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
7062
+ }, anyValue?: any, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
7063
7063
  }
7064
7064
  /**
7065
7065
  * SystemApi - axios parameter creator
@@ -7306,7 +7306,7 @@ declare class SystemApi extends BaseAPI {
7306
7306
  */
7307
7307
  backupConfiguration(resources?: Array<string>, metadata?: {
7308
7308
  [key: string]: string;
7309
- }, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<File, any>>;
7309
+ }, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<File, any>>;
7310
7310
  /**
7311
7311
  * Check if a more recent Wandelbots NOVA Version is available.
7312
7312
  * @summary Check update
@@ -7314,7 +7314,7 @@ declare class SystemApi extends BaseAPI {
7314
7314
  * @param {*} [options] Override http request option.
7315
7315
  * @throws {RequiredError}
7316
7316
  */
7317
- checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string, any>>;
7317
+ checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string, any>>;
7318
7318
  /**
7319
7319
  * Retrieves the status of a configuration backup. The status can only be requested for 5 minutes after backup creation. After 5 minutes, 404 is returned.
7320
7320
  * @summary Retrieve Backup Status
@@ -7322,35 +7322,35 @@ declare class SystemApi extends BaseAPI {
7322
7322
  * @param {*} [options] Override http request option.
7323
7323
  * @throws {RequiredError}
7324
7324
  */
7325
- getConfigurationBackupStatus(operationId: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ConfigurationArchiveStatus, any>>;
7325
+ getConfigurationBackupStatus(operationId: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ConfigurationArchiveStatus, any>>;
7326
7326
  /**
7327
7327
  * Collects information on the current status of all NOVA services and exports them as a .zip file. Includes information on all cells on the instance such as the service logs and virtual robot controllers. From each cell the logs of all services are included, as well as the configuration of each connected controller to start virtual robots.
7328
7328
  * @summary Download Diagnosis Package
7329
7329
  * @param {*} [options] Override http request option.
7330
7330
  * @throws {RequiredError}
7331
7331
  */
7332
- getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<File, any>>;
7332
+ getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<File, any>>;
7333
7333
  /**
7334
7334
  * Get the status of all system services.
7335
7335
  * @summary Wandelbots NOVA status
7336
7336
  * @param {*} [options] Override http request option.
7337
7337
  * @throws {RequiredError}
7338
7338
  */
7339
- getSystemStatus(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ServiceStatus[], any>>;
7339
+ getSystemStatus(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ServiceStatus[], any>>;
7340
7340
  /**
7341
7341
  * Get the current Wandelbots NOVA version.
7342
7342
  * @summary Wandelbots NOVA Version
7343
7343
  * @param {*} [options] Override http request option.
7344
7344
  * @throws {RequiredError}
7345
7345
  */
7346
- getSystemVersion(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string, any>>;
7346
+ getSystemVersion(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string, any>>;
7347
7347
  /**
7348
7348
  * Retrieves a list of all available configuration resources for backup purposes.
7349
7349
  * @summary List Configuration Resources
7350
7350
  * @param {*} [options] Override http request option.
7351
7351
  * @throws {RequiredError}
7352
7352
  */
7353
- listConfigurationResources(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ConfigurationResource[], any>>;
7353
+ listConfigurationResources(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ConfigurationResource[], any>>;
7354
7354
  /**
7355
7355
  * Restores a previously backed up configuration.
7356
7356
  * @summary Restore Configuration Backup
@@ -7359,7 +7359,7 @@ declare class SystemApi extends BaseAPI {
7359
7359
  * @param {*} [options] Override http request option.
7360
7360
  * @throws {RequiredError}
7361
7361
  */
7362
- restoreConfiguration(resources: Array<string>, body: File, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
7362
+ restoreConfiguration(resources: Array<string>, body: File, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
7363
7363
  /**
7364
7364
  * Update the Wandelbots NOVA version and all attached services. Sending this API Request will trigger an update of all NOVA services that are part of a cell. Previous cells and cell configurations will remain on the instance. If the update fails, the previous Wandelbots NOVA version is restored.
7365
7365
  * @summary Update Wandelbots NOVA version
@@ -7367,7 +7367,7 @@ declare class SystemApi extends BaseAPI {
7367
7367
  * @param {*} [options] Override http request option.
7368
7368
  * @throws {RequiredError}
7369
7369
  */
7370
- updateNovaVersion(updateNovaVersionRequest: UpdateNovaVersionRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
7370
+ updateNovaVersion(updateNovaVersionRequest: UpdateNovaVersionRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
7371
7371
  }
7372
7372
  /**
7373
7373
  * TrajectoryCachingApi - axios parameter creator
@@ -7541,7 +7541,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
7541
7541
  * @param {*} [options] Override http request option.
7542
7542
  * @throws {RequiredError}
7543
7543
  */
7544
- addTrajectory(cell: string, controller: string, addTrajectoryRequest: AddTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<AddTrajectoryResponse, any>>;
7544
+ addTrajectory(cell: string, controller: string, addTrajectoryRequest: AddTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<AddTrajectoryResponse, any>>;
7545
7545
  /**
7546
7546
  * Clear the trajectory cache.
7547
7547
  * @summary Clear Trajectories
@@ -7550,7 +7550,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
7550
7550
  * @param {*} [options] Override http request option.
7551
7551
  * @throws {RequiredError}
7552
7552
  */
7553
- clearTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
7553
+ clearTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
7554
7554
  /**
7555
7555
  * Delete a previously created trajectory from cache. Use [listTrajectories](listTrajectories) to list all cached trajectories. Trajectories are removed automatically if the motion group or the corresponding controller is disconnected.
7556
7556
  * @summary Delete Trajectory
@@ -7560,7 +7560,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
7560
7560
  * @param {*} [options] Override http request option.
7561
7561
  * @throws {RequiredError}
7562
7562
  */
7563
- deleteTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
7563
+ deleteTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
7564
7564
  /**
7565
7565
  * Get a previously created trajectory from cache. Use [listTrajectories](listTrajectories) to list all cached trajectories.
7566
7566
  * @summary Get Trajectory
@@ -7570,7 +7570,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
7570
7570
  * @param {*} [options] Override http request option.
7571
7571
  * @throws {RequiredError}
7572
7572
  */
7573
- getTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<GetTrajectoryResponse, any>>;
7573
+ getTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<GetTrajectoryResponse, any>>;
7574
7574
  /**
7575
7575
  * List currently cached trajectories. Use [addTrajectory](addTrajectory) to add a new trajectory. Adding trajectories is necessary to execute them. Trajectories are removed if the corresponding motion group or controller disconnects.
7576
7576
  * @summary List Trajectories
@@ -7579,7 +7579,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
7579
7579
  * @param {*} [options] Override http request option.
7580
7580
  * @throws {RequiredError}
7581
7581
  */
7582
- listTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ListTrajectoriesResponse, any>>;
7582
+ listTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ListTrajectoriesResponse, any>>;
7583
7583
  }
7584
7584
  /**
7585
7585
  * TrajectoryExecutionApi - axios parameter creator
@@ -7639,7 +7639,7 @@ declare class TrajectoryExecutionApi extends BaseAPI {
7639
7639
  * @param {*} [options] Override http request option.
7640
7640
  * @throws {RequiredError}
7641
7641
  */
7642
- executeTrajectory(cell: string, controller: string, executeTrajectoryRequest: ExecuteTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ExecuteTrajectoryResponse, any>>;
7642
+ executeTrajectory(cell: string, controller: string, executeTrajectoryRequest: ExecuteTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ExecuteTrajectoryResponse, any>>;
7643
7643
  }
7644
7644
  /**
7645
7645
  * TrajectoryPlanningApi - axios parameter creator
@@ -7722,7 +7722,7 @@ declare class TrajectoryPlanningApi extends BaseAPI {
7722
7722
  * @param {*} [options] Override http request option.
7723
7723
  * @throws {RequiredError}
7724
7724
  */
7725
- planCollisionFree(cell: string, planCollisionFreeRequest: PlanCollisionFreeRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<PlanCollisionFreeResponse, any>>;
7725
+ planCollisionFree(cell: string, planCollisionFreeRequest: PlanCollisionFreeRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<PlanCollisionFreeResponse, any>>;
7726
7726
  /**
7727
7727
  * Plans a new trajectory for a single motion group. Describe the trajectory as a sequence of motion commands that the robots TCP should follow. Use the following workflow to execute a planned trajectory: 1. Plan a trajectory. 2. Optional: Load the planned trajectory into the cache using the [addTrajectory](addTrajectory) endpoint. 3. Execute the (cached) trajectory using the [executeTrajectory](executeTrajectory) endpoint. If the trajectory is not executable, the response will contain the joint trajectory up until the error, e.g., all samples until a collision occurs. <!-- theme: info --> > #### Exception > > If a CartesianPTP or JointPTP motion command has an invalid target, the response will contain the trajectory up until the start of the invalid PTP motion.
7728
7728
  * @summary Plan Trajectory
@@ -7731,7 +7731,7 @@ declare class TrajectoryPlanningApi extends BaseAPI {
7731
7731
  * @param {*} [options] Override http request option.
7732
7732
  * @throws {RequiredError}
7733
7733
  */
7734
- planTrajectory(cell: string, planTrajectoryRequest: PlanTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<PlanTrajectoryResponse, any>>;
7734
+ planTrajectory(cell: string, planTrajectoryRequest: PlanTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<PlanTrajectoryResponse, any>>;
7735
7735
  }
7736
7736
  /**
7737
7737
  * VersionApi - axios parameter creator
@@ -7779,7 +7779,7 @@ declare class VersionApi extends BaseAPI {
7779
7779
  * @param {*} [options] Override http request option.
7780
7780
  * @throws {RequiredError}
7781
7781
  */
7782
- getApiVersion(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ApiVersion, any>>;
7782
+ getApiVersion(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ApiVersion, any>>;
7783
7783
  }
7784
7784
  /**
7785
7785
  * VirtualControllerApi - axios parameter creator
@@ -8269,7 +8269,7 @@ declare class VirtualControllerApi extends BaseAPI {
8269
8269
  * @param {*} [options] Override http request option.
8270
8270
  * @throws {RequiredError}
8271
8271
  */
8272
- addVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, coordinateSystemData: CoordinateSystemData, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8272
+ addVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, coordinateSystemData: CoordinateSystemData, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8273
8273
  /**
8274
8274
  * 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. <!-- theme: info --> > #### NOTE > > When adding or updating a TCP, the **virtual robot is restarted** to apply the new configuration. > > During this restart: > - Robot visualization can temporarily disappear. > - The TCP may not be immediately visible or appear outdated in visualizations. > - All connections to virtual robot are closed and re-established, which introduces a short delay before the TCP is available for operation. > > The API call itself does **not wait until the restart and re-synchronization are complete**. > A successful response indicates that the request was accepted, but the TCP may not yet be visible nor usable.
8275
8275
  * @summary Add TCP
@@ -8281,7 +8281,7 @@ declare class VirtualControllerApi extends BaseAPI {
8281
8281
  * @param {*} [options] Override http request option.
8282
8282
  * @throws {RequiredError}
8283
8283
  */
8284
- addVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, robotTcpData: RobotTcpData, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8284
+ addVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, robotTcpData: RobotTcpData, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8285
8285
  /**
8286
8286
  * Deletes a coordinate system from the virtual controller. This will remove the coordinate system from the list of coordinate systems and also remove all dependent coordinate systems that use the deleted coordinate system as reference. <!-- theme: info --> > #### NOTE > > When a new coordinate system is removed, the **virtual robot is restarted** to apply the new configuration. > > During this restart: > - Robot visualization can temporarily disappear or appear outdated in the UI. > - Coordinate system 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 coordinate system may not yet be available for visualization or program execution.
8287
8287
  * @summary Delete Coordinate System
@@ -8292,7 +8292,7 @@ declare class VirtualControllerApi extends BaseAPI {
8292
8292
  * @param {*} [options] Override http request option.
8293
8293
  * @throws {RequiredError}
8294
8294
  */
8295
- deleteVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8295
+ deleteVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8296
8296
  /**
8297
8297
  * Removes the TCP (Tool Center Point) from the motion group. An unknown TCP is a valid input and will simply be ignored. <!-- theme: info --> > #### NOTE > > When removing a TCP, the **virtual robot is restarted** to apply the new configuration. > > During this restart: > - Robot visualization can temporarily disappear. > - The removal of the TCP may not be immediately visible or appear outdated 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**. > A successful response indicates that the request was accepted, but the then used TCP may not yet be visible nor usable.
8298
8298
  * @summary Remove TCP
@@ -8303,7 +8303,7 @@ declare class VirtualControllerApi extends BaseAPI {
8303
8303
  * @param {*} [options] Override http request option.
8304
8304
  * @throws {RequiredError}
8305
8305
  */
8306
- deleteVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8306
+ deleteVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8307
8307
  /**
8308
8308
  * Requests the Emergency Stop state of the virtual robot controller. Use [getCurrentMotionGroupState](getCurrentMotionGroupState) to get the Emergency Stop state with `safety_state` regardless of the controller type. > **NOTE** > > The Emergency Stop state can only be changed when using virtual robot controllers.
8309
8309
  * @summary Get Emergency Stop State
@@ -8312,7 +8312,7 @@ declare class VirtualControllerApi extends BaseAPI {
8312
8312
  * @param {*} [options] Override http request option.
8313
8313
  * @throws {RequiredError}
8314
8314
  */
8315
- getEmergencyStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Flag, any>>;
8315
+ getEmergencyStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Flag, any>>;
8316
8316
  /**
8317
8317
  * Get the current motion group state which provides values for the joints\' position, velocity and acceleration.
8318
8318
  * @summary Get Motion Group State
@@ -8322,7 +8322,7 @@ declare class VirtualControllerApi extends BaseAPI {
8322
8322
  * @param {*} [options] Override http request option.
8323
8323
  * @throws {RequiredError}
8324
8324
  */
8325
- getMotionGroupState(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupJoints, any>>;
8325
+ getMotionGroupState(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<MotionGroupJoints, any>>;
8326
8326
  /**
8327
8327
  * Gets information on the motion group.
8328
8328
  * @summary Motion Group Description
@@ -8331,7 +8331,7 @@ declare class VirtualControllerApi extends BaseAPI {
8331
8331
  * @param {*} [options] Override http request option.
8332
8332
  * @throws {RequiredError}
8333
8333
  */
8334
- getMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupInfo[], any>>;
8334
+ getMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<MotionGroupInfo[], any>>;
8335
8335
  /**
8336
8336
  * Requests the operation mode of the virtual robot controller. To get the operation mode regardless of the controller type, use [getCurrentMotionGroupState](getCurrentMotionGroupState). > **NOTE** > > The operation mode can only be changed via API when using virtual robot controllers.
8337
8337
  * @summary Get Operation Mode
@@ -8340,7 +8340,7 @@ declare class VirtualControllerApi extends BaseAPI {
8340
8340
  * @param {*} [options] Override http request option.
8341
8341
  * @throws {RequiredError}
8342
8342
  */
8343
- getOperationMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<OpMode, any>>;
8343
+ getOperationMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<OpMode, any>>;
8344
8344
  /**
8345
8345
  * Gets motion group mounting. The motion group is based on the origin of the returned coordinate system.
8346
8346
  * @summary Get Mounting
@@ -8350,7 +8350,7 @@ declare class VirtualControllerApi extends BaseAPI {
8350
8350
  * @param {*} [options] Override http request option.
8351
8351
  * @throws {RequiredError}
8352
8352
  */
8353
- getVirtualControllerMounting(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem, any>>;
8353
+ getVirtualControllerMounting(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CoordinateSystem, any>>;
8354
8354
  /**
8355
8355
  * Lists all coordinate systems on the robot controller.
8356
8356
  * @summary List Coordinate Systems
@@ -8359,7 +8359,7 @@ declare class VirtualControllerApi extends BaseAPI {
8359
8359
  * @param {*} [options] Override http request option.
8360
8360
  * @throws {RequiredError}
8361
8361
  */
8362
- listVirtualControllerCoordinateSystems(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem[], any>>;
8362
+ listVirtualControllerCoordinateSystems(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CoordinateSystem[], any>>;
8363
8363
  /**
8364
8364
  * Lists TCPs of the motion group. An empty TCP list is valid, e.g., for external axes.
8365
8365
  * @summary List TCPs
@@ -8369,7 +8369,7 @@ declare class VirtualControllerApi extends BaseAPI {
8369
8369
  * @param {*} [options] Override http request option.
8370
8370
  * @throws {RequiredError}
8371
8371
  */
8372
- listVirtualControllerTcps(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotTcp[], any>>;
8372
+ listVirtualControllerTcps(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<RobotTcp[], any>>;
8373
8373
  /**
8374
8374
  * 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 with `safety_state` regardless of the controller type. > **NOTE** > > The Emergency Stop state can only be changed via API when using virtual robot controllers.
8375
8375
  * @summary Push or Release Emergency Stop
@@ -8379,7 +8379,7 @@ declare class VirtualControllerApi extends BaseAPI {
8379
8379
  * @param {*} [options] Override http request option.
8380
8380
  * @throws {RequiredError}
8381
8381
  */
8382
- setEmergencyStop(cell: string, controller: string, active?: boolean, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8382
+ setEmergencyStop(cell: string, controller: string, active?: boolean, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8383
8383
  /**
8384
8384
  * Sets the values for joint position, joint velocity or joint acceleration of a motion group state. The values are immediately applied to the joints of the motion group. <!-- theme: info --> > #### NOTE > > Only use the endpoint when the motion group is in monitor mode. If the motion group is controlled, currently jogging or planning motions, > the values are overridden by the controller or an error may occur.
8385
8385
  * @summary Set Motion Group State
@@ -8390,7 +8390,7 @@ declare class VirtualControllerApi extends BaseAPI {
8390
8390
  * @param {*} [options] Override http request option.
8391
8391
  * @throws {RequiredError}
8392
8392
  */
8393
- setMotionGroupState(cell: string, controller: string, motionGroup: string, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8393
+ setMotionGroupState(cell: string, controller: string, motionGroup: string, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8394
8394
  /**
8395
8395
  * Changes the operation mode of the virtual robot controller to the specified value. To get the operation mode regardless of the controller type, use [getCurrentMotionGroupState](getCurrentMotionGroupState). > **NOTE** > > The operation mode can only be changed via API when using virtual robot controllers.
8396
8396
  * @summary Set Operation Mode
@@ -8400,7 +8400,7 @@ declare class VirtualControllerApi extends BaseAPI {
8400
8400
  * @param {*} [options] Override http request option.
8401
8401
  * @throws {RequiredError}
8402
8402
  */
8403
- setOperationMode(cell: string, controller: string, mode: OperationMode, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8403
+ setOperationMode(cell: string, controller: string, mode: OperationMode, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8404
8404
  /**
8405
8405
  * Sets the motion group mounting by specifying a coordinate system. The motion group will be based on the coordinate system\'s origin. The coordinate system defines a transformation offset, which consists of: - A unique identifier - A user-facing name - An offset in another coordinate system, referenced by the unique identifier of the reference coordinate system. <!-- theme: info --> > #### Changing the mounting configuration is considered a setup change > > When the mounting is set to a new coordinate system, the **virtual robot is restarted** to apply the new configuration. > > During this restart: > - Robot visualization can temporarily disappear or not reflect the new mounting immediately. > - Motion group state and coordinate system alignment may not be 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**. > A successful response indicates that the request was accepted, but the updated mounting may not yet be visible.
8406
8406
  * @summary Set Mounting
@@ -8411,7 +8411,7 @@ declare class VirtualControllerApi extends BaseAPI {
8411
8411
  * @param {*} [options] Override http request option.
8412
8412
  * @throws {RequiredError}
8413
8413
  */
8414
- setVirtualControllerMounting(cell: string, controller: string, motionGroup: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem, any>>;
8414
+ setVirtualControllerMounting(cell: string, controller: string, motionGroup: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CoordinateSystem, any>>;
8415
8415
  }
8416
8416
  /**
8417
8417
  * VirtualControllerBehaviorApi - axios parameter creator
@@ -8555,7 +8555,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
8555
8555
  * @param {*} [options] Override http request option.
8556
8556
  * @throws {RequiredError}
8557
8557
  */
8558
- externalJointsStream(cell: string, controller: string, externalJointStreamRequest: ExternalJointStreamRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ExternalJointStreamDatapoint[], any>>;
8558
+ externalJointsStream(cell: string, controller: string, externalJointStreamRequest: ExternalJointStreamRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ExternalJointStreamDatapoint[], any>>;
8559
8559
  /**
8560
8560
  * Get the cycle time of controller communication in [ms].
8561
8561
  * @summary Get Cycle Time
@@ -8564,7 +8564,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
8564
8564
  * @param {*} [options] Override http request option.
8565
8565
  * @throws {RequiredError}
8566
8566
  */
8567
- getCycleTime(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CycleTime, any>>;
8567
+ getCycleTime(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CycleTime, any>>;
8568
8568
  /**
8569
8569
  * Get the current virtual controller behavior. See [setVirtualControllerBehavior](setVirtualControllerBehavior) and the body for details.
8570
8570
  * @summary Get Behavior
@@ -8573,7 +8573,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
8573
8573
  * @param {*} [options] Override http request option.
8574
8574
  * @throws {RequiredError}
8575
8575
  */
8576
- getVirtualControllerBehavior(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Behavior, any>>;
8576
+ getVirtualControllerBehavior(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Behavior, any>>;
8577
8577
  /**
8578
8578
  * Set virtual controller behavior. See query parameters for details.
8579
8579
  * @summary Set Behavior
@@ -8583,7 +8583,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
8583
8583
  * @param {*} [options] Override http request option.
8584
8584
  * @throws {RequiredError}
8585
8585
  */
8586
- setVirtualControllerBehavior(cell: string, controller: string, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8586
+ setVirtualControllerBehavior(cell: string, controller: string, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8587
8587
  }
8588
8588
  /**
8589
8589
  * VirtualControllerInputsOutputsApi - axios parameter creator
@@ -8712,7 +8712,7 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
8712
8712
  * @param {*} [options] Override http request option.
8713
8713
  * @throws {RequiredError}
8714
8714
  */
8715
- listIOs(cell: string, controller: string, ios: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IOValue[], any>>;
8715
+ listIOs(cell: string, controller: string, ios: Array<string>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<IOValue[], any>>;
8716
8716
  /**
8717
8717
  * Lists the input/output descriptions of the virtual robot controller. The input/output descriptions contain information like name, type and unit.\\ Available inputs/outputs are defined by the virtual robot controller.\\ Each input/output has a unique identifier. - If no identifiers and no filters are specified in the request, all available inputs/outputs are retrieved by this endpoint. - If a filter, e.g., `direction`, `value_type`, `group` is applied, only matching inputs/outputs are returned.
8718
8718
  * @summary List Descriptions
@@ -8725,7 +8725,7 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
8725
8725
  * @param {*} [options] Override http request option.
8726
8726
  * @throws {RequiredError}
8727
8727
  */
8728
- listVirtualControllerIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IODescription[], any>>;
8728
+ listVirtualControllerIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<IODescription[], any>>;
8729
8729
  /**
8730
8730
  * Sets a list of values of a virtual controller inputs/outputs.
8731
8731
  * @summary Set Input/Ouput Values
@@ -8735,7 +8735,7 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
8735
8735
  * @param {*} [options] Override http request option.
8736
8736
  * @throws {RequiredError}
8737
8737
  */
8738
- setIOValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8738
+ setIOValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8739
8739
  }
8740
8740
  //#endregion
8741
8741
  export { AbbController, AbbControllerEgmServer, AbbControllerKindEnum, ActivateLicenseRequest, AddTrajectoryError, AddTrajectoryErrorData, AddTrajectoryRequest, AddTrajectoryResponse, 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, 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, InitializeJoggingRequest, InitializeJoggingRequestMessageTypeEnum, InitializeJoggingResponse, InitializeJoggingResponseKindEnum, InitializeMovementRequest, InitializeMovementRequestMessageTypeEnum, InitializeMovementRequestTrajectory, InitializeMovementResponse, InitializeMovementResponseKindEnum, IntegerValue, IntegerValueValueTypeEnum, InvalidDofError, InvalidDofErrorInvalidDof, InverseKinematics422Response, InverseKinematicsRequest, InverseKinematicsResponse, InverseKinematicsValidationError, InverseKinematicsValidationErrorAllOfData, JoggingApi, JoggingApiAxiosParamCreator, JoggingApiFactory, JoggingApiFp, JoggingDetails, JoggingDetailsKindEnum, JoggingDetailsState, JoggingPausedByUser, JoggingPausedByUserKindEnum, JoggingPausedNearCollision, JoggingPausedNearCollisionKindEnum, JoggingPausedNearJointLimit, JoggingPausedNearJointLimitKindEnum, JoggingPausedOnIO, JoggingPausedOnIOKindEnum, JoggingRunning, JoggingRunningKindEnum, JointLimitExceededError, JointLimits, JointTrajectory, JointVelocityRequest, JointVelocityRequestMessageTypeEnum, JointVelocityResponse, JointVelocityResponseKindEnum, 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, MotionGroupInfo, MotionGroupJoints, MotionGroupModelsApi, MotionGroupModelsApiAxiosParamCreator, MotionGroupModelsApiFactory, MotionGroupModelsApiFp, MotionGroupSetup, MotionGroupState, MotionGroupStateJointLimitReached, MovementErrorResponse, MovementErrorResponseKindEnum, NanValueError, NanValueErrorNanValue, 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, 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, TcpVelocityRequest, TcpVelocityRequestMessageTypeEnum, TcpVelocityResponse, TcpVelocityResponseKindEnum, TorqueExceededError, 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, UpdateNovaVersionRequest, ValidationError, ValidationError2, ValidationErrorLocInner, VersionApi, VersionApiAxiosParamCreator, VersionApiFactory, VersionApiFp, VirtualController, VirtualControllerApi, VirtualControllerApiAxiosParamCreator, VirtualControllerApiFactory, VirtualControllerApiFp, VirtualControllerBehaviorApi, VirtualControllerBehaviorApiAxiosParamCreator, VirtualControllerBehaviorApiFactory, VirtualControllerBehaviorApiFp, VirtualControllerInputsOutputsApi, VirtualControllerInputsOutputsApiAxiosParamCreator, VirtualControllerInputsOutputsApiFactory, VirtualControllerInputsOutputsApiFp, VirtualControllerKindEnum, VirtualControllerTypes, VirtualRobotConfiguration, WaitForIOEventRequest, YaskawaController, YaskawaControllerKindEnum, operationServerMap };