@wandelbots/nova-api 26.3.0-rc.1 → 26.3.0-rc.2
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.
- package/dist/v1/index.d.ts +178 -178
- package/dist/v2/index.cjs +49 -0
- package/dist/v2/index.d.cts +87 -2
- package/dist/v2/index.d.ts +241 -156
- package/dist/v2/index.js +49 -0
- package/package.json +1 -1
package/dist/v2/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as axios176 from "axios";
|
|
2
2
|
import { AxiosInstance, AxiosPromise, RawAxiosRequestConfig } from "axios";
|
|
3
3
|
|
|
4
4
|
//#region v2/configuration.d.ts
|
|
@@ -7,7 +7,7 @@ import { AxiosInstance, AxiosPromise, RawAxiosRequestConfig } from "axios";
|
|
|
7
7
|
* Wandelbots NOVA API
|
|
8
8
|
* Interact with robots in an easy and intuitive way.
|
|
9
9
|
*
|
|
10
|
-
* The version of the OpenAPI document: 2.
|
|
10
|
+
* The version of the OpenAPI document: 2.4.0 dev
|
|
11
11
|
*
|
|
12
12
|
*
|
|
13
13
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -3450,6 +3450,55 @@ interface ProgramStartRequest {
|
|
|
3450
3450
|
*/
|
|
3451
3451
|
'arguments': object;
|
|
3452
3452
|
}
|
|
3453
|
+
interface ProjectJointPositionDirectionConstraint422Response {
|
|
3454
|
+
'detail'?: Array<ProjectJointPositionDirectionConstraintValidationError>;
|
|
3455
|
+
}
|
|
3456
|
+
interface ProjectJointPositionDirectionConstraintRequest {
|
|
3457
|
+
/**
|
|
3458
|
+
* Identifies a single motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported types.
|
|
3459
|
+
*/
|
|
3460
|
+
'motion_group_model': string;
|
|
3461
|
+
/**
|
|
3462
|
+
* List of joint positions for which the direction constraint is applied.
|
|
3463
|
+
*/
|
|
3464
|
+
'joint_positions': Array<Array<number>>;
|
|
3465
|
+
'constraint': DirectionConstraint;
|
|
3466
|
+
'tcp_offset'?: Pose;
|
|
3467
|
+
/**
|
|
3468
|
+
* Offset from the world frame to the motion group base.
|
|
3469
|
+
*/
|
|
3470
|
+
'mounting'?: Pose;
|
|
3471
|
+
/**
|
|
3472
|
+
* 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].
|
|
3473
|
+
*/
|
|
3474
|
+
'joint_position_limits'?: Array<LimitRange>;
|
|
3475
|
+
/**
|
|
3476
|
+
* 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.
|
|
3477
|
+
*/
|
|
3478
|
+
'collision_setups'?: {
|
|
3479
|
+
[key: string]: CollisionSetup;
|
|
3480
|
+
};
|
|
3481
|
+
}
|
|
3482
|
+
interface ProjectJointPositionDirectionConstraintResponse {
|
|
3483
|
+
/**
|
|
3484
|
+
* List of projected joint positions. If the resulting joint position is in collision or violates joint limits, the corresponding entry is null.
|
|
3485
|
+
*/
|
|
3486
|
+
'projected_joint_positions': Array<Array<number> | null>;
|
|
3487
|
+
}
|
|
3488
|
+
interface ProjectJointPositionDirectionConstraintValidationError {
|
|
3489
|
+
'loc': Array<ValidationErrorLocInner>;
|
|
3490
|
+
'msg': string;
|
|
3491
|
+
'type': string;
|
|
3492
|
+
'input': {
|
|
3493
|
+
[key: string]: any;
|
|
3494
|
+
};
|
|
3495
|
+
'data'?: ProjectJointPositionDirectionConstraintValidationErrorAllOfData;
|
|
3496
|
+
}
|
|
3497
|
+
/**
|
|
3498
|
+
* @type ProjectJointPositionDirectionConstraintValidationErrorAllOfData
|
|
3499
|
+
* Optional data further specifying the validation error.
|
|
3500
|
+
*/
|
|
3501
|
+
type ProjectJointPositionDirectionConstraintValidationErrorAllOfData = ErrorDirectionConstraintNotNormalized | ErrorInvalidJointCount | ErrorUnsupportedOperation;
|
|
3453
3502
|
interface RRTConnectAlgorithm {
|
|
3454
3503
|
/**
|
|
3455
3504
|
* 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.
|
|
@@ -4552,7 +4601,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
4552
4601
|
* @param {*} [options] Override http request option.
|
|
4553
4602
|
* @throws {RequiredError}
|
|
4554
4603
|
*/
|
|
4555
|
-
addApp(cell: string, app: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
4604
|
+
addApp(cell: string, app: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
|
|
4556
4605
|
/**
|
|
4557
4606
|
* **Required permissions:** `can_manage_apps` - Install, update, or remove applications ___ Delete all GUI applications from the cell.
|
|
4558
4607
|
* @summary Clear Applications
|
|
@@ -4561,7 +4610,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
4561
4610
|
* @param {*} [options] Override http request option.
|
|
4562
4611
|
* @throws {RequiredError}
|
|
4563
4612
|
*/
|
|
4564
|
-
clearApps(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
4613
|
+
clearApps(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
|
|
4565
4614
|
/**
|
|
4566
4615
|
* **Required permissions:** `can_manage_apps` - Install, update, or remove applications ___ Delete a GUI application from the cell.
|
|
4567
4616
|
* @summary Delete Application
|
|
@@ -4571,7 +4620,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
4571
4620
|
* @param {*} [options] Override http request option.
|
|
4572
4621
|
* @throws {RequiredError}
|
|
4573
4622
|
*/
|
|
4574
|
-
deleteApp(cell: string, app: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
4623
|
+
deleteApp(cell: string, app: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
|
|
4575
4624
|
/**
|
|
4576
4625
|
* **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
4626
|
* @summary Configuration
|
|
@@ -4580,7 +4629,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
4580
4629
|
* @param {*} [options] Override http request option.
|
|
4581
4630
|
* @throws {RequiredError}
|
|
4582
4631
|
*/
|
|
4583
|
-
getApp(cell: string, app: string, options?: RawAxiosRequestConfig): Promise<
|
|
4632
|
+
getApp(cell: string, app: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<App, any>>;
|
|
4584
4633
|
/**
|
|
4585
4634
|
* **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
4635
|
* @summary List Applications
|
|
@@ -4588,7 +4637,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
4588
4637
|
* @param {*} [options] Override http request option.
|
|
4589
4638
|
* @throws {RequiredError}
|
|
4590
4639
|
*/
|
|
4591
|
-
listApps(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
4640
|
+
listApps(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
|
|
4592
4641
|
/**
|
|
4593
4642
|
* **Required permissions:** `can_manage_apps` - Install, update, or remove applications ___ Update the configuration of a GUI application in the cell.
|
|
4594
4643
|
* @summary Update Configuration
|
|
@@ -4599,7 +4648,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
4599
4648
|
* @param {*} [options] Override http request option.
|
|
4600
4649
|
* @throws {RequiredError}
|
|
4601
4650
|
*/
|
|
4602
|
-
updateApp(cell: string, app: string, app2: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
4651
|
+
updateApp(cell: string, app: string, app2: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
|
|
4603
4652
|
}
|
|
4604
4653
|
/**
|
|
4605
4654
|
* BUSInputsOutputsApi - axios parameter creator
|
|
@@ -5127,7 +5176,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
5127
5176
|
* @param {*} [options] Override http request option.
|
|
5128
5177
|
* @throws {RequiredError}
|
|
5129
5178
|
*/
|
|
5130
|
-
addBusIOService(cell: string, busIOType: BusIOType, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
5179
|
+
addBusIOService(cell: string, busIOType: BusIOType, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
|
|
5131
5180
|
/**
|
|
5132
5181
|
* **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
5182
|
* @summary Add MODBUS Input/Output
|
|
@@ -5137,7 +5186,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
5137
5186
|
* @param {*} [options] Override http request option.
|
|
5138
5187
|
* @throws {RequiredError}
|
|
5139
5188
|
*/
|
|
5140
|
-
addModbusIO(cell: string, io: string, modbusIOData: ModbusIOData, options?: RawAxiosRequestConfig): Promise<
|
|
5189
|
+
addModbusIO(cell: string, io: string, modbusIOData: ModbusIOData, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
|
|
5141
5190
|
/**
|
|
5142
5191
|
* **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
5192
|
* @summary Add PROFINET Input/Output
|
|
@@ -5147,7 +5196,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
5147
5196
|
* @param {*} [options] Override http request option.
|
|
5148
5197
|
* @throws {RequiredError}
|
|
5149
5198
|
*/
|
|
5150
|
-
addProfinetIO(cell: string, io: string, profinetIOData: ProfinetIOData, options?: RawAxiosRequestConfig): Promise<
|
|
5199
|
+
addProfinetIO(cell: string, io: string, profinetIOData: ProfinetIOData, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
|
|
5151
5200
|
/**
|
|
5152
5201
|
* **Required permissions:** `can_manage_bus_ios` - Manage BUS IO configuration ___ Remove the BUS inputs/outputs service from the cell.
|
|
5153
5202
|
* @summary Clear Service
|
|
@@ -5156,7 +5205,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
5156
5205
|
* @param {*} [options] Override http request option.
|
|
5157
5206
|
* @throws {RequiredError}
|
|
5158
5207
|
*/
|
|
5159
|
-
clearBusIOService(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
5208
|
+
clearBusIOService(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
|
|
5160
5209
|
/**
|
|
5161
5210
|
* **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
5211
|
* @summary Remove all MODBUS Input/Outputs
|
|
@@ -5164,7 +5213,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
5164
5213
|
* @param {*} [options] Override http request option.
|
|
5165
5214
|
* @throws {RequiredError}
|
|
5166
5215
|
*/
|
|
5167
|
-
deleteAllModbusIOs(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
5216
|
+
deleteAllModbusIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
|
|
5168
5217
|
/**
|
|
5169
5218
|
* **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
5219
|
* @summary Remove all PROFINET Input/Outputs
|
|
@@ -5172,7 +5221,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
5172
5221
|
* @param {*} [options] Override http request option.
|
|
5173
5222
|
* @throws {RequiredError}
|
|
5174
5223
|
*/
|
|
5175
|
-
deleteAllProfinetIOs(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
5224
|
+
deleteAllProfinetIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
|
|
5176
5225
|
/**
|
|
5177
5226
|
* **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
5227
|
* @summary Remove MODBUS Input/Output
|
|
@@ -5181,7 +5230,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
5181
5230
|
* @param {*} [options] Override http request option.
|
|
5182
5231
|
* @throws {RequiredError}
|
|
5183
5232
|
*/
|
|
5184
|
-
deleteModbusIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<
|
|
5233
|
+
deleteModbusIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
|
|
5185
5234
|
/**
|
|
5186
5235
|
* **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
5236
|
* @summary Remove PROFINET Input/Ouptut
|
|
@@ -5190,7 +5239,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
5190
5239
|
* @param {*} [options] Override http request option.
|
|
5191
5240
|
* @throws {RequiredError}
|
|
5192
5241
|
*/
|
|
5193
|
-
deleteProfinetIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<
|
|
5242
|
+
deleteProfinetIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
|
|
5194
5243
|
/**
|
|
5195
5244
|
* **Required permissions:** `can_operate_bus_ios` - Read and write BUS IO values ___ Get deployed BUS inputs/outputs service.
|
|
5196
5245
|
* @summary Get Service
|
|
@@ -5198,7 +5247,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
5198
5247
|
* @param {*} [options] Override http request option.
|
|
5199
5248
|
* @throws {RequiredError}
|
|
5200
5249
|
*/
|
|
5201
|
-
getBusIOService(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
5250
|
+
getBusIOService(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<BusIOType, any>>;
|
|
5202
5251
|
/**
|
|
5203
5252
|
* **Required permissions:** `can_operate_bus_ios` - Read and write BUS IO values ___ Get the current state of the BUS Inputs/Outputs service.
|
|
5204
5253
|
* @summary State
|
|
@@ -5206,7 +5255,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
5206
5255
|
* @param {*} [options] Override http request option.
|
|
5207
5256
|
* @throws {RequiredError}
|
|
5208
5257
|
*/
|
|
5209
|
-
getBusIOState(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
5258
|
+
getBusIOState(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<BusIOsState, any>>;
|
|
5210
5259
|
/**
|
|
5211
5260
|
* **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
5261
|
* @summary Get Input/Output Values
|
|
@@ -5215,7 +5264,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
5215
5264
|
* @param {*} [options] Override http request option.
|
|
5216
5265
|
* @throws {RequiredError}
|
|
5217
5266
|
*/
|
|
5218
|
-
getBusIOValues(cell: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<
|
|
5267
|
+
getBusIOValues(cell: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<IOValue[], any>>;
|
|
5219
5268
|
/**
|
|
5220
5269
|
* **Required permissions:** `can_operate_bus_ios` - Read and write BUS IO values ___ Get description of NOVA as a PROFINET device.
|
|
5221
5270
|
* @summary Get PROFINET Description
|
|
@@ -5223,7 +5272,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
5223
5272
|
* @param {*} [options] Override http request option.
|
|
5224
5273
|
* @throws {RequiredError}
|
|
5225
5274
|
*/
|
|
5226
|
-
getProfinetDescription(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
5275
|
+
getProfinetDescription(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ProfinetDescription, any>>;
|
|
5227
5276
|
/**
|
|
5228
5277
|
* **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
5278
|
* @summary Get PROFINET GSDML File
|
|
@@ -5231,7 +5280,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
5231
5280
|
* @param {*} [options] Override http request option.
|
|
5232
5281
|
* @throws {RequiredError}
|
|
5233
5282
|
*/
|
|
5234
|
-
getProfinetGSDML(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
5283
|
+
getProfinetGSDML(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string, any>>;
|
|
5235
5284
|
/**
|
|
5236
5285
|
* **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
5286
|
* @summary PROFINET Inputs/Outputs to File
|
|
@@ -5241,7 +5290,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
5241
5290
|
* @param {*} [options] Override http request option.
|
|
5242
5291
|
* @throws {RequiredError}
|
|
5243
5292
|
*/
|
|
5244
|
-
getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<
|
|
5293
|
+
getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string, any>>;
|
|
5245
5294
|
/**
|
|
5246
5295
|
* **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
5296
|
* @summary List Descriptions
|
|
@@ -5249,7 +5298,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
5249
5298
|
* @param {*} [options] Override http request option.
|
|
5250
5299
|
* @throws {RequiredError}
|
|
5251
5300
|
*/
|
|
5252
|
-
listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
5301
|
+
listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<BusIODescription[], any>>;
|
|
5253
5302
|
/**
|
|
5254
5303
|
* **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
5304
|
* @summary List MODBUS Input/Output Configuration
|
|
@@ -5257,7 +5306,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
5257
5306
|
* @param {*} [options] Override http request option.
|
|
5258
5307
|
* @throws {RequiredError}
|
|
5259
5308
|
*/
|
|
5260
|
-
listModbusIOs(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
5309
|
+
listModbusIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ModbusIO[], any>>;
|
|
5261
5310
|
/**
|
|
5262
5311
|
* **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
5312
|
* @summary List PROFINET Input/Output Configuration
|
|
@@ -5265,7 +5314,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
5265
5314
|
* @param {*} [options] Override http request option.
|
|
5266
5315
|
* @throws {RequiredError}
|
|
5267
5316
|
*/
|
|
5268
|
-
listProfinetIOs(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
5317
|
+
listProfinetIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ProfinetIO[], any>>;
|
|
5269
5318
|
/**
|
|
5270
5319
|
* **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
5320
|
* @summary Set Output Values
|
|
@@ -5274,7 +5323,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
5274
5323
|
* @param {*} [options] Override http request option.
|
|
5275
5324
|
* @throws {RequiredError}
|
|
5276
5325
|
*/
|
|
5277
|
-
setBusIOValues(cell: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<
|
|
5326
|
+
setBusIOValues(cell: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
|
|
5278
5327
|
/**
|
|
5279
5328
|
* **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
5329
|
* @summary Set PROFINET Inputs/Outputs from File
|
|
@@ -5283,7 +5332,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
5283
5332
|
* @param {*} [options] Override http request option.
|
|
5284
5333
|
* @throws {RequiredError}
|
|
5285
5334
|
*/
|
|
5286
|
-
setProfinetIOsFromFile(cell: string, profinetInputOutputConfig: ProfinetInputOutputConfig, options?: RawAxiosRequestConfig): Promise<
|
|
5335
|
+
setProfinetIOsFromFile(cell: string, profinetInputOutputConfig: ProfinetInputOutputConfig, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
|
|
5287
5336
|
}
|
|
5288
5337
|
/**
|
|
5289
5338
|
* CellApi - axios parameter creator
|
|
@@ -5546,7 +5595,7 @@ declare class CellApi extends BaseAPI {
|
|
|
5546
5595
|
* @param {*} [options] Override http request option.
|
|
5547
5596
|
* @throws {RequiredError}
|
|
5548
5597
|
*/
|
|
5549
|
-
checkCellVersionUpdate(cell: string, channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<
|
|
5598
|
+
checkCellVersionUpdate(cell: string, channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string, any>>;
|
|
5550
5599
|
/**
|
|
5551
5600
|
* **Required permissions:** `can_manage_cells` - Create, update, or delete cells ___ Delete an entire cell.
|
|
5552
5601
|
* @summary Delete Cell
|
|
@@ -5555,7 +5604,7 @@ declare class CellApi extends BaseAPI {
|
|
|
5555
5604
|
* @param {*} [options] Override http request option.
|
|
5556
5605
|
* @throws {RequiredError}
|
|
5557
5606
|
*/
|
|
5558
|
-
deleteCell(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
5607
|
+
deleteCell(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
|
|
5559
5608
|
/**
|
|
5560
5609
|
* **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
5610
|
* @summary Add Cell
|
|
@@ -5564,7 +5613,7 @@ declare class CellApi extends BaseAPI {
|
|
|
5564
5613
|
* @param {*} [options] Override http request option.
|
|
5565
5614
|
* @throws {RequiredError}
|
|
5566
5615
|
*/
|
|
5567
|
-
deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
5616
|
+
deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
|
|
5568
5617
|
/**
|
|
5569
5618
|
* **Required permissions:** `can_access_cells` - View cell configurations and resources ___ List all cell resources.
|
|
5570
5619
|
* @summary Configuration
|
|
@@ -5572,7 +5621,7 @@ declare class CellApi extends BaseAPI {
|
|
|
5572
5621
|
* @param {*} [options] Override http request option.
|
|
5573
5622
|
* @throws {RequiredError}
|
|
5574
5623
|
*/
|
|
5575
|
-
getCell(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
5624
|
+
getCell(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Cell, any>>;
|
|
5576
5625
|
/**
|
|
5577
5626
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ List the status of all cell resources.
|
|
5578
5627
|
* @summary Service Status
|
|
@@ -5580,14 +5629,14 @@ declare class CellApi extends BaseAPI {
|
|
|
5580
5629
|
* @param {*} [options] Override http request option.
|
|
5581
5630
|
* @throws {RequiredError}
|
|
5582
5631
|
*/
|
|
5583
|
-
getCellStatus(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
5632
|
+
getCellStatus(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ServiceStatusResponse, any>>;
|
|
5584
5633
|
/**
|
|
5585
5634
|
* **Required permissions:** `can_access_cells` - View cell configurations and resources ___ List all deployed cell names. If no cells are deployed, an empty list is returned.
|
|
5586
5635
|
* @summary List Cells
|
|
5587
5636
|
* @param {*} [options] Override http request option.
|
|
5588
5637
|
* @throws {RequiredError}
|
|
5589
5638
|
*/
|
|
5590
|
-
listCells(options?: RawAxiosRequestConfig): Promise<
|
|
5639
|
+
listCells(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
|
|
5591
5640
|
/**
|
|
5592
5641
|
* **Required permissions:** `can_manage_cells` - Create, update, or delete cells ___ Deactivate or activate the services of a cell.
|
|
5593
5642
|
* @summary Operating State
|
|
@@ -5596,7 +5645,7 @@ declare class CellApi extends BaseAPI {
|
|
|
5596
5645
|
* @param {*} [options] Override http request option.
|
|
5597
5646
|
* @throws {RequiredError}
|
|
5598
5647
|
*/
|
|
5599
|
-
setCellStatus(cell: string, operatingState: OperatingState, options?: RawAxiosRequestConfig): Promise<
|
|
5648
|
+
setCellStatus(cell: string, operatingState: OperatingState, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
|
|
5600
5649
|
/**
|
|
5601
5650
|
* **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
5651
|
* @summary Update Configuration
|
|
@@ -5606,7 +5655,7 @@ declare class CellApi extends BaseAPI {
|
|
|
5606
5655
|
* @param {*} [options] Override http request option.
|
|
5607
5656
|
* @throws {RequiredError}
|
|
5608
5657
|
*/
|
|
5609
|
-
updateCell(cell: string, cell2: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
5658
|
+
updateCell(cell: string, cell2: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
|
|
5610
5659
|
/**
|
|
5611
5660
|
* **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
5661
|
* @summary Update Cell Version
|
|
@@ -5615,7 +5664,7 @@ declare class CellApi extends BaseAPI {
|
|
|
5615
5664
|
* @param {*} [options] Override http request option.
|
|
5616
5665
|
* @throws {RequiredError}
|
|
5617
5666
|
*/
|
|
5618
|
-
updateCellVersion(cell: string, updateCellVersionRequest: UpdateCellVersionRequest, options?: RawAxiosRequestConfig): Promise<
|
|
5667
|
+
updateCellVersion(cell: string, updateCellVersionRequest: UpdateCellVersionRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
|
|
5619
5668
|
}
|
|
5620
5669
|
/**
|
|
5621
5670
|
* ControllerApi - axios parameter creator
|
|
@@ -6053,7 +6102,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
6053
6102
|
* @param {*} [options] Override http request option.
|
|
6054
6103
|
* @throws {RequiredError}
|
|
6055
6104
|
*/
|
|
6056
|
-
addRobotController(cell: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
6105
|
+
addRobotController(cell: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
|
|
6057
6106
|
/**
|
|
6058
6107
|
* **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
6108
|
* @summary Clear Robot Controllers
|
|
@@ -6062,7 +6111,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
6062
6111
|
* @param {*} [options] Override http request option.
|
|
6063
6112
|
* @throws {RequiredError}
|
|
6064
6113
|
*/
|
|
6065
|
-
clearRobotControllers(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
6114
|
+
clearRobotControllers(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
|
|
6066
6115
|
/**
|
|
6067
6116
|
* **Required permissions:** `can_manage_controllers` - Create, update, or delete robot controllers ___ Delete a robot controller from the cell.
|
|
6068
6117
|
* @summary Delete Robot Controller
|
|
@@ -6072,7 +6121,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
6072
6121
|
* @param {*} [options] Override http request option.
|
|
6073
6122
|
* @throws {RequiredError}
|
|
6074
6123
|
*/
|
|
6075
|
-
deleteRobotController(cell: string, controller: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
6124
|
+
deleteRobotController(cell: string, controller: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
|
|
6076
6125
|
/**
|
|
6077
6126
|
* **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
6127
|
* @summary Description
|
|
@@ -6081,7 +6130,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
6081
6130
|
* @param {*} [options] Override http request option.
|
|
6082
6131
|
* @throws {RequiredError}
|
|
6083
6132
|
*/
|
|
6084
|
-
getControllerDescription(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
6133
|
+
getControllerDescription(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ControllerDescription, any>>;
|
|
6085
6134
|
/**
|
|
6086
6135
|
* **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
6136
|
* @summary Coordinate System
|
|
@@ -6092,7 +6141,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
6092
6141
|
* @param {*} [options] Override http request option.
|
|
6093
6142
|
* @throws {RequiredError}
|
|
6094
6143
|
*/
|
|
6095
|
-
getCoordinateSystem(cell: string, controller: string, coordinateSystem: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<
|
|
6144
|
+
getCoordinateSystem(cell: string, controller: string, coordinateSystem: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CoordinateSystem, any>>;
|
|
6096
6145
|
/**
|
|
6097
6146
|
* **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ Get the current state of a robot controller.
|
|
6098
6147
|
* @summary State
|
|
@@ -6101,7 +6150,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
6101
6150
|
* @param {*} [options] Override http request option.
|
|
6102
6151
|
* @throws {RequiredError}
|
|
6103
6152
|
*/
|
|
6104
|
-
getCurrentRobotControllerState(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
6153
|
+
getCurrentRobotControllerState(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<RobotControllerState, any>>;
|
|
6105
6154
|
/**
|
|
6106
6155
|
* **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ Get the configuration for a robot controller.
|
|
6107
6156
|
* @summary Robot Controller
|
|
@@ -6110,7 +6159,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
6110
6159
|
* @param {*} [options] Override http request option.
|
|
6111
6160
|
* @throws {RequiredError}
|
|
6112
6161
|
*/
|
|
6113
|
-
getRobotController(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
6162
|
+
getRobotController(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<RobotController, any>>;
|
|
6114
6163
|
/**
|
|
6115
6164
|
* **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
6165
|
* @summary Virtual Controller Configuration
|
|
@@ -6119,7 +6168,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
6119
6168
|
* @param {*} [options] Override http request option.
|
|
6120
6169
|
* @throws {RequiredError}
|
|
6121
6170
|
*/
|
|
6122
|
-
getVirtualControllerConfiguration(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
6171
|
+
getVirtualControllerConfiguration(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<VirtualRobotConfiguration, any>>;
|
|
6123
6172
|
/**
|
|
6124
6173
|
* **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
6174
|
* @summary List Coordinate Systems
|
|
@@ -6129,7 +6178,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
6129
6178
|
* @param {*} [options] Override http request option.
|
|
6130
6179
|
* @throws {RequiredError}
|
|
6131
6180
|
*/
|
|
6132
|
-
listCoordinateSystems(cell: string, controller: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<
|
|
6181
|
+
listCoordinateSystems(cell: string, controller: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CoordinateSystem[], any>>;
|
|
6133
6182
|
/**
|
|
6134
6183
|
* **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ List the names of all deployed robot controllers.
|
|
6135
6184
|
* @summary List Robot Controllers
|
|
@@ -6137,7 +6186,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
6137
6186
|
* @param {*} [options] Override http request option.
|
|
6138
6187
|
* @throws {RequiredError}
|
|
6139
6188
|
*/
|
|
6140
|
-
listRobotControllers(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
6189
|
+
listRobotControllers(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
|
|
6141
6190
|
/**
|
|
6142
6191
|
* **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
6192
|
* @summary Set Default Mode
|
|
@@ -6147,7 +6196,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
6147
6196
|
* @param {*} [options] Override http request option.
|
|
6148
6197
|
* @throws {RequiredError}
|
|
6149
6198
|
*/
|
|
6150
|
-
setDefaultMode(cell: string, controller: string, mode: SettableRobotSystemMode, options?: RawAxiosRequestConfig): Promise<
|
|
6199
|
+
setDefaultMode(cell: string, controller: string, mode: SettableRobotSystemMode, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
|
|
6151
6200
|
/**
|
|
6152
6201
|
* **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
6202
|
* @summary Stream Free Drive
|
|
@@ -6157,7 +6206,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
6157
6206
|
* @param {*} [options] Override http request option.
|
|
6158
6207
|
* @throws {RequiredError}
|
|
6159
6208
|
*/
|
|
6160
|
-
streamFreeDrive(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<
|
|
6209
|
+
streamFreeDrive(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<RobotControllerState, any>>;
|
|
6161
6210
|
/**
|
|
6162
6211
|
* **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
6212
|
* @summary Stream State
|
|
@@ -6168,7 +6217,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
6168
6217
|
* @param {*} [options] Override http request option.
|
|
6169
6218
|
* @throws {RequiredError}
|
|
6170
6219
|
*/
|
|
6171
|
-
streamRobotControllerState(cell: string, controller: string, responseRate?: number, addControllerTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
6220
|
+
streamRobotControllerState(cell: string, controller: string, responseRate?: number, addControllerTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<RobotControllerState, any>>;
|
|
6172
6221
|
/**
|
|
6173
6222
|
* **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
6223
|
* @summary Update Robot Controller
|
|
@@ -6179,7 +6228,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
6179
6228
|
* @param {*} [options] Override http request option.
|
|
6180
6229
|
* @throws {RequiredError}
|
|
6181
6230
|
*/
|
|
6182
|
-
updateRobotController(cell: string, controller: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
6231
|
+
updateRobotController(cell: string, controller: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
|
|
6183
6232
|
}
|
|
6184
6233
|
/**
|
|
6185
6234
|
* ControllerInputsOutputsApi - axios parameter creator
|
|
@@ -6371,7 +6420,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
|
|
|
6371
6420
|
* @param {*} [options] Override http request option.
|
|
6372
6421
|
* @throws {RequiredError}
|
|
6373
6422
|
*/
|
|
6374
|
-
listIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<
|
|
6423
|
+
listIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<IODescription[], any>>;
|
|
6375
6424
|
/**
|
|
6376
6425
|
* **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
6426
|
* @summary Get Input/Output Values
|
|
@@ -6381,7 +6430,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
|
|
|
6381
6430
|
* @param {*} [options] Override http request option.
|
|
6382
6431
|
* @throws {RequiredError}
|
|
6383
6432
|
*/
|
|
6384
|
-
listIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<
|
|
6433
|
+
listIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<IOValue[], any>>;
|
|
6385
6434
|
/**
|
|
6386
6435
|
* **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
6436
|
* @summary Set Output Values
|
|
@@ -6391,7 +6440,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
|
|
|
6391
6440
|
* @param {*} [options] Override http request option.
|
|
6392
6441
|
* @throws {RequiredError}
|
|
6393
6442
|
*/
|
|
6394
|
-
setOutputValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<
|
|
6443
|
+
setOutputValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
|
|
6395
6444
|
/**
|
|
6396
6445
|
* **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
6446
|
* @summary Stream Input/Output Values
|
|
@@ -6401,7 +6450,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
|
|
|
6401
6450
|
* @param {*} [options] Override http request option.
|
|
6402
6451
|
* @throws {RequiredError}
|
|
6403
6452
|
*/
|
|
6404
|
-
streamIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<
|
|
6453
|
+
streamIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<StreamIOValuesResponse, any>>;
|
|
6405
6454
|
/**
|
|
6406
6455
|
* **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
6456
|
* @summary Wait For
|
|
@@ -6411,7 +6460,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
|
|
|
6411
6460
|
* @param {*} [options] Override http request option.
|
|
6412
6461
|
* @throws {RequiredError}
|
|
6413
6462
|
*/
|
|
6414
|
-
waitForIOEvent(cell: string, controller: string, waitForIOEventRequest: WaitForIOEventRequest, options?: RawAxiosRequestConfig): Promise<
|
|
6463
|
+
waitForIOEvent(cell: string, controller: string, waitForIOEventRequest: WaitForIOEventRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<boolean, any>>;
|
|
6415
6464
|
}
|
|
6416
6465
|
/**
|
|
6417
6466
|
* JoggingApi - axios parameter creator
|
|
@@ -6471,7 +6520,7 @@ declare class JoggingApi extends BaseAPI {
|
|
|
6471
6520
|
* @param {*} [options] Override http request option.
|
|
6472
6521
|
* @throws {RequiredError}
|
|
6473
6522
|
*/
|
|
6474
|
-
executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): Promise<
|
|
6523
|
+
executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ExecuteJoggingResponse, any>>;
|
|
6475
6524
|
}
|
|
6476
6525
|
/**
|
|
6477
6526
|
* KinematicsApi - axios parameter creator
|
|
@@ -6495,6 +6544,15 @@ declare const KinematicsApiAxiosParamCreator: (configuration?: Configuration) =>
|
|
|
6495
6544
|
* @throws {RequiredError}
|
|
6496
6545
|
*/
|
|
6497
6546
|
inverseKinematics: (cell: string, inverseKinematicsRequest: InverseKinematicsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6547
|
+
/**
|
|
6548
|
+
* **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()) ```
|
|
6549
|
+
* @summary Project joint position to direction constraint
|
|
6550
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6551
|
+
* @param {ProjectJointPositionDirectionConstraintRequest} projectJointPositionDirectionConstraintRequest
|
|
6552
|
+
* @param {*} [options] Override http request option.
|
|
6553
|
+
* @throws {RequiredError}
|
|
6554
|
+
*/
|
|
6555
|
+
projectJointPositionDirectionConstraint: (cell: string, projectJointPositionDirectionConstraintRequest: ProjectJointPositionDirectionConstraintRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6498
6556
|
};
|
|
6499
6557
|
/**
|
|
6500
6558
|
* KinematicsApi - functional programming interface
|
|
@@ -6518,6 +6576,15 @@ declare const KinematicsApiFp: (configuration?: Configuration) => {
|
|
|
6518
6576
|
* @throws {RequiredError}
|
|
6519
6577
|
*/
|
|
6520
6578
|
inverseKinematics(cell: string, inverseKinematicsRequest: InverseKinematicsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InverseKinematicsResponse>>;
|
|
6579
|
+
/**
|
|
6580
|
+
* **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()) ```
|
|
6581
|
+
* @summary Project joint position to direction constraint
|
|
6582
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6583
|
+
* @param {ProjectJointPositionDirectionConstraintRequest} projectJointPositionDirectionConstraintRequest
|
|
6584
|
+
* @param {*} [options] Override http request option.
|
|
6585
|
+
* @throws {RequiredError}
|
|
6586
|
+
*/
|
|
6587
|
+
projectJointPositionDirectionConstraint(cell: string, projectJointPositionDirectionConstraintRequest: ProjectJointPositionDirectionConstraintRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProjectJointPositionDirectionConstraintResponse>>;
|
|
6521
6588
|
};
|
|
6522
6589
|
/**
|
|
6523
6590
|
* KinematicsApi - factory interface
|
|
@@ -6541,6 +6608,15 @@ declare const KinematicsApiFactory: (configuration?: Configuration, basePath?: s
|
|
|
6541
6608
|
* @throws {RequiredError}
|
|
6542
6609
|
*/
|
|
6543
6610
|
inverseKinematics(cell: string, inverseKinematicsRequest: InverseKinematicsRequest, options?: RawAxiosRequestConfig): AxiosPromise<InverseKinematicsResponse>;
|
|
6611
|
+
/**
|
|
6612
|
+
* **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()) ```
|
|
6613
|
+
* @summary Project joint position to direction constraint
|
|
6614
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6615
|
+
* @param {ProjectJointPositionDirectionConstraintRequest} projectJointPositionDirectionConstraintRequest
|
|
6616
|
+
* @param {*} [options] Override http request option.
|
|
6617
|
+
* @throws {RequiredError}
|
|
6618
|
+
*/
|
|
6619
|
+
projectJointPositionDirectionConstraint(cell: string, projectJointPositionDirectionConstraintRequest: ProjectJointPositionDirectionConstraintRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProjectJointPositionDirectionConstraintResponse>;
|
|
6544
6620
|
};
|
|
6545
6621
|
/**
|
|
6546
6622
|
* KinematicsApi - object-oriented interface
|
|
@@ -6554,7 +6630,7 @@ declare class KinematicsApi extends BaseAPI {
|
|
|
6554
6630
|
* @param {*} [options] Override http request option.
|
|
6555
6631
|
* @throws {RequiredError}
|
|
6556
6632
|
*/
|
|
6557
|
-
forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): Promise<
|
|
6633
|
+
forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ForwardKinematicsResponse, any>>;
|
|
6558
6634
|
/**
|
|
6559
6635
|
* **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the reachable joint positions for a list of given poses.
|
|
6560
6636
|
* @summary Inverse kinematics
|
|
@@ -6563,7 +6639,16 @@ declare class KinematicsApi extends BaseAPI {
|
|
|
6563
6639
|
* @param {*} [options] Override http request option.
|
|
6564
6640
|
* @throws {RequiredError}
|
|
6565
6641
|
*/
|
|
6566
|
-
inverseKinematics(cell: string, inverseKinematicsRequest: InverseKinematicsRequest, options?: RawAxiosRequestConfig): Promise<
|
|
6642
|
+
inverseKinematics(cell: string, inverseKinematicsRequest: InverseKinematicsRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<InverseKinematicsResponse, any>>;
|
|
6643
|
+
/**
|
|
6644
|
+
* **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ <!-- theme: danger --> > **Experimental** Returns the projected joint position that satisfies the direction constraint for a given target joint position. This may alter the TCP pose. To project the cartesian pose instead, use the following code snippet: ```python import numpy as np from scipy.spatial.transform import Rotation as R def project_cartesian_pose_direction_constraint(T_world_tcp: models.Pose, constraint: models.DirectionConstraint) -> models.Pose: constraint_tcp = np.array(constraint.tcp) target_constraint_world = np.array(constraint.world) R_world_tcp = R.from_rotvec(T_world_tcp.orientation.root) current_constraint_world = R_world_tcp.apply(constraint_tcp) R_corr, _ = R.align_vectors([target_constraint_world], [current_constraint_world]) R_world_tcp_new = R_corr * R_world_tcp return models.Pose(position=T_world_tcp.position, orientation=R_world_tcp_new.as_rotvec()) ```
|
|
6645
|
+
* @summary Project joint position to direction constraint
|
|
6646
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6647
|
+
* @param {ProjectJointPositionDirectionConstraintRequest} projectJointPositionDirectionConstraintRequest
|
|
6648
|
+
* @param {*} [options] Override http request option.
|
|
6649
|
+
* @throws {RequiredError}
|
|
6650
|
+
*/
|
|
6651
|
+
projectJointPositionDirectionConstraint(cell: string, projectJointPositionDirectionConstraintRequest: ProjectJointPositionDirectionConstraintRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ProjectJointPositionDirectionConstraintResponse, any>>;
|
|
6567
6652
|
}
|
|
6568
6653
|
/**
|
|
6569
6654
|
* LicenseApi - axios parameter creator
|
|
@@ -6678,28 +6763,28 @@ declare class LicenseApi extends BaseAPI {
|
|
|
6678
6763
|
* @param {*} [options] Override http request option.
|
|
6679
6764
|
* @throws {RequiredError}
|
|
6680
6765
|
*/
|
|
6681
|
-
activateLicense(activateLicenseRequest: ActivateLicenseRequest, options?: RawAxiosRequestConfig): Promise<
|
|
6766
|
+
activateLicense(activateLicenseRequest: ActivateLicenseRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<License, any>>;
|
|
6682
6767
|
/**
|
|
6683
6768
|
* **Required permissions:** `can_manage_license` - Manage license configuration ___ Deactivates active license.
|
|
6684
6769
|
* @summary Deactivate license
|
|
6685
6770
|
* @param {*} [options] Override http request option.
|
|
6686
6771
|
* @throws {RequiredError}
|
|
6687
6772
|
*/
|
|
6688
|
-
deactivateLicense(options?: RawAxiosRequestConfig): Promise<
|
|
6773
|
+
deactivateLicense(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
|
|
6689
6774
|
/**
|
|
6690
6775
|
* **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
6776
|
* @summary Get license
|
|
6692
6777
|
* @param {*} [options] Override http request option.
|
|
6693
6778
|
* @throws {RequiredError}
|
|
6694
6779
|
*/
|
|
6695
|
-
getLicense(options?: RawAxiosRequestConfig): Promise<
|
|
6780
|
+
getLicense(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<License, any>>;
|
|
6696
6781
|
/**
|
|
6697
6782
|
* **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
6783
|
* @summary Get license status
|
|
6699
6784
|
* @param {*} [options] Override http request option.
|
|
6700
6785
|
* @throws {RequiredError}
|
|
6701
6786
|
*/
|
|
6702
|
-
getLicenseStatus(options?: RawAxiosRequestConfig): Promise<
|
|
6787
|
+
getLicenseStatus(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<LicenseStatus, any>>;
|
|
6703
6788
|
}
|
|
6704
6789
|
/**
|
|
6705
6790
|
* MotionGroupApi - axios parameter creator
|
|
@@ -6829,7 +6914,7 @@ declare class MotionGroupApi extends BaseAPI {
|
|
|
6829
6914
|
* @param {*} [options] Override http request option.
|
|
6830
6915
|
* @throws {RequiredError}
|
|
6831
6916
|
*/
|
|
6832
|
-
getCurrentMotionGroupState(cell: string, controller: string, motionGroup: string, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<
|
|
6917
|
+
getCurrentMotionGroupState(cell: string, controller: string, motionGroup: string, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<MotionGroupState, any>>;
|
|
6833
6918
|
/**
|
|
6834
6919
|
* **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
6920
|
* @summary Description
|
|
@@ -6839,7 +6924,7 @@ declare class MotionGroupApi extends BaseAPI {
|
|
|
6839
6924
|
* @param {*} [options] Override http request option.
|
|
6840
6925
|
* @throws {RequiredError}
|
|
6841
6926
|
*/
|
|
6842
|
-
getMotionGroupDescription(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
6927
|
+
getMotionGroupDescription(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<MotionGroupDescription, any>>;
|
|
6843
6928
|
/**
|
|
6844
6929
|
* **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
6930
|
* @summary Stream State
|
|
@@ -6851,7 +6936,7 @@ declare class MotionGroupApi extends BaseAPI {
|
|
|
6851
6936
|
* @param {*} [options] Override http request option.
|
|
6852
6937
|
* @throws {RequiredError}
|
|
6853
6938
|
*/
|
|
6854
|
-
streamMotionGroupState(cell: string, controller: string, motionGroup: string, responseRate?: number, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<
|
|
6939
|
+
streamMotionGroupState(cell: string, controller: string, motionGroup: string, responseRate?: number, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<MotionGroupState, any>>;
|
|
6855
6940
|
}
|
|
6856
6941
|
/**
|
|
6857
6942
|
* MotionGroupModelsApi - axios parameter creator
|
|
@@ -7000,7 +7085,7 @@ declare class MotionGroupModelsApi extends BaseAPI {
|
|
|
7000
7085
|
* @param {*} [options] Override http request option.
|
|
7001
7086
|
* @throws {RequiredError}
|
|
7002
7087
|
*/
|
|
7003
|
-
getMotionGroupCollisionModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<
|
|
7088
|
+
getMotionGroupCollisionModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
|
|
7004
7089
|
[key: string]: Collider;
|
|
7005
7090
|
}[], any>>;
|
|
7006
7091
|
/**
|
|
@@ -7010,7 +7095,7 @@ declare class MotionGroupModelsApi extends BaseAPI {
|
|
|
7010
7095
|
* @param {*} [options] Override http request option.
|
|
7011
7096
|
* @throws {RequiredError}
|
|
7012
7097
|
*/
|
|
7013
|
-
getMotionGroupGlbModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<
|
|
7098
|
+
getMotionGroupGlbModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<File, any>>;
|
|
7014
7099
|
/**
|
|
7015
7100
|
* **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
7101
|
* @summary Get Kinematics
|
|
@@ -7018,14 +7103,14 @@ declare class MotionGroupModelsApi extends BaseAPI {
|
|
|
7018
7103
|
* @param {*} [options] Override http request option.
|
|
7019
7104
|
* @throws {RequiredError}
|
|
7020
7105
|
*/
|
|
7021
|
-
getMotionGroupKinematicModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<
|
|
7106
|
+
getMotionGroupKinematicModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<KinematicModel, any>>;
|
|
7022
7107
|
/**
|
|
7023
7108
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the list of supported motion group models.
|
|
7024
7109
|
* @summary Motion Group Models
|
|
7025
7110
|
* @param {*} [options] Override http request option.
|
|
7026
7111
|
* @throws {RequiredError}
|
|
7027
7112
|
*/
|
|
7028
|
-
getMotionGroupModels(options?: RawAxiosRequestConfig): Promise<
|
|
7113
|
+
getMotionGroupModels(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
|
|
7029
7114
|
/**
|
|
7030
7115
|
* **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
7116
|
* @summary Download USD Model
|
|
@@ -7033,7 +7118,7 @@ declare class MotionGroupModelsApi extends BaseAPI {
|
|
|
7033
7118
|
* @param {*} [options] Override http request option.
|
|
7034
7119
|
* @throws {RequiredError}
|
|
7035
7120
|
*/
|
|
7036
|
-
getMotionGroupUsdModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<
|
|
7121
|
+
getMotionGroupUsdModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<File, any>>;
|
|
7037
7122
|
}
|
|
7038
7123
|
/**
|
|
7039
7124
|
* NOVACloudApi - axios parameter creator
|
|
@@ -7134,7 +7219,7 @@ declare class NOVACloudApi extends BaseAPI {
|
|
|
7134
7219
|
* @param {*} [options] Override http request option.
|
|
7135
7220
|
* @throws {RequiredError}
|
|
7136
7221
|
*/
|
|
7137
|
-
connectToNovaCloud(completionTimeout?: number, cloudConnectionRequest?: CloudConnectionRequest, options?: RawAxiosRequestConfig): Promise<
|
|
7222
|
+
connectToNovaCloud(completionTimeout?: number, cloudConnectionRequest?: CloudConnectionRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CloudRegistrationSuccessResponse, any>>;
|
|
7138
7223
|
/**
|
|
7139
7224
|
* **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
7225
|
* @summary Disconnect from NOVA Cloud
|
|
@@ -7142,14 +7227,14 @@ declare class NOVACloudApi extends BaseAPI {
|
|
|
7142
7227
|
* @param {*} [options] Override http request option.
|
|
7143
7228
|
* @throws {RequiredError}
|
|
7144
7229
|
*/
|
|
7145
|
-
disconnectFromNovaCloud(completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
7230
|
+
disconnectFromNovaCloud(completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CloudDisconnectionStatusDisconnected, any>>;
|
|
7146
7231
|
/**
|
|
7147
7232
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection config for this instance.
|
|
7148
7233
|
* @summary Get Connection Config
|
|
7149
7234
|
* @param {*} [options] Override http request option.
|
|
7150
7235
|
* @throws {RequiredError}
|
|
7151
7236
|
*/
|
|
7152
|
-
getNovaCloudConfig(options?: RawAxiosRequestConfig): Promise<
|
|
7237
|
+
getNovaCloudConfig(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CloudConfigStatus, any>>;
|
|
7153
7238
|
}
|
|
7154
7239
|
/**
|
|
7155
7240
|
* ProgramApi - axios parameter creator
|
|
@@ -7286,7 +7371,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
7286
7371
|
* @param {*} [options] Override http request option.
|
|
7287
7372
|
* @throws {RequiredError}
|
|
7288
7373
|
*/
|
|
7289
|
-
getProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<
|
|
7374
|
+
getProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Program, any>>;
|
|
7290
7375
|
/**
|
|
7291
7376
|
* **Required permissions:** `can_operate_programs` - Execute and monitor programs ___ <!-- theme: danger --> > **Experimental** List details of all existing programs.
|
|
7292
7377
|
* @summary List programs
|
|
@@ -7294,7 +7379,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
7294
7379
|
* @param {*} [options] Override http request option.
|
|
7295
7380
|
* @throws {RequiredError}
|
|
7296
7381
|
*/
|
|
7297
|
-
listPrograms(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
7382
|
+
listPrograms(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Program[], any>>;
|
|
7298
7383
|
/**
|
|
7299
7384
|
* **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
7385
|
* @summary Start the program
|
|
@@ -7304,7 +7389,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
7304
7389
|
* @param {*} [options] Override http request option.
|
|
7305
7390
|
* @throws {RequiredError}
|
|
7306
7391
|
*/
|
|
7307
|
-
startProgram(cell: string, program: string, programStartRequest: ProgramStartRequest, options?: RawAxiosRequestConfig): Promise<
|
|
7392
|
+
startProgram(cell: string, program: string, programStartRequest: ProgramStartRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ProgramRun, any>>;
|
|
7308
7393
|
/**
|
|
7309
7394
|
* **Required permissions:** `can_operate_programs` - Execute and monitor programs ___ <!-- theme: danger --> > **Experimental** Stop a specific program run.
|
|
7310
7395
|
* @summary Stop program run
|
|
@@ -7313,7 +7398,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
7313
7398
|
* @param {*} [options] Override http request option.
|
|
7314
7399
|
* @throws {RequiredError}
|
|
7315
7400
|
*/
|
|
7316
|
-
stopProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<
|
|
7401
|
+
stopProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
|
|
7317
7402
|
}
|
|
7318
7403
|
/**
|
|
7319
7404
|
* RobotConfigurationsApi - axios parameter creator
|
|
@@ -7386,14 +7471,14 @@ declare class RobotConfigurationsApi extends BaseAPI {
|
|
|
7386
7471
|
* @param {*} [options] Override http request option.
|
|
7387
7472
|
* @throws {RequiredError}
|
|
7388
7473
|
*/
|
|
7389
|
-
getControllerConfigFromArpScan(robotControllerConfigurationRequest: RobotControllerConfigurationRequest, options?: RawAxiosRequestConfig): Promise<
|
|
7474
|
+
getControllerConfigFromArpScan(robotControllerConfigurationRequest: RobotControllerConfigurationRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<RobotController[], any>>;
|
|
7390
7475
|
/**
|
|
7391
7476
|
* **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
7477
|
* @summary List Robot Configurations
|
|
7393
7478
|
* @param {*} [options] Override http request option.
|
|
7394
7479
|
* @throws {RequiredError}
|
|
7395
7480
|
*/
|
|
7396
|
-
getRobotConfigurations(options?: RawAxiosRequestConfig): Promise<
|
|
7481
|
+
getRobotConfigurations(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
|
|
7397
7482
|
}
|
|
7398
7483
|
/**
|
|
7399
7484
|
* StoreCollisionComponentsApi - axios parameter creator
|
|
@@ -7866,7 +7951,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
7866
7951
|
* @param {*} [options] Override http request option.
|
|
7867
7952
|
* @throws {RequiredError}
|
|
7868
7953
|
*/
|
|
7869
|
-
deleteStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<
|
|
7954
|
+
deleteStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
|
|
7870
7955
|
/**
|
|
7871
7956
|
* **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
7957
|
* @summary Delete Link Chain
|
|
@@ -7875,7 +7960,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
7875
7960
|
* @param {*} [options] Override http request option.
|
|
7876
7961
|
* @throws {RequiredError}
|
|
7877
7962
|
*/
|
|
7878
|
-
deleteStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<
|
|
7963
|
+
deleteStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
|
|
7879
7964
|
/**
|
|
7880
7965
|
* **Required permissions:** `can_write_collision_world` - Write collision models and scenes ___ Deletes the stored tool. <!-- theme: danger --> > This will delete persistently stored data.
|
|
7881
7966
|
* @summary Delete Tool
|
|
@@ -7884,7 +7969,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
7884
7969
|
* @param {*} [options] Override http request option.
|
|
7885
7970
|
* @throws {RequiredError}
|
|
7886
7971
|
*/
|
|
7887
|
-
deleteStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<
|
|
7972
|
+
deleteStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
|
|
7888
7973
|
/**
|
|
7889
7974
|
* **Required permissions:** `can_read_collision_world` - Read collision models and scenes ___ Returns the collider.
|
|
7890
7975
|
* @summary Get Collider
|
|
@@ -7893,7 +7978,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
7893
7978
|
* @param {*} [options] Override http request option.
|
|
7894
7979
|
* @throws {RequiredError}
|
|
7895
7980
|
*/
|
|
7896
|
-
getStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<
|
|
7981
|
+
getStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Collider, any>>;
|
|
7897
7982
|
/**
|
|
7898
7983
|
* **Required permissions:** `can_read_collision_world` - Read collision models and scenes ___ Returns the collision link chain.
|
|
7899
7984
|
* @summary Get Link Chain
|
|
@@ -7902,7 +7987,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
7902
7987
|
* @param {*} [options] Override http request option.
|
|
7903
7988
|
* @throws {RequiredError}
|
|
7904
7989
|
*/
|
|
7905
|
-
getStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<
|
|
7990
|
+
getStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
|
|
7906
7991
|
[key: string]: Collider;
|
|
7907
7992
|
}[], any>>;
|
|
7908
7993
|
/**
|
|
@@ -7913,7 +7998,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
7913
7998
|
* @param {*} [options] Override http request option.
|
|
7914
7999
|
* @throws {RequiredError}
|
|
7915
8000
|
*/
|
|
7916
|
-
getStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<
|
|
8001
|
+
getStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
|
|
7917
8002
|
[key: string]: Collider;
|
|
7918
8003
|
}, any>>;
|
|
7919
8004
|
/**
|
|
@@ -7923,7 +8008,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
7923
8008
|
* @param {*} [options] Override http request option.
|
|
7924
8009
|
* @throws {RequiredError}
|
|
7925
8010
|
*/
|
|
7926
|
-
listCollisionLinkChains(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
8011
|
+
listCollisionLinkChains(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
|
|
7927
8012
|
[key: string]: {
|
|
7928
8013
|
[key: string]: Collider;
|
|
7929
8014
|
}[];
|
|
@@ -7935,7 +8020,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
7935
8020
|
* @param {*} [options] Override http request option.
|
|
7936
8021
|
* @throws {RequiredError}
|
|
7937
8022
|
*/
|
|
7938
|
-
listCollisionLinkChainsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
8023
|
+
listCollisionLinkChainsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
|
|
7939
8024
|
/**
|
|
7940
8025
|
* **Required permissions:** `can_read_collision_world` - Read collision models and scenes ___ Returns all stored colliders.
|
|
7941
8026
|
* @summary List Colliders
|
|
@@ -7943,7 +8028,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
7943
8028
|
* @param {*} [options] Override http request option.
|
|
7944
8029
|
* @throws {RequiredError}
|
|
7945
8030
|
*/
|
|
7946
|
-
listStoredColliders(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
8031
|
+
listStoredColliders(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
|
|
7947
8032
|
[key: string]: Collider;
|
|
7948
8033
|
}, any>>;
|
|
7949
8034
|
/**
|
|
@@ -7953,7 +8038,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
7953
8038
|
* @param {*} [options] Override http request option.
|
|
7954
8039
|
* @throws {RequiredError}
|
|
7955
8040
|
*/
|
|
7956
|
-
listStoredCollidersKeys(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
8041
|
+
listStoredCollidersKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
|
|
7957
8042
|
/**
|
|
7958
8043
|
* **Required permissions:** `can_read_collision_world` - Read collision models and scenes ___ Returns the list of stored tools.
|
|
7959
8044
|
* @summary List Tools
|
|
@@ -7961,7 +8046,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
7961
8046
|
* @param {*} [options] Override http request option.
|
|
7962
8047
|
* @throws {RequiredError}
|
|
7963
8048
|
*/
|
|
7964
|
-
listStoredCollisionTools(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
8049
|
+
listStoredCollisionTools(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
|
|
7965
8050
|
[key: string]: {
|
|
7966
8051
|
[key: string]: Collider;
|
|
7967
8052
|
};
|
|
@@ -7973,7 +8058,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
7973
8058
|
* @param {*} [options] Override http request option.
|
|
7974
8059
|
* @throws {RequiredError}
|
|
7975
8060
|
*/
|
|
7976
|
-
listStoredCollisionToolsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
8061
|
+
listStoredCollisionToolsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
|
|
7977
8062
|
/**
|
|
7978
8063
|
* **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
8064
|
* @summary Store Collider
|
|
@@ -7983,7 +8068,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
7983
8068
|
* @param {*} [options] Override http request option.
|
|
7984
8069
|
* @throws {RequiredError}
|
|
7985
8070
|
*/
|
|
7986
|
-
storeCollider(cell: string, collider: string, collider2: Collider, options?: RawAxiosRequestConfig): Promise<
|
|
8071
|
+
storeCollider(cell: string, collider: string, collider2: Collider, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Collider, any>>;
|
|
7987
8072
|
/**
|
|
7988
8073
|
* **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
8074
|
* @summary Store Link Chain
|
|
@@ -7995,7 +8080,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
7995
8080
|
*/
|
|
7996
8081
|
storeCollisionLinkChain(cell: string, linkChain: string, collider: Array<{
|
|
7997
8082
|
[key: string]: Collider;
|
|
7998
|
-
}>, options?: RawAxiosRequestConfig): Promise<
|
|
8083
|
+
}>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
|
|
7999
8084
|
[key: string]: Collider;
|
|
8000
8085
|
}[], any>>;
|
|
8001
8086
|
/**
|
|
@@ -8009,7 +8094,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
8009
8094
|
*/
|
|
8010
8095
|
storeCollisionTool(cell: string, tool: string, requestBody: {
|
|
8011
8096
|
[key: string]: Collider;
|
|
8012
|
-
}, options?: RawAxiosRequestConfig): Promise<
|
|
8097
|
+
}, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
|
|
8013
8098
|
[key: string]: Collider;
|
|
8014
8099
|
}, any>>;
|
|
8015
8100
|
}
|
|
@@ -8176,7 +8261,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
|
|
|
8176
8261
|
* @param {*} [options] Override http request option.
|
|
8177
8262
|
* @throws {RequiredError}
|
|
8178
8263
|
*/
|
|
8179
|
-
deleteStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<
|
|
8264
|
+
deleteStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
|
|
8180
8265
|
/**
|
|
8181
8266
|
* **Required permissions:** `can_read_collision_world` - Read collision models and scenes ___ Returns the stored collision setup.
|
|
8182
8267
|
* @summary Get Collision Setup
|
|
@@ -8185,7 +8270,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
|
|
|
8185
8270
|
* @param {*} [options] Override http request option.
|
|
8186
8271
|
* @throws {RequiredError}
|
|
8187
8272
|
*/
|
|
8188
|
-
getStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<
|
|
8273
|
+
getStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CollisionSetup, any>>;
|
|
8189
8274
|
/**
|
|
8190
8275
|
* **Required permissions:** `can_read_collision_world` - Read collision models and scenes ___ Returns a list of stored collision setups.
|
|
8191
8276
|
* @summary List Collision Setups
|
|
@@ -8193,7 +8278,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
|
|
|
8193
8278
|
* @param {*} [options] Override http request option.
|
|
8194
8279
|
* @throws {RequiredError}
|
|
8195
8280
|
*/
|
|
8196
|
-
listStoredCollisionSetups(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
8281
|
+
listStoredCollisionSetups(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<{
|
|
8197
8282
|
[key: string]: CollisionSetup;
|
|
8198
8283
|
}, any>>;
|
|
8199
8284
|
/**
|
|
@@ -8203,7 +8288,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
|
|
|
8203
8288
|
* @param {*} [options] Override http request option.
|
|
8204
8289
|
* @throws {RequiredError}
|
|
8205
8290
|
*/
|
|
8206
|
-
listStoredCollisionSetupsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
8291
|
+
listStoredCollisionSetupsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
|
|
8207
8292
|
/**
|
|
8208
8293
|
* **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
8294
|
* @summary Store Collision Setup
|
|
@@ -8213,7 +8298,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
|
|
|
8213
8298
|
* @param {*} [options] Override http request option.
|
|
8214
8299
|
* @throws {RequiredError}
|
|
8215
8300
|
*/
|
|
8216
|
-
storeCollisionSetup(cell: string, setup: string, collisionSetup: CollisionSetup, options?: RawAxiosRequestConfig): Promise<
|
|
8301
|
+
storeCollisionSetup(cell: string, setup: string, collisionSetup: CollisionSetup, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CollisionSetup, any>>;
|
|
8217
8302
|
}
|
|
8218
8303
|
/**
|
|
8219
8304
|
* StoreObjectApi - axios parameter creator
|
|
@@ -8409,7 +8494,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
8409
8494
|
* @param {*} [options] Override http request option.
|
|
8410
8495
|
* @throws {RequiredError}
|
|
8411
8496
|
*/
|
|
8412
|
-
clearAllObjects(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
8497
|
+
clearAllObjects(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
|
|
8413
8498
|
/**
|
|
8414
8499
|
* **Required permissions:** `can_write_objects` - Write stored objects ___ Delete an object <!-- theme: danger --> > This will delete persistently stored data.
|
|
8415
8500
|
* @summary Delete Object
|
|
@@ -8418,7 +8503,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
8418
8503
|
* @param {*} [options] Override http request option.
|
|
8419
8504
|
* @throws {RequiredError}
|
|
8420
8505
|
*/
|
|
8421
|
-
deleteObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<
|
|
8506
|
+
deleteObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
|
|
8422
8507
|
/**
|
|
8423
8508
|
* **Required permissions:** `can_read_objects` - Read stored objects ___ Returns content and metadata of a stored object.
|
|
8424
8509
|
* @summary Get Object
|
|
@@ -8427,7 +8512,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
8427
8512
|
* @param {*} [options] Override http request option.
|
|
8428
8513
|
* @throws {RequiredError}
|
|
8429
8514
|
*/
|
|
8430
|
-
getObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<
|
|
8515
|
+
getObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<File, any>>;
|
|
8431
8516
|
/**
|
|
8432
8517
|
* **Required permissions:** `can_read_objects` - Read stored objects ___ Returns metadata. Object content is not returned.
|
|
8433
8518
|
* @summary Get Object Metadata
|
|
@@ -8436,7 +8521,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
8436
8521
|
* @param {*} [options] Override http request option.
|
|
8437
8522
|
* @throws {RequiredError}
|
|
8438
8523
|
*/
|
|
8439
|
-
getObjectMetadata(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<
|
|
8524
|
+
getObjectMetadata(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
|
|
8440
8525
|
/**
|
|
8441
8526
|
* **Required permissions:** `can_read_objects` - Read stored objects ___ List the keys for all objects.
|
|
8442
8527
|
* @summary List all Object Keys
|
|
@@ -8444,7 +8529,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
8444
8529
|
* @param {*} [options] Override http request option.
|
|
8445
8530
|
* @throws {RequiredError}
|
|
8446
8531
|
*/
|
|
8447
|
-
listAllObjectKeys(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
8532
|
+
listAllObjectKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string[], any>>;
|
|
8448
8533
|
/**
|
|
8449
8534
|
* **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
8535
|
* @summary Store Object
|
|
@@ -8457,7 +8542,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
8457
8542
|
*/
|
|
8458
8543
|
storeObject(cell: string, key: string, xMetadata?: {
|
|
8459
8544
|
[key: string]: string;
|
|
8460
|
-
}, anyValue?: any, options?: RawAxiosRequestConfig): Promise<
|
|
8545
|
+
}, anyValue?: any, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
|
|
8461
8546
|
}
|
|
8462
8547
|
/**
|
|
8463
8548
|
* SystemApi - axios parameter creator
|
|
@@ -8776,7 +8861,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
8776
8861
|
*/
|
|
8777
8862
|
backupConfiguration(resources?: Array<string>, metadata?: {
|
|
8778
8863
|
[key: string]: string;
|
|
8779
|
-
}, options?: RawAxiosRequestConfig): Promise<
|
|
8864
|
+
}, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<File, any>>;
|
|
8780
8865
|
/**
|
|
8781
8866
|
* **Required permissions:** `can_update_system` - Update system versions and services ___ Check if a more recent Wandelbots NOVA Version is available.
|
|
8782
8867
|
* @summary Check update
|
|
@@ -8784,7 +8869,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
8784
8869
|
* @param {*} [options] Override http request option.
|
|
8785
8870
|
* @throws {RequiredError}
|
|
8786
8871
|
*/
|
|
8787
|
-
checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<
|
|
8872
|
+
checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string, any>>;
|
|
8788
8873
|
/**
|
|
8789
8874
|
* **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
8875
|
* @summary Get ARP-Scan
|
|
@@ -8794,7 +8879,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
8794
8879
|
* @param {*} [options] Override http request option.
|
|
8795
8880
|
* @throws {RequiredError}
|
|
8796
8881
|
*/
|
|
8797
|
-
getArpScan(_interface?: string, cidr?: string, timeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
8882
|
+
getArpScan(_interface?: string, cidr?: string, timeout?: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<NetworkDevice[], any>>;
|
|
8798
8883
|
/**
|
|
8799
8884
|
* **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
8885
|
* @summary Retrieve Backup Status
|
|
@@ -8802,49 +8887,49 @@ declare class SystemApi extends BaseAPI {
|
|
|
8802
8887
|
* @param {*} [options] Override http request option.
|
|
8803
8888
|
* @throws {RequiredError}
|
|
8804
8889
|
*/
|
|
8805
|
-
getConfigurationBackupStatus(operationId: string, options?: RawAxiosRequestConfig): Promise<
|
|
8890
|
+
getConfigurationBackupStatus(operationId: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ConfigurationArchiveStatus, any>>;
|
|
8806
8891
|
/**
|
|
8807
8892
|
* **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
8893
|
* @summary Download Diagnosis Package
|
|
8809
8894
|
* @param {*} [options] Override http request option.
|
|
8810
8895
|
* @throws {RequiredError}
|
|
8811
8896
|
*/
|
|
8812
|
-
getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<
|
|
8897
|
+
getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<File, any>>;
|
|
8813
8898
|
/**
|
|
8814
8899
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the network interfaces of the system.
|
|
8815
8900
|
* @summary Network Interfaces
|
|
8816
8901
|
* @param {*} [options] Override http request option.
|
|
8817
8902
|
* @throws {RequiredError}
|
|
8818
8903
|
*/
|
|
8819
|
-
getNetworkInterfaces(options?: RawAxiosRequestConfig): Promise<
|
|
8904
|
+
getNetworkInterfaces(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<NetworkInterface[], any>>;
|
|
8820
8905
|
/**
|
|
8821
8906
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current state of the network.
|
|
8822
8907
|
* @summary Network State
|
|
8823
8908
|
* @param {*} [options] Override http request option.
|
|
8824
8909
|
* @throws {RequiredError}
|
|
8825
8910
|
*/
|
|
8826
|
-
getNetworkState(options?: RawAxiosRequestConfig): Promise<
|
|
8911
|
+
getNetworkState(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<NetworkState, any>>;
|
|
8827
8912
|
/**
|
|
8828
8913
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Get the status of all system services.
|
|
8829
8914
|
* @summary Wandelbots NOVA status
|
|
8830
8915
|
* @param {*} [options] Override http request option.
|
|
8831
8916
|
* @throws {RequiredError}
|
|
8832
8917
|
*/
|
|
8833
|
-
getSystemStatus(options?: RawAxiosRequestConfig): Promise<
|
|
8918
|
+
getSystemStatus(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ServiceStatus[], any>>;
|
|
8834
8919
|
/**
|
|
8835
8920
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Get the current Wandelbots NOVA version.
|
|
8836
8921
|
* @summary Wandelbots NOVA Version
|
|
8837
8922
|
* @param {*} [options] Override http request option.
|
|
8838
8923
|
* @throws {RequiredError}
|
|
8839
8924
|
*/
|
|
8840
|
-
getSystemVersion(options?: RawAxiosRequestConfig): Promise<
|
|
8925
|
+
getSystemVersion(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<string, any>>;
|
|
8841
8926
|
/**
|
|
8842
8927
|
* **Required permissions:** `can_backup_system` - Create system backups ___ Retrieves a list of all available configuration resources for backup purposes.
|
|
8843
8928
|
* @summary List Configuration Resources
|
|
8844
8929
|
* @param {*} [options] Override http request option.
|
|
8845
8930
|
* @throws {RequiredError}
|
|
8846
8931
|
*/
|
|
8847
|
-
listConfigurationResources(options?: RawAxiosRequestConfig): Promise<
|
|
8932
|
+
listConfigurationResources(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ConfigurationResource[], any>>;
|
|
8848
8933
|
/**
|
|
8849
8934
|
* **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
8935
|
* @summary Restore Configuration Backup
|
|
@@ -8853,7 +8938,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
8853
8938
|
* @param {*} [options] Override http request option.
|
|
8854
8939
|
* @throws {RequiredError}
|
|
8855
8940
|
*/
|
|
8856
|
-
restoreConfiguration(body: File, resources?: Array<string>, options?: RawAxiosRequestConfig): Promise<
|
|
8941
|
+
restoreConfiguration(body: File, resources?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
|
|
8857
8942
|
/**
|
|
8858
8943
|
* **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
8944
|
* @summary Update Wandelbots NOVA version
|
|
@@ -8861,7 +8946,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
8861
8946
|
* @param {*} [options] Override http request option.
|
|
8862
8947
|
* @throws {RequiredError}
|
|
8863
8948
|
*/
|
|
8864
|
-
updateNovaVersion(updateNovaVersionRequest: UpdateNovaVersionRequest, options?: RawAxiosRequestConfig): Promise<
|
|
8949
|
+
updateNovaVersion(updateNovaVersionRequest: UpdateNovaVersionRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
|
|
8865
8950
|
}
|
|
8866
8951
|
/**
|
|
8867
8952
|
* TrajectoryCachingApi - axios parameter creator
|
|
@@ -9035,7 +9120,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
|
|
|
9035
9120
|
* @param {*} [options] Override http request option.
|
|
9036
9121
|
* @throws {RequiredError}
|
|
9037
9122
|
*/
|
|
9038
|
-
addTrajectory(cell: string, controller: string, addTrajectoryRequest: AddTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<
|
|
9123
|
+
addTrajectory(cell: string, controller: string, addTrajectoryRequest: AddTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<AddTrajectoryResponse, any>>;
|
|
9039
9124
|
/**
|
|
9040
9125
|
* **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ Clear the trajectory cache.
|
|
9041
9126
|
* @summary Clear Trajectories
|
|
@@ -9044,7 +9129,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
|
|
|
9044
9129
|
* @param {*} [options] Override http request option.
|
|
9045
9130
|
* @throws {RequiredError}
|
|
9046
9131
|
*/
|
|
9047
|
-
clearTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
9132
|
+
clearTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
|
|
9048
9133
|
/**
|
|
9049
9134
|
* **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
9135
|
* @summary Delete Trajectory
|
|
@@ -9054,7 +9139,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
|
|
|
9054
9139
|
* @param {*} [options] Override http request option.
|
|
9055
9140
|
* @throws {RequiredError}
|
|
9056
9141
|
*/
|
|
9057
|
-
deleteTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<
|
|
9142
|
+
deleteTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
|
|
9058
9143
|
/**
|
|
9059
9144
|
* **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
9145
|
* @summary Get Trajectory
|
|
@@ -9064,7 +9149,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
|
|
|
9064
9149
|
* @param {*} [options] Override http request option.
|
|
9065
9150
|
* @throws {RequiredError}
|
|
9066
9151
|
*/
|
|
9067
|
-
getTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<
|
|
9152
|
+
getTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<GetTrajectoryResponse, any>>;
|
|
9068
9153
|
/**
|
|
9069
9154
|
* **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
9155
|
* @summary List Trajectories
|
|
@@ -9073,7 +9158,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
|
|
|
9073
9158
|
* @param {*} [options] Override http request option.
|
|
9074
9159
|
* @throws {RequiredError}
|
|
9075
9160
|
*/
|
|
9076
|
-
listTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
9161
|
+
listTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ListTrajectoriesResponse, any>>;
|
|
9077
9162
|
}
|
|
9078
9163
|
/**
|
|
9079
9164
|
* TrajectoryExecutionApi - axios parameter creator
|
|
@@ -9133,7 +9218,7 @@ declare class TrajectoryExecutionApi extends BaseAPI {
|
|
|
9133
9218
|
* @param {*} [options] Override http request option.
|
|
9134
9219
|
* @throws {RequiredError}
|
|
9135
9220
|
*/
|
|
9136
|
-
executeTrajectory(cell: string, controller: string, executeTrajectoryRequest: ExecuteTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<
|
|
9221
|
+
executeTrajectory(cell: string, controller: string, executeTrajectoryRequest: ExecuteTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ExecuteTrajectoryResponse, any>>;
|
|
9137
9222
|
}
|
|
9138
9223
|
/**
|
|
9139
9224
|
* TrajectoryPlanningApi - axios parameter creator
|
|
@@ -9270,7 +9355,7 @@ declare class TrajectoryPlanningApi extends BaseAPI {
|
|
|
9270
9355
|
* @param {*} [options] Override http request option.
|
|
9271
9356
|
* @throws {RequiredError}
|
|
9272
9357
|
*/
|
|
9273
|
-
mergeTrajectories(cell: string, mergeTrajectoriesRequest: MergeTrajectoriesRequest, options?: RawAxiosRequestConfig): Promise<
|
|
9358
|
+
mergeTrajectories(cell: string, mergeTrajectoriesRequest: MergeTrajectoriesRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<MergeTrajectoriesResponse, any>>;
|
|
9274
9359
|
/**
|
|
9275
9360
|
* **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
9361
|
* @summary Plan Collision-Free Trajectory
|
|
@@ -9279,7 +9364,7 @@ declare class TrajectoryPlanningApi extends BaseAPI {
|
|
|
9279
9364
|
* @param {*} [options] Override http request option.
|
|
9280
9365
|
* @throws {RequiredError}
|
|
9281
9366
|
*/
|
|
9282
|
-
planCollisionFree(cell: string, planCollisionFreeRequest: PlanCollisionFreeRequest, options?: RawAxiosRequestConfig): Promise<
|
|
9367
|
+
planCollisionFree(cell: string, planCollisionFreeRequest: PlanCollisionFreeRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<PlanCollisionFreeResponse, any>>;
|
|
9283
9368
|
/**
|
|
9284
9369
|
* **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
9370
|
* @summary Plan Trajectory
|
|
@@ -9288,7 +9373,7 @@ declare class TrajectoryPlanningApi extends BaseAPI {
|
|
|
9288
9373
|
* @param {*} [options] Override http request option.
|
|
9289
9374
|
* @throws {RequiredError}
|
|
9290
9375
|
*/
|
|
9291
|
-
planTrajectory(cell: string, planTrajectoryRequest: PlanTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<
|
|
9376
|
+
planTrajectory(cell: string, planTrajectoryRequest: PlanTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<PlanTrajectoryResponse, any>>;
|
|
9292
9377
|
/**
|
|
9293
9378
|
* **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
9379
|
* @summary Search Collision-Free Trajectories for Multiple Motion Groups
|
|
@@ -9297,7 +9382,7 @@ declare class TrajectoryPlanningApi extends BaseAPI {
|
|
|
9297
9382
|
* @param {*} [options] Override http request option.
|
|
9298
9383
|
* @throws {RequiredError}
|
|
9299
9384
|
*/
|
|
9300
|
-
searchCollisionFreeMultiMotionGroup(cell: string, multiSearchCollisionFreeRequest: MultiSearchCollisionFreeRequest, options?: RawAxiosRequestConfig): Promise<
|
|
9385
|
+
searchCollisionFreeMultiMotionGroup(cell: string, multiSearchCollisionFreeRequest: MultiSearchCollisionFreeRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<MultiSearchCollisionFreeResponse, any>>;
|
|
9301
9386
|
}
|
|
9302
9387
|
/**
|
|
9303
9388
|
* VersionApi - axios parameter creator
|
|
@@ -9345,7 +9430,7 @@ declare class VersionApi extends BaseAPI {
|
|
|
9345
9430
|
* @param {*} [options] Override http request option.
|
|
9346
9431
|
* @throws {RequiredError}
|
|
9347
9432
|
*/
|
|
9348
|
-
getApiVersion(options?: RawAxiosRequestConfig): Promise<
|
|
9433
|
+
getApiVersion(options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ApiVersion, any>>;
|
|
9349
9434
|
}
|
|
9350
9435
|
/**
|
|
9351
9436
|
* VirtualControllerApi - axios parameter creator
|
|
@@ -9982,7 +10067,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
9982
10067
|
* @param {*} [options] Override http request option.
|
|
9983
10068
|
* @throws {RequiredError}
|
|
9984
10069
|
*/
|
|
9985
|
-
addVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, coordinateSystemData: CoordinateSystemData, options?: RawAxiosRequestConfig): Promise<
|
|
10070
|
+
addVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, coordinateSystemData: CoordinateSystemData, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
|
|
9986
10071
|
/**
|
|
9987
10072
|
* **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
10073
|
* @summary Add Motion Group
|
|
@@ -9992,7 +10077,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
9992
10077
|
* @param {*} [options] Override http request option.
|
|
9993
10078
|
* @throws {RequiredError}
|
|
9994
10079
|
*/
|
|
9995
|
-
addVirtualControllerMotionGroup(cell: string, controller: string, addVirtualControllerMotionGroupRequest: AddVirtualControllerMotionGroupRequest, options?: RawAxiosRequestConfig): Promise<
|
|
10080
|
+
addVirtualControllerMotionGroup(cell: string, controller: string, addVirtualControllerMotionGroupRequest: AddVirtualControllerMotionGroupRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
|
|
9996
10081
|
/**
|
|
9997
10082
|
* **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
10083
|
* @summary Add Safety Zone
|
|
@@ -10002,7 +10087,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
10002
10087
|
* @param {*} [options] Override http request option.
|
|
10003
10088
|
* @throws {RequiredError}
|
|
10004
10089
|
*/
|
|
10005
|
-
addVirtualControllerSafetyZone(cell: string, controller: string, safetyZone: SafetyZone, options?: RawAxiosRequestConfig): Promise<
|
|
10090
|
+
addVirtualControllerSafetyZone(cell: string, controller: string, safetyZone: SafetyZone, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
|
|
10006
10091
|
/**
|
|
10007
10092
|
* **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
10093
|
* @summary Add TCP
|
|
@@ -10014,7 +10099,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
10014
10099
|
* @param {*} [options] Override http request option.
|
|
10015
10100
|
* @throws {RequiredError}
|
|
10016
10101
|
*/
|
|
10017
|
-
addVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, robotTcpData: RobotTcpData, options?: RawAxiosRequestConfig): Promise<
|
|
10102
|
+
addVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, robotTcpData: RobotTcpData, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
|
|
10018
10103
|
/**
|
|
10019
10104
|
* **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
10105
|
* @summary Delete Coordinate System
|
|
@@ -10025,7 +10110,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
10025
10110
|
* @param {*} [options] Override http request option.
|
|
10026
10111
|
* @throws {RequiredError}
|
|
10027
10112
|
*/
|
|
10028
|
-
deleteVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<
|
|
10113
|
+
deleteVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
|
|
10029
10114
|
/**
|
|
10030
10115
|
* **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
10116
|
* @summary Delete Motion Group
|
|
@@ -10035,7 +10120,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
10035
10120
|
* @param {*} [options] Override http request option.
|
|
10036
10121
|
* @throws {RequiredError}
|
|
10037
10122
|
*/
|
|
10038
|
-
deleteVirtualControllerMotionGroup(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
10123
|
+
deleteVirtualControllerMotionGroup(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
|
|
10039
10124
|
/**
|
|
10040
10125
|
* **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
10126
|
* @summary Delete Safety Zone
|
|
@@ -10045,7 +10130,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
10045
10130
|
* @param {*} [options] Override http request option.
|
|
10046
10131
|
* @throws {RequiredError}
|
|
10047
10132
|
*/
|
|
10048
|
-
deleteVirtualControllerSafetyZone(cell: string, controller: string, id: number, options?: RawAxiosRequestConfig): Promise<
|
|
10133
|
+
deleteVirtualControllerSafetyZone(cell: string, controller: string, id: number, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
|
|
10049
10134
|
/**
|
|
10050
10135
|
* **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
10136
|
* @summary Remove TCP
|
|
@@ -10056,7 +10141,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
10056
10141
|
* @param {*} [options] Override http request option.
|
|
10057
10142
|
* @throws {RequiredError}
|
|
10058
10143
|
*/
|
|
10059
|
-
deleteVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): Promise<
|
|
10144
|
+
deleteVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
|
|
10060
10145
|
/**
|
|
10061
10146
|
* **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
10147
|
* @summary Get Emergency Stop State
|
|
@@ -10065,7 +10150,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
10065
10150
|
* @param {*} [options] Override http request option.
|
|
10066
10151
|
* @throws {RequiredError}
|
|
10067
10152
|
*/
|
|
10068
|
-
getEmergencyStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
10153
|
+
getEmergencyStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Flag, any>>;
|
|
10069
10154
|
/**
|
|
10070
10155
|
* **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
10156
|
* @summary Get Motion Group State
|
|
@@ -10075,7 +10160,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
10075
10160
|
* @param {*} [options] Override http request option.
|
|
10076
10161
|
* @throws {RequiredError}
|
|
10077
10162
|
*/
|
|
10078
|
-
getMotionGroupState(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
10163
|
+
getMotionGroupState(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<MotionGroupJoints, any>>;
|
|
10079
10164
|
/**
|
|
10080
10165
|
* **Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ Gets information on the motion group.
|
|
10081
10166
|
* @summary Motion Group Description
|
|
@@ -10084,7 +10169,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
10084
10169
|
* @param {*} [options] Override http request option.
|
|
10085
10170
|
* @throws {RequiredError}
|
|
10086
10171
|
*/
|
|
10087
|
-
getMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
10172
|
+
getMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<MotionGroupInfo[], any>>;
|
|
10088
10173
|
/**
|
|
10089
10174
|
* **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
10175
|
* @summary Get Operation Mode
|
|
@@ -10093,7 +10178,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
10093
10178
|
* @param {*} [options] Override http request option.
|
|
10094
10179
|
* @throws {RequiredError}
|
|
10095
10180
|
*/
|
|
10096
|
-
getOperationMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
10181
|
+
getOperationMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<OpMode, any>>;
|
|
10097
10182
|
/**
|
|
10098
10183
|
* **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
10184
|
* @summary Get Mounting
|
|
@@ -10103,7 +10188,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
10103
10188
|
* @param {*} [options] Override http request option.
|
|
10104
10189
|
* @throws {RequiredError}
|
|
10105
10190
|
*/
|
|
10106
|
-
getVirtualControllerMounting(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
10191
|
+
getVirtualControllerMounting(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CoordinateSystem, any>>;
|
|
10107
10192
|
/**
|
|
10108
10193
|
* **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
10194
|
* @summary List Safety Zones
|
|
@@ -10112,7 +10197,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
10112
10197
|
* @param {*} [options] Override http request option.
|
|
10113
10198
|
* @throws {RequiredError}
|
|
10114
10199
|
*/
|
|
10115
|
-
getVirtualControllerSafetyZones(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
10200
|
+
getVirtualControllerSafetyZones(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<SafetyZones, any>>;
|
|
10116
10201
|
/**
|
|
10117
10202
|
* **Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ Lists all coordinate systems on the robot controller.
|
|
10118
10203
|
* @summary List Coordinate Systems
|
|
@@ -10121,7 +10206,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
10121
10206
|
* @param {*} [options] Override http request option.
|
|
10122
10207
|
* @throws {RequiredError}
|
|
10123
10208
|
*/
|
|
10124
|
-
listVirtualControllerCoordinateSystems(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
10209
|
+
listVirtualControllerCoordinateSystems(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CoordinateSystem[], any>>;
|
|
10125
10210
|
/**
|
|
10126
10211
|
* **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
10212
|
* @summary List TCPs
|
|
@@ -10131,7 +10216,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
10131
10216
|
* @param {*} [options] Override http request option.
|
|
10132
10217
|
* @throws {RequiredError}
|
|
10133
10218
|
*/
|
|
10134
|
-
listVirtualControllerTcps(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
10219
|
+
listVirtualControllerTcps(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<RobotTcp[], any>>;
|
|
10135
10220
|
/**
|
|
10136
10221
|
* **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
10222
|
* @summary Push or Release Emergency Stop
|
|
@@ -10141,7 +10226,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
10141
10226
|
* @param {*} [options] Override http request option.
|
|
10142
10227
|
* @throws {RequiredError}
|
|
10143
10228
|
*/
|
|
10144
|
-
setEmergencyStop(cell: string, controller: string, active?: boolean, options?: RawAxiosRequestConfig): Promise<
|
|
10229
|
+
setEmergencyStop(cell: string, controller: string, active?: boolean, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
|
|
10145
10230
|
/**
|
|
10146
10231
|
* **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
10232
|
* @summary Set Motion Group State
|
|
@@ -10152,7 +10237,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
10152
10237
|
* @param {*} [options] Override http request option.
|
|
10153
10238
|
* @throws {RequiredError}
|
|
10154
10239
|
*/
|
|
10155
|
-
setMotionGroupState(cell: string, controller: string, motionGroup: string, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): Promise<
|
|
10240
|
+
setMotionGroupState(cell: string, controller: string, motionGroup: string, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
|
|
10156
10241
|
/**
|
|
10157
10242
|
* **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
10243
|
* @summary Set Operation Mode
|
|
@@ -10162,7 +10247,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
10162
10247
|
* @param {*} [options] Override http request option.
|
|
10163
10248
|
* @throws {RequiredError}
|
|
10164
10249
|
*/
|
|
10165
|
-
setOperationMode(cell: string, controller: string, mode: OperationMode, options?: RawAxiosRequestConfig): Promise<
|
|
10250
|
+
setOperationMode(cell: string, controller: string, mode: OperationMode, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
|
|
10166
10251
|
/**
|
|
10167
10252
|
* **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
10253
|
* @summary Set Mounting
|
|
@@ -10173,7 +10258,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
10173
10258
|
* @param {*} [options] Override http request option.
|
|
10174
10259
|
* @throws {RequiredError}
|
|
10175
10260
|
*/
|
|
10176
|
-
setVirtualControllerMounting(cell: string, controller: string, motionGroup: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<
|
|
10261
|
+
setVirtualControllerMounting(cell: string, controller: string, motionGroup: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CoordinateSystem, any>>;
|
|
10177
10262
|
}
|
|
10178
10263
|
/**
|
|
10179
10264
|
* VirtualControllerBehaviorApi - axios parameter creator
|
|
@@ -10317,7 +10402,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
|
|
|
10317
10402
|
* @param {*} [options] Override http request option.
|
|
10318
10403
|
* @throws {RequiredError}
|
|
10319
10404
|
*/
|
|
10320
|
-
externalJointsStream(cell: string, controller: string, externalJointStreamRequest: ExternalJointStreamRequest, options?: RawAxiosRequestConfig): Promise<
|
|
10405
|
+
externalJointsStream(cell: string, controller: string, externalJointStreamRequest: ExternalJointStreamRequest, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<ExternalJointStreamDatapoint[], any>>;
|
|
10321
10406
|
/**
|
|
10322
10407
|
* **Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ Get the cycle time of controller communication in [ms].
|
|
10323
10408
|
* @summary Get Cycle Time
|
|
@@ -10326,7 +10411,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
|
|
|
10326
10411
|
* @param {*} [options] Override http request option.
|
|
10327
10412
|
* @throws {RequiredError}
|
|
10328
10413
|
*/
|
|
10329
|
-
getCycleTime(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
10414
|
+
getCycleTime(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<CycleTime, any>>;
|
|
10330
10415
|
/**
|
|
10331
10416
|
* **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
10417
|
* @summary Get Behavior
|
|
@@ -10335,7 +10420,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
|
|
|
10335
10420
|
* @param {*} [options] Override http request option.
|
|
10336
10421
|
* @throws {RequiredError}
|
|
10337
10422
|
*/
|
|
10338
|
-
getVirtualControllerBehavior(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
10423
|
+
getVirtualControllerBehavior(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<Behavior, any>>;
|
|
10339
10424
|
/**
|
|
10340
10425
|
* **Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ Set virtual controller behavior. See query parameters for details.
|
|
10341
10426
|
* @summary Set Behavior
|
|
@@ -10345,7 +10430,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
|
|
|
10345
10430
|
* @param {*} [options] Override http request option.
|
|
10346
10431
|
* @throws {RequiredError}
|
|
10347
10432
|
*/
|
|
10348
|
-
setVirtualControllerBehavior(cell: string, controller: string, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<
|
|
10433
|
+
setVirtualControllerBehavior(cell: string, controller: string, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
|
|
10349
10434
|
}
|
|
10350
10435
|
/**
|
|
10351
10436
|
* VirtualControllerInputsOutputsApi - axios parameter creator
|
|
@@ -10474,7 +10559,7 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
|
|
|
10474
10559
|
* @param {*} [options] Override http request option.
|
|
10475
10560
|
* @throws {RequiredError}
|
|
10476
10561
|
*/
|
|
10477
|
-
listIOs(cell: string, controller: string, ios: Array<string>, options?: RawAxiosRequestConfig): Promise<
|
|
10562
|
+
listIOs(cell: string, controller: string, ios: Array<string>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<IOValue[], any>>;
|
|
10478
10563
|
/**
|
|
10479
10564
|
* **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
10565
|
* @summary List Descriptions
|
|
@@ -10487,7 +10572,7 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
|
|
|
10487
10572
|
* @param {*} [options] Override http request option.
|
|
10488
10573
|
* @throws {RequiredError}
|
|
10489
10574
|
*/
|
|
10490
|
-
listVirtualControllerIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<
|
|
10575
|
+
listVirtualControllerIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<IODescription[], any>>;
|
|
10491
10576
|
/**
|
|
10492
10577
|
* **Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ Sets a list of values of a virtual controller inputs/outputs.
|
|
10493
10578
|
* @summary Set Input/Ouput Values
|
|
@@ -10497,7 +10582,7 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
|
|
|
10497
10582
|
* @param {*} [options] Override http request option.
|
|
10498
10583
|
* @throws {RequiredError}
|
|
10499
10584
|
*/
|
|
10500
|
-
setIOValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<
|
|
10585
|
+
setIOValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios176.AxiosResponse<void, any>>;
|
|
10501
10586
|
}
|
|
10502
10587
|
//#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 };
|
|
10588
|
+
export { AbbController, AbbControllerEgmServer, AbbControllerKindEnum, ActivateLicenseRequest, AddTrajectoryError, AddTrajectoryErrorData, AddTrajectoryRequest, AddTrajectoryResponse, AddVirtualControllerMotionGroupRequest, ApiVersion, App, ApplicationApi, ApplicationApiAxiosParamCreator, ApplicationApiFactory, ApplicationApiFp, BASE_PATH, BUSInputsOutputsApi, BUSInputsOutputsApiAxiosParamCreator, BUSInputsOutputsApiFactory, BUSInputsOutputsApiFp, BaseAPI, Behavior, BlendingAuto, BlendingAutoBlendingNameEnum, BlendingPosition, BlendingPositionBlendingNameEnum, BlendingSpace, BooleanValue, BooleanValueValueTypeEnum, Box, BoxBoxTypeEnum, BoxShapeTypeEnum, BusIODescription, BusIOModbusClient, BusIOModbusClientBusTypeEnum, BusIOModbusServer, BusIOModbusServerBusTypeEnum, BusIOModbusTCPClient, BusIOModbusTCPClientNetworkTypeEnum, BusIOModbusTCPServer, BusIOModbusTCPServerNetworkTypeEnum, BusIOModbusVirtual, BusIOModbusVirtualBusTypeEnum, BusIOProfinet, BusIOProfinetBusTypeEnum, BusIOProfinetDefaultRoute, BusIOProfinetIpConfig, BusIOProfinetNetwork, BusIOProfinetSlot, BusIOProfinetVirtual, BusIOProfinetVirtualBusTypeEnum, BusIOType, BusIOsState, BusIOsStateEnum, COLLECTION_FORMATS, Capsule, CapsuleShapeTypeEnum, CartesianLimits, Cell, CellApi, CellApiAxiosParamCreator, CellApiFactory, CellApiFp, CloudConfigStatus, CloudConfigStatusConfigured, CloudConfigStatusConfiguredStatusEnum, CloudConfigStatusNotConfigured, CloudConfigStatusNotConfiguredStatusEnum, CloudConfiguration, CloudConnectionError, CloudConnectionErrorError, CloudConnectionErrorInvalidToken, CloudConnectionErrorInvalidTokenCodeEnum, CloudConnectionErrorInvalidTokenDetails, CloudConnectionErrorInvalidTokenDetailsCloudResponse, CloudConnectionErrorLeafnodeConnectionError, CloudConnectionErrorLeafnodeConnectionErrorCodeEnum, CloudConnectionErrorLeafnodeConnectionErrorDetails, CloudConnectionErrorLeafnodeConnectionTimeout, CloudConnectionErrorLeafnodeConnectionTimeoutCodeEnum, CloudConnectionErrorLeafnodeRestartTimeout, CloudConnectionErrorLeafnodeRestartTimeoutCodeEnum, CloudConnectionErrorNatsFailed, CloudConnectionErrorNatsFailedCodeEnum, CloudConnectionErrorNatsFailedDetails, CloudConnectionErrorUnexpectedResponse, CloudConnectionErrorUnexpectedResponseCodeEnum, CloudConnectionErrorUnexpectedResponseDetails, CloudConnectionErrorUnexpectedResponseDetailsCloudResponse, CloudConnectionRequest, CloudDisconnectionError, CloudDisconnectionStatusDisconnected, CloudDisconnectionStatusDisconnectedStatusEnum, CloudDisconnectionStatusDisconnecting, CloudDisconnectionStatusDisconnectingStatusEnum, CloudRegistrationSuccessResponse, Collider, ColliderShape, Collision, CollisionContact, CollisionError, CollisionErrorKindEnum, CollisionFreeAlgorithm, CollisionMotionGroup, CollisionSetup, Comparator, Configuration, ConfigurationArchiveStatus, ConfigurationArchiveStatusCreating, ConfigurationArchiveStatusCreatingStatusEnum, ConfigurationArchiveStatusError, ConfigurationArchiveStatusErrorStatusEnum, ConfigurationArchiveStatusSuccess, ConfigurationArchiveStatusSuccessStatusEnum, ConfigurationParameters, ConfigurationResource, ConstrainedPose, ContainerEnvironmentInner, ContainerImage, ContainerImageSecretsInner, ContainerResources, ContainerStorage, ControllerApi, ControllerApiAxiosParamCreator, ControllerApiFactory, ControllerApiFp, ControllerDescription, ControllerInputsOutputsApi, ControllerInputsOutputsApiAxiosParamCreator, ControllerInputsOutputsApiFactory, ControllerInputsOutputsApiFp, ConvexHull, ConvexHullShapeTypeEnum, CoordinateSystem, CoordinateSystemData, CubicSplineParameter, CycleTime, Cylinder, CylinderShapeTypeEnum, DHParameter, Direction, DirectionConstraint, DirectionConstraintConstraintNameEnum, ErrorDirectionConstraintNotMet, ErrorDirectionConstraintNotMetErrorFeedbackNameEnum, ErrorDirectionConstraintNotNormalized, ErrorDirectionConstraintNotNormalizedErrorFeedbackNameEnum, ErrorInvalidJointCount, ErrorInvalidJointCountErrorFeedbackNameEnum, ErrorJointLimitExceeded, ErrorJointLimitExceededErrorFeedbackNameEnum, ErrorJointPositionCollision, ErrorJointPositionCollisionErrorFeedbackNameEnum, ErrorMaxIterationsExceeded, ErrorMaxIterationsExceededErrorFeedbackNameEnum, ErrorMotionGroupKeyMismatch, ErrorUnsupportedOperation, ErrorUnsupportedOperationErrorFeedbackNameEnum, Execute, ExecuteDetails, ExecuteJoggingRequest, ExecuteJoggingResponse, ExecuteTrajectoryRequest, ExecuteTrajectoryResponse, ExternalJointStreamDatapoint, ExternalJointStreamRequest, FanucController, FanucControllerKindEnum, FeedbackCollision, FeedbackCollisionErrorFeedbackNameEnum, FeedbackCommandsMissing, FeedbackCommandsMissingErrorFeedbackNameEnum, FeedbackCubicSplineIsNotIncreasing, FeedbackCubicSplineIsNotIncreasingErrorFeedbackNameEnum, FeedbackCubicSplineNotAtStartPose, FeedbackCubicSplineNotAtStartPoseErrorFeedbackNameEnum, FeedbackDirectionConstraintNoSolutionExists, FeedbackDirectionConstraintNoSolutionExistsErrorFeedbackNameEnum, FeedbackDirectionConstraintNotMet, FeedbackDirectionConstraintNotMetErrorFeedbackNameEnum, FeedbackDirectionConstraintNotNormalized, FeedbackDirectionConstraintNotNormalizedErrorFeedbackNameEnum, FeedbackInvalidDof, FeedbackInvalidDofErrorFeedbackNameEnum, FeedbackInvalidNanValue, FeedbackInvalidNanValueErrorFeedbackNameEnum, FeedbackInvalidSamplingTime, FeedbackInvalidSamplingTimeErrorFeedbackNameEnum, FeedbackJointLimitExceeded, FeedbackJointLimitExceededErrorFeedbackNameEnum, FeedbackNoSolutionInCurrentConfiguration, FeedbackNoSolutionInCurrentConfigurationErrorFeedbackNameEnum, FeedbackOutOfWorkspace, FeedbackOutOfWorkspaceErrorFeedbackNameEnum, FeedbackSingularity, FeedbackSingularityErrorFeedbackNameEnum, FeedbackStartJointsMissing, FeedbackStartJointsMissingErrorFeedbackNameEnum, FeedbackTorqueExceeded, FeedbackTorqueExceededErrorFeedbackNameEnum, Flag, FlangePayload, FloatValue, FloatValueValueTypeEnum, ForwardKinematics422Response, ForwardKinematicsRequest, ForwardKinematicsResponse, ForwardKinematicsValidationError, GetTrajectoryResponse, HTTPValidationError, IOBooleanValue, IOBooleanValueValueTypeEnum, IOBoundary, IODescription, IODirection, IOFloatValue, IOFloatValueValueTypeEnum, IOIntegerValue, IOIntegerValueValueTypeEnum, IOOrigin, IOValue, IOValueType, ImageCredentials, InconsistentTrajectorySizeError, InconsistentTrajectorySizeErrorInconsistentTrajectorySize, InconsistentTrajectorySizeErrorKindEnum, InitializeJoggingRequest, InitializeJoggingRequestMessageTypeEnum, InitializeJoggingResponse, InitializeJoggingResponseKindEnum, InitializeMovementRequest, InitializeMovementRequestMessageTypeEnum, InitializeMovementRequestTrajectory, InitializeMovementResponse, InitializeMovementResponseKindEnum, IntegerValue, IntegerValueValueTypeEnum, InvalidDofError, InvalidDofErrorInvalidDof, InvalidDofErrorKindEnum, InverseKinematics422Response, InverseKinematicsRequest, InverseKinematicsResponse, InverseKinematicsValidationError, InverseKinematicsValidationErrorAllOfData, JoggingApi, JoggingApiAxiosParamCreator, JoggingApiFactory, JoggingApiFp, JoggingDetails, JoggingDetailsKindEnum, JoggingDetailsState, JoggingPausedByUser, JoggingPausedByUserKindEnum, JoggingPausedNearCollision, JoggingPausedNearCollisionKindEnum, JoggingPausedNearJointLimit, JoggingPausedNearJointLimitKindEnum, JoggingPausedNearSingularity, JoggingPausedNearSingularityKindEnum, JoggingPausedOnIO, JoggingPausedOnIOKindEnum, JoggingRunning, JoggingRunningKindEnum, JointLimitExceededError, JointLimitExceededErrorKindEnum, JointLimits, JointPTPMotion, JointTrajectory, JointTypeEnum, JointVelocityRequest, JointVelocityRequestMessageTypeEnum, JointVelocityResponse, JointVelocityResponseKindEnum, KinematicModel, KinematicsApi, KinematicsApiAxiosParamCreator, KinematicsApiFactory, KinematicsApiFp, KukaController, KukaControllerKindEnum, KukaControllerRsiServer, License, LicenseApi, LicenseApiAxiosParamCreator, LicenseApiFactory, LicenseApiFp, LicenseStatus, LicenseStatusEnum, LimitRange, LimitSet, LimitsOverride, ListTrajectoriesResponse, Manufacturer, MergeTrajectories422Response, MergeTrajectoriesError, MergeTrajectoriesErrorErrorFeedback, MergeTrajectoriesRequest, MergeTrajectoriesResponse, MergeTrajectoriesResponseFeedbackInner, MergeTrajectoriesSegment, MergeTrajectoriesValidationError, MidpointInsertionAlgorithm, MidpointInsertionAlgorithmAlgorithmNameEnum, ModbusIO, ModbusIOArea, ModbusIOByteOrder, ModbusIOData, ModbusIOTypeEnum, ModelError, MotionCommand, MotionCommandBlending, MotionCommandPath, MotionGroupApi, MotionGroupApiAxiosParamCreator, MotionGroupApiFactory, MotionGroupApiFp, MotionGroupDescription, MotionGroupFromJson, MotionGroupFromType, MotionGroupInfo, MotionGroupJoints, MotionGroupModelsApi, MotionGroupModelsApiAxiosParamCreator, MotionGroupModelsApiFactory, MotionGroupModelsApiFp, MotionGroupSetup, MotionGroupState, MotionGroupStateJointLimitReached, MovementErrorResponse, MovementErrorResponseKindEnum, MultiCollisionSetup, MultiErrorInvalidJointCount, MultiErrorJointLimitExceeded, MultiErrorJointPositionCollision, MultiJointTrajectory, MultiSearchCollisionFree422Response, MultiSearchCollisionFreeRequest, MultiSearchCollisionFreeResponse, MultiSearchCollisionFreeResponseResponse, MultiSearchCollisionFreeValidationError, MultiSearchCollisionFreeValidationErrorAllOfData, NOVACloudApi, NOVACloudApiAxiosParamCreator, NOVACloudApiFactory, NOVACloudApiFp, NanValueError, NanValueErrorKindEnum, NanValueErrorNanValue, NetworkDevice, NetworkInterface, NetworkState, NetworkStateConnectionTypeEnum, OpMode, OperatingState, OperationLimits, OperationMode, OrientationType, PathCartesianPTP, PathCartesianPTPPathDefinitionNameEnum, PathCircle, PathCirclePathDefinitionNameEnum, PathCubicSpline, PathCubicSplinePathDefinitionNameEnum, PathDirectionConstrainedCartesianPTP, PathDirectionConstrainedCartesianPTPPathDefinitionNameEnum, PathDirectionConstrainedJointPTP, PathDirectionConstrainedJointPTPPathDefinitionNameEnum, PathJointPTP, PathJointPTPPathDefinitionNameEnum, PathLine, PathLinePathDefinitionNameEnum, PauseJoggingRequest, PauseJoggingRequestMessageTypeEnum, PauseJoggingResponse, PauseJoggingResponseKindEnum, PauseMovementRequest, PauseMovementRequestMessageTypeEnum, PauseMovementResponse, PauseMovementResponseKindEnum, PauseOnIO, Payload, Plan422Response, PlanCollisionFreeFailedResponse, PlanCollisionFreeRequest, PlanCollisionFreeResponse, PlanCollisionFreeResponseResponse, PlanTrajectoryFailedResponse, PlanTrajectoryFailedResponseErrorFeedback, PlanTrajectoryRequest, PlanTrajectoryResponse, PlanTrajectoryResponseResponse, PlanValidationError, PlanValidationErrorAllOfData, Plane, PlaneShapeTypeEnum, PlaybackSpeedRequest, PlaybackSpeedRequestMessageTypeEnum, PlaybackSpeedResponse, PlaybackSpeedResponseKindEnum, Pose, ProfinetDescription, ProfinetIO, ProfinetIOData, ProfinetIODirection, ProfinetIOTypeEnum, ProfinetInputOutputConfig, ProfinetSlotDescription, ProfinetSubSlotDescription, Program, ProgramApi, ProgramApiAxiosParamCreator, ProgramApiFactory, ProgramApiFp, ProgramRun, ProgramRunState, ProgramStartRequest, ProjectJointPositionDirectionConstraint422Response, ProjectJointPositionDirectionConstraintRequest, ProjectJointPositionDirectionConstraintResponse, ProjectJointPositionDirectionConstraintValidationError, ProjectJointPositionDirectionConstraintValidationErrorAllOfData, RRTConnectAlgorithm, RRTConnectAlgorithmAlgorithmNameEnum, Rectangle, RectangleShapeTypeEnum, RectangularCapsule, RectangularCapsuleShapeTypeEnum, ReleaseChannel, RequestArgs, RequiredError, RobotConfigurationsApi, RobotConfigurationsApiAxiosParamCreator, RobotConfigurationsApiFactory, RobotConfigurationsApiFp, RobotController, RobotControllerConfiguration, RobotControllerConfigurationRequest, RobotControllerState, RobotSystemMode, RobotTcp, RobotTcpData, SafetyGeometry, SafetyGeometryBox, SafetyGeometryCapsule, SafetyGeometryLozenge, SafetyGeometryPlane, SafetyGeometryPrism, SafetyGeometrySphere, SafetyStateType, SafetyZone, SafetyZonePose, SafetyZones, ServiceGroup, ServiceStatus, ServiceStatusPhase, ServiceStatusResponse, ServiceStatusSeverity, ServiceStatusStatus, SetIO, SettableRobotSystemMode, SingularityTypeEnum, Sphere, SphereShapeTypeEnum, StartMovementRequest, StartMovementRequestMessageTypeEnum, StartMovementResponse, StartMovementResponseKindEnum, StartOnIO, StoreCollisionComponentsApi, StoreCollisionComponentsApiAxiosParamCreator, StoreCollisionComponentsApiFactory, StoreCollisionComponentsApiFp, StoreCollisionSetupsApi, StoreCollisionSetupsApiAxiosParamCreator, StoreCollisionSetupsApiFactory, StoreCollisionSetupsApiFp, StoreObjectApi, StoreObjectApiAxiosParamCreator, StoreObjectApiFactory, StoreObjectApiFp, StreamIOValuesResponse, SystemApi, SystemApiAxiosParamCreator, SystemApiFactory, SystemApiFp, TcpOffset, TcpRequiredError, TcpRequiredErrorKindEnum, TcpVelocityRequest, TcpVelocityRequestMessageTypeEnum, TcpVelocityResponse, TcpVelocityResponseKindEnum, TorqueExceededError, TorqueExceededErrorKindEnum, TorqueExceededErrorTorqueExceeded, TrajectoryCachingApi, TrajectoryCachingApiAxiosParamCreator, TrajectoryCachingApiFactory, TrajectoryCachingApiFp, TrajectoryData, TrajectoryDataMessageTypeEnum, TrajectoryDetails, TrajectoryDetailsKindEnum, TrajectoryDetailsState, TrajectoryEnded, TrajectoryEndedKindEnum, TrajectoryExecutionApi, TrajectoryExecutionApiAxiosParamCreator, TrajectoryExecutionApiFactory, TrajectoryExecutionApiFp, TrajectoryId, TrajectoryIdMessageTypeEnum, TrajectoryPausedByUser, TrajectoryPausedByUserKindEnum, TrajectoryPausedOnIO, TrajectoryPausedOnIOKindEnum, TrajectoryPlanningApi, TrajectoryPlanningApiAxiosParamCreator, TrajectoryPlanningApiFactory, TrajectoryPlanningApiFp, TrajectoryRunning, TrajectoryRunningKindEnum, TrajectorySection, TrajectoryWaitForIO, TrajectoryWaitForIOKindEnum, UnitType, UniversalrobotsController, UniversalrobotsControllerKindEnum, UpdateCellVersionRequest, UpdateNovaVersionRequest, ValidationError, ValidationError2, ValidationErrorLocInner, VersionApi, VersionApiAxiosParamCreator, VersionApiFactory, VersionApiFp, VirtualController, VirtualControllerApi, VirtualControllerApiAxiosParamCreator, VirtualControllerApiFactory, VirtualControllerApiFp, VirtualControllerBehaviorApi, VirtualControllerBehaviorApiAxiosParamCreator, VirtualControllerBehaviorApiFactory, VirtualControllerBehaviorApiFp, VirtualControllerInputsOutputsApi, VirtualControllerInputsOutputsApiAxiosParamCreator, VirtualControllerInputsOutputsApiFactory, VirtualControllerInputsOutputsApiFp, VirtualControllerKindEnum, VirtualRobotConfiguration, WaitForIOEventRequest, YaskawaController, YaskawaControllerKindEnum, ZodValidationError, ZodValidationErrorError, ZodValidationErrorErrorCodeEnum, ZodValidationErrorErrorDetailsInner, ZodValidationErrorErrorDetailsInnerPathInner, operationServerMap };
|