@wandelbots/nova-api 26.3.0-rc.2 → 26.4.0-dev.21

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,8 +1,7 @@
1
- import * as axios176 from "axios";
1
+ import * as _$axios from "axios";
2
2
  import { AxiosInstance, AxiosPromise, RawAxiosRequestConfig } from "axios";
3
3
 
4
4
  //#region v2/configuration.d.ts
5
-
6
5
  /**
7
6
  * Wandelbots NOVA API
8
7
  * Interact with robots in an easy and intuitive way.
@@ -584,6 +583,19 @@ declare const BusIOsStateEnum: {
584
583
  readonly BusIosStateDisconnected: "BUS_IOS_STATE_DISCONNECTED";
585
584
  };
586
585
  type BusIOsStateEnum = typeof BusIOsStateEnum[keyof typeof BusIOsStateEnum];
586
+ /**
587
+ * A capability granted to the authenticated user. If `resource_ids` is absent or empty, the capability is granted globally without resource restriction.
588
+ */
589
+ interface CapabilityEntry {
590
+ /**
591
+ * Capability relation name.
592
+ */
593
+ 'capability': string;
594
+ /**
595
+ * Resource identifiers the capability is scoped to. Absent or empty means the capability is granted globally. Resource IDs are deduplicated and sorted in ascending order.
596
+ */
597
+ 'resource_ids'?: Array<string>;
598
+ }
587
599
  /**
588
600
  * Defines a cylindrical shape with 2 semi-spheres on the top and bottom. Centred around origin, symmetric around z-axis.
589
601
  */
@@ -1829,6 +1841,10 @@ interface InitializeMovementRequest {
1829
1841
  * Unique identifier addressing a coordinate system to which the responses are transformed. If not set, world coordinate system is used.
1830
1842
  */
1831
1843
  'response_coordinate_system'?: string;
1844
+ /**
1845
+ * If the flag is `true`, controller limits are ignored. Changes to controller limits are not applied to the trajectory.
1846
+ */
1847
+ 'ignore_controller_limits'?: boolean;
1832
1848
  }
