@wandelbots/nova-api 26.4.0-dev.4 → 26.4.0-dev.41

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,13 +1,12 @@
1
- import * as axios0 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.
9
8
  *
10
- * The version of the OpenAPI document: 2.3.0
9
+ * The version of the OpenAPI document: 2.4.0 dev
11
10
  *
12
11
  *
13
12
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -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
  */
@@ -663,7 +675,7 @@ interface CloudConfiguration {
663
675
  /**
664
676
  * Instance identifier received from cloud registration
665
677
  */
666
- 'instance': string;
678
+ 'instance': number;
667
679
  }
668
680
  interface CloudConnectionError {
669
681
  'error': CloudConnectionErrorError;
@@ -797,7 +809,7 @@ interface CloudRegistrationSuccessResponse {
797
809
  /**
798
810
  * Instance identifier received from cloud registration
799
811
  */
800
- 'instance': string;
812
+ 'instance': number;
801
813
  }
802
814
  /**
803
815
  * Defines a collider with a single shape. A collider is an object that is used for collision detection. It defines the `shape` that is attached with the offset of `pose` to a reference frame. Use colliders to: - Define the shape of a workpiece. The reference frame is the scene origin. - Define the shape of a link in a motion group. The reference frame is the link coordinate system. - Define the shape of a tool. The reference frame is the flange coordinate system.
@@ -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";
@@ -3450,6 +3466,55 @@ interface ProgramStartRequest {
3450
3466
  */
3451
3467
  'arguments': object;
3452
3468
  }
