@wandelbots/nova-api 26.1.0-dev.60 → 26.1.0-dev.62
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.cts +178 -178
- package/dist/v1/index.d.ts +178 -178
- package/dist/v2/index.cjs +46 -0
- package/dist/v2/index.d.cts +179 -137
- package/dist/v2/index.d.ts +179 -137
- package/dist/v2/index.js +46 -0
- package/package.json +1 -1
package/dist/v2/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as axios0 from "axios";
|
|
2
2
|
import { AxiosInstance, AxiosPromise, RawAxiosRequestConfig } from "axios";
|
|
3
3
|
|
|
4
4
|
//#region v2/configuration.d.ts
|
|
@@ -1576,6 +1576,16 @@ declare const JointVelocityResponseKindEnum: {
|
|
|
1576
1576
|
readonly JointVelocityReceived: "JOINT_VELOCITY_RECEIVED";
|
|
1577
1577
|
};
|
|
1578
1578
|
type JointVelocityResponseKindEnum = typeof JointVelocityResponseKindEnum[keyof typeof JointVelocityResponseKindEnum];
|
|
1579
|
+
/**
|
|
1580
|
+
* Kinematics model described by Denavit-Hartenberg parameters.
|
|
1581
|
+
*/
|
|
1582
|
+
interface KinematicModel {
|
|
1583
|
+
'dh_parameters'?: Array<DHParameter>;
|
|
1584
|
+
/**
|
|
1585
|
+
* Optional name of the inverse kinematics solver.
|
|
1586
|
+
*/
|
|
1587
|
+
'inverse_solver'?: string;
|
|
1588
|
+
}
|
|
1579
1589
|
/**
|
|
1580
1590
|
* The configuration of a physical KUKA robot controller has to contain an IP address. Additionally an RSI server configuration has to be specified in order to control the robot. Deploying the server is a functionality of this API.
|
|
1581
1591
|
*/
|
|
@@ -3426,7 +3436,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
3426
3436
|
* @param {*} [options] Override http request option.
|
|
3427
3437
|
* @throws {RequiredError}
|
|
3428
3438
|
*/
|
|
3429
|
-
addApp(cell: string, app: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
3439
|
+
addApp(cell: string, app: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
3430
3440
|
/**
|
|
3431
3441
|
* Delete all GUI applications from the cell.
|
|
3432
3442
|
* @summary Clear Applications
|
|
@@ -3435,7 +3445,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
3435
3445
|
* @param {*} [options] Override http request option.
|
|
3436
3446
|
* @throws {RequiredError}
|
|
3437
3447
|
*/
|
|
3438
|
-
clearApps(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
3448
|
+
clearApps(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
3439
3449
|
/**
|
|
3440
3450
|
* Delete a GUI application from the cell.
|
|
3441
3451
|
* @summary Delete Application
|
|
@@ -3445,7 +3455,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
3445
3455
|
* @param {*} [options] Override http request option.
|
|
3446
3456
|
* @throws {RequiredError}
|
|
3447
3457
|
*/
|
|
3448
|
-
deleteApp(cell: string, app: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
3458
|
+
deleteApp(cell: string, app: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
3449
3459
|
/**
|
|
3450
3460
|
* Get the configuration for an active GUI application in the cell. To update the configuration of a GUI application in the cell, use this configuration with [updateApp](updateApp).
|
|
3451
3461
|
* @summary Configuration
|
|
@@ -3454,7 +3464,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
3454
3464
|
* @param {*} [options] Override http request option.
|
|
3455
3465
|
* @throws {RequiredError}
|
|
3456
3466
|
*/
|
|
3457
|
-
getApp(cell: string, app: string, options?: RawAxiosRequestConfig): Promise<
|
|
3467
|
+
getApp(cell: string, app: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<App, any>>;
|
|
3458
3468
|
/**
|
|
3459
3469
|
* List all GUI applications that have been added to a cell with [addApp](addApp). If the cell does not contain GUI applications, the list is returned empty.
|
|
3460
3470
|
* @summary List Applications
|
|
@@ -3462,7 +3472,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
3462
3472
|
* @param {*} [options] Override http request option.
|
|
3463
3473
|
* @throws {RequiredError}
|
|
3464
3474
|
*/
|
|
3465
|
-
listApps(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
3475
|
+
listApps(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
|
|
3466
3476
|
/**
|
|
3467
3477
|
* Update the configuration of a GUI application in the cell.
|
|
3468
3478
|
* @summary Update Configuration
|
|
@@ -3473,7 +3483,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
3473
3483
|
* @param {*} [options] Override http request option.
|
|
3474
3484
|
* @throws {RequiredError}
|
|
3475
3485
|
*/
|
|
3476
|
-
updateApp(cell: string, app: string, app2: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
3486
|
+
updateApp(cell: string, app: string, app2: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
3477
3487
|
}
|
|
3478
3488
|
/**
|
|
3479
3489
|
* BUSInputsOutputsApi - axios parameter creator
|
|
@@ -3977,7 +3987,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
3977
3987
|
* @param {*} [options] Override http request option.
|
|
3978
3988
|
* @throws {RequiredError}
|
|
3979
3989
|
*/
|
|
3980
|
-
addBusIOService(cell: string, busIOType: BusIOType, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
3990
|
+
addBusIOService(cell: string, busIOType: BusIOType, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
3981
3991
|
/**
|
|
3982
3992
|
* Adds an input/output variable to or updates an input/output variable on the MODBUS device, e.g., NOVA\'s MODBUS service. The inputs/outputs map variables to specific memory addresses in the process image. The NOVA\'s MODBUS service\'s configuration can be viewed via [listModbusIOs](listModbusIOs).
|
|
3983
3993
|
* @summary Add MODBUS Input/Output
|
|
@@ -3987,7 +3997,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
3987
3997
|
* @param {*} [options] Override http request option.
|
|
3988
3998
|
* @throws {RequiredError}
|
|
3989
3999
|
*/
|
|
3990
|
-
addModbusIO(cell: string, io: string, modbusIOData: ModbusIOData, options?: RawAxiosRequestConfig): Promise<
|
|
4000
|
+
addModbusIO(cell: string, io: string, modbusIOData: ModbusIOData, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
3991
4001
|
/**
|
|
3992
4002
|
* Adds an input/output variable to or updates an input/output variable on the PROFINET device, e.g., NOVA\'s PROFINET service. The inputs/outputs map variables to specific memory addresses in the process image. The default process image has buffer lengths of 64 bytes for input and output. - The size of the buffer is determined by the `config_file_content` that is passed in [addBusIOService](addBusIOService) and has to be in accordance with the GSDML file describing the PROFINET device. The PROFINET controller as well as NOVA\'s PROFINET service use an input/output variable configuration to interpret the bits of the input/output process image. - The NOVA\'s PROFINET service\'s configuration can be viewed via [listProfinetIOs](listProfinetIOs). For the PROFINET controller, e.g., a connected PLC, refer to the corresponding third party software, e.g., TIA portal).
|
|
3993
4003
|
* @summary Add PROFINET Input/Output
|
|
@@ -3997,7 +4007,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
3997
4007
|
* @param {*} [options] Override http request option.
|
|
3998
4008
|
* @throws {RequiredError}
|
|
3999
4009
|
*/
|
|
4000
|
-
addProfinetIO(cell: string, io: string, profinetIOData: ProfinetIOData, options?: RawAxiosRequestConfig): Promise<
|
|
4010
|
+
addProfinetIO(cell: string, io: string, profinetIOData: ProfinetIOData, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
4001
4011
|
/**
|
|
4002
4012
|
* Remove the BUS inputs/outputs service from the cell.
|
|
4003
4013
|
* @summary Clear Service
|
|
@@ -4006,7 +4016,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
4006
4016
|
* @param {*} [options] Override http request option.
|
|
4007
4017
|
* @throws {RequiredError}
|
|
4008
4018
|
*/
|
|
4009
|
-
clearBusIOService(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
4019
|
+
clearBusIOService(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
4010
4020
|
/**
|
|
4011
4021
|
* Removes all input/output variable configurations from the MODBUS device, e.g., NOVA\'s MODBUS service.
|
|
4012
4022
|
* @summary Remove all MODBUS Input/Outputs
|
|
@@ -4014,7 +4024,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
4014
4024
|
* @param {*} [options] Override http request option.
|
|
4015
4025
|
* @throws {RequiredError}
|
|
4016
4026
|
*/
|
|
4017
|
-
deleteAllModbusIOs(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
4027
|
+
deleteAllModbusIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
4018
4028
|
/**
|
|
4019
4029
|
* Removes all input/output variable configurations from the PROFINET device, e.g., NOVA\'s PROFINET service.
|
|
4020
4030
|
* @summary Remove all PROFINET Input/Outputs
|
|
@@ -4022,7 +4032,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
4022
4032
|
* @param {*} [options] Override http request option.
|
|
4023
4033
|
* @throws {RequiredError}
|
|
4024
4034
|
*/
|
|
4025
|
-
deleteAllProfinetIOs(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
4035
|
+
deleteAllProfinetIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
4026
4036
|
/**
|
|
4027
4037
|
* Removes an input/output variable configuration from the MODBUS device, e.g., NOVA\'s MODBUS service.
|
|
4028
4038
|
* @summary Remove MODBUS Input/Ouptut
|
|
@@ -4031,7 +4041,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
4031
4041
|
* @param {*} [options] Override http request option.
|
|
4032
4042
|
* @throws {RequiredError}
|
|
4033
4043
|
*/
|
|
4034
|
-
deleteModbusIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<
|
|
4044
|
+
deleteModbusIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
4035
4045
|
/**
|
|
4036
4046
|
* Removes an input/output variable configuration from the PROFINET device, e.g., NOVA\'s PROFINET service.
|
|
4037
4047
|
* @summary Remove PROFINET Input/Ouptut
|
|
@@ -4040,7 +4050,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
4040
4050
|
* @param {*} [options] Override http request option.
|
|
4041
4051
|
* @throws {RequiredError}
|
|
4042
4052
|
*/
|
|
4043
|
-
deleteProfinetIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<
|
|
4053
|
+
deleteProfinetIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
4044
4054
|
/**
|
|
4045
4055
|
* Get deployed BUS inputs/outputs service.
|
|
4046
4056
|
* @summary Get Service
|
|
@@ -4048,7 +4058,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
4048
4058
|
* @param {*} [options] Override http request option.
|
|
4049
4059
|
* @throws {RequiredError}
|
|
4050
4060
|
*/
|
|
4051
|
-
getBusIOService(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
4061
|
+
getBusIOService(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<BusIOType, any>>;
|
|
4052
4062
|
/**
|
|
4053
4063
|
* Get the current state of the BUS Inputs/Outputs service.
|
|
4054
4064
|
* @summary State
|
|
@@ -4056,7 +4066,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
4056
4066
|
* @param {*} [options] Override http request option.
|
|
4057
4067
|
* @throws {RequiredError}
|
|
4058
4068
|
*/
|
|
4059
|
-
getBusIOState(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
4069
|
+
getBusIOState(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<BusIOsState, any>>;
|
|
4060
4070
|
/**
|
|
4061
4071
|
* Retrieves the current values of inputs/outputs. The identifiers of the inputs/outputs must be provided in the request. Request all available input/output identifiers via [listBusIODescriptions](listBusIODescriptions).
|
|
4062
4072
|
* @summary Get Input/Output Values
|
|
@@ -4065,7 +4075,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
4065
4075
|
* @param {*} [options] Override http request option.
|
|
4066
4076
|
* @throws {RequiredError}
|
|
4067
4077
|
*/
|
|
4068
|
-
getBusIOValues(cell: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<
|
|
4078
|
+
getBusIOValues(cell: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IOValue[], any>>;
|
|
4069
4079
|
/**
|
|
4070
4080
|
* Get description of NOVA as a PROFINET device.
|
|
4071
4081
|
* @summary Get PROFINET Description
|
|
@@ -4073,7 +4083,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
4073
4083
|
* @param {*} [options] Override http request option.
|
|
4074
4084
|
* @throws {RequiredError}
|
|
4075
4085
|
*/
|
|
4076
|
-
getProfinetDescription(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
4086
|
+
getProfinetDescription(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProfinetDescription, any>>;
|
|
4077
4087
|
/**
|
|
4078
4088
|
* 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.
|
|
4079
4089
|
* @summary PROFINET Inputs/Outputs to File
|
|
@@ -4083,7 +4093,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
4083
4093
|
* @param {*} [options] Override http request option.
|
|
4084
4094
|
* @throws {RequiredError}
|
|
4085
4095
|
*/
|
|
4086
|
-
getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<
|
|
4096
|
+
getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string, any>>;
|
|
4087
4097
|
/**
|
|
4088
4098
|
* 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.
|
|
4089
4099
|
* @summary List Descriptions
|
|
@@ -4091,7 +4101,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
4091
4101
|
* @param {*} [options] Override http request option.
|
|
4092
4102
|
* @throws {RequiredError}
|
|
4093
4103
|
*/
|
|
4094
|
-
listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
4104
|
+
listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<BusIODescription[], any>>;
|
|
4095
4105
|
/**
|
|
4096
4106
|
* List descriptions for all configured input/output variables of the MODBUS service. The input/output descriptions contain information like name, type and address. The input/output direction is given in perspective of the active MODBUS type (service or client). - The byte and bit addresses are the locations in the MODBUS input/output process image the variable points to. - The MODBUS controller as well as NOVA\'s MODBUS service use an input/output variable configuration to interpret the bits of the input and output process image. - The NOVA MODBUS service\'s configuration is modified via [addModbusIO](addModbusIO).
|
|
4097
4107
|
* @summary List MODBUS Input/Output Configuration
|
|
@@ -4099,7 +4109,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
4099
4109
|
* @param {*} [options] Override http request option.
|
|
4100
4110
|
* @throws {RequiredError}
|
|
4101
4111
|
*/
|
|
4102
|
-
listModbusIOs(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
4112
|
+
listModbusIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ModbusIO[], any>>;
|
|
4103
4113
|
/**
|
|
4104
4114
|
* List descriptions for all configured input/output variables of the PROFINET service. The input/output descriptions contain information like name, type and unit. The input/output direction is given in perspective of the PROFINET device, e.g., the configured PROFINET service. - The byte and bit addresses are the locations in the PROFINET input/output process image the variable points to. - The PROFINET controller as well as NOVA\'s PROFINET service use an input/output variable configuration to interpret the bits of the input and output process image. - The NOVA PROFINET service\'s configuration is modified via [addProfinetIO](addProfinetIO) and [setProfinetIOsFromFile](setProfinetIOsFromFile). For the PROFINET controller, e.g., a connected PLC, refer to the corresponding third party software, e.g., TIA portal.
|
|
4105
4115
|
* @summary List PROFINET Input/Output Configuration
|
|
@@ -4107,7 +4117,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
4107
4117
|
* @param {*} [options] Override http request option.
|
|
4108
4118
|
* @throws {RequiredError}
|
|
4109
4119
|
*/
|
|
4110
|
-
listProfinetIOs(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
4120
|
+
listProfinetIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProfinetIO[], any>>;
|
|
4111
4121
|
/**
|
|
4112
4122
|
* Set values of outputs. In case of virtual Bus Input/Outputs, also inputs can be set. All available output identifiers can be requested via [listBusIODescriptions](listBusIODescriptions). The call will return once the values have been set and accepted by the service.
|
|
4113
4123
|
* @summary Set Output Values
|
|
@@ -4116,7 +4126,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
4116
4126
|
* @param {*} [options] Override http request option.
|
|
4117
4127
|
* @throws {RequiredError}
|
|
4118
4128
|
*/
|
|
4119
|
-
setBusIOValues(cell: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<
|
|
4129
|
+
setBusIOValues(cell: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
4120
4130
|
/**
|
|
4121
4131
|
* Sets input/output variable configuration on the PROFINET device (i.e. NOVA\'s PROFINET service) from XML file. The inputs/outputs map variables to specific memory addresses in the process image. The default process image has buffer lengths of 64 bytes for input and output. - The size of the buffer is determined by the `config_file_content` that is passed in [addBusIOService](addBusIOService) and has to be in accordance with the GSDML file describing the PROFINET device. The PROFINET controller as well as NOVA\'s PROFINET service use an input/output variable configuration to interpret the bits of the input/output process image. - The NOVA\'s PROFINET service\'s configuration can be viewed via [listProfinetIOs](listProfinetIOs). For the PROFINET controller, e.g., a connected PLC, refer to the corresponding engineering system, e.g., TIA portal. #### Export variables You can export the variable configuration of the PROFINET controller as XML file from your engineering system, e.g., TIA portal. - The endpoint is built so that the perspective of input and output (PROFINET Device\'s input is PROFINET Controller\'s output) is internally handled (PROFINET device input is PROFINET controller output), meaning that you can paste the exported XML file here without modifying.
|
|
4122
4132
|
* @summary Set PROFINET Inputs/Outputs from File
|
|
@@ -4125,7 +4135,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
4125
4135
|
* @param {*} [options] Override http request option.
|
|
4126
4136
|
* @throws {RequiredError}
|
|
4127
4137
|
*/
|
|
4128
|
-
setProfinetIOsFromFile(cell: string, profinetInputOutputConfig: ProfinetInputOutputConfig, options?: RawAxiosRequestConfig): Promise<
|
|
4138
|
+
setProfinetIOsFromFile(cell: string, profinetInputOutputConfig: ProfinetInputOutputConfig, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
4129
4139
|
}
|
|
4130
4140
|
/**
|
|
4131
4141
|
* CellApi - axios parameter creator
|
|
@@ -4334,7 +4344,7 @@ declare class CellApi extends BaseAPI {
|
|
|
4334
4344
|
* @param {*} [options] Override http request option.
|
|
4335
4345
|
* @throws {RequiredError}
|
|
4336
4346
|
*/
|
|
4337
|
-
deleteCell(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
4347
|
+
deleteCell(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
4338
4348
|
/**
|
|
4339
4349
|
* 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.
|
|
4340
4350
|
* @summary Add Cell
|
|
@@ -4343,7 +4353,7 @@ declare class CellApi extends BaseAPI {
|
|
|
4343
4353
|
* @param {*} [options] Override http request option.
|
|
4344
4354
|
* @throws {RequiredError}
|
|
4345
4355
|
*/
|
|
4346
|
-
deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
4356
|
+
deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
4347
4357
|
/**
|
|
4348
4358
|
* List all cell resources.
|
|
4349
4359
|
* @summary Configuration
|
|
@@ -4351,7 +4361,7 @@ declare class CellApi extends BaseAPI {
|
|
|
4351
4361
|
* @param {*} [options] Override http request option.
|
|
4352
4362
|
* @throws {RequiredError}
|
|
4353
4363
|
*/
|
|
4354
|
-
getCell(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
4364
|
+
getCell(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Cell, any>>;
|
|
4355
4365
|
/**
|
|
4356
4366
|
* List the status of all cell resources.
|
|
4357
4367
|
* @summary Service Status
|
|
@@ -4359,14 +4369,14 @@ declare class CellApi extends BaseAPI {
|
|
|
4359
4369
|
* @param {*} [options] Override http request option.
|
|
4360
4370
|
* @throws {RequiredError}
|
|
4361
4371
|
*/
|
|
4362
|
-
getCellStatus(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
4372
|
+
getCellStatus(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ServiceStatusResponse, any>>;
|
|
4363
4373
|
/**
|
|
4364
4374
|
* List all deployed cell names. If no cells are deployed, an empty list is returned.
|
|
4365
4375
|
* @summary List Cells
|
|
4366
4376
|
* @param {*} [options] Override http request option.
|
|
4367
4377
|
* @throws {RequiredError}
|
|
4368
4378
|
*/
|
|
4369
|
-
listCells(options?: RawAxiosRequestConfig): Promise<
|
|
4379
|
+
listCells(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
|
|
4370
4380
|
/**
|
|
4371
4381
|
* Deactivate or activate the services of a cell.
|
|
4372
4382
|
* @summary Operating State
|
|
@@ -4375,7 +4385,7 @@ declare class CellApi extends BaseAPI {
|
|
|
4375
4385
|
* @param {*} [options] Override http request option.
|
|
4376
4386
|
* @throws {RequiredError}
|
|
4377
4387
|
*/
|
|
4378
|
-
setCellStatus(cell: string, operatingState: OperatingState, options?: RawAxiosRequestConfig): Promise<
|
|
4388
|
+
setCellStatus(cell: string, operatingState: OperatingState, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
4379
4389
|
/**
|
|
4380
4390
|
* Update the definition of the entire Cell.
|
|
4381
4391
|
* @summary Update Configuration
|
|
@@ -4385,7 +4395,7 @@ declare class CellApi extends BaseAPI {
|
|
|
4385
4395
|
* @param {*} [options] Override http request option.
|
|
4386
4396
|
* @throws {RequiredError}
|
|
4387
4397
|
*/
|
|
4388
|
-
updateCell(cell: string, cell2: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
4398
|
+
updateCell(cell: string, cell2: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
4389
4399
|
}
|
|
4390
4400
|
/**
|
|
4391
4401
|
* ControllerApi - axios parameter creator
|
|
@@ -4823,7 +4833,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
4823
4833
|
* @param {*} [options] Override http request option.
|
|
4824
4834
|
* @throws {RequiredError}
|
|
4825
4835
|
*/
|
|
4826
|
-
addRobotController(cell: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
4836
|
+
addRobotController(cell: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
4827
4837
|
/**
|
|
4828
4838
|
* Delete all robot controllers from the cell. To replace all robot controllers in a cell, use this endpoint in combination with [addRobotController](addRobotController).
|
|
4829
4839
|
* @summary Clear Robot Controllers
|
|
@@ -4832,7 +4842,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
4832
4842
|
* @param {*} [options] Override http request option.
|
|
4833
4843
|
* @throws {RequiredError}
|
|
4834
4844
|
*/
|
|
4835
|
-
clearRobotControllers(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
4845
|
+
clearRobotControllers(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
4836
4846
|
/**
|
|
4837
4847
|
* Delete a robot controller from the cell.
|
|
4838
4848
|
* @summary Delete Robot Controller
|
|
@@ -4842,7 +4852,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
4842
4852
|
* @param {*} [options] Override http request option.
|
|
4843
4853
|
* @throws {RequiredError}
|
|
4844
4854
|
*/
|
|
4845
|
-
deleteRobotController(cell: string, controller: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
4855
|
+
deleteRobotController(cell: string, controller: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
4846
4856
|
/**
|
|
4847
4857
|
* Get description of a configured robot controller including a list of connected motion group identifiers. Use [getMotionGroupDescription](getMotionGroupDescription) to get more information about the motion group.
|
|
4848
4858
|
* @summary Description
|
|
@@ -4851,7 +4861,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
4851
4861
|
* @param {*} [options] Override http request option.
|
|
4852
4862
|
* @throws {RequiredError}
|
|
4853
4863
|
*/
|
|
4854
|
-
getControllerDescription(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
4864
|
+
getControllerDescription(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ControllerDescription, any>>;
|
|
4855
4865
|
/**
|
|
4856
4866
|
* 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.
|
|
4857
4867
|
* @summary Coordinate System
|
|
@@ -4862,7 +4872,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
4862
4872
|
* @param {*} [options] Override http request option.
|
|
4863
4873
|
* @throws {RequiredError}
|
|
4864
4874
|
*/
|
|
4865
|
-
getCoordinateSystem(cell: string, controller: string, coordinateSystem: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<
|
|
4875
|
+
getCoordinateSystem(cell: string, controller: string, coordinateSystem: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem, any>>;
|
|
4866
4876
|
/**
|
|
4867
4877
|
* Get the current state of a robot controller.
|
|
4868
4878
|
* @summary State
|
|
@@ -4871,7 +4881,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
4871
4881
|
* @param {*} [options] Override http request option.
|
|
4872
4882
|
* @throws {RequiredError}
|
|
4873
4883
|
*/
|
|
4874
|
-
getCurrentRobotControllerState(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
4884
|
+
getCurrentRobotControllerState(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotControllerState, any>>;
|
|
4875
4885
|
/**
|
|
4876
4886
|
* Get the configuration for a robot controller.
|
|
4877
4887
|
* @summary Robot Controller
|
|
@@ -4880,7 +4890,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
4880
4890
|
* @param {*} [options] Override http request option.
|
|
4881
4891
|
* @throws {RequiredError}
|
|
4882
4892
|
*/
|
|
4883
|
-
getRobotController(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
4893
|
+
getRobotController(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotController, any>>;
|
|
4884
4894
|
/**
|
|
4885
4895
|
* Receive data to configure a virtual robot controller based on another controller. This can be used to create a virtual clone of a specific physical robot. When adding a virtual controller, use the Virtual configuration variant of [addRobotController](addRobotController) and pass the content string from this endpoint as the `json` field. Omit the `type` field that selects a preset configuration which is not required when providing a complete configuration.
|
|
4886
4896
|
* @summary Virtual Controller Configuration
|
|
@@ -4889,7 +4899,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
4889
4899
|
* @param {*} [options] Override http request option.
|
|
4890
4900
|
* @throws {RequiredError}
|
|
4891
4901
|
*/
|
|
4892
|
-
getVirtualControllerConfiguration(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
4902
|
+
getVirtualControllerConfiguration(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<VirtualRobotConfiguration, any>>;
|
|
4893
4903
|
/**
|
|
4894
4904
|
* 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.
|
|
4895
4905
|
* @summary List Coordinate Systems
|
|
@@ -4899,7 +4909,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
4899
4909
|
* @param {*} [options] Override http request option.
|
|
4900
4910
|
* @throws {RequiredError}
|
|
4901
4911
|
*/
|
|
4902
|
-
listCoordinateSystems(cell: string, controller: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<
|
|
4912
|
+
listCoordinateSystems(cell: string, controller: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem[], any>>;
|
|
4903
4913
|
/**
|
|
4904
4914
|
* List the names of all deployed robot controllers.
|
|
4905
4915
|
* @summary List Robot Controllers
|
|
@@ -4907,7 +4917,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
4907
4917
|
* @param {*} [options] Override http request option.
|
|
4908
4918
|
* @throws {RequiredError}
|
|
4909
4919
|
*/
|
|
4910
|
-
listRobotControllers(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
4920
|
+
listRobotControllers(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
|
|
4911
4921
|
/**
|
|
4912
4922
|
* Switch between monitor and control usage as default for a robot controller. Monitoring mode is used to read information from the robot controller and control mode is used to command the robot system. As long as the robot controller is connected via network, monitoring mode is always possible. To switch to control mode the robot controller must be in `automatic` or `manual` operating mode and safety state `normal` or `reduced`. If the robot controller is in `manual` operating mode, you have to manually confirm the control usage activation on the robot control panel. This manual confirmation can\'t be replaced with this API. Without manual confirmation the robot controller will stay in monitor mode. The robot system will try to activate the required operation mode for the requested usage unless no active call requires a different mode. > **NOTE** > > `setDefaultMode` enables the robot controller to stay in control mode to keep the motors activated. > This allows for faster execution of sequential movements as no mode switches are required. > **NOTE** > > Some robot controllers prevent the external activation of automatic operating mode. In this case, changing the operating mode manually at the robot controller is mandatory. > **NOTE** > > The current operation mode and safety state can be requested via [getCurrentRobotControllerState](getCurrentRobotControllerState). If a mode change is not possible, the response lists reasons for the failed change.
|
|
4913
4923
|
* @summary Set Default Mode
|
|
@@ -4917,7 +4927,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
4917
4927
|
* @param {*} [options] Override http request option.
|
|
4918
4928
|
* @throws {RequiredError}
|
|
4919
4929
|
*/
|
|
4920
|
-
setDefaultMode(cell: string, controller: string, mode: SettableRobotSystemMode, options?: RawAxiosRequestConfig): Promise<
|
|
4930
|
+
setDefaultMode(cell: string, controller: string, mode: SettableRobotSystemMode, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
4921
4931
|
/**
|
|
4922
4932
|
* <!-- theme: success --> > Websocket endpoint Sets the robot controller into freedrive mode and stays in freedrive until the websocket connection is closed by the client. In freedrive mode, it is possible to move the attached motion groups by hand. This is a blocking call. As long as the websocket connection is open, no other endpoint can control or move the robot. <!-- theme: danger --> > **DANGER** > > Danger caused by robot. Improper assessment by the integrator of the application-specific hazards can result in people being > crushed, drawn in or caught due to the robot\'s complex movement sequences. Before opening the websocket, ensure that > > - The robot is in a safe state, > - The right payload is set, > - No humans or object are within the robot\'s reach or within the cell. As long as the websocket connection is open you will get the current state of the robot system in the response in the specified `response_rate`. If the activation failed, the returned status will return possible reasons for the failure. Free drive mode is only available for robot controllers that support it, in particular cobots. Use [listRobotControllers](listRobotControllers) to check if the robot controller supports free drive mode.
|
|
4923
4933
|
* @summary Stream Free Drive
|
|
@@ -4927,7 +4937,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
4927
4937
|
* @param {*} [options] Override http request option.
|
|
4928
4938
|
* @throws {RequiredError}
|
|
4929
4939
|
*/
|
|
4930
|
-
streamFreeDrive(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<
|
|
4940
|
+
streamFreeDrive(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotControllerState, any>>;
|
|
4931
4941
|
/**
|
|
4932
4942
|
* <!-- theme: success --> > Websocket endpoint Receive updates of the state of a robot controller. The stream can be opened before the controller is registered. To register a controller, call [addRobotController](addRobotController). While connecting, the stream sends initialization updates. Once the controller reaches `MODE_MONITOR`, it sends controller state updates.
|
|
4933
4943
|
* @summary Stream State
|
|
@@ -4938,7 +4948,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
4938
4948
|
* @param {*} [options] Override http request option.
|
|
4939
4949
|
* @throws {RequiredError}
|
|
4940
4950
|
*/
|
|
4941
|
-
streamRobotControllerState(cell: string, controller: string, responseRate?: number, addControllerTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
4951
|
+
streamRobotControllerState(cell: string, controller: string, responseRate?: number, addControllerTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotControllerState, any>>;
|
|
4942
4952
|
/**
|
|
4943
4953
|
* Update the configuration of a robot controller. Reconfigure certain options of a robot controller, or deploy a specific container image of a robot controller. To update a virtual controller, the previous controller will be deleted and a new one created. Changes to the configuration, e.g., TCPs, coordinate systems, mounting, are **not** transferred to the new robot. <!-- theme: info --> > **NOTE** > > An update is not a reset. To do a reset: > 1. Get the current configuration via [getRobotController](getRobotController). > 2. Delete the existing virtual robot controller via [deleteRobotController](deleteRobotController). > 3. Add a virtual robot controller with [addRobotController](addRobotController).
|
|
4944
4954
|
* @summary Update Robot Controller
|
|
@@ -4949,7 +4959,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
4949
4959
|
* @param {*} [options] Override http request option.
|
|
4950
4960
|
* @throws {RequiredError}
|
|
4951
4961
|
*/
|
|
4952
|
-
updateRobotController(cell: string, controller: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
4962
|
+
updateRobotController(cell: string, controller: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
4953
4963
|
}
|
|
4954
4964
|
/**
|
|
4955
4965
|
* ControllerInputsOutputsApi - axios parameter creator
|
|
@@ -5141,7 +5151,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
|
|
|
5141
5151
|
* @param {*} [options] Override http request option.
|
|
5142
5152
|
* @throws {RequiredError}
|
|
5143
5153
|
*/
|
|
5144
|
-
listIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<
|
|
5154
|
+
listIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IODescription[], any>>;
|
|
5145
5155
|
/**
|
|
5146
5156
|
* Retrieves the current values of inputs/outputs. The identifiers of the inputs/outputs must be provided in the request. Request all available input/output identifiers via [listIODescriptions](listIODescriptions).
|
|
5147
5157
|
* @summary Get Input/Output Values
|
|
@@ -5151,7 +5161,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
|
|
|
5151
5161
|
* @param {*} [options] Override http request option.
|
|
5152
5162
|
* @throws {RequiredError}
|
|
5153
5163
|
*/
|
|
5154
|
-
listIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<
|
|
5164
|
+
listIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IOValue[], any>>;
|
|
5155
5165
|
/**
|
|
5156
5166
|
* Set the values of outputs. All available output identifiers and possible value ranges can be requested via [listIODescriptions](listIODescriptions). The call will return once the values have been set on and accepted by the robot. This can take up to 200 milliseconds. > **NOTE** > > Do not call this endpoint while another request is still in progress. The second call will fail.
|
|
5157
5167
|
* @summary Set Output Values
|
|
@@ -5161,7 +5171,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
|
|
|
5161
5171
|
* @param {*} [options] Override http request option.
|
|
5162
5172
|
* @throws {RequiredError}
|
|
5163
5173
|
*/
|
|
5164
|
-
setOutputValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<
|
|
5174
|
+
setOutputValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
5165
5175
|
/**
|
|
5166
5176
|
* <!-- 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.
|
|
5167
5177
|
* @summary Stream Input/Output Values
|
|
@@ -5171,7 +5181,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
|
|
|
5171
5181
|
* @param {*} [options] Override http request option.
|
|
5172
5182
|
* @throws {RequiredError}
|
|
5173
5183
|
*/
|
|
5174
|
-
streamIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<
|
|
5184
|
+
streamIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<StreamIOValuesResponse, any>>;
|
|
5175
5185
|
/**
|
|
5176
5186
|
* Wait until an input/output reaches a certain value. This call returns as soon as the condition is met or the request fails. The `comparison_type` value is used to define how the current value of the input/output is compared with given value. Only set the value that corresponds to the `value_type` of the input/output. See [listIODescriptions](listIODescriptions) for more information. **Examples** 1. Wait until analog input `AI_1` < 10: ``` io: \"AI_1\" comparison_type: \"COMPARISON_LESS\" value: 10 ``` 2. Wait until analog input `AI_2` > 5.0: ``` io: \"AI_2\" comparison_type: \"COMPARISON_GREATER\" value: 5.0 ``` 3. Wait until digital input `DI_3` is true: ``` io: \"DI_3\" comparison_type: \"COMPARISON_EQUAL\" value: true ```
|
|
5177
5187
|
* @summary Wait For
|
|
@@ -5181,7 +5191,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
|
|
|
5181
5191
|
* @param {*} [options] Override http request option.
|
|
5182
5192
|
* @throws {RequiredError}
|
|
5183
5193
|
*/
|
|
5184
|
-
waitForIOEvent(cell: string, controller: string, waitForIOEventRequest: WaitForIOEventRequest, options?: RawAxiosRequestConfig): Promise<
|
|
5194
|
+
waitForIOEvent(cell: string, controller: string, waitForIOEventRequest: WaitForIOEventRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<boolean, any>>;
|
|
5185
5195
|
}
|
|
5186
5196
|
/**
|
|
5187
5197
|
* JoggingApi - axios parameter creator
|
|
@@ -5241,7 +5251,7 @@ declare class JoggingApi extends BaseAPI {
|
|
|
5241
5251
|
* @param {*} [options] Override http request option.
|
|
5242
5252
|
* @throws {RequiredError}
|
|
5243
5253
|
*/
|
|
5244
|
-
executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): Promise<
|
|
5254
|
+
executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ExecuteJoggingResponse, any>>;
|
|
5245
5255
|
}
|
|
5246
5256
|
/**
|
|
5247
5257
|
* KinematicsApi - axios parameter creator
|
|
@@ -5324,7 +5334,7 @@ declare class KinematicsApi extends BaseAPI {
|
|
|
5324
5334
|
* @param {*} [options] Override http request option.
|
|
5325
5335
|
* @throws {RequiredError}
|
|
5326
5336
|
*/
|
|
5327
|
-
forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): Promise<
|
|
5337
|
+
forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ForwardKinematicsResponse, any>>;
|
|
5328
5338
|
/**
|
|
5329
5339
|
* Returns the reachable joint positions for a list of given poses.
|
|
5330
5340
|
* @summary Inverse kinematics
|
|
@@ -5333,7 +5343,7 @@ declare class KinematicsApi extends BaseAPI {
|
|
|
5333
5343
|
* @param {*} [options] Override http request option.
|
|
5334
5344
|
* @throws {RequiredError}
|
|
5335
5345
|
*/
|
|
5336
|
-
inverseKinematics(cell: string, inverseKinematicsRequest: InverseKinematicsRequest, options?: RawAxiosRequestConfig): Promise<
|
|
5346
|
+
inverseKinematics(cell: string, inverseKinematicsRequest: InverseKinematicsRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<InverseKinematicsResponse, any>>;
|
|
5337
5347
|
}
|
|
5338
5348
|
/**
|
|
5339
5349
|
* LicenseApi - axios parameter creator
|
|
@@ -5448,28 +5458,28 @@ declare class LicenseApi extends BaseAPI {
|
|
|
5448
5458
|
* @param {*} [options] Override http request option.
|
|
5449
5459
|
* @throws {RequiredError}
|
|
5450
5460
|
*/
|
|
5451
|
-
activateLicense(activateLicenseRequest: ActivateLicenseRequest, options?: RawAxiosRequestConfig): Promise<
|
|
5461
|
+
activateLicense(activateLicenseRequest: ActivateLicenseRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<License, any>>;
|
|
5452
5462
|
/**
|
|
5453
5463
|
* Deactivates active license.
|
|
5454
5464
|
* @summary Deactivate license
|
|
5455
5465
|
* @param {*} [options] Override http request option.
|
|
5456
5466
|
* @throws {RequiredError}
|
|
5457
5467
|
*/
|
|
5458
|
-
deactivateLicense(options?: RawAxiosRequestConfig): Promise<
|
|
5468
|
+
deactivateLicense(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
5459
5469
|
/**
|
|
5460
5470
|
* Get information on the license used with the Wandelbots NOVA instance, e.g., licensed product, expiration date, license status.
|
|
5461
5471
|
* @summary Get license
|
|
5462
5472
|
* @param {*} [options] Override http request option.
|
|
5463
5473
|
* @throws {RequiredError}
|
|
5464
5474
|
*/
|
|
5465
|
-
getLicense(options?: RawAxiosRequestConfig): Promise<
|
|
5475
|
+
getLicense(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<License, any>>;
|
|
5466
5476
|
/**
|
|
5467
5477
|
* 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.
|
|
5468
5478
|
* @summary Get license status
|
|
5469
5479
|
* @param {*} [options] Override http request option.
|
|
5470
5480
|
* @throws {RequiredError}
|
|
5471
5481
|
*/
|
|
5472
|
-
getLicenseStatus(options?: RawAxiosRequestConfig): Promise<
|
|
5482
|
+
getLicenseStatus(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<LicenseStatus, any>>;
|
|
5473
5483
|
}
|
|
5474
5484
|
/**
|
|
5475
5485
|
* MotionGroupApi - axios parameter creator
|
|
@@ -5599,7 +5609,7 @@ declare class MotionGroupApi extends BaseAPI {
|
|
|
5599
5609
|
* @param {*} [options] Override http request option.
|
|
5600
5610
|
* @throws {RequiredError}
|
|
5601
5611
|
*/
|
|
5602
|
-
getCurrentMotionGroupState(cell: string, controller: string, motionGroup: string, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<
|
|
5612
|
+
getCurrentMotionGroupState(cell: string, controller: string, motionGroup: string, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupState, any>>;
|
|
5603
5613
|
/**
|
|
5604
5614
|
* 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.
|
|
5605
5615
|
* @summary Description
|
|
@@ -5609,7 +5619,7 @@ declare class MotionGroupApi extends BaseAPI {
|
|
|
5609
5619
|
* @param {*} [options] Override http request option.
|
|
5610
5620
|
* @throws {RequiredError}
|
|
5611
5621
|
*/
|
|
5612
|
-
getMotionGroupDescription(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
5622
|
+
getMotionGroupDescription(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupDescription, any>>;
|
|
5613
5623
|
/**
|
|
5614
5624
|
* <!-- theme: success --> > Websocket endpoint Receive updates of the motion group state. The stream will be closed from the server if the controller is disconnected.
|
|
5615
5625
|
* @summary Stream State
|
|
@@ -5621,7 +5631,7 @@ declare class MotionGroupApi extends BaseAPI {
|
|
|
5621
5631
|
* @param {*} [options] Override http request option.
|
|
5622
5632
|
* @throws {RequiredError}
|
|
5623
5633
|
*/
|
|
5624
|
-
streamMotionGroupState(cell: string, controller: string, motionGroup: string, responseRate?: number, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<
|
|
5634
|
+
streamMotionGroupState(cell: string, controller: string, motionGroup: string, responseRate?: number, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupState, any>>;
|
|
5625
5635
|
}
|
|
5626
5636
|
/**
|
|
5627
5637
|
* MotionGroupModelsApi - axios parameter creator
|
|
@@ -5643,6 +5653,14 @@ declare const MotionGroupModelsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
5643
5653
|
* @throws {RequiredError}
|
|
5644
5654
|
*/
|
|
5645
5655
|
getMotionGroupGlbModel: (motionGroupModel: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5656
|
+
/**
|
|
5657
|
+
* Returns the kinematics model (DH parameters) for the given motion group model. See [getMotionGroupModels](getMotionGroupModels) for supported motion group models.
|
|
5658
|
+
* @summary Get Kinematics
|
|
5659
|
+
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](getOptimizerConfiguration).
|
|
5660
|
+
* @param {*} [options] Override http request option.
|
|
5661
|
+
* @throws {RequiredError}
|
|
5662
|
+
*/
|
|
5663
|
+
getMotionGroupKinematicModel: (motionGroupModel: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5646
5664
|
/**
|
|
5647
5665
|
* Returns the list of supported motion group models.
|
|
5648
5666
|
* @summary Motion Group Models
|
|
@@ -5681,6 +5699,14 @@ declare const MotionGroupModelsApiFp: (configuration?: Configuration) => {
|
|
|
5681
5699
|
* @throws {RequiredError}
|
|
5682
5700
|
*/
|
|
5683
5701
|
getMotionGroupGlbModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
5702
|
+
/**
|
|
5703
|
+
* Returns the kinematics model (DH parameters) for the given motion group model. See [getMotionGroupModels](getMotionGroupModels) for supported motion group models.
|
|
5704
|
+
* @summary Get Kinematics
|
|
5705
|
+
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](getOptimizerConfiguration).
|
|
5706
|
+
* @param {*} [options] Override http request option.
|
|
5707
|
+
* @throws {RequiredError}
|
|
5708
|
+
*/
|
|
5709
|
+
getMotionGroupKinematicModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<KinematicModel>>;
|
|
5684
5710
|
/**
|
|
5685
5711
|
* Returns the list of supported motion group models.
|
|
5686
5712
|
* @summary Motion Group Models
|
|
@@ -5719,6 +5745,14 @@ declare const MotionGroupModelsApiFactory: (configuration?: Configuration, baseP
|
|
|
5719
5745
|
* @throws {RequiredError}
|
|
5720
5746
|
*/
|
|
5721
5747
|
getMotionGroupGlbModel(motionGroupModel: string, options?: RawAxiosRequestConfig): AxiosPromise<File>;
|
|
5748
|
+
/**
|
|
5749
|
+
* Returns the kinematics model (DH parameters) for the given motion group model. See [getMotionGroupModels](getMotionGroupModels) for supported motion group models.
|
|
5750
|
+
* @summary Get Kinematics
|
|
5751
|
+
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](getOptimizerConfiguration).
|
|
5752
|
+
* @param {*} [options] Override http request option.
|
|
5753
|
+
* @throws {RequiredError}
|
|
5754
|
+
*/
|
|
5755
|
+
getMotionGroupKinematicModel(motionGroupModel: string, options?: RawAxiosRequestConfig): AxiosPromise<KinematicModel>;
|
|
5722
5756
|
/**
|
|
5723
5757
|
* Returns the list of supported motion group models.
|
|
5724
5758
|
* @summary Motion Group Models
|
|
@@ -5746,7 +5780,7 @@ declare class MotionGroupModelsApi extends BaseAPI {
|
|
|
5746
5780
|
* @param {*} [options] Override http request option.
|
|
5747
5781
|
* @throws {RequiredError}
|
|
5748
5782
|
*/
|
|
5749
|
-
getMotionGroupCollisionModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<
|
|
5783
|
+
getMotionGroupCollisionModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
|
|
5750
5784
|
[key: string]: Collider;
|
|
5751
5785
|
}[], any>>;
|
|
5752
5786
|
/**
|
|
@@ -5756,14 +5790,22 @@ declare class MotionGroupModelsApi extends BaseAPI {
|
|
|
5756
5790
|
* @param {*} [options] Override http request option.
|
|
5757
5791
|
* @throws {RequiredError}
|
|
5758
5792
|
*/
|
|
5759
|
-
getMotionGroupGlbModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<
|
|
5793
|
+
getMotionGroupGlbModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<File, any>>;
|
|
5794
|
+
/**
|
|
5795
|
+
* Returns the kinematics model (DH parameters) for the given motion group model. See [getMotionGroupModels](getMotionGroupModels) for supported motion group models.
|
|
5796
|
+
* @summary Get Kinematics
|
|
5797
|
+
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](getOptimizerConfiguration).
|
|
5798
|
+
* @param {*} [options] Override http request option.
|
|
5799
|
+
* @throws {RequiredError}
|
|
5800
|
+
*/
|
|
5801
|
+
getMotionGroupKinematicModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<KinematicModel, any>>;
|
|
5760
5802
|
/**
|
|
5761
5803
|
* Returns the list of supported motion group models.
|
|
5762
5804
|
* @summary Motion Group Models
|
|
5763
5805
|
* @param {*} [options] Override http request option.
|
|
5764
5806
|
* @throws {RequiredError}
|
|
5765
5807
|
*/
|
|
5766
|
-
getMotionGroupModels(options?: RawAxiosRequestConfig): Promise<
|
|
5808
|
+
getMotionGroupModels(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
|
|
5767
5809
|
/**
|
|
5768
5810
|
* Returns the USD scene model for the specified motion group model. See [getMotionGroupModels](getMotionGroupModels) for supported identifiers.
|
|
5769
5811
|
* @summary Download USD Model
|
|
@@ -5771,7 +5813,7 @@ declare class MotionGroupModelsApi extends BaseAPI {
|
|
|
5771
5813
|
* @param {*} [options] Override http request option.
|
|
5772
5814
|
* @throws {RequiredError}
|
|
5773
5815
|
*/
|
|
5774
|
-
getMotionGroupUsdModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<
|
|
5816
|
+
getMotionGroupUsdModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<File, any>>;
|
|
5775
5817
|
}
|
|
5776
5818
|
/**
|
|
5777
5819
|
* ProgramApi - axios parameter creator
|
|
@@ -5908,7 +5950,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
5908
5950
|
* @param {*} [options] Override http request option.
|
|
5909
5951
|
* @throws {RequiredError}
|
|
5910
5952
|
*/
|
|
5911
|
-
getProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<
|
|
5953
|
+
getProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Program, any>>;
|
|
5912
5954
|
/**
|
|
5913
5955
|
* <!-- theme: danger --> > **Experimental** List details of all existing programs.
|
|
5914
5956
|
* @summary List programs
|
|
@@ -5916,7 +5958,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
5916
5958
|
* @param {*} [options] Override http request option.
|
|
5917
5959
|
* @throws {RequiredError}
|
|
5918
5960
|
*/
|
|
5919
|
-
listPrograms(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
5961
|
+
listPrograms(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Program[], any>>;
|
|
5920
5962
|
/**
|
|
5921
5963
|
* <!-- theme: danger --> > **Experimental** This endpoint starts a new program execution. The program will be executed asynchronously.
|
|
5922
5964
|
* @summary Start the program
|
|
@@ -5926,7 +5968,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
5926
5968
|
* @param {*} [options] Override http request option.
|
|
5927
5969
|
* @throws {RequiredError}
|
|
5928
5970
|
*/
|
|
5929
|
-
startProgram(cell: string, program: string, programStartRequest: ProgramStartRequest, options?: RawAxiosRequestConfig): Promise<
|
|
5971
|
+
startProgram(cell: string, program: string, programStartRequest: ProgramStartRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProgramRun, any>>;
|
|
5930
5972
|
/**
|
|
5931
5973
|
* <!-- theme: danger --> > **Experimental** Stop a specific program run.
|
|
5932
5974
|
* @summary Stop program run
|
|
@@ -5935,7 +5977,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
5935
5977
|
* @param {*} [options] Override http request option.
|
|
5936
5978
|
* @throws {RequiredError}
|
|
5937
5979
|
*/
|
|
5938
|
-
stopProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<
|
|
5980
|
+
stopProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
5939
5981
|
}
|
|
5940
5982
|
/**
|
|
5941
5983
|
* RobotConfigurationsApi - axios parameter creator
|
|
@@ -5983,7 +6025,7 @@ declare class RobotConfigurationsApi extends BaseAPI {
|
|
|
5983
6025
|
* @param {*} [options] Override http request option.
|
|
5984
6026
|
* @throws {RequiredError}
|
|
5985
6027
|
*/
|
|
5986
|
-
getRobotConfigurations(options?: RawAxiosRequestConfig): Promise<
|
|
6028
|
+
getRobotConfigurations(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
|
|
5987
6029
|
}
|
|
5988
6030
|
/**
|
|
5989
6031
|
* StoreCollisionComponentsApi - axios parameter creator
|
|
@@ -6456,7 +6498,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
6456
6498
|
* @param {*} [options] Override http request option.
|
|
6457
6499
|
* @throws {RequiredError}
|
|
6458
6500
|
*/
|
|
6459
|
-
deleteStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<
|
|
6501
|
+
deleteStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
6460
6502
|
/**
|
|
6461
6503
|
* Deletes the stored link chain. <!-- theme: danger --> > This will delete persistently stored data.
|
|
6462
6504
|
* @summary Delete Link Chain
|
|
@@ -6465,7 +6507,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
6465
6507
|
* @param {*} [options] Override http request option.
|
|
6466
6508
|
* @throws {RequiredError}
|
|
6467
6509
|
*/
|
|
6468
|
-
deleteStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<
|
|
6510
|
+
deleteStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
6469
6511
|
/**
|
|
6470
6512
|
* Deletes the stored tool. <!-- theme: danger --> > This will delete persistently stored data.
|
|
6471
6513
|
* @summary Delete Tool
|
|
@@ -6474,7 +6516,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
6474
6516
|
* @param {*} [options] Override http request option.
|
|
6475
6517
|
* @throws {RequiredError}
|
|
6476
6518
|
*/
|
|
6477
|
-
deleteStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<
|
|
6519
|
+
deleteStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
6478
6520
|
/**
|
|
6479
6521
|
* Returns the collider.
|
|
6480
6522
|
* @summary Get Collider
|
|
@@ -6483,7 +6525,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
6483
6525
|
* @param {*} [options] Override http request option.
|
|
6484
6526
|
* @throws {RequiredError}
|
|
6485
6527
|
*/
|
|
6486
|
-
getStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<
|
|
6528
|
+
getStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Collider, any>>;
|
|
6487
6529
|
/**
|
|
6488
6530
|
* Returns the collision link chain.
|
|
6489
6531
|
* @summary Get Link Chain
|
|
@@ -6492,7 +6534,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
6492
6534
|
* @param {*} [options] Override http request option.
|
|
6493
6535
|
* @throws {RequiredError}
|
|
6494
6536
|
*/
|
|
6495
|
-
getStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<
|
|
6537
|
+
getStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
|
|
6496
6538
|
[key: string]: Collider;
|
|
6497
6539
|
}[], any>>;
|
|
6498
6540
|
/**
|
|
@@ -6503,7 +6545,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
6503
6545
|
* @param {*} [options] Override http request option.
|
|
6504
6546
|
* @throws {RequiredError}
|
|
6505
6547
|
*/
|
|
6506
|
-
getStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<
|
|
6548
|
+
getStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
|
|
6507
6549
|
[key: string]: Collider;
|
|
6508
6550
|
}, any>>;
|
|
6509
6551
|
/**
|
|
@@ -6513,7 +6555,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
6513
6555
|
* @param {*} [options] Override http request option.
|
|
6514
6556
|
* @throws {RequiredError}
|
|
6515
6557
|
*/
|
|
6516
|
-
listCollisionLinkChains(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
6558
|
+
listCollisionLinkChains(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
|
|
6517
6559
|
[key: string]: {
|
|
6518
6560
|
[key: string]: Collider;
|
|
6519
6561
|
}[];
|
|
@@ -6525,7 +6567,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
6525
6567
|
* @param {*} [options] Override http request option.
|
|
6526
6568
|
* @throws {RequiredError}
|
|
6527
6569
|
*/
|
|
6528
|
-
listCollisionLinkChainsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
6570
|
+
listCollisionLinkChainsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
|
|
6529
6571
|
/**
|
|
6530
6572
|
* Returns all stored colliders.
|
|
6531
6573
|
* @summary List Colliders
|
|
@@ -6533,7 +6575,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
6533
6575
|
* @param {*} [options] Override http request option.
|
|
6534
6576
|
* @throws {RequiredError}
|
|
6535
6577
|
*/
|
|
6536
|
-
listStoredColliders(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
6578
|
+
listStoredColliders(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
|
|
6537
6579
|
[key: string]: Collider;
|
|
6538
6580
|
}, any>>;
|
|
6539
6581
|
/**
|
|
@@ -6543,7 +6585,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
6543
6585
|
* @param {*} [options] Override http request option.
|
|
6544
6586
|
* @throws {RequiredError}
|
|
6545
6587
|
*/
|
|
6546
|
-
listStoredCollidersKeys(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
6588
|
+
listStoredCollidersKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
|
|
6547
6589
|
/**
|
|
6548
6590
|
* Returns the list of stored tools.
|
|
6549
6591
|
* @summary List Tools
|
|
@@ -6551,7 +6593,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
6551
6593
|
* @param {*} [options] Override http request option.
|
|
6552
6594
|
* @throws {RequiredError}
|
|
6553
6595
|
*/
|
|
6554
|
-
listStoredCollisionTools(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
6596
|
+
listStoredCollisionTools(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
|
|
6555
6597
|
[key: string]: {
|
|
6556
6598
|
[key: string]: Collider;
|
|
6557
6599
|
};
|
|
@@ -6563,7 +6605,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
6563
6605
|
* @param {*} [options] Override http request option.
|
|
6564
6606
|
* @throws {RequiredError}
|
|
6565
6607
|
*/
|
|
6566
|
-
listStoredCollisionToolsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
6608
|
+
listStoredCollisionToolsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
|
|
6567
6609
|
/**
|
|
6568
6610
|
* Stores collider. - If the collider does not exist, it will be created. - If the collider exists, it will be updated.
|
|
6569
6611
|
* @summary Store Collider
|
|
@@ -6573,7 +6615,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
6573
6615
|
* @param {*} [options] Override http request option.
|
|
6574
6616
|
* @throws {RequiredError}
|
|
6575
6617
|
*/
|
|
6576
|
-
storeCollider(cell: string, collider: string, collider2: Collider, options?: RawAxiosRequestConfig): Promise<
|
|
6618
|
+
storeCollider(cell: string, collider: string, collider2: Collider, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Collider, any>>;
|
|
6577
6619
|
/**
|
|
6578
6620
|
* Stores link chain. - If the link chain does not exist, it will be created. - If the link chain exists, it will be updated.
|
|
6579
6621
|
* @summary Store Link Chain
|
|
@@ -6585,7 +6627,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
6585
6627
|
*/
|
|
6586
6628
|
storeCollisionLinkChain(cell: string, linkChain: string, collider: Array<{
|
|
6587
6629
|
[key: string]: Collider;
|
|
6588
|
-
}>, options?: RawAxiosRequestConfig): Promise<
|
|
6630
|
+
}>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
|
|
6589
6631
|
[key: string]: Collider;
|
|
6590
6632
|
}[], any>>;
|
|
6591
6633
|
/**
|
|
@@ -6599,7 +6641,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
6599
6641
|
*/
|
|
6600
6642
|
storeCollisionTool(cell: string, tool: string, requestBody: {
|
|
6601
6643
|
[key: string]: Collider;
|
|
6602
|
-
}, options?: RawAxiosRequestConfig): Promise<
|
|
6644
|
+
}, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
|
|
6603
6645
|
[key: string]: Collider;
|
|
6604
6646
|
}, any>>;
|
|
6605
6647
|
}
|
|
@@ -6766,7 +6808,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
|
|
|
6766
6808
|
* @param {*} [options] Override http request option.
|
|
6767
6809
|
* @throws {RequiredError}
|
|
6768
6810
|
*/
|
|
6769
|
-
deleteStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<
|
|
6811
|
+
deleteStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
6770
6812
|
/**
|
|
6771
6813
|
* Returns the stored collision setup.
|
|
6772
6814
|
* @summary Get Collision Setup
|
|
@@ -6775,7 +6817,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
|
|
|
6775
6817
|
* @param {*} [options] Override http request option.
|
|
6776
6818
|
* @throws {RequiredError}
|
|
6777
6819
|
*/
|
|
6778
|
-
getStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<
|
|
6820
|
+
getStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CollisionSetup, any>>;
|
|
6779
6821
|
/**
|
|
6780
6822
|
* Returns a list of stored collision setups.
|
|
6781
6823
|
* @summary List Collision Setups
|
|
@@ -6783,7 +6825,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
|
|
|
6783
6825
|
* @param {*} [options] Override http request option.
|
|
6784
6826
|
* @throws {RequiredError}
|
|
6785
6827
|
*/
|
|
6786
|
-
listStoredCollisionSetups(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
6828
|
+
listStoredCollisionSetups(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
|
|
6787
6829
|
[key: string]: CollisionSetup;
|
|
6788
6830
|
}, any>>;
|
|
6789
6831
|
/**
|
|
@@ -6793,7 +6835,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
|
|
|
6793
6835
|
* @param {*} [options] Override http request option.
|
|
6794
6836
|
* @throws {RequiredError}
|
|
6795
6837
|
*/
|
|
6796
|
-
listStoredCollisionSetupsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
6838
|
+
listStoredCollisionSetupsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
|
|
6797
6839
|
/**
|
|
6798
6840
|
* Stores collision setup. - If the collision setup does not exist, it will be created. - If the collision setup exists, it will be updated.
|
|
6799
6841
|
* @summary Store Collision Setup
|
|
@@ -6803,7 +6845,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
|
|
|
6803
6845
|
* @param {*} [options] Override http request option.
|
|
6804
6846
|
* @throws {RequiredError}
|
|
6805
6847
|
*/
|
|
6806
|
-
storeCollisionSetup(cell: string, setup: string, collisionSetup: CollisionSetup, options?: RawAxiosRequestConfig): Promise<
|
|
6848
|
+
storeCollisionSetup(cell: string, setup: string, collisionSetup: CollisionSetup, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CollisionSetup, any>>;
|
|
6807
6849
|
}
|
|
6808
6850
|
/**
|
|
6809
6851
|
* StoreObjectApi - axios parameter creator
|
|
@@ -6999,7 +7041,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
6999
7041
|
* @param {*} [options] Override http request option.
|
|
7000
7042
|
* @throws {RequiredError}
|
|
7001
7043
|
*/
|
|
7002
|
-
clearAllObjects(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
7044
|
+
clearAllObjects(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
7003
7045
|
/**
|
|
7004
7046
|
* Delete an object <!-- theme: danger --> > This will delete persistently stored data.
|
|
7005
7047
|
* @summary Delete Object
|
|
@@ -7008,7 +7050,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
7008
7050
|
* @param {*} [options] Override http request option.
|
|
7009
7051
|
* @throws {RequiredError}
|
|
7010
7052
|
*/
|
|
7011
|
-
deleteObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<
|
|
7053
|
+
deleteObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
7012
7054
|
/**
|
|
7013
7055
|
* Returns content and metadata of a stored object.
|
|
7014
7056
|
* @summary Get Object
|
|
@@ -7017,7 +7059,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
7017
7059
|
* @param {*} [options] Override http request option.
|
|
7018
7060
|
* @throws {RequiredError}
|
|
7019
7061
|
*/
|
|
7020
|
-
getObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<
|
|
7062
|
+
getObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<File, any>>;
|
|
7021
7063
|
/**
|
|
7022
7064
|
* Returns metadata. Object content is not returned.
|
|
7023
7065
|
* @summary Get Object Metadata
|
|
@@ -7026,7 +7068,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
7026
7068
|
* @param {*} [options] Override http request option.
|
|
7027
7069
|
* @throws {RequiredError}
|
|
7028
7070
|
*/
|
|
7029
|
-
getObjectMetadata(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<
|
|
7071
|
+
getObjectMetadata(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
7030
7072
|
/**
|
|
7031
7073
|
* List the keys for all objects.
|
|
7032
7074
|
* @summary List all Object Keys
|
|
@@ -7034,7 +7076,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
7034
7076
|
* @param {*} [options] Override http request option.
|
|
7035
7077
|
* @throws {RequiredError}
|
|
7036
7078
|
*/
|
|
7037
|
-
listAllObjectKeys(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
7079
|
+
listAllObjectKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
|
|
7038
7080
|
/**
|
|
7039
7081
|
* Store any data as an object. Using a key which already contains an object will override the previously stored object. Use [getObjectMetadata](getObjectMetadata) to verify that the key does not contain objects. #### Optional Specify metadata as a dictionary with names and values.
|
|
7040
7082
|
* @summary Store Object
|
|
@@ -7047,7 +7089,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
7047
7089
|
*/
|
|
7048
7090
|
storeObject(cell: string, key: string, xMetadata?: {
|
|
7049
7091
|
[key: string]: string;
|
|
7050
|
-
}, anyValue?: any, options?: RawAxiosRequestConfig): Promise<
|
|
7092
|
+
}, anyValue?: any, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
7051
7093
|
}
|
|
7052
7094
|
/**
|
|
7053
7095
|
* SystemApi - axios parameter creator
|
|
@@ -7294,7 +7336,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
7294
7336
|
*/
|
|
7295
7337
|
backupConfiguration(resources?: Array<string>, metadata?: {
|
|
7296
7338
|
[key: string]: string;
|
|
7297
|
-
}, options?: RawAxiosRequestConfig): Promise<
|
|
7339
|
+
}, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<File, any>>;
|
|
7298
7340
|
/**
|
|
7299
7341
|
* Check if a more recent Wandelbots NOVA Version is available.
|
|
7300
7342
|
* @summary Check update
|
|
@@ -7302,7 +7344,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
7302
7344
|
* @param {*} [options] Override http request option.
|
|
7303
7345
|
* @throws {RequiredError}
|
|
7304
7346
|
*/
|
|
7305
|
-
checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<
|
|
7347
|
+
checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string, any>>;
|
|
7306
7348
|
/**
|
|
7307
7349
|
* 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.
|
|
7308
7350
|
* @summary Retrieve Backup Status
|
|
@@ -7310,35 +7352,35 @@ declare class SystemApi extends BaseAPI {
|
|
|
7310
7352
|
* @param {*} [options] Override http request option.
|
|
7311
7353
|
* @throws {RequiredError}
|
|
7312
7354
|
*/
|
|
7313
|
-
getConfigurationBackupStatus(operationId: string, options?: RawAxiosRequestConfig): Promise<
|
|
7355
|
+
getConfigurationBackupStatus(operationId: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ConfigurationArchiveStatus, any>>;
|
|
7314
7356
|
/**
|
|
7315
7357
|
* 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.
|
|
7316
7358
|
* @summary Download Diagnosis Package
|
|
7317
7359
|
* @param {*} [options] Override http request option.
|
|
7318
7360
|
* @throws {RequiredError}
|
|
7319
7361
|
*/
|
|
7320
|
-
getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<
|
|
7362
|
+
getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<File, any>>;
|
|
7321
7363
|
/**
|
|
7322
7364
|
* Get the status of all system services.
|
|
7323
7365
|
* @summary Wandelbots NOVA status
|
|
7324
7366
|
* @param {*} [options] Override http request option.
|
|
7325
7367
|
* @throws {RequiredError}
|
|
7326
7368
|
*/
|
|
7327
|
-
getSystemStatus(options?: RawAxiosRequestConfig): Promise<
|
|
7369
|
+
getSystemStatus(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ServiceStatus[], any>>;
|
|
7328
7370
|
/**
|
|
7329
7371
|
* Get the current Wandelbots NOVA version.
|
|
7330
7372
|
* @summary Wandelbots NOVA Version
|
|
7331
7373
|
* @param {*} [options] Override http request option.
|
|
7332
7374
|
* @throws {RequiredError}
|
|
7333
7375
|
*/
|
|
7334
|
-
getSystemVersion(options?: RawAxiosRequestConfig): Promise<
|
|
7376
|
+
getSystemVersion(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string, any>>;
|
|
7335
7377
|
/**
|
|
7336
7378
|
* Retrieves a list of all available configuration resources for backup purposes.
|
|
7337
7379
|
* @summary List Configuration Resources
|
|
7338
7380
|
* @param {*} [options] Override http request option.
|
|
7339
7381
|
* @throws {RequiredError}
|
|
7340
7382
|
*/
|
|
7341
|
-
listConfigurationResources(options?: RawAxiosRequestConfig): Promise<
|
|
7383
|
+
listConfigurationResources(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ConfigurationResource[], any>>;
|
|
7342
7384
|
/**
|
|
7343
7385
|
* Restores a previously backed up configuration.
|
|
7344
7386
|
* @summary Restore Configuration Backup
|
|
@@ -7347,7 +7389,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
7347
7389
|
* @param {*} [options] Override http request option.
|
|
7348
7390
|
* @throws {RequiredError}
|
|
7349
7391
|
*/
|
|
7350
|
-
restoreConfiguration(resources: Array<string>, body: File, options?: RawAxiosRequestConfig): Promise<
|
|
7392
|
+
restoreConfiguration(resources: Array<string>, body: File, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
7351
7393
|
/**
|
|
7352
7394
|
* 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.
|
|
7353
7395
|
* @summary Update Wandelbots NOVA version
|
|
@@ -7355,7 +7397,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
7355
7397
|
* @param {*} [options] Override http request option.
|
|
7356
7398
|
* @throws {RequiredError}
|
|
7357
7399
|
*/
|
|
7358
|
-
updateNovaVersion(updateNovaVersionRequest: UpdateNovaVersionRequest, options?: RawAxiosRequestConfig): Promise<
|
|
7400
|
+
updateNovaVersion(updateNovaVersionRequest: UpdateNovaVersionRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
7359
7401
|
}
|
|
7360
7402
|
/**
|
|
7361
7403
|
* TrajectoryCachingApi - axios parameter creator
|
|
@@ -7529,7 +7571,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
|
|
|
7529
7571
|
* @param {*} [options] Override http request option.
|
|
7530
7572
|
* @throws {RequiredError}
|
|
7531
7573
|
*/
|
|
7532
|
-
addTrajectory(cell: string, controller: string, addTrajectoryRequest: AddTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<
|
|
7574
|
+
addTrajectory(cell: string, controller: string, addTrajectoryRequest: AddTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<AddTrajectoryResponse, any>>;
|
|
7533
7575
|
/**
|
|
7534
7576
|
* Clear the trajectory cache.
|
|
7535
7577
|
* @summary Clear Trajectories
|
|
@@ -7538,7 +7580,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
|
|
|
7538
7580
|
* @param {*} [options] Override http request option.
|
|
7539
7581
|
* @throws {RequiredError}
|
|
7540
7582
|
*/
|
|
7541
|
-
clearTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
7583
|
+
clearTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
7542
7584
|
/**
|
|
7543
7585
|
* Delete a previously created trajectory from cache. Use [listTrajectories](listTrajectories) to list all cached trajectories. Trajectories are removed automatically if the motion group or the corresponding controller is disconnected.
|
|
7544
7586
|
* @summary Delete Trajectory
|
|
@@ -7548,7 +7590,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
|
|
|
7548
7590
|
* @param {*} [options] Override http request option.
|
|
7549
7591
|
* @throws {RequiredError}
|
|
7550
7592
|
*/
|
|
7551
|
-
deleteTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<
|
|
7593
|
+
deleteTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
7552
7594
|
/**
|
|
7553
7595
|
* Get a previously created trajectory from cache. Use [listTrajectories](listTrajectories) to list all cached trajectories.
|
|
7554
7596
|
* @summary Get Trajectory
|
|
@@ -7558,7 +7600,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
|
|
|
7558
7600
|
* @param {*} [options] Override http request option.
|
|
7559
7601
|
* @throws {RequiredError}
|
|
7560
7602
|
*/
|
|
7561
|
-
getTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<
|
|
7603
|
+
getTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<GetTrajectoryResponse, any>>;
|
|
7562
7604
|
/**
|
|
7563
7605
|
* List currently cached trajectories. Use [addTrajectory](addTrajectory) to add a new trajectory. Adding trajectories is necessary to execute them. Trajectories are removed if the corresponding motion group or controller disconnects.
|
|
7564
7606
|
* @summary List Trajectories
|
|
@@ -7567,7 +7609,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
|
|
|
7567
7609
|
* @param {*} [options] Override http request option.
|
|
7568
7610
|
* @throws {RequiredError}
|
|
7569
7611
|
*/
|
|
7570
|
-
listTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
7612
|
+
listTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ListTrajectoriesResponse, any>>;
|
|
7571
7613
|
}
|
|
7572
7614
|
/**
|
|
7573
7615
|
* TrajectoryExecutionApi - axios parameter creator
|
|
@@ -7627,7 +7669,7 @@ declare class TrajectoryExecutionApi extends BaseAPI {
|
|
|
7627
7669
|
* @param {*} [options] Override http request option.
|
|
7628
7670
|
* @throws {RequiredError}
|
|
7629
7671
|
*/
|
|
7630
|
-
executeTrajectory(cell: string, controller: string, executeTrajectoryRequest: ExecuteTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<
|
|
7672
|
+
executeTrajectory(cell: string, controller: string, executeTrajectoryRequest: ExecuteTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ExecuteTrajectoryResponse, any>>;
|
|
7631
7673
|
}
|
|
7632
7674
|
/**
|
|
7633
7675
|
* TrajectoryPlanningApi - axios parameter creator
|
|
@@ -7710,7 +7752,7 @@ declare class TrajectoryPlanningApi extends BaseAPI {
|
|
|
7710
7752
|
* @param {*} [options] Override http request option.
|
|
7711
7753
|
* @throws {RequiredError}
|
|
7712
7754
|
*/
|
|
7713
|
-
planCollisionFree(cell: string, planCollisionFreeRequest: PlanCollisionFreeRequest, options?: RawAxiosRequestConfig): Promise<
|
|
7755
|
+
planCollisionFree(cell: string, planCollisionFreeRequest: PlanCollisionFreeRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<PlanCollisionFreeResponse, any>>;
|
|
7714
7756
|
/**
|
|
7715
7757
|
* Plans a new trajectory for a single motion group. Describe the trajectory as a sequence of motion commands that the robots TCP should follow. Use the following workflow to execute a planned trajectory: 1. Plan a trajectory. 2. Optional: Load the planned trajectory into the cache using the [addTrajectory](addTrajectory) endpoint. 3. Execute the (cached) trajectory using the [executeTrajectory](executeTrajectory) endpoint. If the trajectory is not executable, the response will contain the joint trajectory up until the error, e.g., all samples until a collision occurs. <!-- theme: info --> > #### Exception > > If a CartesianPTP or JointPTP motion command has an invalid target, the response will contain the trajectory up until the start of the invalid PTP motion.
|
|
7716
7758
|
* @summary Plan Trajectory
|
|
@@ -7719,7 +7761,7 @@ declare class TrajectoryPlanningApi extends BaseAPI {
|
|
|
7719
7761
|
* @param {*} [options] Override http request option.
|
|
7720
7762
|
* @throws {RequiredError}
|
|
7721
7763
|
*/
|
|
7722
|
-
planTrajectory(cell: string, planTrajectoryRequest: PlanTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<
|
|
7764
|
+
planTrajectory(cell: string, planTrajectoryRequest: PlanTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<PlanTrajectoryResponse, any>>;
|
|
7723
7765
|
}
|
|
7724
7766
|
/**
|
|
7725
7767
|
* VersionApi - axios parameter creator
|
|
@@ -7767,7 +7809,7 @@ declare class VersionApi extends BaseAPI {
|
|
|
7767
7809
|
* @param {*} [options] Override http request option.
|
|
7768
7810
|
* @throws {RequiredError}
|
|
7769
7811
|
*/
|
|
7770
|
-
getApiVersion(options?: RawAxiosRequestConfig): Promise<
|
|
7812
|
+
getApiVersion(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ApiVersion, any>>;
|
|
7771
7813
|
}
|
|
7772
7814
|
/**
|
|
7773
7815
|
* VirtualControllerApi - axios parameter creator
|
|
@@ -8257,7 +8299,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
8257
8299
|
* @param {*} [options] Override http request option.
|
|
8258
8300
|
* @throws {RequiredError}
|
|
8259
8301
|
*/
|
|
8260
|
-
addVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, coordinateSystemData: CoordinateSystemData, options?: RawAxiosRequestConfig): Promise<
|
|
8302
|
+
addVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, coordinateSystemData: CoordinateSystemData, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
8261
8303
|
/**
|
|
8262
8304
|
* 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.
|
|
8263
8305
|
* @summary Add TCP
|
|
@@ -8269,7 +8311,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
8269
8311
|
* @param {*} [options] Override http request option.
|
|
8270
8312
|
* @throws {RequiredError}
|
|
8271
8313
|
*/
|
|
8272
|
-
addVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, robotTcpData: RobotTcpData, options?: RawAxiosRequestConfig): Promise<
|
|
8314
|
+
addVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, robotTcpData: RobotTcpData, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
8273
8315
|
/**
|
|
8274
8316
|
* 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.
|
|
8275
8317
|
* @summary Delete Coordinate System
|
|
@@ -8280,7 +8322,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
8280
8322
|
* @param {*} [options] Override http request option.
|
|
8281
8323
|
* @throws {RequiredError}
|
|
8282
8324
|
*/
|
|
8283
|
-
deleteVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<
|
|
8325
|
+
deleteVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
8284
8326
|
/**
|
|
8285
8327
|
* 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.
|
|
8286
8328
|
* @summary Remove TCP
|
|
@@ -8291,7 +8333,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
8291
8333
|
* @param {*} [options] Override http request option.
|
|
8292
8334
|
* @throws {RequiredError}
|
|
8293
8335
|
*/
|
|
8294
|
-
deleteVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): Promise<
|
|
8336
|
+
deleteVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
8295
8337
|
/**
|
|
8296
8338
|
* Requests the Emergency Stop state of the virtual robot controller. Use [getCurrentMotionGroupState](getCurrentMotionGroupState) to get the Emergency Stop state with `safety_state` regardless of the controller type. > **NOTE** > > The Emergency Stop state can only be changed when using virtual robot controllers.
|
|
8297
8339
|
* @summary Get Emergency Stop State
|
|
@@ -8300,7 +8342,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
8300
8342
|
* @param {*} [options] Override http request option.
|
|
8301
8343
|
* @throws {RequiredError}
|
|
8302
8344
|
*/
|
|
8303
|
-
getEmergencyStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
8345
|
+
getEmergencyStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Flag, any>>;
|
|
8304
8346
|
/**
|
|
8305
8347
|
* Get the current motion group state which provides values for the joints\' position, velocity and acceleration.
|
|
8306
8348
|
* @summary Get Motion Group State
|
|
@@ -8310,7 +8352,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
8310
8352
|
* @param {*} [options] Override http request option.
|
|
8311
8353
|
* @throws {RequiredError}
|
|
8312
8354
|
*/
|
|
8313
|
-
getMotionGroupState(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
8355
|
+
getMotionGroupState(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupJoints, any>>;
|
|
8314
8356
|
/**
|
|
8315
8357
|
* Gets information on the motion group.
|
|
8316
8358
|
* @summary Motion Group Description
|
|
@@ -8319,7 +8361,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
8319
8361
|
* @param {*} [options] Override http request option.
|
|
8320
8362
|
* @throws {RequiredError}
|
|
8321
8363
|
*/
|
|
8322
|
-
getMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
8364
|
+
getMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupInfo[], any>>;
|
|
8323
8365
|
/**
|
|
8324
8366
|
* Requests the operation mode of the virtual robot controller. To get the operation mode regardless of the controller type, use [getCurrentMotionGroupState](getCurrentMotionGroupState). > **NOTE** > > The operation mode can only be changed via API when using virtual robot controllers.
|
|
8325
8367
|
* @summary Get Operation Mode
|
|
@@ -8328,7 +8370,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
8328
8370
|
* @param {*} [options] Override http request option.
|
|
8329
8371
|
* @throws {RequiredError}
|
|
8330
8372
|
*/
|
|
8331
|
-
getOperationMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
8373
|
+
getOperationMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<OpMode, any>>;
|
|
8332
8374
|
/**
|
|
8333
8375
|
* Gets motion group mounting. The motion group is based on the origin of the returned coordinate system.
|
|
8334
8376
|
* @summary Get Mounting
|
|
@@ -8338,7 +8380,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
8338
8380
|
* @param {*} [options] Override http request option.
|
|
8339
8381
|
* @throws {RequiredError}
|
|
8340
8382
|
*/
|
|
8341
|
-
getVirtualControllerMounting(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
8383
|
+
getVirtualControllerMounting(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem, any>>;
|
|
8342
8384
|
/**
|
|
8343
8385
|
* Lists all coordinate systems on the robot controller.
|
|
8344
8386
|
* @summary List Coordinate Systems
|
|
@@ -8347,7 +8389,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
8347
8389
|
* @param {*} [options] Override http request option.
|
|
8348
8390
|
* @throws {RequiredError}
|
|
8349
8391
|
*/
|
|
8350
|
-
listVirtualControllerCoordinateSystems(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
8392
|
+
listVirtualControllerCoordinateSystems(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem[], any>>;
|
|
8351
8393
|
/**
|
|
8352
8394
|
* Lists TCPs of the motion group. An empty TCP list is valid, e.g., for external axes.
|
|
8353
8395
|
* @summary List TCPs
|
|
@@ -8357,7 +8399,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
8357
8399
|
* @param {*} [options] Override http request option.
|
|
8358
8400
|
* @throws {RequiredError}
|
|
8359
8401
|
*/
|
|
8360
|
-
listVirtualControllerTcps(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
8402
|
+
listVirtualControllerTcps(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotTcp[], any>>;
|
|
8361
8403
|
/**
|
|
8362
8404
|
* Activates or releases the Emergency Stop on the virtual robot controller. Activating the Emergency Stop stops the execution of all motions. The stop is executed on physical controllers immediately not gracefully and not on paths. Due to restricted physical behavior of the virtual robot controller, the Emergency Stop is executed on paths. To return to normal operation the Emergency Stop needs to be released. Use [getCurrentMotionGroupState](getCurrentMotionGroupState) to get the Emergency Stop state with `safety_state` regardless of the controller type. > **NOTE** > > The Emergency Stop state can only be changed via API when using virtual robot controllers.
|
|
8363
8405
|
* @summary Push or Release Emergency Stop
|
|
@@ -8367,7 +8409,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
8367
8409
|
* @param {*} [options] Override http request option.
|
|
8368
8410
|
* @throws {RequiredError}
|
|
8369
8411
|
*/
|
|
8370
|
-
setEmergencyStop(cell: string, controller: string, active?: boolean, options?: RawAxiosRequestConfig): Promise<
|
|
8412
|
+
setEmergencyStop(cell: string, controller: string, active?: boolean, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
8371
8413
|
/**
|
|
8372
8414
|
* 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.
|
|
8373
8415
|
* @summary Set Motion Group State
|
|
@@ -8378,7 +8420,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
8378
8420
|
* @param {*} [options] Override http request option.
|
|
8379
8421
|
* @throws {RequiredError}
|
|
8380
8422
|
*/
|
|
8381
|
-
setMotionGroupState(cell: string, controller: string, motionGroup: string, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): Promise<
|
|
8423
|
+
setMotionGroupState(cell: string, controller: string, motionGroup: string, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
8382
8424
|
/**
|
|
8383
8425
|
* Changes the operation mode of the virtual robot controller to the specified value. To get the operation mode regardless of the controller type, use [getCurrentMotionGroupState](getCurrentMotionGroupState). > **NOTE** > > The operation mode can only be changed via API when using virtual robot controllers.
|
|
8384
8426
|
* @summary Set Operation Mode
|
|
@@ -8388,7 +8430,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
8388
8430
|
* @param {*} [options] Override http request option.
|
|
8389
8431
|
* @throws {RequiredError}
|
|
8390
8432
|
*/
|
|
8391
|
-
setOperationMode(cell: string, controller: string, mode: OperationMode, options?: RawAxiosRequestConfig): Promise<
|
|
8433
|
+
setOperationMode(cell: string, controller: string, mode: OperationMode, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
8392
8434
|
/**
|
|
8393
8435
|
* 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.
|
|
8394
8436
|
* @summary Set Mounting
|
|
@@ -8399,7 +8441,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
8399
8441
|
* @param {*} [options] Override http request option.
|
|
8400
8442
|
* @throws {RequiredError}
|
|
8401
8443
|
*/
|
|
8402
|
-
setVirtualControllerMounting(cell: string, controller: string, motionGroup: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<
|
|
8444
|
+
setVirtualControllerMounting(cell: string, controller: string, motionGroup: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem, any>>;
|
|
8403
8445
|
}
|
|
8404
8446
|
/**
|
|
8405
8447
|
* VirtualControllerBehaviorApi - axios parameter creator
|
|
@@ -8543,7 +8585,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
|
|
|
8543
8585
|
* @param {*} [options] Override http request option.
|
|
8544
8586
|
* @throws {RequiredError}
|
|
8545
8587
|
*/
|
|
8546
|
-
externalJointsStream(cell: string, controller: string, externalJointStreamRequest: ExternalJointStreamRequest, options?: RawAxiosRequestConfig): Promise<
|
|
8588
|
+
externalJointsStream(cell: string, controller: string, externalJointStreamRequest: ExternalJointStreamRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ExternalJointStreamDatapoint[], any>>;
|
|
8547
8589
|
/**
|
|
8548
8590
|
* Get the cycle time of controller communication in [ms].
|
|
8549
8591
|
* @summary Get Cycle Time
|
|
@@ -8552,7 +8594,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
|
|
|
8552
8594
|
* @param {*} [options] Override http request option.
|
|
8553
8595
|
* @throws {RequiredError}
|
|
8554
8596
|
*/
|
|
8555
|
-
getCycleTime(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
8597
|
+
getCycleTime(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CycleTime, any>>;
|
|
8556
8598
|
/**
|
|
8557
8599
|
* Get the current virtual controller behavior. See [setVirtualControllerBehavior](setVirtualControllerBehavior) and the body for details.
|
|
8558
8600
|
* @summary Get Behavior
|
|
@@ -8561,7 +8603,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
|
|
|
8561
8603
|
* @param {*} [options] Override http request option.
|
|
8562
8604
|
* @throws {RequiredError}
|
|
8563
8605
|
*/
|
|
8564
|
-
getVirtualControllerBehavior(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
8606
|
+
getVirtualControllerBehavior(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Behavior, any>>;
|
|
8565
8607
|
/**
|
|
8566
8608
|
* Set virtual controller behavior. See query parameters for details.
|
|
8567
8609
|
* @summary Set Behavior
|
|
@@ -8571,7 +8613,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
|
|
|
8571
8613
|
* @param {*} [options] Override http request option.
|
|
8572
8614
|
* @throws {RequiredError}
|
|
8573
8615
|
*/
|
|
8574
|
-
setVirtualControllerBehavior(cell: string, controller: string, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<
|
|
8616
|
+
setVirtualControllerBehavior(cell: string, controller: string, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
8575
8617
|
}
|
|
8576
8618
|
/**
|
|
8577
8619
|
* VirtualControllerInputsOutputsApi - axios parameter creator
|
|
@@ -8700,7 +8742,7 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
|
|
|
8700
8742
|
* @param {*} [options] Override http request option.
|
|
8701
8743
|
* @throws {RequiredError}
|
|
8702
8744
|
*/
|
|
8703
|
-
listIOs(cell: string, controller: string, ios: Array<string>, options?: RawAxiosRequestConfig): Promise<
|
|
8745
|
+
listIOs(cell: string, controller: string, ios: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IOValue[], any>>;
|
|
8704
8746
|
/**
|
|
8705
8747
|
* 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.
|
|
8706
8748
|
* @summary List Descriptions
|
|
@@ -8713,7 +8755,7 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
|
|
|
8713
8755
|
* @param {*} [options] Override http request option.
|
|
8714
8756
|
* @throws {RequiredError}
|
|
8715
8757
|
*/
|
|
8716
|
-
listVirtualControllerIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<
|
|
8758
|
+
listVirtualControllerIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IODescription[], any>>;
|
|
8717
8759
|
/**
|
|
8718
8760
|
* Sets a list of values of a virtual controller inputs/outputs.
|
|
8719
8761
|
* @summary Set Input/Ouput Values
|
|
@@ -8723,7 +8765,7 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
|
|
|
8723
8765
|
* @param {*} [options] Override http request option.
|
|
8724
8766
|
* @throws {RequiredError}
|
|
8725
8767
|
*/
|
|
8726
|
-
setIOValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<
|
|
8768
|
+
setIOValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
8727
8769
|
}
|
|
8728
8770
|
//#endregion
|
|
8729
|
-
export { AbbController, AbbControllerEgmServer, AbbControllerKindEnum, ActivateLicenseRequest, AddTrajectoryError, AddTrajectoryErrorData, AddTrajectoryRequest, AddTrajectoryResponse, ApiVersion, App, ApplicationApi, ApplicationApiAxiosParamCreator, ApplicationApiFactory, ApplicationApiFp, BASE_PATH, BUSInputsOutputsApi, BUSInputsOutputsApiAxiosParamCreator, BUSInputsOutputsApiFactory, BUSInputsOutputsApiFp, BaseAPI, Behavior, BlendingAuto, BlendingAutoBlendingNameEnum, BlendingPosition, BlendingPositionBlendingNameEnum, BlendingSpace, BooleanValue, BooleanValueValueTypeEnum, Box, BoxBoxTypeEnum, BoxShapeTypeEnum, BusIODescription, BusIOModbusClient, BusIOModbusClientBusTypeEnum, BusIOModbusServer, BusIOModbusServerBusTypeEnum, BusIOModbusTCPClient, BusIOModbusTCPClientNetworkTypeEnum, BusIOModbusTCPServer, BusIOModbusTCPServerNetworkTypeEnum, BusIOModbusVirtual, BusIOModbusVirtualBusTypeEnum, BusIOProfinet, BusIOProfinetBusTypeEnum, BusIOProfinetDefaultRoute, BusIOProfinetIpConfig, BusIOProfinetNetwork, BusIOProfinetVirtual, BusIOProfinetVirtualBusTypeEnum, BusIOType, BusIOsState, BusIOsStateEnum, COLLECTION_FORMATS, Capsule, CapsuleShapeTypeEnum, CartesianLimits, Cell, CellApi, CellApiAxiosParamCreator, CellApiFactory, CellApiFp, Collider, ColliderShape, Collision, CollisionContact, CollisionError, CollisionFreeAlgorithm, CollisionSetup, Comparator, Configuration, ConfigurationArchiveStatus, ConfigurationArchiveStatusCreating, ConfigurationArchiveStatusCreatingStatusEnum, ConfigurationArchiveStatusError, ConfigurationArchiveStatusErrorStatusEnum, ConfigurationArchiveStatusSuccess, ConfigurationArchiveStatusSuccessStatusEnum, ConfigurationParameters, ConfigurationResource, ContainerEnvironmentInner, ContainerImage, ContainerImageSecretsInner, ContainerResources, ContainerStorage, ControllerApi, ControllerApiAxiosParamCreator, ControllerApiFactory, ControllerApiFp, ControllerDescription, ControllerInputsOutputsApi, ControllerInputsOutputsApiAxiosParamCreator, ControllerInputsOutputsApiFactory, ControllerInputsOutputsApiFp, ConvexHull, ConvexHullShapeTypeEnum, CoordinateSystem, CoordinateSystemData, CubicSplineParameter, CycleTime, Cylinder, CylinderShapeTypeEnum, DHParameter, Direction, ErrorInvalidJointCount, ErrorInvalidJointCountErrorFeedbackNameEnum, ErrorJointLimitExceeded, ErrorJointLimitExceededErrorFeedbackNameEnum, ErrorJointPositionCollision, ErrorJointPositionCollisionErrorFeedbackNameEnum, ErrorMaxIterationsExceeded, ErrorMaxIterationsExceededErrorFeedbackNameEnum, Execute, ExecuteDetails, ExecuteJoggingRequest, ExecuteJoggingResponse, ExecuteTrajectoryRequest, ExecuteTrajectoryResponse, ExternalJointStreamDatapoint, ExternalJointStreamRequest, FanucController, FanucControllerKindEnum, FeedbackCollision, FeedbackCollisionErrorFeedbackNameEnum, FeedbackJointLimitExceeded, FeedbackJointLimitExceededErrorFeedbackNameEnum, FeedbackOutOfWorkspace, FeedbackOutOfWorkspaceErrorFeedbackNameEnum, FeedbackSingularity, FeedbackSingularityErrorFeedbackNameEnum, Flag, FloatValue, FloatValueValueTypeEnum, ForwardKinematics422Response, ForwardKinematicsRequest, ForwardKinematicsResponse, ForwardKinematicsValidationError, GetTrajectoryResponse, HTTPValidationError, IOBooleanValue, IOBooleanValueValueTypeEnum, IOBoundary, IODescription, IODirection, IOFloatValue, IOFloatValueValueTypeEnum, IOIntegerValue, IOIntegerValueValueTypeEnum, IOOrigin, IOValue, IOValueType, ImageCredentials, InconsistentTrajectorySizeError, InconsistentTrajectorySizeErrorInconsistentTrajectorySize, InitializeJoggingRequest, InitializeJoggingRequestMessageTypeEnum, InitializeJoggingResponse, InitializeJoggingResponseKindEnum, InitializeMovementRequest, InitializeMovementRequestMessageTypeEnum, InitializeMovementRequestTrajectory, InitializeMovementResponse, InitializeMovementResponseKindEnum, IntegerValue, IntegerValueValueTypeEnum, InvalidDofError, InvalidDofErrorInvalidDof, InverseKinematics422Response, InverseKinematicsRequest, InverseKinematicsResponse, InverseKinematicsValidationError, InverseKinematicsValidationErrorAllOfData, JoggingApi, JoggingApiAxiosParamCreator, JoggingApiFactory, JoggingApiFp, JoggingDetails, JoggingDetailsKindEnum, JoggingDetailsState, JoggingPausedByUser, JoggingPausedByUserKindEnum, JoggingPausedNearCollision, JoggingPausedNearCollisionKindEnum, JoggingPausedNearJointLimit, JoggingPausedNearJointLimitKindEnum, JoggingPausedOnIO, JoggingPausedOnIOKindEnum, JoggingRunning, JoggingRunningKindEnum, JointLimitExceededError, JointLimits, JointTrajectory, JointVelocityRequest, JointVelocityRequestMessageTypeEnum, JointVelocityResponse, JointVelocityResponseKindEnum, KinematicsApi, KinematicsApiAxiosParamCreator, KinematicsApiFactory, KinematicsApiFp, KukaController, KukaControllerKindEnum, KukaControllerRsiServer, License, LicenseApi, LicenseApiAxiosParamCreator, LicenseApiFactory, LicenseApiFp, LicenseStatus, LicenseStatusEnum, LimitRange, LimitSet, LimitsOverride, ListTrajectoriesResponse, Manufacturer, MidpointInsertionAlgorithm, MidpointInsertionAlgorithmAlgorithmNameEnum, ModbusIO, ModbusIOArea, ModbusIOByteOrder, ModbusIOData, ModbusIOTypeEnum, ModelError, MotionCommand, MotionCommandBlending, MotionCommandPath, MotionGroupApi, MotionGroupApiAxiosParamCreator, MotionGroupApiFactory, MotionGroupApiFp, MotionGroupDescription, MotionGroupInfo, MotionGroupJoints, MotionGroupModelsApi, MotionGroupModelsApiAxiosParamCreator, MotionGroupModelsApiFactory, MotionGroupModelsApiFp, MotionGroupSetup, MotionGroupState, MotionGroupStateJointLimitReached, MovementErrorResponse, MovementErrorResponseKindEnum, NanValueError, NanValueErrorNanValue, OpMode, OperatingState, OperationLimits, OperationMode, OrientationType, PathCartesianPTP, PathCartesianPTPPathDefinitionNameEnum, PathCircle, PathCirclePathDefinitionNameEnum, PathCubicSpline, PathCubicSplinePathDefinitionNameEnum, PathJointPTP, PathJointPTPPathDefinitionNameEnum, PathLine, PathLinePathDefinitionNameEnum, PauseJoggingRequest, PauseJoggingRequestMessageTypeEnum, PauseJoggingResponse, PauseJoggingResponseKindEnum, PauseMovementRequest, PauseMovementRequestMessageTypeEnum, PauseMovementResponse, PauseMovementResponseKindEnum, PauseOnIO, Payload, Plan422Response, PlanCollisionFreeFailedResponse, PlanCollisionFreeRequest, PlanCollisionFreeResponse, PlanCollisionFreeResponseResponse, PlanTrajectoryFailedResponse, PlanTrajectoryFailedResponseErrorFeedback, PlanTrajectoryRequest, PlanTrajectoryResponse, PlanTrajectoryResponseResponse, PlanValidationError, PlanValidationErrorAllOfData, Plane, PlaneShapeTypeEnum, PlaybackSpeedRequest, PlaybackSpeedRequestMessageTypeEnum, PlaybackSpeedResponse, PlaybackSpeedResponseKindEnum, Pose, ProfinetDescription, ProfinetIO, ProfinetIOData, ProfinetIODirection, ProfinetIOTypeEnum, ProfinetInputOutputConfig, ProfinetSlotDescription, ProfinetSubSlotDescription, Program, ProgramApi, ProgramApiAxiosParamCreator, ProgramApiFactory, ProgramApiFp, ProgramRun, ProgramRunState, ProgramStartRequest, RRTConnectAlgorithm, RRTConnectAlgorithmAlgorithmNameEnum, Rectangle, RectangleShapeTypeEnum, RectangularCapsule, RectangularCapsuleShapeTypeEnum, ReleaseChannel, RequestArgs, RequiredError, RobotConfigurationsApi, RobotConfigurationsApiAxiosParamCreator, RobotConfigurationsApiFactory, RobotConfigurationsApiFp, RobotController, RobotControllerConfiguration, RobotControllerState, RobotSystemMode, RobotTcp, RobotTcpData, SafetyStateType, ServiceGroup, ServiceStatus, ServiceStatusPhase, ServiceStatusResponse, ServiceStatusSeverity, ServiceStatusStatus, SetIO, SettableRobotSystemMode, SingularityTypeEnum, Sphere, SphereShapeTypeEnum, StartMovementRequest, StartMovementRequestMessageTypeEnum, StartMovementResponse, StartMovementResponseKindEnum, StartOnIO, StoreCollisionComponentsApi, StoreCollisionComponentsApiAxiosParamCreator, StoreCollisionComponentsApiFactory, StoreCollisionComponentsApiFp, StoreCollisionSetupsApi, StoreCollisionSetupsApiAxiosParamCreator, StoreCollisionSetupsApiFactory, StoreCollisionSetupsApiFp, StoreObjectApi, StoreObjectApiAxiosParamCreator, StoreObjectApiFactory, StoreObjectApiFp, StreamIOValuesResponse, SystemApi, SystemApiAxiosParamCreator, SystemApiFactory, SystemApiFp, TcpOffset, TcpRequiredError, TcpVelocityRequest, TcpVelocityRequestMessageTypeEnum, TcpVelocityResponse, TcpVelocityResponseKindEnum, TorqueExceededError, TorqueExceededErrorTorqueExceeded, TrajectoryCachingApi, TrajectoryCachingApiAxiosParamCreator, TrajectoryCachingApiFactory, TrajectoryCachingApiFp, TrajectoryData, TrajectoryDataMessageTypeEnum, TrajectoryDetails, TrajectoryDetailsKindEnum, TrajectoryDetailsState, TrajectoryEnded, TrajectoryEndedKindEnum, TrajectoryExecutionApi, TrajectoryExecutionApiAxiosParamCreator, TrajectoryExecutionApiFactory, TrajectoryExecutionApiFp, TrajectoryId, TrajectoryIdMessageTypeEnum, TrajectoryPausedByUser, TrajectoryPausedByUserKindEnum, TrajectoryPausedOnIO, TrajectoryPausedOnIOKindEnum, TrajectoryPlanningApi, TrajectoryPlanningApiAxiosParamCreator, TrajectoryPlanningApiFactory, TrajectoryPlanningApiFp, TrajectoryRunning, TrajectoryRunningKindEnum, TrajectoryWaitForIO, TrajectoryWaitForIOKindEnum, UnitType, UniversalrobotsController, UniversalrobotsControllerKindEnum, UpdateNovaVersionRequest, ValidationError, ValidationError2, ValidationErrorLocInner, VersionApi, VersionApiAxiosParamCreator, VersionApiFactory, VersionApiFp, VirtualController, VirtualControllerApi, VirtualControllerApiAxiosParamCreator, VirtualControllerApiFactory, VirtualControllerApiFp, VirtualControllerBehaviorApi, VirtualControllerBehaviorApiAxiosParamCreator, VirtualControllerBehaviorApiFactory, VirtualControllerBehaviorApiFp, VirtualControllerInputsOutputsApi, VirtualControllerInputsOutputsApiAxiosParamCreator, VirtualControllerInputsOutputsApiFactory, VirtualControllerInputsOutputsApiFp, VirtualControllerKindEnum, VirtualRobotConfiguration, WaitForIOEventRequest, YaskawaController, YaskawaControllerKindEnum, operationServerMap };
|
|
8771
|
+
export { AbbController, AbbControllerEgmServer, AbbControllerKindEnum, ActivateLicenseRequest, AddTrajectoryError, AddTrajectoryErrorData, AddTrajectoryRequest, AddTrajectoryResponse, ApiVersion, App, ApplicationApi, ApplicationApiAxiosParamCreator, ApplicationApiFactory, ApplicationApiFp, BASE_PATH, BUSInputsOutputsApi, BUSInputsOutputsApiAxiosParamCreator, BUSInputsOutputsApiFactory, BUSInputsOutputsApiFp, BaseAPI, Behavior, BlendingAuto, BlendingAutoBlendingNameEnum, BlendingPosition, BlendingPositionBlendingNameEnum, BlendingSpace, BooleanValue, BooleanValueValueTypeEnum, Box, BoxBoxTypeEnum, BoxShapeTypeEnum, BusIODescription, BusIOModbusClient, BusIOModbusClientBusTypeEnum, BusIOModbusServer, BusIOModbusServerBusTypeEnum, BusIOModbusTCPClient, BusIOModbusTCPClientNetworkTypeEnum, BusIOModbusTCPServer, BusIOModbusTCPServerNetworkTypeEnum, BusIOModbusVirtual, BusIOModbusVirtualBusTypeEnum, BusIOProfinet, BusIOProfinetBusTypeEnum, BusIOProfinetDefaultRoute, BusIOProfinetIpConfig, BusIOProfinetNetwork, BusIOProfinetVirtual, BusIOProfinetVirtualBusTypeEnum, BusIOType, BusIOsState, BusIOsStateEnum, COLLECTION_FORMATS, Capsule, CapsuleShapeTypeEnum, CartesianLimits, Cell, CellApi, CellApiAxiosParamCreator, CellApiFactory, CellApiFp, Collider, ColliderShape, Collision, CollisionContact, CollisionError, CollisionFreeAlgorithm, CollisionSetup, Comparator, Configuration, ConfigurationArchiveStatus, ConfigurationArchiveStatusCreating, ConfigurationArchiveStatusCreatingStatusEnum, ConfigurationArchiveStatusError, ConfigurationArchiveStatusErrorStatusEnum, ConfigurationArchiveStatusSuccess, ConfigurationArchiveStatusSuccessStatusEnum, ConfigurationParameters, ConfigurationResource, ContainerEnvironmentInner, ContainerImage, ContainerImageSecretsInner, ContainerResources, ContainerStorage, ControllerApi, ControllerApiAxiosParamCreator, ControllerApiFactory, ControllerApiFp, ControllerDescription, ControllerInputsOutputsApi, ControllerInputsOutputsApiAxiosParamCreator, ControllerInputsOutputsApiFactory, ControllerInputsOutputsApiFp, ConvexHull, ConvexHullShapeTypeEnum, CoordinateSystem, CoordinateSystemData, CubicSplineParameter, CycleTime, Cylinder, CylinderShapeTypeEnum, DHParameter, Direction, ErrorInvalidJointCount, ErrorInvalidJointCountErrorFeedbackNameEnum, ErrorJointLimitExceeded, ErrorJointLimitExceededErrorFeedbackNameEnum, ErrorJointPositionCollision, ErrorJointPositionCollisionErrorFeedbackNameEnum, ErrorMaxIterationsExceeded, ErrorMaxIterationsExceededErrorFeedbackNameEnum, Execute, ExecuteDetails, ExecuteJoggingRequest, ExecuteJoggingResponse, ExecuteTrajectoryRequest, ExecuteTrajectoryResponse, ExternalJointStreamDatapoint, ExternalJointStreamRequest, FanucController, FanucControllerKindEnum, FeedbackCollision, FeedbackCollisionErrorFeedbackNameEnum, FeedbackJointLimitExceeded, FeedbackJointLimitExceededErrorFeedbackNameEnum, FeedbackOutOfWorkspace, FeedbackOutOfWorkspaceErrorFeedbackNameEnum, FeedbackSingularity, FeedbackSingularityErrorFeedbackNameEnum, Flag, FloatValue, FloatValueValueTypeEnum, ForwardKinematics422Response, ForwardKinematicsRequest, ForwardKinematicsResponse, ForwardKinematicsValidationError, GetTrajectoryResponse, HTTPValidationError, IOBooleanValue, IOBooleanValueValueTypeEnum, IOBoundary, IODescription, IODirection, IOFloatValue, IOFloatValueValueTypeEnum, IOIntegerValue, IOIntegerValueValueTypeEnum, IOOrigin, IOValue, IOValueType, ImageCredentials, InconsistentTrajectorySizeError, InconsistentTrajectorySizeErrorInconsistentTrajectorySize, InitializeJoggingRequest, InitializeJoggingRequestMessageTypeEnum, InitializeJoggingResponse, InitializeJoggingResponseKindEnum, InitializeMovementRequest, InitializeMovementRequestMessageTypeEnum, InitializeMovementRequestTrajectory, InitializeMovementResponse, InitializeMovementResponseKindEnum, IntegerValue, IntegerValueValueTypeEnum, InvalidDofError, InvalidDofErrorInvalidDof, InverseKinematics422Response, InverseKinematicsRequest, InverseKinematicsResponse, InverseKinematicsValidationError, InverseKinematicsValidationErrorAllOfData, JoggingApi, JoggingApiAxiosParamCreator, JoggingApiFactory, JoggingApiFp, JoggingDetails, JoggingDetailsKindEnum, JoggingDetailsState, JoggingPausedByUser, JoggingPausedByUserKindEnum, JoggingPausedNearCollision, JoggingPausedNearCollisionKindEnum, JoggingPausedNearJointLimit, JoggingPausedNearJointLimitKindEnum, JoggingPausedOnIO, JoggingPausedOnIOKindEnum, JoggingRunning, JoggingRunningKindEnum, JointLimitExceededError, JointLimits, JointTrajectory, JointVelocityRequest, JointVelocityRequestMessageTypeEnum, JointVelocityResponse, JointVelocityResponseKindEnum, KinematicModel, KinematicsApi, KinematicsApiAxiosParamCreator, KinematicsApiFactory, KinematicsApiFp, KukaController, KukaControllerKindEnum, KukaControllerRsiServer, License, LicenseApi, LicenseApiAxiosParamCreator, LicenseApiFactory, LicenseApiFp, LicenseStatus, LicenseStatusEnum, LimitRange, LimitSet, LimitsOverride, ListTrajectoriesResponse, Manufacturer, MidpointInsertionAlgorithm, MidpointInsertionAlgorithmAlgorithmNameEnum, ModbusIO, ModbusIOArea, ModbusIOByteOrder, ModbusIOData, ModbusIOTypeEnum, ModelError, MotionCommand, MotionCommandBlending, MotionCommandPath, MotionGroupApi, MotionGroupApiAxiosParamCreator, MotionGroupApiFactory, MotionGroupApiFp, MotionGroupDescription, MotionGroupInfo, MotionGroupJoints, MotionGroupModelsApi, MotionGroupModelsApiAxiosParamCreator, MotionGroupModelsApiFactory, MotionGroupModelsApiFp, MotionGroupSetup, MotionGroupState, MotionGroupStateJointLimitReached, MovementErrorResponse, MovementErrorResponseKindEnum, NanValueError, NanValueErrorNanValue, OpMode, OperatingState, OperationLimits, OperationMode, OrientationType, PathCartesianPTP, PathCartesianPTPPathDefinitionNameEnum, PathCircle, PathCirclePathDefinitionNameEnum, PathCubicSpline, PathCubicSplinePathDefinitionNameEnum, PathJointPTP, PathJointPTPPathDefinitionNameEnum, PathLine, PathLinePathDefinitionNameEnum, PauseJoggingRequest, PauseJoggingRequestMessageTypeEnum, PauseJoggingResponse, PauseJoggingResponseKindEnum, PauseMovementRequest, PauseMovementRequestMessageTypeEnum, PauseMovementResponse, PauseMovementResponseKindEnum, PauseOnIO, Payload, Plan422Response, PlanCollisionFreeFailedResponse, PlanCollisionFreeRequest, PlanCollisionFreeResponse, PlanCollisionFreeResponseResponse, PlanTrajectoryFailedResponse, PlanTrajectoryFailedResponseErrorFeedback, PlanTrajectoryRequest, PlanTrajectoryResponse, PlanTrajectoryResponseResponse, PlanValidationError, PlanValidationErrorAllOfData, Plane, PlaneShapeTypeEnum, PlaybackSpeedRequest, PlaybackSpeedRequestMessageTypeEnum, PlaybackSpeedResponse, PlaybackSpeedResponseKindEnum, Pose, ProfinetDescription, ProfinetIO, ProfinetIOData, ProfinetIODirection, ProfinetIOTypeEnum, ProfinetInputOutputConfig, ProfinetSlotDescription, ProfinetSubSlotDescription, Program, ProgramApi, ProgramApiAxiosParamCreator, ProgramApiFactory, ProgramApiFp, ProgramRun, ProgramRunState, ProgramStartRequest, RRTConnectAlgorithm, RRTConnectAlgorithmAlgorithmNameEnum, Rectangle, RectangleShapeTypeEnum, RectangularCapsule, RectangularCapsuleShapeTypeEnum, ReleaseChannel, RequestArgs, RequiredError, RobotConfigurationsApi, RobotConfigurationsApiAxiosParamCreator, RobotConfigurationsApiFactory, RobotConfigurationsApiFp, RobotController, RobotControllerConfiguration, RobotControllerState, RobotSystemMode, RobotTcp, RobotTcpData, SafetyStateType, ServiceGroup, ServiceStatus, ServiceStatusPhase, ServiceStatusResponse, ServiceStatusSeverity, ServiceStatusStatus, SetIO, SettableRobotSystemMode, SingularityTypeEnum, Sphere, SphereShapeTypeEnum, StartMovementRequest, StartMovementRequestMessageTypeEnum, StartMovementResponse, StartMovementResponseKindEnum, StartOnIO, StoreCollisionComponentsApi, StoreCollisionComponentsApiAxiosParamCreator, StoreCollisionComponentsApiFactory, StoreCollisionComponentsApiFp, StoreCollisionSetupsApi, StoreCollisionSetupsApiAxiosParamCreator, StoreCollisionSetupsApiFactory, StoreCollisionSetupsApiFp, StoreObjectApi, StoreObjectApiAxiosParamCreator, StoreObjectApiFactory, StoreObjectApiFp, StreamIOValuesResponse, SystemApi, SystemApiAxiosParamCreator, SystemApiFactory, SystemApiFp, TcpOffset, TcpRequiredError, TcpVelocityRequest, TcpVelocityRequestMessageTypeEnum, TcpVelocityResponse, TcpVelocityResponseKindEnum, TorqueExceededError, TorqueExceededErrorTorqueExceeded, TrajectoryCachingApi, TrajectoryCachingApiAxiosParamCreator, TrajectoryCachingApiFactory, TrajectoryCachingApiFp, TrajectoryData, TrajectoryDataMessageTypeEnum, TrajectoryDetails, TrajectoryDetailsKindEnum, TrajectoryDetailsState, TrajectoryEnded, TrajectoryEndedKindEnum, TrajectoryExecutionApi, TrajectoryExecutionApiAxiosParamCreator, TrajectoryExecutionApiFactory, TrajectoryExecutionApiFp, TrajectoryId, TrajectoryIdMessageTypeEnum, TrajectoryPausedByUser, TrajectoryPausedByUserKindEnum, TrajectoryPausedOnIO, TrajectoryPausedOnIOKindEnum, TrajectoryPlanningApi, TrajectoryPlanningApiAxiosParamCreator, TrajectoryPlanningApiFactory, TrajectoryPlanningApiFp, TrajectoryRunning, TrajectoryRunningKindEnum, TrajectoryWaitForIO, TrajectoryWaitForIOKindEnum, UnitType, UniversalrobotsController, UniversalrobotsControllerKindEnum, UpdateNovaVersionRequest, ValidationError, ValidationError2, ValidationErrorLocInner, VersionApi, VersionApiAxiosParamCreator, VersionApiFactory, VersionApiFp, VirtualController, VirtualControllerApi, VirtualControllerApiAxiosParamCreator, VirtualControllerApiFactory, VirtualControllerApiFp, VirtualControllerBehaviorApi, VirtualControllerBehaviorApiAxiosParamCreator, VirtualControllerBehaviorApiFactory, VirtualControllerBehaviorApiFp, VirtualControllerInputsOutputsApi, VirtualControllerInputsOutputsApiAxiosParamCreator, VirtualControllerInputsOutputsApiFactory, VirtualControllerInputsOutputsApiFp, VirtualControllerKindEnum, VirtualRobotConfiguration, WaitForIOEventRequest, YaskawaController, YaskawaControllerKindEnum, operationServerMap };
|