1833
1849
  declare const InitializeMovementRequestMessageTypeEnum: {
1834
1850
  readonly InitializeMovementRequest: "InitializeMovementRequest";
@@ -3943,6 +3959,28 @@ interface ServiceStatusStatus {
3943
3959
  'code': ServiceStatusPhase;
3944
3960
  'reason'?: string;
3945
3961
  }
3962
+ /**
3963
+ * Session information including user identity, capabilities, and token lifetime metadata. On unmanaged instances (no authentication or authorization configured), a default anonymous session is returned with `session_id` \"default\", empty user fields, no capabilities, and zero-value timestamps.
3964
+ */
3965
+ interface SessionResponse {
3966
+ /**
3967
+ * Unique identifier for the current session. For authenticated sessions this is derived from the access token. Unmanaged instances return \"default\".
3968
+ */
3969
+ 'session_id': string;
3970
+ 'user': User;
3971
+ /**
3972
+ * Capability entries resolved for the user. Empty on unmanaged instances.
3973
+ */
3974
+ 'capabilities': Array<CapabilityEntry>;
3975
+ /**
3976
+ * Timestamp when the underlying access token was issued. Zero-value on unmanaged instances.
3977
+ */
3978
+ 'issued_at': string;
3979
+ /**
3980
+ * Timestamp when the underlying access token expires. Zero-value on unmanaged instances.
3981
+ */
3982
+ 'expires_at': string;
3983
+ }
3946
3984
  /**
3947
3985
  * Defines an input/output that should be set upon reaching a specified location on the trajectory.
3948
3986
  */
@@ -4301,6 +4339,23 @@ interface UpdateNovaVersionRequest {
4301
4339
  */
4302
4340
  'update_cells'?: boolean;
4303
4341
  }
4342
+ /**
4343
+ * Identity information for the session user. On unmanaged instances all fields are empty strings representing an anonymous user.
4344
+ */
4345
+ interface User {
4346
+ /**
4347
+ * Subject identifier of the user. Empty on unmanaged instances.
4348
+ */
4349
+ 'id': string;
4350
+ /**
4351
+ * Display name of the user. Empty on unmanaged instances.
4352
+ */
4353
+ 'name': string;
4354
+ /**
4355
+ * Email address of the user. Empty on unmanaged instances.
4356
+ */
4357
+ 'email': string;
4358
+ }
4304
4359
  interface ValidationError {
4305
4360
  'loc': Array<ValidationErrorLocInner>;
4306
4361
  'msg': string;
@@ -4601,7 +4656,7 @@ declare class ApplicationApi extends BaseAPI {
4601
4656
  * @param {*} [options] Override http request option.
4602
4657
  * @throws {RequiredError}
4603
4658
  */
4604
- addApp(cell: string, app: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4659
+ addApp(cell: string, app: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
4605
4660
  /**
4606
4661
  * **Required permissions:** `can_manage_apps` - Install, update, or remove applications ___ Delete all GUI applications from the cell.
4607
4662
  * @summary Clear Applications
@@ -4610,7 +4665,7 @@ declare class ApplicationApi extends BaseAPI {
4610
4665
  * @param {*} [options] Override http request option.
4611
4666
  * @throws {RequiredError}
4612
4667
  */
4613
- clearApps(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4668
+ clearApps(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
4614
4669
  /**
4615
4670
  * **Required permissions:** `can_manage_apps` - Install, update, or remove applications ___ Delete a GUI application from the cell.
4616
4671
  * @summary Delete Application
@@ -4620,7 +4675,7 @@ declare class ApplicationApi extends BaseAPI {
4620
4675
  * @param {*} [options] Override http request option.
4621
4676
  * @throws {RequiredError}
4622
4677
  */
4623
- deleteApp(cell: string, app: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4678
+ deleteApp(cell: string, app: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
4624
4679
  /**
4625
4680
  * **Required permissions:** `can_access_apps` - View application configurations ___ 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](#/operations/updateApp).
4626
4681
  * @summary Configuration
@@ -4629,7 +4684,7 @@ declare class ApplicationApi extends BaseAPI {
4629
4684
  * @param {*} [options] Override http request option.
4630
4685
  * @throws {RequiredError}
4631
4686
  */
4632
- getApp(cell: string, app: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<App, any>>;
4687
+ getApp(cell: string, app: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<App, any, {}>>;
4633
4688
  /**
4634
4689
  * **Required permissions:** `can_access_apps` - View application configurations ___ List all GUI applications that have been added to a cell with [addApp](#/operations/addApp). If the cell does not contain GUI applications, the list is returned empty.
4635
4690
  * @summary List Applications
@@ -4637,7 +4692,7 @@ declare class ApplicationApi extends BaseAPI {
4637
4692
  * @param {*} [options] Override http request option.
4638
4693
  * @throws {RequiredError}
4639
4694
  */
4640
- listApps(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
4695
+ listApps(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string[], any, {}>>;
4641
4696
  /**
4642
4697
  * **Required permissions:** `can_manage_apps` - Install, update, or remove applications ___ Update the configuration of a GUI application in the cell.
4643
4698
  * @summary Update Configuration
@@ -4648,7 +4703,7 @@ declare class ApplicationApi extends BaseAPI {
4648
4703
  * @param {*} [options] Override http request option.
4649
4704
  * @throws {RequiredError}
4650
4705
  */
4651
- updateApp(cell: string, app: string, app2: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
4706
+ updateApp(cell: string, app: string, app2: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
4652
4707
  }
4653
4708
  /**
4654
4709
  * BUSInputsOutputsApi - axios parameter creator
@@ -5176,7 +5231,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
5176
5231
  * @param {*} [options] Override http request option.
5177
5232
  * @throws {RequiredError}
5178
5233
  */
5179
- addBusIOService(cell: string, busIOType: BusIOType, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
5234
+ addBusIOService(cell: string, busIOType: BusIOType, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
5180
5235
  /**
5181
5236
  * **Required permissions:** `can_manage_bus_ios` - Manage BUS IO configuration ___ 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](#/operations/listModbusIOs).
5182
5237
  * @summary Add MODBUS Input/Output
@@ -5186,7 +5241,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
5186
5241
  * @param {*} [options] Override http request option.
5187
5242
  * @throws {RequiredError}
5188
5243
  */
5189
- addModbusIO(cell: string, io: string, modbusIOData: ModbusIOData, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
5244
+ addModbusIO(cell: string, io: string, modbusIOData: ModbusIOData, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
5190
5245
  /**
5191
5246
  * **Required permissions:** `can_manage_bus_ios` - Manage BUS IO configuration ___ 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](#/operations/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](#/operations/listProfinetIOs). For the PROFINET controller, e.g., a connected PLC, refer to the corresponding third party software, e.g., TIA portal).
5192
5247
  * @summary Add PROFINET Input/Output
@@ -5196,7 +5251,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
5196
5251
  * @param {*} [options] Override http request option.
5197
5252
  * @throws {RequiredError}
5198
5253
  */
5199
- addProfinetIO(cell: string, io: string, profinetIOData: ProfinetIOData, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
5254
+ addProfinetIO(cell: string, io: string, profinetIOData: ProfinetIOData, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
5200
5255
  /**
5201
5256
  * **Required permissions:** `can_manage_bus_ios` - Manage BUS IO configuration ___ Remove the BUS inputs/outputs service from the cell.
5202
5257
  * @summary Clear Service
@@ -5205,7 +5260,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
5205
5260
  * @param {*} [options] Override http request option.
5206
5261
  * @throws {RequiredError}
5207
5262
  */
5208
- clearBusIOService(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
5263
+ clearBusIOService(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
5209
5264
  /**
5210
5265
  * **Required permissions:** `can_manage_bus_ios` - Manage BUS IO configuration ___ Removes all input/output variable configurations from the MODBUS device, e.g., NOVA\'s MODBUS service.
5211
5266
  * @summary Remove all MODBUS Input/Outputs
@@ -5213,7 +5268,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
5213
5268
  * @param {*} [options] Override http request option.
5214
5269
  * @throws {RequiredError}
5215
5270
  */
5216
- deleteAllModbusIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
5271
+ deleteAllModbusIOs(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
5217
5272
  /**
5218
5273
  * **Required permissions:** `can_manage_bus_ios` - Manage BUS IO configuration ___ Removes all input/output variable configurations from the PROFINET device, e.g., NOVA\'s PROFINET service.
5219
5274
  * @summary Remove all PROFINET Input/Outputs
@@ -5221,7 +5276,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
5221
5276
  * @param {*} [options] Override http request option.
5222
5277
  * @throws {RequiredError}
5223
5278
  */
5224
- deleteAllProfinetIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
5279
+ deleteAllProfinetIOs(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
5225
5280
  /**
5226
5281
  * **Required permissions:** `can_manage_bus_ios` - Manage BUS IO configuration ___ Removes an input/output variable configuration from the MODBUS device, e.g., NOVA\'s MODBUS service.
5227
5282
  * @summary Remove MODBUS Input/Output
@@ -5230,7 +5285,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
5230
5285
  * @param {*} [options] Override http request option.
5231
5286
  * @throws {RequiredError}
5232
5287
  */
5233
- deleteModbusIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
5288
+ deleteModbusIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
5234
5289
  /**
5235
5290
  * **Required permissions:** `can_manage_bus_ios` - Manage BUS IO configuration ___ Removes an input/output variable configuration from the PROFINET device, e.g., NOVA\'s PROFINET service.
5236
5291
  * @summary Remove PROFINET Input/Ouptut
@@ -5239,7 +5294,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
5239
5294
  * @param {*} [options] Override http request option.
5240
5295
  * @throws {RequiredError}
5241
5296
  */
5242
- deleteProfinetIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
5297
+ deleteProfinetIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
5243
5298
  /**
5244
5299
  * **Required permissions:** `can_operate_bus_ios` - Read and write BUS IO values ___ Get deployed BUS inputs/outputs service.
5245
5300
  * @summary Get Service
@@ -5247,7 +5302,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
5247
5302
  * @param {*} [options] Override http request option.
5248
5303
  * @throws {RequiredError}
5249
5304
  */
5250
- getBusIOService(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<BusIOType, any>>;
5305
+ getBusIOService(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<BusIOType, any, {}>>;
5251
5306
  /**
5252
5307
  * **Required permissions:** `can_operate_bus_ios` - Read and write BUS IO values ___ Get the current state of the BUS Inputs/Outputs service.
5253
5308
  * @summary State
@@ -5255,7 +5310,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
5255
5310
  * @param {*} [options] Override http request option.
5256
5311
  * @throws {RequiredError}
5257
5312
  */
5258
- getBusIOState(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<BusIOsState, any>>;
5313
+ getBusIOState(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<BusIOsState, any, {}>>;
5259
5314
  /**
5260
5315
  * **Required permissions:** `can_operate_bus_ios` - Read and write BUS IO values ___ 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](#/operations/listBusIODescriptions).
5261
5316
  * @summary Get Input/Output Values
@@ -5264,7 +5319,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
5264
5319
  * @param {*} [options] Override http request option.
5265
5320
  * @throws {RequiredError}
5266
5321
  */
5267
- getBusIOValues(cell: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<IOValue[], any>>;
5322
+ getBusIOValues(cell: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<IOValue[], any, {}>>;
5268
5323
  /**
5269
5324
  * **Required permissions:** `can_operate_bus_ios` - Read and write BUS IO values ___ Get description of NOVA as a PROFINET device.
5270
5325
  * @summary Get PROFINET Description
@@ -5272,7 +5327,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
5272
5327
  * @param {*} [options] Override http request option.
5273
5328
  * @throws {RequiredError}
5274
5329
  */
5275
- getProfinetDescription(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ProfinetDescription, any>>;
5330
+ getProfinetDescription(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ProfinetDescription, any, {}>>;
5276
5331
  /**
5277
5332
  * **Required permissions:** `can_operate_bus_ios` - Read and write BUS IO values ___ Returns the Generic Station Description Markup Language (GSDML) file for the PROFINET device. The GSDML file describes the PROFINET device configuration and capabilities, and can be imported into PROFINET engineering tools, e.g., TIA Portal, or other PLC programming environments. The returned GSDML file matches the current slot configuration of the PROFINET device.
5278
5333
  * @summary Get PROFINET GSDML File
@@ -5280,7 +5335,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
5280
5335
  * @param {*} [options] Override http request option.
5281
5336
  * @throws {RequiredError}
5282
5337
  */
5283
- getProfinetGSDML(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string, any>>;
5338
+ getProfinetGSDML(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string, any, {}>>;
5284
5339
  /**
5285
5340
  * **Required permissions:** `can_operate_bus_ios` - Read and write BUS IO values ___ 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.
5286
5341
  * @summary PROFINET Inputs/Outputs to File
@@ -5290,7 +5345,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
5290
5345
  * @param {*} [options] Override http request option.
5291
5346
  * @throws {RequiredError}
5292
5347
  */
5293
- getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string, any>>;
5348
+ getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string, any, {}>>;
5294
5349
  /**
5295
5350
  * **Required permissions:** `can_operate_bus_ios` - Read and write BUS IO values ___ 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.
5296
5351
  * @summary List Descriptions
@@ -5298,7 +5353,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
5298
5353
  * @param {*} [options] Override http request option.
5299
5354
  * @throws {RequiredError}
5300
5355
  */
5301
- listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<BusIODescription[], any>>;
5356
+ listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<BusIODescription[], any, {}>>;
5302
5357
  /**
5303
5358
  * **Required permissions:** `can_operate_bus_ios` - Read and write BUS IO values ___ 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](#/operations/addModbusIO).
5304
5359
  * @summary List MODBUS Input/Output Configuration
@@ -5306,7 +5361,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
5306
5361
  * @param {*} [options] Override http request option.
5307
5362
  * @throws {RequiredError}
5308
5363
  */
5309
- listModbusIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ModbusIO[], any>>;
5364
+ listModbusIOs(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ModbusIO[], any, {}>>;
5310
5365
  /**
5311
5366
  * **Required permissions:** `can_operate_bus_ios` - Read and write BUS IO values ___ 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](#/operations/addProfinetIO) and [setProfinetIOsFromFile](#/operations/setProfinetIOsFromFile). For the PROFINET controller, e.g., a connected PLC, refer to the corresponding third party software, e.g., TIA portal.
5312
5367
  * @summary List PROFINET Input/Output Configuration
@@ -5314,7 +5369,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
5314
5369
  * @param {*} [options] Override http request option.
5315
5370
  * @throws {RequiredError}
5316
5371
  */
5317
- listProfinetIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ProfinetIO[], any>>;
5372
+ listProfinetIOs(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ProfinetIO[], any, {}>>;
5318
5373
  /**
5319
5374
  * **Required permissions:** `can_operate_bus_ios` - Read and write BUS IO values ___ 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](#/operations/listBusIODescriptions). The call will return once the values have been set and accepted by the service.
5320
5375
  * @summary Set Output Values
@@ -5323,7 +5378,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
5323
5378
  * @param {*} [options] Override http request option.
5324
5379
  * @throws {RequiredError}
5325
5380
  */
5326
- setBusIOValues(cell: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
5381
+ setBusIOValues(cell: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
5327
5382
  /**
5328
5383
  * **Required permissions:** `can_manage_bus_ios` - Manage BUS IO configuration ___ 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](#/operations/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](#/operations/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 an 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.
5329
5384
  * @summary Set PROFINET Inputs/Outputs from File
@@ -5332,7 +5387,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
5332
5387
  * @param {*} [options] Override http request option.
5333
5388
  * @throws {RequiredError}
5334
5389
  */
5335
- setProfinetIOsFromFile(cell: string, profinetInputOutputConfig: ProfinetInputOutputConfig, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
5390
+ setProfinetIOsFromFile(cell: string, profinetInputOutputConfig: ProfinetInputOutputConfig, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
5336
5391
  }
5337
5392
  /**
5338
5393
  * CellApi - axios parameter creator
@@ -5382,7 +5437,7 @@ declare const CellApiAxiosParamCreator: (configuration?: Configuration) => {
5382
5437
  */
5383
5438
  getCellStatus: (cell: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5384
5439
  /**
5385
- * **Required permissions:** `can_access_cells` - View cell configurations and resources ___ List all deployed cell names. If no cells are deployed, an empty list is returned.
5440
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ List all deployed cell names. If no cells are deployed, an empty list is returned.
5386
5441
  * @summary List Cells
5387
5442
  * @param {*} [options] Override http request option.
5388
5443
  * @throws {RequiredError}
@@ -5465,7 +5520,7 @@ declare const CellApiFp: (configuration?: Configuration) => {
5465
5520
  */
5466
5521
  getCellStatus(cell: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ServiceStatusResponse>>;
5467
5522
  /**
5468
- * **Required permissions:** `can_access_cells` - View cell configurations and resources ___ List all deployed cell names. If no cells are deployed, an empty list is returned.
5523
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ List all deployed cell names. If no cells are deployed, an empty list is returned.
5469
5524
  * @summary List Cells
5470
5525
  * @param {*} [options] Override http request option.
5471
5526
  * @throws {RequiredError}
@@ -5548,7 +5603,7 @@ declare const CellApiFactory: (configuration?: Configuration, basePath?: string,
5548
5603
  */
5549
5604
  getCellStatus(cell: string, options?: RawAxiosRequestConfig): AxiosPromise<ServiceStatusResponse>;
5550
5605
  /**
5551
- * **Required permissions:** `can_access_cells` - View cell configurations and resources ___ List all deployed cell names. If no cells are deployed, an empty list is returned.
5606
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ List all deployed cell names. If no cells are deployed, an empty list is returned.
5552
5607
  * @summary List Cells
5553
5608
  * @param {*} [options] Override http request option.
5554
5609
  * @throws {RequiredError}
@@ -5595,7 +5650,7 @@ declare class CellApi extends BaseAPI {
5595
5650
  * @param {*} [options] Override http request option.
5596
5651
  * @throws {RequiredError}
5597
5652
  */
5598
- checkCellVersionUpdate(cell: string, channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string, any>>;
5653
+ checkCellVersionUpdate(cell: string, channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string, any, {}>>;
5599
5654
  /**
5600
5655
  * **Required permissions:** `can_manage_cells` - Create, update, or delete cells ___ Delete an entire cell.
5601
5656
  * @summary Delete Cell
@@ -5604,7 +5659,7 @@ declare class CellApi extends BaseAPI {
5604
5659
  * @param {*} [options] Override http request option.
5605
5660
  * @throws {RequiredError}
5606
5661
  */
5607
- deleteCell(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
5662
+ deleteCell(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
5608
5663
  /**
5609
5664
  * **Required permissions:** `can_manage_cells` - Create, update, or delete cells ___ 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.
5610
5665
  * @summary Add Cell
@@ -5613,7 +5668,7 @@ declare class CellApi extends BaseAPI {
5613
5668
  * @param {*} [options] Override http request option.
5614
5669
  * @throws {RequiredError}
5615
5670
  */
5616
- deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
5671
+ deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
5617
5672
  /**
5618
5673
  * **Required permissions:** `can_access_cells` - View cell configurations and resources ___ List all cell resources.
5619
5674
  * @summary Configuration
@@ -5621,7 +5676,7 @@ declare class CellApi extends BaseAPI {
5621
5676
  * @param {*} [options] Override http request option.
5622
5677
  * @throws {RequiredError}
5623
5678
  */
5624
- getCell(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Cell, any>>;
5679
+ getCell(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<Cell, any, {}>>;
5625
5680
  /**
5626
5681
  * **Required permissions:** `can_access_system` - View system status and metadata ___ List the status of all cell resources.
5627
5682
  * @summary Service Status
@@ -5629,14 +5684,14 @@ declare class CellApi extends BaseAPI {
5629
5684
  * @param {*} [options] Override http request option.
5630
5685
  * @throws {RequiredError}
5631
5686
  */
5632
- getCellStatus(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ServiceStatusResponse, any>>;
5687
+ getCellStatus(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ServiceStatusResponse, any, {}>>;
5633
5688
  /**
5634
- * **Required permissions:** `can_access_cells` - View cell configurations and resources ___ List all deployed cell names. If no cells are deployed, an empty list is returned.
5689
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ List all deployed cell names. If no cells are deployed, an empty list is returned.
5635
5690
  * @summary List Cells
5636
5691
  * @param {*} [options] Override http request option.
5637
5692
  * @throws {RequiredError}
5638
5693
  */
5639
- listCells(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
5694
+ listCells(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string[], any, {}>>;
5640
5695
  /**
5641
5696
  * **Required permissions:** `can_manage_cells` - Create, update, or delete cells ___ Deactivate or activate the services of a cell.
5642
5697
  * @summary Operating State
@@ -5645,7 +5700,7 @@ declare class CellApi extends BaseAPI {
5645
5700
  * @param {*} [options] Override http request option.
5646
5701
  * @throws {RequiredError}
5647
5702
  */
5648
- setCellStatus(cell: string, operatingState: OperatingState, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
5703
+ setCellStatus(cell: string, operatingState: OperatingState, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
5649
5704
  /**
5650
5705
  * **Required permissions:** `can_manage_cells` - Create, update, or delete cells ___ Update the definition of the entire cell. <!-- theme: info --> > **NOTE** > > This endpoint replaces the full cell configuration and is not a partial update. > To change only one field: > 1. Get the current configuration via [Cell > Configuration](#/operations/getCell). > 2. Send the full configuration with your intended changes via [Cell > Update Configuration](#/operations/updateCell). Omitting existing sections may reset or remove their current configuration.
5651
5706
  * @summary Update Configuration
@@ -5655,7 +5710,7 @@ declare class CellApi extends BaseAPI {
5655
5710
  * @param {*} [options] Override http request option.
5656
5711
  * @throws {RequiredError}
5657
5712
  */
5658
- updateCell(cell: string, cell2: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
5713
+ updateCell(cell: string, cell2: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
5659
5714
  /**
5660
5715
  * **Required permissions:** `can_manage_cells` - Create, update, or delete cells ___ Update the Foundation chart version for a single cell based on a release channel. The resulting version is capped at the current system version.
5661
5716
  * @summary Update Cell Version
@@ -5664,7 +5719,7 @@ declare class CellApi extends BaseAPI {
5664
5719
  * @param {*} [options] Override http request option.
5665
5720
  * @throws {RequiredError}
5666
5721
  */
5667
- updateCellVersion(cell: string, updateCellVersionRequest: UpdateCellVersionRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
5722
+ updateCellVersion(cell: string, updateCellVersionRequest: UpdateCellVersionRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
5668
5723
  }
5669
5724
  /**
5670
5725
  * ControllerApi - axios parameter creator
@@ -6102,7 +6157,7 @@ declare class ControllerApi extends BaseAPI {
6102
6157
  * @param {*} [options] Override http request option.
6103
6158
  * @throws {RequiredError}
6104
6159
  */
6105
- addRobotController(cell: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
6160
+ addRobotController(cell: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
6106
6161
  /**
6107
6162
  * **Required permissions:** `can_manage_controllers` - Create, update, or delete robot controllers ___ Delete all robot controllers from the cell. To replace all robot controllers in a cell, use this endpoint in combination with [addRobotController](#/operations/addRobotController).
6108
6163
  * @summary Clear Robot Controllers
@@ -6111,7 +6166,7 @@ declare class ControllerApi extends BaseAPI {
6111
6166
  * @param {*} [options] Override http request option.
6112
6167
  * @throws {RequiredError}
6113
6168
  */
6114
- clearRobotControllers(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
6169
+ clearRobotControllers(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
6115
6170
  /**
6116
6171
  * **Required permissions:** `can_manage_controllers` - Create, update, or delete robot controllers ___ Delete a robot controller from the cell.
6117
6172
  * @summary Delete Robot Controller
@@ -6121,7 +6176,7 @@ declare class ControllerApi extends BaseAPI {
6121
6176
  * @param {*} [options] Override http request option.
6122
6177
  * @throws {RequiredError}
6123
6178
  */
6124
- deleteRobotController(cell: string, controller: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
6179
+ deleteRobotController(cell: string, controller: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
6125
6180
  /**
6126
6181
  * **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ Get description of a configured robot controller including a list of connected motion group identifiers. Use [getMotionGroupDescription](#/operations/getMotionGroupDescription) to get more information about the motion group.
6127
6182
  * @summary Description
@@ -6130,7 +6185,7 @@ declare class ControllerApi extends BaseAPI {
6130
6185
  * @param {*} [options] Override http request option.
6131
6186
  * @throws {RequiredError}
6132
6187
  */
6133
- getControllerDescription(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ControllerDescription, any>>;
6188
+ getControllerDescription(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ControllerDescription, any, {}>>;
6134
6189
  /**
6135
6190
  * **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ 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.
6136
6191
  * @summary Coordinate System
@@ -6141,7 +6196,7 @@ declare class ControllerApi extends BaseAPI {
6141
6196
  * @param {*} [options] Override http request option.
6142
6197
  * @throws {RequiredError}
6143
6198
  */
6144
- getCoordinateSystem(cell: string, controller: string, coordinateSystem: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CoordinateSystem, any>>;
6199
+ getCoordinateSystem(cell: string, controller: string, coordinateSystem: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<CoordinateSystem, any, {}>>;
6145
6200
  /**
6146
6201
  * **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ Get the current state of a robot controller.
6147
6202
  * @summary State
@@ -6150,7 +6205,7 @@ declare class ControllerApi extends BaseAPI {
6150
6205
  * @param {*} [options] Override http request option.
6151
6206
  * @throws {RequiredError}
6152
6207
  */
6153
- getCurrentRobotControllerState(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<RobotControllerState, any>>;
6208
+ getCurrentRobotControllerState(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<RobotControllerState, any, {}>>;
6154
6209
  /**
6155
6210
  * **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ Get the configuration for a robot controller.
6156
6211
  * @summary Robot Controller
@@ -6159,7 +6214,7 @@ declare class ControllerApi extends BaseAPI {
6159
6214
  * @param {*} [options] Override http request option.
6160
6215
  * @throws {RequiredError}
6161
6216
  */
6162
- getRobotController(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<RobotController, any>>;
6217
+ getRobotController(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<RobotController, any, {}>>;
6163
6218
  /**
6164
6219
  * **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ 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](#/operations/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.
6165
6220
  * @summary Virtual Controller Configuration
@@ -6168,7 +6223,7 @@ declare class ControllerApi extends BaseAPI {
6168
6223
  * @param {*} [options] Override http request option.
6169
6224
  * @throws {RequiredError}
6170
6225
  */
6171
- getVirtualControllerConfiguration(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<VirtualRobotConfiguration, any>>;
6226
+ getVirtualControllerConfiguration(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<VirtualRobotConfiguration, any, {}>>;
6172
6227
  /**
6173
6228
  * **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ 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.
6174
6229
  * @summary List Coordinate Systems
@@ -6178,7 +6233,7 @@ declare class ControllerApi extends BaseAPI {
6178
6233
  * @param {*} [options] Override http request option.
6179
6234
  * @throws {RequiredError}
6180
6235
  */
6181
- listCoordinateSystems(cell: string, controller: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CoordinateSystem[], any>>;
6236
+ listCoordinateSystems(cell: string, controller: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<CoordinateSystem[], any, {}>>;
6182
6237
  /**
6183
6238
  * **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ List the names of all deployed robot controllers.
6184
6239
  * @summary List Robot Controllers
@@ -6186,7 +6241,7 @@ declare class ControllerApi extends BaseAPI {
6186
6241
  * @param {*} [options] Override http request option.
6187
6242
  * @throws {RequiredError}
6188
6243
  */
6189
- listRobotControllers(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
6244
+ listRobotControllers(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string[], any, {}>>;
6190
6245
  /**
6191
6246
  * **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ 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](#/operations/getCurrentRobotControllerState). If a mode change is not possible, the response lists reasons for the failed change.
6192
6247
  * @summary Set Default Mode
@@ -6196,7 +6251,7 @@ declare class ControllerApi extends BaseAPI {
6196
6251
  * @param {*} [options] Override http request option.
6197
6252
  * @throws {RequiredError}
6198
6253
  */
6199
- setDefaultMode(cell: string, controller: string, mode: SettableRobotSystemMode, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
6254
+ setDefaultMode(cell: string, controller: string, mode: SettableRobotSystemMode, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
6200
6255
  /**
6201
6256
  * **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ <!-- 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](#/operations/listRobotControllers) to check if the robot controller supports free drive mode.
6202
6257
  * @summary Stream Free Drive
@@ -6206,7 +6261,7 @@ declare class ControllerApi extends BaseAPI {
6206
6261
  * @param {*} [options] Override http request option.
6207
6262
  * @throws {RequiredError}
6208
6263
  */
6209
- streamFreeDrive(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<RobotControllerState, any>>;
6264
+ streamFreeDrive(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<RobotControllerState, any, {}>>;
6210
6265
  /**
6211
6266
  * **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ <!-- 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](#/operations/addRobotController). While connecting, the stream sends initialization updates. Once the controller reaches `MODE_MONITOR`, it sends controller state updates.
6212
6267
  * @summary Stream State
@@ -6217,7 +6272,7 @@ declare class ControllerApi extends BaseAPI {
6217
6272
  * @param {*} [options] Override http request option.
6218
6273
  * @throws {RequiredError}
6219
6274
  */
6220
- streamRobotControllerState(cell: string, controller: string, responseRate?: number, addControllerTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<RobotControllerState, any>>;
6275
+ streamRobotControllerState(cell: string, controller: string, responseRate?: number, addControllerTimeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<RobotControllerState, any, {}>>;
6221
6276
  /**
6222
6277
  * **Required permissions:** `can_manage_controllers` - Create, update, or delete robot controllers ___ 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](#/operations/getRobotController). > 2. Delete the existing virtual robot controller via [deleteRobotController](#/operations/deleteRobotController). > 3. Add a virtual robot controller with [addRobotController](#/operations/addRobotController).
6223
6278
  * @summary Update Robot Controller
@@ -6228,7 +6283,7 @@ declare class ControllerApi extends BaseAPI {
6228
6283
  * @param {*} [options] Override http request option.
6229
6284
  * @throws {RequiredError}
6230
6285
  */
6231
- updateRobotController(cell: string, controller: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
6286
+ updateRobotController(cell: string, controller: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
6232
6287
  }
6233
6288
  /**
6234
6289
  * ControllerInputsOutputsApi - axios parameter creator
@@ -6420,7 +6475,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
6420
6475
  * @param {*} [options] Override http request option.
6421
6476
  * @throws {RequiredError}
6422
6477
  */
6423
- listIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<IODescription[], any>>;
6478
+ listIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<IODescription[], any, {}>>;
6424
6479
  /**
6425
6480
  * **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ 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](#/operations/listIODescriptions).
6426
6481
  * @summary Get Input/Output Values
@@ -6430,7 +6485,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
6430
6485
  * @param {*} [options] Override http request option.
6431
6486
  * @throws {RequiredError}
6432
6487
  */
6433
- listIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<IOValue[], any>>;
6488
+ listIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<IOValue[], any, {}>>;
6434
6489
  /**
6435
6490
  * **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ Set the values of outputs. All available output identifiers and possible value ranges can be requested via [listIODescriptions](#/operations/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.
6436
6491
  * @summary Set Output Values
@@ -6440,7 +6495,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
6440
6495
  * @param {*} [options] Override http request option.
6441
6496
  * @throws {RequiredError}
6442
6497
  */
6443
- setOutputValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
6498
+ setOutputValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
6444
6499
  /**
6445
6500
  * **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ <!-- 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.
6446
6501
  * @summary Stream Input/Output Values
@@ -6450,7 +6505,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
6450
6505
  * @param {*} [options] Override http request option.
6451
6506
  * @throws {RequiredError}
6452
6507
  */
6453
- streamIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<StreamIOValuesResponse, any>>;
6508
+ streamIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<StreamIOValuesResponse, any, {}>>;
6454
6509
  /**
6455
6510
  * **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ 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](#/operations/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 ```
6456
6511
  * @summary Wait For
@@ -6460,7 +6515,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
6460
6515
  * @param {*} [options] Override http request option.
6461
6516
  * @throws {RequiredError}
6462
6517
  */
6463
- waitForIOEvent(cell: string, controller: string, waitForIOEventRequest: WaitForIOEventRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<boolean, any>>;
6518
+ waitForIOEvent(cell: string, controller: string, waitForIOEventRequest: WaitForIOEventRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<boolean, any, {}>>;
6464
6519
  }
6465
6520
  /**
6466
6521
  * JoggingApi - axios parameter creator
@@ -6520,7 +6575,7 @@ declare class JoggingApi extends BaseAPI {
6520
6575
  * @param {*} [options] Override http request option.
6521
6576
  * @throws {RequiredError}
6522
6577
  */
6523
- executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ExecuteJoggingResponse, any>>;
6578
+ executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ExecuteJoggingResponse, any, {}>>;
6524
6579
  }
6525
6580
  /**
6526
6581
  * KinematicsApi - axios parameter creator
@@ -6630,7 +6685,7 @@ declare class KinematicsApi extends BaseAPI {
6630
6685
  * @param {*} [options] Override http request option.
6631
6686
  * @throws {RequiredError}
6632
6687
  */
6633
- forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ForwardKinematicsResponse, any>>;
6688
+ forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ForwardKinematicsResponse, any, {}>>;
6634
6689
  /**
6635
6690
  * **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the reachable joint positions for a list of given poses.
6636
6691
  * @summary Inverse kinematics
@@ -6639,7 +6694,7 @@ declare class KinematicsApi extends BaseAPI {
6639
6694
  * @param {*} [options] Override http request option.
6640
6695
  * @throws {RequiredError}
6641
6696
  */
6642
- inverseKinematics(cell: string, inverseKinematicsRequest: InverseKinematicsRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<InverseKinematicsResponse, any>>;
6697
+ inverseKinematics(cell: string, inverseKinematicsRequest: InverseKinematicsRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<InverseKinematicsResponse, any, {}>>;
6643
6698
  /**
6644
6699
  * **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ <!-- theme: danger --> > **Experimental** Returns the projected joint position that satisfies the direction constraint for a given target joint position. This may alter the TCP pose. To project the cartesian pose instead, use the following code snippet: ```python import numpy as np from scipy.spatial.transform import Rotation as R def project_cartesian_pose_direction_constraint(T_world_tcp: models.Pose, constraint: models.DirectionConstraint) -> models.Pose: constraint_tcp = np.array(constraint.tcp) target_constraint_world = np.array(constraint.world) R_world_tcp = R.from_rotvec(T_world_tcp.orientation.root) current_constraint_world = R_world_tcp.apply(constraint_tcp) R_corr, _ = R.align_vectors([target_constraint_world], [current_constraint_world]) R_world_tcp_new = R_corr * R_world_tcp return models.Pose(position=T_world_tcp.position, orientation=R_world_tcp_new.as_rotvec()) ```
6645
6700
  * @summary Project joint position to direction constraint
@@ -6648,7 +6703,7 @@ declare class KinematicsApi extends BaseAPI {
6648
6703
  * @param {*} [options] Override http request option.
6649
6704
  * @throws {RequiredError}
6650
6705
  */
6651
- projectJointPositionDirectionConstraint(cell: string, projectJointPositionDirectionConstraintRequest: ProjectJointPositionDirectionConstraintRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ProjectJointPositionDirectionConstraintResponse, any>>;
6706
+ projectJointPositionDirectionConstraint(cell: string, projectJointPositionDirectionConstraintRequest: ProjectJointPositionDirectionConstraintRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ProjectJointPositionDirectionConstraintResponse, any, {}>>;
6652
6707
  }
6653
6708
  /**
6654
6709
  * LicenseApi - axios parameter creator
@@ -6763,28 +6818,28 @@ declare class LicenseApi extends BaseAPI {
6763
6818
  * @param {*} [options] Override http request option.
6764
6819
  * @throws {RequiredError}
6765
6820
  */
6766
- activateLicense(activateLicenseRequest: ActivateLicenseRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<License, any>>;
6821
+ activateLicense(activateLicenseRequest: ActivateLicenseRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<License, any, {}>>;
6767
6822
  /**
6768
6823
  * **Required permissions:** `can_manage_license` - Manage license configuration ___ Deactivates active license.
6769
6824
  * @summary Deactivate license
6770
6825
  * @param {*} [options] Override http request option.
6771
6826
  * @throws {RequiredError}
6772
6827
  */
6773
- deactivateLicense(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
6828
+ deactivateLicense(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
6774
6829
  /**
6775
6830
  * **Required permissions:** `can_manage_license` - Manage license configuration ___ Get information on the license used with the Wandelbots NOVA instance, e.g., licensed product, expiration date, license status.
6776
6831
  * @summary Get license
6777
6832
  * @param {*} [options] Override http request option.
6778
6833
  * @throws {RequiredError}
6779
6834
  */
6780
- getLicense(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<License, any>>;
6835
+ getLicense(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<License, any, {}>>;
6781
6836
  /**
6782
6837
  * **Required permissions:** `can_access_system` - View system status and metadata ___ 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.
6783
6838
  * @summary Get license status
6784
6839
  * @param {*} [options] Override http request option.
6785
6840
  * @throws {RequiredError}
6786
6841
  */
6787
- getLicenseStatus(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<LicenseStatus, any>>;
6842
+ getLicenseStatus(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<LicenseStatus, any, {}>>;
6788
6843
  }
6789
6844
  /**
6790
6845
  * MotionGroupApi - axios parameter creator
@@ -6914,7 +6969,7 @@ declare class MotionGroupApi extends BaseAPI {
6914
6969
  * @param {*} [options] Override http request option.
6915
6970
  * @throws {RequiredError}
6916
6971
  */
6917
- getCurrentMotionGroupState(cell: string, controller: string, motionGroup: string, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<MotionGroupState, any>>;
6972
+ getCurrentMotionGroupState(cell: string, controller: string, motionGroup: string, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MotionGroupState, any, {}>>;
6918
6973
  /**
6919
6974
  * **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ 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.
6920
6975
  * @summary Description
@@ -6924,7 +6979,7 @@ declare class MotionGroupApi extends BaseAPI {
6924
6979
  * @param {*} [options] Override http request option.
6925
6980
  * @throws {RequiredError}
6926
6981
  */
6927
- getMotionGroupDescription(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<MotionGroupDescription, any>>;
6982
+ getMotionGroupDescription(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MotionGroupDescription, any, {}>>;
6928
6983
  /**
6929
6984
  * **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ <!-- theme: success --> > Websocket endpoint Receive updates of the motion group state. The stream will be closed from the server if the controller is disconnected.
6930
6985
  * @summary Stream State
@@ -6936,7 +6991,7 @@ declare class MotionGroupApi extends BaseAPI {
6936
6991
  * @param {*} [options] Override http request option.
6937
6992
  * @throws {RequiredError}
6938
6993
  */
6939
- streamMotionGroupState(cell: string, controller: string, motionGroup: string, responseRate?: number, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<MotionGroupState, any>>;
6994
+ streamMotionGroupState(cell: string, controller: string, motionGroup: string, responseRate?: number, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MotionGroupState, any, {}>>;
6940
6995
  }
6941
6996
  /**
6942
6997
  * MotionGroupModelsApi - axios parameter creator
@@ -7085,9 +7140,9 @@ declare class MotionGroupModelsApi extends BaseAPI {
7085
7140
  * @param {*} [options] Override http request option.
7086
7141
  * @throws {RequiredError}
7087
7142
  */
7088
- getMotionGroupCollisionModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
7143
+ getMotionGroupCollisionModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<{
7089
7144
  [key: string]: Collider;
7090
- }[], any>>;
7145
+ }[], any, {}>>;
7091
7146
  /**
7092
7147
  * **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the GLB asset for the specified motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported identifiers.
7093
7148
  * @summary Download GLB Model
@@ -7095,7 +7150,7 @@ declare class MotionGroupModelsApi extends BaseAPI {
7095
7150
  * @param {*} [options] Override http request option.
7096
7151
  * @throws {RequiredError}
7097
7152
  */
7098
- getMotionGroupGlbModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<File, any>>;
7153
+ getMotionGroupGlbModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<File, any, {}>>;
7099
7154
  /**
7100
7155
  * **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the kinematics model (DH parameters) for the given motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported motion group models.
7101
7156
  * @summary Get Kinematics
@@ -7103,14 +7158,14 @@ declare class MotionGroupModelsApi extends BaseAPI {
7103
7158
  * @param {*} [options] Override http request option.
7104
7159
  * @throws {RequiredError}
7105
7160
  */
7106
- getMotionGroupKinematicModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<KinematicModel, any>>;
7161
+ getMotionGroupKinematicModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<KinematicModel, any, {}>>;
7107
7162
  /**
7108
7163
  * **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the list of supported motion group models.
7109
7164
  * @summary Motion Group Models
7110
7165
  * @param {*} [options] Override http request option.
7111
7166
  * @throws {RequiredError}
7112
7167
  */
7113
- getMotionGroupModels(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
7168
+ getMotionGroupModels(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string[], any, {}>>;
7114
7169
  /**
7115
7170
  * **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the USD scene model for the specified motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported identifiers.
7116
7171
  * @summary Download USD Model
@@ -7118,7 +7173,7 @@ declare class MotionGroupModelsApi extends BaseAPI {
7118
7173
  * @param {*} [options] Override http request option.
7119
7174
  * @throws {RequiredError}
7120
7175
  */
7121
- getMotionGroupUsdModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<File, any>>;
7176
+ getMotionGroupUsdModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<File, any, {}>>;
7122
7177
  }
7123
7178
  /**
7124
7179
  * NOVACloudApi - axios parameter creator
@@ -7219,7 +7274,7 @@ declare class NOVACloudApi extends BaseAPI {
7219
7274
  * @param {*} [options] Override http request option.
7220
7275
  * @throws {RequiredError}
7221
7276
  */
7222
- connectToNovaCloud(completionTimeout?: number, cloudConnectionRequest?: CloudConnectionRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CloudRegistrationSuccessResponse, any>>;
7277
+ connectToNovaCloud(completionTimeout?: number, cloudConnectionRequest?: CloudConnectionRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<CloudRegistrationSuccessResponse, any, {}>>;
7223
7278
  /**
7224
7279
  * **Required permissions:** `can_manage_cloud_connection` - Manage NOVA Cloud connection ___ <!-- theme: danger --> > **Experimental** Disconnects this instance from NOVA Cloud and removes the local NATS leafnode configuration.
7225
7280
  * @summary Disconnect from NOVA Cloud
@@ -7227,14 +7282,14 @@ declare class NOVACloudApi extends BaseAPI {
7227
7282
  * @param {*} [options] Override http request option.
7228
7283
  * @throws {RequiredError}
7229
7284
  */
7230
- disconnectFromNovaCloud(completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CloudDisconnectionStatusDisconnected, any>>;
7285
+ disconnectFromNovaCloud(completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<CloudDisconnectionStatusDisconnected, any, {}>>;
7231
7286
  /**
7232
7287
  * **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection config for this instance.
7233
7288
  * @summary Get Connection Config
7234
7289
  * @param {*} [options] Override http request option.
7235
7290
  * @throws {RequiredError}
7236
7291
  */
7237
- getNovaCloudConfig(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CloudConfigStatus, any>>;
7292
+ getNovaCloudConfig(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<CloudConfigStatus, any, {}>>;
7238
7293
  }
7239
7294
  /**
7240
7295
  * ProgramApi - axios parameter creator
@@ -7371,7 +7426,7 @@ declare class ProgramApi extends BaseAPI {
7371
7426
  * @param {*} [options] Override http request option.
7372
7427
  * @throws {RequiredError}
7373
7428
  */
7374
- getProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Program, any>>;
7429
+ getProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<Program, any, {}>>;
7375
7430
  /**
7376
7431
  * **Required permissions:** `can_operate_programs` - Execute and monitor programs ___ <!-- theme: danger --> > **Experimental** List details of all existing programs.
7377
7432
  * @summary List programs
@@ -7379,7 +7434,7 @@ declare class ProgramApi extends BaseAPI {
7379
7434
  * @param {*} [options] Override http request option.
7380
7435
  * @throws {RequiredError}
7381
7436
  */
7382
- listPrograms(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Program[], any>>;
7437
+ listPrograms(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<Program[], any, {}>>;
7383
7438
  /**
7384
7439
  * **Required permissions:** `can_operate_programs` - Execute and monitor programs ___ <!-- theme: danger --> > **Experimental** This endpoint starts a new program execution. The program will be executed asynchronously.
7385
7440
  * @summary Start the program
@@ -7389,7 +7444,7 @@ declare class ProgramApi extends BaseAPI {
7389
7444
  * @param {*} [options] Override http request option.
7390
7445
  * @throws {RequiredError}
7391
7446
  */
7392
- startProgram(cell: string, program: string, programStartRequest: ProgramStartRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ProgramRun, any>>;
7447
+ startProgram(cell: string, program: string, programStartRequest: ProgramStartRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ProgramRun, any, {}>>;
7393
7448
  /**
7394
7449
  * **Required permissions:** `can_operate_programs` - Execute and monitor programs ___ <!-- theme: danger --> > **Experimental** Stop a specific program run.
7395
7450
  * @summary Stop program run
@@ -7398,7 +7453,7 @@ declare class ProgramApi extends BaseAPI {
7398
7453
  * @param {*} [options] Override http request option.
7399
7454
  * @throws {RequiredError}
7400
7455
  */
7401
- stopProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
7456
+ stopProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
7402
7457
  }
7403
7458
  /**
7404
7459
  * RobotConfigurationsApi - axios parameter creator
@@ -7471,14 +7526,62 @@ declare class RobotConfigurationsApi extends BaseAPI {
7471
7526
  * @param {*} [options] Override http request option.
7472
7527
  * @throws {RequiredError}
7473
7528
  */
7474
- getControllerConfigFromArpScan(robotControllerConfigurationRequest: RobotControllerConfigurationRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<RobotController[], any>>;
7529
+ getControllerConfigFromArpScan(robotControllerConfigurationRequest: RobotControllerConfigurationRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<RobotController[], any, {}>>;
7475
7530
  /**
7476
7531
  * **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the identifiers of available robot configurations. A robot configuration represents a robot controller with one or more attached motion groups.
7477
7532
  * @summary List Robot Configurations
7478
7533
  * @param {*} [options] Override http request option.
7479
7534
  * @throws {RequiredError}
7480
7535
  */
7481
- getRobotConfigurations(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
7536
+ getRobotConfigurations(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string[], any, {}>>;
7537
+ }
7538
+ /**
7539
+ * SessionApi - axios parameter creator
7540
+ */
7541
+ declare const SessionApiAxiosParamCreator: (configuration?: Configuration) => {
7542
+ /**
7543
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ Returns - session metadata, - user identity, - capabilities, and - token lifetime. When authentication and authorization are configured, the response reflects the currently authenticated user. On unmanaged instances (no authentication and authorization is configured), a default anonymous session is returned with empty user fields, no capabilities, and zero-value timestamps.
7544
+ * @summary Get current user session information
7545
+ * @param {*} [options] Override http request option.
7546
+ * @throws {RequiredError}
7547
+ */
7548
+ getSession: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7549
+ };
7550
+ /**
7551
+ * SessionApi - functional programming interface
7552
+ */
7553
+ declare const SessionApiFp: (configuration?: Configuration) => {
7554
+ /**
7555
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ Returns - session metadata, - user identity, - capabilities, and - token lifetime. When authentication and authorization are configured, the response reflects the currently authenticated user. On unmanaged instances (no authentication and authorization is configured), a default anonymous session is returned with empty user fields, no capabilities, and zero-value timestamps.
7556
+ * @summary Get current user session information
7557
+ * @param {*} [options] Override http request option.
7558
+ * @throws {RequiredError}
7559
+ */
7560
+ getSession(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SessionResponse>>;
7561
+ };
7562
+ /**
7563
+ * SessionApi - factory interface
7564
+ */
7565
+ declare const SessionApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
7566
+ /**
7567
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ Returns - session metadata, - user identity, - capabilities, and - token lifetime. When authentication and authorization are configured, the response reflects the currently authenticated user. On unmanaged instances (no authentication and authorization is configured), a default anonymous session is returned with empty user fields, no capabilities, and zero-value timestamps.
7568
+ * @summary Get current user session information
7569
+ * @param {*} [options] Override http request option.
7570
+ * @throws {RequiredError}
7571
+ */
7572
+ getSession(options?: RawAxiosRequestConfig): AxiosPromise<SessionResponse>;
7573
+ };
7574
+ /**
7575
+ * SessionApi - object-oriented interface
7576
+ */
7577
+ declare class SessionApi extends BaseAPI {
7578
+ /**
7579
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ Returns - session metadata, - user identity, - capabilities, and - token lifetime. When authentication and authorization are configured, the response reflects the currently authenticated user. On unmanaged instances (no authentication and authorization is configured), a default anonymous session is returned with empty user fields, no capabilities, and zero-value timestamps.
7580
+ * @summary Get current user session information
7581
+ * @param {*} [options] Override http request option.
7582
+ * @throws {RequiredError}
7583
+ */
7584
+ getSession(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<SessionResponse, any, {}>>;
7482
7585
  }
7483
7586
  /**
7484
7587
  * StoreCollisionComponentsApi - axios parameter creator
@@ -7951,7 +8054,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
7951
8054
  * @param {*} [options] Override http request option.
7952
8055
  * @throws {RequiredError}
7953
8056
  */
7954
- deleteStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8057
+ deleteStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
7955
8058
  /**
7956
8059
  * **Required permissions:** `can_write_collision_world` - Write collision models and scenes ___ Deletes the stored link chain. <!-- theme: danger --> > This will delete persistently stored data.
7957
8060
  * @summary Delete Link Chain
@@ -7960,7 +8063,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
7960
8063
  * @param {*} [options] Override http request option.
7961
8064
  * @throws {RequiredError}
7962
8065
  */
7963
- deleteStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8066
+ deleteStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
7964
8067
  /**
7965
8068
  * **Required permissions:** `can_write_collision_world` - Write collision models and scenes ___ Deletes the stored tool. <!-- theme: danger --> > This will delete persistently stored data.
7966
8069
  * @summary Delete Tool
@@ -7969,7 +8072,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
7969
8072
  * @param {*} [options] Override http request option.
7970
8073
  * @throws {RequiredError}
7971
8074
  */
7972
- deleteStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8075
+ deleteStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
7973
8076
  /**
7974
8077
  * **Required permissions:** `can_read_collision_world` - Read collision models and scenes ___ Returns the collider.
7975
8078
  * @summary Get Collider
@@ -7978,7 +8081,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
7978
8081
  * @param {*} [options] Override http request option.
7979
8082
  * @throws {RequiredError}
7980
8083
  */
7981
- getStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Collider, any>>;
8084
+ getStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<Collider, any, {}>>;
7982
8085
  /**
7983
8086
  * **Required permissions:** `can_read_collision_world` - Read collision models and scenes ___ Returns the collision link chain.
7984
8087
  * @summary Get Link Chain
@@ -7987,9 +8090,9 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
7987
8090
  * @param {*} [options] Override http request option.
7988
8091
  * @throws {RequiredError}
7989
8092
  */
7990
- getStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
8093
+ getStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<{
7991
8094
  [key: string]: Collider;
7992
- }[], any>>;
8095
+ }[], any, {}>>;
7993
8096
  /**
7994
8097
  * **Required permissions:** `can_read_collision_world` - Read collision models and scenes ___ Returns the stored tool.
7995
8098
  * @summary Get Tool
@@ -7998,9 +8101,9 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
7998
8101
  * @param {*} [options] Override http request option.
7999
8102
  * @throws {RequiredError}
8000
8103
  */
8001
- getStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
8104
+ getStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<{
8002
8105
  [key: string]: Collider;
8003
- }, any>>;
8106
+ }, any, {}>>;
8004
8107
  /**
8005
8108
  * **Required permissions:** `can_read_collision_world` - Read collision models and scenes ___ Returns the stored link chains.
8006
8109
  * @summary List Link Chains
@@ -8008,11 +8111,11 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
8008
8111
  * @param {*} [options] Override http request option.
8009
8112
  * @throws {RequiredError}
8010
8113
  */
8011
- listCollisionLinkChains(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
8114
+ listCollisionLinkChains(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<{
8012
8115
  [key: string]: {
8013
8116
  [key: string]: Collider;
8014
8117
  }[];
8015
- }, any>>;
8118
+ }, any, {}>>;
8016
8119
  /**
8017
8120
  * **Required permissions:** `can_read_collision_world` - Read collision models and scenes ___ Returns a list of keys for stored link chains.
8018
8121
  * @summary List Link Chain Keys
@@ -8020,7 +8123,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
8020
8123
  * @param {*} [options] Override http request option.
8021
8124
  * @throws {RequiredError}
8022
8125
  */
8023
- listCollisionLinkChainsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
8126
+ listCollisionLinkChainsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string[], any, {}>>;
8024
8127
  /**
8025
8128
  * **Required permissions:** `can_read_collision_world` - Read collision models and scenes ___ Returns all stored colliders.
8026
8129
  * @summary List Colliders
@@ -8028,9 +8131,9 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
8028
8131
  * @param {*} [options] Override http request option.
8029
8132
  * @throws {RequiredError}
8030
8133
  */
8031
- listStoredColliders(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
8134
+ listStoredColliders(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<{
8032
8135
  [key: string]: Collider;
8033
- }, any>>;
8136
+ }, any, {}>>;
8034
8137
  /**
8035
8138
  * **Required permissions:** `can_read_collision_world` - Read collision models and scenes ___ Returns a list of keys for stored colliders.
8036
8139
  * @summary List Collider Keys
@@ -8038,7 +8141,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
8038
8141
  * @param {*} [options] Override http request option.
8039
8142
  * @throws {RequiredError}
8040
8143
  */
8041
- listStoredCollidersKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
8144
+ listStoredCollidersKeys(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string[], any, {}>>;
8042
8145
  /**
8043
8146
  * **Required permissions:** `can_read_collision_world` - Read collision models and scenes ___ Returns the list of stored tools.
8044
8147
  * @summary List Tools
@@ -8046,11 +8149,11 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
8046
8149
  * @param {*} [options] Override http request option.
8047
8150
  * @throws {RequiredError}
8048
8151
  */
8049
- listStoredCollisionTools(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
8152
+ listStoredCollisionTools(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<{
8050
8153
  [key: string]: {
8051
8154
  [key: string]: Collider;
8052
8155
  };
8053
- }, any>>;
8156
+ }, any, {}>>;
8054
8157
  /**
8055
8158
  * **Required permissions:** `can_read_collision_world` - Read collision models and scenes ___ Returns a list of keys for stored tools.
8056
8159
  * @summary List Tool Keys
@@ -8058,7 +8161,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
8058
8161
  * @param {*} [options] Override http request option.
8059
8162
  * @throws {RequiredError}
8060
8163
  */
8061
- listStoredCollisionToolsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
8164
+ listStoredCollisionToolsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string[], any, {}>>;
8062
8165
  /**
8063
8166
  * **Required permissions:** `can_write_collision_world` - Write collision models and scenes ___ Stores collider. - If the collider does not exist, it will be created. - If the collider exists, it will be updated.
8064
8167
  * @summary Store Collider
@@ -8068,7 +8171,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
8068
8171
  * @param {*} [options] Override http request option.
8069
8172
  * @throws {RequiredError}
8070
8173
  */
8071
- storeCollider(cell: string, collider: string, collider2: Collider, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Collider, any>>;
8174
+ storeCollider(cell: string, collider: string, collider2: Collider, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<Collider, any, {}>>;
8072
8175
  /**
8073
8176
  * **Required permissions:** `can_write_collision_world` - Write collision models and scenes ___ Stores link chain. - If the link chain does not exist, it will be created. - If the link chain exists, it will be updated.
8074
8177
  * @summary Store Link Chain
@@ -8080,9 +8183,9 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
8080
8183
  */
8081
8184
  storeCollisionLinkChain(cell: string, linkChain: string, collider: Array<{
8082
8185
  [key: string]: Collider;
8083
- }>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
8186
+ }>, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<{
8084
8187
  [key: string]: Collider;
8085
- }[], any>>;
8188
+ }[], any, {}>>;
8086
8189
  /**
8087
8190
  * **Required permissions:** `can_write_collision_world` - Write collision models and scenes ___ Stores the tool. - If the tool does not exist, it will be created. - If the tool exists, it will be updated.
8088
8191
  * @summary Store Tool
@@ -8094,9 +8197,9 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
8094
8197
  */
8095
8198
  storeCollisionTool(cell: string, tool: string, requestBody: {
8096
8199
  [key: string]: Collider;
8097
- }, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
8200
+ }, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<{
8098
8201
  [key: string]: Collider;
8099
- }, any>>;
8202
+ }, any, {}>>;
8100
8203
  }
8101
8204
  /**
8102
8205
  * StoreCollisionSetupsApi - axios parameter creator
@@ -8261,7 +8364,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
8261
8364
  * @param {*} [options] Override http request option.
8262
8365
  * @throws {RequiredError}
8263
8366
  */
8264
- deleteStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8367
+ deleteStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
8265
8368
  /**
8266
8369
  * **Required permissions:** `can_read_collision_world` - Read collision models and scenes ___ Returns the stored collision setup.
8267
8370
  * @summary Get Collision Setup
@@ -8270,7 +8373,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
8270
8373
  * @param {*} [options] Override http request option.
8271
8374
  * @throws {RequiredError}
8272
8375
  */
8273
- getStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CollisionSetup, any>>;
8376
+ getStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<CollisionSetup, any, {}>>;
8274
8377
  /**
8275
8378
  * **Required permissions:** `can_read_collision_world` - Read collision models and scenes ___ Returns a list of stored collision setups.
8276
8379
  * @summary List Collision Setups
@@ -8278,9 +8381,9 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
8278
8381
  * @param {*} [options] Override http request option.
8279
8382
  * @throws {RequiredError}
8280
8383
  */
8281
- listStoredCollisionSetups(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
8384
+ listStoredCollisionSetups(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<{
8282
8385
  [key: string]: CollisionSetup;
8283
- }, any>>;
8386
+ }, any, {}>>;
8284
8387
  /**
8285
8388
  * **Required permissions:** `can_read_collision_world` - Read collision models and scenes ___ Returns a list of keys for stored collision setups.
8286
8389
  * @summary List Collision Setup Keys
@@ -8288,7 +8391,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
8288
8391
  * @param {*} [options] Override http request option.
8289
8392
  * @throws {RequiredError}
8290
8393
  */
8291
- listStoredCollisionSetupsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
8394
+ listStoredCollisionSetupsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string[], any, {}>>;
8292
8395
  /**
8293
8396
  * **Required permissions:** `can_write_collision_world` - Write collision models and scenes ___ Stores collision setup. - If the collision setup does not exist, it will be created. - If the collision setup exists, it will be updated.
8294
8397
  * @summary Store Collision Setup
@@ -8298,7 +8401,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
8298
8401
  * @param {*} [options] Override http request option.
8299
8402
  * @throws {RequiredError}
8300
8403
  */
8301
- storeCollisionSetup(cell: string, setup: string, collisionSetup: CollisionSetup, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CollisionSetup, any>>;
8404
+ storeCollisionSetup(cell: string, setup: string, collisionSetup: CollisionSetup, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<CollisionSetup, any, {}>>;
8302
8405
  }
8303
8406
  /**
8304
8407
  * StoreObjectApi - axios parameter creator
@@ -8494,7 +8597,7 @@ declare class StoreObjectApi extends BaseAPI {
8494
8597
  * @param {*} [options] Override http request option.
8495
8598
  * @throws {RequiredError}
8496
8599
  */
8497
- clearAllObjects(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8600
+ clearAllObjects(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
8498
8601
  /**
8499
8602
  * **Required permissions:** `can_write_objects` - Write stored objects ___ Delete an object <!-- theme: danger --> > This will delete persistently stored data.
8500
8603
  * @summary Delete Object
@@ -8503,7 +8606,7 @@ declare class StoreObjectApi extends BaseAPI {
8503
8606
  * @param {*} [options] Override http request option.
8504
8607
  * @throws {RequiredError}
8505
8608
  */
8506
- deleteObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8609
+ deleteObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
8507
8610
  /**
8508
8611
  * **Required permissions:** `can_read_objects` - Read stored objects ___ Returns content and metadata of a stored object.
8509
8612
  * @summary Get Object
@@ -8512,7 +8615,7 @@ declare class StoreObjectApi extends BaseAPI {
8512
8615
  * @param {*} [options] Override http request option.
8513
8616
  * @throws {RequiredError}
8514
8617
  */
8515
- getObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<File, any>>;
8618
+ getObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<File, any, {}>>;
8516
8619
  /**
8517
8620
  * **Required permissions:** `can_read_objects` - Read stored objects ___ Returns metadata. Object content is not returned.
8518
8621
  * @summary Get Object Metadata
@@ -8521,7 +8624,7 @@ declare class StoreObjectApi extends BaseAPI {
8521
8624
  * @param {*} [options] Override http request option.
8522
8625
  * @throws {RequiredError}
8523
8626
  */
8524
- getObjectMetadata(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8627
+ getObjectMetadata(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
8525
8628
  /**
8526
8629
  * **Required permissions:** `can_read_objects` - Read stored objects ___ List the keys for all objects.
8527
8630
  * @summary List all Object Keys
@@ -8529,7 +8632,7 @@ declare class StoreObjectApi extends BaseAPI {
8529
8632
  * @param {*} [options] Override http request option.
8530
8633
  * @throws {RequiredError}
8531
8634
  */
8532
- listAllObjectKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
8635
+ listAllObjectKeys(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string[], any, {}>>;
8533
8636
  /**
8534
8637
  * **Required permissions:** `can_write_objects` - Write stored objects ___ Store any data as an object. Using a key which already contains an object will override the previously stored object. Use [getObjectMetadata](#/operations/getObjectMetadata) to verify that the key does not contain objects. #### Optional Specify metadata as a dictionary with names and values.
8535
8638
  * @summary Store Object
@@ -8542,7 +8645,7 @@ declare class StoreObjectApi extends BaseAPI {
8542
8645
  */
8543
8646
  storeObject(cell: string, key: string, xMetadata?: {
8544
8647
  [key: string]: string;
8545
- }, anyValue?: any, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
8648
+ }, anyValue?: any, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
8546
8649
  }
8547
8650
  /**
8548
8651
  * SystemApi - axios parameter creator
@@ -8861,7 +8964,7 @@ declare class SystemApi extends BaseAPI {
8861
8964
  */
8862
8965
  backupConfiguration(resources?: Array<string>, metadata?: {
8863
8966
  [key: string]: string;
8864
- }, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<File, any>>;
8967
+ }, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<File, any, {}>>;
8865
8968
  /**
8866
8969
  * **Required permissions:** `can_update_system` - Update system versions and services ___ Check if a more recent Wandelbots NOVA Version is available.
8867
8970
  * @summary Check update
@@ -8869,7 +8972,7 @@ declare class SystemApi extends BaseAPI {
8869
8972
  * @param {*} [options] Override http request option.
8870
8973
  * @throws {RequiredError}
8871
8974
  */
8872
- checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string, any>>;
8975
+ checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string, any, {}>>;
8873
8976
  /**
8874
8977
  * **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Performs an address resolution protocol (ARP) scan on the specified interface/classless inter-domain routing (CIDR) and returns all discovered devices on the network by CIDR notation.
8875
8978
  * @summary Get ARP-Scan
@@ -8879,7 +8982,7 @@ declare class SystemApi extends BaseAPI {
8879
8982
  * @param {*} [options] Override http request option.
8880
8983
  * @throws {RequiredError}
8881
8984
  */
8882
- getArpScan(_interface?: string, cidr?: string, timeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<NetworkDevice[], any>>;
8985
+ getArpScan(_interface?: string, cidr?: string, timeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<NetworkDevice[], any, {}>>;
8883
8986
  /**
8884
8987
  * **Required permissions:** `can_backup_system` - Create system backups ___ 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.
8885
8988
  * @summary Retrieve Backup Status
@@ -8887,49 +8990,49 @@ declare class SystemApi extends BaseAPI {
8887
8990
  * @param {*} [options] Override http request option.
8888
8991
  * @throws {RequiredError}
8889
8992
  */
8890
- getConfigurationBackupStatus(operationId: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ConfigurationArchiveStatus, any>>;
8993
+ getConfigurationBackupStatus(operationId: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ConfigurationArchiveStatus, any, {}>>;
8891
8994
  /**
8892
8995
  * **Required permissions:** `can_access_system` - View system status and metadata ___ 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.
8893
8996
  * @summary Download Diagnosis Package
8894
8997
  * @param {*} [options] Override http request option.
8895
8998
  * @throws {RequiredError}
8896
8999
  */
8897
- getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<File, any>>;
9000
+ getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<File, any, {}>>;
8898
9001
  /**
8899
9002
  * **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the network interfaces of the system.
8900
9003
  * @summary Network Interfaces
8901
9004
  * @param {*} [options] Override http request option.
8902
9005
  * @throws {RequiredError}
8903
9006
  */
8904
- getNetworkInterfaces(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<NetworkInterface[], any>>;
9007
+ getNetworkInterfaces(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<NetworkInterface[], any, {}>>;
8905
9008
  /**
8906
9009
  * **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current state of the network.
8907
9010
  * @summary Network State
8908
9011
  * @param {*} [options] Override http request option.
8909
9012
  * @throws {RequiredError}
8910
9013
  */
8911
- getNetworkState(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<NetworkState, any>>;
9014
+ getNetworkState(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<NetworkState, any, {}>>;
8912
9015
  /**
8913
9016
  * **Required permissions:** `can_access_system` - View system status and metadata ___ Get the status of all system services.
8914
9017
  * @summary Wandelbots NOVA status
8915
9018
  * @param {*} [options] Override http request option.
8916
9019
  * @throws {RequiredError}
8917
9020
  */
8918
- getSystemStatus(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ServiceStatus[], any>>;
9021
+ getSystemStatus(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ServiceStatus[], any, {}>>;
8919
9022
  /**
8920
9023
  * **Required permissions:** `can_access_system` - View system status and metadata ___ Get the current Wandelbots NOVA version.
8921
9024
  * @summary Wandelbots NOVA Version
8922
9025
  * @param {*} [options] Override http request option.
8923
9026
  * @throws {RequiredError}
8924
9027
  */
8925
- getSystemVersion(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string, any>>;
9028
+ getSystemVersion(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string, any, {}>>;
8926
9029
  /**
8927
9030
  * **Required permissions:** `can_backup_system` - Create system backups ___ Retrieves a list of all available configuration resources for backup purposes.
8928
9031
  * @summary List Configuration Resources
8929
9032
  * @param {*} [options] Override http request option.
8930
9033
  * @throws {RequiredError}
8931
9034
  */
8932
- listConfigurationResources(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ConfigurationResource[], any>>;
9035
+ listConfigurationResources(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ConfigurationResource[], any, {}>>;
8933
9036
  /**
8934
9037
  * **Required permissions:** `can_restore_system` - Restore system backups ___ Restores a previously backed up configuration. If an empty array of resources is provided, all resources from the backup will be restored.
8935
9038
  * @summary Restore Configuration Backup
@@ -8938,7 +9041,7 @@ declare class SystemApi extends BaseAPI {
8938
9041
  * @param {*} [options] Override http request option.
8939
9042
  * @throws {RequiredError}
8940
9043
  */
8941
- restoreConfiguration(body: File, resources?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
9044
+ restoreConfiguration(body: File, resources?: Array<string>, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
8942
9045
  /**
8943
9046
  * **Required permissions:** `can_update_system` - Update system versions and services ___ 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. System updates only apply to cells without an explicit chart version. Pinned versions are always preserved; setting `update_cells=false` pins unversioned cells to the current system version before updating.
8944
9047
  * @summary Update Wandelbots NOVA version
@@ -8946,7 +9049,7 @@ declare class SystemApi extends BaseAPI {
8946
9049
  * @param {*} [options] Override http request option.
8947
9050
  * @throws {RequiredError}
8948
9051
  */
8949
- updateNovaVersion(updateNovaVersionRequest: UpdateNovaVersionRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
9052
+ updateNovaVersion(updateNovaVersionRequest: UpdateNovaVersionRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
8950
9053
  }
8951
9054
  /**
8952
9055
  * TrajectoryCachingApi - axios parameter creator
@@ -9120,7 +9223,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
9120
9223
  * @param {*} [options] Override http request option.
9121
9224
  * @throws {RequiredError}
9122
9225
  */
9123
- addTrajectory(cell: string, controller: string, addTrajectoryRequest: AddTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<AddTrajectoryResponse, any>>;
9226
+ addTrajectory(cell: string, controller: string, addTrajectoryRequest: AddTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<AddTrajectoryResponse, any, {}>>;
9124
9227
  /**
9125
9228
  * **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ Clear the trajectory cache.
9126
9229
  * @summary Clear Trajectories
@@ -9129,7 +9232,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
9129
9232
  * @param {*} [options] Override http request option.
9130
9233
  * @throws {RequiredError}
9131
9234
  */
9132
- clearTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
9235
+ clearTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
9133
9236
  /**
9134
9237
  * **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ Delete a previously created trajectory from cache. Use [listTrajectories](#/operations/listTrajectories) to list all cached trajectories. Trajectories are removed automatically if the motion group or the corresponding controller is disconnected.
9135
9238
  * @summary Delete Trajectory
@@ -9139,7 +9242,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
9139
9242
  * @param {*} [options] Override http request option.
9140
9243
  * @throws {RequiredError}
9141
9244
  */
9142
- deleteTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
9245
+ deleteTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
9143
9246
  /**
9144
9247
  * **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ Get a previously created trajectory from cache. Use [listTrajectories](#/operations/listTrajectories) to list all cached trajectories.
9145
9248
  * @summary Get Trajectory
@@ -9149,7 +9252,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
9149
9252
  * @param {*} [options] Override http request option.
9150
9253
  * @throws {RequiredError}
9151
9254
  */
9152
- getTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<GetTrajectoryResponse, any>>;
9255
+ getTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<GetTrajectoryResponse, any, {}>>;
9153
9256
  /**
9154
9257
  * **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ List currently cached trajectories. Use [addTrajectory](#/operations/addTrajectory) to add a new trajectory. Adding trajectories is necessary to execute them. Trajectories are removed if the corresponding motion group or controller disconnects.
9155
9258
  * @summary List Trajectories
@@ -9158,7 +9261,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
9158
9261
  * @param {*} [options] Override http request option.
9159
9262
  * @throws {RequiredError}
9160
9263
  */
9161
- listTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ListTrajectoriesResponse, any>>;
9264
+ listTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ListTrajectoriesResponse, any, {}>>;
9162
9265
  }
9163
9266
  /**
9164
9267
  * TrajectoryExecutionApi - axios parameter creator
@@ -9218,7 +9321,7 @@ declare class TrajectoryExecutionApi extends BaseAPI {
9218
9321
  * @param {*} [options] Override http request option.
9219
9322
  * @throws {RequiredError}
9220
9323
  */
9221
- executeTrajectory(cell: string, controller: string, executeTrajectoryRequest: ExecuteTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ExecuteTrajectoryResponse, any>>;
9324
+ executeTrajectory(cell: string, controller: string, executeTrajectoryRequest: ExecuteTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ExecuteTrajectoryResponse, any, {}>>;
9222
9325
  }
9223
9326
  /**
9224
9327
  * TrajectoryPlanningApi - axios parameter creator
@@ -9355,7 +9458,7 @@ declare class TrajectoryPlanningApi extends BaseAPI {
9355
9458
  * @param {*} [options] Override http request option.
9356
9459
  * @throws {RequiredError}
9357
9460
  */
9358
- mergeTrajectories(cell: string, mergeTrajectoriesRequest: MergeTrajectoriesRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<MergeTrajectoriesResponse, any>>;
9461
+ mergeTrajectories(cell: string, mergeTrajectoriesRequest: MergeTrajectoriesRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MergeTrajectoriesResponse, any, {}>>;
9359
9462
  /**
9360
9463
  * **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Plans a collision-free trajectory for a single motion group using point-to-point (PTP) motions. This endpoint is specifically designed for collision-free path planning algorithms that find a trajectory from a start joint position to a target position while avoiding obstacles. Use the following workflow to execute a planned collision-free trajectory: 1. Plan a collision-free trajectory. 2. Optional: Load the planned trajectory into the cache using the [addTrajectory](#/operations/addTrajectory) endpoint. 3. Execute the (cached) trajectory using the [executeTrajectory](#/operations/executeTrajectory) endpoint. If the trajectory planning fails due to collision or algorithm constraints, the response will contain error information about the failure.
9361
9464
  * @summary Plan Collision-Free Trajectory
@@ -9364,7 +9467,7 @@ declare class TrajectoryPlanningApi extends BaseAPI {
9364
9467
  * @param {*} [options] Override http request option.
9365
9468
  * @throws {RequiredError}
9366
9469
  */
9367
- planCollisionFree(cell: string, planCollisionFreeRequest: PlanCollisionFreeRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<PlanCollisionFreeResponse, any>>;
9470
+ planCollisionFree(cell: string, planCollisionFreeRequest: PlanCollisionFreeRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<PlanCollisionFreeResponse, any, {}>>;
9368
9471
  /**
9369
9472
  * **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ 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](#/operations/addTrajectory) endpoint. 3. Execute the (cached) trajectory using the [executeTrajectory](#/operations/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.
9370
9473
  * @summary Plan Trajectory
@@ -9373,7 +9476,7 @@ declare class TrajectoryPlanningApi extends BaseAPI {
9373
9476
  * @param {*} [options] Override http request option.
9374
9477
  * @throws {RequiredError}
9375
9478
  */
9376
- planTrajectory(cell: string, planTrajectoryRequest: PlanTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<PlanTrajectoryResponse, any>>;
9479
+ planTrajectory(cell: string, planTrajectoryRequest: PlanTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<PlanTrajectoryResponse, any, {}>>;
9377
9480
  /**
9378
9481
  * **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ <!-- theme: danger --> > **Experimental** Searches collision-free trajectories for multiple motion groups simultaneously within a cell. This is the multi-robot variant of collision-free path search — it coordinates paths so that several motion groups, e.g., multiple robot arms, can move from start to target positions without colliding with each other or with the environment. The caller provides per-motion-group setups (robot model, cycle time, mounting, TCP offset, limits, payload, collision geometry), per-motion-group point-to-point path definitions (start and target joint positions), optional cross-group collision setups defining which link-chain/tool colliders to consider between groups plus static environment colliders, and optional RRT-Connect algorithm settings (max iterations, step size, smoothing, blending). On success the response contains a time-synchronized trajectory with joint positions per motion group at shared timestamps so their motions are temporally coordinated. On failure it returns feedback indicating why planning failed, e.g., max iterations exceeded.
9379
9482
  * @summary Search Collision-Free Trajectories for Multiple Motion Groups
@@ -9382,7 +9485,7 @@ declare class TrajectoryPlanningApi extends BaseAPI {
9382
9485
  * @param {*} [options] Override http request option.
9383
9486
  * @throws {RequiredError}
9384
9487
  */
9385
- searchCollisionFreeMultiMotionGroup(cell: string, multiSearchCollisionFreeRequest: MultiSearchCollisionFreeRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<MultiSearchCollisionFreeResponse, any>>;
9488
+ searchCollisionFreeMultiMotionGroup(cell: string, multiSearchCollisionFreeRequest: MultiSearchCollisionFreeRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MultiSearchCollisionFreeResponse, any, {}>>;
9386
9489
  }
9387
9490
  /**
9388
9491
  * VersionApi - axios parameter creator
@@ -9430,7 +9533,7 @@ declare class VersionApi extends BaseAPI {
9430
9533
  * @param {*} [options] Override http request option.
9431
9534
  * @throws {RequiredError}
9432
9535
  */
9433
- getApiVersion(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ApiVersion, any>>;
9536
+ getApiVersion(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ApiVersion, any, {}>>;
9434
9537
  }
9435
9538
  /**
9436
9539
  * VirtualControllerApi - axios parameter creator
@@ -10067,7 +10170,7 @@ declare class VirtualControllerApi extends BaseAPI {
10067
10170
  * @param {*} [options] Override http request option.
10068
10171
  * @throws {RequiredError}
10069
10172
  */
10070
- addVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, coordinateSystemData: CoordinateSystemData, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
10173
+ addVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, coordinateSystemData: CoordinateSystemData, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
10071
10174
  /**
10072
10175
  * **Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ Adds a motion group configuration for the virtual robot controller. Fields: - Only one of **motion_group_model** or **json_data** should be set. - **motion_group_model**: Identifies a single motion group. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported types. - **json_data**: Full JSON configuration of the virtual robot controller. This can be obtained from the physical controller\'s configuration via [getVirtualControllerConfiguration](#/operations/getVirtualControllerConfiguration). - **extracted_motion_group_id** (required when using json_data): The motion group identifier to extract from the provided JSON configuration. - **motion_group**: Unique identifier for the motion group to be added. - **initial_joint_position**: Specifies the initial joint position for the added motion group. <!-- theme: info --> > #### NOTE > > When a motion group is added, **the virtual robot is restarted** to apply the new configuration. > > During this restart: > - Robot visualization can temporarily disappear or appear outdated in the UI. > - Motion group 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 motion group may not yet be available for use.
10073
10176
  * @summary Add Motion Group
@@ -10077,7 +10180,7 @@ declare class VirtualControllerApi extends BaseAPI {
10077
10180
  * @param {*} [options] Override http request option.
10078
10181
  * @throws {RequiredError}
10079
10182
  */
10080
- addVirtualControllerMotionGroup(cell: string, controller: string, addVirtualControllerMotionGroupRequest: AddVirtualControllerMotionGroupRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
10183
+ addVirtualControllerMotionGroup(cell: string, controller: string, addVirtualControllerMotionGroupRequest: AddVirtualControllerMotionGroupRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
10081
10184
  /**
10082
10185
  * **Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ Adds a new safety zone to the virtual robot controller. Safety zones define geometric boundaries that restrict or permit robot motion in 3D space. Each zone has a `geometry` that defines its shape, and two flags that control its behavior: - **`restricted: true`** the robot is not allowed to enter this zone. - **`inverted: true`** the zone applies to the **outside** of the shape, meaning the shape defines the *allowed* region; everything outside is the zone. Combined with `restricted: true`, the robot must stay **inside** the shape. Common combinations: | `restricted` | `inverted` | Effect | |---|---|---| | `true` | `false` | Keep-out zone, the robot cannot enter the shape, e.g., obstacle, table, wall | | `true` | `true` | Keep-in zone, the robot must stay inside the shape, e.g., workspace envelope / cell boundary | The `mg_uid` field specifies which motion group the safety zone is enforced for and must match an existing motion group UID on the controller. The `uid_ref_cs` field defines the coordinate system in which the geometry coordinates are expressed. The coordinate system must be defined on the controller beforehand. If empty (`\"\"`), the World coordinate system is used. Using an incorrect coordinate system places the safety zone in a different physical location. --- ## Geometry Shape Reference All coordinates are in **millimetres (mm)**. Choose the shape that best fits the physical boundary. --- ### Box A rectangular cuboid (box) defined by its **center point** and **three face centers** (`neighbour`). Each face center is the center of one of the three principal faces of the box and encodes both the size and orientation of the box. The distance from the center to each face center equals half the edge length along that axis. This format is used directly by robot controllers (FANUC, KUKA, etc.) and supports arbitrary orientations, including left-handed coordinate systems that parametric (size + quaternion) formats cannot represent. **When to use:** Cell workspace envelope, machine enclosure, table, rectangular obstacle, pallet zone. **How to define:** ``` center → geometric center of the box [x, y, z] neighbour = [ x1, y1, z1, ← center of the face along the first axis x2, y2, z2, ← center of the face along the second axis x3, y3, z3 ← center of the face along the third axis ] edge_length_i = 2 × ||neighbour_i − center|| ``` For an axis-aligned box with `center = [cx, cy, cz]` and half-sizes `[hx, hy, hz]`: ``` neighbour = [cx+hx, cy, cz, cx, cy+hy, cz, cx, cy, cz+hz] ``` --- ### Prism An extruded polygon is a 2D closed polygon (defined in the XY plane) extruded vertically between `bottom` and `top` Z coordinates. The polygon can be convex or concave. **When to use:** Irregular floor-plan areas (aisles, loading bays, L-shaped zones), conveyor corridors, or any zone with a non-rectangular footprint. **How to define:** ``` point = [x1, y1, x2, y2, x3, y3, ...] ← 2D vertices (XY), flattened, ≥ 3 points top = upper Z bound [mm] bottom = lower Z bound [mm] ``` Points must form a closed polygon; the last point implicitly connects to the first. --- ### Sphere A perfect sphere defined by its **center point** and **radius**. **When to use:** Protection zones around sensors, cameras, workpieces, point-like obstacles, singularity avoidance zones around the robot base. **How to define:** ``` center = [x, y, z] ← center of the sphere [mm] radius ← radius [mm] ``` --- ### Capsule A cylinder with hemispherical caps at each end, defined by two axis endpoints (`top`, `bottom`) and a **radius**. The axis can have any orientation. **When to use:** Pipes, cable trays, vertical columns, horizontal beams, or tube-shaped obstacles. **How to define:** ``` top = [x, y, z] ← center of the top hemisphere [mm] bottom = [x, y, z] ← center of the bottom hemisphere [mm] radius ← cylinder + hemisphere radius [mm] ``` The total length of the capsule is `||top − bottom|| + 2 × radius`. --- ### Lozenge A rounded rectangle (stadium/discorectangle shape) in a plane, defined by a **center pose**, two **dimensions**, and a **corner radius**. The plane orientation is defined by the quaternion in `center`. **When to use:** Conveyor belt surfaces, worktables with rounded edges, or flat rectangular zones in arbitrary orientations. **How to define:** ``` center.x/y/z ← position of the center [mm] center.qx/qy/qz/qw ← orientation as unit quaternion (identity = XY plane) x_dimension ← total length along local X axis [mm] y_dimension ← total width along local Y axis [mm] radius ← corner rounding radius [mm] ``` For a horizontal lozenge, use identity quaternion `(qx=0, qy=0, qz=0, qw=1)`. --- ### Plane A mathematical half-space plane defined by its **3D vertices**. All vertices must be coplanar. The plane is unbounded (infinite extent in all directions parallel to the surface). The points define the plane\'s orientation and position only. **When to use:** Floor boundaries, virtual walls, tilted surfaces, e.g., ramps, inclined conveyors, or flat custom barriers. **How to define:** ``` point = [x1, y1, z1, x2, y2, z2, x3, y3, z3, ...] ← 3D vertices, flattened, ≥ 3 points ``` Points must be coplanar and form a closed polygon. --- <!-- theme: info --> > #### NOTE > > When a safety zone is added, **the virtual robot is restarted** to apply the new configuration. > > During this restart: > - All connections to the virtual robot are closed and re-established, introducing a short delay before the system is fully operational again. > - The safety checksum is automatically updated to reflect the configuration change. > > The API call **does not wait until the restart and re-synchronization are complete**.
10083
10186
  * @summary Add Safety Zone
@@ -10087,7 +10190,7 @@ declare class VirtualControllerApi extends BaseAPI {
10087
10190
  * @param {*} [options] Override http request option.
10088
10191
  * @throws {RequiredError}
10089
10192
  */
10090
- addVirtualControllerSafetyZone(cell: string, controller: string, safetyZone: SafetyZone, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
10193
+ addVirtualControllerSafetyZone(cell: string, controller: string, safetyZone: SafetyZone, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
10091
10194
  /**
10092
10195
  * **Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ 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.
10093
10196
  * @summary Add TCP
@@ -10099,7 +10202,7 @@ declare class VirtualControllerApi extends BaseAPI {
10099
10202
  * @param {*} [options] Override http request option.
10100
10203
  * @throws {RequiredError}
10101
10204
  */
10102
- addVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, robotTcpData: RobotTcpData, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
10205
+ addVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, robotTcpData: RobotTcpData, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
10103
10206
  /**
10104
10207
  * **Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ 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.
10105
10208
  * @summary Delete Coordinate System
@@ -10110,7 +10213,7 @@ declare class VirtualControllerApi extends BaseAPI {
10110
10213
  * @param {*} [options] Override http request option.
10111
10214
  * @throws {RequiredError}
10112
10215
  */
10113
- deleteVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
10216
+ deleteVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
10114
10217
  /**
10115
10218
  * **Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ Removes a motion group configuration from the virtual controller. <!-- theme: info --> > #### NOTE > > When a motion group 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. > - Motion group 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**.
10116
10219
  * @summary Delete Motion Group
@@ -10120,7 +10223,7 @@ declare class VirtualControllerApi extends BaseAPI {
10120
10223
  * @param {*} [options] Override http request option.
10121
10224
  * @throws {RequiredError}
10122
10225
  */
10123
- deleteVirtualControllerMotionGroup(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
10226
+ deleteVirtualControllerMotionGroup(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
10124
10227
  /**
10125
10228
  * **Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ Removes a safety zone from the virtual robot controller. <!-- theme: info --> > #### NOTE > > When a safety zone is removed, **the virtual robot is restarted** to apply the new configuration. > > During this restart: > - All connections to the virtual robot are closed and re-established, which introduces a short delay before the system is fully operational again. > - The safety checksum is automatically updated to reflect the configuration change. > > The API call itself **does not wait until the restart and re-synchronization are complete**.
10126
10229
  * @summary Delete Safety Zone
@@ -10130,7 +10233,7 @@ declare class VirtualControllerApi extends BaseAPI {
10130
10233
  * @param {*} [options] Override http request option.
10131
10234
  * @throws {RequiredError}
10132
10235
  */
10133
- deleteVirtualControllerSafetyZone(cell: string, controller: string, id: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
10236
+ deleteVirtualControllerSafetyZone(cell: string, controller: string, id: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
10134
10237
  /**
10135
10238
  * **Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ 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.
10136
10239
  * @summary Remove TCP
@@ -10141,7 +10244,7 @@ declare class VirtualControllerApi extends BaseAPI {
10141
10244
  * @param {*} [options] Override http request option.
10142
10245
  * @throws {RequiredError}
10143
10246
  */
10144
- deleteVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
10247
+ deleteVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
10145
10248
  /**
10146
10249
  * **Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ Requests the Emergency Stop state of the virtual robot controller. Use [getCurrentMotionGroupState](#/operations/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.
10147
10250
  * @summary Get Emergency Stop State
@@ -10150,7 +10253,7 @@ declare class VirtualControllerApi extends BaseAPI {
10150
10253
  * @param {*} [options] Override http request option.
10151
10254
  * @throws {RequiredError}
10152
10255
  */
10153
- getEmergencyStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Flag, any>>;
10256
+ getEmergencyStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<Flag, any, {}>>;
10154
10257
  /**
10155
10258
  * **Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ Get the current motion group state which provides values for the joints\' position, velocity and acceleration.
10156
10259
  * @summary Get Motion Group State
@@ -10160,7 +10263,7 @@ declare class VirtualControllerApi extends BaseAPI {
10160
10263
  * @param {*} [options] Override http request option.
10161
10264
  * @throws {RequiredError}
10162
10265
  */
10163
- getMotionGroupState(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<MotionGroupJoints, any>>;
10266
+ getMotionGroupState(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MotionGroupJoints, any, {}>>;
10164
10267
  /**
10165
10268
  * **Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ Gets information on the motion group.
10166
10269
  * @summary Motion Group Description
@@ -10169,7 +10272,7 @@ declare class VirtualControllerApi extends BaseAPI {
10169
10272
  * @param {*} [options] Override http request option.
10170
10273
  * @throws {RequiredError}
10171
10274
  */
10172
- getMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<MotionGroupInfo[], any>>;
10275
+ getMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MotionGroupInfo[], any, {}>>;
10173
10276
  /**
10174
10277
  * **Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ Requests the operation mode of the virtual robot controller. To get the operation mode regardless of the controller type, use [getCurrentMotionGroupState](#/operations/getCurrentMotionGroupState). > **NOTE** > > The operation mode can only be changed via API when using virtual robot controllers.
10175
10278
  * @summary Get Operation Mode
@@ -10178,7 +10281,7 @@ declare class VirtualControllerApi extends BaseAPI {
10178
10281
  * @param {*} [options] Override http request option.
10179
10282
  * @throws {RequiredError}
10180
10283
  */
10181
- getOperationMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<OpMode, any>>;
10284
+ getOperationMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<OpMode, any, {}>>;
10182
10285
  /**
10183
10286
  * **Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ Gets motion group mounting. The motion group is based on the origin of the returned coordinate system.
10184
10287
  * @summary Get Mounting
@@ -10188,7 +10291,7 @@ declare class VirtualControllerApi extends BaseAPI {
10188
10291
  * @param {*} [options] Override http request option.
10189
10292
  * @throws {RequiredError}
10190
10293
  */
10191
- getVirtualControllerMounting(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CoordinateSystem, any>>;
10294
+ getVirtualControllerMounting(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<CoordinateSystem, any, {}>>;
10192
10295
  /**
10193
10296
  * **Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ Gets all safety zones configured in the virtual robot controller. Safety zones define geometric boundaries that restrict robot motion or define protected areas in the workspace.
10194
10297
  * @summary List Safety Zones
@@ -10197,7 +10300,7 @@ declare class VirtualControllerApi extends BaseAPI {
10197
10300
  * @param {*} [options] Override http request option.
10198
10301
  * @throws {RequiredError}
10199
10302
  */
10200
- getVirtualControllerSafetyZones(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<SafetyZones, any>>;
10303
+ getVirtualControllerSafetyZones(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<SafetyZones, any, {}>>;
10201
10304
  /**
10202
10305
  * **Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ Lists all coordinate systems on the robot controller.
10203
10306
  * @summary List Coordinate Systems
@@ -10206,7 +10309,7 @@ declare class VirtualControllerApi extends BaseAPI {
10206
10309
  * @param {*} [options] Override http request option.
10207
10310
  * @throws {RequiredError}
10208
10311
  */
10209
- listVirtualControllerCoordinateSystems(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CoordinateSystem[], any>>;
10312
+ listVirtualControllerCoordinateSystems(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<CoordinateSystem[], any, {}>>;
10210
10313
  /**
10211
10314
  * **Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ Lists TCPs of the motion group. An empty TCP list is valid, e.g., for external axes.
10212
10315
  * @summary List TCPs
@@ -10216,7 +10319,7 @@ declare class VirtualControllerApi extends BaseAPI {
10216
10319
  * @param {*} [options] Override http request option.
10217
10320
  * @throws {RequiredError}
10218
10321
  */
10219
- listVirtualControllerTcps(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<RobotTcp[], any>>;
10322
+ listVirtualControllerTcps(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<RobotTcp[], any, {}>>;
10220
10323
  /**
10221
10324
  * **Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ 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](#/operations/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.
10222
10325
  * @summary Push or Release Emergency Stop
@@ -10226,7 +10329,7 @@ declare class VirtualControllerApi extends BaseAPI {
10226
10329
  * @param {*} [options] Override http request option.
10227
10330
  * @throws {RequiredError}
10228
10331
  */
10229
- setEmergencyStop(cell: string, controller: string, active?: boolean, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
10332
+ setEmergencyStop(cell: string, controller: string, active?: boolean, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
10230
10333
  /**
10231
10334
  * **Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ 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.
10232
10335
  * @summary Set Motion Group State
@@ -10237,7 +10340,7 @@ declare class VirtualControllerApi extends BaseAPI {
10237
10340
  * @param {*} [options] Override http request option.
10238
10341
  * @throws {RequiredError}
10239
10342
  */
10240
- setMotionGroupState(cell: string, controller: string, motionGroup: string, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
10343
+ setMotionGroupState(cell: string, controller: string, motionGroup: string, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
10241
10344
  /**
10242
10345
  * **Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ 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](#/operations/getCurrentMotionGroupState). > **NOTE** > > The operation mode can only be changed via API when using virtual robot controllers.
10243
10346
  * @summary Set Operation Mode
@@ -10247,7 +10350,7 @@ declare class VirtualControllerApi extends BaseAPI {
10247
10350
  * @param {*} [options] Override http request option.
10248
10351
  * @throws {RequiredError}
10249
10352
  */
10250
- setOperationMode(cell: string, controller: string, mode: OperationMode, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
10353
+ setOperationMode(cell: string, controller: string, mode: OperationMode, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
10251
10354
  /**
10252
10355
  * **Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ 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.
10253
10356
  * @summary Set Mounting
@@ -10258,7 +10361,7 @@ declare class VirtualControllerApi extends BaseAPI {
10258
10361
  * @param {*} [options] Override http request option.
10259
10362
  * @throws {RequiredError}
10260
10363
  */
10261
- setVirtualControllerMounting(cell: string, controller: string, motionGroup: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CoordinateSystem, any>>;
10364
+ setVirtualControllerMounting(cell: string, controller: string, motionGroup: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<CoordinateSystem, any, {}>>;
10262
10365
  }
10263
10366
  /**
10264
10367
  * VirtualControllerBehaviorApi - axios parameter creator
@@ -10402,7 +10505,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
10402
10505
  * @param {*} [options] Override http request option.
10403
10506
  * @throws {RequiredError}
10404
10507
  */
10405
- externalJointsStream(cell: string, controller: string, externalJointStreamRequest: ExternalJointStreamRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ExternalJointStreamDatapoint[], any>>;
10508
+ externalJointsStream(cell: string, controller: string, externalJointStreamRequest: ExternalJointStreamRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ExternalJointStreamDatapoint[], any, {}>>;
10406
10509
  /**
10407
10510
  * **Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ Get the cycle time of controller communication in [ms].
10408
10511
  * @summary Get Cycle Time
@@ -10411,7 +10514,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
10411
10514
  * @param {*} [options] Override http request option.
10412
10515
  * @throws {RequiredError}
10413
10516
  */
10414
- getCycleTime(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CycleTime, any>>;
10517
+ getCycleTime(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<CycleTime, any, {}>>;
10415
10518
  /**
10416
10519
  * **Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ Get the current virtual controller behavior. See [setVirtualControllerBehavior](#/operations/setVirtualControllerBehavior) and the body for details.
10417
10520
  * @summary Get Behavior
@@ -10420,7 +10523,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
10420
10523
  * @param {*} [options] Override http request option.
10421
10524
  * @throws {RequiredError}
10422
10525
  */
10423
- getVirtualControllerBehavior(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Behavior, any>>;
10526
+ getVirtualControllerBehavior(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<Behavior, any, {}>>;
10424
10527
  /**
10425
10528
  * **Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ Set virtual controller behavior. See query parameters for details.
10426
10529
  * @summary Set Behavior
@@ -10430,7 +10533,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
10430
10533
  * @param {*} [options] Override http request option.
10431
10534
  * @throws {RequiredError}
10432
10535
  */
10433
- setVirtualControllerBehavior(cell: string, controller: string, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
10536
+ setVirtualControllerBehavior(cell: string, controller: string, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
10434
10537
  }
10435
10538
  /**
10436
10539
  * VirtualControllerInputsOutputsApi - axios parameter creator
@@ -10559,7 +10662,7 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
10559
10662
  * @param {*} [options] Override http request option.
10560
10663
  * @throws {RequiredError}
10561
10664
  */
10562
- listIOs(cell: string, controller: string, ios: Array<string>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<IOValue[], any>>;
10665
+ listIOs(cell: string, controller: string, ios: Array<string>, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<IOValue[], any, {}>>;
10563
10666
  /**
10564
10667
  * **Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ 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.
10565
10668
  * @summary List Descriptions
@@ -10572,7 +10675,7 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
10572
10675
  * @param {*} [options] Override http request option.
10573
10676
  * @throws {RequiredError}
10574
10677
  */
10575
- listVirtualControllerIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<IODescription[], any>>;
10678
+ listVirtualControllerIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<IODescription[], any, {}>>;
10576
10679
  /**
10577
10680
  * **Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ Sets a list of values of a virtual controller inputs/outputs.
10578
10681
  * @summary Set Input/Ouput Values
@@ -10582,7 +10685,7 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
10582
10685
  * @param {*} [options] Override http request option.
10583
10686
  * @throws {RequiredError}
10584
10687
  */
10585
- setIOValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
10688
+ setIOValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
10586
10689
  }
10587
10690
  //#endregion
10588
- export { AbbController, AbbControllerEgmServer, AbbControllerKindEnum, ActivateLicenseRequest, AddTrajectoryError, AddTrajectoryErrorData, AddTrajectoryRequest, AddTrajectoryResponse, AddVirtualControllerMotionGroupRequest, 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, BusIOProfinetSlot, BusIOProfinetVirtual, BusIOProfinetVirtualBusTypeEnum, BusIOType, BusIOsState, BusIOsStateEnum, COLLECTION_FORMATS, Capsule, CapsuleShapeTypeEnum, CartesianLimits, Cell, CellApi, CellApiAxiosParamCreator, CellApiFactory, CellApiFp, CloudConfigStatus, CloudConfigStatusConfigured, CloudConfigStatusConfiguredStatusEnum, CloudConfigStatusNotConfigured, CloudConfigStatusNotConfiguredStatusEnum, CloudConfiguration, CloudConnectionError, CloudConnectionErrorError, CloudConnectionErrorInvalidToken, CloudConnectionErrorInvalidTokenCodeEnum, CloudConnectionErrorInvalidTokenDetails, CloudConnectionErrorInvalidTokenDetailsCloudResponse, CloudConnectionErrorLeafnodeConnectionError, CloudConnectionErrorLeafnodeConnectionErrorCodeEnum, CloudConnectionErrorLeafnodeConnectionErrorDetails, CloudConnectionErrorLeafnodeConnectionTimeout, CloudConnectionErrorLeafnodeConnectionTimeoutCodeEnum, CloudConnectionErrorLeafnodeRestartTimeout, CloudConnectionErrorLeafnodeRestartTimeoutCodeEnum, CloudConnectionErrorNatsFailed, CloudConnectionErrorNatsFailedCodeEnum, CloudConnectionErrorNatsFailedDetails, CloudConnectionErrorUnexpectedResponse, CloudConnectionErrorUnexpectedResponseCodeEnum, CloudConnectionErrorUnexpectedResponseDetails, CloudConnectionErrorUnexpectedResponseDetailsCloudResponse, CloudConnectionRequest, CloudDisconnectionError, CloudDisconnectionStatusDisconnected, CloudDisconnectionStatusDisconnectedStatusEnum, CloudDisconnectionStatusDisconnecting, CloudDisconnectionStatusDisconnectingStatusEnum, CloudRegistrationSuccessResponse, Collider, ColliderShape, Collision, CollisionContact, CollisionError, CollisionErrorKindEnum, CollisionFreeAlgorithm, CollisionMotionGroup, CollisionSetup, Comparator, Configuration, ConfigurationArchiveStatus, ConfigurationArchiveStatusCreating, ConfigurationArchiveStatusCreatingStatusEnum, ConfigurationArchiveStatusError, ConfigurationArchiveStatusErrorStatusEnum, ConfigurationArchiveStatusSuccess, ConfigurationArchiveStatusSuccessStatusEnum, ConfigurationParameters, ConfigurationResource, ConstrainedPose, ContainerEnvironmentInner, ContainerImage, ContainerImageSecretsInner, ContainerResources, ContainerStorage, ControllerApi, ControllerApiAxiosParamCreator, ControllerApiFactory, ControllerApiFp, ControllerDescription, ControllerInputsOutputsApi, ControllerInputsOutputsApiAxiosParamCreator, ControllerInputsOutputsApiFactory, ControllerInputsOutputsApiFp, ConvexHull, ConvexHullShapeTypeEnum, CoordinateSystem, CoordinateSystemData, CubicSplineParameter, CycleTime, Cylinder, CylinderShapeTypeEnum, DHParameter, Direction, DirectionConstraint, DirectionConstraintConstraintNameEnum, ErrorDirectionConstraintNotMet, ErrorDirectionConstraintNotMetErrorFeedbackNameEnum, ErrorDirectionConstraintNotNormalized, ErrorDirectionConstraintNotNormalizedErrorFeedbackNameEnum, ErrorInvalidJointCount, ErrorInvalidJointCountErrorFeedbackNameEnum, ErrorJointLimitExceeded, ErrorJointLimitExceededErrorFeedbackNameEnum, ErrorJointPositionCollision, ErrorJointPositionCollisionErrorFeedbackNameEnum, ErrorMaxIterationsExceeded, ErrorMaxIterationsExceededErrorFeedbackNameEnum, ErrorMotionGroupKeyMismatch, ErrorUnsupportedOperation, ErrorUnsupportedOperationErrorFeedbackNameEnum, Execute, ExecuteDetails, ExecuteJoggingRequest, ExecuteJoggingResponse, ExecuteTrajectoryRequest, ExecuteTrajectoryResponse, ExternalJointStreamDatapoint, ExternalJointStreamRequest, FanucController, FanucControllerKindEnum, FeedbackCollision, FeedbackCollisionErrorFeedbackNameEnum, FeedbackCommandsMissing, FeedbackCommandsMissingErrorFeedbackNameEnum, FeedbackCubicSplineIsNotIncreasing, FeedbackCubicSplineIsNotIncreasingErrorFeedbackNameEnum, FeedbackCubicSplineNotAtStartPose, FeedbackCubicSplineNotAtStartPoseErrorFeedbackNameEnum, FeedbackDirectionConstraintNoSolutionExists, FeedbackDirectionConstraintNoSolutionExistsErrorFeedbackNameEnum, FeedbackDirectionConstraintNotMet, FeedbackDirectionConstraintNotMetErrorFeedbackNameEnum, FeedbackDirectionConstraintNotNormalized, FeedbackDirectionConstraintNotNormalizedErrorFeedbackNameEnum, FeedbackInvalidDof, FeedbackInvalidDofErrorFeedbackNameEnum, FeedbackInvalidNanValue, FeedbackInvalidNanValueErrorFeedbackNameEnum, FeedbackInvalidSamplingTime, FeedbackInvalidSamplingTimeErrorFeedbackNameEnum, FeedbackJointLimitExceeded, FeedbackJointLimitExceededErrorFeedbackNameEnum, FeedbackNoSolutionInCurrentConfiguration, FeedbackNoSolutionInCurrentConfigurationErrorFeedbackNameEnum, FeedbackOutOfWorkspace, FeedbackOutOfWorkspaceErrorFeedbackNameEnum, FeedbackSingularity, FeedbackSingularityErrorFeedbackNameEnum, FeedbackStartJointsMissing, FeedbackStartJointsMissingErrorFeedbackNameEnum, FeedbackTorqueExceeded, FeedbackTorqueExceededErrorFeedbackNameEnum, Flag, FlangePayload, FloatValue, FloatValueValueTypeEnum, ForwardKinematics422Response, ForwardKinematicsRequest, ForwardKinematicsResponse, ForwardKinematicsValidationError, GetTrajectoryResponse, HTTPValidationError, IOBooleanValue, IOBooleanValueValueTypeEnum, IOBoundary, IODescription, IODirection, IOFloatValue, IOFloatValueValueTypeEnum, IOIntegerValue, IOIntegerValueValueTypeEnum, IOOrigin, IOValue, IOValueType, ImageCredentials, InconsistentTrajectorySizeError, InconsistentTrajectorySizeErrorInconsistentTrajectorySize, InconsistentTrajectorySizeErrorKindEnum, InitializeJoggingRequest, InitializeJoggingRequestMessageTypeEnum, InitializeJoggingResponse, InitializeJoggingResponseKindEnum, InitializeMovementRequest, InitializeMovementRequestMessageTypeEnum, InitializeMovementRequestTrajectory, InitializeMovementResponse, InitializeMovementResponseKindEnum, IntegerValue, IntegerValueValueTypeEnum, InvalidDofError, InvalidDofErrorInvalidDof, InvalidDofErrorKindEnum, InverseKinematics422Response, InverseKinematicsRequest, InverseKinematicsResponse, InverseKinematicsValidationError, InverseKinematicsValidationErrorAllOfData, JoggingApi, JoggingApiAxiosParamCreator, JoggingApiFactory, JoggingApiFp, JoggingDetails, JoggingDetailsKindEnum, JoggingDetailsState, JoggingPausedByUser, JoggingPausedByUserKindEnum, JoggingPausedNearCollision, JoggingPausedNearCollisionKindEnum, JoggingPausedNearJointLimit, JoggingPausedNearJointLimitKindEnum, JoggingPausedNearSingularity, JoggingPausedNearSingularityKindEnum, JoggingPausedOnIO, JoggingPausedOnIOKindEnum, JoggingRunning, JoggingRunningKindEnum, JointLimitExceededError, JointLimitExceededErrorKindEnum, JointLimits, JointPTPMotion, JointTrajectory, JointTypeEnum, JointVelocityRequest, JointVelocityRequestMessageTypeEnum, JointVelocityResponse, JointVelocityResponseKindEnum, KinematicModel, KinematicsApi, KinematicsApiAxiosParamCreator, KinematicsApiFactory, KinematicsApiFp, KukaController, KukaControllerKindEnum, KukaControllerRsiServer, License, LicenseApi, LicenseApiAxiosParamCreator, LicenseApiFactory, LicenseApiFp, LicenseStatus, LicenseStatusEnum, LimitRange, LimitSet, LimitsOverride, ListTrajectoriesResponse, Manufacturer, MergeTrajectories422Response, MergeTrajectoriesError, MergeTrajectoriesErrorErrorFeedback, MergeTrajectoriesRequest, MergeTrajectoriesResponse, MergeTrajectoriesResponseFeedbackInner, MergeTrajectoriesSegment, MergeTrajectoriesValidationError, MidpointInsertionAlgorithm, MidpointInsertionAlgorithmAlgorithmNameEnum, ModbusIO, ModbusIOArea, ModbusIOByteOrder, ModbusIOData, ModbusIOTypeEnum, ModelError, MotionCommand, MotionCommandBlending, MotionCommandPath, MotionGroupApi, MotionGroupApiAxiosParamCreator, MotionGroupApiFactory, MotionGroupApiFp, MotionGroupDescription, MotionGroupFromJson, MotionGroupFromType, MotionGroupInfo, MotionGroupJoints, MotionGroupModelsApi, MotionGroupModelsApiAxiosParamCreator, MotionGroupModelsApiFactory, MotionGroupModelsApiFp, MotionGroupSetup, MotionGroupState, MotionGroupStateJointLimitReached, MovementErrorResponse, MovementErrorResponseKindEnum, MultiCollisionSetup, MultiErrorInvalidJointCount, MultiErrorJointLimitExceeded, MultiErrorJointPositionCollision, MultiJointTrajectory, MultiSearchCollisionFree422Response, MultiSearchCollisionFreeRequest, MultiSearchCollisionFreeResponse, MultiSearchCollisionFreeResponseResponse, MultiSearchCollisionFreeValidationError, MultiSearchCollisionFreeValidationErrorAllOfData, NOVACloudApi, NOVACloudApiAxiosParamCreator, NOVACloudApiFactory, NOVACloudApiFp, NanValueError, NanValueErrorKindEnum, NanValueErrorNanValue, NetworkDevice, NetworkInterface, NetworkState, NetworkStateConnectionTypeEnum, OpMode, OperatingState, OperationLimits, OperationMode, OrientationType, PathCartesianPTP, PathCartesianPTPPathDefinitionNameEnum, PathCircle, PathCirclePathDefinitionNameEnum, PathCubicSpline, PathCubicSplinePathDefinitionNameEnum, PathDirectionConstrainedCartesianPTP, PathDirectionConstrainedCartesianPTPPathDefinitionNameEnum, PathDirectionConstrainedJointPTP, PathDirectionConstrainedJointPTPPathDefinitionNameEnum, 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, ProjectJointPositionDirectionConstraint422Response, ProjectJointPositionDirectionConstraintRequest, ProjectJointPositionDirectionConstraintResponse, ProjectJointPositionDirectionConstraintValidationError, ProjectJointPositionDirectionConstraintValidationErrorAllOfData, RRTConnectAlgorithm, RRTConnectAlgorithmAlgorithmNameEnum, Rectangle, RectangleShapeTypeEnum, RectangularCapsule, RectangularCapsuleShapeTypeEnum, ReleaseChannel, RequestArgs, RequiredError, RobotConfigurationsApi, RobotConfigurationsApiAxiosParamCreator, RobotConfigurationsApiFactory, RobotConfigurationsApiFp, RobotController, RobotControllerConfiguration, RobotControllerConfigurationRequest, RobotControllerState, RobotSystemMode, RobotTcp, RobotTcpData, SafetyGeometry, SafetyGeometryBox, SafetyGeometryCapsule, SafetyGeometryLozenge, SafetyGeometryPlane, SafetyGeometryPrism, SafetyGeometrySphere, SafetyStateType, SafetyZone, SafetyZonePose, SafetyZones, 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, TcpRequiredErrorKindEnum, TcpVelocityRequest, TcpVelocityRequestMessageTypeEnum, TcpVelocityResponse, TcpVelocityResponseKindEnum, TorqueExceededError, TorqueExceededErrorKindEnum, 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, TrajectorySection, TrajectoryWaitForIO, TrajectoryWaitForIOKindEnum, UnitType, UniversalrobotsController, UniversalrobotsControllerKindEnum, UpdateCellVersionRequest, UpdateNovaVersionRequest, ValidationError, ValidationError2, ValidationErrorLocInner, VersionApi, VersionApiAxiosParamCreator, VersionApiFactory, VersionApiFp, VirtualController, VirtualControllerApi, VirtualControllerApiAxiosParamCreator, VirtualControllerApiFactory, VirtualControllerApiFp, VirtualControllerBehaviorApi, VirtualControllerBehaviorApiAxiosParamCreator, VirtualControllerBehaviorApiFactory, VirtualControllerBehaviorApiFp, VirtualControllerInputsOutputsApi, VirtualControllerInputsOutputsApiAxiosParamCreator, VirtualControllerInputsOutputsApiFactory, VirtualControllerInputsOutputsApiFp, VirtualControllerKindEnum, VirtualRobotConfiguration, WaitForIOEventRequest, YaskawaController, YaskawaControllerKindEnum, ZodValidationError, ZodValidationErrorError, ZodValidationErrorErrorCodeEnum, ZodValidationErrorErrorDetailsInner, ZodValidationErrorErrorDetailsInnerPathInner, operationServerMap };
10691
+ export { AbbController, AbbControllerEgmServer, AbbControllerKindEnum, ActivateLicenseRequest, AddTrajectoryError, AddTrajectoryErrorData, AddTrajectoryRequest, AddTrajectoryResponse, AddVirtualControllerMotionGroupRequest, 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, BusIOProfinetSlot, BusIOProfinetVirtual, BusIOProfinetVirtualBusTypeEnum, BusIOType, BusIOsState, BusIOsStateEnum, COLLECTION_FORMATS, CapabilityEntry, Capsule, CapsuleShapeTypeEnum, CartesianLimits, Cell, CellApi, CellApiAxiosParamCreator, CellApiFactory, CellApiFp, CloudConfigStatus, CloudConfigStatusConfigured, CloudConfigStatusConfiguredStatusEnum, CloudConfigStatusNotConfigured, CloudConfigStatusNotConfiguredStatusEnum, CloudConfiguration, CloudConnectionError, CloudConnectionErrorError, CloudConnectionErrorInvalidToken, CloudConnectionErrorInvalidTokenCodeEnum, CloudConnectionErrorInvalidTokenDetails, CloudConnectionErrorInvalidTokenDetailsCloudResponse, CloudConnectionErrorLeafnodeConnectionError, CloudConnectionErrorLeafnodeConnectionErrorCodeEnum, CloudConnectionErrorLeafnodeConnectionErrorDetails, CloudConnectionErrorLeafnodeConnectionTimeout, CloudConnectionErrorLeafnodeConnectionTimeoutCodeEnum, CloudConnectionErrorLeafnodeRestartTimeout, CloudConnectionErrorLeafnodeRestartTimeoutCodeEnum, CloudConnectionErrorNatsFailed, CloudConnectionErrorNatsFailedCodeEnum, CloudConnectionErrorNatsFailedDetails, CloudConnectionErrorUnexpectedResponse, CloudConnectionErrorUnexpectedResponseCodeEnum, CloudConnectionErrorUnexpectedResponseDetails, CloudConnectionErrorUnexpectedResponseDetailsCloudResponse, CloudConnectionRequest, CloudDisconnectionError, CloudDisconnectionStatusDisconnected, CloudDisconnectionStatusDisconnectedStatusEnum, CloudDisconnectionStatusDisconnecting, CloudDisconnectionStatusDisconnectingStatusEnum, CloudRegistrationSuccessResponse, Collider, ColliderShape, Collision, CollisionContact, CollisionError, CollisionErrorKindEnum, CollisionFreeAlgorithm, CollisionMotionGroup, CollisionSetup, Comparator, Configuration, ConfigurationArchiveStatus, ConfigurationArchiveStatusCreating, ConfigurationArchiveStatusCreatingStatusEnum, ConfigurationArchiveStatusError, ConfigurationArchiveStatusErrorStatusEnum, ConfigurationArchiveStatusSuccess, ConfigurationArchiveStatusSuccessStatusEnum, ConfigurationParameters, ConfigurationResource, ConstrainedPose, ContainerEnvironmentInner, ContainerImage, ContainerImageSecretsInner, ContainerResources, ContainerStorage, ControllerApi, ControllerApiAxiosParamCreator, ControllerApiFactory, ControllerApiFp, ControllerDescription, ControllerInputsOutputsApi, ControllerInputsOutputsApiAxiosParamCreator, ControllerInputsOutputsApiFactory, ControllerInputsOutputsApiFp, ConvexHull, ConvexHullShapeTypeEnum, CoordinateSystem, CoordinateSystemData, CubicSplineParameter, CycleTime, Cylinder, CylinderShapeTypeEnum, DHParameter, Direction, DirectionConstraint, DirectionConstraintConstraintNameEnum, ErrorDirectionConstraintNotMet, ErrorDirectionConstraintNotMetErrorFeedbackNameEnum, ErrorDirectionConstraintNotNormalized, ErrorDirectionConstraintNotNormalizedErrorFeedbackNameEnum, ErrorInvalidJointCount, ErrorInvalidJointCountErrorFeedbackNameEnum, ErrorJointLimitExceeded, ErrorJointLimitExceededErrorFeedbackNameEnum, ErrorJointPositionCollision, ErrorJointPositionCollisionErrorFeedbackNameEnum, ErrorMaxIterationsExceeded, ErrorMaxIterationsExceededErrorFeedbackNameEnum, ErrorMotionGroupKeyMismatch, ErrorUnsupportedOperation, ErrorUnsupportedOperationErrorFeedbackNameEnum, Execute, ExecuteDetails, ExecuteJoggingRequest, ExecuteJoggingResponse, ExecuteTrajectoryRequest, ExecuteTrajectoryResponse, ExternalJointStreamDatapoint, ExternalJointStreamRequest, FanucController, FanucControllerKindEnum, FeedbackCollision, FeedbackCollisionErrorFeedbackNameEnum, FeedbackCommandsMissing, FeedbackCommandsMissingErrorFeedbackNameEnum, FeedbackCubicSplineIsNotIncreasing, FeedbackCubicSplineIsNotIncreasingErrorFeedbackNameEnum, FeedbackCubicSplineNotAtStartPose, FeedbackCubicSplineNotAtStartPoseErrorFeedbackNameEnum, FeedbackDirectionConstraintNoSolutionExists, FeedbackDirectionConstraintNoSolutionExistsErrorFeedbackNameEnum, FeedbackDirectionConstraintNotMet, FeedbackDirectionConstraintNotMetErrorFeedbackNameEnum, FeedbackDirectionConstraintNotNormalized, FeedbackDirectionConstraintNotNormalizedErrorFeedbackNameEnum, FeedbackInvalidDof, FeedbackInvalidDofErrorFeedbackNameEnum, FeedbackInvalidNanValue, FeedbackInvalidNanValueErrorFeedbackNameEnum, FeedbackInvalidSamplingTime, FeedbackInvalidSamplingTimeErrorFeedbackNameEnum, FeedbackJointLimitExceeded, FeedbackJointLimitExceededErrorFeedbackNameEnum, FeedbackNoSolutionInCurrentConfiguration, FeedbackNoSolutionInCurrentConfigurationErrorFeedbackNameEnum, FeedbackOutOfWorkspace, FeedbackOutOfWorkspaceErrorFeedbackNameEnum, FeedbackSingularity, FeedbackSingularityErrorFeedbackNameEnum, FeedbackStartJointsMissing, FeedbackStartJointsMissingErrorFeedbackNameEnum, FeedbackTorqueExceeded, FeedbackTorqueExceededErrorFeedbackNameEnum, Flag, FlangePayload, FloatValue, FloatValueValueTypeEnum, ForwardKinematics422Response, ForwardKinematicsRequest, ForwardKinematicsResponse, ForwardKinematicsValidationError, GetTrajectoryResponse, HTTPValidationError, IOBooleanValue, IOBooleanValueValueTypeEnum, IOBoundary, IODescription, IODirection, IOFloatValue, IOFloatValueValueTypeEnum, IOIntegerValue, IOIntegerValueValueTypeEnum, IOOrigin, IOValue, IOValueType, ImageCredentials, InconsistentTrajectorySizeError, InconsistentTrajectorySizeErrorInconsistentTrajectorySize, InconsistentTrajectorySizeErrorKindEnum, InitializeJoggingRequest, InitializeJoggingRequestMessageTypeEnum, InitializeJoggingResponse, InitializeJoggingResponseKindEnum, InitializeMovementRequest, InitializeMovementRequestMessageTypeEnum, InitializeMovementRequestTrajectory, InitializeMovementResponse, InitializeMovementResponseKindEnum, IntegerValue, IntegerValueValueTypeEnum, InvalidDofError, InvalidDofErrorInvalidDof, InvalidDofErrorKindEnum, InverseKinematics422Response, InverseKinematicsRequest, InverseKinematicsResponse, InverseKinematicsValidationError, InverseKinematicsValidationErrorAllOfData, JoggingApi, JoggingApiAxiosParamCreator, JoggingApiFactory, JoggingApiFp, JoggingDetails, JoggingDetailsKindEnum, JoggingDetailsState, JoggingPausedByUser, JoggingPausedByUserKindEnum, JoggingPausedNearCollision, JoggingPausedNearCollisionKindEnum, JoggingPausedNearJointLimit, JoggingPausedNearJointLimitKindEnum, JoggingPausedNearSingularity, JoggingPausedNearSingularityKindEnum, JoggingPausedOnIO, JoggingPausedOnIOKindEnum, JoggingRunning, JoggingRunningKindEnum, JointLimitExceededError, JointLimitExceededErrorKindEnum, JointLimits, JointPTPMotion, JointTrajectory, JointTypeEnum, JointVelocityRequest, JointVelocityRequestMessageTypeEnum, JointVelocityResponse, JointVelocityResponseKindEnum, KinematicModel, KinematicsApi, KinematicsApiAxiosParamCreator, KinematicsApiFactory, KinematicsApiFp, KukaController, KukaControllerKindEnum, KukaControllerRsiServer, License, LicenseApi, LicenseApiAxiosParamCreator, LicenseApiFactory, LicenseApiFp, LicenseStatus, LicenseStatusEnum, LimitRange, LimitSet, LimitsOverride, ListTrajectoriesResponse, Manufacturer, MergeTrajectories422Response, MergeTrajectoriesError, MergeTrajectoriesErrorErrorFeedback, MergeTrajectoriesRequest, MergeTrajectoriesResponse, MergeTrajectoriesResponseFeedbackInner, MergeTrajectoriesSegment, MergeTrajectoriesValidationError, MidpointInsertionAlgorithm, MidpointInsertionAlgorithmAlgorithmNameEnum, ModbusIO, ModbusIOArea, ModbusIOByteOrder, ModbusIOData, ModbusIOTypeEnum, ModelError, MotionCommand, MotionCommandBlending, MotionCommandPath, MotionGroupApi, MotionGroupApiAxiosParamCreator, MotionGroupApiFactory, MotionGroupApiFp, MotionGroupDescription, MotionGroupFromJson, MotionGroupFromType, MotionGroupInfo, MotionGroupJoints, MotionGroupModelsApi, MotionGroupModelsApiAxiosParamCreator, MotionGroupModelsApiFactory, MotionGroupModelsApiFp, MotionGroupSetup, MotionGroupState, MotionGroupStateJointLimitReached, MovementErrorResponse, MovementErrorResponseKindEnum, MultiCollisionSetup, MultiErrorInvalidJointCount, MultiErrorJointLimitExceeded, MultiErrorJointPositionCollision, MultiJointTrajectory, MultiSearchCollisionFree422Response, MultiSearchCollisionFreeRequest, MultiSearchCollisionFreeResponse, MultiSearchCollisionFreeResponseResponse, MultiSearchCollisionFreeValidationError, MultiSearchCollisionFreeValidationErrorAllOfData, NOVACloudApi, NOVACloudApiAxiosParamCreator, NOVACloudApiFactory, NOVACloudApiFp, NanValueError, NanValueErrorKindEnum, NanValueErrorNanValue, NetworkDevice, NetworkInterface, NetworkState, NetworkStateConnectionTypeEnum, OpMode, OperatingState, OperationLimits, OperationMode, OrientationType, PathCartesianPTP, PathCartesianPTPPathDefinitionNameEnum, PathCircle, PathCirclePathDefinitionNameEnum, PathCubicSpline, PathCubicSplinePathDefinitionNameEnum, PathDirectionConstrainedCartesianPTP, PathDirectionConstrainedCartesianPTPPathDefinitionNameEnum, PathDirectionConstrainedJointPTP, PathDirectionConstrainedJointPTPPathDefinitionNameEnum, 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, ProjectJointPositionDirectionConstraint422Response, ProjectJointPositionDirectionConstraintRequest, ProjectJointPositionDirectionConstraintResponse, ProjectJointPositionDirectionConstraintValidationError, ProjectJointPositionDirectionConstraintValidationErrorAllOfData, RRTConnectAlgorithm, RRTConnectAlgorithmAlgorithmNameEnum, Rectangle, RectangleShapeTypeEnum, RectangularCapsule, RectangularCapsuleShapeTypeEnum, ReleaseChannel, RequestArgs, RequiredError, RobotConfigurationsApi, RobotConfigurationsApiAxiosParamCreator, RobotConfigurationsApiFactory, RobotConfigurationsApiFp, RobotController, RobotControllerConfiguration, RobotControllerConfigurationRequest, RobotControllerState, RobotSystemMode, RobotTcp, RobotTcpData, SafetyGeometry, SafetyGeometryBox, SafetyGeometryCapsule, SafetyGeometryLozenge, SafetyGeometryPlane, SafetyGeometryPrism, SafetyGeometrySphere, SafetyStateType, SafetyZone, SafetyZonePose, SafetyZones, ServiceGroup, ServiceStatus, ServiceStatusPhase, ServiceStatusResponse, ServiceStatusSeverity, ServiceStatusStatus, SessionApi, SessionApiAxiosParamCreator, SessionApiFactory, SessionApiFp, SessionResponse, 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, TcpRequiredErrorKindEnum, TcpVelocityRequest, TcpVelocityRequestMessageTypeEnum, TcpVelocityResponse, TcpVelocityResponseKindEnum, TorqueExceededError, TorqueExceededErrorKindEnum, 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, TrajectorySection, TrajectoryWaitForIO, TrajectoryWaitForIOKindEnum, UnitType, UniversalrobotsController, UniversalrobotsControllerKindEnum, UpdateCellVersionRequest, UpdateNovaVersionRequest, User, ValidationError, ValidationError2, ValidationErrorLocInner, VersionApi, VersionApiAxiosParamCreator, VersionApiFactory, VersionApiFp, VirtualController, VirtualControllerApi, VirtualControllerApiAxiosParamCreator, VirtualControllerApiFactory, VirtualControllerApiFp, VirtualControllerBehaviorApi, VirtualControllerBehaviorApiAxiosParamCreator, VirtualControllerBehaviorApiFactory, VirtualControllerBehaviorApiFp, VirtualControllerInputsOutputsApi, VirtualControllerInputsOutputsApiAxiosParamCreator, VirtualControllerInputsOutputsApiFactory, VirtualControllerInputsOutputsApiFp, VirtualControllerKindEnum, VirtualRobotConfiguration, WaitForIOEventRequest, YaskawaController, YaskawaControllerKindEnum, ZodValidationError, ZodValidationErrorError, ZodValidationErrorErrorCodeEnum, ZodValidationErrorErrorDetailsInner, ZodValidationErrorErrorDetailsInnerPathInner, operationServerMap };