@wandelbots/nova-api 25.10.0-dev.68 → 25.10.0-dev.69
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.cjs +7 -0
- package/dist/v1/index.d.cts +185 -178
- package/dist/v1/index.d.ts +7 -0
- package/dist/v1/index.js +7 -0
- package/dist/v2/index.cjs +4 -0
- package/dist/v2/index.d.cts +135 -131
- package/dist/v2/index.d.ts +4 -0
- package/dist/v2/index.js +4 -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
|
|
@@ -3183,6 +3183,7 @@ declare const VirtualControllerTypes: {
|
|
|
3183
3183
|
readonly AbbIrb460025020: "abb-irb4600_250_20";
|
|
3184
3184
|
readonly AbbIrb460025540: "abb-irb4600_255_40";
|
|
3185
3185
|
readonly AbbIrb6730210310: "abb-irb6730_210_310";
|
|
3186
|
+
readonly AbbIrb6730240290: "abb-irb6730_240_290";
|
|
3186
3187
|
readonly FanucArcMate100iD: "fanuc-arc_mate_100iD";
|
|
3187
3188
|
readonly FanucArcMate100iD16S: "fanuc-arc_mate_100iD16S";
|
|
3188
3189
|
readonly FanucArcMate120iD: "fanuc-arc_mate_120iD";
|
|
@@ -3220,12 +3221,15 @@ declare const VirtualControllerTypes: {
|
|
|
3220
3221
|
readonly KukaKr16R20102: "kuka-kr16_r2010_2";
|
|
3221
3222
|
readonly KukaKr20R1810: "kuka-kr20_r1810";
|
|
3222
3223
|
readonly KukaKr20R18102: "kuka-kr20_r1810_2";
|
|
3224
|
+
readonly KukaKr120R31002: "kuka-kr120_r3100_2";
|
|
3225
|
+
readonly KukaKr120R39002K: "kuka-kr120_r3900_2_k";
|
|
3223
3226
|
readonly KukaKr210R2700Extra: "kuka-kr210_r2700_extra";
|
|
3224
3227
|
readonly KukaKr210R27002: "kuka-kr210_r2700_2";
|
|
3225
3228
|
readonly KukaKr210R31002: "kuka-kr210_r3100_2";
|
|
3226
3229
|
readonly KukaKr210R33002: "kuka-kr210_r3300_2";
|
|
3227
3230
|
readonly KukaKr240R2700: "kuka-kr240_r2700";
|
|
3228
3231
|
readonly KukaKr240R2900: "kuka-kr240_r2900";
|
|
3232
|
+
readonly KukaKr240R37002: "kuka-kr240_r3700_2";
|
|
3229
3233
|
readonly KukaKr250R27002: "kuka-kr250_r2700_2";
|
|
3230
3234
|
readonly KukaKr270R2700: "kuka-kr270_r2700";
|
|
3231
3235
|
readonly KukaKr30R2100: "kuka-kr30_r2100";
|
|
@@ -3510,7 +3514,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
3510
3514
|
* @param {*} [options] Override http request option.
|
|
3511
3515
|
* @throws {RequiredError}
|
|
3512
3516
|
*/
|
|
3513
|
-
addApp(cell: string, app: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
3517
|
+
addApp(cell: string, app: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
3514
3518
|
/**
|
|
3515
3519
|
* Delete all GUI applications from the cell.
|
|
3516
3520
|
* @summary Clear Applications
|
|
@@ -3519,7 +3523,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
3519
3523
|
* @param {*} [options] Override http request option.
|
|
3520
3524
|
* @throws {RequiredError}
|
|
3521
3525
|
*/
|
|
3522
|
-
clearApps(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
3526
|
+
clearApps(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
3523
3527
|
/**
|
|
3524
3528
|
* Delete a GUI application from the cell.
|
|
3525
3529
|
* @summary Delete Application
|
|
@@ -3529,7 +3533,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
3529
3533
|
* @param {*} [options] Override http request option.
|
|
3530
3534
|
* @throws {RequiredError}
|
|
3531
3535
|
*/
|
|
3532
|
-
deleteApp(cell: string, app: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
3536
|
+
deleteApp(cell: string, app: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
3533
3537
|
/**
|
|
3534
3538
|
* 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).
|
|
3535
3539
|
* @summary Configuration
|
|
@@ -3538,7 +3542,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
3538
3542
|
* @param {*} [options] Override http request option.
|
|
3539
3543
|
* @throws {RequiredError}
|
|
3540
3544
|
*/
|
|
3541
|
-
getApp(cell: string, app: string, options?: RawAxiosRequestConfig): Promise<
|
|
3545
|
+
getApp(cell: string, app: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<App, any>>;
|
|
3542
3546
|
/**
|
|
3543
3547
|
* 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.
|
|
3544
3548
|
* @summary List Applications
|
|
@@ -3546,7 +3550,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
3546
3550
|
* @param {*} [options] Override http request option.
|
|
3547
3551
|
* @throws {RequiredError}
|
|
3548
3552
|
*/
|
|
3549
|
-
listApps(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
3553
|
+
listApps(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
|
|
3550
3554
|
/**
|
|
3551
3555
|
* Update the configuration of a GUI application in the cell.
|
|
3552
3556
|
* @summary Update Configuration
|
|
@@ -3557,7 +3561,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
3557
3561
|
* @param {*} [options] Override http request option.
|
|
3558
3562
|
* @throws {RequiredError}
|
|
3559
3563
|
*/
|
|
3560
|
-
updateApp(cell: string, app: string, app2: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
3564
|
+
updateApp(cell: string, app: string, app2: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
3561
3565
|
}
|
|
3562
3566
|
/**
|
|
3563
3567
|
* BUSInputsOutputsApi - axios parameter creator
|
|
@@ -4013,7 +4017,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
4013
4017
|
* @param {*} [options] Override http request option.
|
|
4014
4018
|
* @throws {RequiredError}
|
|
4015
4019
|
*/
|
|
4016
|
-
addBusIOService(cell: string, busIOType: BusIOType, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
4020
|
+
addBusIOService(cell: string, busIOType: BusIOType, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
4017
4021
|
/**
|
|
4018
4022
|
* 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).
|
|
4019
4023
|
* @summary Add MODBUS Input/Output
|
|
@@ -4023,7 +4027,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
4023
4027
|
* @param {*} [options] Override http request option.
|
|
4024
4028
|
* @throws {RequiredError}
|
|
4025
4029
|
*/
|
|
4026
|
-
addModbusIO(cell: string, io: string, modbusIOData: ModbusIOData, options?: RawAxiosRequestConfig): Promise<
|
|
4030
|
+
addModbusIO(cell: string, io: string, modbusIOData: ModbusIOData, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
4027
4031
|
/**
|
|
4028
4032
|
* 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).
|
|
4029
4033
|
* @summary Add PROFINET Input/Output
|
|
@@ -4033,7 +4037,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
4033
4037
|
* @param {*} [options] Override http request option.
|
|
4034
4038
|
* @throws {RequiredError}
|
|
4035
4039
|
*/
|
|
4036
|
-
addProfinetIO(cell: string, io: string, profinetIOData: ProfinetIOData, options?: RawAxiosRequestConfig): Promise<
|
|
4040
|
+
addProfinetIO(cell: string, io: string, profinetIOData: ProfinetIOData, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
4037
4041
|
/**
|
|
4038
4042
|
* Remove the BUS inputs/outputs service from the cell.
|
|
4039
4043
|
* @summary Clear Service
|
|
@@ -4042,7 +4046,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
4042
4046
|
* @param {*} [options] Override http request option.
|
|
4043
4047
|
* @throws {RequiredError}
|
|
4044
4048
|
*/
|
|
4045
|
-
clearBusIOService(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
4049
|
+
clearBusIOService(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
4046
4050
|
/**
|
|
4047
4051
|
* Removes an input/output variable configuration from the MODBUS device, e.g., NOVA\'s MODBUS service.
|
|
4048
4052
|
* @summary Remove MODBUS Input/Ouptut
|
|
@@ -4051,7 +4055,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
4051
4055
|
* @param {*} [options] Override http request option.
|
|
4052
4056
|
* @throws {RequiredError}
|
|
4053
4057
|
*/
|
|
4054
|
-
deleteModbusIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<
|
|
4058
|
+
deleteModbusIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
4055
4059
|
/**
|
|
4056
4060
|
* Removes an input/output variable configuration from the PROFINET device, e.g., NOVA\'s PROFINET service.
|
|
4057
4061
|
* @summary Remove PROFINET Input/Ouptut
|
|
@@ -4060,7 +4064,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
4060
4064
|
* @param {*} [options] Override http request option.
|
|
4061
4065
|
* @throws {RequiredError}
|
|
4062
4066
|
*/
|
|
4063
|
-
deleteProfinetIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<
|
|
4067
|
+
deleteProfinetIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
4064
4068
|
/**
|
|
4065
4069
|
* Get deployed BUS inputs/outputs service.
|
|
4066
4070
|
* @summary Get Service
|
|
@@ -4068,7 +4072,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
4068
4072
|
* @param {*} [options] Override http request option.
|
|
4069
4073
|
* @throws {RequiredError}
|
|
4070
4074
|
*/
|
|
4071
|
-
getBusIOService(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
4075
|
+
getBusIOService(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<BusIOType, any>>;
|
|
4072
4076
|
/**
|
|
4073
4077
|
* Get the current state of the BUS Inputs/Outputs service.
|
|
4074
4078
|
* @summary State
|
|
@@ -4076,7 +4080,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
4076
4080
|
* @param {*} [options] Override http request option.
|
|
4077
4081
|
* @throws {RequiredError}
|
|
4078
4082
|
*/
|
|
4079
|
-
getBusIOState(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
4083
|
+
getBusIOState(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<BusIOsState, any>>;
|
|
4080
4084
|
/**
|
|
4081
4085
|
* 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).
|
|
4082
4086
|
* @summary Get Input/Output Values
|
|
@@ -4085,7 +4089,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
4085
4089
|
* @param {*} [options] Override http request option.
|
|
4086
4090
|
* @throws {RequiredError}
|
|
4087
4091
|
*/
|
|
4088
|
-
getBusIOValues(cell: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<
|
|
4092
|
+
getBusIOValues(cell: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IOValue[], any>>;
|
|
4089
4093
|
/**
|
|
4090
4094
|
* Get description of NOVA as a PROFINET device.
|
|
4091
4095
|
* @summary Get PROFINET Description
|
|
@@ -4093,7 +4097,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
4093
4097
|
* @param {*} [options] Override http request option.
|
|
4094
4098
|
* @throws {RequiredError}
|
|
4095
4099
|
*/
|
|
4096
|
-
getProfinetDescription(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
4100
|
+
getProfinetDescription(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProfinetDescription, any>>;
|
|
4097
4101
|
/**
|
|
4098
4102
|
* 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.
|
|
4099
4103
|
* @summary PROFINET Inputs/Outputs to File
|
|
@@ -4103,7 +4107,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
4103
4107
|
* @param {*} [options] Override http request option.
|
|
4104
4108
|
* @throws {RequiredError}
|
|
4105
4109
|
*/
|
|
4106
|
-
getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<
|
|
4110
|
+
getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string, any>>;
|
|
4107
4111
|
/**
|
|
4108
4112
|
* 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.
|
|
4109
4113
|
* @summary List Descriptions
|
|
@@ -4111,7 +4115,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
4111
4115
|
* @param {*} [options] Override http request option.
|
|
4112
4116
|
* @throws {RequiredError}
|
|
4113
4117
|
*/
|
|
4114
|
-
listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
4118
|
+
listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<BusIODescription[], any>>;
|
|
4115
4119
|
/**
|
|
4116
4120
|
* 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).
|
|
4117
4121
|
* @summary List MODBUS Input/Output Configuration
|
|
@@ -4119,7 +4123,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
4119
4123
|
* @param {*} [options] Override http request option.
|
|
4120
4124
|
* @throws {RequiredError}
|
|
4121
4125
|
*/
|
|
4122
|
-
listModbusIOs(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
4126
|
+
listModbusIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ModbusIO[], any>>;
|
|
4123
4127
|
/**
|
|
4124
4128
|
* 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.
|
|
4125
4129
|
* @summary List PROFINET Input/Output Configuration
|
|
@@ -4127,7 +4131,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
4127
4131
|
* @param {*} [options] Override http request option.
|
|
4128
4132
|
* @throws {RequiredError}
|
|
4129
4133
|
*/
|
|
4130
|
-
listProfinetIOs(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
4134
|
+
listProfinetIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProfinetIO[], any>>;
|
|
4131
4135
|
/**
|
|
4132
4136
|
* 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.
|
|
4133
4137
|
* @summary Set Output Values
|
|
@@ -4136,7 +4140,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
4136
4140
|
* @param {*} [options] Override http request option.
|
|
4137
4141
|
* @throws {RequiredError}
|
|
4138
4142
|
*/
|
|
4139
|
-
setBusIOValues(cell: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<
|
|
4143
|
+
setBusIOValues(cell: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
4140
4144
|
/**
|
|
4141
4145
|
* 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.
|
|
4142
4146
|
* @summary Set PROFINET Inputs/Outputs from File
|
|
@@ -4145,7 +4149,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
4145
4149
|
* @param {*} [options] Override http request option.
|
|
4146
4150
|
* @throws {RequiredError}
|
|
4147
4151
|
*/
|
|
4148
|
-
setProfinetIOsFromFile(cell: string, profinetInputOutputConfig: ProfinetInputOutputConfig, options?: RawAxiosRequestConfig): Promise<
|
|
4152
|
+
setProfinetIOsFromFile(cell: string, profinetInputOutputConfig: ProfinetInputOutputConfig, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
4149
4153
|
}
|
|
4150
4154
|
/**
|
|
4151
4155
|
* CellApi - axios parameter creator
|
|
@@ -4354,7 +4358,7 @@ declare class CellApi extends BaseAPI {
|
|
|
4354
4358
|
* @param {*} [options] Override http request option.
|
|
4355
4359
|
* @throws {RequiredError}
|
|
4356
4360
|
*/
|
|
4357
|
-
deleteCell(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
4361
|
+
deleteCell(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
4358
4362
|
/**
|
|
4359
4363
|
* 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.
|
|
4360
4364
|
* @summary Add Cell
|
|
@@ -4363,7 +4367,7 @@ declare class CellApi extends BaseAPI {
|
|
|
4363
4367
|
* @param {*} [options] Override http request option.
|
|
4364
4368
|
* @throws {RequiredError}
|
|
4365
4369
|
*/
|
|
4366
|
-
deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
4370
|
+
deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
4367
4371
|
/**
|
|
4368
4372
|
* List all cell resources.
|
|
4369
4373
|
* @summary Configuration
|
|
@@ -4371,7 +4375,7 @@ declare class CellApi extends BaseAPI {
|
|
|
4371
4375
|
* @param {*} [options] Override http request option.
|
|
4372
4376
|
* @throws {RequiredError}
|
|
4373
4377
|
*/
|
|
4374
|
-
getCell(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
4378
|
+
getCell(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Cell, any>>;
|
|
4375
4379
|
/**
|
|
4376
4380
|
* List the status of all cell resources.
|
|
4377
4381
|
* @summary Service Status
|
|
@@ -4379,14 +4383,14 @@ declare class CellApi extends BaseAPI {
|
|
|
4379
4383
|
* @param {*} [options] Override http request option.
|
|
4380
4384
|
* @throws {RequiredError}
|
|
4381
4385
|
*/
|
|
4382
|
-
getCellStatus(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
4386
|
+
getCellStatus(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ServiceStatusResponse, any>>;
|
|
4383
4387
|
/**
|
|
4384
4388
|
* List all deployed cell names. If no cells are deployed, an empty list is returned.
|
|
4385
4389
|
* @summary List Cells
|
|
4386
4390
|
* @param {*} [options] Override http request option.
|
|
4387
4391
|
* @throws {RequiredError}
|
|
4388
4392
|
*/
|
|
4389
|
-
listCells(options?: RawAxiosRequestConfig): Promise<
|
|
4393
|
+
listCells(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
|
|
4390
4394
|
/**
|
|
4391
4395
|
* Deactivate or activate the services of a cell.
|
|
4392
4396
|
* @summary Operating State
|
|
@@ -4395,7 +4399,7 @@ declare class CellApi extends BaseAPI {
|
|
|
4395
4399
|
* @param {*} [options] Override http request option.
|
|
4396
4400
|
* @throws {RequiredError}
|
|
4397
4401
|
*/
|
|
4398
|
-
setCellStatus(cell: string, operatingState: OperatingState, options?: RawAxiosRequestConfig): Promise<
|
|
4402
|
+
setCellStatus(cell: string, operatingState: OperatingState, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
4399
4403
|
/**
|
|
4400
4404
|
* Update the definition of the entire Cell.
|
|
4401
4405
|
* @summary Update Configuration
|
|
@@ -4405,7 +4409,7 @@ declare class CellApi extends BaseAPI {
|
|
|
4405
4409
|
* @param {*} [options] Override http request option.
|
|
4406
4410
|
* @throws {RequiredError}
|
|
4407
4411
|
*/
|
|
4408
|
-
updateCell(cell: string, cell2: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
4412
|
+
updateCell(cell: string, cell2: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
4409
4413
|
}
|
|
4410
4414
|
/**
|
|
4411
4415
|
* ControllerApi - axios parameter creator
|
|
@@ -4843,7 +4847,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
4843
4847
|
* @param {*} [options] Override http request option.
|
|
4844
4848
|
* @throws {RequiredError}
|
|
4845
4849
|
*/
|
|
4846
|
-
addRobotController(cell: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
4850
|
+
addRobotController(cell: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
4847
4851
|
/**
|
|
4848
4852
|
* Delete all robot controllers from the cell. To replace all robot controllers in a cell, use this endpoint in combination with [addRobotController](addRobotController).
|
|
4849
4853
|
* @summary Clear Robot Controllers
|
|
@@ -4852,7 +4856,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
4852
4856
|
* @param {*} [options] Override http request option.
|
|
4853
4857
|
* @throws {RequiredError}
|
|
4854
4858
|
*/
|
|
4855
|
-
clearRobotControllers(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
4859
|
+
clearRobotControllers(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
4856
4860
|
/**
|
|
4857
4861
|
* Delete a robot controller from the cell.
|
|
4858
4862
|
* @summary Delete Robot Controller
|
|
@@ -4862,7 +4866,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
4862
4866
|
* @param {*} [options] Override http request option.
|
|
4863
4867
|
* @throws {RequiredError}
|
|
4864
4868
|
*/
|
|
4865
|
-
deleteRobotController(cell: string, controller: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
4869
|
+
deleteRobotController(cell: string, controller: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
4866
4870
|
/**
|
|
4867
4871
|
* 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.
|
|
4868
4872
|
* @summary Description
|
|
@@ -4871,7 +4875,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
4871
4875
|
* @param {*} [options] Override http request option.
|
|
4872
4876
|
* @throws {RequiredError}
|
|
4873
4877
|
*/
|
|
4874
|
-
getControllerDescription(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
4878
|
+
getControllerDescription(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ControllerDescription, any>>;
|
|
4875
4879
|
/**
|
|
4876
4880
|
* 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.
|
|
4877
4881
|
* @summary Coordinate System
|
|
@@ -4882,7 +4886,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
4882
4886
|
* @param {*} [options] Override http request option.
|
|
4883
4887
|
* @throws {RequiredError}
|
|
4884
4888
|
*/
|
|
4885
|
-
getCoordinateSystem(cell: string, controller: string, coordinateSystem: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<
|
|
4889
|
+
getCoordinateSystem(cell: string, controller: string, coordinateSystem: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem, any>>;
|
|
4886
4890
|
/**
|
|
4887
4891
|
* Get the current state of a robot controller.
|
|
4888
4892
|
* @summary State
|
|
@@ -4891,7 +4895,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
4891
4895
|
* @param {*} [options] Override http request option.
|
|
4892
4896
|
* @throws {RequiredError}
|
|
4893
4897
|
*/
|
|
4894
|
-
getCurrentRobotControllerState(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
4898
|
+
getCurrentRobotControllerState(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotControllerState, any>>;
|
|
4895
4899
|
/**
|
|
4896
4900
|
* Get the configuration for a robot controller.
|
|
4897
4901
|
* @summary Robot Controller
|
|
@@ -4900,7 +4904,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
4900
4904
|
* @param {*} [options] Override http request option.
|
|
4901
4905
|
* @throws {RequiredError}
|
|
4902
4906
|
*/
|
|
4903
|
-
getRobotController(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
4907
|
+
getRobotController(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotController, any>>;
|
|
4904
4908
|
/**
|
|
4905
4909
|
* 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.
|
|
4906
4910
|
* @summary Virtual Controller Configuration
|
|
@@ -4909,7 +4913,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
4909
4913
|
* @param {*} [options] Override http request option.
|
|
4910
4914
|
* @throws {RequiredError}
|
|
4911
4915
|
*/
|
|
4912
|
-
getVirtualControllerConfiguration(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
4916
|
+
getVirtualControllerConfiguration(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<VirtualRobotConfiguration, any>>;
|
|
4913
4917
|
/**
|
|
4914
4918
|
* 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.
|
|
4915
4919
|
* @summary List Coordinate Systems
|
|
@@ -4919,7 +4923,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
4919
4923
|
* @param {*} [options] Override http request option.
|
|
4920
4924
|
* @throws {RequiredError}
|
|
4921
4925
|
*/
|
|
4922
|
-
listCoordinateSystems(cell: string, controller: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<
|
|
4926
|
+
listCoordinateSystems(cell: string, controller: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem[], any>>;
|
|
4923
4927
|
/**
|
|
4924
4928
|
* List the names of all deployed robot controllers.
|
|
4925
4929
|
* @summary List Robot Controllers
|
|
@@ -4927,7 +4931,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
4927
4931
|
* @param {*} [options] Override http request option.
|
|
4928
4932
|
* @throws {RequiredError}
|
|
4929
4933
|
*/
|
|
4930
|
-
listRobotControllers(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
4934
|
+
listRobotControllers(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
|
|
4931
4935
|
/**
|
|
4932
4936
|
* 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.
|
|
4933
4937
|
* @summary Set Default Mode
|
|
@@ -4937,7 +4941,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
4937
4941
|
* @param {*} [options] Override http request option.
|
|
4938
4942
|
* @throws {RequiredError}
|
|
4939
4943
|
*/
|
|
4940
|
-
setDefaultMode(cell: string, controller: string, mode: SettableRobotSystemMode, options?: RawAxiosRequestConfig): Promise<
|
|
4944
|
+
setDefaultMode(cell: string, controller: string, mode: SettableRobotSystemMode, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
4941
4945
|
/**
|
|
4942
4946
|
* <!-- 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.
|
|
4943
4947
|
* @summary Stream Free Drive
|
|
@@ -4947,7 +4951,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
4947
4951
|
* @param {*} [options] Override http request option.
|
|
4948
4952
|
* @throws {RequiredError}
|
|
4949
4953
|
*/
|
|
4950
|
-
streamFreeDrive(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<
|
|
4954
|
+
streamFreeDrive(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotControllerState, any>>;
|
|
4951
4955
|
/**
|
|
4952
4956
|
* <!-- 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.
|
|
4953
4957
|
* @summary Stream State
|
|
@@ -4958,7 +4962,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
4958
4962
|
* @param {*} [options] Override http request option.
|
|
4959
4963
|
* @throws {RequiredError}
|
|
4960
4964
|
*/
|
|
4961
|
-
streamRobotControllerState(cell: string, controller: string, responseRate?: number, addControllerTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
4965
|
+
streamRobotControllerState(cell: string, controller: string, responseRate?: number, addControllerTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotControllerState, any>>;
|
|
4962
4966
|
/**
|
|
4963
4967
|
* 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).
|
|
4964
4968
|
* @summary Update Robot Controller
|
|
@@ -4969,7 +4973,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
4969
4973
|
* @param {*} [options] Override http request option.
|
|
4970
4974
|
* @throws {RequiredError}
|
|
4971
4975
|
*/
|
|
4972
|
-
updateRobotController(cell: string, controller: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
4976
|
+
updateRobotController(cell: string, controller: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
4973
4977
|
}
|
|
4974
4978
|
/**
|
|
4975
4979
|
* ControllerInputsOutputsApi - axios parameter creator
|
|
@@ -5161,7 +5165,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
|
|
|
5161
5165
|
* @param {*} [options] Override http request option.
|
|
5162
5166
|
* @throws {RequiredError}
|
|
5163
5167
|
*/
|
|
5164
|
-
listIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<
|
|
5168
|
+
listIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IODescription[], any>>;
|
|
5165
5169
|
/**
|
|
5166
5170
|
* 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).
|
|
5167
5171
|
* @summary Get Input/Output Values
|
|
@@ -5171,7 +5175,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
|
|
|
5171
5175
|
* @param {*} [options] Override http request option.
|
|
5172
5176
|
* @throws {RequiredError}
|
|
5173
5177
|
*/
|
|
5174
|
-
listIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<
|
|
5178
|
+
listIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IOValue[], any>>;
|
|
5175
5179
|
/**
|
|
5176
5180
|
* 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.
|
|
5177
5181
|
* @summary Set Output Values
|
|
@@ -5181,7 +5185,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
|
|
|
5181
5185
|
* @param {*} [options] Override http request option.
|
|
5182
5186
|
* @throws {RequiredError}
|
|
5183
5187
|
*/
|
|
5184
|
-
setOutputValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<
|
|
5188
|
+
setOutputValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
5185
5189
|
/**
|
|
5186
5190
|
* <!-- 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.
|
|
5187
5191
|
* @summary Stream Input/Output Values
|
|
@@ -5191,7 +5195,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
|
|
|
5191
5195
|
* @param {*} [options] Override http request option.
|
|
5192
5196
|
* @throws {RequiredError}
|
|
5193
5197
|
*/
|
|
5194
|
-
streamIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<
|
|
5198
|
+
streamIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<StreamIOValuesResponse, any>>;
|
|
5195
5199
|
/**
|
|
5196
5200
|
* 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 ```
|
|
5197
5201
|
* @summary Wait For
|
|
@@ -5201,7 +5205,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
|
|
|
5201
5205
|
* @param {*} [options] Override http request option.
|
|
5202
5206
|
* @throws {RequiredError}
|
|
5203
5207
|
*/
|
|
5204
|
-
waitForIOEvent(cell: string, controller: string, waitForIOEventRequest: WaitForIOEventRequest, options?: RawAxiosRequestConfig): Promise<
|
|
5208
|
+
waitForIOEvent(cell: string, controller: string, waitForIOEventRequest: WaitForIOEventRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<boolean, any>>;
|
|
5205
5209
|
}
|
|
5206
5210
|
/**
|
|
5207
5211
|
* JoggingApi - axios parameter creator
|
|
@@ -5261,7 +5265,7 @@ declare class JoggingApi extends BaseAPI {
|
|
|
5261
5265
|
* @param {*} [options] Override http request option.
|
|
5262
5266
|
* @throws {RequiredError}
|
|
5263
5267
|
*/
|
|
5264
|
-
executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): Promise<
|
|
5268
|
+
executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ExecuteJoggingResponse, any>>;
|
|
5265
5269
|
}
|
|
5266
5270
|
/**
|
|
5267
5271
|
* KinematicsApi - axios parameter creator
|
|
@@ -5344,7 +5348,7 @@ declare class KinematicsApi extends BaseAPI {
|
|
|
5344
5348
|
* @param {*} [options] Override http request option.
|
|
5345
5349
|
* @throws {RequiredError}
|
|
5346
5350
|
*/
|
|
5347
|
-
forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): Promise<
|
|
5351
|
+
forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ForwardKinematicsResponse, any>>;
|
|
5348
5352
|
/**
|
|
5349
5353
|
* Returns the reachable joint positions for a list of given poses.
|
|
5350
5354
|
* @summary Inverse kinematics
|
|
@@ -5353,7 +5357,7 @@ declare class KinematicsApi extends BaseAPI {
|
|
|
5353
5357
|
* @param {*} [options] Override http request option.
|
|
5354
5358
|
* @throws {RequiredError}
|
|
5355
5359
|
*/
|
|
5356
|
-
inverseKinematics(cell: string, inverseKinematicsRequest: InverseKinematicsRequest, options?: RawAxiosRequestConfig): Promise<
|
|
5360
|
+
inverseKinematics(cell: string, inverseKinematicsRequest: InverseKinematicsRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<InverseKinematicsResponse, any>>;
|
|
5357
5361
|
}
|
|
5358
5362
|
/**
|
|
5359
5363
|
* LicenseApi - axios parameter creator
|
|
@@ -5468,28 +5472,28 @@ declare class LicenseApi extends BaseAPI {
|
|
|
5468
5472
|
* @param {*} [options] Override http request option.
|
|
5469
5473
|
* @throws {RequiredError}
|
|
5470
5474
|
*/
|
|
5471
|
-
activateLicense(activateLicenseRequest: ActivateLicenseRequest, options?: RawAxiosRequestConfig): Promise<
|
|
5475
|
+
activateLicense(activateLicenseRequest: ActivateLicenseRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<License, any>>;
|
|
5472
5476
|
/**
|
|
5473
5477
|
* Deactivates active license.
|
|
5474
5478
|
* @summary Deactivate license
|
|
5475
5479
|
* @param {*} [options] Override http request option.
|
|
5476
5480
|
* @throws {RequiredError}
|
|
5477
5481
|
*/
|
|
5478
|
-
deactivateLicense(options?: RawAxiosRequestConfig): Promise<
|
|
5482
|
+
deactivateLicense(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
5479
5483
|
/**
|
|
5480
5484
|
* Get information on the license used with the Wandelbots NOVA instance, e.g., licensed product, expiration date, license status.
|
|
5481
5485
|
* @summary Get license
|
|
5482
5486
|
* @param {*} [options] Override http request option.
|
|
5483
5487
|
* @throws {RequiredError}
|
|
5484
5488
|
*/
|
|
5485
|
-
getLicense(options?: RawAxiosRequestConfig): Promise<
|
|
5489
|
+
getLicense(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<License, any>>;
|
|
5486
5490
|
/**
|
|
5487
5491
|
* 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.
|
|
5488
5492
|
* @summary Get license status
|
|
5489
5493
|
* @param {*} [options] Override http request option.
|
|
5490
5494
|
* @throws {RequiredError}
|
|
5491
5495
|
*/
|
|
5492
|
-
getLicenseStatus(options?: RawAxiosRequestConfig): Promise<
|
|
5496
|
+
getLicenseStatus(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<LicenseStatus, any>>;
|
|
5493
5497
|
}
|
|
5494
5498
|
/**
|
|
5495
5499
|
* MotionGroupApi - axios parameter creator
|
|
@@ -5619,7 +5623,7 @@ declare class MotionGroupApi extends BaseAPI {
|
|
|
5619
5623
|
* @param {*} [options] Override http request option.
|
|
5620
5624
|
* @throws {RequiredError}
|
|
5621
5625
|
*/
|
|
5622
|
-
getCurrentMotionGroupState(cell: string, controller: string, motionGroup: string, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<
|
|
5626
|
+
getCurrentMotionGroupState(cell: string, controller: string, motionGroup: string, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupState, any>>;
|
|
5623
5627
|
/**
|
|
5624
5628
|
* 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.
|
|
5625
5629
|
* @summary Description
|
|
@@ -5629,7 +5633,7 @@ declare class MotionGroupApi extends BaseAPI {
|
|
|
5629
5633
|
* @param {*} [options] Override http request option.
|
|
5630
5634
|
* @throws {RequiredError}
|
|
5631
5635
|
*/
|
|
5632
|
-
getMotionGroupDescription(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
5636
|
+
getMotionGroupDescription(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupDescription, any>>;
|
|
5633
5637
|
/**
|
|
5634
5638
|
* <!-- theme: success --> > Websocket endpoint Receive updates of the motion group state. The stream will be closed from the server if the controller is disconnected.
|
|
5635
5639
|
* @summary Stream State
|
|
@@ -5641,7 +5645,7 @@ declare class MotionGroupApi extends BaseAPI {
|
|
|
5641
5645
|
* @param {*} [options] Override http request option.
|
|
5642
5646
|
* @throws {RequiredError}
|
|
5643
5647
|
*/
|
|
5644
|
-
streamMotionGroupState(cell: string, controller: string, motionGroup: string, responseRate?: number, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<
|
|
5648
|
+
streamMotionGroupState(cell: string, controller: string, motionGroup: string, responseRate?: number, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupState, any>>;
|
|
5645
5649
|
}
|
|
5646
5650
|
/**
|
|
5647
5651
|
* MotionGroupModelsApi - axios parameter creator
|
|
@@ -5718,7 +5722,7 @@ declare class MotionGroupModelsApi extends BaseAPI {
|
|
|
5718
5722
|
* @param {*} [options] Override http request option.
|
|
5719
5723
|
* @throws {RequiredError}
|
|
5720
5724
|
*/
|
|
5721
|
-
getMotionGroupCollisionModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<
|
|
5725
|
+
getMotionGroupCollisionModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
|
|
5722
5726
|
[key: string]: Collider;
|
|
5723
5727
|
}[], any>>;
|
|
5724
5728
|
/**
|
|
@@ -5727,7 +5731,7 @@ declare class MotionGroupModelsApi extends BaseAPI {
|
|
|
5727
5731
|
* @param {*} [options] Override http request option.
|
|
5728
5732
|
* @throws {RequiredError}
|
|
5729
5733
|
*/
|
|
5730
|
-
getMotionGroupModels(options?: RawAxiosRequestConfig): Promise<
|
|
5734
|
+
getMotionGroupModels(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
|
|
5731
5735
|
}
|
|
5732
5736
|
/**
|
|
5733
5737
|
* ProgramApi - axios parameter creator
|
|
@@ -5864,7 +5868,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
5864
5868
|
* @param {*} [options] Override http request option.
|
|
5865
5869
|
* @throws {RequiredError}
|
|
5866
5870
|
*/
|
|
5867
|
-
getProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<
|
|
5871
|
+
getProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Program, any>>;
|
|
5868
5872
|
/**
|
|
5869
5873
|
* List details of all existing programs.
|
|
5870
5874
|
* @summary List programs
|
|
@@ -5872,7 +5876,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
5872
5876
|
* @param {*} [options] Override http request option.
|
|
5873
5877
|
* @throws {RequiredError}
|
|
5874
5878
|
*/
|
|
5875
|
-
listPrograms(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
5879
|
+
listPrograms(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Program[], any>>;
|
|
5876
5880
|
/**
|
|
5877
5881
|
* This endpoint starts a new program execution. The program will be executed asynchronously.
|
|
5878
5882
|
* @summary Start the program
|
|
@@ -5882,7 +5886,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
5882
5886
|
* @param {*} [options] Override http request option.
|
|
5883
5887
|
* @throws {RequiredError}
|
|
5884
5888
|
*/
|
|
5885
|
-
startProgram(cell: string, program: string, programStartRequest: ProgramStartRequest, options?: RawAxiosRequestConfig): Promise<
|
|
5889
|
+
startProgram(cell: string, program: string, programStartRequest: ProgramStartRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProgramRun, any>>;
|
|
5886
5890
|
/**
|
|
5887
5891
|
* Stop a specific program run.
|
|
5888
5892
|
* @summary Stop program run
|
|
@@ -5891,7 +5895,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
5891
5895
|
* @param {*} [options] Override http request option.
|
|
5892
5896
|
* @throws {RequiredError}
|
|
5893
5897
|
*/
|
|
5894
|
-
stopProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<
|
|
5898
|
+
stopProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
5895
5899
|
}
|
|
5896
5900
|
/**
|
|
5897
5901
|
* StoreCollisionComponentsApi - axios parameter creator
|
|
@@ -6364,7 +6368,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
6364
6368
|
* @param {*} [options] Override http request option.
|
|
6365
6369
|
* @throws {RequiredError}
|
|
6366
6370
|
*/
|
|
6367
|
-
deleteStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<
|
|
6371
|
+
deleteStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
6368
6372
|
/**
|
|
6369
6373
|
* Deletes the stored link chain. <!-- theme: danger --> > This will delete persistently stored data.
|
|
6370
6374
|
* @summary Delete Link Chain
|
|
@@ -6373,7 +6377,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
6373
6377
|
* @param {*} [options] Override http request option.
|
|
6374
6378
|
* @throws {RequiredError}
|
|
6375
6379
|
*/
|
|
6376
|
-
deleteStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<
|
|
6380
|
+
deleteStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
6377
6381
|
/**
|
|
6378
6382
|
* Deletes the stored tool. <!-- theme: danger --> > This will delete persistently stored data.
|
|
6379
6383
|
* @summary Delete Tool
|
|
@@ -6382,7 +6386,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
6382
6386
|
* @param {*} [options] Override http request option.
|
|
6383
6387
|
* @throws {RequiredError}
|
|
6384
6388
|
*/
|
|
6385
|
-
deleteStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<
|
|
6389
|
+
deleteStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
6386
6390
|
/**
|
|
6387
6391
|
* Returns the collider.
|
|
6388
6392
|
* @summary Get Collider
|
|
@@ -6391,7 +6395,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
6391
6395
|
* @param {*} [options] Override http request option.
|
|
6392
6396
|
* @throws {RequiredError}
|
|
6393
6397
|
*/
|
|
6394
|
-
getStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<
|
|
6398
|
+
getStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Collider, any>>;
|
|
6395
6399
|
/**
|
|
6396
6400
|
* Returns the collision link chain.
|
|
6397
6401
|
* @summary Get Link Chain
|
|
@@ -6400,7 +6404,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
6400
6404
|
* @param {*} [options] Override http request option.
|
|
6401
6405
|
* @throws {RequiredError}
|
|
6402
6406
|
*/
|
|
6403
|
-
getStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<
|
|
6407
|
+
getStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
|
|
6404
6408
|
[key: string]: Collider;
|
|
6405
6409
|
}[], any>>;
|
|
6406
6410
|
/**
|
|
@@ -6411,7 +6415,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
6411
6415
|
* @param {*} [options] Override http request option.
|
|
6412
6416
|
* @throws {RequiredError}
|
|
6413
6417
|
*/
|
|
6414
|
-
getStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<
|
|
6418
|
+
getStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
|
|
6415
6419
|
[key: string]: Collider;
|
|
6416
6420
|
}, any>>;
|
|
6417
6421
|
/**
|
|
@@ -6421,7 +6425,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
6421
6425
|
* @param {*} [options] Override http request option.
|
|
6422
6426
|
* @throws {RequiredError}
|
|
6423
6427
|
*/
|
|
6424
|
-
listCollisionLinkChains(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
6428
|
+
listCollisionLinkChains(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
|
|
6425
6429
|
[key: string]: {
|
|
6426
6430
|
[key: string]: Collider;
|
|
6427
6431
|
}[];
|
|
@@ -6433,7 +6437,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
6433
6437
|
* @param {*} [options] Override http request option.
|
|
6434
6438
|
* @throws {RequiredError}
|
|
6435
6439
|
*/
|
|
6436
|
-
listCollisionLinkChainsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
6440
|
+
listCollisionLinkChainsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
|
|
6437
6441
|
/**
|
|
6438
6442
|
* Returns all stored colliders.
|
|
6439
6443
|
* @summary List Colliders
|
|
@@ -6441,7 +6445,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
6441
6445
|
* @param {*} [options] Override http request option.
|
|
6442
6446
|
* @throws {RequiredError}
|
|
6443
6447
|
*/
|
|
6444
|
-
listStoredColliders(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
6448
|
+
listStoredColliders(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
|
|
6445
6449
|
[key: string]: Collider;
|
|
6446
6450
|
}, any>>;
|
|
6447
6451
|
/**
|
|
@@ -6451,7 +6455,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
6451
6455
|
* @param {*} [options] Override http request option.
|
|
6452
6456
|
* @throws {RequiredError}
|
|
6453
6457
|
*/
|
|
6454
|
-
listStoredCollidersKeys(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
6458
|
+
listStoredCollidersKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
|
|
6455
6459
|
/**
|
|
6456
6460
|
* Returns the list of stored tools.
|
|
6457
6461
|
* @summary List Tools
|
|
@@ -6459,7 +6463,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
6459
6463
|
* @param {*} [options] Override http request option.
|
|
6460
6464
|
* @throws {RequiredError}
|
|
6461
6465
|
*/
|
|
6462
|
-
listStoredCollisionTools(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
6466
|
+
listStoredCollisionTools(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
|
|
6463
6467
|
[key: string]: {
|
|
6464
6468
|
[key: string]: Collider;
|
|
6465
6469
|
};
|
|
@@ -6471,7 +6475,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
6471
6475
|
* @param {*} [options] Override http request option.
|
|
6472
6476
|
* @throws {RequiredError}
|
|
6473
6477
|
*/
|
|
6474
|
-
listStoredCollisionToolsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
6478
|
+
listStoredCollisionToolsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
|
|
6475
6479
|
/**
|
|
6476
6480
|
* Stores collider. - If the collider does not exist, it will be created. - If the collider exists, it will be updated.
|
|
6477
6481
|
* @summary Store Collider
|
|
@@ -6481,7 +6485,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
6481
6485
|
* @param {*} [options] Override http request option.
|
|
6482
6486
|
* @throws {RequiredError}
|
|
6483
6487
|
*/
|
|
6484
|
-
storeCollider(cell: string, collider: string, collider2: Collider, options?: RawAxiosRequestConfig): Promise<
|
|
6488
|
+
storeCollider(cell: string, collider: string, collider2: Collider, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Collider, any>>;
|
|
6485
6489
|
/**
|
|
6486
6490
|
* Stores link chain. - If the link chain does not exist, it will be created. - If the link chain exists, it will be updated.
|
|
6487
6491
|
* @summary Store Link Chain
|
|
@@ -6493,7 +6497,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
6493
6497
|
*/
|
|
6494
6498
|
storeCollisionLinkChain(cell: string, linkChain: string, collider: Array<{
|
|
6495
6499
|
[key: string]: Collider;
|
|
6496
|
-
}>, options?: RawAxiosRequestConfig): Promise<
|
|
6500
|
+
}>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
|
|
6497
6501
|
[key: string]: Collider;
|
|
6498
6502
|
}[], any>>;
|
|
6499
6503
|
/**
|
|
@@ -6507,7 +6511,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
6507
6511
|
*/
|
|
6508
6512
|
storeCollisionTool(cell: string, tool: string, requestBody: {
|
|
6509
6513
|
[key: string]: Collider;
|
|
6510
|
-
}, options?: RawAxiosRequestConfig): Promise<
|
|
6514
|
+
}, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
|
|
6511
6515
|
[key: string]: Collider;
|
|
6512
6516
|
}, any>>;
|
|
6513
6517
|
}
|
|
@@ -6674,7 +6678,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
|
|
|
6674
6678
|
* @param {*} [options] Override http request option.
|
|
6675
6679
|
* @throws {RequiredError}
|
|
6676
6680
|
*/
|
|
6677
|
-
deleteStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<
|
|
6681
|
+
deleteStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
6678
6682
|
/**
|
|
6679
6683
|
* Returns the stored collision setup.
|
|
6680
6684
|
* @summary Get Collision Setup
|
|
@@ -6683,7 +6687,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
|
|
|
6683
6687
|
* @param {*} [options] Override http request option.
|
|
6684
6688
|
* @throws {RequiredError}
|
|
6685
6689
|
*/
|
|
6686
|
-
getStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<
|
|
6690
|
+
getStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CollisionSetup, any>>;
|
|
6687
6691
|
/**
|
|
6688
6692
|
* Returns a list of stored collision setups.
|
|
6689
6693
|
* @summary List Collision Setups
|
|
@@ -6691,7 +6695,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
|
|
|
6691
6695
|
* @param {*} [options] Override http request option.
|
|
6692
6696
|
* @throws {RequiredError}
|
|
6693
6697
|
*/
|
|
6694
|
-
listStoredCollisionSetups(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
6698
|
+
listStoredCollisionSetups(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
|
|
6695
6699
|
[key: string]: CollisionSetup;
|
|
6696
6700
|
}, any>>;
|
|
6697
6701
|
/**
|
|
@@ -6701,7 +6705,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
|
|
|
6701
6705
|
* @param {*} [options] Override http request option.
|
|
6702
6706
|
* @throws {RequiredError}
|
|
6703
6707
|
*/
|
|
6704
|
-
listStoredCollisionSetupsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
6708
|
+
listStoredCollisionSetupsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
|
|
6705
6709
|
/**
|
|
6706
6710
|
* Stores collision setup. - If the collision setup does not exist, it will be created. - If the collision setup exists, it will be updated.
|
|
6707
6711
|
* @summary Store Collision Setup
|
|
@@ -6711,7 +6715,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
|
|
|
6711
6715
|
* @param {*} [options] Override http request option.
|
|
6712
6716
|
* @throws {RequiredError}
|
|
6713
6717
|
*/
|
|
6714
|
-
storeCollisionSetup(cell: string, setup: string, collisionSetup: CollisionSetup, options?: RawAxiosRequestConfig): Promise<
|
|
6718
|
+
storeCollisionSetup(cell: string, setup: string, collisionSetup: CollisionSetup, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CollisionSetup, any>>;
|
|
6715
6719
|
}
|
|
6716
6720
|
/**
|
|
6717
6721
|
* StoreObjectApi - axios parameter creator
|
|
@@ -6907,7 +6911,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
6907
6911
|
* @param {*} [options] Override http request option.
|
|
6908
6912
|
* @throws {RequiredError}
|
|
6909
6913
|
*/
|
|
6910
|
-
clearAllObjects(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
6914
|
+
clearAllObjects(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
6911
6915
|
/**
|
|
6912
6916
|
* Delete an object <!-- theme: danger --> > This will delete persistently stored data.
|
|
6913
6917
|
* @summary Delete Object
|
|
@@ -6916,7 +6920,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
6916
6920
|
* @param {*} [options] Override http request option.
|
|
6917
6921
|
* @throws {RequiredError}
|
|
6918
6922
|
*/
|
|
6919
|
-
deleteObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<
|
|
6923
|
+
deleteObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
6920
6924
|
/**
|
|
6921
6925
|
* Returns content and metadata of a stored object.
|
|
6922
6926
|
* @summary Get Object
|
|
@@ -6925,7 +6929,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
6925
6929
|
* @param {*} [options] Override http request option.
|
|
6926
6930
|
* @throws {RequiredError}
|
|
6927
6931
|
*/
|
|
6928
|
-
getObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<
|
|
6932
|
+
getObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<File, any>>;
|
|
6929
6933
|
/**
|
|
6930
6934
|
* Returns metadata. Object content is not returned.
|
|
6931
6935
|
* @summary Get Object Metadata
|
|
@@ -6934,7 +6938,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
6934
6938
|
* @param {*} [options] Override http request option.
|
|
6935
6939
|
* @throws {RequiredError}
|
|
6936
6940
|
*/
|
|
6937
|
-
getObjectMetadata(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<
|
|
6941
|
+
getObjectMetadata(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
6938
6942
|
/**
|
|
6939
6943
|
* List the keys for all objects.
|
|
6940
6944
|
* @summary List all Object Keys
|
|
@@ -6942,7 +6946,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
6942
6946
|
* @param {*} [options] Override http request option.
|
|
6943
6947
|
* @throws {RequiredError}
|
|
6944
6948
|
*/
|
|
6945
|
-
listAllObjectKeys(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
6949
|
+
listAllObjectKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
|
|
6946
6950
|
/**
|
|
6947
6951
|
* 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.
|
|
6948
6952
|
* @summary Store Object
|
|
@@ -6955,7 +6959,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
6955
6959
|
*/
|
|
6956
6960
|
storeObject(cell: string, key: string, xMetadata?: {
|
|
6957
6961
|
[key: string]: string;
|
|
6958
|
-
}, anyValue?: any, options?: RawAxiosRequestConfig): Promise<
|
|
6962
|
+
}, anyValue?: any, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
6959
6963
|
}
|
|
6960
6964
|
/**
|
|
6961
6965
|
* SystemApi - axios parameter creator
|
|
@@ -7202,7 +7206,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
7202
7206
|
*/
|
|
7203
7207
|
backupConfiguration(resources?: Array<string>, metadata?: {
|
|
7204
7208
|
[key: string]: string;
|
|
7205
|
-
}, options?: RawAxiosRequestConfig): Promise<
|
|
7209
|
+
}, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<File, any>>;
|
|
7206
7210
|
/**
|
|
7207
7211
|
* Check if a more recent Wandelbots NOVA Version is available.
|
|
7208
7212
|
* @summary Check update
|
|
@@ -7210,7 +7214,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
7210
7214
|
* @param {*} [options] Override http request option.
|
|
7211
7215
|
* @throws {RequiredError}
|
|
7212
7216
|
*/
|
|
7213
|
-
checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<
|
|
7217
|
+
checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string, any>>;
|
|
7214
7218
|
/**
|
|
7215
7219
|
* 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.
|
|
7216
7220
|
* @summary Retrieve Backup Status
|
|
@@ -7218,35 +7222,35 @@ declare class SystemApi extends BaseAPI {
|
|
|
7218
7222
|
* @param {*} [options] Override http request option.
|
|
7219
7223
|
* @throws {RequiredError}
|
|
7220
7224
|
*/
|
|
7221
|
-
getConfigurationBackupStatus(operationId: string, options?: RawAxiosRequestConfig): Promise<
|
|
7225
|
+
getConfigurationBackupStatus(operationId: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ConfigurationArchiveStatus, any>>;
|
|
7222
7226
|
/**
|
|
7223
7227
|
* 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.
|
|
7224
7228
|
* @summary Download Diagnosis Package
|
|
7225
7229
|
* @param {*} [options] Override http request option.
|
|
7226
7230
|
* @throws {RequiredError}
|
|
7227
7231
|
*/
|
|
7228
|
-
getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<
|
|
7232
|
+
getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<File, any>>;
|
|
7229
7233
|
/**
|
|
7230
7234
|
* Get the status of all system services.
|
|
7231
7235
|
* @summary Wandelbots NOVA status
|
|
7232
7236
|
* @param {*} [options] Override http request option.
|
|
7233
7237
|
* @throws {RequiredError}
|
|
7234
7238
|
*/
|
|
7235
|
-
getSystemStatus(options?: RawAxiosRequestConfig): Promise<
|
|
7239
|
+
getSystemStatus(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ServiceStatus[], any>>;
|
|
7236
7240
|
/**
|
|
7237
7241
|
* Get the current Wandelbots NOVA version.
|
|
7238
7242
|
* @summary Wandelbots NOVA Version
|
|
7239
7243
|
* @param {*} [options] Override http request option.
|
|
7240
7244
|
* @throws {RequiredError}
|
|
7241
7245
|
*/
|
|
7242
|
-
getSystemVersion(options?: RawAxiosRequestConfig): Promise<
|
|
7246
|
+
getSystemVersion(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string, any>>;
|
|
7243
7247
|
/**
|
|
7244
7248
|
* Retrieves a list of all available configuration resources for backup purposes.
|
|
7245
7249
|
* @summary List Configuration Resources
|
|
7246
7250
|
* @param {*} [options] Override http request option.
|
|
7247
7251
|
* @throws {RequiredError}
|
|
7248
7252
|
*/
|
|
7249
|
-
listConfigurationResources(options?: RawAxiosRequestConfig): Promise<
|
|
7253
|
+
listConfigurationResources(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ConfigurationResource[], any>>;
|
|
7250
7254
|
/**
|
|
7251
7255
|
* Restores a previously backed up configuration.
|
|
7252
7256
|
* @summary Restore Configuration Backup
|
|
@@ -7255,7 +7259,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
7255
7259
|
* @param {*} [options] Override http request option.
|
|
7256
7260
|
* @throws {RequiredError}
|
|
7257
7261
|
*/
|
|
7258
|
-
restoreConfiguration(resources: Array<string>, body: File, options?: RawAxiosRequestConfig): Promise<
|
|
7262
|
+
restoreConfiguration(resources: Array<string>, body: File, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
7259
7263
|
/**
|
|
7260
7264
|
* 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.
|
|
7261
7265
|
* @summary Update Wandelbots NOVA version
|
|
@@ -7263,7 +7267,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
7263
7267
|
* @param {*} [options] Override http request option.
|
|
7264
7268
|
* @throws {RequiredError}
|
|
7265
7269
|
*/
|
|
7266
|
-
updateNovaVersion(updateNovaVersionRequest: UpdateNovaVersionRequest, options?: RawAxiosRequestConfig): Promise<
|
|
7270
|
+
updateNovaVersion(updateNovaVersionRequest: UpdateNovaVersionRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
7267
7271
|
}
|
|
7268
7272
|
/**
|
|
7269
7273
|
* TrajectoryCachingApi - axios parameter creator
|
|
@@ -7437,7 +7441,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
|
|
|
7437
7441
|
* @param {*} [options] Override http request option.
|
|
7438
7442
|
* @throws {RequiredError}
|
|
7439
7443
|
*/
|
|
7440
|
-
addTrajectory(cell: string, controller: string, addTrajectoryRequest: AddTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<
|
|
7444
|
+
addTrajectory(cell: string, controller: string, addTrajectoryRequest: AddTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<AddTrajectoryResponse, any>>;
|
|
7441
7445
|
/**
|
|
7442
7446
|
* Clear the trajectory cache.
|
|
7443
7447
|
* @summary Clear Trajectories
|
|
@@ -7446,7 +7450,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
|
|
|
7446
7450
|
* @param {*} [options] Override http request option.
|
|
7447
7451
|
* @throws {RequiredError}
|
|
7448
7452
|
*/
|
|
7449
|
-
clearTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
7453
|
+
clearTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
7450
7454
|
/**
|
|
7451
7455
|
* 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.
|
|
7452
7456
|
* @summary Delete Trajectory
|
|
@@ -7456,7 +7460,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
|
|
|
7456
7460
|
* @param {*} [options] Override http request option.
|
|
7457
7461
|
* @throws {RequiredError}
|
|
7458
7462
|
*/
|
|
7459
|
-
deleteTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<
|
|
7463
|
+
deleteTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
7460
7464
|
/**
|
|
7461
7465
|
* Get a previously created trajectory from cache. Use [listTrajectories](listTrajectories) to list all cached trajectories.
|
|
7462
7466
|
* @summary Get Trajectory
|
|
@@ -7466,7 +7470,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
|
|
|
7466
7470
|
* @param {*} [options] Override http request option.
|
|
7467
7471
|
* @throws {RequiredError}
|
|
7468
7472
|
*/
|
|
7469
|
-
getTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<
|
|
7473
|
+
getTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<GetTrajectoryResponse, any>>;
|
|
7470
7474
|
/**
|
|
7471
7475
|
* 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.
|
|
7472
7476
|
* @summary List Trajectories
|
|
@@ -7475,7 +7479,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
|
|
|
7475
7479
|
* @param {*} [options] Override http request option.
|
|
7476
7480
|
* @throws {RequiredError}
|
|
7477
7481
|
*/
|
|
7478
|
-
listTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
7482
|
+
listTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ListTrajectoriesResponse, any>>;
|
|
7479
7483
|
}
|
|
7480
7484
|
/**
|
|
7481
7485
|
* TrajectoryExecutionApi - axios parameter creator
|
|
@@ -7535,7 +7539,7 @@ declare class TrajectoryExecutionApi extends BaseAPI {
|
|
|
7535
7539
|
* @param {*} [options] Override http request option.
|
|
7536
7540
|
* @throws {RequiredError}
|
|
7537
7541
|
*/
|
|
7538
|
-
executeTrajectory(cell: string, controller: string, executeTrajectoryRequest: ExecuteTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<
|
|
7542
|
+
executeTrajectory(cell: string, controller: string, executeTrajectoryRequest: ExecuteTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ExecuteTrajectoryResponse, any>>;
|
|
7539
7543
|
}
|
|
7540
7544
|
/**
|
|
7541
7545
|
* TrajectoryPlanningApi - axios parameter creator
|
|
@@ -7618,7 +7622,7 @@ declare class TrajectoryPlanningApi extends BaseAPI {
|
|
|
7618
7622
|
* @param {*} [options] Override http request option.
|
|
7619
7623
|
* @throws {RequiredError}
|
|
7620
7624
|
*/
|
|
7621
|
-
planCollisionFree(cell: string, planCollisionFreeRequest: PlanCollisionFreeRequest, options?: RawAxiosRequestConfig): Promise<
|
|
7625
|
+
planCollisionFree(cell: string, planCollisionFreeRequest: PlanCollisionFreeRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<PlanCollisionFreeResponse, any>>;
|
|
7622
7626
|
/**
|
|
7623
7627
|
* 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.
|
|
7624
7628
|
* @summary Plan Trajectory
|
|
@@ -7627,7 +7631,7 @@ declare class TrajectoryPlanningApi extends BaseAPI {
|
|
|
7627
7631
|
* @param {*} [options] Override http request option.
|
|
7628
7632
|
* @throws {RequiredError}
|
|
7629
7633
|
*/
|
|
7630
|
-
planTrajectory(cell: string, planTrajectoryRequest: PlanTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<
|
|
7634
|
+
planTrajectory(cell: string, planTrajectoryRequest: PlanTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<PlanTrajectoryResponse, any>>;
|
|
7631
7635
|
}
|
|
7632
7636
|
/**
|
|
7633
7637
|
* VersionApi - axios parameter creator
|
|
@@ -7675,7 +7679,7 @@ declare class VersionApi extends BaseAPI {
|
|
|
7675
7679
|
* @param {*} [options] Override http request option.
|
|
7676
7680
|
* @throws {RequiredError}
|
|
7677
7681
|
*/
|
|
7678
|
-
getApiVersion(options?: RawAxiosRequestConfig): Promise<
|
|
7682
|
+
getApiVersion(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ApiVersion, any>>;
|
|
7679
7683
|
}
|
|
7680
7684
|
/**
|
|
7681
7685
|
* VirtualControllerApi - axios parameter creator
|
|
@@ -8165,7 +8169,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
8165
8169
|
* @param {*} [options] Override http request option.
|
|
8166
8170
|
* @throws {RequiredError}
|
|
8167
8171
|
*/
|
|
8168
|
-
addVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, coordinateSystemData: CoordinateSystemData, options?: RawAxiosRequestConfig): Promise<
|
|
8172
|
+
addVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, coordinateSystemData: CoordinateSystemData, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
8169
8173
|
/**
|
|
8170
8174
|
* 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.
|
|
8171
8175
|
* @summary Add TCP
|
|
@@ -8177,7 +8181,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
8177
8181
|
* @param {*} [options] Override http request option.
|
|
8178
8182
|
* @throws {RequiredError}
|
|
8179
8183
|
*/
|
|
8180
|
-
addVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, robotTcpData: RobotTcpData, options?: RawAxiosRequestConfig): Promise<
|
|
8184
|
+
addVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, robotTcpData: RobotTcpData, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
8181
8185
|
/**
|
|
8182
8186
|
* 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.
|
|
8183
8187
|
* @summary Delete Coordinate System
|
|
@@ -8188,7 +8192,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
8188
8192
|
* @param {*} [options] Override http request option.
|
|
8189
8193
|
* @throws {RequiredError}
|
|
8190
8194
|
*/
|
|
8191
|
-
deleteVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<
|
|
8195
|
+
deleteVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
8192
8196
|
/**
|
|
8193
8197
|
* 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.
|
|
8194
8198
|
* @summary Remove TCP
|
|
@@ -8199,7 +8203,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
8199
8203
|
* @param {*} [options] Override http request option.
|
|
8200
8204
|
* @throws {RequiredError}
|
|
8201
8205
|
*/
|
|
8202
|
-
deleteVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): Promise<
|
|
8206
|
+
deleteVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
8203
8207
|
/**
|
|
8204
8208
|
* 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.
|
|
8205
8209
|
* @summary Get Emergency Stop State
|
|
@@ -8208,7 +8212,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
8208
8212
|
* @param {*} [options] Override http request option.
|
|
8209
8213
|
* @throws {RequiredError}
|
|
8210
8214
|
*/
|
|
8211
|
-
getEmergencyStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
8215
|
+
getEmergencyStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Flag, any>>;
|
|
8212
8216
|
/**
|
|
8213
8217
|
* Get the current motion group state which provides values for the joints\' position, velocity and acceleration.
|
|
8214
8218
|
* @summary Get Motion Group State
|
|
@@ -8218,7 +8222,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
8218
8222
|
* @param {*} [options] Override http request option.
|
|
8219
8223
|
* @throws {RequiredError}
|
|
8220
8224
|
*/
|
|
8221
|
-
getMotionGroupState(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
8225
|
+
getMotionGroupState(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupJoints, any>>;
|
|
8222
8226
|
/**
|
|
8223
8227
|
* Gets information on the motion group.
|
|
8224
8228
|
* @summary Motion Group Description
|
|
@@ -8227,7 +8231,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
8227
8231
|
* @param {*} [options] Override http request option.
|
|
8228
8232
|
* @throws {RequiredError}
|
|
8229
8233
|
*/
|
|
8230
|
-
getMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
8234
|
+
getMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupInfo[], any>>;
|
|
8231
8235
|
/**
|
|
8232
8236
|
* 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.
|
|
8233
8237
|
* @summary Get Operation Mode
|
|
@@ -8236,7 +8240,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
8236
8240
|
* @param {*} [options] Override http request option.
|
|
8237
8241
|
* @throws {RequiredError}
|
|
8238
8242
|
*/
|
|
8239
|
-
getOperationMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
8243
|
+
getOperationMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<OpMode, any>>;
|
|
8240
8244
|
/**
|
|
8241
8245
|
* Gets motion group mounting. The motion group is based on the origin of the returned coordinate system.
|
|
8242
8246
|
* @summary Get Mounting
|
|
@@ -8246,7 +8250,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
8246
8250
|
* @param {*} [options] Override http request option.
|
|
8247
8251
|
* @throws {RequiredError}
|
|
8248
8252
|
*/
|
|
8249
|
-
getVirtualControllerMounting(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
8253
|
+
getVirtualControllerMounting(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem, any>>;
|
|
8250
8254
|
/**
|
|
8251
8255
|
* Lists all coordinate systems on the robot controller.
|
|
8252
8256
|
* @summary List Coordinate Systems
|
|
@@ -8255,7 +8259,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
8255
8259
|
* @param {*} [options] Override http request option.
|
|
8256
8260
|
* @throws {RequiredError}
|
|
8257
8261
|
*/
|
|
8258
|
-
listVirtualControllerCoordinateSystems(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
8262
|
+
listVirtualControllerCoordinateSystems(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem[], any>>;
|
|
8259
8263
|
/**
|
|
8260
8264
|
* Lists TCPs of the motion group. An empty TCP list is valid, e.g., for external axes.
|
|
8261
8265
|
* @summary List TCPs
|
|
@@ -8265,7 +8269,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
8265
8269
|
* @param {*} [options] Override http request option.
|
|
8266
8270
|
* @throws {RequiredError}
|
|
8267
8271
|
*/
|
|
8268
|
-
listVirtualControllerTcps(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
8272
|
+
listVirtualControllerTcps(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotTcp[], any>>;
|
|
8269
8273
|
/**
|
|
8270
8274
|
* 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.
|
|
8271
8275
|
* @summary Push or Release Emergency Stop
|
|
@@ -8275,7 +8279,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
8275
8279
|
* @param {*} [options] Override http request option.
|
|
8276
8280
|
* @throws {RequiredError}
|
|
8277
8281
|
*/
|
|
8278
|
-
setEmergencyStop(cell: string, controller: string, active?: boolean, options?: RawAxiosRequestConfig): Promise<
|
|
8282
|
+
setEmergencyStop(cell: string, controller: string, active?: boolean, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
8279
8283
|
/**
|
|
8280
8284
|
* 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.
|
|
8281
8285
|
* @summary Set Motion Group State
|
|
@@ -8286,7 +8290,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
8286
8290
|
* @param {*} [options] Override http request option.
|
|
8287
8291
|
* @throws {RequiredError}
|
|
8288
8292
|
*/
|
|
8289
|
-
setMotionGroupState(cell: string, controller: string, motionGroup: string, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): Promise<
|
|
8293
|
+
setMotionGroupState(cell: string, controller: string, motionGroup: string, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
8290
8294
|
/**
|
|
8291
8295
|
* 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.
|
|
8292
8296
|
* @summary Set Operation Mode
|
|
@@ -8296,7 +8300,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
8296
8300
|
* @param {*} [options] Override http request option.
|
|
8297
8301
|
* @throws {RequiredError}
|
|
8298
8302
|
*/
|
|
8299
|
-
setOperationMode(cell: string, controller: string, mode: OperationMode, options?: RawAxiosRequestConfig): Promise<
|
|
8303
|
+
setOperationMode(cell: string, controller: string, mode: OperationMode, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
8300
8304
|
/**
|
|
8301
8305
|
* 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.
|
|
8302
8306
|
* @summary Set Mounting
|
|
@@ -8307,7 +8311,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
8307
8311
|
* @param {*} [options] Override http request option.
|
|
8308
8312
|
* @throws {RequiredError}
|
|
8309
8313
|
*/
|
|
8310
|
-
setVirtualControllerMounting(cell: string, controller: string, motionGroup: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<
|
|
8314
|
+
setVirtualControllerMounting(cell: string, controller: string, motionGroup: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem, any>>;
|
|
8311
8315
|
}
|
|
8312
8316
|
/**
|
|
8313
8317
|
* VirtualControllerBehaviorApi - axios parameter creator
|
|
@@ -8451,7 +8455,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
|
|
|
8451
8455
|
* @param {*} [options] Override http request option.
|
|
8452
8456
|
* @throws {RequiredError}
|
|
8453
8457
|
*/
|
|
8454
|
-
externalJointsStream(cell: string, controller: string, externalJointStreamRequest: ExternalJointStreamRequest, options?: RawAxiosRequestConfig): Promise<
|
|
8458
|
+
externalJointsStream(cell: string, controller: string, externalJointStreamRequest: ExternalJointStreamRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ExternalJointStreamDatapoint[], any>>;
|
|
8455
8459
|
/**
|
|
8456
8460
|
* Get the cycle time of controller communication in [ms].
|
|
8457
8461
|
* @summary Get Cycle Time
|
|
@@ -8460,7 +8464,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
|
|
|
8460
8464
|
* @param {*} [options] Override http request option.
|
|
8461
8465
|
* @throws {RequiredError}
|
|
8462
8466
|
*/
|
|
8463
|
-
getCycleTime(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
8467
|
+
getCycleTime(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CycleTime, any>>;
|
|
8464
8468
|
/**
|
|
8465
8469
|
* Get the current virtual controller behavior. See [setVirtualControllerBehavior](setVirtualControllerBehavior) and the body for details.
|
|
8466
8470
|
* @summary Get Behavior
|
|
@@ -8469,7 +8473,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
|
|
|
8469
8473
|
* @param {*} [options] Override http request option.
|
|
8470
8474
|
* @throws {RequiredError}
|
|
8471
8475
|
*/
|
|
8472
|
-
getVirtualControllerBehavior(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
8476
|
+
getVirtualControllerBehavior(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Behavior, any>>;
|
|
8473
8477
|
/**
|
|
8474
8478
|
* Set virtual controller behavior. See query parameters for details.
|
|
8475
8479
|
* @summary Set Behavior
|
|
@@ -8479,7 +8483,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
|
|
|
8479
8483
|
* @param {*} [options] Override http request option.
|
|
8480
8484
|
* @throws {RequiredError}
|
|
8481
8485
|
*/
|
|
8482
|
-
setVirtualControllerBehavior(cell: string, controller: string, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<
|
|
8486
|
+
setVirtualControllerBehavior(cell: string, controller: string, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
8483
8487
|
}
|
|
8484
8488
|
/**
|
|
8485
8489
|
* VirtualControllerInputsOutputsApi - axios parameter creator
|
|
@@ -8608,7 +8612,7 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
|
|
|
8608
8612
|
* @param {*} [options] Override http request option.
|
|
8609
8613
|
* @throws {RequiredError}
|
|
8610
8614
|
*/
|
|
8611
|
-
listIOs(cell: string, controller: string, ios: Array<string>, options?: RawAxiosRequestConfig): Promise<
|
|
8615
|
+
listIOs(cell: string, controller: string, ios: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IOValue[], any>>;
|
|
8612
8616
|
/**
|
|
8613
8617
|
* 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.
|
|
8614
8618
|
* @summary List Descriptions
|
|
@@ -8621,7 +8625,7 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
|
|
|
8621
8625
|
* @param {*} [options] Override http request option.
|
|
8622
8626
|
* @throws {RequiredError}
|
|
8623
8627
|
*/
|
|
8624
|
-
listVirtualControllerIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<
|
|
8628
|
+
listVirtualControllerIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IODescription[], any>>;
|
|
8625
8629
|
/**
|
|
8626
8630
|
* Sets a list of values of a virtual controller inputs/outputs.
|
|
8627
8631
|
* @summary Set Input/Ouput Values
|
|
@@ -8631,7 +8635,7 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
|
|
|
8631
8635
|
* @param {*} [options] Override http request option.
|
|
8632
8636
|
* @throws {RequiredError}
|
|
8633
8637
|
*/
|
|
8634
|
-
setIOValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<
|
|
8638
|
+
setIOValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
8635
8639
|
}
|
|
8636
8640
|
//#endregion
|
|
8637
8641
|
export { AbbController, AbbControllerEgmServer, AbbControllerKindEnum, ActivateLicenseRequest, AddTrajectoryError, AddTrajectoryErrorData, AddTrajectoryRequest, AddTrajectoryResponse, ApiVersion, App, ApplicationApi, ApplicationApiAxiosParamCreator, ApplicationApiFactory, ApplicationApiFp, BASE_PATH, BUSInputsOutputsApi, BUSInputsOutputsApiAxiosParamCreator, BUSInputsOutputsApiFactory, BUSInputsOutputsApiFp, BaseAPI, Behavior, BlendingAuto, BlendingAutoBlendingNameEnum, BlendingPosition, BlendingPositionBlendingNameEnum, BooleanValue, BooleanValueValueTypeEnum, Box, BoxBoxTypeEnum, BoxShapeTypeEnum, BusIODescription, BusIOModbusClient, BusIOModbusClientBusTypeEnum, BusIOModbusServer, BusIOModbusServerBusTypeEnum, BusIOModbusTCPClient, BusIOModbusTCPClientNetworkTypeEnum, BusIOModbusTCPServer, BusIOModbusTCPServerNetworkTypeEnum, BusIOModbusVirtual, BusIOModbusVirtualBusTypeEnum, BusIOProfinet, BusIOProfinetBusTypeEnum, BusIOProfinetDefaultRoute, BusIOProfinetIpConfig, BusIOProfinetNetwork, BusIOProfinetVirtual, BusIOProfinetVirtualBusTypeEnum, BusIOType, BusIOsState, BusIOsStateEnum, COLLECTION_FORMATS, Capsule, CapsuleShapeTypeEnum, CartesianLimits, Cell, CellApi, CellApiAxiosParamCreator, CellApiFactory, CellApiFp, Collider, ColliderShape, Collision, CollisionContact, CollisionError, CollisionFreeAlgorithm, CollisionSetup, Comparator, Configuration, ConfigurationArchiveStatus, ConfigurationArchiveStatusCreating, ConfigurationArchiveStatusCreatingStatusEnum, ConfigurationArchiveStatusError, ConfigurationArchiveStatusErrorStatusEnum, ConfigurationArchiveStatusSuccess, ConfigurationArchiveStatusSuccessStatusEnum, ConfigurationParameters, ConfigurationResource, ContainerEnvironmentInner, ContainerImage, ContainerImageSecretsInner, ContainerResources, ContainerStorage, ControllerApi, ControllerApiAxiosParamCreator, ControllerApiFactory, ControllerApiFp, ControllerDescription, ControllerInputsOutputsApi, ControllerInputsOutputsApiAxiosParamCreator, ControllerInputsOutputsApiFactory, ControllerInputsOutputsApiFp, ConvexHull, ConvexHullShapeTypeEnum, CoordinateSystem, CoordinateSystemData, CubicSplineParameter, CycleTime, Cylinder, CylinderShapeTypeEnum, DHParameter, Direction, ErrorInvalidJointCount, ErrorInvalidJointCountErrorFeedbackNameEnum, ErrorJointLimitExceeded, ErrorJointLimitExceededErrorFeedbackNameEnum, ErrorJointPositionCollision, ErrorJointPositionCollisionErrorFeedbackNameEnum, ErrorMaxIterationsExceeded, ErrorMaxIterationsExceededErrorFeedbackNameEnum, Execute, ExecuteDetails, ExecuteJoggingRequest, ExecuteJoggingResponse, ExecuteTrajectoryRequest, ExecuteTrajectoryResponse, ExternalJointStreamDatapoint, ExternalJointStreamRequest, FanucController, FanucControllerKindEnum, FeedbackCollision, FeedbackCollisionErrorFeedbackNameEnum, FeedbackJointLimitExceeded, FeedbackJointLimitExceededErrorFeedbackNameEnum, FeedbackOutOfWorkspace, FeedbackOutOfWorkspaceErrorFeedbackNameEnum, FeedbackSingularity, FeedbackSingularityErrorFeedbackNameEnum, Flag, FloatValue, FloatValueValueTypeEnum, ForwardKinematics422Response, ForwardKinematicsRequest, ForwardKinematicsResponse, ForwardKinematicsValidationError, GetTrajectoryResponse, HTTPValidationError, IOBooleanValue, IOBooleanValueValueTypeEnum, IOBoundary, IODescription, IODirection, IOFloatValue, IOFloatValueValueTypeEnum, IOIntegerValue, IOIntegerValueValueTypeEnum, IOOrigin, IOValue, IOValueType, ImageCredentials, InconsistentTrajectorySizeError, InconsistentTrajectorySizeErrorInconsistentTrajectorySize, InitializeJoggingRequest, InitializeJoggingRequestMessageTypeEnum, InitializeJoggingResponse, InitializeJoggingResponseKindEnum, InitializeMovementRequest, InitializeMovementRequestMessageTypeEnum, InitializeMovementRequestTrajectory, InitializeMovementResponse, InitializeMovementResponseKindEnum, IntegerValue, IntegerValueValueTypeEnum, InvalidDofError, InvalidDofErrorInvalidDof, InverseKinematics422Response, InverseKinematicsRequest, InverseKinematicsResponse, InverseKinematicsValidationError, InverseKinematicsValidationErrorAllOfData, JoggingApi, JoggingApiAxiosParamCreator, JoggingApiFactory, JoggingApiFp, JoggingDetails, JoggingDetailsKindEnum, JoggingDetailsState, JoggingPausedByUser, JoggingPausedByUserKindEnum, JoggingPausedNearCollision, JoggingPausedNearCollisionKindEnum, JoggingPausedNearJointLimit, JoggingPausedNearJointLimitKindEnum, JoggingPausedOnIO, JoggingPausedOnIOKindEnum, JoggingRunning, JoggingRunningKindEnum, JointLimitExceededError, JointLimits, JointTrajectory, JointVelocityRequest, JointVelocityRequestMessageTypeEnum, JointVelocityResponse, JointVelocityResponseKindEnum, KinematicsApi, KinematicsApiAxiosParamCreator, KinematicsApiFactory, KinematicsApiFp, KukaController, KukaControllerKindEnum, KukaControllerRsiServer, License, LicenseApi, LicenseApiAxiosParamCreator, LicenseApiFactory, LicenseApiFp, LicenseStatus, LicenseStatusEnum, LimitRange, LimitSet, LimitsOverride, ListTrajectoriesResponse, Manufacturer, MidpointInsertionAlgorithm, MidpointInsertionAlgorithmAlgorithmNameEnum, ModbusIO, ModbusIOArea, ModbusIOByteOrder, ModbusIOData, ModbusIOTypeEnum, ModelError, MotionCommand, MotionCommandBlending, MotionCommandPath, MotionGroupApi, MotionGroupApiAxiosParamCreator, MotionGroupApiFactory, MotionGroupApiFp, MotionGroupDescription, MotionGroupInfo, MotionGroupJoints, MotionGroupModelsApi, MotionGroupModelsApiAxiosParamCreator, MotionGroupModelsApiFactory, MotionGroupModelsApiFp, MotionGroupSetup, MotionGroupState, MotionGroupStateJointLimitReached, MovementErrorResponse, MovementErrorResponseKindEnum, NanValueError, NanValueErrorNanValue, OpMode, OperatingState, OperationLimits, OperationMode, OrientationType, PathCartesianPTP, PathCartesianPTPPathDefinitionNameEnum, PathCircle, PathCirclePathDefinitionNameEnum, PathCubicSpline, PathCubicSplinePathDefinitionNameEnum, PathJointPTP, PathJointPTPPathDefinitionNameEnum, PathLine, PathLinePathDefinitionNameEnum, PauseJoggingRequest, PauseJoggingRequestMessageTypeEnum, PauseJoggingResponse, PauseJoggingResponseKindEnum, PauseMovementRequest, PauseMovementRequestMessageTypeEnum, PauseMovementResponse, PauseMovementResponseKindEnum, PauseOnIO, Payload, Plan422Response, PlanCollisionFreeFailedResponse, PlanCollisionFreeRequest, PlanCollisionFreeResponse, PlanCollisionFreeResponseResponse, PlanTrajectoryFailedResponse, PlanTrajectoryFailedResponseErrorFeedback, PlanTrajectoryRequest, PlanTrajectoryResponse, PlanTrajectoryResponseResponse, PlanValidationError, PlanValidationErrorAllOfData, Plane, PlaneShapeTypeEnum, PlaybackSpeedRequest, PlaybackSpeedRequestMessageTypeEnum, PlaybackSpeedResponse, PlaybackSpeedResponseKindEnum, Pose, ProfinetDescription, ProfinetIO, ProfinetIOData, ProfinetIODirection, ProfinetIOTypeEnum, ProfinetInputOutputConfig, ProfinetSlotDescription, ProfinetSubSlotDescription, Program, ProgramApi, ProgramApiAxiosParamCreator, ProgramApiFactory, ProgramApiFp, ProgramRun, ProgramRunState, ProgramStartRequest, RRTConnectAlgorithm, RRTConnectAlgorithmAlgorithmNameEnum, Rectangle, RectangleShapeTypeEnum, RectangularCapsule, RectangularCapsuleShapeTypeEnum, ReleaseChannel, RequestArgs, RequiredError, RobotController, RobotControllerConfiguration, RobotControllerState, RobotSystemMode, RobotTcp, RobotTcpData, SafetyStateType, ServiceGroup, ServiceStatus, ServiceStatusPhase, ServiceStatusResponse, ServiceStatusSeverity, ServiceStatusStatus, SetIO, SettableRobotSystemMode, SingularityTypeEnum, Sphere, SphereShapeTypeEnum, StartMovementRequest, StartMovementRequestMessageTypeEnum, StartMovementResponse, StartMovementResponseKindEnum, StartOnIO, StoreCollisionComponentsApi, StoreCollisionComponentsApiAxiosParamCreator, StoreCollisionComponentsApiFactory, StoreCollisionComponentsApiFp, StoreCollisionSetupsApi, StoreCollisionSetupsApiAxiosParamCreator, StoreCollisionSetupsApiFactory, StoreCollisionSetupsApiFp, StoreObjectApi, StoreObjectApiAxiosParamCreator, StoreObjectApiFactory, StoreObjectApiFp, StreamIOValuesResponse, SystemApi, SystemApiAxiosParamCreator, SystemApiFactory, SystemApiFp, TcpOffset, TcpRequiredError, TcpVelocityRequest, TcpVelocityRequestMessageTypeEnum, TcpVelocityResponse, TcpVelocityResponseKindEnum, TorqueExceededError, TorqueExceededErrorTorqueExceeded, TrajectoryCachingApi, TrajectoryCachingApiAxiosParamCreator, TrajectoryCachingApiFactory, TrajectoryCachingApiFp, TrajectoryData, TrajectoryDataMessageTypeEnum, TrajectoryDetails, TrajectoryDetailsKindEnum, TrajectoryDetailsState, TrajectoryEnded, TrajectoryEndedKindEnum, TrajectoryExecutionApi, TrajectoryExecutionApiAxiosParamCreator, TrajectoryExecutionApiFactory, TrajectoryExecutionApiFp, TrajectoryId, TrajectoryIdMessageTypeEnum, TrajectoryPausedByUser, TrajectoryPausedByUserKindEnum, TrajectoryPausedOnIO, TrajectoryPausedOnIOKindEnum, TrajectoryPlanningApi, TrajectoryPlanningApiAxiosParamCreator, TrajectoryPlanningApiFactory, TrajectoryPlanningApiFp, TrajectoryRunning, TrajectoryRunningKindEnum, TrajectoryWaitForIO, TrajectoryWaitForIOKindEnum, UnitType, UniversalrobotsController, UniversalrobotsControllerKindEnum, UpdateNovaVersionRequest, ValidationError, ValidationError2, ValidationErrorLocInner, VersionApi, VersionApiAxiosParamCreator, VersionApiFactory, VersionApiFp, VirtualController, VirtualControllerApi, VirtualControllerApiAxiosParamCreator, VirtualControllerApiFactory, VirtualControllerApiFp, VirtualControllerBehaviorApi, VirtualControllerBehaviorApiAxiosParamCreator, VirtualControllerBehaviorApiFactory, VirtualControllerBehaviorApiFp, VirtualControllerInputsOutputsApi, VirtualControllerInputsOutputsApiAxiosParamCreator, VirtualControllerInputsOutputsApiFactory, VirtualControllerInputsOutputsApiFp, VirtualControllerKindEnum, VirtualControllerTypes, VirtualRobotConfiguration, WaitForIOEventRequest, YaskawaController, YaskawaControllerKindEnum, operationServerMap };
|