@wandelbots/nova-api 25.11.0-dev.31 → 25.11.0-dev.33

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
@@ -249,7 +249,7 @@ declare const Behavior: {
249
249
  type Behavior = typeof Behavior[keyof typeof Behavior];
250
250
  interface BlendingAuto {
251
251
  /**
252
- * Auto-blending is used to keep a constant velocity when blending between two motion commands. It changes the TCP path around the target point of the motion command. The value represents the percentage of the original velocity.
252
+ * Auto-blending is used to keep a constant velocity when blending between two motion commands. To use auto-blending, the TCP velocity limit must be set. It changes the TCP path around the target point of the motion command. The value represents the percentage of the original velocity. Auto-blending is always performed in cartesian space.
253
253
  */
254
254
  'min_velocity_in_percent'?: number;
255
255
  'blending_name': BlendingAutoBlendingNameEnum;
@@ -263,12 +263,44 @@ interface BlendingPosition {
263
263
  * Specifies the maximum radius in [mm] around the motion command\'s target point where the TCP path can be altered to blend the motion command into the following one. If auto-blending blends too much of the resulting trajectory, use position-blending to restrict the blending zone radius.
264
264
  */
265
265
  'position_zone_radius'?: number;
266
+ /**
267
+ * Specifies the maximum blending percentage based on the trajectory length in position space around the motion command\'s target point. Percentage indicated in 0.0 - 100.0.
268
+ */
269
+ 'position_zone_percentage'?: number;
270
+ /**
271
+ * Specifies the maximum radius in [rad] for orientation blending around the motion command\'s target orientation. At the target\'s orientation, the TCP orientation can be altered to blend into the following motion.
272
+ */
273
+ 'orientation_zone_radius'?: number;
274
+ /**
275
+ * Specifies the maximum blending percentage for orientation blending based on the trajectory length in orientation space. Percentage indicated in 0.0 - 100.0.
276
+ */
277
+ 'orientation_zone_percentage'?: number;
278
+ /**
279
+ * Specifies the maximum radius in [rad] for joint space blending around the motion command\'s target joint configuration. At the target joint configuration, the joint path can be altered to blend into the following motion.
280
+ */
281
+ 'joints_zone_radius'?: number;
282
+ /**
283
+ * Specifies the maximum blending percentage for joint space blending based on the trajectory length in joint space. Percentage indicated in 0.0 to 100.0.
284
+ */
285
+ 'joints_zone_percentage'?: number;
286
+ /**
287
+ * Defines the space in which blending is performed.
288
+ */
289
+ 'space'?: BlendingSpace;
266
290
  'blending_name': BlendingPositionBlendingNameEnum;
267
291
  }
268
292
  declare const BlendingPositionBlendingNameEnum: {
269
293
  readonly BlendingPosition: "BlendingPosition";
270
294
  };
271
295
  type BlendingPositionBlendingNameEnum = typeof BlendingPositionBlendingNameEnum[keyof typeof BlendingPositionBlendingNameEnum];
296
+ /**
297
+ * Defines the space in which blending is performed. - `JOINT`: Zone blending is performed in joint space - `CARTESIAN`: Auto-blending is performed in cartesian space
298
+ */
299
+ declare const BlendingSpace: {
300
+ readonly Joint: "JOINT";
301
+ readonly Cartesian: "CARTESIAN";
302
+ };
303
+ type BlendingSpace = typeof BlendingSpace[keyof typeof BlendingSpace];
272
304
  /**
273
305
  * Value of a digital input/output.
274
306
  */
@@ -3518,7 +3550,7 @@ declare class ApplicationApi extends BaseAPI {
3518
3550
  * @param {*} [options] Override http request option.
3519
3551
  * @throws {RequiredError}
3520
3552
  */
3521
- addApp(cell: string, app: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
3553
+ addApp(cell: string, app: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
3522
3554
  /**
3523
3555
  * Delete all GUI applications from the cell.
3524
3556
  * @summary Clear Applications
@@ -3527,7 +3559,7 @@ declare class ApplicationApi extends BaseAPI {
3527
3559
  * @param {*} [options] Override http request option.
3528
3560
  * @throws {RequiredError}
3529
3561
  */
3530
- clearApps(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
3562
+ clearApps(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
3531
3563
  /**
3532
3564
  * Delete a GUI application from the cell.
3533
3565
  * @summary Delete Application
@@ -3537,7 +3569,7 @@ declare class ApplicationApi extends BaseAPI {
3537
3569
  * @param {*} [options] Override http request option.
3538
3570
  * @throws {RequiredError}
3539
3571
  */
3540
- deleteApp(cell: string, app: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
3572
+ deleteApp(cell: string, app: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
3541
3573
  /**
3542
3574
  * Get the configuration for an active GUI application in the cell. To update the configuration of a GUI application in the cell, use this configuration with [updateApp](updateApp).
3543
3575
  * @summary Configuration
@@ -3546,7 +3578,7 @@ declare class ApplicationApi extends BaseAPI {
3546
3578
  * @param {*} [options] Override http request option.
3547
3579
  * @throws {RequiredError}
3548
3580
  */
3549
- getApp(cell: string, app: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<App, any>>;
3581
+ getApp(cell: string, app: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<App, any>>;
3550
3582
  /**
3551
3583
  * List all GUI applications that have been added to a cell with [addApp](addApp). If the cell does not contain GUI applications, the list is returned empty.
3552
3584
  * @summary List Applications
@@ -3554,7 +3586,7 @@ declare class ApplicationApi extends BaseAPI {
3554
3586
  * @param {*} [options] Override http request option.
3555
3587
  * @throws {RequiredError}
3556
3588
  */
3557
- listApps(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
3589
+ listApps(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
3558
3590
  /**
3559
3591
  * Update the configuration of a GUI application in the cell.
3560
3592
  * @summary Update Configuration
@@ -3565,7 +3597,7 @@ declare class ApplicationApi extends BaseAPI {
3565
3597
  * @param {*} [options] Override http request option.
3566
3598
  * @throws {RequiredError}
3567
3599
  */
3568
- updateApp(cell: string, app: string, app2: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
3600
+ updateApp(cell: string, app: string, app2: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
3569
3601
  }
3570
3602
  /**
3571
3603
  * BUSInputsOutputsApi - axios parameter creator
@@ -4069,7 +4101,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4069
4101
  * @param {*} [options] Override http request option.
4070
4102
  * @throws {RequiredError}
4071
4103
  */
4072
- addBusIOService(cell: string, busIOType: BusIOType, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4104
+ addBusIOService(cell: string, busIOType: BusIOType, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4073
4105
  /**
4074
4106
  * Adds an input/output variable to or updates an input/output variable on the MODBUS device, e.g., NOVA\'s MODBUS service. The inputs/outputs map variables to specific memory addresses in the process image. The NOVA\'s MODBUS service\'s configuration can be viewed via [listModbusIOs](listModbusIOs).
4075
4107
  * @summary Add MODBUS Input/Output
@@ -4079,7 +4111,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4079
4111
  * @param {*} [options] Override http request option.
4080
4112
  * @throws {RequiredError}
4081
4113
  */
4082
- addModbusIO(cell: string, io: string, modbusIOData: ModbusIOData, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4114
+ addModbusIO(cell: string, io: string, modbusIOData: ModbusIOData, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4083
4115
  /**
4084
4116
  * Adds an input/output variable to or updates an input/output variable on the PROFINET device, e.g., NOVA\'s PROFINET service. The inputs/outputs map variables to specific memory addresses in the process image. The default process image has buffer lengths of 64 bytes for input and output. - The size of the buffer is determined by the `config_file_content` that is passed in [addBusIOService](addBusIOService) and has to be in accordance with the GSDML file describing the PROFINET device. The PROFINET controller as well as NOVA\'s PROFINET service use an input/output variable configuration to interpret the bits of the input/output process image. - The NOVA\'s PROFINET service\'s configuration can be viewed via [listProfinetIOs](listProfinetIOs). For the PROFINET controller, e.g., a connected PLC, refer to the corresponding third party software, e.g., TIA portal).
4085
4117
  * @summary Add PROFINET Input/Output
@@ -4089,7 +4121,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4089
4121
  * @param {*} [options] Override http request option.
4090
4122
  * @throws {RequiredError}
4091
4123
  */
4092
- addProfinetIO(cell: string, io: string, profinetIOData: ProfinetIOData, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4124
+ addProfinetIO(cell: string, io: string, profinetIOData: ProfinetIOData, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4093
4125
  /**
4094
4126
  * Remove the BUS inputs/outputs service from the cell.
4095
4127
  * @summary Clear Service
@@ -4098,7 +4130,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4098
4130
  * @param {*} [options] Override http request option.
4099
4131
  * @throws {RequiredError}
4100
4132
  */
4101
- clearBusIOService(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4133
+ clearBusIOService(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4102
4134
  /**
4103
4135
  * Removes all input/output variable configurations from the MODBUS device, e.g., NOVA\'s MODBUS service.
4104
4136
  * @summary Remove all MODBUS Input/Outputs
@@ -4106,7 +4138,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4106
4138
  * @param {*} [options] Override http request option.
4107
4139
  * @throws {RequiredError}
4108
4140
  */
4109
- deleteAllModbusIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4141
+ deleteAllModbusIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4110
4142
  /**
4111
4143
  * Removes all input/output variable configurations from the PROFINET device, e.g., NOVA\'s PROFINET service.
4112
4144
  * @summary Remove all PROFINET Input/Outputs
@@ -4114,7 +4146,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4114
4146
  * @param {*} [options] Override http request option.
4115
4147
  * @throws {RequiredError}
4116
4148
  */
4117
- deleteAllProfinetIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4149
+ deleteAllProfinetIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4118
4150
  /**
4119
4151
  * Removes an input/output variable configuration from the MODBUS device, e.g., NOVA\'s MODBUS service.
4120
4152
  * @summary Remove MODBUS Input/Ouptut
@@ -4123,7 +4155,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4123
4155
  * @param {*} [options] Override http request option.
4124
4156
  * @throws {RequiredError}
4125
4157
  */
4126
- deleteModbusIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4158
+ deleteModbusIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4127
4159
  /**
4128
4160
  * Removes an input/output variable configuration from the PROFINET device, e.g., NOVA\'s PROFINET service.
4129
4161
  * @summary Remove PROFINET Input/Ouptut
@@ -4132,7 +4164,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4132
4164
  * @param {*} [options] Override http request option.
4133
4165
  * @throws {RequiredError}
4134
4166
  */
4135
- deleteProfinetIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4167
+ deleteProfinetIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4136
4168
  /**
4137
4169
  * Get deployed BUS inputs/outputs service.
4138
4170
  * @summary Get Service
@@ -4140,7 +4172,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4140
4172
  * @param {*} [options] Override http request option.
4141
4173
  * @throws {RequiredError}
4142
4174
  */
4143
- getBusIOService(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<BusIOType, any>>;
4175
+ getBusIOService(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<BusIOType, any>>;
4144
4176
  /**
4145
4177
  * Get the current state of the BUS Inputs/Outputs service.
4146
4178
  * @summary State
@@ -4148,7 +4180,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4148
4180
  * @param {*} [options] Override http request option.
4149
4181
  * @throws {RequiredError}
4150
4182
  */
4151
- getBusIOState(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<BusIOsState, any>>;
4183
+ getBusIOState(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<BusIOsState, any>>;
4152
4184
  /**
4153
4185
  * Retrieves the current values of inputs/outputs. The identifiers of the inputs/outputs must be provided in the request. Request all available input/output identifiers via [listBusIODescriptions](listBusIODescriptions).
4154
4186
  * @summary Get Input/Output Values
@@ -4157,7 +4189,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4157
4189
  * @param {*} [options] Override http request option.
4158
4190
  * @throws {RequiredError}
4159
4191
  */
4160
- getBusIOValues(cell: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IOValue[], any>>;
4192
+ getBusIOValues(cell: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<IOValue[], any>>;
4161
4193
  /**
4162
4194
  * Get description of NOVA as a PROFINET device.
4163
4195
  * @summary Get PROFINET Description
@@ -4165,7 +4197,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4165
4197
  * @param {*} [options] Override http request option.
4166
4198
  * @throws {RequiredError}
4167
4199
  */
4168
- getProfinetDescription(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProfinetDescription, any>>;
4200
+ getProfinetDescription(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ProfinetDescription, any>>;
4169
4201
  /**
4170
4202
  * Get input/output variable configuration of the PROFINET device, e.g., NOVA\'s PROFINET service as file. You can specify byte offsets for the input and output variable addresses to get an XML tagmap that is ready to paste to the third party software, e.g., TIA portal.
4171
4203
  * @summary PROFINET Inputs/Outputs to File
@@ -4175,7 +4207,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4175
4207
  * @param {*} [options] Override http request option.
4176
4208
  * @throws {RequiredError}
4177
4209
  */
4178
- getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string, any>>;
4210
+ getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string, any>>;
4179
4211
  /**
4180
4212
  * List all input/output descriptions for configured BUS services. The input/output descriptions contain information like name, type and unit. The input/output direction is given in perspective of the BUS service.
4181
4213
  * @summary List Descriptions
@@ -4183,7 +4215,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4183
4215
  * @param {*} [options] Override http request option.
4184
4216
  * @throws {RequiredError}
4185
4217
  */
4186
- listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<BusIODescription[], any>>;
4218
+ listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<BusIODescription[], any>>;
4187
4219
  /**
4188
4220
  * List descriptions for all configured input/output variables of the MODBUS service. The input/output descriptions contain information like name, type and address. The input/output direction is given in perspective of the active MODBUS type (service or client). - The byte and bit addresses are the locations in the MODBUS input/output process image the variable points to. - The MODBUS controller as well as NOVA\'s MODBUS service use an input/output variable configuration to interpret the bits of the input and output process image. - The NOVA MODBUS service\'s configuration is modified via [addModbusIO](addModbusIO).
4189
4221
  * @summary List MODBUS Input/Output Configuration
@@ -4191,7 +4223,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4191
4223
  * @param {*} [options] Override http request option.
4192
4224
  * @throws {RequiredError}
4193
4225
  */
4194
- listModbusIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ModbusIO[], any>>;
4226
+ listModbusIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ModbusIO[], any>>;
4195
4227
  /**
4196
4228
  * List descriptions for all configured input/output variables of the PROFINET service. The input/output descriptions contain information like name, type and unit. The input/output direction is given in perspective of the PROFINET device, e.g., the configured PROFINET service. - The byte and bit addresses are the locations in the PROFINET input/output process image the variable points to. - The PROFINET controller as well as NOVA\'s PROFINET service use an input/output variable configuration to interpret the bits of the input and output process image. - The NOVA PROFINET service\'s configuration is modified via [addProfinetIO](addProfinetIO) and [setProfinetIOsFromFile](setProfinetIOsFromFile). For the PROFINET controller, e.g., a connected PLC, refer to the corresponding third party software, e.g., TIA portal.
4197
4229
  * @summary List PROFINET Input/Output Configuration
@@ -4199,7 +4231,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4199
4231
  * @param {*} [options] Override http request option.
4200
4232
  * @throws {RequiredError}
4201
4233
  */
4202
- listProfinetIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProfinetIO[], any>>;
4234
+ listProfinetIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ProfinetIO[], any>>;
4203
4235
  /**
4204
4236
  * Set values of outputs. In case of virtual Bus Input/Outputs, also inputs can be set. All available output identifiers can be requested via [listBusIODescriptions](listBusIODescriptions). The call will return once the values have been set and accepted by the service.
4205
4237
  * @summary Set Output Values
@@ -4208,7 +4240,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4208
4240
  * @param {*} [options] Override http request option.
4209
4241
  * @throws {RequiredError}
4210
4242
  */
4211
- setBusIOValues(cell: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4243
+ setBusIOValues(cell: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4212
4244
  /**
4213
4245
  * Sets input/output variable configuration on the PROFINET device (i.e. NOVA\'s PROFINET service) from XML file. The inputs/outputs map variables to specific memory addresses in the process image. The default process image has buffer lengths of 64 bytes for input and output. - The size of the buffer is determined by the `config_file_content` that is passed in [addBusIOService](addBusIOService) and has to be in accordance with the GSDML file describing the PROFINET device. The PROFINET controller as well as NOVA\'s PROFINET service use an input/output variable configuration to interpret the bits of the input/output process image. - The NOVA\'s PROFINET service\'s configuration can be viewed via [listProfinetIOs](listProfinetIOs). For the PROFINET controller, e.g., a connected PLC, refer to the corresponding engineering system, e.g., TIA portal. #### Export variables You can export the variable configuration of the PROFINET controller as XML file from your engineering system, e.g., TIA portal. - The endpoint is built so that the perspective of input and output (PROFINET Device\'s input is PROFINET Controller\'s output) is internally handled (PROFINET device input is PROFINET controller output), meaning that you can paste the exported XML file here without modifying.
4214
4246
  * @summary Set PROFINET Inputs/Outputs from File
@@ -4217,7 +4249,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
4217
4249
  * @param {*} [options] Override http request option.
4218
4250
  * @throws {RequiredError}
4219
4251
  */
4220
- setProfinetIOsFromFile(cell: string, profinetInputOutputConfig: ProfinetInputOutputConfig, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4252
+ setProfinetIOsFromFile(cell: string, profinetInputOutputConfig: ProfinetInputOutputConfig, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4221
4253
  }
4222
4254
  /**
4223
4255
  * CellApi - axios parameter creator
@@ -4426,7 +4458,7 @@ declare class CellApi extends BaseAPI {
4426
4458
  * @param {*} [options] Override http request option.
4427
4459
  * @throws {RequiredError}
4428
4460
  */
4429
- deleteCell(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4461
+ deleteCell(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4430
4462
  /**
4431
4463
  * Deploy an entire cell with all its resources. A cell can be used to deploy a robot controller, one or more robots, as well as custom applications. Refer to the [Wandelbots NOVA documentation](https://docs.wandelbots.io/latest/setup-cell) for more information.
4432
4464
  * @summary Add Cell
@@ -4435,7 +4467,7 @@ declare class CellApi extends BaseAPI {
4435
4467
  * @param {*} [options] Override http request option.
4436
4468
  * @throws {RequiredError}
4437
4469
  */
4438
- deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4470
+ deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4439
4471
  /**
4440
4472
  * List all cell resources.
4441
4473
  * @summary Configuration
@@ -4443,7 +4475,7 @@ declare class CellApi extends BaseAPI {
4443
4475
  * @param {*} [options] Override http request option.
4444
4476
  * @throws {RequiredError}
4445
4477
  */
4446
- getCell(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Cell, any>>;
4478
+ getCell(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Cell, any>>;
4447
4479
  /**
4448
4480
  * List the status of all cell resources.
4449
4481
  * @summary Service Status
@@ -4451,14 +4483,14 @@ declare class CellApi extends BaseAPI {
4451
4483
  * @param {*} [options] Override http request option.
4452
4484
  * @throws {RequiredError}
4453
4485
  */
4454
- getCellStatus(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ServiceStatusResponse, any>>;
4486
+ getCellStatus(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ServiceStatusResponse, any>>;
4455
4487
  /**
4456
4488
  * List all deployed cell names. If no cells are deployed, an empty list is returned.
4457
4489
  * @summary List Cells
4458
4490
  * @param {*} [options] Override http request option.
4459
4491
  * @throws {RequiredError}
4460
4492
  */
4461
- listCells(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
4493
+ listCells(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
4462
4494
  /**
4463
4495
  * Deactivate or activate the services of a cell.
4464
4496
  * @summary Operating State
@@ -4467,7 +4499,7 @@ declare class CellApi extends BaseAPI {
4467
4499
  * @param {*} [options] Override http request option.
4468
4500
  * @throws {RequiredError}
4469
4501
  */
4470
- setCellStatus(cell: string, operatingState: OperatingState, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4502
+ setCellStatus(cell: string, operatingState: OperatingState, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4471
4503
  /**
4472
4504
  * Update the definition of the entire Cell.
4473
4505
  * @summary Update Configuration
@@ -4477,7 +4509,7 @@ declare class CellApi extends BaseAPI {
4477
4509
  * @param {*} [options] Override http request option.
4478
4510
  * @throws {RequiredError}
4479
4511
  */
4480
- updateCell(cell: string, cell2: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4512
+ updateCell(cell: string, cell2: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4481
4513
  }
4482
4514
  /**
4483
4515
  * ControllerApi - axios parameter creator
@@ -4915,7 +4947,7 @@ declare class ControllerApi extends BaseAPI {
4915
4947
  * @param {*} [options] Override http request option.
4916
4948
  * @throws {RequiredError}
4917
4949
  */
4918
- addRobotController(cell: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4950
+ addRobotController(cell: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4919
4951
  /**
4920
4952
  * Delete all robot controllers from the cell. To replace all robot controllers in a cell, use this endpoint in combination with [addRobotController](addRobotController).
4921
4953
  * @summary Clear Robot Controllers
@@ -4924,7 +4956,7 @@ declare class ControllerApi extends BaseAPI {
4924
4956
  * @param {*} [options] Override http request option.
4925
4957
  * @throws {RequiredError}
4926
4958
  */
4927
- clearRobotControllers(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4959
+ clearRobotControllers(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4928
4960
  /**
4929
4961
  * Delete a robot controller from the cell.
4930
4962
  * @summary Delete Robot Controller
@@ -4934,7 +4966,7 @@ declare class ControllerApi extends BaseAPI {
4934
4966
  * @param {*} [options] Override http request option.
4935
4967
  * @throws {RequiredError}
4936
4968
  */
4937
- deleteRobotController(cell: string, controller: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4969
+ deleteRobotController(cell: string, controller: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4938
4970
  /**
4939
4971
  * Get description of a configured robot controller including a list of connected motion group identifiers. Use [getMotionGroupDescription](getMotionGroupDescription) to get more information about the motion group.
4940
4972
  * @summary Description
@@ -4943,7 +4975,7 @@ declare class ControllerApi extends BaseAPI {
4943
4975
  * @param {*} [options] Override http request option.
4944
4976
  * @throws {RequiredError}
4945
4977
  */
4946
- getControllerDescription(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ControllerDescription, any>>;
4978
+ getControllerDescription(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ControllerDescription, any>>;
4947
4979
  /**
4948
4980
  * Request a coordinate system specification for a given identifier. Use parameter `orientation_type` to get the orientation part of the transformation offset of the coordinate system returned in the requested orientation notation. If parameter `orientation_type` is not set, the orientation part of the transformation offset of the coordinate system is returned in rotation vector notation. The coordinate systems from the robot controller are loaded when the motion group associated with the coordinate system is activated. With deactivation of the motion group, the associated coordinate systems are removed from NOVA. The unique identifier of the coordinate systems from the robot controllers are suffixed with `On` + the unique identifier of the robot controller.
4949
4981
  * @summary Coordinate System
@@ -4954,7 +4986,7 @@ declare class ControllerApi extends BaseAPI {
4954
4986
  * @param {*} [options] Override http request option.
4955
4987
  * @throws {RequiredError}
4956
4988
  */
4957
- getCoordinateSystem(cell: string, controller: string, coordinateSystem: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem, any>>;
4989
+ getCoordinateSystem(cell: string, controller: string, coordinateSystem: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CoordinateSystem, any>>;
4958
4990
  /**
4959
4991
  * Get the current state of a robot controller.
4960
4992
  * @summary State
@@ -4963,7 +4995,7 @@ declare class ControllerApi extends BaseAPI {
4963
4995
  * @param {*} [options] Override http request option.
4964
4996
  * @throws {RequiredError}
4965
4997
  */
4966
- getCurrentRobotControllerState(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotControllerState, any>>;
4998
+ getCurrentRobotControllerState(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<RobotControllerState, any>>;
4967
4999
  /**
4968
5000
  * Get the configuration for a robot controller.
4969
5001
  * @summary Robot Controller
@@ -4972,7 +5004,7 @@ declare class ControllerApi extends BaseAPI {
4972
5004
  * @param {*} [options] Override http request option.
4973
5005
  * @throws {RequiredError}
4974
5006
  */
4975
- getRobotController(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotController, any>>;
5007
+ getRobotController(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<RobotController, any>>;
4976
5008
  /**
4977
5009
  * Receive data to configure a virtual robot controller based on another controller. This can be used to create a virtual clone of a specific physical robot. When adding a virtual controller, use the Virtual configuration variant of [addRobotController](addRobotController) and pass the content string from this endpoint as the `json` field. Omit the `type` field that selects a preset configuration which is not required when providing a complete configuration.
4978
5010
  * @summary Virtual Controller Configuration
@@ -4981,7 +5013,7 @@ declare class ControllerApi extends BaseAPI {
4981
5013
  * @param {*} [options] Override http request option.
4982
5014
  * @throws {RequiredError}
4983
5015
  */
4984
- getVirtualControllerConfiguration(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<VirtualRobotConfiguration, any>>;
5016
+ getVirtualControllerConfiguration(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<VirtualRobotConfiguration, any>>;
4985
5017
  /**
4986
5018
  * Lists all specifications of coordinate systems from robot controllers. Use parameter `orientation_type` to get the orientation part of the transformation offset of the coordinate system returned in the requested orientation notation. If parameter `orientation_type` is not set, the orientation part of the transformation offset of the coordinate system is returned in rotation vector notation. The coordinate systems from the robot controller are loaded when the motion group associated with the coordinate system is activated. With deactivation of the motion group, the associated coordinate systems are removed from NOVA. The unique identifier of the coordinate systems from the robot controllers are suffixed with `On` + the unique identifier of the robot controller.
4987
5019
  * @summary List Coordinate Systems
@@ -4991,7 +5023,7 @@ declare class ControllerApi extends BaseAPI {
4991
5023
  * @param {*} [options] Override http request option.
4992
5024
  * @throws {RequiredError}
4993
5025
  */
4994
- listCoordinateSystems(cell: string, controller: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem[], any>>;
5026
+ listCoordinateSystems(cell: string, controller: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CoordinateSystem[], any>>;
4995
5027
  /**
4996
5028
  * List the names of all deployed robot controllers.
4997
5029
  * @summary List Robot Controllers
@@ -4999,7 +5031,7 @@ declare class ControllerApi extends BaseAPI {
4999
5031
  * @param {*} [options] Override http request option.
5000
5032
  * @throws {RequiredError}
5001
5033
  */
5002
- listRobotControllers(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
5034
+ listRobotControllers(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
5003
5035
  /**
5004
5036
  * Switch between monitor and control usage as default for a robot controller. Monitoring mode is used to read information from the robot controller and control mode is used to command the robot system. As long as the robot controller is connected via network, monitoring mode is always possible. To switch to control mode the robot controller must be in `automatic` or `manual` operating mode and safety state `normal` or `reduced`. If the robot controller is in `manual` operating mode, you have to manually confirm the control usage activation on the robot control panel. This manual confirmation can\'t be replaced with this API. Without manual confirmation the robot controller will stay in monitor mode. The robot system will try to activate the required operation mode for the requested usage unless no active call requires a different mode. > **NOTE** > > `setDefaultMode` enables the robot controller to stay in control mode to keep the motors activated. > This allows for faster execution of sequential movements as no mode switches are required. > **NOTE** > > Some robot controllers prevent the external activation of automatic operating mode. In this case, changing the operating mode manually at the robot controller is mandatory. > **NOTE** > > The current operation mode and safety state can be requested via [getCurrentRobotControllerState](getCurrentRobotControllerState). If a mode change is not possible, the response lists reasons for the failed change.
5005
5037
  * @summary Set Default Mode
@@ -5009,7 +5041,7 @@ declare class ControllerApi extends BaseAPI {
5009
5041
  * @param {*} [options] Override http request option.
5010
5042
  * @throws {RequiredError}
5011
5043
  */
5012
- setDefaultMode(cell: string, controller: string, mode: SettableRobotSystemMode, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
5044
+ setDefaultMode(cell: string, controller: string, mode: SettableRobotSystemMode, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
5013
5045
  /**
5014
5046
  * <!-- theme: success --> > Websocket endpoint Sets the robot controller into freedrive mode and stays in freedrive until the websocket connection is closed by the client. In freedrive mode, it is possible to move the attached motion groups by hand. This is a blocking call. As long as the websocket connection is open, no other endpoint can control or move the robot. <!-- theme: danger --> > **DANGER** > > Danger caused by robot. Improper assessment by the integrator of the application-specific hazards can result in people being > crushed, drawn in or caught due to the robot\'s complex movement sequences. Before opening the websocket, ensure that > > - The robot is in a safe state, > - The right payload is set, > - No humans or object are within the robot\'s reach or within the cell. As long as the websocket connection is open you will get the current state of the robot system in the response in the specified `response_rate`. If the activation failed, the returned status will return possible reasons for the failure. Free drive mode is only available for robot controllers that support it, in particular cobots. Use [listRobotControllers](listRobotControllers) to check if the robot controller supports free drive mode.
5015
5047
  * @summary Stream Free Drive
@@ -5019,7 +5051,7 @@ declare class ControllerApi extends BaseAPI {
5019
5051
  * @param {*} [options] Override http request option.
5020
5052
  * @throws {RequiredError}
5021
5053
  */
5022
- streamFreeDrive(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotControllerState, any>>;
5054
+ streamFreeDrive(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<RobotControllerState, any>>;
5023
5055
  /**
5024
5056
  * <!-- theme: success --> > Websocket endpoint Receive updates of the state of a robot controller. The stream can be opened before the controller is registered. To register a controller, call [addRobotController](addRobotController). While connecting, the stream sends initialization updates. Once the controller reaches `MODE_MONITOR`, it sends controller state updates.
5025
5057
  * @summary Stream State
@@ -5030,7 +5062,7 @@ declare class ControllerApi extends BaseAPI {
5030
5062
  * @param {*} [options] Override http request option.
5031
5063
  * @throws {RequiredError}
5032
5064
  */
5033
- streamRobotControllerState(cell: string, controller: string, responseRate?: number, addControllerTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotControllerState, any>>;
5065
+ streamRobotControllerState(cell: string, controller: string, responseRate?: number, addControllerTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<RobotControllerState, any>>;
5034
5066
  /**
5035
5067
  * Update the configuration of a robot controller. Reconfigure certain options of a robot controller, or deploy a specific container image of a robot controller. To update a virtual controller, the previous controller will be deleted and a new one created. Changes to the configuration, e.g., TCPs, coordinate systems, mounting, are **not** transferred to the new robot. <!-- theme: info --> > **NOTE** > > An update is not a reset. To do a reset: > 1. Get the current configuration via [getRobotController](getRobotController). > 2. Delete the existing virtual robot controller via [deleteRobotController](deleteRobotController). > 3. Add a virtual robot controller with [addRobotController](addRobotController).
5036
5068
  * @summary Update Robot Controller
@@ -5041,7 +5073,7 @@ declare class ControllerApi extends BaseAPI {
5041
5073
  * @param {*} [options] Override http request option.
5042
5074
  * @throws {RequiredError}
5043
5075
  */
5044
- updateRobotController(cell: string, controller: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
5076
+ updateRobotController(cell: string, controller: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
5045
5077
  }
5046
5078
  /**
5047
5079
  * ControllerInputsOutputsApi - axios parameter creator
@@ -5233,7 +5265,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
5233
5265
  * @param {*} [options] Override http request option.
5234
5266
  * @throws {RequiredError}
5235
5267
  */
5236
- listIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IODescription[], any>>;
5268
+ listIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<IODescription[], any>>;
5237
5269
  /**
5238
5270
  * Retrieves the current values of inputs/outputs. The identifiers of the inputs/outputs must be provided in the request. Request all available input/output identifiers via [listIODescriptions](listIODescriptions).
5239
5271
  * @summary Get Input/Output Values
@@ -5243,7 +5275,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
5243
5275
  * @param {*} [options] Override http request option.
5244
5276
  * @throws {RequiredError}
5245
5277
  */
5246
- listIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IOValue[], any>>;
5278
+ listIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<IOValue[], any>>;
5247
5279
  /**
5248
5280
  * Set the values of outputs. All available output identifiers and possible value ranges can be requested via [listIODescriptions](listIODescriptions). The call will return once the values have been set on and accepted by the robot. This can take up to 200 milliseconds. > **NOTE** > > Do not call this endpoint while another request is still in progress. The second call will fail.
5249
5281
  * @summary Set Output Values
@@ -5253,7 +5285,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
5253
5285
  * @param {*} [options] Override http request option.
5254
5286
  * @throws {RequiredError}
5255
5287
  */
5256
- setOutputValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
5288
+ setOutputValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
5257
5289
  /**
5258
5290
  * <!-- theme: success --> > Websocket endpoint Continuously receive updates of input/output values via websocket. Updates are sent in the update rate of the controller. > **NOTE** > > If you request many values simultaneously, the request is likely to fail. The amount of values that can be streamed simultaneously depends on the specific robot controller. > **NOTE** > > The inputs and outputs are sent in the update rate of the controller to prevent losing any values. This can lead to a high amount of data transmitted.
5259
5291
  * @summary Stream Input/Output Values
@@ -5263,7 +5295,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
5263
5295
  * @param {*} [options] Override http request option.
5264
5296
  * @throws {RequiredError}
5265
5297
  */
5266
- streamIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<StreamIOValuesResponse, any>>;
5298
+ streamIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<StreamIOValuesResponse, any>>;
5267
5299
  /**
5268
5300
  * Wait until an input/output reaches a certain value. This call returns as soon as the condition is met or the request fails. The `comparison_type` value is used to define how the current value of the input/output is compared with given value. Only set the value that corresponds to the `value_type` of the input/output. See [listIODescriptions](listIODescriptions) for more information. **Examples** 1. Wait until analog input `AI_1` < 10: ``` io: \"AI_1\" comparison_type: \"COMPARISON_LESS\" value: 10 ``` 2. Wait until analog input `AI_2` > 5.0: ``` io: \"AI_2\" comparison_type: \"COMPARISON_GREATER\" value: 5.0 ``` 3. Wait until digital input `DI_3` is true: ``` io: \"DI_3\" comparison_type: \"COMPARISON_EQUAL\" value: true ```
5269
5301
  * @summary Wait For
@@ -5273,7 +5305,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
5273
5305
  * @param {*} [options] Override http request option.
5274
5306
  * @throws {RequiredError}
5275
5307
  */
5276
- waitForIOEvent(cell: string, controller: string, waitForIOEventRequest: WaitForIOEventRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<boolean, any>>;
5308
+ waitForIOEvent(cell: string, controller: string, waitForIOEventRequest: WaitForIOEventRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<boolean, any>>;
5277
5309
  }
5278
5310
  /**
5279
5311
  * JoggingApi - axios parameter creator
@@ -5333,7 +5365,7 @@ declare class JoggingApi extends BaseAPI {
5333
5365
  * @param {*} [options] Override http request option.
5334
5366
  * @throws {RequiredError}
5335
5367
  */
5336
- executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ExecuteJoggingResponse, any>>;
5368
+ executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ExecuteJoggingResponse, any>>;
5337
5369
  }
5338
5370
  /**
5339
5371
  * KinematicsApi - axios parameter creator
@@ -5416,7 +5448,7 @@ declare class KinematicsApi extends BaseAPI {
5416
5448
  * @param {*} [options] Override http request option.
5417
5449
  * @throws {RequiredError}
5418
5450
  */
5419
- forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ForwardKinematicsResponse, any>>;
5451
+ forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ForwardKinematicsResponse, any>>;
5420
5452
  /**
5421
5453
  * Returns the reachable joint positions for a list of given poses.
5422
5454
  * @summary Inverse kinematics
@@ -5425,7 +5457,7 @@ declare class KinematicsApi extends BaseAPI {
5425
5457
  * @param {*} [options] Override http request option.
5426
5458
  * @throws {RequiredError}
5427
5459
  */
5428
- inverseKinematics(cell: string, inverseKinematicsRequest: InverseKinematicsRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<InverseKinematicsResponse, any>>;
5460
+ inverseKinematics(cell: string, inverseKinematicsRequest: InverseKinematicsRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<InverseKinematicsResponse, any>>;
5429
5461
  }
5430
5462
  /**
5431
5463
  * LicenseApi - axios parameter creator
@@ -5540,28 +5572,28 @@ declare class LicenseApi extends BaseAPI {
5540
5572
  * @param {*} [options] Override http request option.
5541
5573
  * @throws {RequiredError}
5542
5574
  */
5543
- activateLicense(activateLicenseRequest: ActivateLicenseRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<License, any>>;
5575
+ activateLicense(activateLicenseRequest: ActivateLicenseRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<License, any>>;
5544
5576
  /**
5545
5577
  * Deactivates active license.
5546
5578
  * @summary Deactivate license
5547
5579
  * @param {*} [options] Override http request option.
5548
5580
  * @throws {RequiredError}
5549
5581
  */
5550
- deactivateLicense(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
5582
+ deactivateLicense(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
5551
5583
  /**
5552
5584
  * Get information on the license used with the Wandelbots NOVA instance, e.g., licensed product, expiration date, license status.
5553
5585
  * @summary Get license
5554
5586
  * @param {*} [options] Override http request option.
5555
5587
  * @throws {RequiredError}
5556
5588
  */
5557
- getLicense(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<License, any>>;
5589
+ getLicense(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<License, any>>;
5558
5590
  /**
5559
5591
  * Get the license status. - If `valid`, Wandelbots NOVA can be used. - If `expired`, the license has to be renewed in order to use Wandelbots NOVA.
5560
5592
  * @summary Get license status
5561
5593
  * @param {*} [options] Override http request option.
5562
5594
  * @throws {RequiredError}
5563
5595
  */
5564
- getLicenseStatus(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<LicenseStatus, any>>;
5596
+ getLicenseStatus(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<LicenseStatus, any>>;
5565
5597
  }
5566
5598
  /**
5567
5599
  * MotionGroupApi - axios parameter creator
@@ -5691,7 +5723,7 @@ declare class MotionGroupApi extends BaseAPI {
5691
5723
  * @param {*} [options] Override http request option.
5692
5724
  * @throws {RequiredError}
5693
5725
  */
5694
- getCurrentMotionGroupState(cell: string, controller: string, motionGroup: string, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupState, any>>;
5726
+ getCurrentMotionGroupState(cell: string, controller: string, motionGroup: string, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<MotionGroupState, any>>;
5695
5727
  /**
5696
5728
  * Get the set of parameters that describe the motion group and its configuration including safety zones, limits, etc. This data can change upon connection to the robot.
5697
5729
  * @summary Description
@@ -5701,7 +5733,7 @@ declare class MotionGroupApi extends BaseAPI {
5701
5733
  * @param {*} [options] Override http request option.
5702
5734
  * @throws {RequiredError}
5703
5735
  */
5704
- getMotionGroupDescription(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupDescription, any>>;
5736
+ getMotionGroupDescription(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<MotionGroupDescription, any>>;
5705
5737
  /**
5706
5738
  * <!-- theme: success --> > Websocket endpoint Receive updates of the motion group state. The stream will be closed from the server if the controller is disconnected.
5707
5739
  * @summary Stream State
@@ -5713,7 +5745,7 @@ declare class MotionGroupApi extends BaseAPI {
5713
5745
  * @param {*} [options] Override http request option.
5714
5746
  * @throws {RequiredError}
5715
5747
  */
5716
- streamMotionGroupState(cell: string, controller: string, motionGroup: string, responseRate?: number, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupState, any>>;
5748
+ streamMotionGroupState(cell: string, controller: string, motionGroup: string, responseRate?: number, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<MotionGroupState, any>>;
5717
5749
  }
5718
5750
  /**
5719
5751
  * MotionGroupModelsApi - axios parameter creator
@@ -5790,7 +5822,7 @@ declare class MotionGroupModelsApi extends BaseAPI {
5790
5822
  * @param {*} [options] Override http request option.
5791
5823
  * @throws {RequiredError}
5792
5824
  */
5793
- getMotionGroupCollisionModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
5825
+ getMotionGroupCollisionModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
5794
5826
  [key: string]: Collider;
5795
5827
  }[], any>>;
5796
5828
  /**
@@ -5799,7 +5831,7 @@ declare class MotionGroupModelsApi extends BaseAPI {
5799
5831
  * @param {*} [options] Override http request option.
5800
5832
  * @throws {RequiredError}
5801
5833
  */
5802
- getMotionGroupModels(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
5834
+ getMotionGroupModels(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
5803
5835
  }
5804
5836
  /**
5805
5837
  * ProgramApi - axios parameter creator
@@ -5936,7 +5968,7 @@ declare class ProgramApi extends BaseAPI {
5936
5968
  * @param {*} [options] Override http request option.
5937
5969
  * @throws {RequiredError}
5938
5970
  */
5939
- getProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Program, any>>;
5971
+ getProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Program, any>>;
5940
5972
  /**
5941
5973
  * <!-- theme: danger --> > **Experimental** List details of all existing programs.
5942
5974
  * @summary List programs
@@ -5944,7 +5976,7 @@ declare class ProgramApi extends BaseAPI {
5944
5976
  * @param {*} [options] Override http request option.
5945
5977
  * @throws {RequiredError}
5946
5978
  */
5947
- listPrograms(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Program[], any>>;
5979
+ listPrograms(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Program[], any>>;
5948
5980
  /**
5949
5981
  * <!-- theme: danger --> > **Experimental** This endpoint starts a new program execution. The program will be executed asynchronously.
5950
5982
  * @summary Start the program
@@ -5954,7 +5986,7 @@ declare class ProgramApi extends BaseAPI {
5954
5986
  * @param {*} [options] Override http request option.
5955
5987
  * @throws {RequiredError}
5956
5988
  */
5957
- startProgram(cell: string, program: string, programStartRequest: ProgramStartRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProgramRun, any>>;
5989
+ startProgram(cell: string, program: string, programStartRequest: ProgramStartRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ProgramRun, any>>;
5958
5990
  /**
5959
5991
  * <!-- theme: danger --> > **Experimental** Stop a specific program run.
5960
5992
  * @summary Stop program run
@@ -5963,7 +5995,7 @@ declare class ProgramApi extends BaseAPI {
5963
5995
  * @param {*} [options] Override http request option.
5964
5996
  * @throws {RequiredError}
5965
5997
  */
5966
- stopProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
5998
+ stopProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
5967
5999
  }
5968
6000
  /**
5969
6001
  * StoreCollisionComponentsApi - axios parameter creator
@@ -6436,7 +6468,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6436
6468
  * @param {*} [options] Override http request option.
6437
6469
  * @throws {RequiredError}
6438
6470
  */
6439
- deleteStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
6471
+ deleteStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
6440
6472
  /**
6441
6473
  * Deletes the stored link chain. <!-- theme: danger --> > This will delete persistently stored data.
6442
6474
  * @summary Delete Link Chain
@@ -6445,7 +6477,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6445
6477
  * @param {*} [options] Override http request option.
6446
6478
  * @throws {RequiredError}
6447
6479
  */
6448
- deleteStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
6480
+ deleteStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
6449
6481
  /**
6450
6482
  * Deletes the stored tool. <!-- theme: danger --> > This will delete persistently stored data.
6451
6483
  * @summary Delete Tool
@@ -6454,7 +6486,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6454
6486
  * @param {*} [options] Override http request option.
6455
6487
  * @throws {RequiredError}
6456
6488
  */
6457
- deleteStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
6489
+ deleteStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
6458
6490
  /**
6459
6491
  * Returns the collider.
6460
6492
  * @summary Get Collider
@@ -6463,7 +6495,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6463
6495
  * @param {*} [options] Override http request option.
6464
6496
  * @throws {RequiredError}
6465
6497
  */
6466
- getStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Collider, any>>;
6498
+ getStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Collider, any>>;
6467
6499
  /**
6468
6500
  * Returns the collision link chain.
6469
6501
  * @summary Get Link Chain
@@ -6472,7 +6504,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6472
6504
  * @param {*} [options] Override http request option.
6473
6505
  * @throws {RequiredError}
6474
6506
  */
6475
- getStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6507
+ getStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6476
6508
  [key: string]: Collider;
6477
6509
  }[], any>>;
6478
6510
  /**
@@ -6483,7 +6515,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6483
6515
  * @param {*} [options] Override http request option.
6484
6516
  * @throws {RequiredError}
6485
6517
  */
6486
- getStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6518
+ getStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6487
6519
  [key: string]: Collider;
6488
6520
  }, any>>;
6489
6521
  /**
@@ -6493,7 +6525,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6493
6525
  * @param {*} [options] Override http request option.
6494
6526
  * @throws {RequiredError}
6495
6527
  */
6496
- listCollisionLinkChains(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6528
+ listCollisionLinkChains(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6497
6529
  [key: string]: {
6498
6530
  [key: string]: Collider;
6499
6531
  }[];
@@ -6505,7 +6537,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6505
6537
  * @param {*} [options] Override http request option.
6506
6538
  * @throws {RequiredError}
6507
6539
  */
6508
- listCollisionLinkChainsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
6540
+ listCollisionLinkChainsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
6509
6541
  /**
6510
6542
  * Returns all stored colliders.
6511
6543
  * @summary List Colliders
@@ -6513,7 +6545,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6513
6545
  * @param {*} [options] Override http request option.
6514
6546
  * @throws {RequiredError}
6515
6547
  */
6516
- listStoredColliders(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6548
+ listStoredColliders(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6517
6549
  [key: string]: Collider;
6518
6550
  }, any>>;
6519
6551
  /**
@@ -6523,7 +6555,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6523
6555
  * @param {*} [options] Override http request option.
6524
6556
  * @throws {RequiredError}
6525
6557
  */
6526
- listStoredCollidersKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
6558
+ listStoredCollidersKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
6527
6559
  /**
6528
6560
  * Returns the list of stored tools.
6529
6561
  * @summary List Tools
@@ -6531,7 +6563,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6531
6563
  * @param {*} [options] Override http request option.
6532
6564
  * @throws {RequiredError}
6533
6565
  */
6534
- listStoredCollisionTools(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6566
+ listStoredCollisionTools(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6535
6567
  [key: string]: {
6536
6568
  [key: string]: Collider;
6537
6569
  };
@@ -6543,7 +6575,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6543
6575
  * @param {*} [options] Override http request option.
6544
6576
  * @throws {RequiredError}
6545
6577
  */
6546
- listStoredCollisionToolsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
6578
+ listStoredCollisionToolsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
6547
6579
  /**
6548
6580
  * Stores collider. - If the collider does not exist, it will be created. - If the collider exists, it will be updated.
6549
6581
  * @summary Store Collider
@@ -6553,7 +6585,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6553
6585
  * @param {*} [options] Override http request option.
6554
6586
  * @throws {RequiredError}
6555
6587
  */
6556
- storeCollider(cell: string, collider: string, collider2: Collider, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Collider, any>>;
6588
+ storeCollider(cell: string, collider: string, collider2: Collider, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Collider, any>>;
6557
6589
  /**
6558
6590
  * Stores link chain. - If the link chain does not exist, it will be created. - If the link chain exists, it will be updated.
6559
6591
  * @summary Store Link Chain
@@ -6565,7 +6597,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6565
6597
  */
6566
6598
  storeCollisionLinkChain(cell: string, linkChain: string, collider: Array<{
6567
6599
  [key: string]: Collider;
6568
- }>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6600
+ }>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6569
6601
  [key: string]: Collider;
6570
6602
  }[], any>>;
6571
6603
  /**
@@ -6579,7 +6611,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
6579
6611
  */
6580
6612
  storeCollisionTool(cell: string, tool: string, requestBody: {
6581
6613
  [key: string]: Collider;
6582
- }, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6614
+ }, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6583
6615
  [key: string]: Collider;
6584
6616
  }, any>>;
6585
6617
  }
@@ -6746,7 +6778,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
6746
6778
  * @param {*} [options] Override http request option.
6747
6779
  * @throws {RequiredError}
6748
6780
  */
6749
- deleteStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
6781
+ deleteStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
6750
6782
  /**
6751
6783
  * Returns the stored collision setup.
6752
6784
  * @summary Get Collision Setup
@@ -6755,7 +6787,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
6755
6787
  * @param {*} [options] Override http request option.
6756
6788
  * @throws {RequiredError}
6757
6789
  */
6758
- getStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CollisionSetup, any>>;
6790
+ getStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CollisionSetup, any>>;
6759
6791
  /**
6760
6792
  * Returns a list of stored collision setups.
6761
6793
  * @summary List Collision Setups
@@ -6763,7 +6795,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
6763
6795
  * @param {*} [options] Override http request option.
6764
6796
  * @throws {RequiredError}
6765
6797
  */
6766
- listStoredCollisionSetups(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
6798
+ listStoredCollisionSetups(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
6767
6799
  [key: string]: CollisionSetup;
6768
6800
  }, any>>;
6769
6801
  /**
@@ -6773,7 +6805,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
6773
6805
  * @param {*} [options] Override http request option.
6774
6806
  * @throws {RequiredError}
6775
6807
  */
6776
- listStoredCollisionSetupsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
6808
+ listStoredCollisionSetupsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
6777
6809
  /**
6778
6810
  * Stores collision setup. - If the collision setup does not exist, it will be created. - If the collision setup exists, it will be updated.
6779
6811
  * @summary Store Collision Setup
@@ -6783,7 +6815,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
6783
6815
  * @param {*} [options] Override http request option.
6784
6816
  * @throws {RequiredError}
6785
6817
  */
6786
- storeCollisionSetup(cell: string, setup: string, collisionSetup: CollisionSetup, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CollisionSetup, any>>;
6818
+ storeCollisionSetup(cell: string, setup: string, collisionSetup: CollisionSetup, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CollisionSetup, any>>;
6787
6819
  }
6788
6820
  /**
6789
6821
  * StoreObjectApi - axios parameter creator
@@ -6979,7 +7011,7 @@ declare class StoreObjectApi extends BaseAPI {
6979
7011
  * @param {*} [options] Override http request option.
6980
7012
  * @throws {RequiredError}
6981
7013
  */
6982
- clearAllObjects(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
7014
+ clearAllObjects(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
6983
7015
  /**
6984
7016
  * Delete an object <!-- theme: danger --> > This will delete persistently stored data.
6985
7017
  * @summary Delete Object
@@ -6988,7 +7020,7 @@ declare class StoreObjectApi extends BaseAPI {
6988
7020
  * @param {*} [options] Override http request option.
6989
7021
  * @throws {RequiredError}
6990
7022
  */
6991
- deleteObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
7023
+ deleteObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
6992
7024
  /**
6993
7025
  * Returns content and metadata of a stored object.
6994
7026
  * @summary Get Object
@@ -6997,7 +7029,7 @@ declare class StoreObjectApi extends BaseAPI {
6997
7029
  * @param {*} [options] Override http request option.
6998
7030
  * @throws {RequiredError}
6999
7031
  */
7000
- getObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<File, any>>;
7032
+ getObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<File, any>>;
7001
7033
  /**
7002
7034
  * Returns metadata. Object content is not returned.
7003
7035
  * @summary Get Object Metadata
@@ -7006,7 +7038,7 @@ declare class StoreObjectApi extends BaseAPI {
7006
7038
  * @param {*} [options] Override http request option.
7007
7039
  * @throws {RequiredError}
7008
7040
  */
7009
- getObjectMetadata(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
7041
+ getObjectMetadata(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
7010
7042
  /**
7011
7043
  * List the keys for all objects.
7012
7044
  * @summary List all Object Keys
@@ -7014,7 +7046,7 @@ declare class StoreObjectApi extends BaseAPI {
7014
7046
  * @param {*} [options] Override http request option.
7015
7047
  * @throws {RequiredError}
7016
7048
  */
7017
- listAllObjectKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
7049
+ listAllObjectKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
7018
7050
  /**
7019
7051
  * 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.
7020
7052
  * @summary Store Object
@@ -7027,7 +7059,7 @@ declare class StoreObjectApi extends BaseAPI {
7027
7059
  */
7028
7060
  storeObject(cell: string, key: string, xMetadata?: {
7029
7061
  [key: string]: string;
7030
- }, anyValue?: any, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
7062
+ }, anyValue?: any, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
7031
7063
  }
7032
7064
  /**
7033
7065
  * SystemApi - axios parameter creator
@@ -7274,7 +7306,7 @@ declare class SystemApi extends BaseAPI {
7274
7306
  */
7275
7307
  backupConfiguration(resources?: Array<string>, metadata?: {
7276
7308
  [key: string]: string;
7277
- }, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<File, any>>;
7309
+ }, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<File, any>>;
7278
7310
  /**
7279
7311
  * Check if a more recent Wandelbots NOVA Version is available.
7280
7312
  * @summary Check update
@@ -7282,7 +7314,7 @@ declare class SystemApi extends BaseAPI {
7282
7314
  * @param {*} [options] Override http request option.
7283
7315
  * @throws {RequiredError}
7284
7316
  */
7285
- checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string, any>>;
7317
+ checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string, any>>;
7286
7318
  /**
7287
7319
  * 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.
7288
7320
  * @summary Retrieve Backup Status
@@ -7290,35 +7322,35 @@ declare class SystemApi extends BaseAPI {
7290
7322
  * @param {*} [options] Override http request option.
7291
7323
  * @throws {RequiredError}
7292
7324
  */
7293
- getConfigurationBackupStatus(operationId: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ConfigurationArchiveStatus, any>>;
7325
+ getConfigurationBackupStatus(operationId: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ConfigurationArchiveStatus, any>>;
7294
7326
  /**
7295
7327
  * 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.
7296
7328
  * @summary Download Diagnosis Package
7297
7329
  * @param {*} [options] Override http request option.
7298
7330
  * @throws {RequiredError}
7299
7331
  */
7300
- getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<File, any>>;
7332
+ getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<File, any>>;
7301
7333
  /**
7302
7334
  * Get the status of all system services.
7303
7335
  * @summary Wandelbots NOVA status
7304
7336
  * @param {*} [options] Override http request option.
7305
7337
  * @throws {RequiredError}
7306
7338
  */
7307
- getSystemStatus(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ServiceStatus[], any>>;
7339
+ getSystemStatus(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ServiceStatus[], any>>;
7308
7340
  /**
7309
7341
  * Get the current Wandelbots NOVA version.
7310
7342
  * @summary Wandelbots NOVA Version
7311
7343
  * @param {*} [options] Override http request option.
7312
7344
  * @throws {RequiredError}
7313
7345
  */
7314
- getSystemVersion(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string, any>>;
7346
+ getSystemVersion(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string, any>>;
7315
7347
  /**
7316
7348
  * Retrieves a list of all available configuration resources for backup purposes.
7317
7349
  * @summary List Configuration Resources
7318
7350
  * @param {*} [options] Override http request option.
7319
7351
  * @throws {RequiredError}
7320
7352
  */
7321
- listConfigurationResources(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ConfigurationResource[], any>>;
7353
+ listConfigurationResources(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ConfigurationResource[], any>>;
7322
7354
  /**
7323
7355
  * Restores a previously backed up configuration.
7324
7356
  * @summary Restore Configuration Backup
@@ -7327,7 +7359,7 @@ declare class SystemApi extends BaseAPI {
7327
7359
  * @param {*} [options] Override http request option.
7328
7360
  * @throws {RequiredError}
7329
7361
  */
7330
- restoreConfiguration(resources: Array<string>, body: File, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
7362
+ restoreConfiguration(resources: Array<string>, body: File, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
7331
7363
  /**
7332
7364
  * 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.
7333
7365
  * @summary Update Wandelbots NOVA version
@@ -7335,7 +7367,7 @@ declare class SystemApi extends BaseAPI {
7335
7367
  * @param {*} [options] Override http request option.
7336
7368
  * @throws {RequiredError}
7337
7369
  */
7338
- updateNovaVersion(updateNovaVersionRequest: UpdateNovaVersionRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
7370
+ updateNovaVersion(updateNovaVersionRequest: UpdateNovaVersionRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
7339
7371
  }
7340
7372
  /**
7341
7373
  * TrajectoryCachingApi - axios parameter creator
@@ -7509,7 +7541,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
7509
7541
  * @param {*} [options] Override http request option.
7510
7542
  * @throws {RequiredError}
7511
7543
  */
7512
- addTrajectory(cell: string, controller: string, addTrajectoryRequest: AddTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<AddTrajectoryResponse, any>>;
7544
+ addTrajectory(cell: string, controller: string, addTrajectoryRequest: AddTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<AddTrajectoryResponse, any>>;
7513
7545
  /**
7514
7546
  * Clear the trajectory cache.
7515
7547
  * @summary Clear Trajectories
@@ -7518,7 +7550,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
7518
7550
  * @param {*} [options] Override http request option.
7519
7551
  * @throws {RequiredError}
7520
7552
  */
7521
- clearTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
7553
+ clearTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
7522
7554
  /**
7523
7555
  * 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.
7524
7556
  * @summary Delete Trajectory
@@ -7528,7 +7560,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
7528
7560
  * @param {*} [options] Override http request option.
7529
7561
  * @throws {RequiredError}
7530
7562
  */
7531
- deleteTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
7563
+ deleteTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
7532
7564
  /**
7533
7565
  * Get a previously created trajectory from cache. Use [listTrajectories](listTrajectories) to list all cached trajectories.
7534
7566
  * @summary Get Trajectory
@@ -7538,7 +7570,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
7538
7570
  * @param {*} [options] Override http request option.
7539
7571
  * @throws {RequiredError}
7540
7572
  */
7541
- getTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<GetTrajectoryResponse, any>>;
7573
+ getTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<GetTrajectoryResponse, any>>;
7542
7574
  /**
7543
7575
  * 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.
7544
7576
  * @summary List Trajectories
@@ -7547,7 +7579,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
7547
7579
  * @param {*} [options] Override http request option.
7548
7580
  * @throws {RequiredError}
7549
7581
  */
7550
- listTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ListTrajectoriesResponse, any>>;
7582
+ listTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ListTrajectoriesResponse, any>>;
7551
7583
  }
7552
7584
  /**
7553
7585
  * TrajectoryExecutionApi - axios parameter creator
@@ -7607,7 +7639,7 @@ declare class TrajectoryExecutionApi extends BaseAPI {
7607
7639
  * @param {*} [options] Override http request option.
7608
7640
  * @throws {RequiredError}
7609
7641
  */
7610
- executeTrajectory(cell: string, controller: string, executeTrajectoryRequest: ExecuteTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ExecuteTrajectoryResponse, any>>;
7642
+ executeTrajectory(cell: string, controller: string, executeTrajectoryRequest: ExecuteTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ExecuteTrajectoryResponse, any>>;
7611
7643
  }
7612
7644
  /**
7613
7645
  * TrajectoryPlanningApi - axios parameter creator
@@ -7690,7 +7722,7 @@ declare class TrajectoryPlanningApi extends BaseAPI {
7690
7722
  * @param {*} [options] Override http request option.
7691
7723
  * @throws {RequiredError}
7692
7724
  */
7693
- planCollisionFree(cell: string, planCollisionFreeRequest: PlanCollisionFreeRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<PlanCollisionFreeResponse, any>>;
7725
+ planCollisionFree(cell: string, planCollisionFreeRequest: PlanCollisionFreeRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<PlanCollisionFreeResponse, any>>;
7694
7726
  /**
7695
7727
  * 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.
7696
7728
  * @summary Plan Trajectory
@@ -7699,7 +7731,7 @@ declare class TrajectoryPlanningApi extends BaseAPI {
7699
7731
  * @param {*} [options] Override http request option.
7700
7732
  * @throws {RequiredError}
7701
7733
  */
7702
- planTrajectory(cell: string, planTrajectoryRequest: PlanTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<PlanTrajectoryResponse, any>>;
7734
+ planTrajectory(cell: string, planTrajectoryRequest: PlanTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<PlanTrajectoryResponse, any>>;
7703
7735
  }
7704
7736
  /**
7705
7737
  * VersionApi - axios parameter creator
@@ -7747,7 +7779,7 @@ declare class VersionApi extends BaseAPI {
7747
7779
  * @param {*} [options] Override http request option.
7748
7780
  * @throws {RequiredError}
7749
7781
  */
7750
- getApiVersion(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ApiVersion, any>>;
7782
+ getApiVersion(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ApiVersion, any>>;
7751
7783
  }
7752
7784
  /**
7753
7785
  * VirtualControllerApi - axios parameter creator
@@ -8237,7 +8269,7 @@ declare class VirtualControllerApi extends BaseAPI {
8237
8269
  * @param {*} [options] Override http request option.
8238
8270
  * @throws {RequiredError}
8239
8271
  */
8240
- addVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, coordinateSystemData: CoordinateSystemData, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8272
+ addVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, coordinateSystemData: CoordinateSystemData, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8241
8273
  /**
8242
8274
  * 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.
8243
8275
  * @summary Add TCP
@@ -8249,7 +8281,7 @@ declare class VirtualControllerApi extends BaseAPI {
8249
8281
  * @param {*} [options] Override http request option.
8250
8282
  * @throws {RequiredError}
8251
8283
  */
8252
- addVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, robotTcpData: RobotTcpData, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8284
+ addVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, robotTcpData: RobotTcpData, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8253
8285
  /**
8254
8286
  * 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.
8255
8287
  * @summary Delete Coordinate System
@@ -8260,7 +8292,7 @@ declare class VirtualControllerApi extends BaseAPI {
8260
8292
  * @param {*} [options] Override http request option.
8261
8293
  * @throws {RequiredError}
8262
8294
  */
8263
- deleteVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8295
+ deleteVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8264
8296
  /**
8265
8297
  * 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.
8266
8298
  * @summary Remove TCP
@@ -8271,7 +8303,7 @@ declare class VirtualControllerApi extends BaseAPI {
8271
8303
  * @param {*} [options] Override http request option.
8272
8304
  * @throws {RequiredError}
8273
8305
  */
8274
- deleteVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8306
+ deleteVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8275
8307
  /**
8276
8308
  * 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.
8277
8309
  * @summary Get Emergency Stop State
@@ -8280,7 +8312,7 @@ declare class VirtualControllerApi extends BaseAPI {
8280
8312
  * @param {*} [options] Override http request option.
8281
8313
  * @throws {RequiredError}
8282
8314
  */
8283
- getEmergencyStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Flag, any>>;
8315
+ getEmergencyStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Flag, any>>;
8284
8316
  /**
8285
8317
  * Get the current motion group state which provides values for the joints\' position, velocity and acceleration.
8286
8318
  * @summary Get Motion Group State
@@ -8290,7 +8322,7 @@ declare class VirtualControllerApi extends BaseAPI {
8290
8322
  * @param {*} [options] Override http request option.
8291
8323
  * @throws {RequiredError}
8292
8324
  */
8293
- getMotionGroupState(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupJoints, any>>;
8325
+ getMotionGroupState(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<MotionGroupJoints, any>>;
8294
8326
  /**
8295
8327
  * Gets information on the motion group.
8296
8328
  * @summary Motion Group Description
@@ -8299,7 +8331,7 @@ declare class VirtualControllerApi extends BaseAPI {
8299
8331
  * @param {*} [options] Override http request option.
8300
8332
  * @throws {RequiredError}
8301
8333
  */
8302
- getMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupInfo[], any>>;
8334
+ getMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<MotionGroupInfo[], any>>;
8303
8335
  /**
8304
8336
  * 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.
8305
8337
  * @summary Get Operation Mode
@@ -8308,7 +8340,7 @@ declare class VirtualControllerApi extends BaseAPI {
8308
8340
  * @param {*} [options] Override http request option.
8309
8341
  * @throws {RequiredError}
8310
8342
  */
8311
- getOperationMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<OpMode, any>>;
8343
+ getOperationMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<OpMode, any>>;
8312
8344
  /**
8313
8345
  * Gets motion group mounting. The motion group is based on the origin of the returned coordinate system.
8314
8346
  * @summary Get Mounting
@@ -8318,7 +8350,7 @@ declare class VirtualControllerApi extends BaseAPI {
8318
8350
  * @param {*} [options] Override http request option.
8319
8351
  * @throws {RequiredError}
8320
8352
  */
8321
- getVirtualControllerMounting(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem, any>>;
8353
+ getVirtualControllerMounting(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CoordinateSystem, any>>;
8322
8354
  /**
8323
8355
  * Lists all coordinate systems on the robot controller.
8324
8356
  * @summary List Coordinate Systems
@@ -8327,7 +8359,7 @@ declare class VirtualControllerApi extends BaseAPI {
8327
8359
  * @param {*} [options] Override http request option.
8328
8360
  * @throws {RequiredError}
8329
8361
  */
8330
- listVirtualControllerCoordinateSystems(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem[], any>>;
8362
+ listVirtualControllerCoordinateSystems(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CoordinateSystem[], any>>;
8331
8363
  /**
8332
8364
  * Lists TCPs of the motion group. An empty TCP list is valid, e.g., for external axes.
8333
8365
  * @summary List TCPs
@@ -8337,7 +8369,7 @@ declare class VirtualControllerApi extends BaseAPI {
8337
8369
  * @param {*} [options] Override http request option.
8338
8370
  * @throws {RequiredError}
8339
8371
  */
8340
- listVirtualControllerTcps(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotTcp[], any>>;
8372
+ listVirtualControllerTcps(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<RobotTcp[], any>>;
8341
8373
  /**
8342
8374
  * 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.
8343
8375
  * @summary Push or Release Emergency Stop
@@ -8347,7 +8379,7 @@ declare class VirtualControllerApi extends BaseAPI {
8347
8379
  * @param {*} [options] Override http request option.
8348
8380
  * @throws {RequiredError}
8349
8381
  */
8350
- setEmergencyStop(cell: string, controller: string, active?: boolean, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8382
+ setEmergencyStop(cell: string, controller: string, active?: boolean, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8351
8383
  /**
8352
8384
  * 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.
8353
8385
  * @summary Set Motion Group State
@@ -8358,7 +8390,7 @@ declare class VirtualControllerApi extends BaseAPI {
8358
8390
  * @param {*} [options] Override http request option.
8359
8391
  * @throws {RequiredError}
8360
8392
  */
8361
- setMotionGroupState(cell: string, controller: string, motionGroup: string, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8393
+ setMotionGroupState(cell: string, controller: string, motionGroup: string, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8362
8394
  /**
8363
8395
  * 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.
8364
8396
  * @summary Set Operation Mode
@@ -8368,7 +8400,7 @@ declare class VirtualControllerApi extends BaseAPI {
8368
8400
  * @param {*} [options] Override http request option.
8369
8401
  * @throws {RequiredError}
8370
8402
  */
8371
- setOperationMode(cell: string, controller: string, mode: OperationMode, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8403
+ setOperationMode(cell: string, controller: string, mode: OperationMode, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8372
8404
  /**
8373
8405
  * 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.
8374
8406
  * @summary Set Mounting
@@ -8379,7 +8411,7 @@ declare class VirtualControllerApi extends BaseAPI {
8379
8411
  * @param {*} [options] Override http request option.
8380
8412
  * @throws {RequiredError}
8381
8413
  */
8382
- setVirtualControllerMounting(cell: string, controller: string, motionGroup: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem, any>>;
8414
+ setVirtualControllerMounting(cell: string, controller: string, motionGroup: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CoordinateSystem, any>>;
8383
8415
  }
8384
8416
  /**
8385
8417
  * VirtualControllerBehaviorApi - axios parameter creator
@@ -8523,7 +8555,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
8523
8555
  * @param {*} [options] Override http request option.
8524
8556
  * @throws {RequiredError}
8525
8557
  */
8526
- externalJointsStream(cell: string, controller: string, externalJointStreamRequest: ExternalJointStreamRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ExternalJointStreamDatapoint[], any>>;
8558
+ externalJointsStream(cell: string, controller: string, externalJointStreamRequest: ExternalJointStreamRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ExternalJointStreamDatapoint[], any>>;
8527
8559
  /**
8528
8560
  * Get the cycle time of controller communication in [ms].
8529
8561
  * @summary Get Cycle Time
@@ -8532,7 +8564,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
8532
8564
  * @param {*} [options] Override http request option.
8533
8565
  * @throws {RequiredError}
8534
8566
  */
8535
- getCycleTime(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CycleTime, any>>;
8567
+ getCycleTime(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CycleTime, any>>;
8536
8568
  /**
8537
8569
  * Get the current virtual controller behavior. See [setVirtualControllerBehavior](setVirtualControllerBehavior) and the body for details.
8538
8570
  * @summary Get Behavior
@@ -8541,7 +8573,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
8541
8573
  * @param {*} [options] Override http request option.
8542
8574
  * @throws {RequiredError}
8543
8575
  */
8544
- getVirtualControllerBehavior(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Behavior, any>>;
8576
+ getVirtualControllerBehavior(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Behavior, any>>;
8545
8577
  /**
8546
8578
  * Set virtual controller behavior. See query parameters for details.
8547
8579
  * @summary Set Behavior
@@ -8551,7 +8583,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
8551
8583
  * @param {*} [options] Override http request option.
8552
8584
  * @throws {RequiredError}
8553
8585
  */
8554
- setVirtualControllerBehavior(cell: string, controller: string, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8586
+ setVirtualControllerBehavior(cell: string, controller: string, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8555
8587
  }
8556
8588
  /**
8557
8589
  * VirtualControllerInputsOutputsApi - axios parameter creator
@@ -8680,7 +8712,7 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
8680
8712
  * @param {*} [options] Override http request option.
8681
8713
  * @throws {RequiredError}
8682
8714
  */
8683
- listIOs(cell: string, controller: string, ios: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IOValue[], any>>;
8715
+ listIOs(cell: string, controller: string, ios: Array<string>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<IOValue[], any>>;
8684
8716
  /**
8685
8717
  * 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.
8686
8718
  * @summary List Descriptions
@@ -8693,7 +8725,7 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
8693
8725
  * @param {*} [options] Override http request option.
8694
8726
  * @throws {RequiredError}
8695
8727
  */
8696
- listVirtualControllerIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IODescription[], any>>;
8728
+ listVirtualControllerIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<IODescription[], any>>;
8697
8729
  /**
8698
8730
  * Sets a list of values of a virtual controller inputs/outputs.
8699
8731
  * @summary Set Input/Ouput Values
@@ -8703,7 +8735,7 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
8703
8735
  * @param {*} [options] Override http request option.
8704
8736
  * @throws {RequiredError}
8705
8737
  */
8706
- setIOValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8738
+ setIOValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8707
8739
  }
8708
8740
  //#endregion
8709
- export { AbbController, AbbControllerEgmServer, AbbControllerKindEnum, ActivateLicenseRequest, AddTrajectoryError, AddTrajectoryErrorData, AddTrajectoryRequest, AddTrajectoryResponse, ApiVersion, App, ApplicationApi, ApplicationApiAxiosParamCreator, ApplicationApiFactory, ApplicationApiFp, BASE_PATH, BUSInputsOutputsApi, BUSInputsOutputsApiAxiosParamCreator, BUSInputsOutputsApiFactory, BUSInputsOutputsApiFp, BaseAPI, Behavior, BlendingAuto, BlendingAutoBlendingNameEnum, BlendingPosition, BlendingPositionBlendingNameEnum, BooleanValue, BooleanValueValueTypeEnum, Box, BoxBoxTypeEnum, BoxShapeTypeEnum, BusIODescription, BusIOModbusClient, BusIOModbusClientBusTypeEnum, BusIOModbusServer, BusIOModbusServerBusTypeEnum, BusIOModbusTCPClient, BusIOModbusTCPClientNetworkTypeEnum, BusIOModbusTCPServer, BusIOModbusTCPServerNetworkTypeEnum, BusIOModbusVirtual, BusIOModbusVirtualBusTypeEnum, BusIOProfinet, BusIOProfinetBusTypeEnum, BusIOProfinetDefaultRoute, BusIOProfinetIpConfig, BusIOProfinetNetwork, BusIOProfinetVirtual, BusIOProfinetVirtualBusTypeEnum, BusIOType, BusIOsState, BusIOsStateEnum, COLLECTION_FORMATS, Capsule, CapsuleShapeTypeEnum, CartesianLimits, Cell, CellApi, CellApiAxiosParamCreator, CellApiFactory, CellApiFp, Collider, ColliderShape, Collision, CollisionContact, CollisionError, CollisionFreeAlgorithm, CollisionSetup, Comparator, Configuration, ConfigurationArchiveStatus, ConfigurationArchiveStatusCreating, ConfigurationArchiveStatusCreatingStatusEnum, ConfigurationArchiveStatusError, ConfigurationArchiveStatusErrorStatusEnum, ConfigurationArchiveStatusSuccess, ConfigurationArchiveStatusSuccessStatusEnum, ConfigurationParameters, ConfigurationResource, ContainerEnvironmentInner, ContainerImage, ContainerImageSecretsInner, ContainerResources, ContainerStorage, ControllerApi, ControllerApiAxiosParamCreator, ControllerApiFactory, ControllerApiFp, ControllerDescription, ControllerInputsOutputsApi, ControllerInputsOutputsApiAxiosParamCreator, ControllerInputsOutputsApiFactory, ControllerInputsOutputsApiFp, ConvexHull, ConvexHullShapeTypeEnum, CoordinateSystem, CoordinateSystemData, CubicSplineParameter, CycleTime, Cylinder, CylinderShapeTypeEnum, DHParameter, Direction, ErrorInvalidJointCount, ErrorInvalidJointCountErrorFeedbackNameEnum, ErrorJointLimitExceeded, ErrorJointLimitExceededErrorFeedbackNameEnum, ErrorJointPositionCollision, ErrorJointPositionCollisionErrorFeedbackNameEnum, ErrorMaxIterationsExceeded, ErrorMaxIterationsExceededErrorFeedbackNameEnum, Execute, ExecuteDetails, ExecuteJoggingRequest, ExecuteJoggingResponse, ExecuteTrajectoryRequest, ExecuteTrajectoryResponse, ExternalJointStreamDatapoint, ExternalJointStreamRequest, FanucController, FanucControllerKindEnum, FeedbackCollision, FeedbackCollisionErrorFeedbackNameEnum, FeedbackJointLimitExceeded, FeedbackJointLimitExceededErrorFeedbackNameEnum, FeedbackOutOfWorkspace, FeedbackOutOfWorkspaceErrorFeedbackNameEnum, FeedbackSingularity, FeedbackSingularityErrorFeedbackNameEnum, Flag, FloatValue, FloatValueValueTypeEnum, ForwardKinematics422Response, ForwardKinematicsRequest, ForwardKinematicsResponse, ForwardKinematicsValidationError, GetTrajectoryResponse, HTTPValidationError, IOBooleanValue, IOBooleanValueValueTypeEnum, IOBoundary, IODescription, IODirection, IOFloatValue, IOFloatValueValueTypeEnum, IOIntegerValue, IOIntegerValueValueTypeEnum, IOOrigin, IOValue, IOValueType, ImageCredentials, InconsistentTrajectorySizeError, InconsistentTrajectorySizeErrorInconsistentTrajectorySize, InitializeJoggingRequest, InitializeJoggingRequestMessageTypeEnum, InitializeJoggingResponse, InitializeJoggingResponseKindEnum, InitializeMovementRequest, InitializeMovementRequestMessageTypeEnum, InitializeMovementRequestTrajectory, InitializeMovementResponse, InitializeMovementResponseKindEnum, IntegerValue, IntegerValueValueTypeEnum, InvalidDofError, InvalidDofErrorInvalidDof, InverseKinematics422Response, InverseKinematicsRequest, InverseKinematicsResponse, InverseKinematicsValidationError, InverseKinematicsValidationErrorAllOfData, JoggingApi, JoggingApiAxiosParamCreator, JoggingApiFactory, JoggingApiFp, JoggingDetails, JoggingDetailsKindEnum, JoggingDetailsState, JoggingPausedByUser, JoggingPausedByUserKindEnum, JoggingPausedNearCollision, JoggingPausedNearCollisionKindEnum, JoggingPausedNearJointLimit, JoggingPausedNearJointLimitKindEnum, JoggingPausedOnIO, JoggingPausedOnIOKindEnum, JoggingRunning, JoggingRunningKindEnum, JointLimitExceededError, JointLimits, JointTrajectory, JointVelocityRequest, JointVelocityRequestMessageTypeEnum, JointVelocityResponse, JointVelocityResponseKindEnum, KinematicsApi, KinematicsApiAxiosParamCreator, KinematicsApiFactory, KinematicsApiFp, KukaController, KukaControllerKindEnum, KukaControllerRsiServer, License, LicenseApi, LicenseApiAxiosParamCreator, LicenseApiFactory, LicenseApiFp, LicenseStatus, LicenseStatusEnum, LimitRange, LimitSet, LimitsOverride, ListTrajectoriesResponse, Manufacturer, MidpointInsertionAlgorithm, MidpointInsertionAlgorithmAlgorithmNameEnum, ModbusIO, ModbusIOArea, ModbusIOByteOrder, ModbusIOData, ModbusIOTypeEnum, ModelError, MotionCommand, MotionCommandBlending, MotionCommandPath, MotionGroupApi, MotionGroupApiAxiosParamCreator, MotionGroupApiFactory, MotionGroupApiFp, MotionGroupDescription, MotionGroupInfo, MotionGroupJoints, MotionGroupModelsApi, MotionGroupModelsApiAxiosParamCreator, MotionGroupModelsApiFactory, MotionGroupModelsApiFp, MotionGroupSetup, MotionGroupState, MotionGroupStateJointLimitReached, MovementErrorResponse, MovementErrorResponseKindEnum, NanValueError, NanValueErrorNanValue, OpMode, OperatingState, OperationLimits, OperationMode, OrientationType, PathCartesianPTP, PathCartesianPTPPathDefinitionNameEnum, PathCircle, PathCirclePathDefinitionNameEnum, PathCubicSpline, PathCubicSplinePathDefinitionNameEnum, PathJointPTP, PathJointPTPPathDefinitionNameEnum, PathLine, PathLinePathDefinitionNameEnum, PauseJoggingRequest, PauseJoggingRequestMessageTypeEnum, PauseJoggingResponse, PauseJoggingResponseKindEnum, PauseMovementRequest, PauseMovementRequestMessageTypeEnum, PauseMovementResponse, PauseMovementResponseKindEnum, PauseOnIO, Payload, Plan422Response, PlanCollisionFreeFailedResponse, PlanCollisionFreeRequest, PlanCollisionFreeResponse, PlanCollisionFreeResponseResponse, PlanTrajectoryFailedResponse, PlanTrajectoryFailedResponseErrorFeedback, PlanTrajectoryRequest, PlanTrajectoryResponse, PlanTrajectoryResponseResponse, PlanValidationError, PlanValidationErrorAllOfData, Plane, PlaneShapeTypeEnum, PlaybackSpeedRequest, PlaybackSpeedRequestMessageTypeEnum, PlaybackSpeedResponse, PlaybackSpeedResponseKindEnum, Pose, ProfinetDescription, ProfinetIO, ProfinetIOData, ProfinetIODirection, ProfinetIOTypeEnum, ProfinetInputOutputConfig, ProfinetSlotDescription, ProfinetSubSlotDescription, Program, ProgramApi, ProgramApiAxiosParamCreator, ProgramApiFactory, ProgramApiFp, ProgramRun, ProgramRunState, ProgramStartRequest, RRTConnectAlgorithm, RRTConnectAlgorithmAlgorithmNameEnum, Rectangle, RectangleShapeTypeEnum, RectangularCapsule, RectangularCapsuleShapeTypeEnum, ReleaseChannel, RequestArgs, RequiredError, RobotController, RobotControllerConfiguration, RobotControllerState, RobotSystemMode, RobotTcp, RobotTcpData, SafetyStateType, ServiceGroup, ServiceStatus, ServiceStatusPhase, ServiceStatusResponse, ServiceStatusSeverity, ServiceStatusStatus, SetIO, SettableRobotSystemMode, SingularityTypeEnum, Sphere, SphereShapeTypeEnum, StartMovementRequest, StartMovementRequestMessageTypeEnum, StartMovementResponse, StartMovementResponseKindEnum, StartOnIO, StoreCollisionComponentsApi, StoreCollisionComponentsApiAxiosParamCreator, StoreCollisionComponentsApiFactory, StoreCollisionComponentsApiFp, StoreCollisionSetupsApi, StoreCollisionSetupsApiAxiosParamCreator, StoreCollisionSetupsApiFactory, StoreCollisionSetupsApiFp, StoreObjectApi, StoreObjectApiAxiosParamCreator, StoreObjectApiFactory, StoreObjectApiFp, StreamIOValuesResponse, SystemApi, SystemApiAxiosParamCreator, SystemApiFactory, SystemApiFp, TcpOffset, TcpRequiredError, TcpVelocityRequest, TcpVelocityRequestMessageTypeEnum, TcpVelocityResponse, TcpVelocityResponseKindEnum, TorqueExceededError, TorqueExceededErrorTorqueExceeded, TrajectoryCachingApi, TrajectoryCachingApiAxiosParamCreator, TrajectoryCachingApiFactory, TrajectoryCachingApiFp, TrajectoryData, TrajectoryDataMessageTypeEnum, TrajectoryDetails, TrajectoryDetailsKindEnum, TrajectoryDetailsState, TrajectoryEnded, TrajectoryEndedKindEnum, TrajectoryExecutionApi, TrajectoryExecutionApiAxiosParamCreator, TrajectoryExecutionApiFactory, TrajectoryExecutionApiFp, TrajectoryId, TrajectoryIdMessageTypeEnum, TrajectoryPausedByUser, TrajectoryPausedByUserKindEnum, TrajectoryPausedOnIO, TrajectoryPausedOnIOKindEnum, TrajectoryPlanningApi, TrajectoryPlanningApiAxiosParamCreator, TrajectoryPlanningApiFactory, TrajectoryPlanningApiFp, TrajectoryRunning, TrajectoryRunningKindEnum, TrajectoryWaitForIO, TrajectoryWaitForIOKindEnum, UnitType, UniversalrobotsController, UniversalrobotsControllerKindEnum, UpdateNovaVersionRequest, ValidationError, ValidationError2, ValidationErrorLocInner, VersionApi, VersionApiAxiosParamCreator, VersionApiFactory, VersionApiFp, VirtualController, VirtualControllerApi, VirtualControllerApiAxiosParamCreator, VirtualControllerApiFactory, VirtualControllerApiFp, VirtualControllerBehaviorApi, VirtualControllerBehaviorApiAxiosParamCreator, VirtualControllerBehaviorApiFactory, VirtualControllerBehaviorApiFp, VirtualControllerInputsOutputsApi, VirtualControllerInputsOutputsApiAxiosParamCreator, VirtualControllerInputsOutputsApiFactory, VirtualControllerInputsOutputsApiFp, VirtualControllerKindEnum, VirtualControllerTypes, VirtualRobotConfiguration, WaitForIOEventRequest, YaskawaController, YaskawaControllerKindEnum, operationServerMap };
8741
+ export { AbbController, AbbControllerEgmServer, AbbControllerKindEnum, ActivateLicenseRequest, AddTrajectoryError, AddTrajectoryErrorData, AddTrajectoryRequest, AddTrajectoryResponse, ApiVersion, App, ApplicationApi, ApplicationApiAxiosParamCreator, ApplicationApiFactory, ApplicationApiFp, BASE_PATH, BUSInputsOutputsApi, BUSInputsOutputsApiAxiosParamCreator, BUSInputsOutputsApiFactory, BUSInputsOutputsApiFp, BaseAPI, Behavior, BlendingAuto, BlendingAutoBlendingNameEnum, BlendingPosition, BlendingPositionBlendingNameEnum, BlendingSpace, BooleanValue, BooleanValueValueTypeEnum, Box, BoxBoxTypeEnum, BoxShapeTypeEnum, BusIODescription, BusIOModbusClient, BusIOModbusClientBusTypeEnum, BusIOModbusServer, BusIOModbusServerBusTypeEnum, BusIOModbusTCPClient, BusIOModbusTCPClientNetworkTypeEnum, BusIOModbusTCPServer, BusIOModbusTCPServerNetworkTypeEnum, BusIOModbusVirtual, BusIOModbusVirtualBusTypeEnum, BusIOProfinet, BusIOProfinetBusTypeEnum, BusIOProfinetDefaultRoute, BusIOProfinetIpConfig, BusIOProfinetNetwork, BusIOProfinetVirtual, BusIOProfinetVirtualBusTypeEnum, BusIOType, BusIOsState, BusIOsStateEnum, COLLECTION_FORMATS, Capsule, CapsuleShapeTypeEnum, CartesianLimits, Cell, CellApi, CellApiAxiosParamCreator, CellApiFactory, CellApiFp, Collider, ColliderShape, Collision, CollisionContact, CollisionError, CollisionFreeAlgorithm, CollisionSetup, Comparator, Configuration, ConfigurationArchiveStatus, ConfigurationArchiveStatusCreating, ConfigurationArchiveStatusCreatingStatusEnum, ConfigurationArchiveStatusError, ConfigurationArchiveStatusErrorStatusEnum, ConfigurationArchiveStatusSuccess, ConfigurationArchiveStatusSuccessStatusEnum, ConfigurationParameters, ConfigurationResource, ContainerEnvironmentInner, ContainerImage, ContainerImageSecretsInner, ContainerResources, ContainerStorage, ControllerApi, ControllerApiAxiosParamCreator, ControllerApiFactory, ControllerApiFp, ControllerDescription, ControllerInputsOutputsApi, ControllerInputsOutputsApiAxiosParamCreator, ControllerInputsOutputsApiFactory, ControllerInputsOutputsApiFp, ConvexHull, ConvexHullShapeTypeEnum, CoordinateSystem, CoordinateSystemData, CubicSplineParameter, CycleTime, Cylinder, CylinderShapeTypeEnum, DHParameter, Direction, ErrorInvalidJointCount, ErrorInvalidJointCountErrorFeedbackNameEnum, ErrorJointLimitExceeded, ErrorJointLimitExceededErrorFeedbackNameEnum, ErrorJointPositionCollision, ErrorJointPositionCollisionErrorFeedbackNameEnum, ErrorMaxIterationsExceeded, ErrorMaxIterationsExceededErrorFeedbackNameEnum, Execute, ExecuteDetails, ExecuteJoggingRequest, ExecuteJoggingResponse, ExecuteTrajectoryRequest, ExecuteTrajectoryResponse, ExternalJointStreamDatapoint, ExternalJointStreamRequest, FanucController, FanucControllerKindEnum, FeedbackCollision, FeedbackCollisionErrorFeedbackNameEnum, FeedbackJointLimitExceeded, FeedbackJointLimitExceededErrorFeedbackNameEnum, FeedbackOutOfWorkspace, FeedbackOutOfWorkspaceErrorFeedbackNameEnum, FeedbackSingularity, FeedbackSingularityErrorFeedbackNameEnum, Flag, FloatValue, FloatValueValueTypeEnum, ForwardKinematics422Response, ForwardKinematicsRequest, ForwardKinematicsResponse, ForwardKinematicsValidationError, GetTrajectoryResponse, HTTPValidationError, IOBooleanValue, IOBooleanValueValueTypeEnum, IOBoundary, IODescription, IODirection, IOFloatValue, IOFloatValueValueTypeEnum, IOIntegerValue, IOIntegerValueValueTypeEnum, IOOrigin, IOValue, IOValueType, ImageCredentials, InconsistentTrajectorySizeError, InconsistentTrajectorySizeErrorInconsistentTrajectorySize, InitializeJoggingRequest, InitializeJoggingRequestMessageTypeEnum, InitializeJoggingResponse, InitializeJoggingResponseKindEnum, InitializeMovementRequest, InitializeMovementRequestMessageTypeEnum, InitializeMovementRequestTrajectory, InitializeMovementResponse, InitializeMovementResponseKindEnum, IntegerValue, IntegerValueValueTypeEnum, InvalidDofError, InvalidDofErrorInvalidDof, InverseKinematics422Response, InverseKinematicsRequest, InverseKinematicsResponse, InverseKinematicsValidationError, InverseKinematicsValidationErrorAllOfData, JoggingApi, JoggingApiAxiosParamCreator, JoggingApiFactory, JoggingApiFp, JoggingDetails, JoggingDetailsKindEnum, JoggingDetailsState, JoggingPausedByUser, JoggingPausedByUserKindEnum, JoggingPausedNearCollision, JoggingPausedNearCollisionKindEnum, JoggingPausedNearJointLimit, JoggingPausedNearJointLimitKindEnum, JoggingPausedOnIO, JoggingPausedOnIOKindEnum, JoggingRunning, JoggingRunningKindEnum, JointLimitExceededError, JointLimits, JointTrajectory, JointVelocityRequest, JointVelocityRequestMessageTypeEnum, JointVelocityResponse, JointVelocityResponseKindEnum, KinematicsApi, KinematicsApiAxiosParamCreator, KinematicsApiFactory, KinematicsApiFp, KukaController, KukaControllerKindEnum, KukaControllerRsiServer, License, LicenseApi, LicenseApiAxiosParamCreator, LicenseApiFactory, LicenseApiFp, LicenseStatus, LicenseStatusEnum, LimitRange, LimitSet, LimitsOverride, ListTrajectoriesResponse, Manufacturer, MidpointInsertionAlgorithm, MidpointInsertionAlgorithmAlgorithmNameEnum, ModbusIO, ModbusIOArea, ModbusIOByteOrder, ModbusIOData, ModbusIOTypeEnum, ModelError, MotionCommand, MotionCommandBlending, MotionCommandPath, MotionGroupApi, MotionGroupApiAxiosParamCreator, MotionGroupApiFactory, MotionGroupApiFp, MotionGroupDescription, MotionGroupInfo, MotionGroupJoints, MotionGroupModelsApi, MotionGroupModelsApiAxiosParamCreator, MotionGroupModelsApiFactory, MotionGroupModelsApiFp, MotionGroupSetup, MotionGroupState, MotionGroupStateJointLimitReached, MovementErrorResponse, MovementErrorResponseKindEnum, NanValueError, NanValueErrorNanValue, OpMode, OperatingState, OperationLimits, OperationMode, OrientationType, PathCartesianPTP, PathCartesianPTPPathDefinitionNameEnum, PathCircle, PathCirclePathDefinitionNameEnum, PathCubicSpline, PathCubicSplinePathDefinitionNameEnum, PathJointPTP, PathJointPTPPathDefinitionNameEnum, PathLine, PathLinePathDefinitionNameEnum, PauseJoggingRequest, PauseJoggingRequestMessageTypeEnum, PauseJoggingResponse, PauseJoggingResponseKindEnum, PauseMovementRequest, PauseMovementRequestMessageTypeEnum, PauseMovementResponse, PauseMovementResponseKindEnum, PauseOnIO, Payload, Plan422Response, PlanCollisionFreeFailedResponse, PlanCollisionFreeRequest, PlanCollisionFreeResponse, PlanCollisionFreeResponseResponse, PlanTrajectoryFailedResponse, PlanTrajectoryFailedResponseErrorFeedback, PlanTrajectoryRequest, PlanTrajectoryResponse, PlanTrajectoryResponseResponse, PlanValidationError, PlanValidationErrorAllOfData, Plane, PlaneShapeTypeEnum, PlaybackSpeedRequest, PlaybackSpeedRequestMessageTypeEnum, PlaybackSpeedResponse, PlaybackSpeedResponseKindEnum, Pose, ProfinetDescription, ProfinetIO, ProfinetIOData, ProfinetIODirection, ProfinetIOTypeEnum, ProfinetInputOutputConfig, ProfinetSlotDescription, ProfinetSubSlotDescription, Program, ProgramApi, ProgramApiAxiosParamCreator, ProgramApiFactory, ProgramApiFp, ProgramRun, ProgramRunState, ProgramStartRequest, RRTConnectAlgorithm, RRTConnectAlgorithmAlgorithmNameEnum, Rectangle, RectangleShapeTypeEnum, RectangularCapsule, RectangularCapsuleShapeTypeEnum, ReleaseChannel, RequestArgs, RequiredError, RobotController, RobotControllerConfiguration, RobotControllerState, RobotSystemMode, RobotTcp, RobotTcpData, SafetyStateType, ServiceGroup, ServiceStatus, ServiceStatusPhase, ServiceStatusResponse, ServiceStatusSeverity, ServiceStatusStatus, SetIO, SettableRobotSystemMode, SingularityTypeEnum, Sphere, SphereShapeTypeEnum, StartMovementRequest, StartMovementRequestMessageTypeEnum, StartMovementResponse, StartMovementResponseKindEnum, StartOnIO, StoreCollisionComponentsApi, StoreCollisionComponentsApiAxiosParamCreator, StoreCollisionComponentsApiFactory, StoreCollisionComponentsApiFp, StoreCollisionSetupsApi, StoreCollisionSetupsApiAxiosParamCreator, StoreCollisionSetupsApiFactory, StoreCollisionSetupsApiFp, StoreObjectApi, StoreObjectApiAxiosParamCreator, StoreObjectApiFactory, StoreObjectApiFp, StreamIOValuesResponse, SystemApi, SystemApiAxiosParamCreator, SystemApiFactory, SystemApiFp, TcpOffset, TcpRequiredError, TcpVelocityRequest, TcpVelocityRequestMessageTypeEnum, TcpVelocityResponse, TcpVelocityResponseKindEnum, TorqueExceededError, TorqueExceededErrorTorqueExceeded, TrajectoryCachingApi, TrajectoryCachingApiAxiosParamCreator, TrajectoryCachingApiFactory, TrajectoryCachingApiFp, TrajectoryData, TrajectoryDataMessageTypeEnum, TrajectoryDetails, TrajectoryDetailsKindEnum, TrajectoryDetailsState, TrajectoryEnded, TrajectoryEndedKindEnum, TrajectoryExecutionApi, TrajectoryExecutionApiAxiosParamCreator, TrajectoryExecutionApiFactory, TrajectoryExecutionApiFp, TrajectoryId, TrajectoryIdMessageTypeEnum, TrajectoryPausedByUser, TrajectoryPausedByUserKindEnum, TrajectoryPausedOnIO, TrajectoryPausedOnIOKindEnum, TrajectoryPlanningApi, TrajectoryPlanningApiAxiosParamCreator, TrajectoryPlanningApiFactory, TrajectoryPlanningApiFp, TrajectoryRunning, TrajectoryRunningKindEnum, TrajectoryWaitForIO, TrajectoryWaitForIOKindEnum, UnitType, UniversalrobotsController, UniversalrobotsControllerKindEnum, UpdateNovaVersionRequest, ValidationError, ValidationError2, ValidationErrorLocInner, VersionApi, VersionApiAxiosParamCreator, VersionApiFactory, VersionApiFp, VirtualController, VirtualControllerApi, VirtualControllerApiAxiosParamCreator, VirtualControllerApiFactory, VirtualControllerApiFp, VirtualControllerBehaviorApi, VirtualControllerBehaviorApiAxiosParamCreator, VirtualControllerBehaviorApiFactory, VirtualControllerBehaviorApiFp, VirtualControllerInputsOutputsApi, VirtualControllerInputsOutputsApiAxiosParamCreator, VirtualControllerInputsOutputsApiFactory, VirtualControllerInputsOutputsApiFp, VirtualControllerKindEnum, VirtualControllerTypes, VirtualRobotConfiguration, WaitForIOEventRequest, YaskawaController, YaskawaControllerKindEnum, operationServerMap };