@wandelbots/nova-api 25.11.0-dev.5 → 25.11.0-dev.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
- import * as axios0 from "axios";
1
+ import * as axios176 from "axios";
2
2
  import { AxiosInstance, AxiosPromise, RawAxiosRequestConfig } from "axios";
3
3
 
4
4
  //#region v2/configuration.d.ts
@@ -3514,7 +3514,7 @@ declare class ApplicationApi extends BaseAPI {
3514
3514
  * @param {*} [options] Override http request option.
3515
3515
  * @throws {RequiredError}
3516
3516
  */
3517
- addApp(cell: string, app: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
3517
+ addApp(cell: string, app: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
3518
3518
  /**
3519
3519
  * Delete all GUI applications from the cell.
3520
3520
  * @summary Clear Applications
@@ -3523,7 +3523,7 @@ declare class ApplicationApi extends BaseAPI {
3523
3523
  * @param {*} [options] Override http request option.
3524
3524
  * @throws {RequiredError}
3525
3525
  */
3526
- clearApps(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
3526
+ clearApps(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
3527
3527
  /**
3528
3528
  * Delete a GUI application from the cell.
3529
3529
  * @summary Delete Application
@@ -3533,7 +3533,7 @@ declare class ApplicationApi extends BaseAPI {
3533
3533
  * @param {*} [options] Override http request option.
3534
3534
  * @throws {RequiredError}
3535
3535
  */
3536
- deleteApp(cell: string, app: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
3536
+ deleteApp(cell: string, app: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
3537
3537
  /**
3538
3538
  * 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).
3539
3539
  * @summary Configuration
@@ -3542,7 +3542,7 @@ declare class ApplicationApi extends BaseAPI {
3542
3542
  * @param {*} [options] Override http request option.
3543
3543
  * @throws {RequiredError}
3544
3544
  */
3545
- getApp(cell: string, app: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<App, any>>;
3545
+ getApp(cell: string, app: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<App, any>>;
3546
3546
  /**
3547
3547
  * 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.
3548
3548
  * @summary List Applications
@@ -3550,7 +3550,7 @@ declare class ApplicationApi extends BaseAPI {
3550
3550
  * @param {*} [options] Override http request option.
3551
3551
  * @throws {RequiredError}
3552
3552
  */
3553
- listApps(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
3553
+ listApps(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
3554
3554
  /**
3555
3555
  * Update the configuration of a GUI application in the cell.
3556
3556
  * @summary Update Configuration
@@ -3561,7 +3561,7 @@ declare class ApplicationApi extends BaseAPI {
3561
3561
  * @param {*} [options] Override http request option.
3562
3562
  * @throws {RequiredError}
3563
3563
  */
3564
- updateApp(cell: string, app: string, app2: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
3564
+ updateApp(cell: string, app: string, app2: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
3565
3565
  }
3566
3566
  /**
3567
3567
  * BUSInputsOutputsApi - axios parameter creator
@@ -4017,7 +4017,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4017
4017
  * @param {*} [options] Override http request option.
4018
4018
  * @throws {RequiredError}
4019
4019
  */
4020
- addBusIOService(cell: string, busIOType: BusIOType, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4020
+ addBusIOService(cell: string, busIOType: BusIOType, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4021
4021
  /**
4022
4022
  * 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).
4023
4023
  * @summary Add MODBUS Input/Output
@@ -4027,7 +4027,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4027
4027
  * @param {*} [options] Override http request option.
4028
4028
  * @throws {RequiredError}
4029
4029
  */
4030
- addModbusIO(cell: string, io: string, modbusIOData: ModbusIOData, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4030
+ addModbusIO(cell: string, io: string, modbusIOData: ModbusIOData, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4031
4031
  /**
4032
4032
  * 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).
4033
4033
  * @summary Add PROFINET Input/Output
@@ -4037,7 +4037,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4037
4037
  * @param {*} [options] Override http request option.
4038
4038
  * @throws {RequiredError}
4039
4039
  */
4040
- addProfinetIO(cell: string, io: string, profinetIOData: ProfinetIOData, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4040
+ addProfinetIO(cell: string, io: string, profinetIOData: ProfinetIOData, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4041
4041
  /**
4042
4042
  * Remove the BUS inputs/outputs service from the cell.
4043
4043
  * @summary Clear Service
@@ -4046,7 +4046,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4046
4046
  * @param {*} [options] Override http request option.
4047
4047
  * @throws {RequiredError}
4048
4048
  */
4049
- clearBusIOService(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4049
+ clearBusIOService(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4050
4050
  /**
4051
4051
  * Removes an input/output variable configuration from the MODBUS device, e.g., NOVA\'s MODBUS service.
4052
4052
  * @summary Remove MODBUS Input/Ouptut
@@ -4055,7 +4055,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4055
4055
  * @param {*} [options] Override http request option.
4056
4056
  * @throws {RequiredError}
4057
4057
  */
4058
- deleteModbusIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4058
+ deleteModbusIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4059
4059
  /**
4060
4060
  * Removes an input/output variable configuration from the PROFINET device, e.g., NOVA\'s PROFINET service.
4061
4061
  * @summary Remove PROFINET Input/Ouptut
@@ -4064,7 +4064,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4064
4064
  * @param {*} [options] Override http request option.
4065
4065
  * @throws {RequiredError}
4066
4066
  */
4067
- deleteProfinetIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4067
+ deleteProfinetIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4068
4068
  /**
4069
4069
  * Get deployed BUS inputs/outputs service.
4070
4070
  * @summary Get Service
@@ -4072,7 +4072,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4072
4072
  * @param {*} [options] Override http request option.
4073
4073
  * @throws {RequiredError}
4074
4074
  */
4075
- getBusIOService(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<BusIOType, any>>;
4075
+ getBusIOService(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<BusIOType, any>>;
4076
4076
  /**
4077
4077
  * Get the current state of the BUS Inputs/Outputs service.
4078
4078
  * @summary State
@@ -4080,7 +4080,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4080
4080
  * @param {*} [options] Override http request option.
4081
4081
  * @throws {RequiredError}
4082
4082
  */
4083
- getBusIOState(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<BusIOsState, any>>;
4083
+ getBusIOState(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<BusIOsState, any>>;
4084
4084
  /**
4085
4085
  * 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).
4086
4086
  * @summary Get Input/Output Values
@@ -4089,7 +4089,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4089
4089
  * @param {*} [options] Override http request option.
4090
4090
  * @throws {RequiredError}
4091
4091
  */
4092
- getBusIOValues(cell: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IOValue[], any>>;
4092
+ getBusIOValues(cell: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<IOValue[], any>>;
4093
4093
  /**
4094
4094
  * Get description of NOVA as a PROFINET device.
4095
4095
  * @summary Get PROFINET Description
@@ -4097,7 +4097,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4097
4097
  * @param {*} [options] Override http request option.
4098
4098
  * @throws {RequiredError}
4099
4099
  */
4100
- getProfinetDescription(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProfinetDescription, any>>;
4100
+ getProfinetDescription(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ProfinetDescription, any>>;
4101
4101
  /**
4102
4102
  * 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.
4103
4103
  * @summary PROFINET Inputs/Outputs to File
@@ -4107,7 +4107,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4107
4107
  * @param {*} [options] Override http request option.
4108
4108
  * @throws {RequiredError}
4109
4109
  */
4110
- getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string, any>>;
4110
+ getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string, any>>;
4111
4111
  /**
4112
4112
  * 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.
4113
4113
  * @summary List Descriptions
@@ -4115,7 +4115,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4115
4115
  * @param {*} [options] Override http request option.
4116
4116
  * @throws {RequiredError}
4117
4117
  */
4118
- listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<BusIODescription[], any>>;
4118
+ listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<BusIODescription[], any>>;
4119
4119
  /**
4120
4120
  * 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).
4121
4121
  * @summary List MODBUS Input/Output Configuration
@@ -4123,7 +4123,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4123
4123
  * @param {*} [options] Override http request option.
4124
4124
  * @throws {RequiredError}
4125
4125
  */
4126
- listModbusIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ModbusIO[], any>>;
4126
+ listModbusIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ModbusIO[], any>>;
4127
4127
  /**
4128
4128
  * 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.
4129
4129
  * @summary List PROFINET Input/Output Configuration
@@ -4131,7 +4131,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4131
4131
  * @param {*} [options] Override http request option.
4132
4132
  * @throws {RequiredError}
4133
4133
  */
4134
- listProfinetIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProfinetIO[], any>>;
4134
+ listProfinetIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ProfinetIO[], any>>;
4135
4135
  /**
4136
4136
  * 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.
4137
4137
  * @summary Set Output Values
@@ -4140,7 +4140,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4140
4140
  * @param {*} [options] Override http request option.
4141
4141
  * @throws {RequiredError}
4142
4142
  */
4143
- setBusIOValues(cell: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4143
+ setBusIOValues(cell: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4144
4144
  /**
4145
4145
  * 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.
4146
4146
  * @summary Set PROFINET Inputs/Outputs from File
@@ -4149,7 +4149,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4149
4149
  * @param {*} [options] Override http request option.
4150
4150
  * @throws {RequiredError}
4151
4151
  */
4152
- setProfinetIOsFromFile(cell: string, profinetInputOutputConfig: ProfinetInputOutputConfig, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4152
+ setProfinetIOsFromFile(cell: string, profinetInputOutputConfig: ProfinetInputOutputConfig, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4153
4153
  }
4154
4154
  /**
4155
4155
  * CellApi - axios parameter creator
@@ -4358,7 +4358,7 @@ declare class CellApi extends BaseAPI {
4358
4358
  * @param {*} [options] Override http request option.
4359
4359
  * @throws {RequiredError}
4360
4360
  */
4361
- deleteCell(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4361
+ deleteCell(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4362
4362
  /**
4363
4363
  * 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.
4364
4364
  * @summary Add Cell
@@ -4367,7 +4367,7 @@ declare class CellApi extends BaseAPI {
4367
4367
  * @param {*} [options] Override http request option.
4368
4368
  * @throws {RequiredError}
4369
4369
  */
4370
- deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4370
+ deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4371
4371
  /**
4372
4372
  * List all cell resources.
4373
4373
  * @summary Configuration
@@ -4375,7 +4375,7 @@ declare class CellApi extends BaseAPI {
4375
4375
  * @param {*} [options] Override http request option.
4376
4376
  * @throws {RequiredError}
4377
4377
  */
4378
- getCell(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Cell, any>>;
4378
+ getCell(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Cell, any>>;
4379
4379
  /**
4380
4380
  * List the status of all cell resources.
4381
4381
  * @summary Service Status
@@ -4383,14 +4383,14 @@ declare class CellApi extends BaseAPI {
4383
4383
  * @param {*} [options] Override http request option.
4384
4384
  * @throws {RequiredError}
4385
4385
  */
4386
- getCellStatus(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ServiceStatusResponse, any>>;
4386
+ getCellStatus(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ServiceStatusResponse, any>>;
4387
4387
  /**
4388
4388
  * List all deployed cell names. If no cells are deployed, an empty list is returned.
4389
4389
  * @summary List Cells
4390
4390
  * @param {*} [options] Override http request option.
4391
4391
  * @throws {RequiredError}
4392
4392
  */
4393
- listCells(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
4393
+ listCells(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
4394
4394
  /**
4395
4395
  * Deactivate or activate the services of a cell.
4396
4396
  * @summary Operating State
@@ -4399,7 +4399,7 @@ declare class CellApi extends BaseAPI {
4399
4399
  * @param {*} [options] Override http request option.
4400
4400
  * @throws {RequiredError}
4401
4401
  */
4402
- setCellStatus(cell: string, operatingState: OperatingState, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4402
+ setCellStatus(cell: string, operatingState: OperatingState, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4403
4403
  /**
4404
4404
  * Update the definition of the entire Cell.
4405
4405
  * @summary Update Configuration
@@ -4409,7 +4409,7 @@ declare class CellApi extends BaseAPI {
4409
4409
  * @param {*} [options] Override http request option.
4410
4410
  * @throws {RequiredError}
4411
4411
  */
4412
- updateCell(cell: string, cell2: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4412
+ updateCell(cell: string, cell2: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4413
4413
  }
4414
4414
  /**
4415
4415
  * ControllerApi - axios parameter creator
@@ -4847,7 +4847,7 @@ declare class ControllerApi extends BaseAPI {
4847
4847
  * @param {*} [options] Override http request option.
4848
4848
  * @throws {RequiredError}
4849
4849
  */
4850
- addRobotController(cell: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4850
+ addRobotController(cell: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4851
4851
  /**
4852
4852
  * Delete all robot controllers from the cell. To replace all robot controllers in a cell, use this endpoint in combination with [addRobotController](addRobotController).
4853
4853
  * @summary Clear Robot Controllers
@@ -4856,7 +4856,7 @@ declare class ControllerApi extends BaseAPI {
4856
4856
  * @param {*} [options] Override http request option.
4857
4857
  * @throws {RequiredError}
4858
4858
  */
4859
- clearRobotControllers(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4859
+ clearRobotControllers(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4860
4860
  /**
4861
4861
  * Delete a robot controller from the cell.
4862
4862
  * @summary Delete Robot Controller
@@ -4866,7 +4866,7 @@ declare class ControllerApi extends BaseAPI {
4866
4866
  * @param {*} [options] Override http request option.
4867
4867
  * @throws {RequiredError}
4868
4868
  */
4869
- deleteRobotController(cell: string, controller: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4869
+ deleteRobotController(cell: string, controller: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4870
4870
  /**
4871
4871
  * 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.
4872
4872
  * @summary Description
@@ -4875,7 +4875,7 @@ declare class ControllerApi extends BaseAPI {
4875
4875
  * @param {*} [options] Override http request option.
4876
4876
  * @throws {RequiredError}
4877
4877
  */
4878
- getControllerDescription(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ControllerDescription, any>>;
4878
+ getControllerDescription(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ControllerDescription, any>>;
4879
4879
  /**
4880
4880
  * 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.
4881
4881
  * @summary Coordinate System
@@ -4886,7 +4886,7 @@ declare class ControllerApi extends BaseAPI {
4886
4886
  * @param {*} [options] Override http request option.
4887
4887
  * @throws {RequiredError}
4888
4888
  */
4889
- getCoordinateSystem(cell: string, controller: string, coordinateSystem: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem, any>>;
4889
+ getCoordinateSystem(cell: string, controller: string, coordinateSystem: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CoordinateSystem, any>>;
4890
4890
  /**
4891
4891
  * Get the current state of a robot controller.
4892
4892
  * @summary State
@@ -4895,7 +4895,7 @@ declare class ControllerApi extends BaseAPI {
4895
4895
  * @param {*} [options] Override http request option.
4896
4896
  * @throws {RequiredError}
4897
4897
  */
4898
- getCurrentRobotControllerState(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotControllerState, any>>;
4898
+ getCurrentRobotControllerState(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<RobotControllerState, any>>;
4899
4899
  /**
4900
4900
  * Get the configuration for a robot controller.
4901
4901
  * @summary Robot Controller
@@ -4904,7 +4904,7 @@ declare class ControllerApi extends BaseAPI {
4904
4904
  * @param {*} [options] Override http request option.
4905
4905
  * @throws {RequiredError}
4906
4906
  */
4907
- getRobotController(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotController, any>>;
4907
+ getRobotController(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<RobotController, any>>;
4908
4908
  /**
4909
4909
  * 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.
4910
4910
  * @summary Virtual Controller Configuration
@@ -4913,7 +4913,7 @@ declare class ControllerApi extends BaseAPI {
4913
4913
  * @param {*} [options] Override http request option.
4914
4914
  * @throws {RequiredError}
4915
4915
  */
4916
- getVirtualControllerConfiguration(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<VirtualRobotConfiguration, any>>;
4916
+ getVirtualControllerConfiguration(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<VirtualRobotConfiguration, any>>;
4917
4917
  /**
4918
4918
  * 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.
4919
4919
  * @summary List Coordinate Systems
@@ -4923,7 +4923,7 @@ declare class ControllerApi extends BaseAPI {
4923
4923
  * @param {*} [options] Override http request option.
4924
4924
  * @throws {RequiredError}
4925
4925
  */
4926
- listCoordinateSystems(cell: string, controller: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem[], any>>;
4926
+ listCoordinateSystems(cell: string, controller: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CoordinateSystem[], any>>;
4927
4927
  /**
4928
4928
  * List the names of all deployed robot controllers.
4929
4929
  * @summary List Robot Controllers
@@ -4931,7 +4931,7 @@ declare class ControllerApi extends BaseAPI {
4931
4931
  * @param {*} [options] Override http request option.
4932
4932
  * @throws {RequiredError}
4933
4933
  */
4934
- listRobotControllers(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
4934
+ listRobotControllers(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
4935
4935
  /**
4936
4936
  * 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.
4937
4937
  * @summary Set Default Mode
@@ -4941,7 +4941,7 @@ declare class ControllerApi extends BaseAPI {
4941
4941
  * @param {*} [options] Override http request option.
4942
4942
  * @throws {RequiredError}
4943
4943
  */
4944
- setDefaultMode(cell: string, controller: string, mode: SettableRobotSystemMode, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4944
+ setDefaultMode(cell: string, controller: string, mode: SettableRobotSystemMode, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4945
4945
  /**
4946
4946
  * <!-- 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.
4947
4947
  * @summary Stream Free Drive
@@ -4951,7 +4951,7 @@ declare class ControllerApi extends BaseAPI {
4951
4951
  * @param {*} [options] Override http request option.
4952
4952
  * @throws {RequiredError}
4953
4953
  */
4954
- streamFreeDrive(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotControllerState, any>>;
4954
+ streamFreeDrive(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<RobotControllerState, any>>;
4955
4955
  /**
4956
4956
  * <!-- 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.
4957
4957
  * @summary Stream State
@@ -4962,7 +4962,7 @@ declare class ControllerApi extends BaseAPI {
4962
4962
  * @param {*} [options] Override http request option.
4963
4963
  * @throws {RequiredError}
4964
4964
  */
4965
- streamRobotControllerState(cell: string, controller: string, responseRate?: number, addControllerTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotControllerState, any>>;
4965
+ streamRobotControllerState(cell: string, controller: string, responseRate?: number, addControllerTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<RobotControllerState, any>>;
4966
4966
  /**
4967
4967
  * 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).
4968
4968
  * @summary Update Robot Controller
@@ -4973,7 +4973,7 @@ declare class ControllerApi extends BaseAPI {
4973
4973
  * @param {*} [options] Override http request option.
4974
4974
  * @throws {RequiredError}
4975
4975
  */
4976
- updateRobotController(cell: string, controller: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4976
+ updateRobotController(cell: string, controller: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4977
4977
  }
4978
4978
  /**
4979
4979
  * ControllerInputsOutputsApi - axios parameter creator
@@ -5165,7 +5165,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
5165
5165
  * @param {*} [options] Override http request option.
5166
5166
  * @throws {RequiredError}
5167
5167
  */
5168
- listIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IODescription[], any>>;
5168
+ listIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<IODescription[], any>>;
5169
5169
  /**
5170
5170
  * 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).
5171
5171
  * @summary Get Input/Output Values
@@ -5175,7 +5175,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
5175
5175
  * @param {*} [options] Override http request option.
5176
5176
  * @throws {RequiredError}
5177
5177
  */
5178
- listIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IOValue[], any>>;
5178
+ listIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<IOValue[], any>>;
5179
5179
  /**
5180
5180
  * 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.
5181
5181
  * @summary Set Output Values
@@ -5185,7 +5185,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
5185
5185
  * @param {*} [options] Override http request option.
5186
5186
  * @throws {RequiredError}
5187
5187
  */
5188
- setOutputValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
5188
+ setOutputValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
5189
5189
  /**
5190
5190
  * <!-- 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.
5191
5191
  * @summary Stream Input/Output Values
@@ -5195,7 +5195,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
5195
5195
  * @param {*} [options] Override http request option.
5196
5196
  * @throws {RequiredError}
5197
5197
  */
5198
- streamIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<StreamIOValuesResponse, any>>;
5198
+ streamIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<StreamIOValuesResponse, any>>;
5199
5199
  /**
5200
5200
  * 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 ```
5201
5201
  * @summary Wait For
@@ -5205,7 +5205,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
5205
5205
  * @param {*} [options] Override http request option.
5206
5206
  * @throws {RequiredError}
5207
5207
  */
5208
- waitForIOEvent(cell: string, controller: string, waitForIOEventRequest: WaitForIOEventRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<boolean, any>>;
5208
+ waitForIOEvent(cell: string, controller: string, waitForIOEventRequest: WaitForIOEventRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<boolean, any>>;
5209
5209
  }
5210
5210
  /**
5211
5211
  * JoggingApi - axios parameter creator
@@ -5265,7 +5265,7 @@ declare class JoggingApi extends BaseAPI {
5265
5265
  * @param {*} [options] Override http request option.
5266
5266
  * @throws {RequiredError}
5267
5267
  */
5268
- executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ExecuteJoggingResponse, any>>;
5268
+ executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ExecuteJoggingResponse, any>>;
5269
5269
  }
5270
5270
  /**
5271
5271
  * KinematicsApi - axios parameter creator
@@ -5348,7 +5348,7 @@ declare class KinematicsApi extends BaseAPI {
5348
5348
  * @param {*} [options] Override http request option.
5349
5349
  * @throws {RequiredError}
5350
5350
  */
5351
- forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ForwardKinematicsResponse, any>>;
5351
+ forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ForwardKinematicsResponse, any>>;
5352
5352
  /**
5353
5353
  * Returns the reachable joint positions for a list of given poses.
5354
5354
  * @summary Inverse kinematics
@@ -5357,7 +5357,7 @@ declare class KinematicsApi extends BaseAPI {
5357
5357
  * @param {*} [options] Override http request option.
5358
5358
  * @throws {RequiredError}
5359
5359
  */
5360
- inverseKinematics(cell: string, inverseKinematicsRequest: InverseKinematicsRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<InverseKinematicsResponse, any>>;
5360
+ inverseKinematics(cell: string, inverseKinematicsRequest: InverseKinematicsRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<InverseKinematicsResponse, any>>;
5361
5361
  }
5362
5362
  /**
5363
5363
  * LicenseApi - axios parameter creator
@@ -5472,28 +5472,28 @@ declare class LicenseApi extends BaseAPI {
5472
5472
  * @param {*} [options] Override http request option.
5473
5473
  * @throws {RequiredError}
5474
5474
  */
5475
- activateLicense(activateLicenseRequest: ActivateLicenseRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<License, any>>;
5475
+ activateLicense(activateLicenseRequest: ActivateLicenseRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<License, any>>;
5476
5476
  /**
5477
5477
  * Deactivates active license.
5478
5478
  * @summary Deactivate license
5479
5479
  * @param {*} [options] Override http request option.
5480
5480
  * @throws {RequiredError}
5481
5481
  */
5482
- deactivateLicense(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
5482
+ deactivateLicense(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
5483
5483
  /**
5484
5484
  * Get information on the license used with the Wandelbots NOVA instance, e.g., licensed product, expiration date, license status.
5485
5485
  * @summary Get license
5486
5486
  * @param {*} [options] Override http request option.
5487
5487
  * @throws {RequiredError}
5488
5488
  */
5489
- getLicense(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<License, any>>;
5489
+ getLicense(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<License, any>>;
5490
5490
  /**
5491
5491
  * 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.
5492
5492
  * @summary Get license status
5493
5493
  * @param {*} [options] Override http request option.
5494
5494
  * @throws {RequiredError}
5495
5495
  */
5496
- getLicenseStatus(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<LicenseStatus, any>>;
5496
+ getLicenseStatus(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<LicenseStatus, any>>;
5497
5497
  }
5498
5498
  /**
5499
5499
  * MotionGroupApi - axios parameter creator
@@ -5623,7 +5623,7 @@ declare class MotionGroupApi extends BaseAPI {
5623
5623
  * @param {*} [options] Override http request option.
5624
5624
  * @throws {RequiredError}
5625
5625
  */
5626
- getCurrentMotionGroupState(cell: string, controller: string, motionGroup: string, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupState, any>>;
5626
+ getCurrentMotionGroupState(cell: string, controller: string, motionGroup: string, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<MotionGroupState, any>>;
5627
5627
  /**
5628
5628
  * 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.
5629
5629
  * @summary Description
@@ -5633,7 +5633,7 @@ declare class MotionGroupApi extends BaseAPI {
5633
5633
  * @param {*} [options] Override http request option.
5634
5634
  * @throws {RequiredError}
5635
5635
  */
5636
- getMotionGroupDescription(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupDescription, any>>;
5636
+ getMotionGroupDescription(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<MotionGroupDescription, any>>;
5637
5637
  /**
5638
5638
  * <!-- theme: success --> > Websocket endpoint Receive updates of the motion group state. The stream will be closed from the server if the controller is disconnected.
5639
5639
  * @summary Stream State
@@ -5645,7 +5645,7 @@ declare class MotionGroupApi extends BaseAPI {
5645
5645
  * @param {*} [options] Override http request option.
5646
5646
  * @throws {RequiredError}
5647
5647
  */
5648
- streamMotionGroupState(cell: string, controller: string, motionGroup: string, responseRate?: number, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupState, any>>;
5648
+ streamMotionGroupState(cell: string, controller: string, motionGroup: string, responseRate?: number, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<MotionGroupState, any>>;
5649
5649
  }
5650
5650
  /**
5651
5651
  * MotionGroupModelsApi - axios parameter creator
@@ -5722,7 +5722,7 @@ declare class MotionGroupModelsApi extends BaseAPI {
5722
5722
  * @param {*} [options] Override http request option.
5723
5723
  * @throws {RequiredError}
5724
5724
  */
5725
- getMotionGroupCollisionModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
5725
+ getMotionGroupCollisionModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
5726
5726
  [key: string]: Collider;
5727
5727
  }[], any>>;
5728
5728
  /**
@@ -5731,7 +5731,7 @@ declare class MotionGroupModelsApi extends BaseAPI {
5731
5731
  * @param {*} [options] Override http request option.
5732
5732
  * @throws {RequiredError}
5733
5733
  */
5734
- getMotionGroupModels(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
5734
+ getMotionGroupModels(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
5735
5735
  }
5736
5736
  /**
5737
5737
  * ProgramApi - axios parameter creator
@@ -5868,7 +5868,7 @@ declare class ProgramApi extends BaseAPI {
5868
5868
  * @param {*} [options] Override http request option.
5869
5869
  * @throws {RequiredError}
5870
5870
  */
5871
- getProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Program, any>>;
5871
+ getProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Program, any>>;
5872
5872
  /**
5873
5873
  * List details of all existing programs.
5874
5874
  * @summary List programs
@@ -5876,7 +5876,7 @@ declare class ProgramApi extends BaseAPI {
5876
5876
  * @param {*} [options] Override http request option.
5877
5877
  * @throws {RequiredError}
5878
5878
  */
5879
- listPrograms(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Program[], any>>;
5879
+ listPrograms(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Program[], any>>;
5880
5880
  /**
5881
5881
  * This endpoint starts a new program execution. The program will be executed asynchronously.
5882
5882
  * @summary Start the program
@@ -5886,7 +5886,7 @@ declare class ProgramApi extends BaseAPI {
5886
5886
  * @param {*} [options] Override http request option.
5887
5887
  * @throws {RequiredError}
5888
5888
  */
5889
- startProgram(cell: string, program: string, programStartRequest: ProgramStartRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProgramRun, any>>;
5889
+ startProgram(cell: string, program: string, programStartRequest: ProgramStartRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ProgramRun, any>>;
5890
5890
  /**
5891
5891
  * Stop a specific program run.
5892
5892
  * @summary Stop program run
@@ -5895,7 +5895,7 @@ declare class ProgramApi extends BaseAPI {
5895
5895
  * @param {*} [options] Override http request option.
5896
5896
  * @throws {RequiredError}
5897
5897
  */
5898
- stopProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
5898
+ stopProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
5899
5899
  }
5900
5900
  /**
5901
5901
  * StoreCollisionComponentsApi - axios parameter creator
@@ -6368,7 +6368,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6368
6368
  * @param {*} [options] Override http request option.
6369
6369
  * @throws {RequiredError}
6370
6370
  */
6371
- deleteStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
6371
+ deleteStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
6372
6372
  /**
6373
6373
  * Deletes the stored link chain. <!-- theme: danger --> > This will delete persistently stored data.
6374
6374
  * @summary Delete Link Chain
@@ -6377,7 +6377,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6377
6377
  * @param {*} [options] Override http request option.
6378
6378
  * @throws {RequiredError}
6379
6379
  */
6380
- deleteStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
6380
+ deleteStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
6381
6381
  /**
6382
6382
  * Deletes the stored tool. <!-- theme: danger --> > This will delete persistently stored data.
6383
6383
  * @summary Delete Tool
@@ -6386,7 +6386,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6386
6386
  * @param {*} [options] Override http request option.
6387
6387
  * @throws {RequiredError}
6388
6388
  */
6389
- deleteStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
6389
+ deleteStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
6390
6390
  /**
6391
6391
  * Returns the collider.
6392
6392
  * @summary Get Collider
@@ -6395,7 +6395,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6395
6395
  * @param {*} [options] Override http request option.
6396
6396
  * @throws {RequiredError}
6397
6397
  */
6398
- getStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Collider, any>>;
6398
+ getStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Collider, any>>;
6399
6399
  /**
6400
6400
  * Returns the collision link chain.
6401
6401
  * @summary Get Link Chain
@@ -6404,7 +6404,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6404
6404
  * @param {*} [options] Override http request option.
6405
6405
  * @throws {RequiredError}
6406
6406
  */
6407
- getStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6407
+ getStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6408
6408
  [key: string]: Collider;
6409
6409
  }[], any>>;
6410
6410
  /**
@@ -6415,7 +6415,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6415
6415
  * @param {*} [options] Override http request option.
6416
6416
  * @throws {RequiredError}
6417
6417
  */
6418
- getStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6418
+ getStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6419
6419
  [key: string]: Collider;
6420
6420
  }, any>>;
6421
6421
  /**
@@ -6425,7 +6425,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6425
6425
  * @param {*} [options] Override http request option.
6426
6426
  * @throws {RequiredError}
6427
6427
  */
6428
- listCollisionLinkChains(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6428
+ listCollisionLinkChains(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6429
6429
  [key: string]: {
6430
6430
  [key: string]: Collider;
6431
6431
  }[];
@@ -6437,7 +6437,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6437
6437
  * @param {*} [options] Override http request option.
6438
6438
  * @throws {RequiredError}
6439
6439
  */
6440
- listCollisionLinkChainsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
6440
+ listCollisionLinkChainsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
6441
6441
  /**
6442
6442
  * Returns all stored colliders.
6443
6443
  * @summary List Colliders
@@ -6445,7 +6445,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6445
6445
  * @param {*} [options] Override http request option.
6446
6446
  * @throws {RequiredError}
6447
6447
  */
6448
- listStoredColliders(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6448
+ listStoredColliders(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6449
6449
  [key: string]: Collider;
6450
6450
  }, any>>;
6451
6451
  /**
@@ -6455,7 +6455,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6455
6455
  * @param {*} [options] Override http request option.
6456
6456
  * @throws {RequiredError}
6457
6457
  */
6458
- listStoredCollidersKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
6458
+ listStoredCollidersKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
6459
6459
  /**
6460
6460
  * Returns the list of stored tools.
6461
6461
  * @summary List Tools
@@ -6463,7 +6463,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6463
6463
  * @param {*} [options] Override http request option.
6464
6464
  * @throws {RequiredError}
6465
6465
  */
6466
- listStoredCollisionTools(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6466
+ listStoredCollisionTools(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6467
6467
  [key: string]: {
6468
6468
  [key: string]: Collider;
6469
6469
  };
@@ -6475,7 +6475,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6475
6475
  * @param {*} [options] Override http request option.
6476
6476
  * @throws {RequiredError}
6477
6477
  */
6478
- listStoredCollisionToolsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
6478
+ listStoredCollisionToolsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
6479
6479
  /**
6480
6480
  * Stores collider. - If the collider does not exist, it will be created. - If the collider exists, it will be updated.
6481
6481
  * @summary Store Collider
@@ -6485,7 +6485,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6485
6485
  * @param {*} [options] Override http request option.
6486
6486
  * @throws {RequiredError}
6487
6487
  */
6488
- storeCollider(cell: string, collider: string, collider2: Collider, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Collider, any>>;
6488
+ storeCollider(cell: string, collider: string, collider2: Collider, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Collider, any>>;
6489
6489
  /**
6490
6490
  * Stores link chain. - If the link chain does not exist, it will be created. - If the link chain exists, it will be updated.
6491
6491
  * @summary Store Link Chain
@@ -6497,7 +6497,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6497
6497
  */
6498
6498
  storeCollisionLinkChain(cell: string, linkChain: string, collider: Array<{
6499
6499
  [key: string]: Collider;
6500
- }>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6500
+ }>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6501
6501
  [key: string]: Collider;
6502
6502
  }[], any>>;
6503
6503
  /**
@@ -6511,7 +6511,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6511
6511
  */
6512
6512
  storeCollisionTool(cell: string, tool: string, requestBody: {
6513
6513
  [key: string]: Collider;
6514
- }, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6514
+ }, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6515
6515
  [key: string]: Collider;
6516
6516
  }, any>>;
6517
6517
  }
@@ -6678,7 +6678,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
6678
6678
  * @param {*} [options] Override http request option.
6679
6679
  * @throws {RequiredError}
6680
6680
  */
6681
- deleteStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
6681
+ deleteStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
6682
6682
  /**
6683
6683
  * Returns the stored collision setup.
6684
6684
  * @summary Get Collision Setup
@@ -6687,7 +6687,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
6687
6687
  * @param {*} [options] Override http request option.
6688
6688
  * @throws {RequiredError}
6689
6689
  */
6690
- getStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CollisionSetup, any>>;
6690
+ getStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CollisionSetup, any>>;
6691
6691
  /**
6692
6692
  * Returns a list of stored collision setups.
6693
6693
  * @summary List Collision Setups
@@ -6695,7 +6695,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
6695
6695
  * @param {*} [options] Override http request option.
6696
6696
  * @throws {RequiredError}
6697
6697
  */
6698
- listStoredCollisionSetups(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6698
+ listStoredCollisionSetups(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6699
6699
  [key: string]: CollisionSetup;
6700
6700
  }, any>>;
6701
6701
  /**
@@ -6705,7 +6705,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
6705
6705
  * @param {*} [options] Override http request option.
6706
6706
  * @throws {RequiredError}
6707
6707
  */
6708
- listStoredCollisionSetupsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
6708
+ listStoredCollisionSetupsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
6709
6709
  /**
6710
6710
  * Stores collision setup. - If the collision setup does not exist, it will be created. - If the collision setup exists, it will be updated.
6711
6711
  * @summary Store Collision Setup
@@ -6715,7 +6715,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
6715
6715
  * @param {*} [options] Override http request option.
6716
6716
  * @throws {RequiredError}
6717
6717
  */
6718
- storeCollisionSetup(cell: string, setup: string, collisionSetup: CollisionSetup, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CollisionSetup, any>>;
6718
+ storeCollisionSetup(cell: string, setup: string, collisionSetup: CollisionSetup, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CollisionSetup, any>>;
6719
6719
  }
6720
6720
  /**
6721
6721
  * StoreObjectApi - axios parameter creator
@@ -6911,7 +6911,7 @@ declare class StoreObjectApi extends BaseAPI {
6911
6911
  * @param {*} [options] Override http request option.
6912
6912
  * @throws {RequiredError}
6913
6913
  */
6914
- clearAllObjects(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
6914
+ clearAllObjects(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
6915
6915
  /**
6916
6916
  * Delete an object <!-- theme: danger --> > This will delete persistently stored data.
6917
6917
  * @summary Delete Object
@@ -6920,7 +6920,7 @@ declare class StoreObjectApi extends BaseAPI {
6920
6920
  * @param {*} [options] Override http request option.
6921
6921
  * @throws {RequiredError}
6922
6922
  */
6923
- deleteObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
6923
+ deleteObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
6924
6924
  /**
6925
6925
  * Returns content and metadata of a stored object.
6926
6926
  * @summary Get Object
@@ -6929,7 +6929,7 @@ declare class StoreObjectApi extends BaseAPI {
6929
6929
  * @param {*} [options] Override http request option.
6930
6930
  * @throws {RequiredError}
6931
6931
  */
6932
- getObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<File, any>>;
6932
+ getObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<File, any>>;
6933
6933
  /**
6934
6934
  * Returns metadata. Object content is not returned.
6935
6935
  * @summary Get Object Metadata
@@ -6938,7 +6938,7 @@ declare class StoreObjectApi extends BaseAPI {
6938
6938
  * @param {*} [options] Override http request option.
6939
6939
  * @throws {RequiredError}
6940
6940
  */
6941
- getObjectMetadata(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
6941
+ getObjectMetadata(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
6942
6942
  /**
6943
6943
  * List the keys for all objects.
6944
6944
  * @summary List all Object Keys
@@ -6946,7 +6946,7 @@ declare class StoreObjectApi extends BaseAPI {
6946
6946
  * @param {*} [options] Override http request option.
6947
6947
  * @throws {RequiredError}
6948
6948
  */
6949
- listAllObjectKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
6949
+ listAllObjectKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
6950
6950
  /**
6951
6951
  * 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.
6952
6952
  * @summary Store Object
@@ -6959,7 +6959,7 @@ declare class StoreObjectApi extends BaseAPI {
6959
6959
  */
6960
6960
  storeObject(cell: string, key: string, xMetadata?: {
6961
6961
  [key: string]: string;
6962
- }, anyValue?: any, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
6962
+ }, anyValue?: any, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
6963
6963
  }
6964
6964
  /**
6965
6965
  * SystemApi - axios parameter creator
@@ -7206,7 +7206,7 @@ declare class SystemApi extends BaseAPI {
7206
7206
  */
7207
7207
  backupConfiguration(resources?: Array<string>, metadata?: {
7208
7208
  [key: string]: string;
7209
- }, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<File, any>>;
7209
+ }, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<File, any>>;
7210
7210
  /**
7211
7211
  * Check if a more recent Wandelbots NOVA Version is available.
7212
7212
  * @summary Check update
@@ -7214,7 +7214,7 @@ declare class SystemApi extends BaseAPI {
7214
7214
  * @param {*} [options] Override http request option.
7215
7215
  * @throws {RequiredError}
7216
7216
  */
7217
- checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string, any>>;
7217
+ checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string, any>>;
7218
7218
  /**
7219
7219
  * 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.
7220
7220
  * @summary Retrieve Backup Status
@@ -7222,35 +7222,35 @@ declare class SystemApi extends BaseAPI {
7222
7222
  * @param {*} [options] Override http request option.
7223
7223
  * @throws {RequiredError}
7224
7224
  */
7225
- getConfigurationBackupStatus(operationId: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ConfigurationArchiveStatus, any>>;
7225
+ getConfigurationBackupStatus(operationId: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ConfigurationArchiveStatus, any>>;
7226
7226
  /**
7227
7227
  * 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.
7228
7228
  * @summary Download Diagnosis Package
7229
7229
  * @param {*} [options] Override http request option.
7230
7230
  * @throws {RequiredError}
7231
7231
  */
7232
- getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<File, any>>;
7232
+ getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<File, any>>;
7233
7233
  /**
7234
7234
  * Get the status of all system services.
7235
7235
  * @summary Wandelbots NOVA status
7236
7236
  * @param {*} [options] Override http request option.
7237
7237
  * @throws {RequiredError}
7238
7238
  */
7239
- getSystemStatus(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ServiceStatus[], any>>;
7239
+ getSystemStatus(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ServiceStatus[], any>>;
7240
7240
  /**
7241
7241
  * Get the current Wandelbots NOVA version.
7242
7242
  * @summary Wandelbots NOVA Version
7243
7243
  * @param {*} [options] Override http request option.
7244
7244
  * @throws {RequiredError}
7245
7245
  */
7246
- getSystemVersion(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string, any>>;
7246
+ getSystemVersion(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string, any>>;
7247
7247
  /**
7248
7248
  * Retrieves a list of all available configuration resources for backup purposes.
7249
7249
  * @summary List Configuration Resources
7250
7250
  * @param {*} [options] Override http request option.
7251
7251
  * @throws {RequiredError}
7252
7252
  */
7253
- listConfigurationResources(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ConfigurationResource[], any>>;
7253
+ listConfigurationResources(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ConfigurationResource[], any>>;
7254
7254
  /**
7255
7255
  * Restores a previously backed up configuration.
7256
7256
  * @summary Restore Configuration Backup
@@ -7259,7 +7259,7 @@ declare class SystemApi extends BaseAPI {
7259
7259
  * @param {*} [options] Override http request option.
7260
7260
  * @throws {RequiredError}
7261
7261
  */
7262
- restoreConfiguration(resources: Array<string>, body: File, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
7262
+ restoreConfiguration(resources: Array<string>, body: File, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
7263
7263
  /**
7264
7264
  * 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.
7265
7265
  * @summary Update Wandelbots NOVA version
@@ -7267,7 +7267,7 @@ declare class SystemApi extends BaseAPI {
7267
7267
  * @param {*} [options] Override http request option.
7268
7268
  * @throws {RequiredError}
7269
7269
  */
7270
- updateNovaVersion(updateNovaVersionRequest: UpdateNovaVersionRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
7270
+ updateNovaVersion(updateNovaVersionRequest: UpdateNovaVersionRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
7271
7271
  }
7272
7272
  /**
7273
7273
  * TrajectoryCachingApi - axios parameter creator
@@ -7441,7 +7441,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
7441
7441
  * @param {*} [options] Override http request option.
7442
7442
  * @throws {RequiredError}
7443
7443
  */
7444
- addTrajectory(cell: string, controller: string, addTrajectoryRequest: AddTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<AddTrajectoryResponse, any>>;
7444
+ addTrajectory(cell: string, controller: string, addTrajectoryRequest: AddTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<AddTrajectoryResponse, any>>;
7445
7445
  /**
7446
7446
  * Clear the trajectory cache.
7447
7447
  * @summary Clear Trajectories
@@ -7450,7 +7450,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
7450
7450
  * @param {*} [options] Override http request option.
7451
7451
  * @throws {RequiredError}
7452
7452
  */
7453
- clearTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
7453
+ clearTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
7454
7454
  /**
7455
7455
  * 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.
7456
7456
  * @summary Delete Trajectory
@@ -7460,7 +7460,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
7460
7460
  * @param {*} [options] Override http request option.
7461
7461
  * @throws {RequiredError}
7462
7462
  */
7463
- deleteTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
7463
+ deleteTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
7464
7464
  /**
7465
7465
  * Get a previously created trajectory from cache. Use [listTrajectories](listTrajectories) to list all cached trajectories.
7466
7466
  * @summary Get Trajectory
@@ -7470,7 +7470,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
7470
7470
  * @param {*} [options] Override http request option.
7471
7471
  * @throws {RequiredError}
7472
7472
  */
7473
- getTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<GetTrajectoryResponse, any>>;
7473
+ getTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<GetTrajectoryResponse, any>>;
7474
7474
  /**
7475
7475
  * 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.
7476
7476
  * @summary List Trajectories
@@ -7479,7 +7479,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
7479
7479
  * @param {*} [options] Override http request option.
7480
7480
  * @throws {RequiredError}
7481
7481
  */
7482
- listTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ListTrajectoriesResponse, any>>;
7482
+ listTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ListTrajectoriesResponse, any>>;
7483
7483
  }
7484
7484
  /**
7485
7485
  * TrajectoryExecutionApi - axios parameter creator
@@ -7539,7 +7539,7 @@ declare class TrajectoryExecutionApi extends BaseAPI {
7539
7539
  * @param {*} [options] Override http request option.
7540
7540
  * @throws {RequiredError}
7541
7541
  */
7542
- executeTrajectory(cell: string, controller: string, executeTrajectoryRequest: ExecuteTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ExecuteTrajectoryResponse, any>>;
7542
+ executeTrajectory(cell: string, controller: string, executeTrajectoryRequest: ExecuteTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ExecuteTrajectoryResponse, any>>;
7543
7543
  }
7544
7544
  /**
7545
7545
  * TrajectoryPlanningApi - axios parameter creator
@@ -7622,7 +7622,7 @@ declare class TrajectoryPlanningApi extends BaseAPI {
7622
7622
  * @param {*} [options] Override http request option.
7623
7623
  * @throws {RequiredError}
7624
7624
  */
7625
- planCollisionFree(cell: string, planCollisionFreeRequest: PlanCollisionFreeRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<PlanCollisionFreeResponse, any>>;
7625
+ planCollisionFree(cell: string, planCollisionFreeRequest: PlanCollisionFreeRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<PlanCollisionFreeResponse, any>>;
7626
7626
  /**
7627
7627
  * 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.
7628
7628
  * @summary Plan Trajectory
@@ -7631,7 +7631,7 @@ declare class TrajectoryPlanningApi extends BaseAPI {
7631
7631
  * @param {*} [options] Override http request option.
7632
7632
  * @throws {RequiredError}
7633
7633
  */
7634
- planTrajectory(cell: string, planTrajectoryRequest: PlanTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<PlanTrajectoryResponse, any>>;
7634
+ planTrajectory(cell: string, planTrajectoryRequest: PlanTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<PlanTrajectoryResponse, any>>;
7635
7635
  }
7636
7636
  /**
7637
7637
  * VersionApi - axios parameter creator
@@ -7679,7 +7679,7 @@ declare class VersionApi extends BaseAPI {
7679
7679
  * @param {*} [options] Override http request option.
7680
7680
  * @throws {RequiredError}
7681
7681
  */
7682
- getApiVersion(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ApiVersion, any>>;
7682
+ getApiVersion(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ApiVersion, any>>;
7683
7683
  }
7684
7684
  /**
7685
7685
  * VirtualControllerApi - axios parameter creator
@@ -8169,7 +8169,7 @@ declare class VirtualControllerApi extends BaseAPI {
8169
8169
  * @param {*} [options] Override http request option.
8170
8170
  * @throws {RequiredError}
8171
8171
  */
8172
- addVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, coordinateSystemData: CoordinateSystemData, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8172
+ addVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, coordinateSystemData: CoordinateSystemData, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8173
8173
  /**
8174
8174
  * 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.
8175
8175
  * @summary Add TCP
@@ -8181,7 +8181,7 @@ declare class VirtualControllerApi extends BaseAPI {
8181
8181
  * @param {*} [options] Override http request option.
8182
8182
  * @throws {RequiredError}
8183
8183
  */
8184
- addVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, robotTcpData: RobotTcpData, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8184
+ addVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, robotTcpData: RobotTcpData, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8185
8185
  /**
8186
8186
  * 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.
8187
8187
  * @summary Delete Coordinate System
@@ -8192,7 +8192,7 @@ declare class VirtualControllerApi extends BaseAPI {
8192
8192
  * @param {*} [options] Override http request option.
8193
8193
  * @throws {RequiredError}
8194
8194
  */
8195
- deleteVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8195
+ deleteVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8196
8196
  /**
8197
8197
  * 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.
8198
8198
  * @summary Remove TCP
@@ -8203,7 +8203,7 @@ declare class VirtualControllerApi extends BaseAPI {
8203
8203
  * @param {*} [options] Override http request option.
8204
8204
  * @throws {RequiredError}
8205
8205
  */
8206
- deleteVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8206
+ deleteVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8207
8207
  /**
8208
8208
  * 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.
8209
8209
  * @summary Get Emergency Stop State
@@ -8212,7 +8212,7 @@ declare class VirtualControllerApi extends BaseAPI {
8212
8212
  * @param {*} [options] Override http request option.
8213
8213
  * @throws {RequiredError}
8214
8214
  */
8215
- getEmergencyStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Flag, any>>;
8215
+ getEmergencyStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Flag, any>>;
8216
8216
  /**
8217
8217
  * Get the current motion group state which provides values for the joints\' position, velocity and acceleration.
8218
8218
  * @summary Get Motion Group State
@@ -8222,7 +8222,7 @@ declare class VirtualControllerApi extends BaseAPI {
8222
8222
  * @param {*} [options] Override http request option.
8223
8223
  * @throws {RequiredError}
8224
8224
  */
8225
- getMotionGroupState(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupJoints, any>>;
8225
+ getMotionGroupState(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<MotionGroupJoints, any>>;
8226
8226
  /**
8227
8227
  * Gets information on the motion group.
8228
8228
  * @summary Motion Group Description
@@ -8231,7 +8231,7 @@ declare class VirtualControllerApi extends BaseAPI {
8231
8231
  * @param {*} [options] Override http request option.
8232
8232
  * @throws {RequiredError}
8233
8233
  */
8234
- getMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupInfo[], any>>;
8234
+ getMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<MotionGroupInfo[], any>>;
8235
8235
  /**
8236
8236
  * 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.
8237
8237
  * @summary Get Operation Mode
@@ -8240,7 +8240,7 @@ declare class VirtualControllerApi extends BaseAPI {
8240
8240
  * @param {*} [options] Override http request option.
8241
8241
  * @throws {RequiredError}
8242
8242
  */
8243
- getOperationMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<OpMode, any>>;
8243
+ getOperationMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<OpMode, any>>;
8244
8244
  /**
8245
8245
  * Gets motion group mounting. The motion group is based on the origin of the returned coordinate system.
8246
8246
  * @summary Get Mounting
@@ -8250,7 +8250,7 @@ declare class VirtualControllerApi extends BaseAPI {
8250
8250
  * @param {*} [options] Override http request option.
8251
8251
  * @throws {RequiredError}
8252
8252
  */
8253
- getVirtualControllerMounting(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem, any>>;
8253
+ getVirtualControllerMounting(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CoordinateSystem, any>>;
8254
8254
  /**
8255
8255
  * Lists all coordinate systems on the robot controller.
8256
8256
  * @summary List Coordinate Systems
@@ -8259,7 +8259,7 @@ declare class VirtualControllerApi extends BaseAPI {
8259
8259
  * @param {*} [options] Override http request option.
8260
8260
  * @throws {RequiredError}
8261
8261
  */
8262
- listVirtualControllerCoordinateSystems(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem[], any>>;
8262
+ listVirtualControllerCoordinateSystems(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CoordinateSystem[], any>>;
8263
8263
  /**
8264
8264
  * Lists TCPs of the motion group. An empty TCP list is valid, e.g., for external axes.
8265
8265
  * @summary List TCPs
@@ -8269,7 +8269,7 @@ declare class VirtualControllerApi extends BaseAPI {
8269
8269
  * @param {*} [options] Override http request option.
8270
8270
  * @throws {RequiredError}
8271
8271
  */
8272
- listVirtualControllerTcps(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotTcp[], any>>;
8272
+ listVirtualControllerTcps(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<RobotTcp[], any>>;
8273
8273
  /**
8274
8274
  * 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.
8275
8275
  * @summary Push or Release Emergency Stop
@@ -8279,7 +8279,7 @@ declare class VirtualControllerApi extends BaseAPI {
8279
8279
  * @param {*} [options] Override http request option.
8280
8280
  * @throws {RequiredError}
8281
8281
  */
8282
- setEmergencyStop(cell: string, controller: string, active?: boolean, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8282
+ setEmergencyStop(cell: string, controller: string, active?: boolean, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8283
8283
  /**
8284
8284
  * 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.
8285
8285
  * @summary Set Motion Group State
@@ -8290,7 +8290,7 @@ declare class VirtualControllerApi extends BaseAPI {
8290
8290
  * @param {*} [options] Override http request option.
8291
8291
  * @throws {RequiredError}
8292
8292
  */
8293
- setMotionGroupState(cell: string, controller: string, motionGroup: string, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8293
+ setMotionGroupState(cell: string, controller: string, motionGroup: string, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8294
8294
  /**
8295
8295
  * 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.
8296
8296
  * @summary Set Operation Mode
@@ -8300,7 +8300,7 @@ declare class VirtualControllerApi extends BaseAPI {
8300
8300
  * @param {*} [options] Override http request option.
8301
8301
  * @throws {RequiredError}
8302
8302
  */
8303
- setOperationMode(cell: string, controller: string, mode: OperationMode, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8303
+ setOperationMode(cell: string, controller: string, mode: OperationMode, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8304
8304
  /**
8305
8305
  * 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.
8306
8306
  * @summary Set Mounting
@@ -8311,7 +8311,7 @@ declare class VirtualControllerApi extends BaseAPI {
8311
8311
  * @param {*} [options] Override http request option.
8312
8312
  * @throws {RequiredError}
8313
8313
  */
8314
- setVirtualControllerMounting(cell: string, controller: string, motionGroup: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem, any>>;
8314
+ setVirtualControllerMounting(cell: string, controller: string, motionGroup: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CoordinateSystem, any>>;
8315
8315
  }
8316
8316
  /**
8317
8317
  * VirtualControllerBehaviorApi - axios parameter creator
@@ -8455,7 +8455,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
8455
8455
  * @param {*} [options] Override http request option.
8456
8456
  * @throws {RequiredError}
8457
8457
  */
8458
- externalJointsStream(cell: string, controller: string, externalJointStreamRequest: ExternalJointStreamRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ExternalJointStreamDatapoint[], any>>;
8458
+ externalJointsStream(cell: string, controller: string, externalJointStreamRequest: ExternalJointStreamRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ExternalJointStreamDatapoint[], any>>;
8459
8459
  /**
8460
8460
  * Get the cycle time of controller communication in [ms].
8461
8461
  * @summary Get Cycle Time
@@ -8464,7 +8464,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
8464
8464
  * @param {*} [options] Override http request option.
8465
8465
  * @throws {RequiredError}
8466
8466
  */
8467
- getCycleTime(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CycleTime, any>>;
8467
+ getCycleTime(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CycleTime, any>>;
8468
8468
  /**
8469
8469
  * Get the current virtual controller behavior. See [setVirtualControllerBehavior](setVirtualControllerBehavior) and the body for details.
8470
8470
  * @summary Get Behavior
@@ -8473,7 +8473,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
8473
8473
  * @param {*} [options] Override http request option.
8474
8474
  * @throws {RequiredError}
8475
8475
  */
8476
- getVirtualControllerBehavior(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Behavior, any>>;
8476
+ getVirtualControllerBehavior(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Behavior, any>>;
8477
8477
  /**
8478
8478
  * Set virtual controller behavior. See query parameters for details.
8479
8479
  * @summary Set Behavior
@@ -8483,7 +8483,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
8483
8483
  * @param {*} [options] Override http request option.
8484
8484
  * @throws {RequiredError}
8485
8485
  */
8486
- setVirtualControllerBehavior(cell: string, controller: string, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8486
+ setVirtualControllerBehavior(cell: string, controller: string, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8487
8487
  }
8488
8488
  /**
8489
8489
  * VirtualControllerInputsOutputsApi - axios parameter creator
@@ -8612,7 +8612,7 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
8612
8612
  * @param {*} [options] Override http request option.
8613
8613
  * @throws {RequiredError}
8614
8614
  */
8615
- listIOs(cell: string, controller: string, ios: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IOValue[], any>>;
8615
+ listIOs(cell: string, controller: string, ios: Array<string>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<IOValue[], any>>;
8616
8616
  /**
8617
8617
  * 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.
8618
8618
  * @summary List Descriptions
@@ -8625,7 +8625,7 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
8625
8625
  * @param {*} [options] Override http request option.
8626
8626
  * @throws {RequiredError}
8627
8627
  */
8628
- listVirtualControllerIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IODescription[], any>>;
8628
+ listVirtualControllerIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<IODescription[], any>>;
8629
8629
  /**
8630
8630
  * Sets a list of values of a virtual controller inputs/outputs.
8631
8631
  * @summary Set Input/Ouput Values
@@ -8635,7 +8635,7 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
8635
8635
  * @param {*} [options] Override http request option.
8636
8636
  * @throws {RequiredError}
8637
8637
  */
8638
- setIOValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8638
+ setIOValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8639
8639
  }
8640
8640
  //#endregion
8641
8641
  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, 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 };