3469
+ interface ProjectJointPositionDirectionConstraint422Response {
3470
+ 'detail'?: Array<ProjectJointPositionDirectionConstraintValidationError>;
3471
+ }
3472
+ interface ProjectJointPositionDirectionConstraintRequest {
3473
+ /**
3474
+ * Identifies a single motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported types.
3475
+ */
3476
+ 'motion_group_model': string;
3477
+ /**
3478
+ * List of joint positions for which the direction constraint is applied.
3479
+ */
3480
+ 'joint_positions': Array<Array<number>>;
3481
+ 'constraint': DirectionConstraint;
3482
+ 'tcp_offset'?: Pose;
3483
+ /**
3484
+ * Offset from the world frame to the motion group base.
3485
+ */
3486
+ 'mounting'?: Pose;
3487
+ /**
3488
+ * Joint position limits, indexed starting from base. The unit depends on the type of joint: For revolute joints, the limit is given in [rad]; for prismatic joints, it is given in [mm].
3489
+ */
3490
+ 'joint_position_limits'?: Array<LimitRange>;
3491
+ /**
3492
+ * Collision layers to be respected by the motion planner when planning for a single motion group. Each setup represents one layer, e.g., the safety zones and shapes or a fine grained tool and workpiece model. Layers are checked individually along the trajectory and independently of other layers. To respect the safety zones of the controller and check for collision: 1. Fetch the safety zones, link and tool shapes from the controller. 2. Add the fetched zones, links and tools to a layer. 3. Create other layers from your own 3D data as needed. 4. Plan trajectory. 5. The response highlights the layer in which a collision was detected by key.
3493
+ */
3494
+ 'collision_setups'?: {
3495
+ [key: string]: CollisionSetup;
3496
+ };
3497
+ }
3498
+ interface ProjectJointPositionDirectionConstraintResponse {
3499
+ /**
3500
+ * List of projected joint positions. If the resulting joint position is in collision or violates joint limits, the corresponding entry is null.
3501
+ */
3502
+ 'projected_joint_positions': Array<Array<number> | null>;
3503
+ }
3504
+ interface ProjectJointPositionDirectionConstraintValidationError {
3505
+ 'loc': Array<ValidationErrorLocInner>;
3506
+ 'msg': string;
3507
+ 'type': string;
3508
+ 'input': {
3509
+ [key: string]: any;
3510
+ };
3511
+ 'data'?: ProjectJointPositionDirectionConstraintValidationErrorAllOfData;
3512
+ }
3513
+ /**
3514
+ * @type ProjectJointPositionDirectionConstraintValidationErrorAllOfData
3515
+ * Optional data further specifying the validation error.
3516
+ */
3517
+ type ProjectJointPositionDirectionConstraintValidationErrorAllOfData = ErrorDirectionConstraintNotNormalized | ErrorInvalidJointCount | ErrorUnsupportedOperation;
3453
3518
  interface RRTConnectAlgorithm {
3454
3519
  /**
3455
3520
  * Algorithm discriminator. RRT Connect algorithm configuration for collision-free path planning. Rapidly-exploring Random Trees (RRT) builds trees of valid configurations by randomly sampling the joint space and connecting feasible points with JointPTP motions. RRT Connect grows two trees simultaneously from start and target positions until they meet. This is a custom implementation optimized for manipulator kinematics and collision checking in industrial contexts.
@@ -3460,13 +3525,16 @@ interface RRTConnectAlgorithm {
3460
3525
  */
3461
3526
  'max_iterations'?: number;
3462
3527
  /**
3463
- * Maximum step size for tree extension in joint space.
3528
+ * Deprecated in favor of [step_size]. Maximum step size for tree extension in joint space.
3529
+ * @deprecated
3464
3530
  */
3465
3531
  'max_step_size'?: number;
3466
3532
  /**
3467
- * Adjust the maximum step size during the search based on the recent success rate of tree expansion.
3533
+ * Deprecated in favor of [step_size]. Adjust the maximum step size during the search based on the recent success rate of tree expansion.
3534
+ * @deprecated
3468
3535
  */
3469
3536
  'adaptive_step_size'?: boolean;
3537
+ 'step_size'?: RRTConnectAlgorithmStepSize | null;
3470
3538
  /**
3471
3539
  * Apply smoothing after the search has succeeded. This will remove as many intermediate points as possible while keeping the path valid.
3472
3540
  */
@@ -3480,6 +3548,18 @@ declare const RRTConnectAlgorithmAlgorithmNameEnum: {
3480
3548
  readonly RrtConnectAlgorithm: "RRTConnectAlgorithm";
3481
3549
  };
3482
3550
  type RRTConnectAlgorithmAlgorithmNameEnum = typeof RRTConnectAlgorithmAlgorithmNameEnum[keyof typeof RRTConnectAlgorithmAlgorithmNameEnum];
3551
+ /**
3552
+ * @type RRTConnectAlgorithmStepSize
3553
+ * Step size for tree extension in joint space. If a range is given, the step size is adaptively adjusted based on the recent success rate.
3554
+ */
3555
+ type RRTConnectAlgorithmStepSize = Range | number;
3556
+ /**
3557
+ * Inclusive range defined by minimum and maximum. [max] must be greater than [min].
3558
+ */
3559
+ interface Range {
3560
+ 'min': number;
3561
+ 'max': number;
3562
+ }
3483
3563
  /**
3484
3564
  * Defines an x/y-plane with finite size. Centred around the z-axis.
3485
3565
  */
@@ -3894,6 +3974,28 @@ interface ServiceStatusStatus {
3894
3974
  'code': ServiceStatusPhase;
3895
3975
  'reason'?: string;
3896
3976
  }
3977
+ /**
3978
+ * 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.
3979
+ */
3980
+ interface SessionResponse {
3981
+ /**
3982
+ * Unique identifier for the current session. For authenticated sessions this is derived from the access token. Unmanaged instances return \"default\".
3983
+ */
3984
+ 'session_id': string;
3985
+ 'user': User;
3986
+ /**
3987
+ * Capability entries resolved for the user. Empty on unmanaged instances.
3988
+ */
3989
+ 'capabilities': Array<CapabilityEntry>;
3990
+ /**
3991
+ * Timestamp when the underlying access token was issued. Zero-value on unmanaged instances.
3992
+ */
3993
+ 'issued_at': string;
3994
+ /**
3995
+ * Timestamp when the underlying access token expires. Zero-value on unmanaged instances.
3996
+ */
3997
+ 'expires_at': string;
3998
+ }
3897
3999
  /**
3898
4000
  * Defines an input/output that should be set upon reaching a specified location on the trajectory.
3899
4001
  */
@@ -4252,6 +4354,23 @@ interface UpdateNovaVersionRequest {
4252
4354
  */
4253
4355
  'update_cells'?: boolean;
4254
4356
  }
4357
+ /**
4358
+ * Identity information for the session user. On unmanaged instances all fields are empty strings representing an anonymous user.
4359
+ */
4360
+ interface User {
4361
+ /**
4362
+ * Subject identifier of the user. Empty on unmanaged instances.
4363
+ */
4364
+ 'id': string;
4365
+ /**
4366
+ * Display name of the user. Empty on unmanaged instances.
4367
+ */
4368
+ 'name': string;
4369
+ /**
4370
+ * Email address of the user. Empty on unmanaged instances.
4371
+ */
4372
+ 'email': string;
4373
+ }
4255
4374
  interface ValidationError {
4256
4375
  'loc': Array<ValidationErrorLocInner>;
4257
4376
  'msg': string;
@@ -4552,7 +4671,7 @@ declare class ApplicationApi extends BaseAPI {
4552
4671
  * @param {*} [options] Override http request option.
4553
4672
  * @throws {RequiredError}
4554
4673
  */
4555
- addApp(cell: string, app: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4674
+ addApp(cell: string, app: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
4556
4675
  /**
4557
4676
  * **Required permissions:** `can_manage_apps` - Install, update, or remove applications ___ Delete all GUI applications from the cell.
4558
4677
  * @summary Clear Applications
@@ -4561,7 +4680,7 @@ declare class ApplicationApi extends BaseAPI {
4561
4680
  * @param {*} [options] Override http request option.
4562
4681
  * @throws {RequiredError}
4563
4682
  */
4564
- clearApps(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4683
+ clearApps(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
4565
4684
  /**
4566
4685
  * **Required permissions:** `can_manage_apps` - Install, update, or remove applications ___ Delete a GUI application from the cell.
4567
4686
  * @summary Delete Application
@@ -4571,7 +4690,7 @@ declare class ApplicationApi extends BaseAPI {
4571
4690
  * @param {*} [options] Override http request option.
4572
4691
  * @throws {RequiredError}
4573
4692
  */
4574
- deleteApp(cell: string, app: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4693
+ deleteApp(cell: string, app: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
4575
4694
  /**
4576
4695
  * **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).
4577
4696
  * @summary Configuration
@@ -4580,7 +4699,7 @@ declare class ApplicationApi extends BaseAPI {
4580
4699
  * @param {*} [options] Override http request option.
4581
4700
  * @throws {RequiredError}
4582
4701
  */
4583
- getApp(cell: string, app: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<App, any>>;
4702
+ getApp(cell: string, app: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<App, any, {}>>;
4584
4703
  /**
4585
4704
  * **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.
4586
4705
  * @summary List Applications
@@ -4588,7 +4707,7 @@ declare class ApplicationApi extends BaseAPI {
4588
4707
  * @param {*} [options] Override http request option.
4589
4708
  * @throws {RequiredError}
4590
4709
  */
4591
- listApps(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
4710
+ listApps(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string[], any, {}>>;
4592
4711
  /**
4593
4712
  * **Required permissions:** `can_manage_apps` - Install, update, or remove applications ___ Update the configuration of a GUI application in the cell.
4594
4713
  * @summary Update Configuration
@@ -4599,7 +4718,7 @@ declare class ApplicationApi extends BaseAPI {
4599
4718
  * @param {*} [options] Override http request option.
4600
4719
  * @throws {RequiredError}
4601
4720
  */
4602
- updateApp(cell: string, app: string, app2: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4721
+ updateApp(cell: string, app: string, app2: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
4603
4722
  }
4604
4723
  /**
4605
4724
  * BUSInputsOutputsApi - axios parameter creator
@@ -5127,7 +5246,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
5127
5246
  * @param {*} [options] Override http request option.
5128
5247
  * @throws {RequiredError}
5129
5248
  */
5130
- addBusIOService(cell: string, busIOType: BusIOType, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
5249
+ addBusIOService(cell: string, busIOType: BusIOType, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
5131
5250
  /**
5132
5251
  * **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).
5133
5252
  * @summary Add MODBUS Input/Output
@@ -5137,7 +5256,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
5137
5256
  * @param {*} [options] Override http request option.
5138
5257
  * @throws {RequiredError}
5139
5258
  */
5140
- addModbusIO(cell: string, io: string, modbusIOData: ModbusIOData, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
5259
+ addModbusIO(cell: string, io: string, modbusIOData: ModbusIOData, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
5141
5260
  /**
5142
5261
  * **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).
5143
5262
  * @summary Add PROFINET Input/Output
@@ -5147,7 +5266,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
5147
5266
  * @param {*} [options] Override http request option.
5148
5267
  * @throws {RequiredError}
5149
5268
  */
5150
- addProfinetIO(cell: string, io: string, profinetIOData: ProfinetIOData, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
5269
+ addProfinetIO(cell: string, io: string, profinetIOData: ProfinetIOData, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
5151
5270
  /**
5152
5271
  * **Required permissions:** `can_manage_bus_ios` - Manage BUS IO configuration ___ Remove the BUS inputs/outputs service from the cell.
5153
5272
  * @summary Clear Service
@@ -5156,7 +5275,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
5156
5275
  * @param {*} [options] Override http request option.
5157
5276
  * @throws {RequiredError}
5158
5277
  */
5159
- clearBusIOService(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
5278
+ clearBusIOService(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
5160
5279
  /**
5161
5280
  * **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.
5162
5281
  * @summary Remove all MODBUS Input/Outputs
@@ -5164,7 +5283,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
5164
5283
  * @param {*} [options] Override http request option.
5165
5284
  * @throws {RequiredError}
5166
5285
  */
5167
- deleteAllModbusIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
5286
+ deleteAllModbusIOs(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
5168
5287
  /**
5169
5288
  * **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.
5170
5289
  * @summary Remove all PROFINET Input/Outputs
@@ -5172,7 +5291,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
5172
5291
  * @param {*} [options] Override http request option.
5173
5292
  * @throws {RequiredError}
5174
5293
  */
5175
- deleteAllProfinetIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
5294
+ deleteAllProfinetIOs(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
5176
5295
  /**
5177
5296
  * **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.
5178
5297
  * @summary Remove MODBUS Input/Output
@@ -5181,7 +5300,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
5181
5300
  * @param {*} [options] Override http request option.
5182
5301
  * @throws {RequiredError}
5183
5302
  */
5184
- deleteModbusIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
5303
+ deleteModbusIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
5185
5304
  /**
5186
5305
  * **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.
5187
5306
  * @summary Remove PROFINET Input/Ouptut
@@ -5190,7 +5309,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
5190
5309
  * @param {*} [options] Override http request option.
5191
5310
  * @throws {RequiredError}
5192
5311
  */
5193
- deleteProfinetIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
5312
+ deleteProfinetIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
5194
5313
  /**
5195
5314
  * **Required permissions:** `can_operate_bus_ios` - Read and write BUS IO values ___ Get deployed BUS inputs/outputs service.
5196
5315
  * @summary Get Service
@@ -5198,7 +5317,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
5198
5317
  * @param {*} [options] Override http request option.
5199
5318
  * @throws {RequiredError}
5200
5319
  */
5201
- getBusIOService(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<BusIOType, any>>;
5320
+ getBusIOService(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<BusIOType, any, {}>>;
5202
5321
  /**
5203
5322
  * **Required permissions:** `can_operate_bus_ios` - Read and write BUS IO values ___ Get the current state of the BUS Inputs/Outputs service.
5204
5323
  * @summary State
@@ -5206,7 +5325,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
5206
5325
  * @param {*} [options] Override http request option.
5207
5326
  * @throws {RequiredError}
5208
5327
  */
5209
- getBusIOState(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<BusIOsState, any>>;
5328
+ getBusIOState(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<BusIOsState, any, {}>>;
5210
5329
  /**
5211
5330
  * **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).
5212
5331
  * @summary Get Input/Output Values
@@ -5215,7 +5334,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
5215
5334
  * @param {*} [options] Override http request option.
5216
5335
  * @throws {RequiredError}
5217
5336
  */
5218
- getBusIOValues(cell: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IOValue[], any>>;
5337
+ getBusIOValues(cell: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<IOValue[], any, {}>>;
5219
5338
  /**
5220
5339
  * **Required permissions:** `can_operate_bus_ios` - Read and write BUS IO values ___ Get description of NOVA as a PROFINET device.
5221
5340
  * @summary Get PROFINET Description
@@ -5223,7 +5342,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
5223
5342
  * @param {*} [options] Override http request option.
5224
5343
  * @throws {RequiredError}
5225
5344
  */
5226
- getProfinetDescription(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProfinetDescription, any>>;
5345
+ getProfinetDescription(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ProfinetDescription, any, {}>>;
5227
5346
  /**
5228
5347
  * **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.
5229
5348
  * @summary Get PROFINET GSDML File
@@ -5231,7 +5350,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
5231
5350
  * @param {*} [options] Override http request option.
5232
5351
  * @throws {RequiredError}
5233
5352
  */
5234
- getProfinetGSDML(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string, any>>;
5353
+ getProfinetGSDML(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string, any, {}>>;
5235
5354
  /**
5236
5355
  * **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.
5237
5356
  * @summary PROFINET Inputs/Outputs to File
@@ -5241,7 +5360,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
5241
5360
  * @param {*} [options] Override http request option.
5242
5361
  * @throws {RequiredError}
5243
5362
  */
5244
- getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string, any>>;
5363
+ getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string, any, {}>>;
5245
5364
  /**
5246
5365
  * **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.
5247
5366
  * @summary List Descriptions
@@ -5249,7 +5368,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
5249
5368
  * @param {*} [options] Override http request option.
5250
5369
  * @throws {RequiredError}
5251
5370
  */
5252
- listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<BusIODescription[], any>>;
5371
+ listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<BusIODescription[], any, {}>>;
5253
5372
  /**
5254
5373
  * **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).
5255
5374
  * @summary List MODBUS Input/Output Configuration
@@ -5257,7 +5376,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
5257
5376
  * @param {*} [options] Override http request option.
5258
5377
  * @throws {RequiredError}
5259
5378
  */
5260
- listModbusIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ModbusIO[], any>>;
5379
+ listModbusIOs(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ModbusIO[], any, {}>>;
5261
5380
  /**
5262
5381
  * **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.
5263
5382
  * @summary List PROFINET Input/Output Configuration
@@ -5265,7 +5384,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
5265
5384
  * @param {*} [options] Override http request option.
5266
5385
  * @throws {RequiredError}
5267
5386
  */
5268
- listProfinetIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProfinetIO[], any>>;
5387
+ listProfinetIOs(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ProfinetIO[], any, {}>>;
5269
5388
  /**
5270
5389
  * **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.
5271
5390
  * @summary Set Output Values
@@ -5274,7 +5393,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
5274
5393
  * @param {*} [options] Override http request option.
5275
5394
  * @throws {RequiredError}
5276
5395
  */
5277
- setBusIOValues(cell: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
5396
+ setBusIOValues(cell: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
5278
5397
  /**
5279
5398
  * **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.
5280
5399
  * @summary Set PROFINET Inputs/Outputs from File
@@ -5283,7 +5402,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
5283
5402
  * @param {*} [options] Override http request option.
5284
5403
  * @throws {RequiredError}
5285
5404
  */
5286
- setProfinetIOsFromFile(cell: string, profinetInputOutputConfig: ProfinetInputOutputConfig, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
5405
+ setProfinetIOsFromFile(cell: string, profinetInputOutputConfig: ProfinetInputOutputConfig, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
5287
5406
  }
5288
5407
  /**
5289
5408
  * CellApi - axios parameter creator
@@ -5333,7 +5452,7 @@ declare const CellApiAxiosParamCreator: (configuration?: Configuration) => {
5333
5452
  */
5334
5453
  getCellStatus: (cell: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5335
5454
  /**
5336
- * **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.
5455
+ * **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.
5337
5456
  * @summary List Cells
5338
5457
  * @param {*} [options] Override http request option.
5339
5458
  * @throws {RequiredError}
@@ -5416,7 +5535,7 @@ declare const CellApiFp: (configuration?: Configuration) => {
5416
5535
  */
5417
5536
  getCellStatus(cell: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ServiceStatusResponse>>;
5418
5537
  /**
5419
- * **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.
5538
+ * **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.
5420
5539
  * @summary List Cells
5421
5540
  * @param {*} [options] Override http request option.
5422
5541
  * @throws {RequiredError}
@@ -5499,7 +5618,7 @@ declare const CellApiFactory: (configuration?: Configuration, basePath?: string,
5499
5618
  */
5500
5619
  getCellStatus(cell: string, options?: RawAxiosRequestConfig): AxiosPromise<ServiceStatusResponse>;
5501
5620
  /**
5502
- * **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.
5621
+ * **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.
5503
5622
  * @summary List Cells
5504
5623
  * @param {*} [options] Override http request option.
5505
5624
  * @throws {RequiredError}
@@ -5546,7 +5665,7 @@ declare class CellApi extends BaseAPI {
5546
5665
  * @param {*} [options] Override http request option.
5547
5666
  * @throws {RequiredError}
5548
5667
  */
5549
- checkCellVersionUpdate(cell: string, channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string, any>>;
5668
+ checkCellVersionUpdate(cell: string, channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string, any, {}>>;
5550
5669
  /**
5551
5670
  * **Required permissions:** `can_manage_cells` - Create, update, or delete cells ___ Delete an entire cell.
5552
5671
  * @summary Delete Cell
@@ -5555,7 +5674,7 @@ declare class CellApi extends BaseAPI {
5555
5674
  * @param {*} [options] Override http request option.
5556
5675
  * @throws {RequiredError}
5557
5676
  */
5558
- deleteCell(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
5677
+ deleteCell(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
5559
5678
  /**
5560
5679
  * **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.
5561
5680
  * @summary Add Cell
@@ -5564,7 +5683,7 @@ declare class CellApi extends BaseAPI {
5564
5683
  * @param {*} [options] Override http request option.
5565
5684
  * @throws {RequiredError}
5566
5685
  */
5567
- deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
5686
+ deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
5568
5687
  /**
5569
5688
  * **Required permissions:** `can_access_cells` - View cell configurations and resources ___ List all cell resources.
5570
5689
  * @summary Configuration
@@ -5572,7 +5691,7 @@ declare class CellApi extends BaseAPI {
5572
5691
  * @param {*} [options] Override http request option.
5573
5692
  * @throws {RequiredError}
5574
5693
  */
5575
- getCell(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Cell, any>>;
5694
+ getCell(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<Cell, any, {}>>;
5576
5695
  /**
5577
5696
  * **Required permissions:** `can_access_system` - View system status and metadata ___ List the status of all cell resources.
5578
5697
  * @summary Service Status
@@ -5580,14 +5699,14 @@ declare class CellApi extends BaseAPI {
5580
5699
  * @param {*} [options] Override http request option.
5581
5700
  * @throws {RequiredError}
5582
5701
  */
5583
- getCellStatus(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ServiceStatusResponse, any>>;
5702
+ getCellStatus(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ServiceStatusResponse, any, {}>>;
5584
5703
  /**
5585
- * **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.
5704
+ * **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.
5586
5705
  * @summary List Cells
5587
5706
  * @param {*} [options] Override http request option.
5588
5707
  * @throws {RequiredError}
5589
5708
  */
5590
- listCells(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
5709
+ listCells(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string[], any, {}>>;
5591
5710
  /**
5592
5711
  * **Required permissions:** `can_manage_cells` - Create, update, or delete cells ___ Deactivate or activate the services of a cell.
5593
5712
  * @summary Operating State
@@ -5596,7 +5715,7 @@ declare class CellApi extends BaseAPI {
5596
5715
  * @param {*} [options] Override http request option.
5597
5716
  * @throws {RequiredError}
5598
5717
  */
5599
- setCellStatus(cell: string, operatingState: OperatingState, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
5718
+ setCellStatus(cell: string, operatingState: OperatingState, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
5600
5719
  /**
5601
5720
  * **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.
5602
5721
  * @summary Update Configuration
@@ -5606,7 +5725,7 @@ declare class CellApi extends BaseAPI {
5606
5725
  * @param {*} [options] Override http request option.
5607
5726
  * @throws {RequiredError}
5608
5727
  */
5609
- updateCell(cell: string, cell2: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
5728
+ updateCell(cell: string, cell2: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
5610
5729
  /**
5611
5730
  * **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.
5612
5731
  * @summary Update Cell Version
@@ -5615,7 +5734,7 @@ declare class CellApi extends BaseAPI {
5615
5734
  * @param {*} [options] Override http request option.
5616
5735
  * @throws {RequiredError}
5617
5736
  */
5618
- updateCellVersion(cell: string, updateCellVersionRequest: UpdateCellVersionRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
5737
+ updateCellVersion(cell: string, updateCellVersionRequest: UpdateCellVersionRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
5619
5738
  }
5620
5739
  /**
5621
5740
  * ControllerApi - axios parameter creator
@@ -6053,7 +6172,7 @@ declare class ControllerApi extends BaseAPI {
6053
6172
  * @param {*} [options] Override http request option.
6054
6173
  * @throws {RequiredError}
6055
6174
  */
6056
- addRobotController(cell: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
6175
+ addRobotController(cell: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
6057
6176
  /**
6058
6177
  * **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).
6059
6178
  * @summary Clear Robot Controllers
@@ -6062,7 +6181,7 @@ declare class ControllerApi extends BaseAPI {
6062
6181
  * @param {*} [options] Override http request option.
6063
6182
  * @throws {RequiredError}
6064
6183
  */
6065
- clearRobotControllers(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
6184
+ clearRobotControllers(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
6066
6185
  /**
6067
6186
  * **Required permissions:** `can_manage_controllers` - Create, update, or delete robot controllers ___ Delete a robot controller from the cell.
6068
6187
  * @summary Delete Robot Controller
@@ -6072,7 +6191,7 @@ declare class ControllerApi extends BaseAPI {
6072
6191
  * @param {*} [options] Override http request option.
6073
6192
  * @throws {RequiredError}
6074
6193
  */
6075
- deleteRobotController(cell: string, controller: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
6194
+ deleteRobotController(cell: string, controller: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
6076
6195
  /**
6077
6196
  * **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.
6078
6197
  * @summary Description
@@ -6081,7 +6200,7 @@ declare class ControllerApi extends BaseAPI {
6081
6200
  * @param {*} [options] Override http request option.
6082
6201
  * @throws {RequiredError}
6083
6202
  */
6084
- getControllerDescription(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ControllerDescription, any>>;
6203
+ getControllerDescription(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ControllerDescription, any, {}>>;
6085
6204
  /**
6086
6205
  * **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.
6087
6206
  * @summary Coordinate System
@@ -6092,7 +6211,7 @@ declare class ControllerApi extends BaseAPI {
6092
6211
  * @param {*} [options] Override http request option.
6093
6212
  * @throws {RequiredError}
6094
6213
  */
6095
- getCoordinateSystem(cell: string, controller: string, coordinateSystem: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem, any>>;
6214
+ getCoordinateSystem(cell: string, controller: string, coordinateSystem: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<CoordinateSystem, any, {}>>;
6096
6215
  /**
6097
6216
  * **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ Get the current state of a robot controller.
6098
6217
  * @summary State
@@ -6101,7 +6220,7 @@ declare class ControllerApi extends BaseAPI {
6101
6220
  * @param {*} [options] Override http request option.
6102
6221
  * @throws {RequiredError}
6103
6222
  */
6104
- getCurrentRobotControllerState(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotControllerState, any>>;
6223
+ getCurrentRobotControllerState(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<RobotControllerState, any, {}>>;
6105
6224
  /**
6106
6225
  * **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ Get the configuration for a robot controller.
6107
6226
  * @summary Robot Controller
@@ -6110,7 +6229,7 @@ declare class ControllerApi extends BaseAPI {
6110
6229
  * @param {*} [options] Override http request option.
6111
6230
  * @throws {RequiredError}
6112
6231
  */
6113
- getRobotController(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotController, any>>;
6232
+ getRobotController(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<RobotController, any, {}>>;
6114
6233
  /**
6115
6234
  * **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.
6116
6235
  * @summary Virtual Controller Configuration
@@ -6119,7 +6238,7 @@ declare class ControllerApi extends BaseAPI {
6119
6238
  * @param {*} [options] Override http request option.
6120
6239
  * @throws {RequiredError}
6121
6240
  */
6122
- getVirtualControllerConfiguration(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<VirtualRobotConfiguration, any>>;
6241
+ getVirtualControllerConfiguration(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<VirtualRobotConfiguration, any, {}>>;
6123
6242
  /**
6124
6243
  * **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.
6125
6244
  * @summary List Coordinate Systems
@@ -6129,7 +6248,7 @@ declare class ControllerApi extends BaseAPI {
6129
6248
  * @param {*} [options] Override http request option.
6130
6249
  * @throws {RequiredError}
6131
6250
  */
6132
- listCoordinateSystems(cell: string, controller: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem[], any>>;
6251
+ listCoordinateSystems(cell: string, controller: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<CoordinateSystem[], any, {}>>;
6133
6252
  /**
6134
6253
  * **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ List the names of all deployed robot controllers.
6135
6254
  * @summary List Robot Controllers
@@ -6137,7 +6256,7 @@ declare class ControllerApi extends BaseAPI {
6137
6256
  * @param {*} [options] Override http request option.
6138
6257
  * @throws {RequiredError}
6139
6258
  */
6140
- listRobotControllers(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
6259
+ listRobotControllers(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string[], any, {}>>;
6141
6260
  /**
6142
6261
  * **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.
6143
6262
  * @summary Set Default Mode
@@ -6147,7 +6266,7 @@ declare class ControllerApi extends BaseAPI {
6147
6266
  * @param {*} [options] Override http request option.
6148
6267
  * @throws {RequiredError}
6149
6268
  */
6150
- setDefaultMode(cell: string, controller: string, mode: SettableRobotSystemMode, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
6269
+ setDefaultMode(cell: string, controller: string, mode: SettableRobotSystemMode, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
6151
6270
  /**
6152
6271
  * **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.
6153
6272
  * @summary Stream Free Drive
@@ -6157,7 +6276,7 @@ declare class ControllerApi extends BaseAPI {
6157
6276
  * @param {*} [options] Override http request option.
6158
6277
  * @throws {RequiredError}
6159
6278
  */
6160
- streamFreeDrive(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotControllerState, any>>;
6279
+ streamFreeDrive(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<RobotControllerState, any, {}>>;
6161
6280
  /**
6162
6281
  * **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.
6163
6282
  * @summary Stream State
@@ -6168,7 +6287,7 @@ declare class ControllerApi extends BaseAPI {
6168
6287
  * @param {*} [options] Override http request option.
6169
6288
  * @throws {RequiredError}
6170
6289
  */
6171
- streamRobotControllerState(cell: string, controller: string, responseRate?: number, addControllerTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotControllerState, any>>;
6290
+ streamRobotControllerState(cell: string, controller: string, responseRate?: number, addControllerTimeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<RobotControllerState, any, {}>>;
6172
6291
  /**
6173
6292
  * **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).
6174
6293
  * @summary Update Robot Controller
@@ -6179,7 +6298,7 @@ declare class ControllerApi extends BaseAPI {
6179
6298
  * @param {*} [options] Override http request option.
6180
6299
  * @throws {RequiredError}
6181
6300
  */
6182
- updateRobotController(cell: string, controller: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
6301
+ updateRobotController(cell: string, controller: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
6183
6302
  }
6184
6303
  /**
6185
6304
  * ControllerInputsOutputsApi - axios parameter creator
@@ -6371,7 +6490,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
6371
6490
  * @param {*} [options] Override http request option.
6372
6491
  * @throws {RequiredError}
6373
6492
  */
6374
- listIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IODescription[], any>>;
6493
+ listIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<IODescription[], any, {}>>;
6375
6494
  /**
6376
6495
  * **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).
6377
6496
  * @summary Get Input/Output Values
@@ -6381,7 +6500,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
6381
6500
  * @param {*} [options] Override http request option.
6382
6501
  * @throws {RequiredError}
6383
6502
  */
6384
- listIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IOValue[], any>>;
6503
+ listIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<IOValue[], any, {}>>;
6385
6504
  /**
6386
6505
  * **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.
6387
6506
  * @summary Set Output Values
@@ -6391,7 +6510,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
6391
6510
  * @param {*} [options] Override http request option.
6392
6511
  * @throws {RequiredError}
6393
6512
  */
6394
- setOutputValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
6513
+ setOutputValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
6395
6514
  /**
6396
6515
  * **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.
6397
6516
  * @summary Stream Input/Output Values
@@ -6401,7 +6520,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
6401
6520
  * @param {*} [options] Override http request option.
6402
6521
  * @throws {RequiredError}
6403
6522
  */
6404
- streamIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<StreamIOValuesResponse, any>>;
6523
+ streamIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<StreamIOValuesResponse, any, {}>>;
6405
6524
  /**
6406
6525
  * **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 ```
6407
6526
  * @summary Wait For
@@ -6411,7 +6530,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
6411
6530
  * @param {*} [options] Override http request option.
6412
6531
  * @throws {RequiredError}
6413
6532
  */
6414
- waitForIOEvent(cell: string, controller: string, waitForIOEventRequest: WaitForIOEventRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<boolean, any>>;
6533
+ waitForIOEvent(cell: string, controller: string, waitForIOEventRequest: WaitForIOEventRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<boolean, any, {}>>;
6415
6534
  }
6416
6535
  /**
6417
6536
  * JoggingApi - axios parameter creator
@@ -6471,7 +6590,7 @@ declare class JoggingApi extends BaseAPI {
6471
6590
  * @param {*} [options] Override http request option.
6472
6591
  * @throws {RequiredError}
6473
6592
  */
6474
- executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ExecuteJoggingResponse, any>>;
6593
+ executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ExecuteJoggingResponse, any, {}>>;
6475
6594
  }
6476
6595
  /**
6477
6596
  * KinematicsApi - axios parameter creator
@@ -6495,6 +6614,15 @@ declare const KinematicsApiAxiosParamCreator: (configuration?: Configuration) =>
6495
6614
  * @throws {RequiredError}
6496
6615
  */
6497
6616
  inverseKinematics: (cell: string, inverseKinematicsRequest: InverseKinematicsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6617
+ /**
6618
+ * **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()) ```
6619
+ * @summary Project joint position to direction constraint
6620
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
6621
+ * @param {ProjectJointPositionDirectionConstraintRequest} projectJointPositionDirectionConstraintRequest
6622
+ * @param {*} [options] Override http request option.
6623
+ * @throws {RequiredError}
6624
+ */
6625
+ projectJointPositionDirectionConstraint: (cell: string, projectJointPositionDirectionConstraintRequest: ProjectJointPositionDirectionConstraintRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6498
6626
  };
6499
6627
  /**
6500
6628
  * KinematicsApi - functional programming interface
@@ -6518,6 +6646,15 @@ declare const KinematicsApiFp: (configuration?: Configuration) => {
6518
6646
  * @throws {RequiredError}
6519
6647
  */
6520
6648
  inverseKinematics(cell: string, inverseKinematicsRequest: InverseKinematicsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InverseKinematicsResponse>>;
6649
+ /**
6650
+ * **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()) ```
6651
+ * @summary Project joint position to direction constraint
6652
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
6653
+ * @param {ProjectJointPositionDirectionConstraintRequest} projectJointPositionDirectionConstraintRequest
6654
+ * @param {*} [options] Override http request option.
6655
+ * @throws {RequiredError}
6656
+ */
6657
+ projectJointPositionDirectionConstraint(cell: string, projectJointPositionDirectionConstraintRequest: ProjectJointPositionDirectionConstraintRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProjectJointPositionDirectionConstraintResponse>>;
6521
6658
  };
6522
6659
  /**
6523
6660
  * KinematicsApi - factory interface
@@ -6541,6 +6678,15 @@ declare const KinematicsApiFactory: (configuration?: Configuration, basePath?: s
6541
6678
  * @throws {RequiredError}
6542
6679
  */
6543
6680
  inverseKinematics(cell: string, inverseKinematicsRequest: InverseKinematicsRequest, options?: RawAxiosRequestConfig): AxiosPromise<InverseKinematicsResponse>;
6681
+ /**
6682
+ * **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()) ```
6683
+ * @summary Project joint position to direction constraint
6684
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
6685
+ * @param {ProjectJointPositionDirectionConstraintRequest} projectJointPositionDirectionConstraintRequest
6686
+ * @param {*} [options] Override http request option.
6687
+ * @throws {RequiredError}
6688
+ */
6689
+ projectJointPositionDirectionConstraint(cell: string, projectJointPositionDirectionConstraintRequest: ProjectJointPositionDirectionConstraintRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProjectJointPositionDirectionConstraintResponse>;
6544
6690
  };
6545
6691
  /**
6546
6692
  * KinematicsApi - object-oriented interface
@@ -6554,7 +6700,7 @@ declare class KinematicsApi extends BaseAPI {
6554
6700
  * @param {*} [options] Override http request option.
6555
6701
  * @throws {RequiredError}
6556
6702
  */
6557
- forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ForwardKinematicsResponse, any>>;
6703
+ forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ForwardKinematicsResponse, any, {}>>;
6558
6704
  /**
6559
6705
  * **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the reachable joint positions for a list of given poses.
6560
6706
  * @summary Inverse kinematics
@@ -6563,7 +6709,16 @@ declare class KinematicsApi extends BaseAPI {
6563
6709
  * @param {*} [options] Override http request option.
6564
6710
  * @throws {RequiredError}
6565
6711
  */
6566
- inverseKinematics(cell: string, inverseKinematicsRequest: InverseKinematicsRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<InverseKinematicsResponse, any>>;
6712
+ inverseKinematics(cell: string, inverseKinematicsRequest: InverseKinematicsRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<InverseKinematicsResponse, any, {}>>;
6713
+ /**
6714
+ * **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()) ```
6715
+ * @summary Project joint position to direction constraint
6716
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
6717
+ * @param {ProjectJointPositionDirectionConstraintRequest} projectJointPositionDirectionConstraintRequest
6718
+ * @param {*} [options] Override http request option.
6719
+ * @throws {RequiredError}
6720
+ */
6721
+ projectJointPositionDirectionConstraint(cell: string, projectJointPositionDirectionConstraintRequest: ProjectJointPositionDirectionConstraintRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ProjectJointPositionDirectionConstraintResponse, any, {}>>;
6567
6722
  }
6568
6723
  /**
6569
6724
  * LicenseApi - axios parameter creator
@@ -6678,28 +6833,28 @@ declare class LicenseApi extends BaseAPI {
6678
6833
  * @param {*} [options] Override http request option.
6679
6834
  * @throws {RequiredError}
6680
6835
  */
6681
- activateLicense(activateLicenseRequest: ActivateLicenseRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<License, any>>;
6836
+ activateLicense(activateLicenseRequest: ActivateLicenseRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<License, any, {}>>;
6682
6837
  /**
6683
6838
  * **Required permissions:** `can_manage_license` - Manage license configuration ___ Deactivates active license.
6684
6839
  * @summary Deactivate license
6685
6840
  * @param {*} [options] Override http request option.
6686
6841
  * @throws {RequiredError}
6687
6842
  */
6688
- deactivateLicense(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
6843
+ deactivateLicense(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
6689
6844
  /**
6690
6845
  * **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.
6691
6846
  * @summary Get license
6692
6847
  * @param {*} [options] Override http request option.
6693
6848
  * @throws {RequiredError}
6694
6849
  */
6695
- getLicense(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<License, any>>;
6850
+ getLicense(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<License, any, {}>>;
6696
6851
  /**
6697
6852
  * **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.
6698
6853
  * @summary Get license status
6699
6854
  * @param {*} [options] Override http request option.
6700
6855
  * @throws {RequiredError}
6701
6856
  */
6702
- getLicenseStatus(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<LicenseStatus, any>>;
6857
+ getLicenseStatus(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<LicenseStatus, any, {}>>;
6703
6858
  }
6704
6859
  /**
6705
6860
  * MotionGroupApi - axios parameter creator
@@ -6829,7 +6984,7 @@ declare class MotionGroupApi extends BaseAPI {
6829
6984
  * @param {*} [options] Override http request option.
6830
6985
  * @throws {RequiredError}
6831
6986
  */
6832
- getCurrentMotionGroupState(cell: string, controller: string, motionGroup: string, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupState, any>>;
6987
+ getCurrentMotionGroupState(cell: string, controller: string, motionGroup: string, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MotionGroupState, any, {}>>;
6833
6988
  /**
6834
6989
  * **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.
6835
6990
  * @summary Description
@@ -6839,7 +6994,7 @@ declare class MotionGroupApi extends BaseAPI {
6839
6994
  * @param {*} [options] Override http request option.
6840
6995
  * @throws {RequiredError}
6841
6996
  */
6842
- getMotionGroupDescription(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupDescription, any>>;
6997
+ getMotionGroupDescription(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MotionGroupDescription, any, {}>>;
6843
6998
  /**
6844
6999
  * **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.
6845
7000
  * @summary Stream State
@@ -6851,7 +7006,7 @@ declare class MotionGroupApi extends BaseAPI {
6851
7006
  * @param {*} [options] Override http request option.
6852
7007
  * @throws {RequiredError}
6853
7008
  */
6854
- streamMotionGroupState(cell: string, controller: string, motionGroup: string, responseRate?: number, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupState, any>>;
7009
+ streamMotionGroupState(cell: string, controller: string, motionGroup: string, responseRate?: number, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MotionGroupState, any, {}>>;
6855
7010
  }
6856
7011
  /**
6857
7012
  * MotionGroupModelsApi - axios parameter creator
@@ -7000,9 +7155,9 @@ declare class MotionGroupModelsApi extends BaseAPI {
7000
7155
  * @param {*} [options] Override http request option.
7001
7156
  * @throws {RequiredError}
7002
7157
  */
7003
- getMotionGroupCollisionModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
7158
+ getMotionGroupCollisionModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<{
7004
7159
  [key: string]: Collider;
7005
- }[], any>>;
7160
+ }[], any, {}>>;
7006
7161
  /**
7007
7162
  * **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.
7008
7163
  * @summary Download GLB Model
@@ -7010,7 +7165,7 @@ declare class MotionGroupModelsApi extends BaseAPI {
7010
7165
  * @param {*} [options] Override http request option.
7011
7166
  * @throws {RequiredError}
7012
7167
  */
7013
- getMotionGroupGlbModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<File, any>>;
7168
+ getMotionGroupGlbModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<File, any, {}>>;
7014
7169
  /**
7015
7170
  * **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.
7016
7171
  * @summary Get Kinematics
@@ -7018,14 +7173,14 @@ declare class MotionGroupModelsApi extends BaseAPI {
7018
7173
  * @param {*} [options] Override http request option.
7019
7174
  * @throws {RequiredError}
7020
7175
  */
7021
- getMotionGroupKinematicModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<KinematicModel, any>>;
7176
+ getMotionGroupKinematicModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<KinematicModel, any, {}>>;
7022
7177
  /**
7023
7178
  * **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the list of supported motion group models.
7024
7179
  * @summary Motion Group Models
7025
7180
  * @param {*} [options] Override http request option.
7026
7181
  * @throws {RequiredError}
7027
7182
  */
7028
- getMotionGroupModels(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
7183
+ getMotionGroupModels(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string[], any, {}>>;
7029
7184
  /**
7030
7185
  * **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.
7031
7186
  * @summary Download USD Model
@@ -7033,7 +7188,7 @@ declare class MotionGroupModelsApi extends BaseAPI {
7033
7188
  * @param {*} [options] Override http request option.
7034
7189
  * @throws {RequiredError}
7035
7190
  */
7036
- getMotionGroupUsdModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<File, any>>;
7191
+ getMotionGroupUsdModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<File, any, {}>>;
7037
7192
  }
7038
7193
  /**
7039
7194
  * NOVACloudApi - axios parameter creator
@@ -7134,7 +7289,7 @@ declare class NOVACloudApi extends BaseAPI {
7134
7289
  * @param {*} [options] Override http request option.
7135
7290
  * @throws {RequiredError}
7136
7291
  */
7137
- connectToNovaCloud(completionTimeout?: number, cloudConnectionRequest?: CloudConnectionRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CloudRegistrationSuccessResponse, any>>;
7292
+ connectToNovaCloud(completionTimeout?: number, cloudConnectionRequest?: CloudConnectionRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<CloudRegistrationSuccessResponse, any, {}>>;
7138
7293
  /**
7139
7294
  * **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.
7140
7295
  * @summary Disconnect from NOVA Cloud
@@ -7142,14 +7297,14 @@ declare class NOVACloudApi extends BaseAPI {
7142
7297
  * @param {*} [options] Override http request option.
7143
7298
  * @throws {RequiredError}
7144
7299
  */
7145
- disconnectFromNovaCloud(completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CloudDisconnectionStatusDisconnected, any>>;
7300
+ disconnectFromNovaCloud(completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<CloudDisconnectionStatusDisconnected, any, {}>>;
7146
7301
  /**
7147
7302
  * **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection config for this instance.
7148
7303
  * @summary Get Connection Config
7149
7304
  * @param {*} [options] Override http request option.
7150
7305
  * @throws {RequiredError}
7151
7306
  */
7152
- getNovaCloudConfig(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CloudConfigStatus, any>>;
7307
+ getNovaCloudConfig(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<CloudConfigStatus, any, {}>>;
7153
7308
  }
7154
7309
  /**
7155
7310
  * ProgramApi - axios parameter creator
@@ -7286,7 +7441,7 @@ declare class ProgramApi extends BaseAPI {
7286
7441
  * @param {*} [options] Override http request option.
7287
7442
  * @throws {RequiredError}
7288
7443
  */
7289
- getProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Program, any>>;
7444
+ getProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<Program, any, {}>>;
7290
7445
  /**
7291
7446
  * **Required permissions:** `can_operate_programs` - Execute and monitor programs ___ <!-- theme: danger --> > **Experimental** List details of all existing programs.
7292
7447
  * @summary List programs
@@ -7294,7 +7449,7 @@ declare class ProgramApi extends BaseAPI {
7294
7449
  * @param {*} [options] Override http request option.
7295
7450
  * @throws {RequiredError}
7296
7451
  */
7297
- listPrograms(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Program[], any>>;
7452
+ listPrograms(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<Program[], any, {}>>;
7298
7453
  /**
7299
7454
  * **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.
7300
7455
  * @summary Start the program
@@ -7304,7 +7459,7 @@ declare class ProgramApi extends BaseAPI {
7304
7459
  * @param {*} [options] Override http request option.
7305
7460
  * @throws {RequiredError}
7306
7461
  */
7307
- startProgram(cell: string, program: string, programStartRequest: ProgramStartRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProgramRun, any>>;
7462
+ startProgram(cell: string, program: string, programStartRequest: ProgramStartRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ProgramRun, any, {}>>;
7308
7463
  /**
7309
7464
  * **Required permissions:** `can_operate_programs` - Execute and monitor programs ___ <!-- theme: danger --> > **Experimental** Stop a specific program run.
7310
7465
  * @summary Stop program run
@@ -7313,7 +7468,7 @@ declare class ProgramApi extends BaseAPI {
7313
7468
  * @param {*} [options] Override http request option.
7314
7469
  * @throws {RequiredError}
7315
7470
  */
7316
- stopProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
7471
+ stopProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
7317
7472
  }
7318
7473
  /**
7319
7474
  * RobotConfigurationsApi - axios parameter creator
@@ -7386,14 +7541,62 @@ declare class RobotConfigurationsApi extends BaseAPI {
7386
7541
  * @param {*} [options] Override http request option.
7387
7542
  * @throws {RequiredError}
7388
7543
  */
7389
- getControllerConfigFromArpScan(robotControllerConfigurationRequest: RobotControllerConfigurationRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotController[], any>>;
7544
+ getControllerConfigFromArpScan(robotControllerConfigurationRequest: RobotControllerConfigurationRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<RobotController[], any, {}>>;
7390
7545
  /**
7391
7546
  * **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.
7392
7547
  * @summary List Robot Configurations
7393
7548
  * @param {*} [options] Override http request option.
7394
7549
  * @throws {RequiredError}
7395
7550
  */
7396
- getRobotConfigurations(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
7551
+ getRobotConfigurations(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string[], any, {}>>;
7552
+ }
7553
+ /**
7554
+ * SessionApi - axios parameter creator
7555
+ */
7556
+ declare const SessionApiAxiosParamCreator: (configuration?: Configuration) => {
7557
+ /**
7558
+ * **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.
7559
+ * @summary Get current user session information
7560
+ * @param {*} [options] Override http request option.
7561
+ * @throws {RequiredError}
7562
+ */
7563
+ getSession: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7564
+ };
7565
+ /**
7566
+ * SessionApi - functional programming interface
7567
+ */
7568
+ declare const SessionApiFp: (configuration?: Configuration) => {
7569
+ /**
7570
+ * **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.
7571
+ * @summary Get current user session information
7572
+ * @param {*} [options] Override http request option.
7573
+ * @throws {RequiredError}
7574
+ */
7575
+ getSession(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SessionResponse>>;
7576
+ };
7577
+ /**
7578
+ * SessionApi - factory interface
7579
+ */
7580
+ declare const SessionApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
7581
+ /**
7582
+ * **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.
7583
+ * @summary Get current user session information
7584
+ * @param {*} [options] Override http request option.
7585
+ * @throws {RequiredError}
7586
+ */
7587
+ getSession(options?: RawAxiosRequestConfig): AxiosPromise<SessionResponse>;
7588
+ };
7589
+ /**
7590
+ * SessionApi - object-oriented interface
7591
+ */
7592
+ declare class SessionApi extends BaseAPI {
7593
+ /**
7594
+ * **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.
7595
+ * @summary Get current user session information
7596
+ * @param {*} [options] Override http request option.
7597
+ * @throws {RequiredError}
7598
+ */
7599
+ getSession(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<SessionResponse, any, {}>>;
7397
7600
  }
7398
7601
  /**
7399
7602
  * StoreCollisionComponentsApi - axios parameter creator
@@ -7866,7 +8069,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
7866
8069
  * @param {*} [options] Override http request option.
7867
8070
  * @throws {RequiredError}
7868
8071
  */
7869
- deleteStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8072
+ deleteStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
7870
8073
  /**
7871
8074
  * **Required permissions:** `can_write_collision_world` - Write collision models and scenes ___ Deletes the stored link chain. <!-- theme: danger --> > This will delete persistently stored data.
7872
8075
  * @summary Delete Link Chain
@@ -7875,7 +8078,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
7875
8078
  * @param {*} [options] Override http request option.
7876
8079
  * @throws {RequiredError}
7877
8080
  */
7878
- deleteStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8081
+ deleteStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
7879
8082
  /**
7880
8083
  * **Required permissions:** `can_write_collision_world` - Write collision models and scenes ___ Deletes the stored tool. <!-- theme: danger --> > This will delete persistently stored data.
7881
8084
  * @summary Delete Tool
@@ -7884,7 +8087,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
7884
8087
  * @param {*} [options] Override http request option.
7885
8088
  * @throws {RequiredError}
7886
8089
  */
7887
- deleteStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8090
+ deleteStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
7888
8091
  /**
7889
8092
  * **Required permissions:** `can_read_collision_world` - Read collision models and scenes ___ Returns the collider.
7890
8093
  * @summary Get Collider
@@ -7893,7 +8096,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
7893
8096
  * @param {*} [options] Override http request option.
7894
8097
  * @throws {RequiredError}
7895
8098
  */
7896
- getStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Collider, any>>;
8099
+ getStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<Collider, any, {}>>;
7897
8100
  /**
7898
8101
  * **Required permissions:** `can_read_collision_world` - Read collision models and scenes ___ Returns the collision link chain.
7899
8102
  * @summary Get Link Chain
@@ -7902,9 +8105,9 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
7902
8105
  * @param {*} [options] Override http request option.
7903
8106
  * @throws {RequiredError}
7904
8107
  */
7905
- getStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
8108
+ getStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<{
7906
8109
  [key: string]: Collider;
7907
- }[], any>>;
8110
+ }[], any, {}>>;
7908
8111
  /**
7909
8112
  * **Required permissions:** `can_read_collision_world` - Read collision models and scenes ___ Returns the stored tool.
7910
8113
  * @summary Get Tool
@@ -7913,9 +8116,9 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
7913
8116
  * @param {*} [options] Override http request option.
7914
8117
  * @throws {RequiredError}
7915
8118
  */
7916
- getStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
8119
+ getStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<{
7917
8120
  [key: string]: Collider;
7918
- }, any>>;
8121
+ }, any, {}>>;
7919
8122
  /**
7920
8123
  * **Required permissions:** `can_read_collision_world` - Read collision models and scenes ___ Returns the stored link chains.
7921
8124
  * @summary List Link Chains
@@ -7923,11 +8126,11 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
7923
8126
  * @param {*} [options] Override http request option.
7924
8127
  * @throws {RequiredError}
7925
8128
  */
7926
- listCollisionLinkChains(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
8129
+ listCollisionLinkChains(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<{
7927
8130
  [key: string]: {
7928
8131
  [key: string]: Collider;
7929
8132
  }[];
7930
- }, any>>;
8133
+ }, any, {}>>;
7931
8134
  /**
7932
8135
  * **Required permissions:** `can_read_collision_world` - Read collision models and scenes ___ Returns a list of keys for stored link chains.
7933
8136
  * @summary List Link Chain Keys
@@ -7935,7 +8138,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
7935
8138
  * @param {*} [options] Override http request option.
7936
8139
  * @throws {RequiredError}
7937
8140
  */
7938
- listCollisionLinkChainsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
8141
+ listCollisionLinkChainsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string[], any, {}>>;
7939
8142
  /**
7940
8143
  * **Required permissions:** `can_read_collision_world` - Read collision models and scenes ___ Returns all stored colliders.
7941
8144
  * @summary List Colliders
@@ -7943,9 +8146,9 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
7943
8146
  * @param {*} [options] Override http request option.
7944
8147
  * @throws {RequiredError}
7945
8148
  */
7946
- listStoredColliders(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
8149
+ listStoredColliders(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<{
7947
8150
  [key: string]: Collider;
7948
- }, any>>;
8151
+ }, any, {}>>;
7949
8152
  /**
7950
8153
  * **Required permissions:** `can_read_collision_world` - Read collision models and scenes ___ Returns a list of keys for stored colliders.
7951
8154
  * @summary List Collider Keys
@@ -7953,7 +8156,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
7953
8156
  * @param {*} [options] Override http request option.
7954
8157
  * @throws {RequiredError}
7955
8158
  */
7956
- listStoredCollidersKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
8159
+ listStoredCollidersKeys(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string[], any, {}>>;
7957
8160
  /**
7958
8161
  * **Required permissions:** `can_read_collision_world` - Read collision models and scenes ___ Returns the list of stored tools.
7959
8162
  * @summary List Tools
@@ -7961,11 +8164,11 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
7961
8164
  * @param {*} [options] Override http request option.
7962
8165
  * @throws {RequiredError}
7963
8166
  */
7964
- listStoredCollisionTools(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
8167
+ listStoredCollisionTools(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<{
7965
8168
  [key: string]: {
7966
8169
  [key: string]: Collider;
7967
8170
  };
7968
- }, any>>;
8171
+ }, any, {}>>;
7969
8172
  /**
7970
8173
  * **Required permissions:** `can_read_collision_world` - Read collision models and scenes ___ Returns a list of keys for stored tools.
7971
8174
  * @summary List Tool Keys
@@ -7973,7 +8176,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
7973
8176
  * @param {*} [options] Override http request option.
7974
8177
  * @throws {RequiredError}
7975
8178
  */
7976
- listStoredCollisionToolsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
8179
+ listStoredCollisionToolsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string[], any, {}>>;
7977
8180
  /**
7978
8181
  * **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.
7979
8182
  * @summary Store Collider
@@ -7983,7 +8186,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
7983
8186
  * @param {*} [options] Override http request option.
7984
8187
  * @throws {RequiredError}
7985
8188
  */
7986
- storeCollider(cell: string, collider: string, collider2: Collider, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Collider, any>>;
8189
+ storeCollider(cell: string, collider: string, collider2: Collider, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<Collider, any, {}>>;
7987
8190
  /**
7988
8191
  * **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.
7989
8192
  * @summary Store Link Chain
@@ -7995,9 +8198,9 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
7995
8198
  */
7996
8199
  storeCollisionLinkChain(cell: string, linkChain: string, collider: Array<{
7997
8200
  [key: string]: Collider;
7998
- }>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
8201
+ }>, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<{
7999
8202
  [key: string]: Collider;
8000
- }[], any>>;
8203
+ }[], any, {}>>;
8001
8204
  /**
8002
8205
  * **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.
8003
8206
  * @summary Store Tool
@@ -8009,9 +8212,9 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
8009
8212
  */
8010
8213
  storeCollisionTool(cell: string, tool: string, requestBody: {
8011
8214
  [key: string]: Collider;
8012
- }, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
8215
+ }, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<{
8013
8216
  [key: string]: Collider;
8014
- }, any>>;
8217
+ }, any, {}>>;
8015
8218
  }
8016
8219
  /**
8017
8220
  * StoreCollisionSetupsApi - axios parameter creator
@@ -8176,7 +8379,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
8176
8379
  * @param {*} [options] Override http request option.
8177
8380
  * @throws {RequiredError}
8178
8381
  */
8179
- deleteStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8382
+ deleteStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
8180
8383
  /**
8181
8384
  * **Required permissions:** `can_read_collision_world` - Read collision models and scenes ___ Returns the stored collision setup.
8182
8385
  * @summary Get Collision Setup
@@ -8185,7 +8388,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
8185
8388
  * @param {*} [options] Override http request option.
8186
8389
  * @throws {RequiredError}
8187
8390
  */
8188
- getStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CollisionSetup, any>>;
8391
+ getStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<CollisionSetup, any, {}>>;
8189
8392
  /**
8190
8393
  * **Required permissions:** `can_read_collision_world` - Read collision models and scenes ___ Returns a list of stored collision setups.
8191
8394
  * @summary List Collision Setups
@@ -8193,9 +8396,9 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
8193
8396
  * @param {*} [options] Override http request option.
8194
8397
  * @throws {RequiredError}
8195
8398
  */
8196
- listStoredCollisionSetups(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
8399
+ listStoredCollisionSetups(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<{
8197
8400
  [key: string]: CollisionSetup;
8198
- }, any>>;
8401
+ }, any, {}>>;
8199
8402
  /**
8200
8403
  * **Required permissions:** `can_read_collision_world` - Read collision models and scenes ___ Returns a list of keys for stored collision setups.
8201
8404
  * @summary List Collision Setup Keys
@@ -8203,7 +8406,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
8203
8406
  * @param {*} [options] Override http request option.
8204
8407
  * @throws {RequiredError}
8205
8408
  */
8206
- listStoredCollisionSetupsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
8409
+ listStoredCollisionSetupsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string[], any, {}>>;
8207
8410
  /**
8208
8411
  * **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.
8209
8412
  * @summary Store Collision Setup
@@ -8213,7 +8416,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
8213
8416
  * @param {*} [options] Override http request option.
8214
8417
  * @throws {RequiredError}
8215
8418
  */
8216
- storeCollisionSetup(cell: string, setup: string, collisionSetup: CollisionSetup, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CollisionSetup, any>>;
8419
+ storeCollisionSetup(cell: string, setup: string, collisionSetup: CollisionSetup, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<CollisionSetup, any, {}>>;
8217
8420
  }
8218
8421
  /**
8219
8422
  * StoreObjectApi - axios parameter creator
@@ -8409,7 +8612,7 @@ declare class StoreObjectApi extends BaseAPI {
8409
8612
  * @param {*} [options] Override http request option.
8410
8613
  * @throws {RequiredError}
8411
8614
  */
8412
- clearAllObjects(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8615
+ clearAllObjects(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
8413
8616
  /**
8414
8617
  * **Required permissions:** `can_write_objects` - Write stored objects ___ Delete an object <!-- theme: danger --> > This will delete persistently stored data.
8415
8618
  * @summary Delete Object
@@ -8418,7 +8621,7 @@ declare class StoreObjectApi extends BaseAPI {
8418
8621
  * @param {*} [options] Override http request option.
8419
8622
  * @throws {RequiredError}
8420
8623
  */
8421
- deleteObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8624
+ deleteObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
8422
8625
  /**
8423
8626
  * **Required permissions:** `can_read_objects` - Read stored objects ___ Returns content and metadata of a stored object.
8424
8627
  * @summary Get Object
@@ -8427,7 +8630,7 @@ declare class StoreObjectApi extends BaseAPI {
8427
8630
  * @param {*} [options] Override http request option.
8428
8631
  * @throws {RequiredError}
8429
8632
  */
8430
- getObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<File, any>>;
8633
+ getObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<File, any, {}>>;
8431
8634
  /**
8432
8635
  * **Required permissions:** `can_read_objects` - Read stored objects ___ Returns metadata. Object content is not returned.
8433
8636
  * @summary Get Object Metadata
@@ -8436,7 +8639,7 @@ declare class StoreObjectApi extends BaseAPI {
8436
8639
  * @param {*} [options] Override http request option.
8437
8640
  * @throws {RequiredError}
8438
8641
  */
8439
- getObjectMetadata(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8642
+ getObjectMetadata(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
8440
8643
  /**
8441
8644
  * **Required permissions:** `can_read_objects` - Read stored objects ___ List the keys for all objects.
8442
8645
  * @summary List all Object Keys
@@ -8444,7 +8647,7 @@ declare class StoreObjectApi extends BaseAPI {
8444
8647
  * @param {*} [options] Override http request option.
8445
8648
  * @throws {RequiredError}
8446
8649
  */
8447
- listAllObjectKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
8650
+ listAllObjectKeys(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string[], any, {}>>;
8448
8651
  /**
8449
8652
  * **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.
8450
8653
  * @summary Store Object
@@ -8457,7 +8660,7 @@ declare class StoreObjectApi extends BaseAPI {
8457
8660
  */
8458
8661
  storeObject(cell: string, key: string, xMetadata?: {
8459
8662
  [key: string]: string;
8460
- }, anyValue?: any, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8663
+ }, anyValue?: any, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
8461
8664
  }
8462
8665
  /**
8463
8666
  * SystemApi - axios parameter creator
@@ -8776,7 +8979,7 @@ declare class SystemApi extends BaseAPI {
8776
8979
  */
8777
8980
  backupConfiguration(resources?: Array<string>, metadata?: {
8778
8981
  [key: string]: string;
8779
- }, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<File, any>>;
8982
+ }, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<File, any, {}>>;
8780
8983
  /**
8781
8984
  * **Required permissions:** `can_update_system` - Update system versions and services ___ Check if a more recent Wandelbots NOVA Version is available.
8782
8985
  * @summary Check update
@@ -8784,7 +8987,7 @@ declare class SystemApi extends BaseAPI {
8784
8987
  * @param {*} [options] Override http request option.
8785
8988
  * @throws {RequiredError}
8786
8989
  */
8787
- checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string, any>>;
8990
+ checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string, any, {}>>;
8788
8991
  /**
8789
8992
  * **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.
8790
8993
  * @summary Get ARP-Scan
@@ -8794,7 +8997,7 @@ declare class SystemApi extends BaseAPI {
8794
8997
  * @param {*} [options] Override http request option.
8795
8998
  * @throws {RequiredError}
8796
8999
  */
8797
- getArpScan(_interface?: string, cidr?: string, timeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<NetworkDevice[], any>>;
9000
+ getArpScan(_interface?: string, cidr?: string, timeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<NetworkDevice[], any, {}>>;
8798
9001
  /**
8799
9002
  * **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.
8800
9003
  * @summary Retrieve Backup Status
@@ -8802,49 +9005,49 @@ declare class SystemApi extends BaseAPI {
8802
9005
  * @param {*} [options] Override http request option.
8803
9006
  * @throws {RequiredError}
8804
9007
  */
8805
- getConfigurationBackupStatus(operationId: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ConfigurationArchiveStatus, any>>;
9008
+ getConfigurationBackupStatus(operationId: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ConfigurationArchiveStatus, any, {}>>;
8806
9009
  /**
8807
9010
  * **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.
8808
9011
  * @summary Download Diagnosis Package
8809
9012
  * @param {*} [options] Override http request option.
8810
9013
  * @throws {RequiredError}
8811
9014
  */
8812
- getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<File, any>>;
9015
+ getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<File, any, {}>>;
8813
9016
  /**
8814
9017
  * **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the network interfaces of the system.
8815
9018
  * @summary Network Interfaces
8816
9019
  * @param {*} [options] Override http request option.
8817
9020
  * @throws {RequiredError}
8818
9021
  */
8819
- getNetworkInterfaces(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<NetworkInterface[], any>>;
9022
+ getNetworkInterfaces(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<NetworkInterface[], any, {}>>;
8820
9023
  /**
8821
9024
  * **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current state of the network.
8822
9025
  * @summary Network State
8823
9026
  * @param {*} [options] Override http request option.
8824
9027
  * @throws {RequiredError}
8825
9028
  */
8826
- getNetworkState(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<NetworkState, any>>;
9029
+ getNetworkState(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<NetworkState, any, {}>>;
8827
9030
  /**
8828
9031
  * **Required permissions:** `can_access_system` - View system status and metadata ___ Get the status of all system services.
8829
9032
  * @summary Wandelbots NOVA status
8830
9033
  * @param {*} [options] Override http request option.
8831
9034
  * @throws {RequiredError}
8832
9035
  */
8833
- getSystemStatus(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ServiceStatus[], any>>;
9036
+ getSystemStatus(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ServiceStatus[], any, {}>>;
8834
9037
  /**
8835
9038
  * **Required permissions:** `can_access_system` - View system status and metadata ___ Get the current Wandelbots NOVA version.
8836
9039
  * @summary Wandelbots NOVA Version
8837
9040
  * @param {*} [options] Override http request option.
8838
9041
  * @throws {RequiredError}
8839
9042
  */
8840
- getSystemVersion(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string, any>>;
9043
+ getSystemVersion(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string, any, {}>>;
8841
9044
  /**
8842
9045
  * **Required permissions:** `can_backup_system` - Create system backups ___ Retrieves a list of all available configuration resources for backup purposes.
8843
9046
  * @summary List Configuration Resources
8844
9047
  * @param {*} [options] Override http request option.
8845
9048
  * @throws {RequiredError}
8846
9049
  */
8847
- listConfigurationResources(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ConfigurationResource[], any>>;
9050
+ listConfigurationResources(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ConfigurationResource[], any, {}>>;
8848
9051
  /**
8849
9052
  * **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.
8850
9053
  * @summary Restore Configuration Backup
@@ -8853,7 +9056,7 @@ declare class SystemApi extends BaseAPI {
8853
9056
  * @param {*} [options] Override http request option.
8854
9057
  * @throws {RequiredError}
8855
9058
  */
8856
- restoreConfiguration(body: File, resources?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
9059
+ restoreConfiguration(body: File, resources?: Array<string>, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
8857
9060
  /**
8858
9061
  * **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.
8859
9062
  * @summary Update Wandelbots NOVA version
@@ -8861,7 +9064,7 @@ declare class SystemApi extends BaseAPI {
8861
9064
  * @param {*} [options] Override http request option.
8862
9065
  * @throws {RequiredError}
8863
9066
  */
8864
- updateNovaVersion(updateNovaVersionRequest: UpdateNovaVersionRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
9067
+ updateNovaVersion(updateNovaVersionRequest: UpdateNovaVersionRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
8865
9068
  }
8866
9069
  /**
8867
9070
  * TrajectoryCachingApi - axios parameter creator
@@ -9035,7 +9238,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
9035
9238
  * @param {*} [options] Override http request option.
9036
9239
  * @throws {RequiredError}
9037
9240
  */
9038
- addTrajectory(cell: string, controller: string, addTrajectoryRequest: AddTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<AddTrajectoryResponse, any>>;
9241
+ addTrajectory(cell: string, controller: string, addTrajectoryRequest: AddTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<AddTrajectoryResponse, any, {}>>;
9039
9242
  /**
9040
9243
  * **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ Clear the trajectory cache.
9041
9244
  * @summary Clear Trajectories
@@ -9044,7 +9247,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
9044
9247
  * @param {*} [options] Override http request option.
9045
9248
  * @throws {RequiredError}
9046
9249
  */
9047
- clearTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
9250
+ clearTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
9048
9251
  /**
9049
9252
  * **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.
9050
9253
  * @summary Delete Trajectory
@@ -9054,7 +9257,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
9054
9257
  * @param {*} [options] Override http request option.
9055
9258
  * @throws {RequiredError}
9056
9259
  */
9057
- deleteTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
9260
+ deleteTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
9058
9261
  /**
9059
9262
  * **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.
9060
9263
  * @summary Get Trajectory
@@ -9064,7 +9267,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
9064
9267
  * @param {*} [options] Override http request option.
9065
9268
  * @throws {RequiredError}
9066
9269
  */
9067
- getTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<GetTrajectoryResponse, any>>;
9270
+ getTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<GetTrajectoryResponse, any, {}>>;
9068
9271
  /**
9069
9272
  * **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.
9070
9273
  * @summary List Trajectories
@@ -9073,7 +9276,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
9073
9276
  * @param {*} [options] Override http request option.
9074
9277
  * @throws {RequiredError}
9075
9278
  */
9076
- listTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ListTrajectoriesResponse, any>>;
9279
+ listTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ListTrajectoriesResponse, any, {}>>;
9077
9280
  }
9078
9281
  /**
9079
9282
  * TrajectoryExecutionApi - axios parameter creator
@@ -9133,7 +9336,7 @@ declare class TrajectoryExecutionApi extends BaseAPI {
9133
9336
  * @param {*} [options] Override http request option.
9134
9337
  * @throws {RequiredError}
9135
9338
  */
9136
- executeTrajectory(cell: string, controller: string, executeTrajectoryRequest: ExecuteTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ExecuteTrajectoryResponse, any>>;
9339
+ executeTrajectory(cell: string, controller: string, executeTrajectoryRequest: ExecuteTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ExecuteTrajectoryResponse, any, {}>>;
9137
9340
  }
9138
9341
  /**
9139
9342
  * TrajectoryPlanningApi - axios parameter creator
@@ -9270,7 +9473,7 @@ declare class TrajectoryPlanningApi extends BaseAPI {
9270
9473
  * @param {*} [options] Override http request option.
9271
9474
  * @throws {RequiredError}
9272
9475
  */
9273
- mergeTrajectories(cell: string, mergeTrajectoriesRequest: MergeTrajectoriesRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MergeTrajectoriesResponse, any>>;
9476
+ mergeTrajectories(cell: string, mergeTrajectoriesRequest: MergeTrajectoriesRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MergeTrajectoriesResponse, any, {}>>;
9274
9477
  /**
9275
9478
  * **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.
9276
9479
  * @summary Plan Collision-Free Trajectory
@@ -9279,7 +9482,7 @@ declare class TrajectoryPlanningApi extends BaseAPI {
9279
9482
  * @param {*} [options] Override http request option.
9280
9483
  * @throws {RequiredError}
9281
9484
  */
9282
- planCollisionFree(cell: string, planCollisionFreeRequest: PlanCollisionFreeRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<PlanCollisionFreeResponse, any>>;
9485
+ planCollisionFree(cell: string, planCollisionFreeRequest: PlanCollisionFreeRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<PlanCollisionFreeResponse, any, {}>>;
9283
9486
  /**
9284
9487
  * **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.
9285
9488
  * @summary Plan Trajectory
@@ -9288,7 +9491,7 @@ declare class TrajectoryPlanningApi extends BaseAPI {
9288
9491
  * @param {*} [options] Override http request option.
9289
9492
  * @throws {RequiredError}
9290
9493
  */
9291
- planTrajectory(cell: string, planTrajectoryRequest: PlanTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<PlanTrajectoryResponse, any>>;
9494
+ planTrajectory(cell: string, planTrajectoryRequest: PlanTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<PlanTrajectoryResponse, any, {}>>;
9292
9495
  /**
9293
9496
  * **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.
9294
9497
  * @summary Search Collision-Free Trajectories for Multiple Motion Groups
@@ -9297,7 +9500,7 @@ declare class TrajectoryPlanningApi extends BaseAPI {
9297
9500
  * @param {*} [options] Override http request option.
9298
9501
  * @throws {RequiredError}
9299
9502
  */
9300
- searchCollisionFreeMultiMotionGroup(cell: string, multiSearchCollisionFreeRequest: MultiSearchCollisionFreeRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MultiSearchCollisionFreeResponse, any>>;
9503
+ searchCollisionFreeMultiMotionGroup(cell: string, multiSearchCollisionFreeRequest: MultiSearchCollisionFreeRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MultiSearchCollisionFreeResponse, any, {}>>;
9301
9504
  }
9302
9505
  /**
9303
9506
  * VersionApi - axios parameter creator
@@ -9345,7 +9548,7 @@ declare class VersionApi extends BaseAPI {
9345
9548
  * @param {*} [options] Override http request option.
9346
9549
  * @throws {RequiredError}
9347
9550
  */
9348
- getApiVersion(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ApiVersion, any>>;
9551
+ getApiVersion(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ApiVersion, any, {}>>;
9349
9552
  }
9350
9553
  /**
9351
9554
  * VirtualControllerApi - axios parameter creator
@@ -9982,7 +10185,7 @@ declare class VirtualControllerApi extends BaseAPI {
9982
10185
  * @param {*} [options] Override http request option.
9983
10186
  * @throws {RequiredError}
9984
10187
  */
9985
- addVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, coordinateSystemData: CoordinateSystemData, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
10188
+ addVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, coordinateSystemData: CoordinateSystemData, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
9986
10189
  /**
9987
10190
  * **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.
9988
10191
  * @summary Add Motion Group
@@ -9992,7 +10195,7 @@ declare class VirtualControllerApi extends BaseAPI {
9992
10195
  * @param {*} [options] Override http request option.
9993
10196
  * @throws {RequiredError}
9994
10197
  */
9995
- addVirtualControllerMotionGroup(cell: string, controller: string, addVirtualControllerMotionGroupRequest: AddVirtualControllerMotionGroupRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
10198
+ addVirtualControllerMotionGroup(cell: string, controller: string, addVirtualControllerMotionGroupRequest: AddVirtualControllerMotionGroupRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
9996
10199
  /**
9997
10200
  * **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**.
9998
10201
  * @summary Add Safety Zone
@@ -10002,7 +10205,7 @@ declare class VirtualControllerApi extends BaseAPI {
10002
10205
  * @param {*} [options] Override http request option.
10003
10206
  * @throws {RequiredError}
10004
10207
  */
10005
- addVirtualControllerSafetyZone(cell: string, controller: string, safetyZone: SafetyZone, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
10208
+ addVirtualControllerSafetyZone(cell: string, controller: string, safetyZone: SafetyZone, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
10006
10209
  /**
10007
10210
  * **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.
10008
10211
  * @summary Add TCP
@@ -10014,7 +10217,7 @@ declare class VirtualControllerApi extends BaseAPI {
10014
10217
  * @param {*} [options] Override http request option.
10015
10218
  * @throws {RequiredError}
10016
10219
  */
10017
- addVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, robotTcpData: RobotTcpData, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
10220
+ addVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, robotTcpData: RobotTcpData, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
10018
10221
  /**
10019
10222
  * **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.
10020
10223
  * @summary Delete Coordinate System
@@ -10025,7 +10228,7 @@ declare class VirtualControllerApi extends BaseAPI {
10025
10228
  * @param {*} [options] Override http request option.
10026
10229
  * @throws {RequiredError}
10027
10230
  */
10028
- deleteVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
10231
+ deleteVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
10029
10232
  /**
10030
10233
  * **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**.
10031
10234
  * @summary Delete Motion Group
@@ -10035,7 +10238,7 @@ declare class VirtualControllerApi extends BaseAPI {
10035
10238
  * @param {*} [options] Override http request option.
10036
10239
  * @throws {RequiredError}
10037
10240
  */
10038
- deleteVirtualControllerMotionGroup(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
10241
+ deleteVirtualControllerMotionGroup(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
10039
10242
  /**
10040
10243
  * **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**.
10041
10244
  * @summary Delete Safety Zone
@@ -10045,7 +10248,7 @@ declare class VirtualControllerApi extends BaseAPI {
10045
10248
  * @param {*} [options] Override http request option.
10046
10249
  * @throws {RequiredError}
10047
10250
  */
10048
- deleteVirtualControllerSafetyZone(cell: string, controller: string, id: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
10251
+ deleteVirtualControllerSafetyZone(cell: string, controller: string, id: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
10049
10252
  /**
10050
10253
  * **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.
10051
10254
  * @summary Remove TCP
@@ -10056,7 +10259,7 @@ declare class VirtualControllerApi extends BaseAPI {
10056
10259
  * @param {*} [options] Override http request option.
10057
10260
  * @throws {RequiredError}
10058
10261
  */
10059
- deleteVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
10262
+ deleteVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
10060
10263
  /**
10061
10264
  * **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.
10062
10265
  * @summary Get Emergency Stop State
@@ -10065,7 +10268,7 @@ declare class VirtualControllerApi extends BaseAPI {
10065
10268
  * @param {*} [options] Override http request option.
10066
10269
  * @throws {RequiredError}
10067
10270
  */
10068
- getEmergencyStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Flag, any>>;
10271
+ getEmergencyStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<Flag, any, {}>>;
10069
10272
  /**
10070
10273
  * **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.
10071
10274
  * @summary Get Motion Group State
@@ -10075,7 +10278,7 @@ declare class VirtualControllerApi extends BaseAPI {
10075
10278
  * @param {*} [options] Override http request option.
10076
10279
  * @throws {RequiredError}
10077
10280
  */
10078
- getMotionGroupState(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupJoints, any>>;
10281
+ getMotionGroupState(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MotionGroupJoints, any, {}>>;
10079
10282
  /**
10080
10283
  * **Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ Gets information on the motion group.
10081
10284
  * @summary Motion Group Description
@@ -10084,7 +10287,7 @@ declare class VirtualControllerApi extends BaseAPI {
10084
10287
  * @param {*} [options] Override http request option.
10085
10288
  * @throws {RequiredError}
10086
10289
  */
10087
- getMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupInfo[], any>>;
10290
+ getMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MotionGroupInfo[], any, {}>>;
10088
10291
  /**
10089
10292
  * **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.
10090
10293
  * @summary Get Operation Mode
@@ -10093,7 +10296,7 @@ declare class VirtualControllerApi extends BaseAPI {
10093
10296
  * @param {*} [options] Override http request option.
10094
10297
  * @throws {RequiredError}
10095
10298
  */
10096
- getOperationMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<OpMode, any>>;
10299
+ getOperationMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<OpMode, any, {}>>;
10097
10300
  /**
10098
10301
  * **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.
10099
10302
  * @summary Get Mounting
@@ -10103,7 +10306,7 @@ declare class VirtualControllerApi extends BaseAPI {
10103
10306
  * @param {*} [options] Override http request option.
10104
10307
  * @throws {RequiredError}
10105
10308
  */
10106
- getVirtualControllerMounting(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem, any>>;
10309
+ getVirtualControllerMounting(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<CoordinateSystem, any, {}>>;
10107
10310
  /**
10108
10311
  * **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.
10109
10312
  * @summary List Safety Zones
@@ -10112,7 +10315,7 @@ declare class VirtualControllerApi extends BaseAPI {
10112
10315
  * @param {*} [options] Override http request option.
10113
10316
  * @throws {RequiredError}
10114
10317
  */
10115
- getVirtualControllerSafetyZones(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<SafetyZones, any>>;
10318
+ getVirtualControllerSafetyZones(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<SafetyZones, any, {}>>;
10116
10319
  /**
10117
10320
  * **Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ Lists all coordinate systems on the robot controller.
10118
10321
  * @summary List Coordinate Systems
@@ -10121,7 +10324,7 @@ declare class VirtualControllerApi extends BaseAPI {
10121
10324
  * @param {*} [options] Override http request option.
10122
10325
  * @throws {RequiredError}
10123
10326
  */
10124
- listVirtualControllerCoordinateSystems(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem[], any>>;
10327
+ listVirtualControllerCoordinateSystems(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<CoordinateSystem[], any, {}>>;
10125
10328
  /**
10126
10329
  * **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.
10127
10330
  * @summary List TCPs
@@ -10131,7 +10334,7 @@ declare class VirtualControllerApi extends BaseAPI {
10131
10334
  * @param {*} [options] Override http request option.
10132
10335
  * @throws {RequiredError}
10133
10336
  */
10134
- listVirtualControllerTcps(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotTcp[], any>>;
10337
+ listVirtualControllerTcps(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<RobotTcp[], any, {}>>;
10135
10338
  /**
10136
10339
  * **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.
10137
10340
  * @summary Push or Release Emergency Stop
@@ -10141,7 +10344,7 @@ declare class VirtualControllerApi extends BaseAPI {
10141
10344
  * @param {*} [options] Override http request option.
10142
10345
  * @throws {RequiredError}
10143
10346
  */
10144
- setEmergencyStop(cell: string, controller: string, active?: boolean, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
10347
+ setEmergencyStop(cell: string, controller: string, active?: boolean, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
10145
10348
  /**
10146
10349
  * **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.
10147
10350
  * @summary Set Motion Group State
@@ -10152,7 +10355,7 @@ declare class VirtualControllerApi extends BaseAPI {
10152
10355
  * @param {*} [options] Override http request option.
10153
10356
  * @throws {RequiredError}
10154
10357
  */
10155
- setMotionGroupState(cell: string, controller: string, motionGroup: string, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
10358
+ setMotionGroupState(cell: string, controller: string, motionGroup: string, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
10156
10359
  /**
10157
10360
  * **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.
10158
10361
  * @summary Set Operation Mode
@@ -10162,7 +10365,7 @@ declare class VirtualControllerApi extends BaseAPI {
10162
10365
  * @param {*} [options] Override http request option.
10163
10366
  * @throws {RequiredError}
10164
10367
  */
10165
- setOperationMode(cell: string, controller: string, mode: OperationMode, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
10368
+ setOperationMode(cell: string, controller: string, mode: OperationMode, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
10166
10369
  /**
10167
10370
  * **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.
10168
10371
  * @summary Set Mounting
@@ -10173,7 +10376,7 @@ declare class VirtualControllerApi extends BaseAPI {
10173
10376
  * @param {*} [options] Override http request option.
10174
10377
  * @throws {RequiredError}
10175
10378
  */
10176
- setVirtualControllerMounting(cell: string, controller: string, motionGroup: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem, any>>;
10379
+ setVirtualControllerMounting(cell: string, controller: string, motionGroup: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<CoordinateSystem, any, {}>>;
10177
10380
  }
10178
10381
  /**
10179
10382
  * VirtualControllerBehaviorApi - axios parameter creator
@@ -10317,7 +10520,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
10317
10520
  * @param {*} [options] Override http request option.
10318
10521
  * @throws {RequiredError}
10319
10522
  */
10320
- externalJointsStream(cell: string, controller: string, externalJointStreamRequest: ExternalJointStreamRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ExternalJointStreamDatapoint[], any>>;
10523
+ externalJointsStream(cell: string, controller: string, externalJointStreamRequest: ExternalJointStreamRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ExternalJointStreamDatapoint[], any, {}>>;
10321
10524
  /**
10322
10525
  * **Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ Get the cycle time of controller communication in [ms].
10323
10526
  * @summary Get Cycle Time
@@ -10326,7 +10529,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
10326
10529
  * @param {*} [options] Override http request option.
10327
10530
  * @throws {RequiredError}
10328
10531
  */
10329
- getCycleTime(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CycleTime, any>>;
10532
+ getCycleTime(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<CycleTime, any, {}>>;
10330
10533
  /**
10331
10534
  * **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.
10332
10535
  * @summary Get Behavior
@@ -10335,7 +10538,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
10335
10538
  * @param {*} [options] Override http request option.
10336
10539
  * @throws {RequiredError}
10337
10540
  */
10338
- getVirtualControllerBehavior(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Behavior, any>>;
10541
+ getVirtualControllerBehavior(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<Behavior, any, {}>>;
10339
10542
  /**
10340
10543
  * **Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ Set virtual controller behavior. See query parameters for details.
10341
10544
  * @summary Set Behavior
@@ -10345,7 +10548,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
10345
10548
  * @param {*} [options] Override http request option.
10346
10549
  * @throws {RequiredError}
10347
10550
  */
10348
- setVirtualControllerBehavior(cell: string, controller: string, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
10551
+ setVirtualControllerBehavior(cell: string, controller: string, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
10349
10552
  }
10350
10553
  /**
10351
10554
  * VirtualControllerInputsOutputsApi - axios parameter creator
@@ -10474,7 +10677,7 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
10474
10677
  * @param {*} [options] Override http request option.
10475
10678
  * @throws {RequiredError}
10476
10679
  */
10477
- listIOs(cell: string, controller: string, ios: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IOValue[], any>>;
10680
+ listIOs(cell: string, controller: string, ios: Array<string>, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<IOValue[], any, {}>>;
10478
10681
  /**
10479
10682
  * **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.
10480
10683
  * @summary List Descriptions
@@ -10487,7 +10690,7 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
10487
10690
  * @param {*} [options] Override http request option.
10488
10691
  * @throws {RequiredError}
10489
10692
  */
10490
- listVirtualControllerIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IODescription[], any>>;
10693
+ listVirtualControllerIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<IODescription[], any, {}>>;
10491
10694
  /**
10492
10695
  * **Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ Sets a list of values of a virtual controller inputs/outputs.
10493
10696
  * @summary Set Input/Ouput Values
@@ -10497,7 +10700,7 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
10497
10700
  * @param {*} [options] Override http request option.
10498
10701
  * @throws {RequiredError}
10499
10702
  */
10500
- setIOValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
10703
+ setIOValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
10501
10704
  }
10502
10705
  //#endregion
10503
- 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, 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 };
10706
+ 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, RRTConnectAlgorithmStepSize, Range, 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 };