@wandelbots/nova-api 26.1.0-dev.43 → 26.1.0-dev.45

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 axios176 from "axios";
1
+ import * as axios0 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<axios176.AxiosResponse<void, any>>;
3553
+ addApp(cell: string, app: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<void, any>>;
3562
+ clearApps(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<void, any>>;
3572
+ deleteApp(cell: string, app: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<App, any>>;
3581
+ getApp(cell: string, app: string, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<string[], any>>;
3589
+ listApps(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<void, any>>;
3600
+ updateApp(cell: string, app: string, app2: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<void, any>>;
4104
+ addBusIOService(cell: string, busIOType: BusIOType, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<void, any>>;
4114
+ addModbusIO(cell: string, io: string, modbusIOData: ModbusIOData, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<void, any>>;
4124
+ addProfinetIO(cell: string, io: string, profinetIOData: ProfinetIOData, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<void, any>>;
4133
+ clearBusIOService(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<void, any>>;
4141
+ deleteAllModbusIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<void, any>>;
4149
+ deleteAllProfinetIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<void, any>>;
4158
+ deleteModbusIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<void, any>>;
4167
+ deleteProfinetIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<BusIOType, any>>;
4175
+ getBusIOService(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<BusIOsState, any>>;
4183
+ getBusIOState(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<IOValue[], any>>;
4192
+ getBusIOValues(cell: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<ProfinetDescription, any>>;
4200
+ getProfinetDescription(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<string, any>>;
4210
+ getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<BusIODescription[], any>>;
4218
+ listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<ModbusIO[], any>>;
4226
+ listModbusIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<ProfinetIO[], any>>;
4234
+ listProfinetIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<void, any>>;
4243
+ setBusIOValues(cell: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<void, any>>;
4252
+ setProfinetIOsFromFile(cell: string, profinetInputOutputConfig: ProfinetInputOutputConfig, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<void, any>>;
4461
+ deleteCell(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<void, any>>;
4470
+ deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<Cell, any>>;
4478
+ getCell(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<ServiceStatusResponse, any>>;
4486
+ getCellStatus(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<string[], any>>;
4493
+ listCells(options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<void, any>>;
4502
+ setCellStatus(cell: string, operatingState: OperatingState, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<void, any>>;
4512
+ updateCell(cell: string, cell2: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<void, any>>;
4950
+ addRobotController(cell: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<void, any>>;
4959
+ clearRobotControllers(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<void, any>>;
4969
+ deleteRobotController(cell: string, controller: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<ControllerDescription, any>>;
4978
+ getControllerDescription(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<CoordinateSystem, any>>;
4989
+ getCoordinateSystem(cell: string, controller: string, coordinateSystem: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<RobotControllerState, any>>;
4998
+ getCurrentRobotControllerState(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<RobotController, any>>;
5007
+ getRobotController(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<VirtualRobotConfiguration, any>>;
5016
+ getVirtualControllerConfiguration(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<CoordinateSystem[], any>>;
5026
+ listCoordinateSystems(cell: string, controller: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<string[], any>>;
5034
+ listRobotControllers(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<void, any>>;
5044
+ setDefaultMode(cell: string, controller: string, mode: SettableRobotSystemMode, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<RobotControllerState, any>>;
5054
+ streamFreeDrive(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<RobotControllerState, any>>;
5065
+ streamRobotControllerState(cell: string, controller: string, responseRate?: number, addControllerTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<void, any>>;
5076
+ updateRobotController(cell: string, controller: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<IODescription[], any>>;
5268
+ listIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<IOValue[], any>>;
5278
+ listIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<void, any>>;
5288
+ setOutputValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<StreamIOValuesResponse, any>>;
5298
+ streamIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<boolean, any>>;
5308
+ waitForIOEvent(cell: string, controller: string, waitForIOEventRequest: WaitForIOEventRequest, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<ExecuteJoggingResponse, any>>;
5368
+ executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<ForwardKinematicsResponse, any>>;
5451
+ forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<InverseKinematicsResponse, any>>;
5460
+ inverseKinematics(cell: string, inverseKinematicsRequest: InverseKinematicsRequest, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<License, any>>;
5575
+ activateLicense(activateLicenseRequest: ActivateLicenseRequest, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<void, any>>;
5582
+ deactivateLicense(options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<License, any>>;
5589
+ getLicense(options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<LicenseStatus, any>>;
5596
+ getLicenseStatus(options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<MotionGroupState, any>>;
5726
+ getCurrentMotionGroupState(cell: string, controller: string, motionGroup: string, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<MotionGroupDescription, any>>;
5736
+ getMotionGroupDescription(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.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<axios176.AxiosResponse<MotionGroupState, any>>;
5748
+ streamMotionGroupState(cell: string, controller: string, motionGroup: string, responseRate?: number, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupState, any>>;
5749
5749
  }
5750
5750
  /**
5751
5751
  * MotionGroupModelsApi - axios parameter creator
@@ -5870,7 +5870,7 @@ declare class MotionGroupModelsApi extends BaseAPI {
5870
5870
  * @param {*} [options] Override http request option.
5871
5871
  * @throws {RequiredError}
5872
5872
  */
5873
- getMotionGroupCollisionModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
5873
+ getMotionGroupCollisionModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
5874
5874
  [key: string]: Collider;
5875
5875
  }[], any>>;
5876
5876
  /**
@@ -5880,14 +5880,14 @@ declare class MotionGroupModelsApi extends BaseAPI {
5880
5880
  * @param {*} [options] Override http request option.
5881
5881
  * @throws {RequiredError}
5882
5882
  */
5883
- getMotionGroupGlbModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<File, any>>;
5883
+ getMotionGroupGlbModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<File, any>>;
5884
5884
  /**
5885
5885
  * Returns the list of supported motion group models.
5886
5886
  * @summary Motion Group Models
5887
5887
  * @param {*} [options] Override http request option.
5888
5888
  * @throws {RequiredError}
5889
5889
  */
5890
- getMotionGroupModels(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
5890
+ getMotionGroupModels(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
5891
5891
  /**
5892
5892
  * Returns the USD scene model for the specified motion group model. See [getMotionGroupModels](getMotionGroupModels) for supported identifiers.
5893
5893
  * @summary Download USD Model
@@ -5895,7 +5895,7 @@ declare class MotionGroupModelsApi extends BaseAPI {
5895
5895
  * @param {*} [options] Override http request option.
5896
5896
  * @throws {RequiredError}
5897
5897
  */
5898
- getMotionGroupUsdModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<File, any>>;
5898
+ getMotionGroupUsdModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<File, any>>;
5899
5899
  }
5900
5900
  /**
5901
5901
  * ProgramApi - axios parameter creator
@@ -6032,7 +6032,7 @@ declare class ProgramApi extends BaseAPI {
6032
6032
  * @param {*} [options] Override http request option.
6033
6033
  * @throws {RequiredError}
6034
6034
  */
6035
- getProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Program, any>>;
6035
+ getProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Program, any>>;
6036
6036
  /**
6037
6037
  * <!-- theme: danger --> > **Experimental** List details of all existing programs.
6038
6038
  * @summary List programs
@@ -6040,7 +6040,7 @@ declare class ProgramApi extends BaseAPI {
6040
6040
  * @param {*} [options] Override http request option.
6041
6041
  * @throws {RequiredError}
6042
6042
  */
6043
- listPrograms(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Program[], any>>;
6043
+ listPrograms(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Program[], any>>;
6044
6044
  /**
6045
6045
  * <!-- theme: danger --> > **Experimental** This endpoint starts a new program execution. The program will be executed asynchronously.
6046
6046
  * @summary Start the program
@@ -6050,7 +6050,7 @@ declare class ProgramApi extends BaseAPI {
6050
6050
  * @param {*} [options] Override http request option.
6051
6051
  * @throws {RequiredError}
6052
6052
  */
6053
- startProgram(cell: string, program: string, programStartRequest: ProgramStartRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ProgramRun, any>>;
6053
+ startProgram(cell: string, program: string, programStartRequest: ProgramStartRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProgramRun, any>>;
6054
6054
  /**
6055
6055
  * <!-- theme: danger --> > **Experimental** Stop a specific program run.
6056
6056
  * @summary Stop program run
@@ -6059,7 +6059,7 @@ declare class ProgramApi extends BaseAPI {
6059
6059
  * @param {*} [options] Override http request option.
6060
6060
  * @throws {RequiredError}
6061
6061
  */
6062
- stopProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
6062
+ stopProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
6063
6063
  }
6064
6064
  /**
6065
6065
  * StoreCollisionComponentsApi - axios parameter creator
@@ -6532,7 +6532,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6532
6532
  * @param {*} [options] Override http request option.
6533
6533
  * @throws {RequiredError}
6534
6534
  */
6535
- deleteStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
6535
+ deleteStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
6536
6536
  /**
6537
6537
  * Deletes the stored link chain. <!-- theme: danger --> > This will delete persistently stored data.
6538
6538
  * @summary Delete Link Chain
@@ -6541,7 +6541,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6541
6541
  * @param {*} [options] Override http request option.
6542
6542
  * @throws {RequiredError}
6543
6543
  */
6544
- deleteStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
6544
+ deleteStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
6545
6545
  /**
6546
6546
  * Deletes the stored tool. <!-- theme: danger --> > This will delete persistently stored data.
6547
6547
  * @summary Delete Tool
@@ -6550,7 +6550,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6550
6550
  * @param {*} [options] Override http request option.
6551
6551
  * @throws {RequiredError}
6552
6552
  */
6553
- deleteStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
6553
+ deleteStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
6554
6554
  /**
6555
6555
  * Returns the collider.
6556
6556
  * @summary Get Collider
@@ -6559,7 +6559,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6559
6559
  * @param {*} [options] Override http request option.
6560
6560
  * @throws {RequiredError}
6561
6561
  */
6562
- getStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Collider, any>>;
6562
+ getStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Collider, any>>;
6563
6563
  /**
6564
6564
  * Returns the collision link chain.
6565
6565
  * @summary Get Link Chain
@@ -6568,7 +6568,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6568
6568
  * @param {*} [options] Override http request option.
6569
6569
  * @throws {RequiredError}
6570
6570
  */
6571
- getStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6571
+ getStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6572
6572
  [key: string]: Collider;
6573
6573
  }[], any>>;
6574
6574
  /**
@@ -6579,7 +6579,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6579
6579
  * @param {*} [options] Override http request option.
6580
6580
  * @throws {RequiredError}
6581
6581
  */
6582
- getStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6582
+ getStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6583
6583
  [key: string]: Collider;
6584
6584
  }, any>>;
6585
6585
  /**
@@ -6589,7 +6589,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6589
6589
  * @param {*} [options] Override http request option.
6590
6590
  * @throws {RequiredError}
6591
6591
  */
6592
- listCollisionLinkChains(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6592
+ listCollisionLinkChains(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6593
6593
  [key: string]: {
6594
6594
  [key: string]: Collider;
6595
6595
  }[];
@@ -6601,7 +6601,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6601
6601
  * @param {*} [options] Override http request option.
6602
6602
  * @throws {RequiredError}
6603
6603
  */
6604
- listCollisionLinkChainsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
6604
+ listCollisionLinkChainsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
6605
6605
  /**
6606
6606
  * Returns all stored colliders.
6607
6607
  * @summary List Colliders
@@ -6609,7 +6609,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6609
6609
  * @param {*} [options] Override http request option.
6610
6610
  * @throws {RequiredError}
6611
6611
  */
6612
- listStoredColliders(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6612
+ listStoredColliders(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6613
6613
  [key: string]: Collider;
6614
6614
  }, any>>;
6615
6615
  /**
@@ -6619,7 +6619,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6619
6619
  * @param {*} [options] Override http request option.
6620
6620
  * @throws {RequiredError}
6621
6621
  */
6622
- listStoredCollidersKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
6622
+ listStoredCollidersKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
6623
6623
  /**
6624
6624
  * Returns the list of stored tools.
6625
6625
  * @summary List Tools
@@ -6627,7 +6627,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6627
6627
  * @param {*} [options] Override http request option.
6628
6628
  * @throws {RequiredError}
6629
6629
  */
6630
- listStoredCollisionTools(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6630
+ listStoredCollisionTools(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6631
6631
  [key: string]: {
6632
6632
  [key: string]: Collider;
6633
6633
  };
@@ -6639,7 +6639,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6639
6639
  * @param {*} [options] Override http request option.
6640
6640
  * @throws {RequiredError}
6641
6641
  */
6642
- listStoredCollisionToolsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
6642
+ listStoredCollisionToolsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
6643
6643
  /**
6644
6644
  * Stores collider. - If the collider does not exist, it will be created. - If the collider exists, it will be updated.
6645
6645
  * @summary Store Collider
@@ -6649,7 +6649,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6649
6649
  * @param {*} [options] Override http request option.
6650
6650
  * @throws {RequiredError}
6651
6651
  */
6652
- storeCollider(cell: string, collider: string, collider2: Collider, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Collider, any>>;
6652
+ storeCollider(cell: string, collider: string, collider2: Collider, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Collider, any>>;
6653
6653
  /**
6654
6654
  * Stores link chain. - If the link chain does not exist, it will be created. - If the link chain exists, it will be updated.
6655
6655
  * @summary Store Link Chain
@@ -6661,7 +6661,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6661
6661
  */
6662
6662
  storeCollisionLinkChain(cell: string, linkChain: string, collider: Array<{
6663
6663
  [key: string]: Collider;
6664
- }>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6664
+ }>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6665
6665
  [key: string]: Collider;
6666
6666
  }[], any>>;
6667
6667
  /**
@@ -6675,7 +6675,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6675
6675
  */
6676
6676
  storeCollisionTool(cell: string, tool: string, requestBody: {
6677
6677
  [key: string]: Collider;
6678
- }, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6678
+ }, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6679
6679
  [key: string]: Collider;
6680
6680
  }, any>>;
6681
6681
  }
@@ -6842,7 +6842,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
6842
6842
  * @param {*} [options] Override http request option.
6843
6843
  * @throws {RequiredError}
6844
6844
  */
6845
- deleteStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
6845
+ deleteStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
6846
6846
  /**
6847
6847
  * Returns the stored collision setup.
6848
6848
  * @summary Get Collision Setup
@@ -6851,7 +6851,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
6851
6851
  * @param {*} [options] Override http request option.
6852
6852
  * @throws {RequiredError}
6853
6853
  */
6854
- getStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CollisionSetup, any>>;
6854
+ getStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CollisionSetup, any>>;
6855
6855
  /**
6856
6856
  * Returns a list of stored collision setups.
6857
6857
  * @summary List Collision Setups
@@ -6859,7 +6859,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
6859
6859
  * @param {*} [options] Override http request option.
6860
6860
  * @throws {RequiredError}
6861
6861
  */
6862
- listStoredCollisionSetups(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6862
+ listStoredCollisionSetups(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6863
6863
  [key: string]: CollisionSetup;
6864
6864
  }, any>>;
6865
6865
  /**
@@ -6869,7 +6869,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
6869
6869
  * @param {*} [options] Override http request option.
6870
6870
  * @throws {RequiredError}
6871
6871
  */
6872
- listStoredCollisionSetupsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
6872
+ listStoredCollisionSetupsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
6873
6873
  /**
6874
6874
  * Stores collision setup. - If the collision setup does not exist, it will be created. - If the collision setup exists, it will be updated.
6875
6875
  * @summary Store Collision Setup
@@ -6879,7 +6879,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
6879
6879
  * @param {*} [options] Override http request option.
6880
6880
  * @throws {RequiredError}
6881
6881
  */
6882
- storeCollisionSetup(cell: string, setup: string, collisionSetup: CollisionSetup, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CollisionSetup, any>>;
6882
+ storeCollisionSetup(cell: string, setup: string, collisionSetup: CollisionSetup, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CollisionSetup, any>>;
6883
6883
  }
6884
6884
  /**
6885
6885
  * StoreObjectApi - axios parameter creator
@@ -7075,7 +7075,7 @@ declare class StoreObjectApi extends BaseAPI {
7075
7075
  * @param {*} [options] Override http request option.
7076
7076
  * @throws {RequiredError}
7077
7077
  */
7078
- clearAllObjects(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
7078
+ clearAllObjects(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
7079
7079
  /**
7080
7080
  * Delete an object <!-- theme: danger --> > This will delete persistently stored data.
7081
7081
  * @summary Delete Object
@@ -7084,7 +7084,7 @@ declare class StoreObjectApi extends BaseAPI {
7084
7084
  * @param {*} [options] Override http request option.
7085
7085
  * @throws {RequiredError}
7086
7086
  */
7087
- deleteObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
7087
+ deleteObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
7088
7088
  /**
7089
7089
  * Returns content and metadata of a stored object.
7090
7090
  * @summary Get Object
@@ -7093,7 +7093,7 @@ declare class StoreObjectApi extends BaseAPI {
7093
7093
  * @param {*} [options] Override http request option.
7094
7094
  * @throws {RequiredError}
7095
7095
  */
7096
- getObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<File, any>>;
7096
+ getObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<File, any>>;
7097
7097
  /**
7098
7098
  * Returns metadata. Object content is not returned.
7099
7099
  * @summary Get Object Metadata
@@ -7102,7 +7102,7 @@ declare class StoreObjectApi extends BaseAPI {
7102
7102
  * @param {*} [options] Override http request option.
7103
7103
  * @throws {RequiredError}
7104
7104
  */
7105
- getObjectMetadata(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
7105
+ getObjectMetadata(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
7106
7106
  /**
7107
7107
  * List the keys for all objects.
7108
7108
  * @summary List all Object Keys
@@ -7110,7 +7110,7 @@ declare class StoreObjectApi extends BaseAPI {
7110
7110
  * @param {*} [options] Override http request option.
7111
7111
  * @throws {RequiredError}
7112
7112
  */
7113
- listAllObjectKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
7113
+ listAllObjectKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
7114
7114
  /**
7115
7115
  * 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.
7116
7116
  * @summary Store Object
@@ -7123,7 +7123,7 @@ declare class StoreObjectApi extends BaseAPI {
7123
7123
  */
7124
7124
  storeObject(cell: string, key: string, xMetadata?: {
7125
7125
  [key: string]: string;
7126
- }, anyValue?: any, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
7126
+ }, anyValue?: any, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
7127
7127
  }
7128
7128
  /**
7129
7129
  * SystemApi - axios parameter creator
@@ -7370,7 +7370,7 @@ declare class SystemApi extends BaseAPI {
7370
7370
  */
7371
7371
  backupConfiguration(resources?: Array<string>, metadata?: {
7372
7372
  [key: string]: string;
7373
- }, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<File, any>>;
7373
+ }, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<File, any>>;
7374
7374
  /**
7375
7375
  * Check if a more recent Wandelbots NOVA Version is available.
7376
7376
  * @summary Check update
@@ -7378,7 +7378,7 @@ declare class SystemApi extends BaseAPI {
7378
7378
  * @param {*} [options] Override http request option.
7379
7379
  * @throws {RequiredError}
7380
7380
  */
7381
- checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string, any>>;
7381
+ checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string, any>>;
7382
7382
  /**
7383
7383
  * 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.
7384
7384
  * @summary Retrieve Backup Status
@@ -7386,35 +7386,35 @@ declare class SystemApi extends BaseAPI {
7386
7386
  * @param {*} [options] Override http request option.
7387
7387
  * @throws {RequiredError}
7388
7388
  */
7389
- getConfigurationBackupStatus(operationId: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ConfigurationArchiveStatus, any>>;
7389
+ getConfigurationBackupStatus(operationId: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ConfigurationArchiveStatus, any>>;
7390
7390
  /**
7391
7391
  * 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.
7392
7392
  * @summary Download Diagnosis Package
7393
7393
  * @param {*} [options] Override http request option.
7394
7394
  * @throws {RequiredError}
7395
7395
  */
7396
- getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<File, any>>;
7396
+ getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<File, any>>;
7397
7397
  /**
7398
7398
  * Get the status of all system services.
7399
7399
  * @summary Wandelbots NOVA status
7400
7400
  * @param {*} [options] Override http request option.
7401
7401
  * @throws {RequiredError}
7402
7402
  */
7403
- getSystemStatus(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ServiceStatus[], any>>;
7403
+ getSystemStatus(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ServiceStatus[], any>>;
7404
7404
  /**
7405
7405
  * Get the current Wandelbots NOVA version.
7406
7406
  * @summary Wandelbots NOVA Version
7407
7407
  * @param {*} [options] Override http request option.
7408
7408
  * @throws {RequiredError}
7409
7409
  */
7410
- getSystemVersion(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string, any>>;
7410
+ getSystemVersion(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string, any>>;
7411
7411
  /**
7412
7412
  * Retrieves a list of all available configuration resources for backup purposes.
7413
7413
  * @summary List Configuration Resources
7414
7414
  * @param {*} [options] Override http request option.
7415
7415
  * @throws {RequiredError}
7416
7416
  */
7417
- listConfigurationResources(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ConfigurationResource[], any>>;
7417
+ listConfigurationResources(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ConfigurationResource[], any>>;
7418
7418
  /**
7419
7419
  * Restores a previously backed up configuration.
7420
7420
  * @summary Restore Configuration Backup
@@ -7423,7 +7423,7 @@ declare class SystemApi extends BaseAPI {
7423
7423
  * @param {*} [options] Override http request option.
7424
7424
  * @throws {RequiredError}
7425
7425
  */
7426
- restoreConfiguration(resources: Array<string>, body: File, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
7426
+ restoreConfiguration(resources: Array<string>, body: File, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
7427
7427
  /**
7428
7428
  * 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.
7429
7429
  * @summary Update Wandelbots NOVA version
@@ -7431,7 +7431,7 @@ declare class SystemApi extends BaseAPI {
7431
7431
  * @param {*} [options] Override http request option.
7432
7432
  * @throws {RequiredError}
7433
7433
  */
7434
- updateNovaVersion(updateNovaVersionRequest: UpdateNovaVersionRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
7434
+ updateNovaVersion(updateNovaVersionRequest: UpdateNovaVersionRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
7435
7435
  }
7436
7436
  /**
7437
7437
  * TrajectoryCachingApi - axios parameter creator
@@ -7605,7 +7605,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
7605
7605
  * @param {*} [options] Override http request option.
7606
7606
  * @throws {RequiredError}
7607
7607
  */
7608
- addTrajectory(cell: string, controller: string, addTrajectoryRequest: AddTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<AddTrajectoryResponse, any>>;
7608
+ addTrajectory(cell: string, controller: string, addTrajectoryRequest: AddTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<AddTrajectoryResponse, any>>;
7609
7609
  /**
7610
7610
  * Clear the trajectory cache.
7611
7611
  * @summary Clear Trajectories
@@ -7614,7 +7614,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
7614
7614
  * @param {*} [options] Override http request option.
7615
7615
  * @throws {RequiredError}
7616
7616
  */
7617
- clearTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
7617
+ clearTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
7618
7618
  /**
7619
7619
  * 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.
7620
7620
  * @summary Delete Trajectory
@@ -7624,7 +7624,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
7624
7624
  * @param {*} [options] Override http request option.
7625
7625
  * @throws {RequiredError}
7626
7626
  */
7627
- deleteTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
7627
+ deleteTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
7628
7628
  /**
7629
7629
  * Get a previously created trajectory from cache. Use [listTrajectories](listTrajectories) to list all cached trajectories.
7630
7630
  * @summary Get Trajectory
@@ -7634,7 +7634,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
7634
7634
  * @param {*} [options] Override http request option.
7635
7635
  * @throws {RequiredError}
7636
7636
  */
7637
- getTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<GetTrajectoryResponse, any>>;
7637
+ getTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<GetTrajectoryResponse, any>>;
7638
7638
  /**
7639
7639
  * 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.
7640
7640
  * @summary List Trajectories
@@ -7643,7 +7643,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
7643
7643
  * @param {*} [options] Override http request option.
7644
7644
  * @throws {RequiredError}
7645
7645
  */
7646
- listTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ListTrajectoriesResponse, any>>;
7646
+ listTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ListTrajectoriesResponse, any>>;
7647
7647
  }
7648
7648
  /**
7649
7649
  * TrajectoryExecutionApi - axios parameter creator
@@ -7703,7 +7703,7 @@ declare class TrajectoryExecutionApi extends BaseAPI {
7703
7703
  * @param {*} [options] Override http request option.
7704
7704
  * @throws {RequiredError}
7705
7705
  */
7706
- executeTrajectory(cell: string, controller: string, executeTrajectoryRequest: ExecuteTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ExecuteTrajectoryResponse, any>>;
7706
+ executeTrajectory(cell: string, controller: string, executeTrajectoryRequest: ExecuteTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ExecuteTrajectoryResponse, any>>;
7707
7707
  }
7708
7708
  /**
7709
7709
  * TrajectoryPlanningApi - axios parameter creator
@@ -7786,7 +7786,7 @@ declare class TrajectoryPlanningApi extends BaseAPI {
7786
7786
  * @param {*} [options] Override http request option.
7787
7787
  * @throws {RequiredError}
7788
7788
  */
7789
- planCollisionFree(cell: string, planCollisionFreeRequest: PlanCollisionFreeRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<PlanCollisionFreeResponse, any>>;
7789
+ planCollisionFree(cell: string, planCollisionFreeRequest: PlanCollisionFreeRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<PlanCollisionFreeResponse, any>>;
7790
7790
  /**
7791
7791
  * 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.
7792
7792
  * @summary Plan Trajectory
@@ -7795,7 +7795,7 @@ declare class TrajectoryPlanningApi extends BaseAPI {
7795
7795
  * @param {*} [options] Override http request option.
7796
7796
  * @throws {RequiredError}
7797
7797
  */
7798
- planTrajectory(cell: string, planTrajectoryRequest: PlanTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<PlanTrajectoryResponse, any>>;
7798
+ planTrajectory(cell: string, planTrajectoryRequest: PlanTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<PlanTrajectoryResponse, any>>;
7799
7799
  }
7800
7800
  /**
7801
7801
  * VersionApi - axios parameter creator
@@ -7843,7 +7843,7 @@ declare class VersionApi extends BaseAPI {
7843
7843
  * @param {*} [options] Override http request option.
7844
7844
  * @throws {RequiredError}
7845
7845
  */
7846
- getApiVersion(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ApiVersion, any>>;
7846
+ getApiVersion(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ApiVersion, any>>;
7847
7847
  }
7848
7848
  /**
7849
7849
  * VirtualControllerApi - axios parameter creator
@@ -8333,7 +8333,7 @@ declare class VirtualControllerApi extends BaseAPI {
8333
8333
  * @param {*} [options] Override http request option.
8334
8334
  * @throws {RequiredError}
8335
8335
  */
8336
- addVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, coordinateSystemData: CoordinateSystemData, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8336
+ addVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, coordinateSystemData: CoordinateSystemData, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8337
8337
  /**
8338
8338
  * 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.
8339
8339
  * @summary Add TCP
@@ -8345,7 +8345,7 @@ declare class VirtualControllerApi extends BaseAPI {
8345
8345
  * @param {*} [options] Override http request option.
8346
8346
  * @throws {RequiredError}
8347
8347
  */
8348
- addVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, robotTcpData: RobotTcpData, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8348
+ addVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, robotTcpData: RobotTcpData, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8349
8349
  /**
8350
8350
  * 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.
8351
8351
  * @summary Delete Coordinate System
@@ -8356,7 +8356,7 @@ declare class VirtualControllerApi extends BaseAPI {
8356
8356
  * @param {*} [options] Override http request option.
8357
8357
  * @throws {RequiredError}
8358
8358
  */
8359
- deleteVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8359
+ deleteVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8360
8360
  /**
8361
8361
  * 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.
8362
8362
  * @summary Remove TCP
@@ -8367,7 +8367,7 @@ declare class VirtualControllerApi extends BaseAPI {
8367
8367
  * @param {*} [options] Override http request option.
8368
8368
  * @throws {RequiredError}
8369
8369
  */
8370
- deleteVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8370
+ deleteVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8371
8371
  /**
8372
8372
  * 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.
8373
8373
  * @summary Get Emergency Stop State
@@ -8376,7 +8376,7 @@ declare class VirtualControllerApi extends BaseAPI {
8376
8376
  * @param {*} [options] Override http request option.
8377
8377
  * @throws {RequiredError}
8378
8378
  */
8379
- getEmergencyStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Flag, any>>;
8379
+ getEmergencyStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Flag, any>>;
8380
8380
  /**
8381
8381
  * Get the current motion group state which provides values for the joints\' position, velocity and acceleration.
8382
8382
  * @summary Get Motion Group State
@@ -8386,7 +8386,7 @@ declare class VirtualControllerApi extends BaseAPI {
8386
8386
  * @param {*} [options] Override http request option.
8387
8387
  * @throws {RequiredError}
8388
8388
  */
8389
- getMotionGroupState(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<MotionGroupJoints, any>>;
8389
+ getMotionGroupState(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupJoints, any>>;
8390
8390
  /**
8391
8391
  * Gets information on the motion group.
8392
8392
  * @summary Motion Group Description
@@ -8395,7 +8395,7 @@ declare class VirtualControllerApi extends BaseAPI {
8395
8395
  * @param {*} [options] Override http request option.
8396
8396
  * @throws {RequiredError}
8397
8397
  */
8398
- getMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<MotionGroupInfo[], any>>;
8398
+ getMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupInfo[], any>>;
8399
8399
  /**
8400
8400
  * 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.
8401
8401
  * @summary Get Operation Mode
@@ -8404,7 +8404,7 @@ declare class VirtualControllerApi extends BaseAPI {
8404
8404
  * @param {*} [options] Override http request option.
8405
8405
  * @throws {RequiredError}
8406
8406
  */
8407
- getOperationMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<OpMode, any>>;
8407
+ getOperationMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<OpMode, any>>;
8408
8408
  /**
8409
8409
  * Gets motion group mounting. The motion group is based on the origin of the returned coordinate system.
8410
8410
  * @summary Get Mounting
@@ -8414,7 +8414,7 @@ declare class VirtualControllerApi extends BaseAPI {
8414
8414
  * @param {*} [options] Override http request option.
8415
8415
  * @throws {RequiredError}
8416
8416
  */
8417
- getVirtualControllerMounting(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CoordinateSystem, any>>;
8417
+ getVirtualControllerMounting(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem, any>>;
8418
8418
  /**
8419
8419
  * Lists all coordinate systems on the robot controller.
8420
8420
  * @summary List Coordinate Systems
@@ -8423,7 +8423,7 @@ declare class VirtualControllerApi extends BaseAPI {
8423
8423
  * @param {*} [options] Override http request option.
8424
8424
  * @throws {RequiredError}
8425
8425
  */
8426
- listVirtualControllerCoordinateSystems(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CoordinateSystem[], any>>;
8426
+ listVirtualControllerCoordinateSystems(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem[], any>>;
8427
8427
  /**
8428
8428
  * Lists TCPs of the motion group. An empty TCP list is valid, e.g., for external axes.
8429
8429
  * @summary List TCPs
@@ -8433,7 +8433,7 @@ declare class VirtualControllerApi extends BaseAPI {
8433
8433
  * @param {*} [options] Override http request option.
8434
8434
  * @throws {RequiredError}
8435
8435
  */
8436
- listVirtualControllerTcps(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<RobotTcp[], any>>;
8436
+ listVirtualControllerTcps(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotTcp[], any>>;
8437
8437
  /**
8438
8438
  * 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.
8439
8439
  * @summary Push or Release Emergency Stop
@@ -8443,7 +8443,7 @@ declare class VirtualControllerApi extends BaseAPI {
8443
8443
  * @param {*} [options] Override http request option.
8444
8444
  * @throws {RequiredError}
8445
8445
  */
8446
- setEmergencyStop(cell: string, controller: string, active?: boolean, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8446
+ setEmergencyStop(cell: string, controller: string, active?: boolean, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8447
8447
  /**
8448
8448
  * 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.
8449
8449
  * @summary Set Motion Group State
@@ -8454,7 +8454,7 @@ declare class VirtualControllerApi extends BaseAPI {
8454
8454
  * @param {*} [options] Override http request option.
8455
8455
  * @throws {RequiredError}
8456
8456
  */
8457
- setMotionGroupState(cell: string, controller: string, motionGroup: string, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8457
+ setMotionGroupState(cell: string, controller: string, motionGroup: string, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8458
8458
  /**
8459
8459
  * 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.
8460
8460
  * @summary Set Operation Mode
@@ -8464,7 +8464,7 @@ declare class VirtualControllerApi extends BaseAPI {
8464
8464
  * @param {*} [options] Override http request option.
8465
8465
  * @throws {RequiredError}
8466
8466
  */
8467
- setOperationMode(cell: string, controller: string, mode: OperationMode, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8467
+ setOperationMode(cell: string, controller: string, mode: OperationMode, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8468
8468
  /**
8469
8469
  * 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.
8470
8470
  * @summary Set Mounting
@@ -8475,7 +8475,7 @@ declare class VirtualControllerApi extends BaseAPI {
8475
8475
  * @param {*} [options] Override http request option.
8476
8476
  * @throws {RequiredError}
8477
8477
  */
8478
- setVirtualControllerMounting(cell: string, controller: string, motionGroup: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CoordinateSystem, any>>;
8478
+ setVirtualControllerMounting(cell: string, controller: string, motionGroup: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem, any>>;
8479
8479
  }
8480
8480
  /**
8481
8481
  * VirtualControllerBehaviorApi - axios parameter creator
@@ -8619,7 +8619,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
8619
8619
  * @param {*} [options] Override http request option.
8620
8620
  * @throws {RequiredError}
8621
8621
  */
8622
- externalJointsStream(cell: string, controller: string, externalJointStreamRequest: ExternalJointStreamRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ExternalJointStreamDatapoint[], any>>;
8622
+ externalJointsStream(cell: string, controller: string, externalJointStreamRequest: ExternalJointStreamRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ExternalJointStreamDatapoint[], any>>;
8623
8623
  /**
8624
8624
  * Get the cycle time of controller communication in [ms].
8625
8625
  * @summary Get Cycle Time
@@ -8628,7 +8628,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
8628
8628
  * @param {*} [options] Override http request option.
8629
8629
  * @throws {RequiredError}
8630
8630
  */
8631
- getCycleTime(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CycleTime, any>>;
8631
+ getCycleTime(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CycleTime, any>>;
8632
8632
  /**
8633
8633
  * Get the current virtual controller behavior. See [setVirtualControllerBehavior](setVirtualControllerBehavior) and the body for details.
8634
8634
  * @summary Get Behavior
@@ -8637,7 +8637,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
8637
8637
  * @param {*} [options] Override http request option.
8638
8638
  * @throws {RequiredError}
8639
8639
  */
8640
- getVirtualControllerBehavior(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Behavior, any>>;
8640
+ getVirtualControllerBehavior(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Behavior, any>>;
8641
8641
  /**
8642
8642
  * Set virtual controller behavior. See query parameters for details.
8643
8643
  * @summary Set Behavior
@@ -8647,7 +8647,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
8647
8647
  * @param {*} [options] Override http request option.
8648
8648
  * @throws {RequiredError}
8649
8649
  */
8650
- setVirtualControllerBehavior(cell: string, controller: string, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8650
+ setVirtualControllerBehavior(cell: string, controller: string, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8651
8651
  }
8652
8652
  /**
8653
8653
  * VirtualControllerInputsOutputsApi - axios parameter creator
@@ -8776,7 +8776,7 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
8776
8776
  * @param {*} [options] Override http request option.
8777
8777
  * @throws {RequiredError}
8778
8778
  */
8779
- listIOs(cell: string, controller: string, ios: Array<string>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<IOValue[], any>>;
8779
+ listIOs(cell: string, controller: string, ios: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IOValue[], any>>;
8780
8780
  /**
8781
8781
  * 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.
8782
8782
  * @summary List Descriptions
@@ -8789,7 +8789,7 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
8789
8789
  * @param {*} [options] Override http request option.
8790
8790
  * @throws {RequiredError}
8791
8791
  */
8792
- listVirtualControllerIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<IODescription[], any>>;
8792
+ listVirtualControllerIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IODescription[], any>>;
8793
8793
  /**
8794
8794
  * Sets a list of values of a virtual controller inputs/outputs.
8795
8795
  * @summary Set Input/Ouput Values
@@ -8799,7 +8799,7 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
8799
8799
  * @param {*} [options] Override http request option.
8800
8800
  * @throws {RequiredError}
8801
8801
  */
8802
- setIOValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8802
+ setIOValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8803
8803
  }
8804
8804
  //#endregion
8805
8805
  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 };