@wandelbots/nova-api 25.10.0-dev.66 → 25.10.0-dev.68

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
@@ -3510,7 +3510,7 @@ declare class ApplicationApi extends BaseAPI {
3510
3510
  * @param {*} [options] Override http request option.
3511
3511
  * @throws {RequiredError}
3512
3512
  */
3513
- addApp(cell: string, app: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
3513
+ addApp(cell: string, app: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
3514
3514
  /**
3515
3515
  * Delete all GUI applications from the cell.
3516
3516
  * @summary Clear Applications
@@ -3519,7 +3519,7 @@ declare class ApplicationApi extends BaseAPI {
3519
3519
  * @param {*} [options] Override http request option.
3520
3520
  * @throws {RequiredError}
3521
3521
  */
3522
- clearApps(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
3522
+ clearApps(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
3523
3523
  /**
3524
3524
  * Delete a GUI application from the cell.
3525
3525
  * @summary Delete Application
@@ -3529,7 +3529,7 @@ declare class ApplicationApi extends BaseAPI {
3529
3529
  * @param {*} [options] Override http request option.
3530
3530
  * @throws {RequiredError}
3531
3531
  */
3532
- deleteApp(cell: string, app: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
3532
+ deleteApp(cell: string, app: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
3533
3533
  /**
3534
3534
  * 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).
3535
3535
  * @summary Configuration
@@ -3538,7 +3538,7 @@ declare class ApplicationApi extends BaseAPI {
3538
3538
  * @param {*} [options] Override http request option.
3539
3539
  * @throws {RequiredError}
3540
3540
  */
3541
- getApp(cell: string, app: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<App, any>>;
3541
+ getApp(cell: string, app: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<App, any>>;
3542
3542
  /**
3543
3543
  * 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.
3544
3544
  * @summary List Applications
@@ -3546,7 +3546,7 @@ declare class ApplicationApi extends BaseAPI {
3546
3546
  * @param {*} [options] Override http request option.
3547
3547
  * @throws {RequiredError}
3548
3548
  */
3549
- listApps(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
3549
+ listApps(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
3550
3550
  /**
3551
3551
  * Update the configuration of a GUI application in the cell.
3552
3552
  * @summary Update Configuration
@@ -3557,7 +3557,7 @@ declare class ApplicationApi extends BaseAPI {
3557
3557
  * @param {*} [options] Override http request option.
3558
3558
  * @throws {RequiredError}
3559
3559
  */
3560
- updateApp(cell: string, app: string, app2: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
3560
+ updateApp(cell: string, app: string, app2: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
3561
3561
  }
3562
3562
  /**
3563
3563
  * BUSInputsOutputsApi - axios parameter creator
@@ -4013,7 +4013,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4013
4013
  * @param {*} [options] Override http request option.
4014
4014
  * @throws {RequiredError}
4015
4015
  */
4016
- addBusIOService(cell: string, busIOType: BusIOType, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4016
+ addBusIOService(cell: string, busIOType: BusIOType, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4017
4017
  /**
4018
4018
  * 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).
4019
4019
  * @summary Add MODBUS Input/Output
@@ -4023,7 +4023,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4023
4023
  * @param {*} [options] Override http request option.
4024
4024
  * @throws {RequiredError}
4025
4025
  */
4026
- addModbusIO(cell: string, io: string, modbusIOData: ModbusIOData, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4026
+ addModbusIO(cell: string, io: string, modbusIOData: ModbusIOData, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4027
4027
  /**
4028
4028
  * 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).
4029
4029
  * @summary Add PROFINET Input/Output
@@ -4033,7 +4033,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4033
4033
  * @param {*} [options] Override http request option.
4034
4034
  * @throws {RequiredError}
4035
4035
  */
4036
- addProfinetIO(cell: string, io: string, profinetIOData: ProfinetIOData, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4036
+ addProfinetIO(cell: string, io: string, profinetIOData: ProfinetIOData, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4037
4037
  /**
4038
4038
  * Remove the BUS inputs/outputs service from the cell.
4039
4039
  * @summary Clear Service
@@ -4042,7 +4042,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4042
4042
  * @param {*} [options] Override http request option.
4043
4043
  * @throws {RequiredError}
4044
4044
  */
4045
- clearBusIOService(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4045
+ clearBusIOService(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4046
4046
  /**
4047
4047
  * Removes an input/output variable configuration from the MODBUS device, e.g., NOVA\'s MODBUS service.
4048
4048
  * @summary Remove MODBUS Input/Ouptut
@@ -4051,7 +4051,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4051
4051
  * @param {*} [options] Override http request option.
4052
4052
  * @throws {RequiredError}
4053
4053
  */
4054
- deleteModbusIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4054
+ deleteModbusIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4055
4055
  /**
4056
4056
  * Removes an input/output variable configuration from the PROFINET device, e.g., NOVA\'s PROFINET service.
4057
4057
  * @summary Remove PROFINET Input/Ouptut
@@ -4060,7 +4060,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4060
4060
  * @param {*} [options] Override http request option.
4061
4061
  * @throws {RequiredError}
4062
4062
  */
4063
- deleteProfinetIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4063
+ deleteProfinetIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4064
4064
  /**
4065
4065
  * Get deployed BUS inputs/outputs service.
4066
4066
  * @summary Get Service
@@ -4068,7 +4068,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4068
4068
  * @param {*} [options] Override http request option.
4069
4069
  * @throws {RequiredError}
4070
4070
  */
4071
- getBusIOService(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<BusIOType, any>>;
4071
+ getBusIOService(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<BusIOType, any>>;
4072
4072
  /**
4073
4073
  * Get the current state of the BUS Inputs/Outputs service.
4074
4074
  * @summary State
@@ -4076,7 +4076,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4076
4076
  * @param {*} [options] Override http request option.
4077
4077
  * @throws {RequiredError}
4078
4078
  */
4079
- getBusIOState(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<BusIOsState, any>>;
4079
+ getBusIOState(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<BusIOsState, any>>;
4080
4080
  /**
4081
4081
  * 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).
4082
4082
  * @summary Get Input/Output Values
@@ -4085,7 +4085,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4085
4085
  * @param {*} [options] Override http request option.
4086
4086
  * @throws {RequiredError}
4087
4087
  */
4088
- getBusIOValues(cell: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IOValue[], any>>;
4088
+ getBusIOValues(cell: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<IOValue[], any>>;
4089
4089
  /**
4090
4090
  * Get description of NOVA as a PROFINET device.
4091
4091
  * @summary Get PROFINET Description
@@ -4093,7 +4093,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4093
4093
  * @param {*} [options] Override http request option.
4094
4094
  * @throws {RequiredError}
4095
4095
  */
4096
- getProfinetDescription(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProfinetDescription, any>>;
4096
+ getProfinetDescription(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ProfinetDescription, any>>;
4097
4097
  /**
4098
4098
  * 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.
4099
4099
  * @summary PROFINET Inputs/Outputs to File
@@ -4103,7 +4103,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4103
4103
  * @param {*} [options] Override http request option.
4104
4104
  * @throws {RequiredError}
4105
4105
  */
4106
- getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string, any>>;
4106
+ getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string, any>>;
4107
4107
  /**
4108
4108
  * 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.
4109
4109
  * @summary List Descriptions
@@ -4111,7 +4111,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4111
4111
  * @param {*} [options] Override http request option.
4112
4112
  * @throws {RequiredError}
4113
4113
  */
4114
- listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<BusIODescription[], any>>;
4114
+ listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<BusIODescription[], any>>;
4115
4115
  /**
4116
4116
  * 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).
4117
4117
  * @summary List MODBUS Input/Output Configuration
@@ -4119,7 +4119,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4119
4119
  * @param {*} [options] Override http request option.
4120
4120
  * @throws {RequiredError}
4121
4121
  */
4122
- listModbusIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ModbusIO[], any>>;
4122
+ listModbusIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ModbusIO[], any>>;
4123
4123
  /**
4124
4124
  * 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.
4125
4125
  * @summary List PROFINET Input/Output Configuration
@@ -4127,7 +4127,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4127
4127
  * @param {*} [options] Override http request option.
4128
4128
  * @throws {RequiredError}
4129
4129
  */
4130
- listProfinetIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProfinetIO[], any>>;
4130
+ listProfinetIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ProfinetIO[], any>>;
4131
4131
  /**
4132
4132
  * 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.
4133
4133
  * @summary Set Output Values
@@ -4136,7 +4136,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4136
4136
  * @param {*} [options] Override http request option.
4137
4137
  * @throws {RequiredError}
4138
4138
  */
4139
- setBusIOValues(cell: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4139
+ setBusIOValues(cell: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4140
4140
  /**
4141
4141
  * 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.
4142
4142
  * @summary Set PROFINET Inputs/Outputs from File
@@ -4145,7 +4145,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4145
4145
  * @param {*} [options] Override http request option.
4146
4146
  * @throws {RequiredError}
4147
4147
  */
4148
- setProfinetIOsFromFile(cell: string, profinetInputOutputConfig: ProfinetInputOutputConfig, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4148
+ setProfinetIOsFromFile(cell: string, profinetInputOutputConfig: ProfinetInputOutputConfig, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4149
4149
  }
4150
4150
  /**
4151
4151
  * CellApi - axios parameter creator
@@ -4354,7 +4354,7 @@ declare class CellApi extends BaseAPI {
4354
4354
  * @param {*} [options] Override http request option.
4355
4355
  * @throws {RequiredError}
4356
4356
  */
4357
- deleteCell(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4357
+ deleteCell(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4358
4358
  /**
4359
4359
  * 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.
4360
4360
  * @summary Add Cell
@@ -4363,7 +4363,7 @@ declare class CellApi extends BaseAPI {
4363
4363
  * @param {*} [options] Override http request option.
4364
4364
  * @throws {RequiredError}
4365
4365
  */
4366
- deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4366
+ deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4367
4367
  /**
4368
4368
  * List all cell resources.
4369
4369
  * @summary Configuration
@@ -4371,7 +4371,7 @@ declare class CellApi extends BaseAPI {
4371
4371
  * @param {*} [options] Override http request option.
4372
4372
  * @throws {RequiredError}
4373
4373
  */
4374
- getCell(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Cell, any>>;
4374
+ getCell(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Cell, any>>;
4375
4375
  /**
4376
4376
  * List the status of all cell resources.
4377
4377
  * @summary Service Status
@@ -4379,14 +4379,14 @@ declare class CellApi extends BaseAPI {
4379
4379
  * @param {*} [options] Override http request option.
4380
4380
  * @throws {RequiredError}
4381
4381
  */
4382
- getCellStatus(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ServiceStatusResponse, any>>;
4382
+ getCellStatus(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ServiceStatusResponse, any>>;
4383
4383
  /**
4384
4384
  * List all deployed cell names. If no cells are deployed, an empty list is returned.
4385
4385
  * @summary List Cells
4386
4386
  * @param {*} [options] Override http request option.
4387
4387
  * @throws {RequiredError}
4388
4388
  */
4389
- listCells(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
4389
+ listCells(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
4390
4390
  /**
4391
4391
  * Deactivate or activate the services of a cell.
4392
4392
  * @summary Operating State
@@ -4395,7 +4395,7 @@ declare class CellApi extends BaseAPI {
4395
4395
  * @param {*} [options] Override http request option.
4396
4396
  * @throws {RequiredError}
4397
4397
  */
4398
- setCellStatus(cell: string, operatingState: OperatingState, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4398
+ setCellStatus(cell: string, operatingState: OperatingState, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4399
4399
  /**
4400
4400
  * Update the definition of the entire Cell.
4401
4401
  * @summary Update Configuration
@@ -4405,7 +4405,7 @@ declare class CellApi extends BaseAPI {
4405
4405
  * @param {*} [options] Override http request option.
4406
4406
  * @throws {RequiredError}
4407
4407
  */
4408
- updateCell(cell: string, cell2: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4408
+ updateCell(cell: string, cell2: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4409
4409
  }
4410
4410
  /**
4411
4411
  * ControllerApi - axios parameter creator
@@ -4843,7 +4843,7 @@ declare class ControllerApi extends BaseAPI {
4843
4843
  * @param {*} [options] Override http request option.
4844
4844
  * @throws {RequiredError}
4845
4845
  */
4846
- addRobotController(cell: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4846
+ addRobotController(cell: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4847
4847
  /**
4848
4848
  * Delete all robot controllers from the cell. To replace all robot controllers in a cell, use this endpoint in combination with [addRobotController](addRobotController).
4849
4849
  * @summary Clear Robot Controllers
@@ -4852,7 +4852,7 @@ declare class ControllerApi extends BaseAPI {
4852
4852
  * @param {*} [options] Override http request option.
4853
4853
  * @throws {RequiredError}
4854
4854
  */
4855
- clearRobotControllers(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4855
+ clearRobotControllers(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4856
4856
  /**
4857
4857
  * Delete a robot controller from the cell.
4858
4858
  * @summary Delete Robot Controller
@@ -4862,7 +4862,7 @@ declare class ControllerApi extends BaseAPI {
4862
4862
  * @param {*} [options] Override http request option.
4863
4863
  * @throws {RequiredError}
4864
4864
  */
4865
- deleteRobotController(cell: string, controller: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4865
+ deleteRobotController(cell: string, controller: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4866
4866
  /**
4867
4867
  * 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.
4868
4868
  * @summary Description
@@ -4871,7 +4871,7 @@ declare class ControllerApi extends BaseAPI {
4871
4871
  * @param {*} [options] Override http request option.
4872
4872
  * @throws {RequiredError}
4873
4873
  */
4874
- getControllerDescription(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ControllerDescription, any>>;
4874
+ getControllerDescription(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ControllerDescription, any>>;
4875
4875
  /**
4876
4876
  * 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.
4877
4877
  * @summary Coordinate System
@@ -4882,7 +4882,7 @@ declare class ControllerApi extends BaseAPI {
4882
4882
  * @param {*} [options] Override http request option.
4883
4883
  * @throws {RequiredError}
4884
4884
  */
4885
- getCoordinateSystem(cell: string, controller: string, coordinateSystem: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem, any>>;
4885
+ getCoordinateSystem(cell: string, controller: string, coordinateSystem: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CoordinateSystem, any>>;
4886
4886
  /**
4887
4887
  * Get the current state of a robot controller.
4888
4888
  * @summary State
@@ -4891,7 +4891,7 @@ declare class ControllerApi extends BaseAPI {
4891
4891
  * @param {*} [options] Override http request option.
4892
4892
  * @throws {RequiredError}
4893
4893
  */
4894
- getCurrentRobotControllerState(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotControllerState, any>>;
4894
+ getCurrentRobotControllerState(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<RobotControllerState, any>>;
4895
4895
  /**
4896
4896
  * Get the configuration for a robot controller.
4897
4897
  * @summary Robot Controller
@@ -4900,7 +4900,7 @@ declare class ControllerApi extends BaseAPI {
4900
4900
  * @param {*} [options] Override http request option.
4901
4901
  * @throws {RequiredError}
4902
4902
  */
4903
- getRobotController(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotController, any>>;
4903
+ getRobotController(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<RobotController, any>>;
4904
4904
  /**
4905
4905
  * 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.
4906
4906
  * @summary Virtual Controller Configuration
@@ -4909,7 +4909,7 @@ declare class ControllerApi extends BaseAPI {
4909
4909
  * @param {*} [options] Override http request option.
4910
4910
  * @throws {RequiredError}
4911
4911
  */
4912
- getVirtualControllerConfiguration(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<VirtualRobotConfiguration, any>>;
4912
+ getVirtualControllerConfiguration(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<VirtualRobotConfiguration, any>>;
4913
4913
  /**
4914
4914
  * 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.
4915
4915
  * @summary List Coordinate Systems
@@ -4919,7 +4919,7 @@ declare class ControllerApi extends BaseAPI {
4919
4919
  * @param {*} [options] Override http request option.
4920
4920
  * @throws {RequiredError}
4921
4921
  */
4922
- listCoordinateSystems(cell: string, controller: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem[], any>>;
4922
+ listCoordinateSystems(cell: string, controller: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CoordinateSystem[], any>>;
4923
4923
  /**
4924
4924
  * List the names of all deployed robot controllers.
4925
4925
  * @summary List Robot Controllers
@@ -4927,7 +4927,7 @@ declare class ControllerApi extends BaseAPI {
4927
4927
  * @param {*} [options] Override http request option.
4928
4928
  * @throws {RequiredError}
4929
4929
  */
4930
- listRobotControllers(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
4930
+ listRobotControllers(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
4931
4931
  /**
4932
4932
  * 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.
4933
4933
  * @summary Set Default Mode
@@ -4937,7 +4937,7 @@ declare class ControllerApi extends BaseAPI {
4937
4937
  * @param {*} [options] Override http request option.
4938
4938
  * @throws {RequiredError}
4939
4939
  */
4940
- setDefaultMode(cell: string, controller: string, mode: SettableRobotSystemMode, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4940
+ setDefaultMode(cell: string, controller: string, mode: SettableRobotSystemMode, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4941
4941
  /**
4942
4942
  * <!-- 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.
4943
4943
  * @summary Stream Free Drive
@@ -4947,7 +4947,7 @@ declare class ControllerApi extends BaseAPI {
4947
4947
  * @param {*} [options] Override http request option.
4948
4948
  * @throws {RequiredError}
4949
4949
  */
4950
- streamFreeDrive(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotControllerState, any>>;
4950
+ streamFreeDrive(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<RobotControllerState, any>>;
4951
4951
  /**
4952
4952
  * <!-- 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.
4953
4953
  * @summary Stream State
@@ -4958,7 +4958,7 @@ declare class ControllerApi extends BaseAPI {
4958
4958
  * @param {*} [options] Override http request option.
4959
4959
  * @throws {RequiredError}
4960
4960
  */
4961
- streamRobotControllerState(cell: string, controller: string, responseRate?: number, addControllerTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotControllerState, any>>;
4961
+ streamRobotControllerState(cell: string, controller: string, responseRate?: number, addControllerTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<RobotControllerState, any>>;
4962
4962
  /**
4963
4963
  * 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).
4964
4964
  * @summary Update Robot Controller
@@ -4969,7 +4969,7 @@ declare class ControllerApi extends BaseAPI {
4969
4969
  * @param {*} [options] Override http request option.
4970
4970
  * @throws {RequiredError}
4971
4971
  */
4972
- updateRobotController(cell: string, controller: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4972
+ updateRobotController(cell: string, controller: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4973
4973
  }
4974
4974
  /**
4975
4975
  * ControllerInputsOutputsApi - axios parameter creator
@@ -5161,7 +5161,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
5161
5161
  * @param {*} [options] Override http request option.
5162
5162
  * @throws {RequiredError}
5163
5163
  */
5164
- listIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IODescription[], any>>;
5164
+ listIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<IODescription[], any>>;
5165
5165
  /**
5166
5166
  * 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).
5167
5167
  * @summary Get Input/Output Values
@@ -5171,7 +5171,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
5171
5171
  * @param {*} [options] Override http request option.
5172
5172
  * @throws {RequiredError}
5173
5173
  */
5174
- listIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IOValue[], any>>;
5174
+ listIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<IOValue[], any>>;
5175
5175
  /**
5176
5176
  * 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.
5177
5177
  * @summary Set Output Values
@@ -5181,7 +5181,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
5181
5181
  * @param {*} [options] Override http request option.
5182
5182
  * @throws {RequiredError}
5183
5183
  */
5184
- setOutputValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
5184
+ setOutputValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
5185
5185
  /**
5186
5186
  * <!-- 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.
5187
5187
  * @summary Stream Input/Output Values
@@ -5191,7 +5191,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
5191
5191
  * @param {*} [options] Override http request option.
5192
5192
  * @throws {RequiredError}
5193
5193
  */
5194
- streamIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<StreamIOValuesResponse, any>>;
5194
+ streamIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<StreamIOValuesResponse, any>>;
5195
5195
  /**
5196
5196
  * 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 ```
5197
5197
  * @summary Wait For
@@ -5201,7 +5201,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
5201
5201
  * @param {*} [options] Override http request option.
5202
5202
  * @throws {RequiredError}
5203
5203
  */
5204
- waitForIOEvent(cell: string, controller: string, waitForIOEventRequest: WaitForIOEventRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<boolean, any>>;
5204
+ waitForIOEvent(cell: string, controller: string, waitForIOEventRequest: WaitForIOEventRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<boolean, any>>;
5205
5205
  }
5206
5206
  /**
5207
5207
  * JoggingApi - axios parameter creator
@@ -5261,7 +5261,7 @@ declare class JoggingApi extends BaseAPI {
5261
5261
  * @param {*} [options] Override http request option.
5262
5262
  * @throws {RequiredError}
5263
5263
  */
5264
- executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ExecuteJoggingResponse, any>>;
5264
+ executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ExecuteJoggingResponse, any>>;
5265
5265
  }
5266
5266
  /**
5267
5267
  * KinematicsApi - axios parameter creator
@@ -5344,7 +5344,7 @@ declare class KinematicsApi extends BaseAPI {
5344
5344
  * @param {*} [options] Override http request option.
5345
5345
  * @throws {RequiredError}
5346
5346
  */
5347
- forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ForwardKinematicsResponse, any>>;
5347
+ forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ForwardKinematicsResponse, any>>;
5348
5348
  /**
5349
5349
  * Returns the reachable joint positions for a list of given poses.
5350
5350
  * @summary Inverse kinematics
@@ -5353,7 +5353,7 @@ declare class KinematicsApi extends BaseAPI {
5353
5353
  * @param {*} [options] Override http request option.
5354
5354
  * @throws {RequiredError}
5355
5355
  */
5356
- inverseKinematics(cell: string, inverseKinematicsRequest: InverseKinematicsRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<InverseKinematicsResponse, any>>;
5356
+ inverseKinematics(cell: string, inverseKinematicsRequest: InverseKinematicsRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<InverseKinematicsResponse, any>>;
5357
5357
  }
5358
5358
  /**
5359
5359
  * LicenseApi - axios parameter creator
@@ -5468,28 +5468,28 @@ declare class LicenseApi extends BaseAPI {
5468
5468
  * @param {*} [options] Override http request option.
5469
5469
  * @throws {RequiredError}
5470
5470
  */
5471
- activateLicense(activateLicenseRequest: ActivateLicenseRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<License, any>>;
5471
+ activateLicense(activateLicenseRequest: ActivateLicenseRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<License, any>>;
5472
5472
  /**
5473
5473
  * Deactivates active license.
5474
5474
  * @summary Deactivate license
5475
5475
  * @param {*} [options] Override http request option.
5476
5476
  * @throws {RequiredError}
5477
5477
  */
5478
- deactivateLicense(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
5478
+ deactivateLicense(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
5479
5479
  /**
5480
5480
  * Get information on the license used with the Wandelbots NOVA instance, e.g., licensed product, expiration date, license status.
5481
5481
  * @summary Get license
5482
5482
  * @param {*} [options] Override http request option.
5483
5483
  * @throws {RequiredError}
5484
5484
  */
5485
- getLicense(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<License, any>>;
5485
+ getLicense(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<License, any>>;
5486
5486
  /**
5487
5487
  * 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.
5488
5488
  * @summary Get license status
5489
5489
  * @param {*} [options] Override http request option.
5490
5490
  * @throws {RequiredError}
5491
5491
  */
5492
- getLicenseStatus(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<LicenseStatus, any>>;
5492
+ getLicenseStatus(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<LicenseStatus, any>>;
5493
5493
  }
5494
5494
  /**
5495
5495
  * MotionGroupApi - axios parameter creator
@@ -5619,7 +5619,7 @@ declare class MotionGroupApi extends BaseAPI {
5619
5619
  * @param {*} [options] Override http request option.
5620
5620
  * @throws {RequiredError}
5621
5621
  */
5622
- getCurrentMotionGroupState(cell: string, controller: string, motionGroup: string, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupState, any>>;
5622
+ getCurrentMotionGroupState(cell: string, controller: string, motionGroup: string, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<MotionGroupState, any>>;
5623
5623
  /**
5624
5624
  * 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.
5625
5625
  * @summary Description
@@ -5629,7 +5629,7 @@ declare class MotionGroupApi extends BaseAPI {
5629
5629
  * @param {*} [options] Override http request option.
5630
5630
  * @throws {RequiredError}
5631
5631
  */
5632
- getMotionGroupDescription(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupDescription, any>>;
5632
+ getMotionGroupDescription(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<MotionGroupDescription, any>>;
5633
5633
  /**
5634
5634
  * <!-- theme: success --> > Websocket endpoint Receive updates of the motion group state. The stream will be closed from the server if the controller is disconnected.
5635
5635
  * @summary Stream State
@@ -5641,7 +5641,7 @@ declare class MotionGroupApi extends BaseAPI {
5641
5641
  * @param {*} [options] Override http request option.
5642
5642
  * @throws {RequiredError}
5643
5643
  */
5644
- streamMotionGroupState(cell: string, controller: string, motionGroup: string, responseRate?: number, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupState, any>>;
5644
+ streamMotionGroupState(cell: string, controller: string, motionGroup: string, responseRate?: number, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<MotionGroupState, any>>;
5645
5645
  }
5646
5646
  /**
5647
5647
  * MotionGroupModelsApi - axios parameter creator
@@ -5718,7 +5718,7 @@ declare class MotionGroupModelsApi extends BaseAPI {
5718
5718
  * @param {*} [options] Override http request option.
5719
5719
  * @throws {RequiredError}
5720
5720
  */
5721
- getMotionGroupCollisionModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
5721
+ getMotionGroupCollisionModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
5722
5722
  [key: string]: Collider;
5723
5723
  }[], any>>;
5724
5724
  /**
@@ -5727,7 +5727,7 @@ declare class MotionGroupModelsApi extends BaseAPI {
5727
5727
  * @param {*} [options] Override http request option.
5728
5728
  * @throws {RequiredError}
5729
5729
  */
5730
- getMotionGroupModels(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
5730
+ getMotionGroupModels(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
5731
5731
  }
5732
5732
  /**
5733
5733
  * ProgramApi - axios parameter creator
@@ -5864,7 +5864,7 @@ declare class ProgramApi extends BaseAPI {
5864
5864
  * @param {*} [options] Override http request option.
5865
5865
  * @throws {RequiredError}
5866
5866
  */
5867
- getProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Program, any>>;
5867
+ getProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Program, any>>;
5868
5868
  /**
5869
5869
  * List details of all existing programs.
5870
5870
  * @summary List programs
@@ -5872,7 +5872,7 @@ declare class ProgramApi extends BaseAPI {
5872
5872
  * @param {*} [options] Override http request option.
5873
5873
  * @throws {RequiredError}
5874
5874
  */
5875
- listPrograms(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Program[], any>>;
5875
+ listPrograms(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Program[], any>>;
5876
5876
  /**
5877
5877
  * This endpoint starts a new program execution. The program will be executed asynchronously.
5878
5878
  * @summary Start the program
@@ -5882,7 +5882,7 @@ declare class ProgramApi extends BaseAPI {
5882
5882
  * @param {*} [options] Override http request option.
5883
5883
  * @throws {RequiredError}
5884
5884
  */
5885
- startProgram(cell: string, program: string, programStartRequest: ProgramStartRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProgramRun, any>>;
5885
+ startProgram(cell: string, program: string, programStartRequest: ProgramStartRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ProgramRun, any>>;
5886
5886
  /**
5887
5887
  * Stop a specific program run.
5888
5888
  * @summary Stop program run
@@ -5891,7 +5891,7 @@ declare class ProgramApi extends BaseAPI {
5891
5891
  * @param {*} [options] Override http request option.
5892
5892
  * @throws {RequiredError}
5893
5893
  */
5894
- stopProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
5894
+ stopProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
5895
5895
  }
5896
5896
  /**
5897
5897
  * StoreCollisionComponentsApi - axios parameter creator
@@ -6364,7 +6364,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6364
6364
  * @param {*} [options] Override http request option.
6365
6365
  * @throws {RequiredError}
6366
6366
  */
6367
- deleteStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
6367
+ deleteStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
6368
6368
  /**
6369
6369
  * Deletes the stored link chain. <!-- theme: danger --> > This will delete persistently stored data.
6370
6370
  * @summary Delete Link Chain
@@ -6373,7 +6373,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6373
6373
  * @param {*} [options] Override http request option.
6374
6374
  * @throws {RequiredError}
6375
6375
  */
6376
- deleteStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
6376
+ deleteStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
6377
6377
  /**
6378
6378
  * Deletes the stored tool. <!-- theme: danger --> > This will delete persistently stored data.
6379
6379
  * @summary Delete Tool
@@ -6382,7 +6382,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6382
6382
  * @param {*} [options] Override http request option.
6383
6383
  * @throws {RequiredError}
6384
6384
  */
6385
- deleteStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
6385
+ deleteStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
6386
6386
  /**
6387
6387
  * Returns the collider.
6388
6388
  * @summary Get Collider
@@ -6391,7 +6391,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6391
6391
  * @param {*} [options] Override http request option.
6392
6392
  * @throws {RequiredError}
6393
6393
  */
6394
- getStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Collider, any>>;
6394
+ getStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Collider, any>>;
6395
6395
  /**
6396
6396
  * Returns the collision link chain.
6397
6397
  * @summary Get Link Chain
@@ -6400,7 +6400,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6400
6400
  * @param {*} [options] Override http request option.
6401
6401
  * @throws {RequiredError}
6402
6402
  */
6403
- getStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6403
+ getStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6404
6404
  [key: string]: Collider;
6405
6405
  }[], any>>;
6406
6406
  /**
@@ -6411,7 +6411,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6411
6411
  * @param {*} [options] Override http request option.
6412
6412
  * @throws {RequiredError}
6413
6413
  */
6414
- getStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6414
+ getStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6415
6415
  [key: string]: Collider;
6416
6416
  }, any>>;
6417
6417
  /**
@@ -6421,7 +6421,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6421
6421
  * @param {*} [options] Override http request option.
6422
6422
  * @throws {RequiredError}
6423
6423
  */
6424
- listCollisionLinkChains(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6424
+ listCollisionLinkChains(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6425
6425
  [key: string]: {
6426
6426
  [key: string]: Collider;
6427
6427
  }[];
@@ -6433,7 +6433,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6433
6433
  * @param {*} [options] Override http request option.
6434
6434
  * @throws {RequiredError}
6435
6435
  */
6436
- listCollisionLinkChainsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
6436
+ listCollisionLinkChainsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
6437
6437
  /**
6438
6438
  * Returns all stored colliders.
6439
6439
  * @summary List Colliders
@@ -6441,7 +6441,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6441
6441
  * @param {*} [options] Override http request option.
6442
6442
  * @throws {RequiredError}
6443
6443
  */
6444
- listStoredColliders(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6444
+ listStoredColliders(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6445
6445
  [key: string]: Collider;
6446
6446
  }, any>>;
6447
6447
  /**
@@ -6451,7 +6451,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6451
6451
  * @param {*} [options] Override http request option.
6452
6452
  * @throws {RequiredError}
6453
6453
  */
6454
- listStoredCollidersKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
6454
+ listStoredCollidersKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
6455
6455
  /**
6456
6456
  * Returns the list of stored tools.
6457
6457
  * @summary List Tools
@@ -6459,7 +6459,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6459
6459
  * @param {*} [options] Override http request option.
6460
6460
  * @throws {RequiredError}
6461
6461
  */
6462
- listStoredCollisionTools(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6462
+ listStoredCollisionTools(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6463
6463
  [key: string]: {
6464
6464
  [key: string]: Collider;
6465
6465
  };
@@ -6471,7 +6471,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6471
6471
  * @param {*} [options] Override http request option.
6472
6472
  * @throws {RequiredError}
6473
6473
  */
6474
- listStoredCollisionToolsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
6474
+ listStoredCollisionToolsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
6475
6475
  /**
6476
6476
  * Stores collider. - If the collider does not exist, it will be created. - If the collider exists, it will be updated.
6477
6477
  * @summary Store Collider
@@ -6481,7 +6481,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6481
6481
  * @param {*} [options] Override http request option.
6482
6482
  * @throws {RequiredError}
6483
6483
  */
6484
- storeCollider(cell: string, collider: string, collider2: Collider, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Collider, any>>;
6484
+ storeCollider(cell: string, collider: string, collider2: Collider, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Collider, any>>;
6485
6485
  /**
6486
6486
  * Stores link chain. - If the link chain does not exist, it will be created. - If the link chain exists, it will be updated.
6487
6487
  * @summary Store Link Chain
@@ -6493,7 +6493,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6493
6493
  */
6494
6494
  storeCollisionLinkChain(cell: string, linkChain: string, collider: Array<{
6495
6495
  [key: string]: Collider;
6496
- }>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6496
+ }>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6497
6497
  [key: string]: Collider;
6498
6498
  }[], any>>;
6499
6499
  /**
@@ -6507,7 +6507,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6507
6507
  */
6508
6508
  storeCollisionTool(cell: string, tool: string, requestBody: {
6509
6509
  [key: string]: Collider;
6510
- }, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6510
+ }, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6511
6511
  [key: string]: Collider;
6512
6512
  }, any>>;
6513
6513
  }
@@ -6674,7 +6674,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
6674
6674
  * @param {*} [options] Override http request option.
6675
6675
  * @throws {RequiredError}
6676
6676
  */
6677
- deleteStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
6677
+ deleteStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
6678
6678
  /**
6679
6679
  * Returns the stored collision setup.
6680
6680
  * @summary Get Collision Setup
@@ -6683,7 +6683,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
6683
6683
  * @param {*} [options] Override http request option.
6684
6684
  * @throws {RequiredError}
6685
6685
  */
6686
- getStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CollisionSetup, any>>;
6686
+ getStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CollisionSetup, any>>;
6687
6687
  /**
6688
6688
  * Returns a list of stored collision setups.
6689
6689
  * @summary List Collision Setups
@@ -6691,7 +6691,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
6691
6691
  * @param {*} [options] Override http request option.
6692
6692
  * @throws {RequiredError}
6693
6693
  */
6694
- listStoredCollisionSetups(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6694
+ listStoredCollisionSetups(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6695
6695
  [key: string]: CollisionSetup;
6696
6696
  }, any>>;
6697
6697
  /**
@@ -6701,7 +6701,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
6701
6701
  * @param {*} [options] Override http request option.
6702
6702
  * @throws {RequiredError}
6703
6703
  */
6704
- listStoredCollisionSetupsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
6704
+ listStoredCollisionSetupsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
6705
6705
  /**
6706
6706
  * Stores collision setup. - If the collision setup does not exist, it will be created. - If the collision setup exists, it will be updated.
6707
6707
  * @summary Store Collision Setup
@@ -6711,7 +6711,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
6711
6711
  * @param {*} [options] Override http request option.
6712
6712
  * @throws {RequiredError}
6713
6713
  */
6714
- storeCollisionSetup(cell: string, setup: string, collisionSetup: CollisionSetup, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CollisionSetup, any>>;
6714
+ storeCollisionSetup(cell: string, setup: string, collisionSetup: CollisionSetup, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CollisionSetup, any>>;
6715
6715
  }
6716
6716
  /**
6717
6717
  * StoreObjectApi - axios parameter creator
@@ -6907,7 +6907,7 @@ declare class StoreObjectApi extends BaseAPI {
6907
6907
  * @param {*} [options] Override http request option.
6908
6908
  * @throws {RequiredError}
6909
6909
  */
6910
- clearAllObjects(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
6910
+ clearAllObjects(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
6911
6911
  /**
6912
6912
  * Delete an object <!-- theme: danger --> > This will delete persistently stored data.
6913
6913
  * @summary Delete Object
@@ -6916,7 +6916,7 @@ declare class StoreObjectApi extends BaseAPI {
6916
6916
  * @param {*} [options] Override http request option.
6917
6917
  * @throws {RequiredError}
6918
6918
  */
6919
- deleteObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
6919
+ deleteObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
6920
6920
  /**
6921
6921
  * Returns content and metadata of a stored object.
6922
6922
  * @summary Get Object
@@ -6925,7 +6925,7 @@ declare class StoreObjectApi extends BaseAPI {
6925
6925
  * @param {*} [options] Override http request option.
6926
6926
  * @throws {RequiredError}
6927
6927
  */
6928
- getObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<File, any>>;
6928
+ getObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<File, any>>;
6929
6929
  /**
6930
6930
  * Returns metadata. Object content is not returned.
6931
6931
  * @summary Get Object Metadata
@@ -6934,7 +6934,7 @@ declare class StoreObjectApi extends BaseAPI {
6934
6934
  * @param {*} [options] Override http request option.
6935
6935
  * @throws {RequiredError}
6936
6936
  */
6937
- getObjectMetadata(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
6937
+ getObjectMetadata(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
6938
6938
  /**
6939
6939
  * List the keys for all objects.
6940
6940
  * @summary List all Object Keys
@@ -6942,7 +6942,7 @@ declare class StoreObjectApi extends BaseAPI {
6942
6942
  * @param {*} [options] Override http request option.
6943
6943
  * @throws {RequiredError}
6944
6944
  */
6945
- listAllObjectKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
6945
+ listAllObjectKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
6946
6946
  /**
6947
6947
  * 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.
6948
6948
  * @summary Store Object
@@ -6955,7 +6955,7 @@ declare class StoreObjectApi extends BaseAPI {
6955
6955
  */
6956
6956
  storeObject(cell: string, key: string, xMetadata?: {
6957
6957
  [key: string]: string;
6958
- }, anyValue?: any, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
6958
+ }, anyValue?: any, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
6959
6959
  }
6960
6960
  /**
6961
6961
  * SystemApi - axios parameter creator
@@ -7202,7 +7202,7 @@ declare class SystemApi extends BaseAPI {
7202
7202
  */
7203
7203
  backupConfiguration(resources?: Array<string>, metadata?: {
7204
7204
  [key: string]: string;
7205
- }, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<File, any>>;
7205
+ }, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<File, any>>;
7206
7206
  /**
7207
7207
  * Check if a more recent Wandelbots NOVA Version is available.
7208
7208
  * @summary Check update
@@ -7210,7 +7210,7 @@ declare class SystemApi extends BaseAPI {
7210
7210
  * @param {*} [options] Override http request option.
7211
7211
  * @throws {RequiredError}
7212
7212
  */
7213
- checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string, any>>;
7213
+ checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string, any>>;
7214
7214
  /**
7215
7215
  * 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.
7216
7216
  * @summary Retrieve Backup Status
@@ -7218,35 +7218,35 @@ declare class SystemApi extends BaseAPI {
7218
7218
  * @param {*} [options] Override http request option.
7219
7219
  * @throws {RequiredError}
7220
7220
  */
7221
- getConfigurationBackupStatus(operationId: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ConfigurationArchiveStatus, any>>;
7221
+ getConfigurationBackupStatus(operationId: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ConfigurationArchiveStatus, any>>;
7222
7222
  /**
7223
7223
  * 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.
7224
7224
  * @summary Download Diagnosis Package
7225
7225
  * @param {*} [options] Override http request option.
7226
7226
  * @throws {RequiredError}
7227
7227
  */
7228
- getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<File, any>>;
7228
+ getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<File, any>>;
7229
7229
  /**
7230
7230
  * Get the status of all system services.
7231
7231
  * @summary Wandelbots NOVA status
7232
7232
  * @param {*} [options] Override http request option.
7233
7233
  * @throws {RequiredError}
7234
7234
  */
7235
- getSystemStatus(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ServiceStatus[], any>>;
7235
+ getSystemStatus(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ServiceStatus[], any>>;
7236
7236
  /**
7237
7237
  * Get the current Wandelbots NOVA version.
7238
7238
  * @summary Wandelbots NOVA Version
7239
7239
  * @param {*} [options] Override http request option.
7240
7240
  * @throws {RequiredError}
7241
7241
  */
7242
- getSystemVersion(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string, any>>;
7242
+ getSystemVersion(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string, any>>;
7243
7243
  /**
7244
7244
  * Retrieves a list of all available configuration resources for backup purposes.
7245
7245
  * @summary List Configuration Resources
7246
7246
  * @param {*} [options] Override http request option.
7247
7247
  * @throws {RequiredError}
7248
7248
  */
7249
- listConfigurationResources(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ConfigurationResource[], any>>;
7249
+ listConfigurationResources(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ConfigurationResource[], any>>;
7250
7250
  /**
7251
7251
  * Restores a previously backed up configuration.
7252
7252
  * @summary Restore Configuration Backup
@@ -7255,7 +7255,7 @@ declare class SystemApi extends BaseAPI {
7255
7255
  * @param {*} [options] Override http request option.
7256
7256
  * @throws {RequiredError}
7257
7257
  */
7258
- restoreConfiguration(resources: Array<string>, body: File, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
7258
+ restoreConfiguration(resources: Array<string>, body: File, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
7259
7259
  /**
7260
7260
  * 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.
7261
7261
  * @summary Update Wandelbots NOVA version
@@ -7263,7 +7263,7 @@ declare class SystemApi extends BaseAPI {
7263
7263
  * @param {*} [options] Override http request option.
7264
7264
  * @throws {RequiredError}
7265
7265
  */
7266
- updateNovaVersion(updateNovaVersionRequest: UpdateNovaVersionRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
7266
+ updateNovaVersion(updateNovaVersionRequest: UpdateNovaVersionRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
7267
7267
  }
7268
7268
  /**
7269
7269
  * TrajectoryCachingApi - axios parameter creator
@@ -7437,7 +7437,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
7437
7437
  * @param {*} [options] Override http request option.
7438
7438
  * @throws {RequiredError}
7439
7439
  */
7440
- addTrajectory(cell: string, controller: string, addTrajectoryRequest: AddTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<AddTrajectoryResponse, any>>;
7440
+ addTrajectory(cell: string, controller: string, addTrajectoryRequest: AddTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<AddTrajectoryResponse, any>>;
7441
7441
  /**
7442
7442
  * Clear the trajectory cache.
7443
7443
  * @summary Clear Trajectories
@@ -7446,7 +7446,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
7446
7446
  * @param {*} [options] Override http request option.
7447
7447
  * @throws {RequiredError}
7448
7448
  */
7449
- clearTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
7449
+ clearTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
7450
7450
  /**
7451
7451
  * 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.
7452
7452
  * @summary Delete Trajectory
@@ -7456,7 +7456,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
7456
7456
  * @param {*} [options] Override http request option.
7457
7457
  * @throws {RequiredError}
7458
7458
  */
7459
- deleteTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
7459
+ deleteTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
7460
7460
  /**
7461
7461
  * Get a previously created trajectory from cache. Use [listTrajectories](listTrajectories) to list all cached trajectories.
7462
7462
  * @summary Get Trajectory
@@ -7466,7 +7466,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
7466
7466
  * @param {*} [options] Override http request option.
7467
7467
  * @throws {RequiredError}
7468
7468
  */
7469
- getTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<GetTrajectoryResponse, any>>;
7469
+ getTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<GetTrajectoryResponse, any>>;
7470
7470
  /**
7471
7471
  * 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.
7472
7472
  * @summary List Trajectories
@@ -7475,7 +7475,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
7475
7475
  * @param {*} [options] Override http request option.
7476
7476
  * @throws {RequiredError}
7477
7477
  */
7478
- listTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ListTrajectoriesResponse, any>>;
7478
+ listTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ListTrajectoriesResponse, any>>;
7479
7479
  }
7480
7480
  /**
7481
7481
  * TrajectoryExecutionApi - axios parameter creator
@@ -7535,7 +7535,7 @@ declare class TrajectoryExecutionApi extends BaseAPI {
7535
7535
  * @param {*} [options] Override http request option.
7536
7536
  * @throws {RequiredError}
7537
7537
  */
7538
- executeTrajectory(cell: string, controller: string, executeTrajectoryRequest: ExecuteTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ExecuteTrajectoryResponse, any>>;
7538
+ executeTrajectory(cell: string, controller: string, executeTrajectoryRequest: ExecuteTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ExecuteTrajectoryResponse, any>>;
7539
7539
  }
7540
7540
  /**
7541
7541
  * TrajectoryPlanningApi - axios parameter creator
@@ -7618,7 +7618,7 @@ declare class TrajectoryPlanningApi extends BaseAPI {
7618
7618
  * @param {*} [options] Override http request option.
7619
7619
  * @throws {RequiredError}
7620
7620
  */
7621
- planCollisionFree(cell: string, planCollisionFreeRequest: PlanCollisionFreeRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<PlanCollisionFreeResponse, any>>;
7621
+ planCollisionFree(cell: string, planCollisionFreeRequest: PlanCollisionFreeRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<PlanCollisionFreeResponse, any>>;
7622
7622
  /**
7623
7623
  * 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.
7624
7624
  * @summary Plan Trajectory
@@ -7627,7 +7627,7 @@ declare class TrajectoryPlanningApi extends BaseAPI {
7627
7627
  * @param {*} [options] Override http request option.
7628
7628
  * @throws {RequiredError}
7629
7629
  */
7630
- planTrajectory(cell: string, planTrajectoryRequest: PlanTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<PlanTrajectoryResponse, any>>;
7630
+ planTrajectory(cell: string, planTrajectoryRequest: PlanTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<PlanTrajectoryResponse, any>>;
7631
7631
  }
7632
7632
  /**
7633
7633
  * VersionApi - axios parameter creator
@@ -7675,7 +7675,7 @@ declare class VersionApi extends BaseAPI {
7675
7675
  * @param {*} [options] Override http request option.
7676
7676
  * @throws {RequiredError}
7677
7677
  */
7678
- getApiVersion(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ApiVersion, any>>;
7678
+ getApiVersion(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ApiVersion, any>>;
7679
7679
  }
7680
7680
  /**
7681
7681
  * VirtualControllerApi - axios parameter creator
@@ -8165,7 +8165,7 @@ declare class VirtualControllerApi extends BaseAPI {
8165
8165
  * @param {*} [options] Override http request option.
8166
8166
  * @throws {RequiredError}
8167
8167
  */
8168
- addVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, coordinateSystemData: CoordinateSystemData, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8168
+ addVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, coordinateSystemData: CoordinateSystemData, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8169
8169
  /**
8170
8170
  * 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.
8171
8171
  * @summary Add TCP
@@ -8177,7 +8177,7 @@ declare class VirtualControllerApi extends BaseAPI {
8177
8177
  * @param {*} [options] Override http request option.
8178
8178
  * @throws {RequiredError}
8179
8179
  */
8180
- addVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, robotTcpData: RobotTcpData, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8180
+ addVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, robotTcpData: RobotTcpData, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8181
8181
  /**
8182
8182
  * 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.
8183
8183
  * @summary Delete Coordinate System
@@ -8188,7 +8188,7 @@ declare class VirtualControllerApi extends BaseAPI {
8188
8188
  * @param {*} [options] Override http request option.
8189
8189
  * @throws {RequiredError}
8190
8190
  */
8191
- deleteVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8191
+ deleteVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8192
8192
  /**
8193
8193
  * 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.
8194
8194
  * @summary Remove TCP
@@ -8199,7 +8199,7 @@ declare class VirtualControllerApi extends BaseAPI {
8199
8199
  * @param {*} [options] Override http request option.
8200
8200
  * @throws {RequiredError}
8201
8201
  */
8202
- deleteVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8202
+ deleteVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8203
8203
  /**
8204
8204
  * 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.
8205
8205
  * @summary Get Emergency Stop State
@@ -8208,7 +8208,7 @@ declare class VirtualControllerApi extends BaseAPI {
8208
8208
  * @param {*} [options] Override http request option.
8209
8209
  * @throws {RequiredError}
8210
8210
  */
8211
- getEmergencyStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Flag, any>>;
8211
+ getEmergencyStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Flag, any>>;
8212
8212
  /**
8213
8213
  * Get the current motion group state which provides values for the joints\' position, velocity and acceleration.
8214
8214
  * @summary Get Motion Group State
@@ -8218,7 +8218,7 @@ declare class VirtualControllerApi extends BaseAPI {
8218
8218
  * @param {*} [options] Override http request option.
8219
8219
  * @throws {RequiredError}
8220
8220
  */
8221
- getMotionGroupState(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupJoints, any>>;
8221
+ getMotionGroupState(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<MotionGroupJoints, any>>;
8222
8222
  /**
8223
8223
  * Gets information on the motion group.
8224
8224
  * @summary Motion Group Description
@@ -8227,7 +8227,7 @@ declare class VirtualControllerApi extends BaseAPI {
8227
8227
  * @param {*} [options] Override http request option.
8228
8228
  * @throws {RequiredError}
8229
8229
  */
8230
- getMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupInfo[], any>>;
8230
+ getMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<MotionGroupInfo[], any>>;
8231
8231
  /**
8232
8232
  * 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.
8233
8233
  * @summary Get Operation Mode
@@ -8236,7 +8236,7 @@ declare class VirtualControllerApi extends BaseAPI {
8236
8236
  * @param {*} [options] Override http request option.
8237
8237
  * @throws {RequiredError}
8238
8238
  */
8239
- getOperationMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<OpMode, any>>;
8239
+ getOperationMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<OpMode, any>>;
8240
8240
  /**
8241
8241
  * Gets motion group mounting. The motion group is based on the origin of the returned coordinate system.
8242
8242
  * @summary Get Mounting
@@ -8246,7 +8246,7 @@ declare class VirtualControllerApi extends BaseAPI {
8246
8246
  * @param {*} [options] Override http request option.
8247
8247
  * @throws {RequiredError}
8248
8248
  */
8249
- getVirtualControllerMounting(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem, any>>;
8249
+ getVirtualControllerMounting(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CoordinateSystem, any>>;
8250
8250
  /**
8251
8251
  * Lists all coordinate systems on the robot controller.
8252
8252
  * @summary List Coordinate Systems
@@ -8255,7 +8255,7 @@ declare class VirtualControllerApi extends BaseAPI {
8255
8255
  * @param {*} [options] Override http request option.
8256
8256
  * @throws {RequiredError}
8257
8257
  */
8258
- listVirtualControllerCoordinateSystems(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem[], any>>;
8258
+ listVirtualControllerCoordinateSystems(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CoordinateSystem[], any>>;
8259
8259
  /**
8260
8260
  * Lists TCPs of the motion group. An empty TCP list is valid, e.g., for external axes.
8261
8261
  * @summary List TCPs
@@ -8265,7 +8265,7 @@ declare class VirtualControllerApi extends BaseAPI {
8265
8265
  * @param {*} [options] Override http request option.
8266
8266
  * @throws {RequiredError}
8267
8267
  */
8268
- listVirtualControllerTcps(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotTcp[], any>>;
8268
+ listVirtualControllerTcps(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<RobotTcp[], any>>;
8269
8269
  /**
8270
8270
  * 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.
8271
8271
  * @summary Push or Release Emergency Stop
@@ -8275,7 +8275,7 @@ declare class VirtualControllerApi extends BaseAPI {
8275
8275
  * @param {*} [options] Override http request option.
8276
8276
  * @throws {RequiredError}
8277
8277
  */
8278
- setEmergencyStop(cell: string, controller: string, active?: boolean, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8278
+ setEmergencyStop(cell: string, controller: string, active?: boolean, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8279
8279
  /**
8280
8280
  * 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.
8281
8281
  * @summary Set Motion Group State
@@ -8286,7 +8286,7 @@ declare class VirtualControllerApi extends BaseAPI {
8286
8286
  * @param {*} [options] Override http request option.
8287
8287
  * @throws {RequiredError}
8288
8288
  */
8289
- setMotionGroupState(cell: string, controller: string, motionGroup: string, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8289
+ setMotionGroupState(cell: string, controller: string, motionGroup: string, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8290
8290
  /**
8291
8291
  * 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.
8292
8292
  * @summary Set Operation Mode
@@ -8296,7 +8296,7 @@ declare class VirtualControllerApi extends BaseAPI {
8296
8296
  * @param {*} [options] Override http request option.
8297
8297
  * @throws {RequiredError}
8298
8298
  */
8299
- setOperationMode(cell: string, controller: string, mode: OperationMode, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8299
+ setOperationMode(cell: string, controller: string, mode: OperationMode, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8300
8300
  /**
8301
8301
  * 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.
8302
8302
  * @summary Set Mounting
@@ -8307,7 +8307,7 @@ declare class VirtualControllerApi extends BaseAPI {
8307
8307
  * @param {*} [options] Override http request option.
8308
8308
  * @throws {RequiredError}
8309
8309
  */
8310
- setVirtualControllerMounting(cell: string, controller: string, motionGroup: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem, any>>;
8310
+ setVirtualControllerMounting(cell: string, controller: string, motionGroup: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CoordinateSystem, any>>;
8311
8311
  }
8312
8312
  /**
8313
8313
  * VirtualControllerBehaviorApi - axios parameter creator
@@ -8451,7 +8451,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
8451
8451
  * @param {*} [options] Override http request option.
8452
8452
  * @throws {RequiredError}
8453
8453
  */
8454
- externalJointsStream(cell: string, controller: string, externalJointStreamRequest: ExternalJointStreamRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ExternalJointStreamDatapoint[], any>>;
8454
+ externalJointsStream(cell: string, controller: string, externalJointStreamRequest: ExternalJointStreamRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ExternalJointStreamDatapoint[], any>>;
8455
8455
  /**
8456
8456
  * Get the cycle time of controller communication in [ms].
8457
8457
  * @summary Get Cycle Time
@@ -8460,7 +8460,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
8460
8460
  * @param {*} [options] Override http request option.
8461
8461
  * @throws {RequiredError}
8462
8462
  */
8463
- getCycleTime(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CycleTime, any>>;
8463
+ getCycleTime(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CycleTime, any>>;
8464
8464
  /**
8465
8465
  * Get the current virtual controller behavior. See [setVirtualControllerBehavior](setVirtualControllerBehavior) and the body for details.
8466
8466
  * @summary Get Behavior
@@ -8469,7 +8469,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
8469
8469
  * @param {*} [options] Override http request option.
8470
8470
  * @throws {RequiredError}
8471
8471
  */
8472
- getVirtualControllerBehavior(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Behavior, any>>;
8472
+ getVirtualControllerBehavior(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Behavior, any>>;
8473
8473
  /**
8474
8474
  * Set virtual controller behavior. See query parameters for details.
8475
8475
  * @summary Set Behavior
@@ -8479,7 +8479,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
8479
8479
  * @param {*} [options] Override http request option.
8480
8480
  * @throws {RequiredError}
8481
8481
  */
8482
- setVirtualControllerBehavior(cell: string, controller: string, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8482
+ setVirtualControllerBehavior(cell: string, controller: string, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8483
8483
  }
8484
8484
  /**
8485
8485
  * VirtualControllerInputsOutputsApi - axios parameter creator
@@ -8608,7 +8608,7 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
8608
8608
  * @param {*} [options] Override http request option.
8609
8609
  * @throws {RequiredError}
8610
8610
  */
8611
- listIOs(cell: string, controller: string, ios: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IOValue[], any>>;
8611
+ listIOs(cell: string, controller: string, ios: Array<string>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<IOValue[], any>>;
8612
8612
  /**
8613
8613
  * 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.
8614
8614
  * @summary List Descriptions
@@ -8621,7 +8621,7 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
8621
8621
  * @param {*} [options] Override http request option.
8622
8622
  * @throws {RequiredError}
8623
8623
  */
8624
- listVirtualControllerIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IODescription[], any>>;
8624
+ listVirtualControllerIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<IODescription[], any>>;
8625
8625
  /**
8626
8626
  * Sets a list of values of a virtual controller inputs/outputs.
8627
8627
  * @summary Set Input/Ouput Values
@@ -8631,7 +8631,7 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
8631
8631
  * @param {*} [options] Override http request option.
8632
8632
  * @throws {RequiredError}
8633
8633
  */
8634
- setIOValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8634
+ setIOValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8635
8635
  }
8636
8636
  //#endregion
8637
8637
  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 };