@wandelbots/nova-api 25.11.0-dev.22 → 25.11.0-dev.24

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
@@ -3518,7 +3518,7 @@ declare class ApplicationApi extends BaseAPI {
3518
3518
  * @param {*} [options] Override http request option.
3519
3519
  * @throws {RequiredError}
3520
3520
  */
3521
- addApp(cell: string, app: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
3521
+ addApp(cell: string, app: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
3522
3522
  /**
3523
3523
  * Delete all GUI applications from the cell.
3524
3524
  * @summary Clear Applications
@@ -3527,7 +3527,7 @@ declare class ApplicationApi extends BaseAPI {
3527
3527
  * @param {*} [options] Override http request option.
3528
3528
  * @throws {RequiredError}
3529
3529
  */
3530
- clearApps(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
3530
+ clearApps(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
3531
3531
  /**
3532
3532
  * Delete a GUI application from the cell.
3533
3533
  * @summary Delete Application
@@ -3537,7 +3537,7 @@ declare class ApplicationApi extends BaseAPI {
3537
3537
  * @param {*} [options] Override http request option.
3538
3538
  * @throws {RequiredError}
3539
3539
  */
3540
- deleteApp(cell: string, app: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
3540
+ deleteApp(cell: string, app: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
3541
3541
  /**
3542
3542
  * 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).
3543
3543
  * @summary Configuration
@@ -3546,7 +3546,7 @@ declare class ApplicationApi extends BaseAPI {
3546
3546
  * @param {*} [options] Override http request option.
3547
3547
  * @throws {RequiredError}
3548
3548
  */
3549
- getApp(cell: string, app: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<App, any>>;
3549
+ getApp(cell: string, app: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<App, any>>;
3550
3550
  /**
3551
3551
  * 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.
3552
3552
  * @summary List Applications
@@ -3554,7 +3554,7 @@ declare class ApplicationApi extends BaseAPI {
3554
3554
  * @param {*} [options] Override http request option.
3555
3555
  * @throws {RequiredError}
3556
3556
  */
3557
- listApps(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
3557
+ listApps(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
3558
3558
  /**
3559
3559
  * Update the configuration of a GUI application in the cell.
3560
3560
  * @summary Update Configuration
@@ -3565,7 +3565,7 @@ declare class ApplicationApi extends BaseAPI {
3565
3565
  * @param {*} [options] Override http request option.
3566
3566
  * @throws {RequiredError}
3567
3567
  */
3568
- updateApp(cell: string, app: string, app2: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
3568
+ updateApp(cell: string, app: string, app2: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
3569
3569
  }
3570
3570
  /**
3571
3571
  * BUSInputsOutputsApi - axios parameter creator
@@ -4021,7 +4021,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4021
4021
  * @param {*} [options] Override http request option.
4022
4022
  * @throws {RequiredError}
4023
4023
  */
4024
- addBusIOService(cell: string, busIOType: BusIOType, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4024
+ addBusIOService(cell: string, busIOType: BusIOType, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4025
4025
  /**
4026
4026
  * 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).
4027
4027
  * @summary Add MODBUS Input/Output
@@ -4031,7 +4031,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4031
4031
  * @param {*} [options] Override http request option.
4032
4032
  * @throws {RequiredError}
4033
4033
  */
4034
- addModbusIO(cell: string, io: string, modbusIOData: ModbusIOData, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4034
+ addModbusIO(cell: string, io: string, modbusIOData: ModbusIOData, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4035
4035
  /**
4036
4036
  * 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).
4037
4037
  * @summary Add PROFINET Input/Output
@@ -4041,7 +4041,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4041
4041
  * @param {*} [options] Override http request option.
4042
4042
  * @throws {RequiredError}
4043
4043
  */
4044
- addProfinetIO(cell: string, io: string, profinetIOData: ProfinetIOData, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4044
+ addProfinetIO(cell: string, io: string, profinetIOData: ProfinetIOData, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4045
4045
  /**
4046
4046
  * Remove the BUS inputs/outputs service from the cell.
4047
4047
  * @summary Clear Service
@@ -4050,7 +4050,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4050
4050
  * @param {*} [options] Override http request option.
4051
4051
  * @throws {RequiredError}
4052
4052
  */
4053
- clearBusIOService(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4053
+ clearBusIOService(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4054
4054
  /**
4055
4055
  * Removes an input/output variable configuration from the MODBUS device, e.g., NOVA\'s MODBUS service.
4056
4056
  * @summary Remove MODBUS Input/Ouptut
@@ -4059,7 +4059,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4059
4059
  * @param {*} [options] Override http request option.
4060
4060
  * @throws {RequiredError}
4061
4061
  */
4062
- deleteModbusIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4062
+ deleteModbusIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4063
4063
  /**
4064
4064
  * Removes an input/output variable configuration from the PROFINET device, e.g., NOVA\'s PROFINET service.
4065
4065
  * @summary Remove PROFINET Input/Ouptut
@@ -4068,7 +4068,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4068
4068
  * @param {*} [options] Override http request option.
4069
4069
  * @throws {RequiredError}
4070
4070
  */
4071
- deleteProfinetIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4071
+ deleteProfinetIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4072
4072
  /**
4073
4073
  * Get deployed BUS inputs/outputs service.
4074
4074
  * @summary Get Service
@@ -4076,7 +4076,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4076
4076
  * @param {*} [options] Override http request option.
4077
4077
  * @throws {RequiredError}
4078
4078
  */
4079
- getBusIOService(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<BusIOType, any>>;
4079
+ getBusIOService(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<BusIOType, any>>;
4080
4080
  /**
4081
4081
  * Get the current state of the BUS Inputs/Outputs service.
4082
4082
  * @summary State
@@ -4084,7 +4084,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4084
4084
  * @param {*} [options] Override http request option.
4085
4085
  * @throws {RequiredError}
4086
4086
  */
4087
- getBusIOState(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<BusIOsState, any>>;
4087
+ getBusIOState(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<BusIOsState, any>>;
4088
4088
  /**
4089
4089
  * 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).
4090
4090
  * @summary Get Input/Output Values
@@ -4093,7 +4093,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4093
4093
  * @param {*} [options] Override http request option.
4094
4094
  * @throws {RequiredError}
4095
4095
  */
4096
- getBusIOValues(cell: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IOValue[], any>>;
4096
+ getBusIOValues(cell: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<IOValue[], any>>;
4097
4097
  /**
4098
4098
  * Get description of NOVA as a PROFINET device.
4099
4099
  * @summary Get PROFINET Description
@@ -4101,7 +4101,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4101
4101
  * @param {*} [options] Override http request option.
4102
4102
  * @throws {RequiredError}
4103
4103
  */
4104
- getProfinetDescription(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProfinetDescription, any>>;
4104
+ getProfinetDescription(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ProfinetDescription, any>>;
4105
4105
  /**
4106
4106
  * 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.
4107
4107
  * @summary PROFINET Inputs/Outputs to File
@@ -4111,7 +4111,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4111
4111
  * @param {*} [options] Override http request option.
4112
4112
  * @throws {RequiredError}
4113
4113
  */
4114
- getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string, any>>;
4114
+ getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string, any>>;
4115
4115
  /**
4116
4116
  * 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.
4117
4117
  * @summary List Descriptions
@@ -4119,7 +4119,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4119
4119
  * @param {*} [options] Override http request option.
4120
4120
  * @throws {RequiredError}
4121
4121
  */
4122
- listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<BusIODescription[], any>>;
4122
+ listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<BusIODescription[], any>>;
4123
4123
  /**
4124
4124
  * 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).
4125
4125
  * @summary List MODBUS 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
- listModbusIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ModbusIO[], any>>;
4130
+ listModbusIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ModbusIO[], any>>;
4131
4131
  /**
4132
4132
  * 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.
4133
4133
  * @summary List PROFINET Input/Output Configuration
@@ -4135,7 +4135,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4135
4135
  * @param {*} [options] Override http request option.
4136
4136
  * @throws {RequiredError}
4137
4137
  */
4138
- listProfinetIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProfinetIO[], any>>;
4138
+ listProfinetIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ProfinetIO[], any>>;
4139
4139
  /**
4140
4140
  * 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.
4141
4141
  * @summary Set Output Values
@@ -4144,7 +4144,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4144
4144
  * @param {*} [options] Override http request option.
4145
4145
  * @throws {RequiredError}
4146
4146
  */
4147
- setBusIOValues(cell: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4147
+ setBusIOValues(cell: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4148
4148
  /**
4149
4149
  * 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.
4150
4150
  * @summary Set PROFINET Inputs/Outputs from File
@@ -4153,7 +4153,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4153
4153
  * @param {*} [options] Override http request option.
4154
4154
  * @throws {RequiredError}
4155
4155
  */
4156
- setProfinetIOsFromFile(cell: string, profinetInputOutputConfig: ProfinetInputOutputConfig, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4156
+ setProfinetIOsFromFile(cell: string, profinetInputOutputConfig: ProfinetInputOutputConfig, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4157
4157
  }
4158
4158
  /**
4159
4159
  * CellApi - axios parameter creator
@@ -4362,7 +4362,7 @@ declare class CellApi extends BaseAPI {
4362
4362
  * @param {*} [options] Override http request option.
4363
4363
  * @throws {RequiredError}
4364
4364
  */
4365
- deleteCell(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4365
+ deleteCell(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4366
4366
  /**
4367
4367
  * 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.
4368
4368
  * @summary Add Cell
@@ -4371,7 +4371,7 @@ declare class CellApi extends BaseAPI {
4371
4371
  * @param {*} [options] Override http request option.
4372
4372
  * @throws {RequiredError}
4373
4373
  */
4374
- deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4374
+ deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4375
4375
  /**
4376
4376
  * List all cell resources.
4377
4377
  * @summary Configuration
@@ -4379,7 +4379,7 @@ declare class CellApi extends BaseAPI {
4379
4379
  * @param {*} [options] Override http request option.
4380
4380
  * @throws {RequiredError}
4381
4381
  */
4382
- getCell(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Cell, any>>;
4382
+ getCell(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Cell, any>>;
4383
4383
  /**
4384
4384
  * List the status of all cell resources.
4385
4385
  * @summary Service Status
@@ -4387,14 +4387,14 @@ declare class CellApi extends BaseAPI {
4387
4387
  * @param {*} [options] Override http request option.
4388
4388
  * @throws {RequiredError}
4389
4389
  */
4390
- getCellStatus(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ServiceStatusResponse, any>>;
4390
+ getCellStatus(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ServiceStatusResponse, any>>;
4391
4391
  /**
4392
4392
  * List all deployed cell names. If no cells are deployed, an empty list is returned.
4393
4393
  * @summary List Cells
4394
4394
  * @param {*} [options] Override http request option.
4395
4395
  * @throws {RequiredError}
4396
4396
  */
4397
- listCells(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
4397
+ listCells(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
4398
4398
  /**
4399
4399
  * Deactivate or activate the services of a cell.
4400
4400
  * @summary Operating State
@@ -4403,7 +4403,7 @@ declare class CellApi extends BaseAPI {
4403
4403
  * @param {*} [options] Override http request option.
4404
4404
  * @throws {RequiredError}
4405
4405
  */
4406
- setCellStatus(cell: string, operatingState: OperatingState, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4406
+ setCellStatus(cell: string, operatingState: OperatingState, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4407
4407
  /**
4408
4408
  * Update the definition of the entire Cell.
4409
4409
  * @summary Update Configuration
@@ -4413,7 +4413,7 @@ declare class CellApi extends BaseAPI {
4413
4413
  * @param {*} [options] Override http request option.
4414
4414
  * @throws {RequiredError}
4415
4415
  */
4416
- updateCell(cell: string, cell2: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4416
+ updateCell(cell: string, cell2: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4417
4417
  }
4418
4418
  /**
4419
4419
  * ControllerApi - axios parameter creator
@@ -4851,7 +4851,7 @@ declare class ControllerApi extends BaseAPI {
4851
4851
  * @param {*} [options] Override http request option.
4852
4852
  * @throws {RequiredError}
4853
4853
  */
4854
- addRobotController(cell: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4854
+ addRobotController(cell: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4855
4855
  /**
4856
4856
  * Delete all robot controllers from the cell. To replace all robot controllers in a cell, use this endpoint in combination with [addRobotController](addRobotController).
4857
4857
  * @summary Clear Robot Controllers
@@ -4860,7 +4860,7 @@ declare class ControllerApi extends BaseAPI {
4860
4860
  * @param {*} [options] Override http request option.
4861
4861
  * @throws {RequiredError}
4862
4862
  */
4863
- clearRobotControllers(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4863
+ clearRobotControllers(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4864
4864
  /**
4865
4865
  * Delete a robot controller from the cell.
4866
4866
  * @summary Delete Robot Controller
@@ -4870,7 +4870,7 @@ declare class ControllerApi extends BaseAPI {
4870
4870
  * @param {*} [options] Override http request option.
4871
4871
  * @throws {RequiredError}
4872
4872
  */
4873
- deleteRobotController(cell: string, controller: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4873
+ deleteRobotController(cell: string, controller: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4874
4874
  /**
4875
4875
  * 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.
4876
4876
  * @summary Description
@@ -4879,7 +4879,7 @@ declare class ControllerApi extends BaseAPI {
4879
4879
  * @param {*} [options] Override http request option.
4880
4880
  * @throws {RequiredError}
4881
4881
  */
4882
- getControllerDescription(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ControllerDescription, any>>;
4882
+ getControllerDescription(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ControllerDescription, any>>;
4883
4883
  /**
4884
4884
  * 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.
4885
4885
  * @summary Coordinate System
@@ -4890,7 +4890,7 @@ declare class ControllerApi extends BaseAPI {
4890
4890
  * @param {*} [options] Override http request option.
4891
4891
  * @throws {RequiredError}
4892
4892
  */
4893
- getCoordinateSystem(cell: string, controller: string, coordinateSystem: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem, any>>;
4893
+ getCoordinateSystem(cell: string, controller: string, coordinateSystem: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CoordinateSystem, any>>;
4894
4894
  /**
4895
4895
  * Get the current state of a robot controller.
4896
4896
  * @summary State
@@ -4899,7 +4899,7 @@ declare class ControllerApi extends BaseAPI {
4899
4899
  * @param {*} [options] Override http request option.
4900
4900
  * @throws {RequiredError}
4901
4901
  */
4902
- getCurrentRobotControllerState(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotControllerState, any>>;
4902
+ getCurrentRobotControllerState(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<RobotControllerState, any>>;
4903
4903
  /**
4904
4904
  * Get the configuration for a robot controller.
4905
4905
  * @summary Robot Controller
@@ -4908,7 +4908,7 @@ declare class ControllerApi extends BaseAPI {
4908
4908
  * @param {*} [options] Override http request option.
4909
4909
  * @throws {RequiredError}
4910
4910
  */
4911
- getRobotController(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotController, any>>;
4911
+ getRobotController(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<RobotController, any>>;
4912
4912
  /**
4913
4913
  * 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.
4914
4914
  * @summary Virtual Controller Configuration
@@ -4917,7 +4917,7 @@ declare class ControllerApi extends BaseAPI {
4917
4917
  * @param {*} [options] Override http request option.
4918
4918
  * @throws {RequiredError}
4919
4919
  */
4920
- getVirtualControllerConfiguration(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<VirtualRobotConfiguration, any>>;
4920
+ getVirtualControllerConfiguration(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<VirtualRobotConfiguration, any>>;
4921
4921
  /**
4922
4922
  * 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.
4923
4923
  * @summary List Coordinate Systems
@@ -4927,7 +4927,7 @@ declare class ControllerApi extends BaseAPI {
4927
4927
  * @param {*} [options] Override http request option.
4928
4928
  * @throws {RequiredError}
4929
4929
  */
4930
- listCoordinateSystems(cell: string, controller: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem[], any>>;
4930
+ listCoordinateSystems(cell: string, controller: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CoordinateSystem[], any>>;
4931
4931
  /**
4932
4932
  * List the names of all deployed robot controllers.
4933
4933
  * @summary List Robot Controllers
@@ -4935,7 +4935,7 @@ declare class ControllerApi extends BaseAPI {
4935
4935
  * @param {*} [options] Override http request option.
4936
4936
  * @throws {RequiredError}
4937
4937
  */
4938
- listRobotControllers(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
4938
+ listRobotControllers(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
4939
4939
  /**
4940
4940
  * 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.
4941
4941
  * @summary Set Default Mode
@@ -4945,7 +4945,7 @@ declare class ControllerApi extends BaseAPI {
4945
4945
  * @param {*} [options] Override http request option.
4946
4946
  * @throws {RequiredError}
4947
4947
  */
4948
- setDefaultMode(cell: string, controller: string, mode: SettableRobotSystemMode, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4948
+ setDefaultMode(cell: string, controller: string, mode: SettableRobotSystemMode, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4949
4949
  /**
4950
4950
  * <!-- 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.
4951
4951
  * @summary Stream Free Drive
@@ -4955,7 +4955,7 @@ declare class ControllerApi extends BaseAPI {
4955
4955
  * @param {*} [options] Override http request option.
4956
4956
  * @throws {RequiredError}
4957
4957
  */
4958
- streamFreeDrive(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotControllerState, any>>;
4958
+ streamFreeDrive(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<RobotControllerState, any>>;
4959
4959
  /**
4960
4960
  * <!-- 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.
4961
4961
  * @summary Stream State
@@ -4966,7 +4966,7 @@ declare class ControllerApi extends BaseAPI {
4966
4966
  * @param {*} [options] Override http request option.
4967
4967
  * @throws {RequiredError}
4968
4968
  */
4969
- streamRobotControllerState(cell: string, controller: string, responseRate?: number, addControllerTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotControllerState, any>>;
4969
+ streamRobotControllerState(cell: string, controller: string, responseRate?: number, addControllerTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<RobotControllerState, any>>;
4970
4970
  /**
4971
4971
  * 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).
4972
4972
  * @summary Update Robot Controller
@@ -4977,7 +4977,7 @@ declare class ControllerApi extends BaseAPI {
4977
4977
  * @param {*} [options] Override http request option.
4978
4978
  * @throws {RequiredError}
4979
4979
  */
4980
- updateRobotController(cell: string, controller: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4980
+ updateRobotController(cell: string, controller: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4981
4981
  }
4982
4982
  /**
4983
4983
  * ControllerInputsOutputsApi - axios parameter creator
@@ -5169,7 +5169,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
5169
5169
  * @param {*} [options] Override http request option.
5170
5170
  * @throws {RequiredError}
5171
5171
  */
5172
- listIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IODescription[], any>>;
5172
+ listIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<IODescription[], any>>;
5173
5173
  /**
5174
5174
  * 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).
5175
5175
  * @summary Get Input/Output Values
@@ -5179,7 +5179,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
5179
5179
  * @param {*} [options] Override http request option.
5180
5180
  * @throws {RequiredError}
5181
5181
  */
5182
- listIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IOValue[], any>>;
5182
+ listIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<IOValue[], any>>;
5183
5183
  /**
5184
5184
  * 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.
5185
5185
  * @summary Set Output Values
@@ -5189,7 +5189,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
5189
5189
  * @param {*} [options] Override http request option.
5190
5190
  * @throws {RequiredError}
5191
5191
  */
5192
- setOutputValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
5192
+ setOutputValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
5193
5193
  /**
5194
5194
  * <!-- 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.
5195
5195
  * @summary Stream Input/Output Values
@@ -5199,7 +5199,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
5199
5199
  * @param {*} [options] Override http request option.
5200
5200
  * @throws {RequiredError}
5201
5201
  */
5202
- streamIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<StreamIOValuesResponse, any>>;
5202
+ streamIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<StreamIOValuesResponse, any>>;
5203
5203
  /**
5204
5204
  * 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 ```
5205
5205
  * @summary Wait For
@@ -5209,7 +5209,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
5209
5209
  * @param {*} [options] Override http request option.
5210
5210
  * @throws {RequiredError}
5211
5211
  */
5212
- waitForIOEvent(cell: string, controller: string, waitForIOEventRequest: WaitForIOEventRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<boolean, any>>;
5212
+ waitForIOEvent(cell: string, controller: string, waitForIOEventRequest: WaitForIOEventRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<boolean, any>>;
5213
5213
  }
5214
5214
  /**
5215
5215
  * JoggingApi - axios parameter creator
@@ -5269,7 +5269,7 @@ declare class JoggingApi extends BaseAPI {
5269
5269
  * @param {*} [options] Override http request option.
5270
5270
  * @throws {RequiredError}
5271
5271
  */
5272
- executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ExecuteJoggingResponse, any>>;
5272
+ executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ExecuteJoggingResponse, any>>;
5273
5273
  }
5274
5274
  /**
5275
5275
  * KinematicsApi - axios parameter creator
@@ -5352,7 +5352,7 @@ declare class KinematicsApi extends BaseAPI {
5352
5352
  * @param {*} [options] Override http request option.
5353
5353
  * @throws {RequiredError}
5354
5354
  */
5355
- forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ForwardKinematicsResponse, any>>;
5355
+ forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ForwardKinematicsResponse, any>>;
5356
5356
  /**
5357
5357
  * Returns the reachable joint positions for a list of given poses.
5358
5358
  * @summary Inverse kinematics
@@ -5361,7 +5361,7 @@ declare class KinematicsApi extends BaseAPI {
5361
5361
  * @param {*} [options] Override http request option.
5362
5362
  * @throws {RequiredError}
5363
5363
  */
5364
- inverseKinematics(cell: string, inverseKinematicsRequest: InverseKinematicsRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<InverseKinematicsResponse, any>>;
5364
+ inverseKinematics(cell: string, inverseKinematicsRequest: InverseKinematicsRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<InverseKinematicsResponse, any>>;
5365
5365
  }
5366
5366
  /**
5367
5367
  * LicenseApi - axios parameter creator
@@ -5476,28 +5476,28 @@ declare class LicenseApi extends BaseAPI {
5476
5476
  * @param {*} [options] Override http request option.
5477
5477
  * @throws {RequiredError}
5478
5478
  */
5479
- activateLicense(activateLicenseRequest: ActivateLicenseRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<License, any>>;
5479
+ activateLicense(activateLicenseRequest: ActivateLicenseRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<License, any>>;
5480
5480
  /**
5481
5481
  * Deactivates active license.
5482
5482
  * @summary Deactivate license
5483
5483
  * @param {*} [options] Override http request option.
5484
5484
  * @throws {RequiredError}
5485
5485
  */
5486
- deactivateLicense(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
5486
+ deactivateLicense(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
5487
5487
  /**
5488
5488
  * Get information on the license used with the Wandelbots NOVA instance, e.g., licensed product, expiration date, license status.
5489
5489
  * @summary Get license
5490
5490
  * @param {*} [options] Override http request option.
5491
5491
  * @throws {RequiredError}
5492
5492
  */
5493
- getLicense(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<License, any>>;
5493
+ getLicense(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<License, any>>;
5494
5494
  /**
5495
5495
  * 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.
5496
5496
  * @summary Get license status
5497
5497
  * @param {*} [options] Override http request option.
5498
5498
  * @throws {RequiredError}
5499
5499
  */
5500
- getLicenseStatus(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<LicenseStatus, any>>;
5500
+ getLicenseStatus(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<LicenseStatus, any>>;
5501
5501
  }
5502
5502
  /**
5503
5503
  * MotionGroupApi - axios parameter creator
@@ -5627,7 +5627,7 @@ declare class MotionGroupApi extends BaseAPI {
5627
5627
  * @param {*} [options] Override http request option.
5628
5628
  * @throws {RequiredError}
5629
5629
  */
5630
- getCurrentMotionGroupState(cell: string, controller: string, motionGroup: string, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupState, any>>;
5630
+ getCurrentMotionGroupState(cell: string, controller: string, motionGroup: string, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<MotionGroupState, any>>;
5631
5631
  /**
5632
5632
  * 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.
5633
5633
  * @summary Description
@@ -5637,7 +5637,7 @@ declare class MotionGroupApi extends BaseAPI {
5637
5637
  * @param {*} [options] Override http request option.
5638
5638
  * @throws {RequiredError}
5639
5639
  */
5640
- getMotionGroupDescription(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupDescription, any>>;
5640
+ getMotionGroupDescription(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<MotionGroupDescription, any>>;
5641
5641
  /**
5642
5642
  * <!-- theme: success --> > Websocket endpoint Receive updates of the motion group state. The stream will be closed from the server if the controller is disconnected.
5643
5643
  * @summary Stream State
@@ -5649,7 +5649,7 @@ declare class MotionGroupApi extends BaseAPI {
5649
5649
  * @param {*} [options] Override http request option.
5650
5650
  * @throws {RequiredError}
5651
5651
  */
5652
- streamMotionGroupState(cell: string, controller: string, motionGroup: string, responseRate?: number, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupState, any>>;
5652
+ streamMotionGroupState(cell: string, controller: string, motionGroup: string, responseRate?: number, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<MotionGroupState, any>>;
5653
5653
  }
5654
5654
  /**
5655
5655
  * MotionGroupModelsApi - axios parameter creator
@@ -5726,7 +5726,7 @@ declare class MotionGroupModelsApi extends BaseAPI {
5726
5726
  * @param {*} [options] Override http request option.
5727
5727
  * @throws {RequiredError}
5728
5728
  */
5729
- getMotionGroupCollisionModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
5729
+ getMotionGroupCollisionModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
5730
5730
  [key: string]: Collider;
5731
5731
  }[], any>>;
5732
5732
  /**
@@ -5735,7 +5735,7 @@ declare class MotionGroupModelsApi extends BaseAPI {
5735
5735
  * @param {*} [options] Override http request option.
5736
5736
  * @throws {RequiredError}
5737
5737
  */
5738
- getMotionGroupModels(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
5738
+ getMotionGroupModels(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
5739
5739
  }
5740
5740
  /**
5741
5741
  * ProgramApi - axios parameter creator
@@ -5872,7 +5872,7 @@ declare class ProgramApi extends BaseAPI {
5872
5872
  * @param {*} [options] Override http request option.
5873
5873
  * @throws {RequiredError}
5874
5874
  */
5875
- getProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Program, any>>;
5875
+ getProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Program, any>>;
5876
5876
  /**
5877
5877
  * <!-- theme: danger --> > **Experimental** List details of all existing programs.
5878
5878
  * @summary List programs
@@ -5880,7 +5880,7 @@ declare class ProgramApi extends BaseAPI {
5880
5880
  * @param {*} [options] Override http request option.
5881
5881
  * @throws {RequiredError}
5882
5882
  */
5883
- listPrograms(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Program[], any>>;
5883
+ listPrograms(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Program[], any>>;
5884
5884
  /**
5885
5885
  * <!-- theme: danger --> > **Experimental** This endpoint starts a new program execution. The program will be executed asynchronously.
5886
5886
  * @summary Start the program
@@ -5890,7 +5890,7 @@ declare class ProgramApi extends BaseAPI {
5890
5890
  * @param {*} [options] Override http request option.
5891
5891
  * @throws {RequiredError}
5892
5892
  */
5893
- startProgram(cell: string, program: string, programStartRequest: ProgramStartRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProgramRun, any>>;
5893
+ startProgram(cell: string, program: string, programStartRequest: ProgramStartRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ProgramRun, any>>;
5894
5894
  /**
5895
5895
  * <!-- theme: danger --> > **Experimental** Stop a specific program run.
5896
5896
  * @summary Stop program run
@@ -5899,7 +5899,7 @@ declare class ProgramApi extends BaseAPI {
5899
5899
  * @param {*} [options] Override http request option.
5900
5900
  * @throws {RequiredError}
5901
5901
  */
5902
- stopProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
5902
+ stopProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
5903
5903
  }
5904
5904
  /**
5905
5905
  * StoreCollisionComponentsApi - axios parameter creator
@@ -6372,7 +6372,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6372
6372
  * @param {*} [options] Override http request option.
6373
6373
  * @throws {RequiredError}
6374
6374
  */
6375
- deleteStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
6375
+ deleteStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
6376
6376
  /**
6377
6377
  * Deletes the stored link chain. <!-- theme: danger --> > This will delete persistently stored data.
6378
6378
  * @summary Delete Link Chain
@@ -6381,7 +6381,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6381
6381
  * @param {*} [options] Override http request option.
6382
6382
  * @throws {RequiredError}
6383
6383
  */
6384
- deleteStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
6384
+ deleteStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
6385
6385
  /**
6386
6386
  * Deletes the stored tool. <!-- theme: danger --> > This will delete persistently stored data.
6387
6387
  * @summary Delete Tool
@@ -6390,7 +6390,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6390
6390
  * @param {*} [options] Override http request option.
6391
6391
  * @throws {RequiredError}
6392
6392
  */
6393
- deleteStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
6393
+ deleteStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
6394
6394
  /**
6395
6395
  * Returns the collider.
6396
6396
  * @summary Get Collider
@@ -6399,7 +6399,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6399
6399
  * @param {*} [options] Override http request option.
6400
6400
  * @throws {RequiredError}
6401
6401
  */
6402
- getStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Collider, any>>;
6402
+ getStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Collider, any>>;
6403
6403
  /**
6404
6404
  * Returns the collision link chain.
6405
6405
  * @summary Get Link Chain
@@ -6408,7 +6408,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6408
6408
  * @param {*} [options] Override http request option.
6409
6409
  * @throws {RequiredError}
6410
6410
  */
6411
- getStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6411
+ getStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6412
6412
  [key: string]: Collider;
6413
6413
  }[], any>>;
6414
6414
  /**
@@ -6419,7 +6419,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6419
6419
  * @param {*} [options] Override http request option.
6420
6420
  * @throws {RequiredError}
6421
6421
  */
6422
- getStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6422
+ getStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6423
6423
  [key: string]: Collider;
6424
6424
  }, any>>;
6425
6425
  /**
@@ -6429,7 +6429,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6429
6429
  * @param {*} [options] Override http request option.
6430
6430
  * @throws {RequiredError}
6431
6431
  */
6432
- listCollisionLinkChains(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6432
+ listCollisionLinkChains(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6433
6433
  [key: string]: {
6434
6434
  [key: string]: Collider;
6435
6435
  }[];
@@ -6441,7 +6441,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6441
6441
  * @param {*} [options] Override http request option.
6442
6442
  * @throws {RequiredError}
6443
6443
  */
6444
- listCollisionLinkChainsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
6444
+ listCollisionLinkChainsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
6445
6445
  /**
6446
6446
  * Returns all stored colliders.
6447
6447
  * @summary List Colliders
@@ -6449,7 +6449,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6449
6449
  * @param {*} [options] Override http request option.
6450
6450
  * @throws {RequiredError}
6451
6451
  */
6452
- listStoredColliders(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6452
+ listStoredColliders(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6453
6453
  [key: string]: Collider;
6454
6454
  }, any>>;
6455
6455
  /**
@@ -6459,7 +6459,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6459
6459
  * @param {*} [options] Override http request option.
6460
6460
  * @throws {RequiredError}
6461
6461
  */
6462
- listStoredCollidersKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
6462
+ listStoredCollidersKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
6463
6463
  /**
6464
6464
  * Returns the list of stored tools.
6465
6465
  * @summary List Tools
@@ -6467,7 +6467,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6467
6467
  * @param {*} [options] Override http request option.
6468
6468
  * @throws {RequiredError}
6469
6469
  */
6470
- listStoredCollisionTools(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6470
+ listStoredCollisionTools(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6471
6471
  [key: string]: {
6472
6472
  [key: string]: Collider;
6473
6473
  };
@@ -6479,7 +6479,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6479
6479
  * @param {*} [options] Override http request option.
6480
6480
  * @throws {RequiredError}
6481
6481
  */
6482
- listStoredCollisionToolsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
6482
+ listStoredCollisionToolsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
6483
6483
  /**
6484
6484
  * Stores collider. - If the collider does not exist, it will be created. - If the collider exists, it will be updated.
6485
6485
  * @summary Store Collider
@@ -6489,7 +6489,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6489
6489
  * @param {*} [options] Override http request option.
6490
6490
  * @throws {RequiredError}
6491
6491
  */
6492
- storeCollider(cell: string, collider: string, collider2: Collider, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Collider, any>>;
6492
+ storeCollider(cell: string, collider: string, collider2: Collider, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Collider, any>>;
6493
6493
  /**
6494
6494
  * Stores link chain. - If the link chain does not exist, it will be created. - If the link chain exists, it will be updated.
6495
6495
  * @summary Store Link Chain
@@ -6501,7 +6501,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6501
6501
  */
6502
6502
  storeCollisionLinkChain(cell: string, linkChain: string, collider: Array<{
6503
6503
  [key: string]: Collider;
6504
- }>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6504
+ }>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6505
6505
  [key: string]: Collider;
6506
6506
  }[], any>>;
6507
6507
  /**
@@ -6515,7 +6515,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6515
6515
  */
6516
6516
  storeCollisionTool(cell: string, tool: string, requestBody: {
6517
6517
  [key: string]: Collider;
6518
- }, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6518
+ }, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6519
6519
  [key: string]: Collider;
6520
6520
  }, any>>;
6521
6521
  }
@@ -6682,7 +6682,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
6682
6682
  * @param {*} [options] Override http request option.
6683
6683
  * @throws {RequiredError}
6684
6684
  */
6685
- deleteStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
6685
+ deleteStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
6686
6686
  /**
6687
6687
  * Returns the stored collision setup.
6688
6688
  * @summary Get Collision Setup
@@ -6691,7 +6691,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
6691
6691
  * @param {*} [options] Override http request option.
6692
6692
  * @throws {RequiredError}
6693
6693
  */
6694
- getStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CollisionSetup, any>>;
6694
+ getStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CollisionSetup, any>>;
6695
6695
  /**
6696
6696
  * Returns a list of stored collision setups.
6697
6697
  * @summary List Collision Setups
@@ -6699,7 +6699,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
6699
6699
  * @param {*} [options] Override http request option.
6700
6700
  * @throws {RequiredError}
6701
6701
  */
6702
- listStoredCollisionSetups(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6702
+ listStoredCollisionSetups(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6703
6703
  [key: string]: CollisionSetup;
6704
6704
  }, any>>;
6705
6705
  /**
@@ -6709,7 +6709,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
6709
6709
  * @param {*} [options] Override http request option.
6710
6710
  * @throws {RequiredError}
6711
6711
  */
6712
- listStoredCollisionSetupsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
6712
+ listStoredCollisionSetupsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
6713
6713
  /**
6714
6714
  * Stores collision setup. - If the collision setup does not exist, it will be created. - If the collision setup exists, it will be updated.
6715
6715
  * @summary Store Collision Setup
@@ -6719,7 +6719,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
6719
6719
  * @param {*} [options] Override http request option.
6720
6720
  * @throws {RequiredError}
6721
6721
  */
6722
- storeCollisionSetup(cell: string, setup: string, collisionSetup: CollisionSetup, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CollisionSetup, any>>;
6722
+ storeCollisionSetup(cell: string, setup: string, collisionSetup: CollisionSetup, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CollisionSetup, any>>;
6723
6723
  }
6724
6724
  /**
6725
6725
  * StoreObjectApi - axios parameter creator
@@ -6915,7 +6915,7 @@ declare class StoreObjectApi extends BaseAPI {
6915
6915
  * @param {*} [options] Override http request option.
6916
6916
  * @throws {RequiredError}
6917
6917
  */
6918
- clearAllObjects(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
6918
+ clearAllObjects(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
6919
6919
  /**
6920
6920
  * Delete an object <!-- theme: danger --> > This will delete persistently stored data.
6921
6921
  * @summary Delete Object
@@ -6924,7 +6924,7 @@ declare class StoreObjectApi extends BaseAPI {
6924
6924
  * @param {*} [options] Override http request option.
6925
6925
  * @throws {RequiredError}
6926
6926
  */
6927
- deleteObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
6927
+ deleteObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
6928
6928
  /**
6929
6929
  * Returns content and metadata of a stored object.
6930
6930
  * @summary Get Object
@@ -6933,7 +6933,7 @@ declare class StoreObjectApi extends BaseAPI {
6933
6933
  * @param {*} [options] Override http request option.
6934
6934
  * @throws {RequiredError}
6935
6935
  */
6936
- getObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<File, any>>;
6936
+ getObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<File, any>>;
6937
6937
  /**
6938
6938
  * Returns metadata. Object content is not returned.
6939
6939
  * @summary Get Object Metadata
@@ -6942,7 +6942,7 @@ declare class StoreObjectApi extends BaseAPI {
6942
6942
  * @param {*} [options] Override http request option.
6943
6943
  * @throws {RequiredError}
6944
6944
  */
6945
- getObjectMetadata(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
6945
+ getObjectMetadata(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
6946
6946
  /**
6947
6947
  * List the keys for all objects.
6948
6948
  * @summary List all Object Keys
@@ -6950,7 +6950,7 @@ declare class StoreObjectApi extends BaseAPI {
6950
6950
  * @param {*} [options] Override http request option.
6951
6951
  * @throws {RequiredError}
6952
6952
  */
6953
- listAllObjectKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
6953
+ listAllObjectKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
6954
6954
  /**
6955
6955
  * 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.
6956
6956
  * @summary Store Object
@@ -6963,7 +6963,7 @@ declare class StoreObjectApi extends BaseAPI {
6963
6963
  */
6964
6964
  storeObject(cell: string, key: string, xMetadata?: {
6965
6965
  [key: string]: string;
6966
- }, anyValue?: any, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
6966
+ }, anyValue?: any, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
6967
6967
  }
6968
6968
  /**
6969
6969
  * SystemApi - axios parameter creator
@@ -7210,7 +7210,7 @@ declare class SystemApi extends BaseAPI {
7210
7210
  */
7211
7211
  backupConfiguration(resources?: Array<string>, metadata?: {
7212
7212
  [key: string]: string;
7213
- }, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<File, any>>;
7213
+ }, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<File, any>>;
7214
7214
  /**
7215
7215
  * Check if a more recent Wandelbots NOVA Version is available.
7216
7216
  * @summary Check update
@@ -7218,7 +7218,7 @@ declare class SystemApi extends BaseAPI {
7218
7218
  * @param {*} [options] Override http request option.
7219
7219
  * @throws {RequiredError}
7220
7220
  */
7221
- checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string, any>>;
7221
+ checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string, any>>;
7222
7222
  /**
7223
7223
  * 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.
7224
7224
  * @summary Retrieve Backup Status
@@ -7226,35 +7226,35 @@ declare class SystemApi extends BaseAPI {
7226
7226
  * @param {*} [options] Override http request option.
7227
7227
  * @throws {RequiredError}
7228
7228
  */
7229
- getConfigurationBackupStatus(operationId: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ConfigurationArchiveStatus, any>>;
7229
+ getConfigurationBackupStatus(operationId: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ConfigurationArchiveStatus, any>>;
7230
7230
  /**
7231
7231
  * 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.
7232
7232
  * @summary Download Diagnosis Package
7233
7233
  * @param {*} [options] Override http request option.
7234
7234
  * @throws {RequiredError}
7235
7235
  */
7236
- getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<File, any>>;
7236
+ getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<File, any>>;
7237
7237
  /**
7238
7238
  * Get the status of all system services.
7239
7239
  * @summary Wandelbots NOVA status
7240
7240
  * @param {*} [options] Override http request option.
7241
7241
  * @throws {RequiredError}
7242
7242
  */
7243
- getSystemStatus(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ServiceStatus[], any>>;
7243
+ getSystemStatus(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ServiceStatus[], any>>;
7244
7244
  /**
7245
7245
  * Get the current Wandelbots NOVA version.
7246
7246
  * @summary Wandelbots NOVA Version
7247
7247
  * @param {*} [options] Override http request option.
7248
7248
  * @throws {RequiredError}
7249
7249
  */
7250
- getSystemVersion(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string, any>>;
7250
+ getSystemVersion(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string, any>>;
7251
7251
  /**
7252
7252
  * Retrieves a list of all available configuration resources for backup purposes.
7253
7253
  * @summary List Configuration Resources
7254
7254
  * @param {*} [options] Override http request option.
7255
7255
  * @throws {RequiredError}
7256
7256
  */
7257
- listConfigurationResources(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ConfigurationResource[], any>>;
7257
+ listConfigurationResources(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ConfigurationResource[], any>>;
7258
7258
  /**
7259
7259
  * Restores a previously backed up configuration.
7260
7260
  * @summary Restore Configuration Backup
@@ -7263,7 +7263,7 @@ declare class SystemApi extends BaseAPI {
7263
7263
  * @param {*} [options] Override http request option.
7264
7264
  * @throws {RequiredError}
7265
7265
  */
7266
- restoreConfiguration(resources: Array<string>, body: File, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
7266
+ restoreConfiguration(resources: Array<string>, body: File, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
7267
7267
  /**
7268
7268
  * 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.
7269
7269
  * @summary Update Wandelbots NOVA version
@@ -7271,7 +7271,7 @@ declare class SystemApi extends BaseAPI {
7271
7271
  * @param {*} [options] Override http request option.
7272
7272
  * @throws {RequiredError}
7273
7273
  */
7274
- updateNovaVersion(updateNovaVersionRequest: UpdateNovaVersionRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
7274
+ updateNovaVersion(updateNovaVersionRequest: UpdateNovaVersionRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
7275
7275
  }
7276
7276
  /**
7277
7277
  * TrajectoryCachingApi - axios parameter creator
@@ -7445,7 +7445,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
7445
7445
  * @param {*} [options] Override http request option.
7446
7446
  * @throws {RequiredError}
7447
7447
  */
7448
- addTrajectory(cell: string, controller: string, addTrajectoryRequest: AddTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<AddTrajectoryResponse, any>>;
7448
+ addTrajectory(cell: string, controller: string, addTrajectoryRequest: AddTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<AddTrajectoryResponse, any>>;
7449
7449
  /**
7450
7450
  * Clear the trajectory cache.
7451
7451
  * @summary Clear Trajectories
@@ -7454,7 +7454,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
7454
7454
  * @param {*} [options] Override http request option.
7455
7455
  * @throws {RequiredError}
7456
7456
  */
7457
- clearTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
7457
+ clearTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
7458
7458
  /**
7459
7459
  * 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.
7460
7460
  * @summary Delete Trajectory
@@ -7464,7 +7464,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
7464
7464
  * @param {*} [options] Override http request option.
7465
7465
  * @throws {RequiredError}
7466
7466
  */
7467
- deleteTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
7467
+ deleteTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
7468
7468
  /**
7469
7469
  * Get a previously created trajectory from cache. Use [listTrajectories](listTrajectories) to list all cached trajectories.
7470
7470
  * @summary Get Trajectory
@@ -7474,7 +7474,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
7474
7474
  * @param {*} [options] Override http request option.
7475
7475
  * @throws {RequiredError}
7476
7476
  */
7477
- getTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<GetTrajectoryResponse, any>>;
7477
+ getTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<GetTrajectoryResponse, any>>;
7478
7478
  /**
7479
7479
  * 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.
7480
7480
  * @summary List Trajectories
@@ -7483,7 +7483,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
7483
7483
  * @param {*} [options] Override http request option.
7484
7484
  * @throws {RequiredError}
7485
7485
  */
7486
- listTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ListTrajectoriesResponse, any>>;
7486
+ listTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ListTrajectoriesResponse, any>>;
7487
7487
  }
7488
7488
  /**
7489
7489
  * TrajectoryExecutionApi - axios parameter creator
@@ -7543,7 +7543,7 @@ declare class TrajectoryExecutionApi extends BaseAPI {
7543
7543
  * @param {*} [options] Override http request option.
7544
7544
  * @throws {RequiredError}
7545
7545
  */
7546
- executeTrajectory(cell: string, controller: string, executeTrajectoryRequest: ExecuteTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ExecuteTrajectoryResponse, any>>;
7546
+ executeTrajectory(cell: string, controller: string, executeTrajectoryRequest: ExecuteTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ExecuteTrajectoryResponse, any>>;
7547
7547
  }
7548
7548
  /**
7549
7549
  * TrajectoryPlanningApi - axios parameter creator
@@ -7626,7 +7626,7 @@ declare class TrajectoryPlanningApi extends BaseAPI {
7626
7626
  * @param {*} [options] Override http request option.
7627
7627
  * @throws {RequiredError}
7628
7628
  */
7629
- planCollisionFree(cell: string, planCollisionFreeRequest: PlanCollisionFreeRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<PlanCollisionFreeResponse, any>>;
7629
+ planCollisionFree(cell: string, planCollisionFreeRequest: PlanCollisionFreeRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<PlanCollisionFreeResponse, any>>;
7630
7630
  /**
7631
7631
  * 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.
7632
7632
  * @summary Plan Trajectory
@@ -7635,7 +7635,7 @@ declare class TrajectoryPlanningApi extends BaseAPI {
7635
7635
  * @param {*} [options] Override http request option.
7636
7636
  * @throws {RequiredError}
7637
7637
  */
7638
- planTrajectory(cell: string, planTrajectoryRequest: PlanTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<PlanTrajectoryResponse, any>>;
7638
+ planTrajectory(cell: string, planTrajectoryRequest: PlanTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<PlanTrajectoryResponse, any>>;
7639
7639
  }
7640
7640
  /**
7641
7641
  * VersionApi - axios parameter creator
@@ -7683,7 +7683,7 @@ declare class VersionApi extends BaseAPI {
7683
7683
  * @param {*} [options] Override http request option.
7684
7684
  * @throws {RequiredError}
7685
7685
  */
7686
- getApiVersion(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ApiVersion, any>>;
7686
+ getApiVersion(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ApiVersion, any>>;
7687
7687
  }
7688
7688
  /**
7689
7689
  * VirtualControllerApi - axios parameter creator
@@ -8173,7 +8173,7 @@ declare class VirtualControllerApi extends BaseAPI {
8173
8173
  * @param {*} [options] Override http request option.
8174
8174
  * @throws {RequiredError}
8175
8175
  */
8176
- addVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, coordinateSystemData: CoordinateSystemData, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8176
+ addVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, coordinateSystemData: CoordinateSystemData, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8177
8177
  /**
8178
8178
  * 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.
8179
8179
  * @summary Add TCP
@@ -8185,7 +8185,7 @@ declare class VirtualControllerApi extends BaseAPI {
8185
8185
  * @param {*} [options] Override http request option.
8186
8186
  * @throws {RequiredError}
8187
8187
  */
8188
- addVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, robotTcpData: RobotTcpData, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8188
+ addVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, robotTcpData: RobotTcpData, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8189
8189
  /**
8190
8190
  * 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.
8191
8191
  * @summary Delete Coordinate System
@@ -8196,7 +8196,7 @@ declare class VirtualControllerApi extends BaseAPI {
8196
8196
  * @param {*} [options] Override http request option.
8197
8197
  * @throws {RequiredError}
8198
8198
  */
8199
- deleteVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8199
+ deleteVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8200
8200
  /**
8201
8201
  * 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.
8202
8202
  * @summary Remove TCP
@@ -8207,7 +8207,7 @@ declare class VirtualControllerApi extends BaseAPI {
8207
8207
  * @param {*} [options] Override http request option.
8208
8208
  * @throws {RequiredError}
8209
8209
  */
8210
- deleteVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8210
+ deleteVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8211
8211
  /**
8212
8212
  * 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.
8213
8213
  * @summary Get Emergency Stop State
@@ -8216,7 +8216,7 @@ declare class VirtualControllerApi extends BaseAPI {
8216
8216
  * @param {*} [options] Override http request option.
8217
8217
  * @throws {RequiredError}
8218
8218
  */
8219
- getEmergencyStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Flag, any>>;
8219
+ getEmergencyStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Flag, any>>;
8220
8220
  /**
8221
8221
  * Get the current motion group state which provides values for the joints\' position, velocity and acceleration.
8222
8222
  * @summary Get Motion Group State
@@ -8226,7 +8226,7 @@ declare class VirtualControllerApi extends BaseAPI {
8226
8226
  * @param {*} [options] Override http request option.
8227
8227
  * @throws {RequiredError}
8228
8228
  */
8229
- getMotionGroupState(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupJoints, any>>;
8229
+ getMotionGroupState(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<MotionGroupJoints, any>>;
8230
8230
  /**
8231
8231
  * Gets information on the motion group.
8232
8232
  * @summary Motion Group Description
@@ -8235,7 +8235,7 @@ declare class VirtualControllerApi extends BaseAPI {
8235
8235
  * @param {*} [options] Override http request option.
8236
8236
  * @throws {RequiredError}
8237
8237
  */
8238
- getMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupInfo[], any>>;
8238
+ getMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<MotionGroupInfo[], any>>;
8239
8239
  /**
8240
8240
  * 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.
8241
8241
  * @summary Get Operation Mode
@@ -8244,7 +8244,7 @@ declare class VirtualControllerApi extends BaseAPI {
8244
8244
  * @param {*} [options] Override http request option.
8245
8245
  * @throws {RequiredError}
8246
8246
  */
8247
- getOperationMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<OpMode, any>>;
8247
+ getOperationMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<OpMode, any>>;
8248
8248
  /**
8249
8249
  * Gets motion group mounting. The motion group is based on the origin of the returned coordinate system.
8250
8250
  * @summary Get Mounting
@@ -8254,7 +8254,7 @@ declare class VirtualControllerApi extends BaseAPI {
8254
8254
  * @param {*} [options] Override http request option.
8255
8255
  * @throws {RequiredError}
8256
8256
  */
8257
- getVirtualControllerMounting(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem, any>>;
8257
+ getVirtualControllerMounting(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CoordinateSystem, any>>;
8258
8258
  /**
8259
8259
  * Lists all coordinate systems on the robot controller.
8260
8260
  * @summary List Coordinate Systems
@@ -8263,7 +8263,7 @@ declare class VirtualControllerApi extends BaseAPI {
8263
8263
  * @param {*} [options] Override http request option.
8264
8264
  * @throws {RequiredError}
8265
8265
  */
8266
- listVirtualControllerCoordinateSystems(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem[], any>>;
8266
+ listVirtualControllerCoordinateSystems(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CoordinateSystem[], any>>;
8267
8267
  /**
8268
8268
  * Lists TCPs of the motion group. An empty TCP list is valid, e.g., for external axes.
8269
8269
  * @summary List TCPs
@@ -8273,7 +8273,7 @@ declare class VirtualControllerApi extends BaseAPI {
8273
8273
  * @param {*} [options] Override http request option.
8274
8274
  * @throws {RequiredError}
8275
8275
  */
8276
- listVirtualControllerTcps(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotTcp[], any>>;
8276
+ listVirtualControllerTcps(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<RobotTcp[], any>>;
8277
8277
  /**
8278
8278
  * 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.
8279
8279
  * @summary Push or Release Emergency Stop
@@ -8283,7 +8283,7 @@ declare class VirtualControllerApi extends BaseAPI {
8283
8283
  * @param {*} [options] Override http request option.
8284
8284
  * @throws {RequiredError}
8285
8285
  */
8286
- setEmergencyStop(cell: string, controller: string, active?: boolean, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8286
+ setEmergencyStop(cell: string, controller: string, active?: boolean, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8287
8287
  /**
8288
8288
  * 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.
8289
8289
  * @summary Set Motion Group State
@@ -8294,7 +8294,7 @@ declare class VirtualControllerApi extends BaseAPI {
8294
8294
  * @param {*} [options] Override http request option.
8295
8295
  * @throws {RequiredError}
8296
8296
  */
8297
- setMotionGroupState(cell: string, controller: string, motionGroup: string, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8297
+ setMotionGroupState(cell: string, controller: string, motionGroup: string, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8298
8298
  /**
8299
8299
  * 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.
8300
8300
  * @summary Set Operation Mode
@@ -8304,7 +8304,7 @@ declare class VirtualControllerApi extends BaseAPI {
8304
8304
  * @param {*} [options] Override http request option.
8305
8305
  * @throws {RequiredError}
8306
8306
  */
8307
- setOperationMode(cell: string, controller: string, mode: OperationMode, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8307
+ setOperationMode(cell: string, controller: string, mode: OperationMode, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8308
8308
  /**
8309
8309
  * 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.
8310
8310
  * @summary Set Mounting
@@ -8315,7 +8315,7 @@ declare class VirtualControllerApi extends BaseAPI {
8315
8315
  * @param {*} [options] Override http request option.
8316
8316
  * @throws {RequiredError}
8317
8317
  */
8318
- setVirtualControllerMounting(cell: string, controller: string, motionGroup: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem, any>>;
8318
+ setVirtualControllerMounting(cell: string, controller: string, motionGroup: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CoordinateSystem, any>>;
8319
8319
  }
8320
8320
  /**
8321
8321
  * VirtualControllerBehaviorApi - axios parameter creator
@@ -8459,7 +8459,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
8459
8459
  * @param {*} [options] Override http request option.
8460
8460
  * @throws {RequiredError}
8461
8461
  */
8462
- externalJointsStream(cell: string, controller: string, externalJointStreamRequest: ExternalJointStreamRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ExternalJointStreamDatapoint[], any>>;
8462
+ externalJointsStream(cell: string, controller: string, externalJointStreamRequest: ExternalJointStreamRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ExternalJointStreamDatapoint[], any>>;
8463
8463
  /**
8464
8464
  * Get the cycle time of controller communication in [ms].
8465
8465
  * @summary Get Cycle Time
@@ -8468,7 +8468,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
8468
8468
  * @param {*} [options] Override http request option.
8469
8469
  * @throws {RequiredError}
8470
8470
  */
8471
- getCycleTime(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CycleTime, any>>;
8471
+ getCycleTime(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CycleTime, any>>;
8472
8472
  /**
8473
8473
  * Get the current virtual controller behavior. See [setVirtualControllerBehavior](setVirtualControllerBehavior) and the body for details.
8474
8474
  * @summary Get Behavior
@@ -8477,7 +8477,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
8477
8477
  * @param {*} [options] Override http request option.
8478
8478
  * @throws {RequiredError}
8479
8479
  */
8480
- getVirtualControllerBehavior(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Behavior, any>>;
8480
+ getVirtualControllerBehavior(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Behavior, any>>;
8481
8481
  /**
8482
8482
  * Set virtual controller behavior. See query parameters for details.
8483
8483
  * @summary Set Behavior
@@ -8487,7 +8487,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
8487
8487
  * @param {*} [options] Override http request option.
8488
8488
  * @throws {RequiredError}
8489
8489
  */
8490
- setVirtualControllerBehavior(cell: string, controller: string, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8490
+ setVirtualControllerBehavior(cell: string, controller: string, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8491
8491
  }
8492
8492
  /**
8493
8493
  * VirtualControllerInputsOutputsApi - axios parameter creator
@@ -8616,7 +8616,7 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
8616
8616
  * @param {*} [options] Override http request option.
8617
8617
  * @throws {RequiredError}
8618
8618
  */
8619
- listIOs(cell: string, controller: string, ios: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IOValue[], any>>;
8619
+ listIOs(cell: string, controller: string, ios: Array<string>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<IOValue[], any>>;
8620
8620
  /**
8621
8621
  * 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.
8622
8622
  * @summary List Descriptions
@@ -8629,7 +8629,7 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
8629
8629
  * @param {*} [options] Override http request option.
8630
8630
  * @throws {RequiredError}
8631
8631
  */
8632
- listVirtualControllerIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IODescription[], any>>;
8632
+ listVirtualControllerIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<IODescription[], any>>;
8633
8633
  /**
8634
8634
  * Sets a list of values of a virtual controller inputs/outputs.
8635
8635
  * @summary Set Input/Ouput Values
@@ -8639,7 +8639,7 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
8639
8639
  * @param {*} [options] Override http request option.
8640
8640
  * @throws {RequiredError}
8641
8641
  */
8642
- setIOValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8642
+ setIOValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8643
8643
  }
8644
8644
  //#endregion
8645
8645
  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 };