@wandelbots/nova-api 26.1.0-dev.54 → 26.1.0-dev.55

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
@@ -3429,7 +3429,7 @@ declare class ApplicationApi extends BaseAPI {
3429
3429
  * @param {*} [options] Override http request option.
3430
3430
  * @throws {RequiredError}
3431
3431
  */
3432
- addApp(cell: string, app: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
3432
+ addApp(cell: string, app: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
3433
3433
  /**
3434
3434
  * Delete all GUI applications from the cell.
3435
3435
  * @summary Clear Applications
@@ -3438,7 +3438,7 @@ declare class ApplicationApi extends BaseAPI {
3438
3438
  * @param {*} [options] Override http request option.
3439
3439
  * @throws {RequiredError}
3440
3440
  */
3441
- clearApps(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
3441
+ clearApps(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
3442
3442
  /**
3443
3443
  * Delete a GUI application from the cell.
3444
3444
  * @summary Delete Application
@@ -3448,7 +3448,7 @@ declare class ApplicationApi extends BaseAPI {
3448
3448
  * @param {*} [options] Override http request option.
3449
3449
  * @throws {RequiredError}
3450
3450
  */
3451
- deleteApp(cell: string, app: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
3451
+ deleteApp(cell: string, app: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
3452
3452
  /**
3453
3453
  * 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).
3454
3454
  * @summary Configuration
@@ -3457,7 +3457,7 @@ declare class ApplicationApi extends BaseAPI {
3457
3457
  * @param {*} [options] Override http request option.
3458
3458
  * @throws {RequiredError}
3459
3459
  */
3460
- getApp(cell: string, app: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<App, any>>;
3460
+ getApp(cell: string, app: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<App, any>>;
3461
3461
  /**
3462
3462
  * 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.
3463
3463
  * @summary List Applications
@@ -3465,7 +3465,7 @@ declare class ApplicationApi extends BaseAPI {
3465
3465
  * @param {*} [options] Override http request option.
3466
3466
  * @throws {RequiredError}
3467
3467
  */
3468
- listApps(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
3468
+ listApps(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
3469
3469
  /**
3470
3470
  * Update the configuration of a GUI application in the cell.
3471
3471
  * @summary Update Configuration
@@ -3476,7 +3476,7 @@ declare class ApplicationApi extends BaseAPI {
3476
3476
  * @param {*} [options] Override http request option.
3477
3477
  * @throws {RequiredError}
3478
3478
  */
3479
- updateApp(cell: string, app: string, app2: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
3479
+ updateApp(cell: string, app: string, app2: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
3480
3480
  }
3481
3481
  /**
3482
3482
  * BUSInputsOutputsApi - axios parameter creator
@@ -3980,7 +3980,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
3980
3980
  * @param {*} [options] Override http request option.
3981
3981
  * @throws {RequiredError}
3982
3982
  */
3983
- addBusIOService(cell: string, busIOType: BusIOType, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
3983
+ addBusIOService(cell: string, busIOType: BusIOType, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
3984
3984
  /**
3985
3985
  * 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).
3986
3986
  * @summary Add MODBUS Input/Output
@@ -3990,7 +3990,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
3990
3990
  * @param {*} [options] Override http request option.
3991
3991
  * @throws {RequiredError}
3992
3992
  */
3993
- addModbusIO(cell: string, io: string, modbusIOData: ModbusIOData, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
3993
+ addModbusIO(cell: string, io: string, modbusIOData: ModbusIOData, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
3994
3994
  /**
3995
3995
  * 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).
3996
3996
  * @summary Add PROFINET Input/Output
@@ -4000,7 +4000,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4000
4000
  * @param {*} [options] Override http request option.
4001
4001
  * @throws {RequiredError}
4002
4002
  */
4003
- addProfinetIO(cell: string, io: string, profinetIOData: ProfinetIOData, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4003
+ addProfinetIO(cell: string, io: string, profinetIOData: ProfinetIOData, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4004
4004
  /**
4005
4005
  * Remove the BUS inputs/outputs service from the cell.
4006
4006
  * @summary Clear Service
@@ -4009,7 +4009,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4009
4009
  * @param {*} [options] Override http request option.
4010
4010
  * @throws {RequiredError}
4011
4011
  */
4012
- clearBusIOService(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4012
+ clearBusIOService(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4013
4013
  /**
4014
4014
  * Removes all input/output variable configurations from the MODBUS device, e.g., NOVA\'s MODBUS service.
4015
4015
  * @summary Remove all MODBUS Input/Outputs
@@ -4017,7 +4017,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4017
4017
  * @param {*} [options] Override http request option.
4018
4018
  * @throws {RequiredError}
4019
4019
  */
4020
- deleteAllModbusIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4020
+ deleteAllModbusIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4021
4021
  /**
4022
4022
  * Removes all input/output variable configurations from the PROFINET device, e.g., NOVA\'s PROFINET service.
4023
4023
  * @summary Remove all PROFINET Input/Outputs
@@ -4025,7 +4025,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4025
4025
  * @param {*} [options] Override http request option.
4026
4026
  * @throws {RequiredError}
4027
4027
  */
4028
- deleteAllProfinetIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4028
+ deleteAllProfinetIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4029
4029
  /**
4030
4030
  * Removes an input/output variable configuration from the MODBUS device, e.g., NOVA\'s MODBUS service.
4031
4031
  * @summary Remove MODBUS Input/Ouptut
@@ -4034,7 +4034,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4034
4034
  * @param {*} [options] Override http request option.
4035
4035
  * @throws {RequiredError}
4036
4036
  */
4037
- deleteModbusIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4037
+ deleteModbusIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4038
4038
  /**
4039
4039
  * Removes an input/output variable configuration from the PROFINET device, e.g., NOVA\'s PROFINET service.
4040
4040
  * @summary Remove PROFINET Input/Ouptut
@@ -4043,7 +4043,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4043
4043
  * @param {*} [options] Override http request option.
4044
4044
  * @throws {RequiredError}
4045
4045
  */
4046
- deleteProfinetIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4046
+ deleteProfinetIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4047
4047
  /**
4048
4048
  * Get deployed BUS inputs/outputs service.
4049
4049
  * @summary Get Service
@@ -4051,7 +4051,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4051
4051
  * @param {*} [options] Override http request option.
4052
4052
  * @throws {RequiredError}
4053
4053
  */
4054
- getBusIOService(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<BusIOType, any>>;
4054
+ getBusIOService(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<BusIOType, any>>;
4055
4055
  /**
4056
4056
  * Get the current state of the BUS Inputs/Outputs service.
4057
4057
  * @summary State
@@ -4059,7 +4059,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4059
4059
  * @param {*} [options] Override http request option.
4060
4060
  * @throws {RequiredError}
4061
4061
  */
4062
- getBusIOState(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<BusIOsState, any>>;
4062
+ getBusIOState(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<BusIOsState, any>>;
4063
4063
  /**
4064
4064
  * 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).
4065
4065
  * @summary Get Input/Output Values
@@ -4068,7 +4068,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4068
4068
  * @param {*} [options] Override http request option.
4069
4069
  * @throws {RequiredError}
4070
4070
  */
4071
- getBusIOValues(cell: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IOValue[], any>>;
4071
+ getBusIOValues(cell: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<IOValue[], any>>;
4072
4072
  /**
4073
4073
  * Get description of NOVA as a PROFINET device.
4074
4074
  * @summary Get PROFINET Description
@@ -4076,7 +4076,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4076
4076
  * @param {*} [options] Override http request option.
4077
4077
  * @throws {RequiredError}
4078
4078
  */
4079
- getProfinetDescription(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProfinetDescription, any>>;
4079
+ getProfinetDescription(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ProfinetDescription, any>>;
4080
4080
  /**
4081
4081
  * 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.
4082
4082
  * @summary PROFINET Inputs/Outputs to File
@@ -4086,7 +4086,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4086
4086
  * @param {*} [options] Override http request option.
4087
4087
  * @throws {RequiredError}
4088
4088
  */
4089
- getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string, any>>;
4089
+ getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string, any>>;
4090
4090
  /**
4091
4091
  * 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.
4092
4092
  * @summary List Descriptions
@@ -4094,7 +4094,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4094
4094
  * @param {*} [options] Override http request option.
4095
4095
  * @throws {RequiredError}
4096
4096
  */
4097
- listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<BusIODescription[], any>>;
4097
+ listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<BusIODescription[], any>>;
4098
4098
  /**
4099
4099
  * 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).
4100
4100
  * @summary List MODBUS Input/Output Configuration
@@ -4102,7 +4102,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4102
4102
  * @param {*} [options] Override http request option.
4103
4103
  * @throws {RequiredError}
4104
4104
  */
4105
- listModbusIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ModbusIO[], any>>;
4105
+ listModbusIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ModbusIO[], any>>;
4106
4106
  /**
4107
4107
  * 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.
4108
4108
  * @summary List PROFINET Input/Output Configuration
@@ -4110,7 +4110,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4110
4110
  * @param {*} [options] Override http request option.
4111
4111
  * @throws {RequiredError}
4112
4112
  */
4113
- listProfinetIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProfinetIO[], any>>;
4113
+ listProfinetIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ProfinetIO[], any>>;
4114
4114
  /**
4115
4115
  * 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.
4116
4116
  * @summary Set Output Values
@@ -4119,7 +4119,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4119
4119
  * @param {*} [options] Override http request option.
4120
4120
  * @throws {RequiredError}
4121
4121
  */
4122
- setBusIOValues(cell: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4122
+ setBusIOValues(cell: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4123
4123
  /**
4124
4124
  * 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.
4125
4125
  * @summary Set PROFINET Inputs/Outputs from File
@@ -4128,7 +4128,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4128
4128
  * @param {*} [options] Override http request option.
4129
4129
  * @throws {RequiredError}
4130
4130
  */
4131
- setProfinetIOsFromFile(cell: string, profinetInputOutputConfig: ProfinetInputOutputConfig, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4131
+ setProfinetIOsFromFile(cell: string, profinetInputOutputConfig: ProfinetInputOutputConfig, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4132
4132
  }
4133
4133
  /**
4134
4134
  * CellApi - axios parameter creator
@@ -4337,7 +4337,7 @@ declare class CellApi extends BaseAPI {
4337
4337
  * @param {*} [options] Override http request option.
4338
4338
  * @throws {RequiredError}
4339
4339
  */
4340
- deleteCell(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4340
+ deleteCell(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4341
4341
  /**
4342
4342
  * 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.
4343
4343
  * @summary Add Cell
@@ -4346,7 +4346,7 @@ declare class CellApi extends BaseAPI {
4346
4346
  * @param {*} [options] Override http request option.
4347
4347
  * @throws {RequiredError}
4348
4348
  */
4349
- deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4349
+ deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4350
4350
  /**
4351
4351
  * List all cell resources.
4352
4352
  * @summary Configuration
@@ -4354,7 +4354,7 @@ declare class CellApi extends BaseAPI {
4354
4354
  * @param {*} [options] Override http request option.
4355
4355
  * @throws {RequiredError}
4356
4356
  */
4357
- getCell(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Cell, any>>;
4357
+ getCell(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Cell, any>>;
4358
4358
  /**
4359
4359
  * List the status of all cell resources.
4360
4360
  * @summary Service Status
@@ -4362,14 +4362,14 @@ declare class CellApi extends BaseAPI {
4362
4362
  * @param {*} [options] Override http request option.
4363
4363
  * @throws {RequiredError}
4364
4364
  */
4365
- getCellStatus(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ServiceStatusResponse, any>>;
4365
+ getCellStatus(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ServiceStatusResponse, any>>;
4366
4366
  /**
4367
4367
  * List all deployed cell names. If no cells are deployed, an empty list is returned.
4368
4368
  * @summary List Cells
4369
4369
  * @param {*} [options] Override http request option.
4370
4370
  * @throws {RequiredError}
4371
4371
  */
4372
- listCells(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
4372
+ listCells(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
4373
4373
  /**
4374
4374
  * Deactivate or activate the services of a cell.
4375
4375
  * @summary Operating State
@@ -4378,7 +4378,7 @@ declare class CellApi extends BaseAPI {
4378
4378
  * @param {*} [options] Override http request option.
4379
4379
  * @throws {RequiredError}
4380
4380
  */
4381
- setCellStatus(cell: string, operatingState: OperatingState, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4381
+ setCellStatus(cell: string, operatingState: OperatingState, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4382
4382
  /**
4383
4383
  * Update the definition of the entire Cell.
4384
4384
  * @summary Update Configuration
@@ -4388,7 +4388,7 @@ declare class CellApi extends BaseAPI {
4388
4388
  * @param {*} [options] Override http request option.
4389
4389
  * @throws {RequiredError}
4390
4390
  */
4391
- updateCell(cell: string, cell2: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4391
+ updateCell(cell: string, cell2: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4392
4392
  }
4393
4393
  /**
4394
4394
  * ControllerApi - axios parameter creator
@@ -4826,7 +4826,7 @@ declare class ControllerApi extends BaseAPI {
4826
4826
  * @param {*} [options] Override http request option.
4827
4827
  * @throws {RequiredError}
4828
4828
  */
4829
- addRobotController(cell: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4829
+ addRobotController(cell: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4830
4830
  /**
4831
4831
  * Delete all robot controllers from the cell. To replace all robot controllers in a cell, use this endpoint in combination with [addRobotController](addRobotController).
4832
4832
  * @summary Clear Robot Controllers
@@ -4835,7 +4835,7 @@ declare class ControllerApi extends BaseAPI {
4835
4835
  * @param {*} [options] Override http request option.
4836
4836
  * @throws {RequiredError}
4837
4837
  */
4838
- clearRobotControllers(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4838
+ clearRobotControllers(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4839
4839
  /**
4840
4840
  * Delete a robot controller from the cell.
4841
4841
  * @summary Delete Robot Controller
@@ -4845,7 +4845,7 @@ declare class ControllerApi extends BaseAPI {
4845
4845
  * @param {*} [options] Override http request option.
4846
4846
  * @throws {RequiredError}
4847
4847
  */
4848
- deleteRobotController(cell: string, controller: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4848
+ deleteRobotController(cell: string, controller: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4849
4849
  /**
4850
4850
  * 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.
4851
4851
  * @summary Description
@@ -4854,7 +4854,7 @@ declare class ControllerApi extends BaseAPI {
4854
4854
  * @param {*} [options] Override http request option.
4855
4855
  * @throws {RequiredError}
4856
4856
  */
4857
- getControllerDescription(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ControllerDescription, any>>;
4857
+ getControllerDescription(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ControllerDescription, any>>;
4858
4858
  /**
4859
4859
  * 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.
4860
4860
  * @summary Coordinate System
@@ -4865,7 +4865,7 @@ declare class ControllerApi extends BaseAPI {
4865
4865
  * @param {*} [options] Override http request option.
4866
4866
  * @throws {RequiredError}
4867
4867
  */
4868
- getCoordinateSystem(cell: string, controller: string, coordinateSystem: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem, any>>;
4868
+ getCoordinateSystem(cell: string, controller: string, coordinateSystem: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CoordinateSystem, any>>;
4869
4869
  /**
4870
4870
  * Get the current state of a robot controller.
4871
4871
  * @summary State
@@ -4874,7 +4874,7 @@ declare class ControllerApi extends BaseAPI {
4874
4874
  * @param {*} [options] Override http request option.
4875
4875
  * @throws {RequiredError}
4876
4876
  */
4877
- getCurrentRobotControllerState(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotControllerState, any>>;
4877
+ getCurrentRobotControllerState(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<RobotControllerState, any>>;
4878
4878
  /**
4879
4879
  * Get the configuration for a robot controller.
4880
4880
  * @summary Robot Controller
@@ -4883,7 +4883,7 @@ declare class ControllerApi extends BaseAPI {
4883
4883
  * @param {*} [options] Override http request option.
4884
4884
  * @throws {RequiredError}
4885
4885
  */
4886
- getRobotController(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotController, any>>;
4886
+ getRobotController(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<RobotController, any>>;
4887
4887
  /**
4888
4888
  * 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.
4889
4889
  * @summary Virtual Controller Configuration
@@ -4892,7 +4892,7 @@ declare class ControllerApi extends BaseAPI {
4892
4892
  * @param {*} [options] Override http request option.
4893
4893
  * @throws {RequiredError}
4894
4894
  */
4895
- getVirtualControllerConfiguration(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<VirtualRobotConfiguration, any>>;
4895
+ getVirtualControllerConfiguration(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<VirtualRobotConfiguration, any>>;
4896
4896
  /**
4897
4897
  * 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.
4898
4898
  * @summary List Coordinate Systems
@@ -4902,7 +4902,7 @@ declare class ControllerApi extends BaseAPI {
4902
4902
  * @param {*} [options] Override http request option.
4903
4903
  * @throws {RequiredError}
4904
4904
  */
4905
- listCoordinateSystems(cell: string, controller: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem[], any>>;
4905
+ listCoordinateSystems(cell: string, controller: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CoordinateSystem[], any>>;
4906
4906
  /**
4907
4907
  * List the names of all deployed robot controllers.
4908
4908
  * @summary List Robot Controllers
@@ -4910,7 +4910,7 @@ declare class ControllerApi extends BaseAPI {
4910
4910
  * @param {*} [options] Override http request option.
4911
4911
  * @throws {RequiredError}
4912
4912
  */
4913
- listRobotControllers(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
4913
+ listRobotControllers(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
4914
4914
  /**
4915
4915
  * 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.
4916
4916
  * @summary Set Default Mode
@@ -4920,7 +4920,7 @@ declare class ControllerApi extends BaseAPI {
4920
4920
  * @param {*} [options] Override http request option.
4921
4921
  * @throws {RequiredError}
4922
4922
  */
4923
- setDefaultMode(cell: string, controller: string, mode: SettableRobotSystemMode, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4923
+ setDefaultMode(cell: string, controller: string, mode: SettableRobotSystemMode, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4924
4924
  /**
4925
4925
  * <!-- 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.
4926
4926
  * @summary Stream Free Drive
@@ -4930,7 +4930,7 @@ declare class ControllerApi extends BaseAPI {
4930
4930
  * @param {*} [options] Override http request option.
4931
4931
  * @throws {RequiredError}
4932
4932
  */
4933
- streamFreeDrive(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotControllerState, any>>;
4933
+ streamFreeDrive(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<RobotControllerState, any>>;
4934
4934
  /**
4935
4935
  * <!-- 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.
4936
4936
  * @summary Stream State
@@ -4941,7 +4941,7 @@ declare class ControllerApi extends BaseAPI {
4941
4941
  * @param {*} [options] Override http request option.
4942
4942
  * @throws {RequiredError}
4943
4943
  */
4944
- streamRobotControllerState(cell: string, controller: string, responseRate?: number, addControllerTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotControllerState, any>>;
4944
+ streamRobotControllerState(cell: string, controller: string, responseRate?: number, addControllerTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<RobotControllerState, any>>;
4945
4945
  /**
4946
4946
  * 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).
4947
4947
  * @summary Update Robot Controller
@@ -4952,7 +4952,7 @@ declare class ControllerApi extends BaseAPI {
4952
4952
  * @param {*} [options] Override http request option.
4953
4953
  * @throws {RequiredError}
4954
4954
  */
4955
- updateRobotController(cell: string, controller: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4955
+ updateRobotController(cell: string, controller: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4956
4956
  }
4957
4957
  /**
4958
4958
  * ControllerInputsOutputsApi - axios parameter creator
@@ -5144,7 +5144,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
5144
5144
  * @param {*} [options] Override http request option.
5145
5145
  * @throws {RequiredError}
5146
5146
  */
5147
- listIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IODescription[], any>>;
5147
+ listIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<IODescription[], any>>;
5148
5148
  /**
5149
5149
  * 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).
5150
5150
  * @summary Get Input/Output Values
@@ -5154,7 +5154,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
5154
5154
  * @param {*} [options] Override http request option.
5155
5155
  * @throws {RequiredError}
5156
5156
  */
5157
- listIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IOValue[], any>>;
5157
+ listIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<IOValue[], any>>;
5158
5158
  /**
5159
5159
  * 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.
5160
5160
  * @summary Set Output Values
@@ -5164,7 +5164,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
5164
5164
  * @param {*} [options] Override http request option.
5165
5165
  * @throws {RequiredError}
5166
5166
  */
5167
- setOutputValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
5167
+ setOutputValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
5168
5168
  /**
5169
5169
  * <!-- 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.
5170
5170
  * @summary Stream Input/Output Values
@@ -5174,7 +5174,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
5174
5174
  * @param {*} [options] Override http request option.
5175
5175
  * @throws {RequiredError}
5176
5176
  */
5177
- streamIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<StreamIOValuesResponse, any>>;
5177
+ streamIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<StreamIOValuesResponse, any>>;
5178
5178
  /**
5179
5179
  * 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 ```
5180
5180
  * @summary Wait For
@@ -5184,7 +5184,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
5184
5184
  * @param {*} [options] Override http request option.
5185
5185
  * @throws {RequiredError}
5186
5186
  */
5187
- waitForIOEvent(cell: string, controller: string, waitForIOEventRequest: WaitForIOEventRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<boolean, any>>;
5187
+ waitForIOEvent(cell: string, controller: string, waitForIOEventRequest: WaitForIOEventRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<boolean, any>>;
5188
5188
  }
5189
5189
  /**
5190
5190
  * JoggingApi - axios parameter creator
@@ -5244,7 +5244,7 @@ declare class JoggingApi extends BaseAPI {
5244
5244
  * @param {*} [options] Override http request option.
5245
5245
  * @throws {RequiredError}
5246
5246
  */
5247
- executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ExecuteJoggingResponse, any>>;
5247
+ executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ExecuteJoggingResponse, any>>;
5248
5248
  }
5249
5249
  /**
5250
5250
  * KinematicsApi - axios parameter creator
@@ -5327,7 +5327,7 @@ declare class KinematicsApi extends BaseAPI {
5327
5327
  * @param {*} [options] Override http request option.
5328
5328
  * @throws {RequiredError}
5329
5329
  */
5330
- forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ForwardKinematicsResponse, any>>;
5330
+ forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ForwardKinematicsResponse, any>>;
5331
5331
  /**
5332
5332
  * Returns the reachable joint positions for a list of given poses.
5333
5333
  * @summary Inverse kinematics
@@ -5336,7 +5336,7 @@ declare class KinematicsApi extends BaseAPI {
5336
5336
  * @param {*} [options] Override http request option.
5337
5337
  * @throws {RequiredError}
5338
5338
  */
5339
- inverseKinematics(cell: string, inverseKinematicsRequest: InverseKinematicsRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<InverseKinematicsResponse, any>>;
5339
+ inverseKinematics(cell: string, inverseKinematicsRequest: InverseKinematicsRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<InverseKinematicsResponse, any>>;
5340
5340
  }
5341
5341
  /**
5342
5342
  * LicenseApi - axios parameter creator
@@ -5451,28 +5451,28 @@ declare class LicenseApi extends BaseAPI {
5451
5451
  * @param {*} [options] Override http request option.
5452
5452
  * @throws {RequiredError}
5453
5453
  */
5454
- activateLicense(activateLicenseRequest: ActivateLicenseRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<License, any>>;
5454
+ activateLicense(activateLicenseRequest: ActivateLicenseRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<License, any>>;
5455
5455
  /**
5456
5456
  * Deactivates active license.
5457
5457
  * @summary Deactivate license
5458
5458
  * @param {*} [options] Override http request option.
5459
5459
  * @throws {RequiredError}
5460
5460
  */
5461
- deactivateLicense(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
5461
+ deactivateLicense(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
5462
5462
  /**
5463
5463
  * Get information on the license used with the Wandelbots NOVA instance, e.g., licensed product, expiration date, license status.
5464
5464
  * @summary Get license
5465
5465
  * @param {*} [options] Override http request option.
5466
5466
  * @throws {RequiredError}
5467
5467
  */
5468
- getLicense(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<License, any>>;
5468
+ getLicense(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<License, any>>;
5469
5469
  /**
5470
5470
  * 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.
5471
5471
  * @summary Get license status
5472
5472
  * @param {*} [options] Override http request option.
5473
5473
  * @throws {RequiredError}
5474
5474
  */
5475
- getLicenseStatus(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<LicenseStatus, any>>;
5475
+ getLicenseStatus(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<LicenseStatus, any>>;
5476
5476
  }
5477
5477
  /**
5478
5478
  * MotionGroupApi - axios parameter creator
@@ -5602,7 +5602,7 @@ declare class MotionGroupApi extends BaseAPI {
5602
5602
  * @param {*} [options] Override http request option.
5603
5603
  * @throws {RequiredError}
5604
5604
  */
5605
- getCurrentMotionGroupState(cell: string, controller: string, motionGroup: string, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupState, any>>;
5605
+ getCurrentMotionGroupState(cell: string, controller: string, motionGroup: string, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<MotionGroupState, any>>;
5606
5606
  /**
5607
5607
  * 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.
5608
5608
  * @summary Description
@@ -5612,7 +5612,7 @@ declare class MotionGroupApi extends BaseAPI {
5612
5612
  * @param {*} [options] Override http request option.
5613
5613
  * @throws {RequiredError}
5614
5614
  */
5615
- getMotionGroupDescription(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupDescription, any>>;
5615
+ getMotionGroupDescription(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<MotionGroupDescription, any>>;
5616
5616
  /**
5617
5617
  * <!-- theme: success --> > Websocket endpoint Receive updates of the motion group state. The stream will be closed from the server if the controller is disconnected.
5618
5618
  * @summary Stream State
@@ -5624,7 +5624,7 @@ declare class MotionGroupApi extends BaseAPI {
5624
5624
  * @param {*} [options] Override http request option.
5625
5625
  * @throws {RequiredError}
5626
5626
  */
5627
- streamMotionGroupState(cell: string, controller: string, motionGroup: string, responseRate?: number, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupState, any>>;
5627
+ streamMotionGroupState(cell: string, controller: string, motionGroup: string, responseRate?: number, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<MotionGroupState, any>>;
5628
5628
  }
5629
5629
  /**
5630
5630
  * MotionGroupModelsApi - axios parameter creator
@@ -5749,7 +5749,7 @@ declare class MotionGroupModelsApi extends BaseAPI {
5749
5749
  * @param {*} [options] Override http request option.
5750
5750
  * @throws {RequiredError}
5751
5751
  */
5752
- getMotionGroupCollisionModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
5752
+ getMotionGroupCollisionModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
5753
5753
  [key: string]: Collider;
5754
5754
  }[], any>>;
5755
5755
  /**
@@ -5759,14 +5759,14 @@ declare class MotionGroupModelsApi extends BaseAPI {
5759
5759
  * @param {*} [options] Override http request option.
5760
5760
  * @throws {RequiredError}
5761
5761
  */
5762
- getMotionGroupGlbModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<File, any>>;
5762
+ getMotionGroupGlbModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<File, any>>;
5763
5763
  /**
5764
5764
  * Returns the list of supported motion group models.
5765
5765
  * @summary Motion Group Models
5766
5766
  * @param {*} [options] Override http request option.
5767
5767
  * @throws {RequiredError}
5768
5768
  */
5769
- getMotionGroupModels(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
5769
+ getMotionGroupModels(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
5770
5770
  /**
5771
5771
  * Returns the USD scene model for the specified motion group model. See [getMotionGroupModels](getMotionGroupModels) for supported identifiers.
5772
5772
  * @summary Download USD Model
@@ -5774,7 +5774,7 @@ declare class MotionGroupModelsApi extends BaseAPI {
5774
5774
  * @param {*} [options] Override http request option.
5775
5775
  * @throws {RequiredError}
5776
5776
  */
5777
- getMotionGroupUsdModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<File, any>>;
5777
+ getMotionGroupUsdModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<File, any>>;
5778
5778
  }
5779
5779
  /**
5780
5780
  * ProgramApi - axios parameter creator
@@ -5911,7 +5911,7 @@ declare class ProgramApi extends BaseAPI {
5911
5911
  * @param {*} [options] Override http request option.
5912
5912
  * @throws {RequiredError}
5913
5913
  */
5914
- getProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Program, any>>;
5914
+ getProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Program, any>>;
5915
5915
  /**
5916
5916
  * <!-- theme: danger --> > **Experimental** List details of all existing programs.
5917
5917
  * @summary List programs
@@ -5919,7 +5919,7 @@ declare class ProgramApi extends BaseAPI {
5919
5919
  * @param {*} [options] Override http request option.
5920
5920
  * @throws {RequiredError}
5921
5921
  */
5922
- listPrograms(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Program[], any>>;
5922
+ listPrograms(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Program[], any>>;
5923
5923
  /**
5924
5924
  * <!-- theme: danger --> > **Experimental** This endpoint starts a new program execution. The program will be executed asynchronously.
5925
5925
  * @summary Start the program
@@ -5929,7 +5929,7 @@ declare class ProgramApi extends BaseAPI {
5929
5929
  * @param {*} [options] Override http request option.
5930
5930
  * @throws {RequiredError}
5931
5931
  */
5932
- startProgram(cell: string, program: string, programStartRequest: ProgramStartRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProgramRun, any>>;
5932
+ startProgram(cell: string, program: string, programStartRequest: ProgramStartRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ProgramRun, any>>;
5933
5933
  /**
5934
5934
  * <!-- theme: danger --> > **Experimental** Stop a specific program run.
5935
5935
  * @summary Stop program run
@@ -5938,7 +5938,7 @@ declare class ProgramApi extends BaseAPI {
5938
5938
  * @param {*} [options] Override http request option.
5939
5939
  * @throws {RequiredError}
5940
5940
  */
5941
- stopProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
5941
+ stopProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
5942
5942
  }
5943
5943
  /**
5944
5944
  * RobotConfigurationsApi - axios parameter creator
@@ -5986,7 +5986,7 @@ declare class RobotConfigurationsApi extends BaseAPI {
5986
5986
  * @param {*} [options] Override http request option.
5987
5987
  * @throws {RequiredError}
5988
5988
  */
5989
- getRobotConfigurations(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
5989
+ getRobotConfigurations(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
5990
5990
  }
5991
5991
  /**
5992
5992
  * StoreCollisionComponentsApi - axios parameter creator
@@ -6459,7 +6459,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6459
6459
  * @param {*} [options] Override http request option.
6460
6460
  * @throws {RequiredError}
6461
6461
  */
6462
- deleteStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
6462
+ deleteStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
6463
6463
  /**
6464
6464
  * Deletes the stored link chain. <!-- theme: danger --> > This will delete persistently stored data.
6465
6465
  * @summary Delete Link Chain
@@ -6468,7 +6468,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6468
6468
  * @param {*} [options] Override http request option.
6469
6469
  * @throws {RequiredError}
6470
6470
  */
6471
- deleteStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
6471
+ deleteStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
6472
6472
  /**
6473
6473
  * Deletes the stored tool. <!-- theme: danger --> > This will delete persistently stored data.
6474
6474
  * @summary Delete Tool
@@ -6477,7 +6477,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6477
6477
  * @param {*} [options] Override http request option.
6478
6478
  * @throws {RequiredError}
6479
6479
  */
6480
- deleteStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
6480
+ deleteStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
6481
6481
  /**
6482
6482
  * Returns the collider.
6483
6483
  * @summary Get Collider
@@ -6486,7 +6486,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6486
6486
  * @param {*} [options] Override http request option.
6487
6487
  * @throws {RequiredError}
6488
6488
  */
6489
- getStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Collider, any>>;
6489
+ getStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Collider, any>>;
6490
6490
  /**
6491
6491
  * Returns the collision link chain.
6492
6492
  * @summary Get Link Chain
@@ -6495,7 +6495,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6495
6495
  * @param {*} [options] Override http request option.
6496
6496
  * @throws {RequiredError}
6497
6497
  */
6498
- getStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6498
+ getStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6499
6499
  [key: string]: Collider;
6500
6500
  }[], any>>;
6501
6501
  /**
@@ -6506,7 +6506,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6506
6506
  * @param {*} [options] Override http request option.
6507
6507
  * @throws {RequiredError}
6508
6508
  */
6509
- getStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6509
+ getStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6510
6510
  [key: string]: Collider;
6511
6511
  }, any>>;
6512
6512
  /**
@@ -6516,7 +6516,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6516
6516
  * @param {*} [options] Override http request option.
6517
6517
  * @throws {RequiredError}
6518
6518
  */
6519
- listCollisionLinkChains(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6519
+ listCollisionLinkChains(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6520
6520
  [key: string]: {
6521
6521
  [key: string]: Collider;
6522
6522
  }[];
@@ -6528,7 +6528,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6528
6528
  * @param {*} [options] Override http request option.
6529
6529
  * @throws {RequiredError}
6530
6530
  */
6531
- listCollisionLinkChainsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
6531
+ listCollisionLinkChainsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
6532
6532
  /**
6533
6533
  * Returns all stored colliders.
6534
6534
  * @summary List Colliders
@@ -6536,7 +6536,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6536
6536
  * @param {*} [options] Override http request option.
6537
6537
  * @throws {RequiredError}
6538
6538
  */
6539
- listStoredColliders(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6539
+ listStoredColliders(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6540
6540
  [key: string]: Collider;
6541
6541
  }, any>>;
6542
6542
  /**
@@ -6546,7 +6546,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6546
6546
  * @param {*} [options] Override http request option.
6547
6547
  * @throws {RequiredError}
6548
6548
  */
6549
- listStoredCollidersKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
6549
+ listStoredCollidersKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
6550
6550
  /**
6551
6551
  * Returns the list of stored tools.
6552
6552
  * @summary List Tools
@@ -6554,7 +6554,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6554
6554
  * @param {*} [options] Override http request option.
6555
6555
  * @throws {RequiredError}
6556
6556
  */
6557
- listStoredCollisionTools(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6557
+ listStoredCollisionTools(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6558
6558
  [key: string]: {
6559
6559
  [key: string]: Collider;
6560
6560
  };
@@ -6566,7 +6566,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6566
6566
  * @param {*} [options] Override http request option.
6567
6567
  * @throws {RequiredError}
6568
6568
  */
6569
- listStoredCollisionToolsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
6569
+ listStoredCollisionToolsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
6570
6570
  /**
6571
6571
  * Stores collider. - If the collider does not exist, it will be created. - If the collider exists, it will be updated.
6572
6572
  * @summary Store Collider
@@ -6576,7 +6576,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6576
6576
  * @param {*} [options] Override http request option.
6577
6577
  * @throws {RequiredError}
6578
6578
  */
6579
- storeCollider(cell: string, collider: string, collider2: Collider, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Collider, any>>;
6579
+ storeCollider(cell: string, collider: string, collider2: Collider, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Collider, any>>;
6580
6580
  /**
6581
6581
  * Stores link chain. - If the link chain does not exist, it will be created. - If the link chain exists, it will be updated.
6582
6582
  * @summary Store Link Chain
@@ -6588,7 +6588,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6588
6588
  */
6589
6589
  storeCollisionLinkChain(cell: string, linkChain: string, collider: Array<{
6590
6590
  [key: string]: Collider;
6591
- }>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6591
+ }>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6592
6592
  [key: string]: Collider;
6593
6593
  }[], any>>;
6594
6594
  /**
@@ -6602,7 +6602,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6602
6602
  */
6603
6603
  storeCollisionTool(cell: string, tool: string, requestBody: {
6604
6604
  [key: string]: Collider;
6605
- }, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6605
+ }, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6606
6606
  [key: string]: Collider;
6607
6607
  }, any>>;
6608
6608
  }
@@ -6769,7 +6769,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
6769
6769
  * @param {*} [options] Override http request option.
6770
6770
  * @throws {RequiredError}
6771
6771
  */
6772
- deleteStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
6772
+ deleteStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
6773
6773
  /**
6774
6774
  * Returns the stored collision setup.
6775
6775
  * @summary Get Collision Setup
@@ -6778,7 +6778,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
6778
6778
  * @param {*} [options] Override http request option.
6779
6779
  * @throws {RequiredError}
6780
6780
  */
6781
- getStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CollisionSetup, any>>;
6781
+ getStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CollisionSetup, any>>;
6782
6782
  /**
6783
6783
  * Returns a list of stored collision setups.
6784
6784
  * @summary List Collision Setups
@@ -6786,7 +6786,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
6786
6786
  * @param {*} [options] Override http request option.
6787
6787
  * @throws {RequiredError}
6788
6788
  */
6789
- listStoredCollisionSetups(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6789
+ listStoredCollisionSetups(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6790
6790
  [key: string]: CollisionSetup;
6791
6791
  }, any>>;
6792
6792
  /**
@@ -6796,7 +6796,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
6796
6796
  * @param {*} [options] Override http request option.
6797
6797
  * @throws {RequiredError}
6798
6798
  */
6799
- listStoredCollisionSetupsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
6799
+ listStoredCollisionSetupsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
6800
6800
  /**
6801
6801
  * Stores collision setup. - If the collision setup does not exist, it will be created. - If the collision setup exists, it will be updated.
6802
6802
  * @summary Store Collision Setup
@@ -6806,7 +6806,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
6806
6806
  * @param {*} [options] Override http request option.
6807
6807
  * @throws {RequiredError}
6808
6808
  */
6809
- storeCollisionSetup(cell: string, setup: string, collisionSetup: CollisionSetup, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CollisionSetup, any>>;
6809
+ storeCollisionSetup(cell: string, setup: string, collisionSetup: CollisionSetup, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CollisionSetup, any>>;
6810
6810
  }
6811
6811
  /**
6812
6812
  * StoreObjectApi - axios parameter creator
@@ -7002,7 +7002,7 @@ declare class StoreObjectApi extends BaseAPI {
7002
7002
  * @param {*} [options] Override http request option.
7003
7003
  * @throws {RequiredError}
7004
7004
  */
7005
- clearAllObjects(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
7005
+ clearAllObjects(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
7006
7006
  /**
7007
7007
  * Delete an object <!-- theme: danger --> > This will delete persistently stored data.
7008
7008
  * @summary Delete Object
@@ -7011,7 +7011,7 @@ declare class StoreObjectApi extends BaseAPI {
7011
7011
  * @param {*} [options] Override http request option.
7012
7012
  * @throws {RequiredError}
7013
7013
  */
7014
- deleteObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
7014
+ deleteObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
7015
7015
  /**
7016
7016
  * Returns content and metadata of a stored object.
7017
7017
  * @summary Get Object
@@ -7020,7 +7020,7 @@ declare class StoreObjectApi extends BaseAPI {
7020
7020
  * @param {*} [options] Override http request option.
7021
7021
  * @throws {RequiredError}
7022
7022
  */
7023
- getObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<File, any>>;
7023
+ getObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<File, any>>;
7024
7024
  /**
7025
7025
  * Returns metadata. Object content is not returned.
7026
7026
  * @summary Get Object Metadata
@@ -7029,7 +7029,7 @@ declare class StoreObjectApi extends BaseAPI {
7029
7029
  * @param {*} [options] Override http request option.
7030
7030
  * @throws {RequiredError}
7031
7031
  */
7032
- getObjectMetadata(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
7032
+ getObjectMetadata(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
7033
7033
  /**
7034
7034
  * List the keys for all objects.
7035
7035
  * @summary List all Object Keys
@@ -7037,7 +7037,7 @@ declare class StoreObjectApi extends BaseAPI {
7037
7037
  * @param {*} [options] Override http request option.
7038
7038
  * @throws {RequiredError}
7039
7039
  */
7040
- listAllObjectKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
7040
+ listAllObjectKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
7041
7041
  /**
7042
7042
  * 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.
7043
7043
  * @summary Store Object
@@ -7050,7 +7050,7 @@ declare class StoreObjectApi extends BaseAPI {
7050
7050
  */
7051
7051
  storeObject(cell: string, key: string, xMetadata?: {
7052
7052
  [key: string]: string;
7053
- }, anyValue?: any, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
7053
+ }, anyValue?: any, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
7054
7054
  }
7055
7055
  /**
7056
7056
  * SystemApi - axios parameter creator
@@ -7297,7 +7297,7 @@ declare class SystemApi extends BaseAPI {
7297
7297
  */
7298
7298
  backupConfiguration(resources?: Array<string>, metadata?: {
7299
7299
  [key: string]: string;
7300
- }, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<File, any>>;
7300
+ }, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<File, any>>;
7301
7301
  /**
7302
7302
  * Check if a more recent Wandelbots NOVA Version is available.
7303
7303
  * @summary Check update
@@ -7305,7 +7305,7 @@ declare class SystemApi extends BaseAPI {
7305
7305
  * @param {*} [options] Override http request option.
7306
7306
  * @throws {RequiredError}
7307
7307
  */
7308
- checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string, any>>;
7308
+ checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string, any>>;
7309
7309
  /**
7310
7310
  * 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.
7311
7311
  * @summary Retrieve Backup Status
@@ -7313,35 +7313,35 @@ declare class SystemApi extends BaseAPI {
7313
7313
  * @param {*} [options] Override http request option.
7314
7314
  * @throws {RequiredError}
7315
7315
  */
7316
- getConfigurationBackupStatus(operationId: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ConfigurationArchiveStatus, any>>;
7316
+ getConfigurationBackupStatus(operationId: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ConfigurationArchiveStatus, any>>;
7317
7317
  /**
7318
7318
  * 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.
7319
7319
  * @summary Download Diagnosis Package
7320
7320
  * @param {*} [options] Override http request option.
7321
7321
  * @throws {RequiredError}
7322
7322
  */
7323
- getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<File, any>>;
7323
+ getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<File, any>>;
7324
7324
  /**
7325
7325
  * Get the status of all system services.
7326
7326
  * @summary Wandelbots NOVA status
7327
7327
  * @param {*} [options] Override http request option.
7328
7328
  * @throws {RequiredError}
7329
7329
  */
7330
- getSystemStatus(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ServiceStatus[], any>>;
7330
+ getSystemStatus(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ServiceStatus[], any>>;
7331
7331
  /**
7332
7332
  * Get the current Wandelbots NOVA version.
7333
7333
  * @summary Wandelbots NOVA Version
7334
7334
  * @param {*} [options] Override http request option.
7335
7335
  * @throws {RequiredError}
7336
7336
  */
7337
- getSystemVersion(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string, any>>;
7337
+ getSystemVersion(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string, any>>;
7338
7338
  /**
7339
7339
  * Retrieves a list of all available configuration resources for backup purposes.
7340
7340
  * @summary List Configuration Resources
7341
7341
  * @param {*} [options] Override http request option.
7342
7342
  * @throws {RequiredError}
7343
7343
  */
7344
- listConfigurationResources(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ConfigurationResource[], any>>;
7344
+ listConfigurationResources(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ConfigurationResource[], any>>;
7345
7345
  /**
7346
7346
  * Restores a previously backed up configuration.
7347
7347
  * @summary Restore Configuration Backup
@@ -7350,7 +7350,7 @@ declare class SystemApi extends BaseAPI {
7350
7350
  * @param {*} [options] Override http request option.
7351
7351
  * @throws {RequiredError}
7352
7352
  */
7353
- restoreConfiguration(resources: Array<string>, body: File, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
7353
+ restoreConfiguration(resources: Array<string>, body: File, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
7354
7354
  /**
7355
7355
  * 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.
7356
7356
  * @summary Update Wandelbots NOVA version
@@ -7358,7 +7358,7 @@ declare class SystemApi extends BaseAPI {
7358
7358
  * @param {*} [options] Override http request option.
7359
7359
  * @throws {RequiredError}
7360
7360
  */
7361
- updateNovaVersion(updateNovaVersionRequest: UpdateNovaVersionRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
7361
+ updateNovaVersion(updateNovaVersionRequest: UpdateNovaVersionRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
7362
7362
  }
7363
7363
  /**
7364
7364
  * TrajectoryCachingApi - axios parameter creator
@@ -7532,7 +7532,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
7532
7532
  * @param {*} [options] Override http request option.
7533
7533
  * @throws {RequiredError}
7534
7534
  */
7535
- addTrajectory(cell: string, controller: string, addTrajectoryRequest: AddTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<AddTrajectoryResponse, any>>;
7535
+ addTrajectory(cell: string, controller: string, addTrajectoryRequest: AddTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<AddTrajectoryResponse, any>>;
7536
7536
  /**
7537
7537
  * Clear the trajectory cache.
7538
7538
  * @summary Clear Trajectories
@@ -7541,7 +7541,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
7541
7541
  * @param {*} [options] Override http request option.
7542
7542
  * @throws {RequiredError}
7543
7543
  */
7544
- clearTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
7544
+ clearTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
7545
7545
  /**
7546
7546
  * 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.
7547
7547
  * @summary Delete Trajectory
@@ -7551,7 +7551,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
7551
7551
  * @param {*} [options] Override http request option.
7552
7552
  * @throws {RequiredError}
7553
7553
  */
7554
- deleteTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
7554
+ deleteTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
7555
7555
  /**
7556
7556
  * Get a previously created trajectory from cache. Use [listTrajectories](listTrajectories) to list all cached trajectories.
7557
7557
  * @summary Get Trajectory
@@ -7561,7 +7561,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
7561
7561
  * @param {*} [options] Override http request option.
7562
7562
  * @throws {RequiredError}
7563
7563
  */
7564
- getTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<GetTrajectoryResponse, any>>;
7564
+ getTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<GetTrajectoryResponse, any>>;
7565
7565
  /**
7566
7566
  * 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.
7567
7567
  * @summary List Trajectories
@@ -7570,7 +7570,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
7570
7570
  * @param {*} [options] Override http request option.
7571
7571
  * @throws {RequiredError}
7572
7572
  */
7573
- listTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ListTrajectoriesResponse, any>>;
7573
+ listTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ListTrajectoriesResponse, any>>;
7574
7574
  }
7575
7575
  /**
7576
7576
  * TrajectoryExecutionApi - axios parameter creator
@@ -7630,7 +7630,7 @@ declare class TrajectoryExecutionApi extends BaseAPI {
7630
7630
  * @param {*} [options] Override http request option.
7631
7631
  * @throws {RequiredError}
7632
7632
  */
7633
- executeTrajectory(cell: string, controller: string, executeTrajectoryRequest: ExecuteTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ExecuteTrajectoryResponse, any>>;
7633
+ executeTrajectory(cell: string, controller: string, executeTrajectoryRequest: ExecuteTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ExecuteTrajectoryResponse, any>>;
7634
7634
  }
7635
7635
  /**
7636
7636
  * TrajectoryPlanningApi - axios parameter creator
@@ -7713,7 +7713,7 @@ declare class TrajectoryPlanningApi extends BaseAPI {
7713
7713
  * @param {*} [options] Override http request option.
7714
7714
  * @throws {RequiredError}
7715
7715
  */
7716
- planCollisionFree(cell: string, planCollisionFreeRequest: PlanCollisionFreeRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<PlanCollisionFreeResponse, any>>;
7716
+ planCollisionFree(cell: string, planCollisionFreeRequest: PlanCollisionFreeRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<PlanCollisionFreeResponse, any>>;
7717
7717
  /**
7718
7718
  * 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.
7719
7719
  * @summary Plan Trajectory
@@ -7722,7 +7722,7 @@ declare class TrajectoryPlanningApi extends BaseAPI {
7722
7722
  * @param {*} [options] Override http request option.
7723
7723
  * @throws {RequiredError}
7724
7724
  */
7725
- planTrajectory(cell: string, planTrajectoryRequest: PlanTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<PlanTrajectoryResponse, any>>;
7725
+ planTrajectory(cell: string, planTrajectoryRequest: PlanTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<PlanTrajectoryResponse, any>>;
7726
7726
  }
7727
7727
  /**
7728
7728
  * VersionApi - axios parameter creator
@@ -7770,7 +7770,7 @@ declare class VersionApi extends BaseAPI {
7770
7770
  * @param {*} [options] Override http request option.
7771
7771
  * @throws {RequiredError}
7772
7772
  */
7773
- getApiVersion(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ApiVersion, any>>;
7773
+ getApiVersion(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ApiVersion, any>>;
7774
7774
  }
7775
7775
  /**
7776
7776
  * VirtualControllerApi - axios parameter creator
@@ -8260,7 +8260,7 @@ declare class VirtualControllerApi extends BaseAPI {
8260
8260
  * @param {*} [options] Override http request option.
8261
8261
  * @throws {RequiredError}
8262
8262
  */
8263
- addVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, coordinateSystemData: CoordinateSystemData, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8263
+ addVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, coordinateSystemData: CoordinateSystemData, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8264
8264
  /**
8265
8265
  * 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.
8266
8266
  * @summary Add TCP
@@ -8272,7 +8272,7 @@ declare class VirtualControllerApi extends BaseAPI {
8272
8272
  * @param {*} [options] Override http request option.
8273
8273
  * @throws {RequiredError}
8274
8274
  */
8275
- addVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, robotTcpData: RobotTcpData, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8275
+ addVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, robotTcpData: RobotTcpData, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8276
8276
  /**
8277
8277
  * 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.
8278
8278
  * @summary Delete Coordinate System
@@ -8283,7 +8283,7 @@ declare class VirtualControllerApi extends BaseAPI {
8283
8283
  * @param {*} [options] Override http request option.
8284
8284
  * @throws {RequiredError}
8285
8285
  */
8286
- deleteVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8286
+ deleteVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8287
8287
  /**
8288
8288
  * 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.
8289
8289
  * @summary Remove TCP
@@ -8294,7 +8294,7 @@ declare class VirtualControllerApi extends BaseAPI {
8294
8294
  * @param {*} [options] Override http request option.
8295
8295
  * @throws {RequiredError}
8296
8296
  */
8297
- deleteVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8297
+ deleteVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8298
8298
  /**
8299
8299
  * 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.
8300
8300
  * @summary Get Emergency Stop State
@@ -8303,7 +8303,7 @@ declare class VirtualControllerApi extends BaseAPI {
8303
8303
  * @param {*} [options] Override http request option.
8304
8304
  * @throws {RequiredError}
8305
8305
  */
8306
- getEmergencyStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Flag, any>>;
8306
+ getEmergencyStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Flag, any>>;
8307
8307
  /**
8308
8308
  * Get the current motion group state which provides values for the joints\' position, velocity and acceleration.
8309
8309
  * @summary Get Motion Group State
@@ -8313,7 +8313,7 @@ declare class VirtualControllerApi extends BaseAPI {
8313
8313
  * @param {*} [options] Override http request option.
8314
8314
  * @throws {RequiredError}
8315
8315
  */
8316
- getMotionGroupState(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupJoints, any>>;
8316
+ getMotionGroupState(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<MotionGroupJoints, any>>;
8317
8317
  /**
8318
8318
  * Gets information on the motion group.
8319
8319
  * @summary Motion Group Description
@@ -8322,7 +8322,7 @@ declare class VirtualControllerApi extends BaseAPI {
8322
8322
  * @param {*} [options] Override http request option.
8323
8323
  * @throws {RequiredError}
8324
8324
  */
8325
- getMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupInfo[], any>>;
8325
+ getMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<MotionGroupInfo[], any>>;
8326
8326
  /**
8327
8327
  * 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.
8328
8328
  * @summary Get Operation Mode
@@ -8331,7 +8331,7 @@ declare class VirtualControllerApi extends BaseAPI {
8331
8331
  * @param {*} [options] Override http request option.
8332
8332
  * @throws {RequiredError}
8333
8333
  */
8334
- getOperationMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<OpMode, any>>;
8334
+ getOperationMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<OpMode, any>>;
8335
8335
  /**
8336
8336
  * Gets motion group mounting. The motion group is based on the origin of the returned coordinate system.
8337
8337
  * @summary Get Mounting
@@ -8341,7 +8341,7 @@ declare class VirtualControllerApi extends BaseAPI {
8341
8341
  * @param {*} [options] Override http request option.
8342
8342
  * @throws {RequiredError}
8343
8343
  */
8344
- getVirtualControllerMounting(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem, any>>;
8344
+ getVirtualControllerMounting(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CoordinateSystem, any>>;
8345
8345
  /**
8346
8346
  * Lists all coordinate systems on the robot controller.
8347
8347
  * @summary List Coordinate Systems
@@ -8350,7 +8350,7 @@ declare class VirtualControllerApi extends BaseAPI {
8350
8350
  * @param {*} [options] Override http request option.
8351
8351
  * @throws {RequiredError}
8352
8352
  */
8353
- listVirtualControllerCoordinateSystems(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem[], any>>;
8353
+ listVirtualControllerCoordinateSystems(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CoordinateSystem[], any>>;
8354
8354
  /**
8355
8355
  * Lists TCPs of the motion group. An empty TCP list is valid, e.g., for external axes.
8356
8356
  * @summary List TCPs
@@ -8360,7 +8360,7 @@ declare class VirtualControllerApi extends BaseAPI {
8360
8360
  * @param {*} [options] Override http request option.
8361
8361
  * @throws {RequiredError}
8362
8362
  */
8363
- listVirtualControllerTcps(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotTcp[], any>>;
8363
+ listVirtualControllerTcps(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<RobotTcp[], any>>;
8364
8364
  /**
8365
8365
  * 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.
8366
8366
  * @summary Push or Release Emergency Stop
@@ -8370,7 +8370,7 @@ declare class VirtualControllerApi extends BaseAPI {
8370
8370
  * @param {*} [options] Override http request option.
8371
8371
  * @throws {RequiredError}
8372
8372
  */
8373
- setEmergencyStop(cell: string, controller: string, active?: boolean, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8373
+ setEmergencyStop(cell: string, controller: string, active?: boolean, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8374
8374
  /**
8375
8375
  * 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.
8376
8376
  * @summary Set Motion Group State
@@ -8381,7 +8381,7 @@ declare class VirtualControllerApi extends BaseAPI {
8381
8381
  * @param {*} [options] Override http request option.
8382
8382
  * @throws {RequiredError}
8383
8383
  */
8384
- setMotionGroupState(cell: string, controller: string, motionGroup: string, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8384
+ setMotionGroupState(cell: string, controller: string, motionGroup: string, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8385
8385
  /**
8386
8386
  * 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.
8387
8387
  * @summary Set Operation Mode
@@ -8391,7 +8391,7 @@ declare class VirtualControllerApi extends BaseAPI {
8391
8391
  * @param {*} [options] Override http request option.
8392
8392
  * @throws {RequiredError}
8393
8393
  */
8394
- setOperationMode(cell: string, controller: string, mode: OperationMode, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8394
+ setOperationMode(cell: string, controller: string, mode: OperationMode, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8395
8395
  /**
8396
8396
  * 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.
8397
8397
  * @summary Set Mounting
@@ -8402,7 +8402,7 @@ declare class VirtualControllerApi extends BaseAPI {
8402
8402
  * @param {*} [options] Override http request option.
8403
8403
  * @throws {RequiredError}
8404
8404
  */
8405
- setVirtualControllerMounting(cell: string, controller: string, motionGroup: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem, any>>;
8405
+ setVirtualControllerMounting(cell: string, controller: string, motionGroup: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CoordinateSystem, any>>;
8406
8406
  }
8407
8407
  /**
8408
8408
  * VirtualControllerBehaviorApi - axios parameter creator
@@ -8546,7 +8546,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
8546
8546
  * @param {*} [options] Override http request option.
8547
8547
  * @throws {RequiredError}
8548
8548
  */
8549
- externalJointsStream(cell: string, controller: string, externalJointStreamRequest: ExternalJointStreamRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ExternalJointStreamDatapoint[], any>>;
8549
+ externalJointsStream(cell: string, controller: string, externalJointStreamRequest: ExternalJointStreamRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ExternalJointStreamDatapoint[], any>>;
8550
8550
  /**
8551
8551
  * Get the cycle time of controller communication in [ms].
8552
8552
  * @summary Get Cycle Time
@@ -8555,7 +8555,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
8555
8555
  * @param {*} [options] Override http request option.
8556
8556
  * @throws {RequiredError}
8557
8557
  */
8558
- getCycleTime(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CycleTime, any>>;
8558
+ getCycleTime(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CycleTime, any>>;
8559
8559
  /**
8560
8560
  * Get the current virtual controller behavior. See [setVirtualControllerBehavior](setVirtualControllerBehavior) and the body for details.
8561
8561
  * @summary Get Behavior
@@ -8564,7 +8564,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
8564
8564
  * @param {*} [options] Override http request option.
8565
8565
  * @throws {RequiredError}
8566
8566
  */
8567
- getVirtualControllerBehavior(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Behavior, any>>;
8567
+ getVirtualControllerBehavior(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Behavior, any>>;
8568
8568
  /**
8569
8569
  * Set virtual controller behavior. See query parameters for details.
8570
8570
  * @summary Set Behavior
@@ -8574,7 +8574,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
8574
8574
  * @param {*} [options] Override http request option.
8575
8575
  * @throws {RequiredError}
8576
8576
  */
8577
- setVirtualControllerBehavior(cell: string, controller: string, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8577
+ setVirtualControllerBehavior(cell: string, controller: string, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8578
8578
  }
8579
8579
  /**
8580
8580
  * VirtualControllerInputsOutputsApi - axios parameter creator
@@ -8703,7 +8703,7 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
8703
8703
  * @param {*} [options] Override http request option.
8704
8704
  * @throws {RequiredError}
8705
8705
  */
8706
- listIOs(cell: string, controller: string, ios: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IOValue[], any>>;
8706
+ listIOs(cell: string, controller: string, ios: Array<string>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<IOValue[], any>>;
8707
8707
  /**
8708
8708
  * 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.
8709
8709
  * @summary List Descriptions
@@ -8716,7 +8716,7 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
8716
8716
  * @param {*} [options] Override http request option.
8717
8717
  * @throws {RequiredError}
8718
8718
  */
8719
- listVirtualControllerIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IODescription[], any>>;
8719
+ listVirtualControllerIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<IODescription[], any>>;
8720
8720
  /**
8721
8721
  * Sets a list of values of a virtual controller inputs/outputs.
8722
8722
  * @summary Set Input/Ouput Values
@@ -8726,7 +8726,7 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
8726
8726
  * @param {*} [options] Override http request option.
8727
8727
  * @throws {RequiredError}
8728
8728
  */
8729
- setIOValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8729
+ setIOValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8730
8730
  }
8731
8731
  //#endregion
8732
8732
  export { AbbController, AbbControllerEgmServer, AbbControllerKindEnum, ActivateLicenseRequest, AddTrajectoryError, AddTrajectoryErrorData, AddTrajectoryRequest, AddTrajectoryResponse, ApiVersion, App, ApplicationApi, ApplicationApiAxiosParamCreator, ApplicationApiFactory, ApplicationApiFp, BASE_PATH, BUSInputsOutputsApi, BUSInputsOutputsApiAxiosParamCreator, BUSInputsOutputsApiFactory, BUSInputsOutputsApiFp, BaseAPI, Behavior, BlendingAuto, BlendingAutoBlendingNameEnum, BlendingPosition, BlendingPositionBlendingNameEnum, BlendingSpace, BooleanValue, BooleanValueValueTypeEnum, Box, BoxBoxTypeEnum, BoxShapeTypeEnum, BusIODescription, BusIOModbusClient, BusIOModbusClientBusTypeEnum, BusIOModbusServer, BusIOModbusServerBusTypeEnum, BusIOModbusTCPClient, BusIOModbusTCPClientNetworkTypeEnum, BusIOModbusTCPServer, BusIOModbusTCPServerNetworkTypeEnum, BusIOModbusVirtual, BusIOModbusVirtualBusTypeEnum, BusIOProfinet, BusIOProfinetBusTypeEnum, BusIOProfinetDefaultRoute, BusIOProfinetIpConfig, BusIOProfinetNetwork, BusIOProfinetVirtual, BusIOProfinetVirtualBusTypeEnum, BusIOType, BusIOsState, BusIOsStateEnum, COLLECTION_FORMATS, Capsule, CapsuleShapeTypeEnum, CartesianLimits, Cell, CellApi, CellApiAxiosParamCreator, CellApiFactory, CellApiFp, Collider, ColliderShape, Collision, CollisionContact, CollisionError, CollisionFreeAlgorithm, CollisionSetup, Comparator, Configuration, ConfigurationArchiveStatus, ConfigurationArchiveStatusCreating, ConfigurationArchiveStatusCreatingStatusEnum, ConfigurationArchiveStatusError, ConfigurationArchiveStatusErrorStatusEnum, ConfigurationArchiveStatusSuccess, ConfigurationArchiveStatusSuccessStatusEnum, ConfigurationParameters, ConfigurationResource, ContainerEnvironmentInner, ContainerImage, ContainerImageSecretsInner, ContainerResources, ContainerStorage, ControllerApi, ControllerApiAxiosParamCreator, ControllerApiFactory, ControllerApiFp, ControllerDescription, ControllerInputsOutputsApi, ControllerInputsOutputsApiAxiosParamCreator, ControllerInputsOutputsApiFactory, ControllerInputsOutputsApiFp, ConvexHull, ConvexHullShapeTypeEnum, CoordinateSystem, CoordinateSystemData, CubicSplineParameter, CycleTime, Cylinder, CylinderShapeTypeEnum, DHParameter, Direction, ErrorInvalidJointCount, ErrorInvalidJointCountErrorFeedbackNameEnum, ErrorJointLimitExceeded, ErrorJointLimitExceededErrorFeedbackNameEnum, ErrorJointPositionCollision, ErrorJointPositionCollisionErrorFeedbackNameEnum, ErrorMaxIterationsExceeded, ErrorMaxIterationsExceededErrorFeedbackNameEnum, Execute, ExecuteDetails, ExecuteJoggingRequest, ExecuteJoggingResponse, ExecuteTrajectoryRequest, ExecuteTrajectoryResponse, ExternalJointStreamDatapoint, ExternalJointStreamRequest, FanucController, FanucControllerKindEnum, FeedbackCollision, FeedbackCollisionErrorFeedbackNameEnum, FeedbackJointLimitExceeded, FeedbackJointLimitExceededErrorFeedbackNameEnum, FeedbackOutOfWorkspace, FeedbackOutOfWorkspaceErrorFeedbackNameEnum, FeedbackSingularity, FeedbackSingularityErrorFeedbackNameEnum, Flag, FloatValue, FloatValueValueTypeEnum, ForwardKinematics422Response, ForwardKinematicsRequest, ForwardKinematicsResponse, ForwardKinematicsValidationError, GetTrajectoryResponse, HTTPValidationError, IOBooleanValue, IOBooleanValueValueTypeEnum, IOBoundary, IODescription, IODirection, IOFloatValue, IOFloatValueValueTypeEnum, IOIntegerValue, IOIntegerValueValueTypeEnum, IOOrigin, IOValue, IOValueType, ImageCredentials, InconsistentTrajectorySizeError, InconsistentTrajectorySizeErrorInconsistentTrajectorySize, InitializeJoggingRequest, InitializeJoggingRequestMessageTypeEnum, InitializeJoggingResponse, InitializeJoggingResponseKindEnum, InitializeMovementRequest, InitializeMovementRequestMessageTypeEnum, InitializeMovementRequestTrajectory, InitializeMovementResponse, InitializeMovementResponseKindEnum, IntegerValue, IntegerValueValueTypeEnum, InvalidDofError, InvalidDofErrorInvalidDof, InverseKinematics422Response, InverseKinematicsRequest, InverseKinematicsResponse, InverseKinematicsValidationError, InverseKinematicsValidationErrorAllOfData, JoggingApi, JoggingApiAxiosParamCreator, JoggingApiFactory, JoggingApiFp, JoggingDetails, JoggingDetailsKindEnum, JoggingDetailsState, JoggingPausedByUser, JoggingPausedByUserKindEnum, JoggingPausedNearCollision, JoggingPausedNearCollisionKindEnum, JoggingPausedNearJointLimit, JoggingPausedNearJointLimitKindEnum, JoggingPausedOnIO, JoggingPausedOnIOKindEnum, JoggingRunning, JoggingRunningKindEnum, JointLimitExceededError, JointLimits, JointTrajectory, JointVelocityRequest, JointVelocityRequestMessageTypeEnum, JointVelocityResponse, JointVelocityResponseKindEnum, KinematicsApi, KinematicsApiAxiosParamCreator, KinematicsApiFactory, KinematicsApiFp, KukaController, KukaControllerKindEnum, KukaControllerRsiServer, License, LicenseApi, LicenseApiAxiosParamCreator, LicenseApiFactory, LicenseApiFp, LicenseStatus, LicenseStatusEnum, LimitRange, LimitSet, LimitsOverride, ListTrajectoriesResponse, Manufacturer, MidpointInsertionAlgorithm, MidpointInsertionAlgorithmAlgorithmNameEnum, ModbusIO, ModbusIOArea, ModbusIOByteOrder, ModbusIOData, ModbusIOTypeEnum, ModelError, MotionCommand, MotionCommandBlending, MotionCommandPath, MotionGroupApi, MotionGroupApiAxiosParamCreator, MotionGroupApiFactory, MotionGroupApiFp, MotionGroupDescription, MotionGroupInfo, MotionGroupJoints, MotionGroupModelsApi, MotionGroupModelsApiAxiosParamCreator, MotionGroupModelsApiFactory, MotionGroupModelsApiFp, MotionGroupSetup, MotionGroupState, MotionGroupStateJointLimitReached, MovementErrorResponse, MovementErrorResponseKindEnum, NanValueError, NanValueErrorNanValue, OpMode, OperatingState, OperationLimits, OperationMode, OrientationType, PathCartesianPTP, PathCartesianPTPPathDefinitionNameEnum, PathCircle, PathCirclePathDefinitionNameEnum, PathCubicSpline, PathCubicSplinePathDefinitionNameEnum, PathJointPTP, PathJointPTPPathDefinitionNameEnum, PathLine, PathLinePathDefinitionNameEnum, PauseJoggingRequest, PauseJoggingRequestMessageTypeEnum, PauseJoggingResponse, PauseJoggingResponseKindEnum, PauseMovementRequest, PauseMovementRequestMessageTypeEnum, PauseMovementResponse, PauseMovementResponseKindEnum, PauseOnIO, Payload, Plan422Response, PlanCollisionFreeFailedResponse, PlanCollisionFreeRequest, PlanCollisionFreeResponse, PlanCollisionFreeResponseResponse, PlanTrajectoryFailedResponse, PlanTrajectoryFailedResponseErrorFeedback, PlanTrajectoryRequest, PlanTrajectoryResponse, PlanTrajectoryResponseResponse, PlanValidationError, PlanValidationErrorAllOfData, Plane, PlaneShapeTypeEnum, PlaybackSpeedRequest, PlaybackSpeedRequestMessageTypeEnum, PlaybackSpeedResponse, PlaybackSpeedResponseKindEnum, Pose, ProfinetDescription, ProfinetIO, ProfinetIOData, ProfinetIODirection, ProfinetIOTypeEnum, ProfinetInputOutputConfig, ProfinetSlotDescription, ProfinetSubSlotDescription, Program, ProgramApi, ProgramApiAxiosParamCreator, ProgramApiFactory, ProgramApiFp, ProgramRun, ProgramRunState, ProgramStartRequest, RRTConnectAlgorithm, RRTConnectAlgorithmAlgorithmNameEnum, Rectangle, RectangleShapeTypeEnum, RectangularCapsule, RectangularCapsuleShapeTypeEnum, ReleaseChannel, RequestArgs, RequiredError, RobotConfigurationsApi, RobotConfigurationsApiAxiosParamCreator, RobotConfigurationsApiFactory, RobotConfigurationsApiFp, 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, VirtualRobotConfiguration, WaitForIOEventRequest, YaskawaController, YaskawaControllerKindEnum, operationServerMap };