@wandelbots/nova-api 25.10.0-dev.36 → 25.10.0-dev.37
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/v1/index.d.cts +177 -177
- package/dist/v2/index.d.cts +130 -130
- package/package.json +1 -1
package/dist/v2/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as axios175 from "axios";
|
|
2
2
|
import { AxiosInstance, AxiosPromise, RawAxiosRequestConfig } from "axios";
|
|
3
3
|
|
|
4
4
|
//#region v2/configuration.d.ts
|
|
@@ -6194,7 +6194,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
6194
6194
|
* @throws {RequiredError}
|
|
6195
6195
|
* @memberof ApplicationApi
|
|
6196
6196
|
*/
|
|
6197
|
-
addApp(cell: string, app: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
6197
|
+
addApp(cell: string, app: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<void, any>>;
|
|
6198
6198
|
/**
|
|
6199
6199
|
* Delete all GUI applications from the cell.
|
|
6200
6200
|
* @summary Clear Applications
|
|
@@ -6204,7 +6204,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
6204
6204
|
* @throws {RequiredError}
|
|
6205
6205
|
* @memberof ApplicationApi
|
|
6206
6206
|
*/
|
|
6207
|
-
clearApps(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
6207
|
+
clearApps(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<void, any>>;
|
|
6208
6208
|
/**
|
|
6209
6209
|
* Delete a GUI application from the cell.
|
|
6210
6210
|
* @summary Delete Application
|
|
@@ -6215,7 +6215,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
6215
6215
|
* @throws {RequiredError}
|
|
6216
6216
|
* @memberof ApplicationApi
|
|
6217
6217
|
*/
|
|
6218
|
-
deleteApp(cell: string, app: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
6218
|
+
deleteApp(cell: string, app: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<void, any>>;
|
|
6219
6219
|
/**
|
|
6220
6220
|
* 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).
|
|
6221
6221
|
* @summary Configuration
|
|
@@ -6225,7 +6225,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
6225
6225
|
* @throws {RequiredError}
|
|
6226
6226
|
* @memberof ApplicationApi
|
|
6227
6227
|
*/
|
|
6228
|
-
getApp(cell: string, app: string, options?: RawAxiosRequestConfig): Promise<
|
|
6228
|
+
getApp(cell: string, app: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<App, any>>;
|
|
6229
6229
|
/**
|
|
6230
6230
|
* 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.
|
|
6231
6231
|
* @summary List Applications
|
|
@@ -6234,7 +6234,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
6234
6234
|
* @throws {RequiredError}
|
|
6235
6235
|
* @memberof ApplicationApi
|
|
6236
6236
|
*/
|
|
6237
|
-
listApps(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
6237
|
+
listApps(cell: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<string[], any>>;
|
|
6238
6238
|
/**
|
|
6239
6239
|
* Update the configuration of a GUI application in the cell.
|
|
6240
6240
|
* @summary Update Configuration
|
|
@@ -6246,7 +6246,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
6246
6246
|
* @throws {RequiredError}
|
|
6247
6247
|
* @memberof ApplicationApi
|
|
6248
6248
|
*/
|
|
6249
|
-
updateApp(cell: string, app: string, app2: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
6249
|
+
updateApp(cell: string, app: string, app2: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<void, any>>;
|
|
6250
6250
|
}
|
|
6251
6251
|
/**
|
|
6252
6252
|
* BUSInputsOutputsApi - axios parameter creator
|
|
@@ -6709,7 +6709,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
6709
6709
|
* @throws {RequiredError}
|
|
6710
6710
|
* @memberof BUSInputsOutputsApi
|
|
6711
6711
|
*/
|
|
6712
|
-
addBusIOService(cell: string, busIOType: BusIOType, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
6712
|
+
addBusIOService(cell: string, busIOType: BusIOType, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<void, any>>;
|
|
6713
6713
|
/**
|
|
6714
6714
|
* 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).
|
|
6715
6715
|
* @summary Add MODBUS Input/Output
|
|
@@ -6720,7 +6720,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
6720
6720
|
* @throws {RequiredError}
|
|
6721
6721
|
* @memberof BUSInputsOutputsApi
|
|
6722
6722
|
*/
|
|
6723
|
-
addModbusIO(cell: string, io: string, modbusIOData: ModbusIOData, options?: RawAxiosRequestConfig): Promise<
|
|
6723
|
+
addModbusIO(cell: string, io: string, modbusIOData: ModbusIOData, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<void, any>>;
|
|
6724
6724
|
/**
|
|
6725
6725
|
* 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).
|
|
6726
6726
|
* @summary Add PROFINET Input/Output
|
|
@@ -6731,7 +6731,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
6731
6731
|
* @throws {RequiredError}
|
|
6732
6732
|
* @memberof BUSInputsOutputsApi
|
|
6733
6733
|
*/
|
|
6734
|
-
addProfinetIO(cell: string, io: string, profinetIOData: ProfinetIOData, options?: RawAxiosRequestConfig): Promise<
|
|
6734
|
+
addProfinetIO(cell: string, io: string, profinetIOData: ProfinetIOData, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<void, any>>;
|
|
6735
6735
|
/**
|
|
6736
6736
|
* Remove the BUS inputs/outputs service from the cell.
|
|
6737
6737
|
* @summary Clear Service
|
|
@@ -6741,7 +6741,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
6741
6741
|
* @throws {RequiredError}
|
|
6742
6742
|
* @memberof BUSInputsOutputsApi
|
|
6743
6743
|
*/
|
|
6744
|
-
clearBusIOService(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
6744
|
+
clearBusIOService(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<void, any>>;
|
|
6745
6745
|
/**
|
|
6746
6746
|
* Removes an input/output variable configuration from the MODBUS device, e.g., NOVA\'s MODBUS service.
|
|
6747
6747
|
* @summary Remove MODBUS Input/Ouptut
|
|
@@ -6751,7 +6751,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
6751
6751
|
* @throws {RequiredError}
|
|
6752
6752
|
* @memberof BUSInputsOutputsApi
|
|
6753
6753
|
*/
|
|
6754
|
-
deleteModbusIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<
|
|
6754
|
+
deleteModbusIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<void, any>>;
|
|
6755
6755
|
/**
|
|
6756
6756
|
* Removes an input/output variable configuration from the PROFINET device, e.g., NOVA\'s PROFINET service.
|
|
6757
6757
|
* @summary Remove PROFINET Input/Ouptut
|
|
@@ -6761,7 +6761,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
6761
6761
|
* @throws {RequiredError}
|
|
6762
6762
|
* @memberof BUSInputsOutputsApi
|
|
6763
6763
|
*/
|
|
6764
|
-
deleteProfinetIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<
|
|
6764
|
+
deleteProfinetIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<void, any>>;
|
|
6765
6765
|
/**
|
|
6766
6766
|
* Get deployed BUS inputs/outputs service.
|
|
6767
6767
|
* @summary Get Service
|
|
@@ -6770,7 +6770,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
6770
6770
|
* @throws {RequiredError}
|
|
6771
6771
|
* @memberof BUSInputsOutputsApi
|
|
6772
6772
|
*/
|
|
6773
|
-
getBusIOService(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
6773
|
+
getBusIOService(cell: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<BusIOType, any>>;
|
|
6774
6774
|
/**
|
|
6775
6775
|
* Get the current state of the BUS Inputs/Outputs service.
|
|
6776
6776
|
* @summary State
|
|
@@ -6779,7 +6779,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
6779
6779
|
* @throws {RequiredError}
|
|
6780
6780
|
* @memberof BUSInputsOutputsApi
|
|
6781
6781
|
*/
|
|
6782
|
-
getBusIOState(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
6782
|
+
getBusIOState(cell: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<BusIOsState, any>>;
|
|
6783
6783
|
/**
|
|
6784
6784
|
* 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).
|
|
6785
6785
|
* @summary Get Input/Output Values
|
|
@@ -6789,7 +6789,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
6789
6789
|
* @throws {RequiredError}
|
|
6790
6790
|
* @memberof BUSInputsOutputsApi
|
|
6791
6791
|
*/
|
|
6792
|
-
getBusIOValues(cell: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<
|
|
6792
|
+
getBusIOValues(cell: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<IOValue[], any>>;
|
|
6793
6793
|
/**
|
|
6794
6794
|
* Get description of NOVA as a PROFINET device.
|
|
6795
6795
|
* @summary Get PROFINET Description
|
|
@@ -6798,7 +6798,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
6798
6798
|
* @throws {RequiredError}
|
|
6799
6799
|
* @memberof BUSInputsOutputsApi
|
|
6800
6800
|
*/
|
|
6801
|
-
getProfinetDescription(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
6801
|
+
getProfinetDescription(cell: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<ProfinetDescription, any>>;
|
|
6802
6802
|
/**
|
|
6803
6803
|
* 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.
|
|
6804
6804
|
* @summary PROFINET Inputs/Outputs to File
|
|
@@ -6809,7 +6809,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
6809
6809
|
* @throws {RequiredError}
|
|
6810
6810
|
* @memberof BUSInputsOutputsApi
|
|
6811
6811
|
*/
|
|
6812
|
-
getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<
|
|
6812
|
+
getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<string, any>>;
|
|
6813
6813
|
/**
|
|
6814
6814
|
* 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.
|
|
6815
6815
|
* @summary List Descriptions
|
|
@@ -6818,7 +6818,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
6818
6818
|
* @throws {RequiredError}
|
|
6819
6819
|
* @memberof BUSInputsOutputsApi
|
|
6820
6820
|
*/
|
|
6821
|
-
listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
6821
|
+
listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<BusIODescription[], any>>;
|
|
6822
6822
|
/**
|
|
6823
6823
|
* 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).
|
|
6824
6824
|
* @summary List MODBUS Input/Output Configuration
|
|
@@ -6827,7 +6827,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
6827
6827
|
* @throws {RequiredError}
|
|
6828
6828
|
* @memberof BUSInputsOutputsApi
|
|
6829
6829
|
*/
|
|
6830
|
-
listModbusIOs(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
6830
|
+
listModbusIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<ModbusIO[], any>>;
|
|
6831
6831
|
/**
|
|
6832
6832
|
* 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.
|
|
6833
6833
|
* @summary List PROFINET Input/Output Configuration
|
|
@@ -6836,7 +6836,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
6836
6836
|
* @throws {RequiredError}
|
|
6837
6837
|
* @memberof BUSInputsOutputsApi
|
|
6838
6838
|
*/
|
|
6839
|
-
listProfinetIOs(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
6839
|
+
listProfinetIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<ProfinetIO[], any>>;
|
|
6840
6840
|
/**
|
|
6841
6841
|
* 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.
|
|
6842
6842
|
* @summary Set Output Values
|
|
@@ -6846,7 +6846,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
6846
6846
|
* @throws {RequiredError}
|
|
6847
6847
|
* @memberof BUSInputsOutputsApi
|
|
6848
6848
|
*/
|
|
6849
|
-
setBusIOValues(cell: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<
|
|
6849
|
+
setBusIOValues(cell: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<void, any>>;
|
|
6850
6850
|
/**
|
|
6851
6851
|
* 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.
|
|
6852
6852
|
* @summary Set PROFINET Inputs/Outputs from File
|
|
@@ -6856,7 +6856,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
6856
6856
|
* @throws {RequiredError}
|
|
6857
6857
|
* @memberof BUSInputsOutputsApi
|
|
6858
6858
|
*/
|
|
6859
|
-
setProfinetIOsFromFile(cell: string, profinetInputOutputConfig: ProfinetInputOutputConfig, options?: RawAxiosRequestConfig): Promise<
|
|
6859
|
+
setProfinetIOsFromFile(cell: string, profinetInputOutputConfig: ProfinetInputOutputConfig, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<void, any>>;
|
|
6860
6860
|
}
|
|
6861
6861
|
/**
|
|
6862
6862
|
* CellApi - axios parameter creator
|
|
@@ -7072,7 +7072,7 @@ declare class CellApi extends BaseAPI {
|
|
|
7072
7072
|
* @throws {RequiredError}
|
|
7073
7073
|
* @memberof CellApi
|
|
7074
7074
|
*/
|
|
7075
|
-
deleteCell(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
7075
|
+
deleteCell(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<void, any>>;
|
|
7076
7076
|
/**
|
|
7077
7077
|
* 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.
|
|
7078
7078
|
* @summary Add Cell
|
|
@@ -7082,7 +7082,7 @@ declare class CellApi extends BaseAPI {
|
|
|
7082
7082
|
* @throws {RequiredError}
|
|
7083
7083
|
* @memberof CellApi
|
|
7084
7084
|
*/
|
|
7085
|
-
deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
7085
|
+
deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<void, any>>;
|
|
7086
7086
|
/**
|
|
7087
7087
|
* List all cell resources.
|
|
7088
7088
|
* @summary Configuration
|
|
@@ -7091,7 +7091,7 @@ declare class CellApi extends BaseAPI {
|
|
|
7091
7091
|
* @throws {RequiredError}
|
|
7092
7092
|
* @memberof CellApi
|
|
7093
7093
|
*/
|
|
7094
|
-
getCell(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
7094
|
+
getCell(cell: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<Cell, any>>;
|
|
7095
7095
|
/**
|
|
7096
7096
|
* List the status of all cell resources.
|
|
7097
7097
|
* @summary Service Status
|
|
@@ -7100,7 +7100,7 @@ declare class CellApi extends BaseAPI {
|
|
|
7100
7100
|
* @throws {RequiredError}
|
|
7101
7101
|
* @memberof CellApi
|
|
7102
7102
|
*/
|
|
7103
|
-
getCellStatus(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
7103
|
+
getCellStatus(cell: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<ServiceStatusResponse, any>>;
|
|
7104
7104
|
/**
|
|
7105
7105
|
* List all deployed cell names. If no cells are deployed, an empty list is returned.
|
|
7106
7106
|
* @summary List Cells
|
|
@@ -7108,7 +7108,7 @@ declare class CellApi extends BaseAPI {
|
|
|
7108
7108
|
* @throws {RequiredError}
|
|
7109
7109
|
* @memberof CellApi
|
|
7110
7110
|
*/
|
|
7111
|
-
listCells(options?: RawAxiosRequestConfig): Promise<
|
|
7111
|
+
listCells(options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<string[], any>>;
|
|
7112
7112
|
/**
|
|
7113
7113
|
* Deactivate or activate the services of a cell.
|
|
7114
7114
|
* @summary Operating State
|
|
@@ -7118,7 +7118,7 @@ declare class CellApi extends BaseAPI {
|
|
|
7118
7118
|
* @throws {RequiredError}
|
|
7119
7119
|
* @memberof CellApi
|
|
7120
7120
|
*/
|
|
7121
|
-
setCellStatus(cell: string, operatingState: OperatingState, options?: RawAxiosRequestConfig): Promise<
|
|
7121
|
+
setCellStatus(cell: string, operatingState: OperatingState, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<void, any>>;
|
|
7122
7122
|
/**
|
|
7123
7123
|
* Update the definition of the entire Cell.
|
|
7124
7124
|
* @summary Update Configuration
|
|
@@ -7129,7 +7129,7 @@ declare class CellApi extends BaseAPI {
|
|
|
7129
7129
|
* @throws {RequiredError}
|
|
7130
7130
|
* @memberof CellApi
|
|
7131
7131
|
*/
|
|
7132
|
-
updateCell(cell: string, cell2: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
7132
|
+
updateCell(cell: string, cell2: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<void, any>>;
|
|
7133
7133
|
}
|
|
7134
7134
|
/**
|
|
7135
7135
|
* ControllerApi - axios parameter creator
|
|
@@ -7574,7 +7574,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
7574
7574
|
* @throws {RequiredError}
|
|
7575
7575
|
* @memberof ControllerApi
|
|
7576
7576
|
*/
|
|
7577
|
-
addRobotController(cell: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
7577
|
+
addRobotController(cell: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<void, any>>;
|
|
7578
7578
|
/**
|
|
7579
7579
|
* Delete all robot controllers from the cell. To replace all robot controllers in a cell, use this endpoint in combination with [addRobotController](addRobotController).
|
|
7580
7580
|
* @summary Clear Robot Controllers
|
|
@@ -7584,7 +7584,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
7584
7584
|
* @throws {RequiredError}
|
|
7585
7585
|
* @memberof ControllerApi
|
|
7586
7586
|
*/
|
|
7587
|
-
clearRobotControllers(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
7587
|
+
clearRobotControllers(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<void, any>>;
|
|
7588
7588
|
/**
|
|
7589
7589
|
* Delete a robot controller from the cell.
|
|
7590
7590
|
* @summary Delete Robot Controller
|
|
@@ -7595,7 +7595,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
7595
7595
|
* @throws {RequiredError}
|
|
7596
7596
|
* @memberof ControllerApi
|
|
7597
7597
|
*/
|
|
7598
|
-
deleteRobotController(cell: string, controller: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
7598
|
+
deleteRobotController(cell: string, controller: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<void, any>>;
|
|
7599
7599
|
/**
|
|
7600
7600
|
* 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.
|
|
7601
7601
|
* @summary Description
|
|
@@ -7605,7 +7605,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
7605
7605
|
* @throws {RequiredError}
|
|
7606
7606
|
* @memberof ControllerApi
|
|
7607
7607
|
*/
|
|
7608
|
-
getControllerDescription(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
7608
|
+
getControllerDescription(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<ControllerDescription, any>>;
|
|
7609
7609
|
/**
|
|
7610
7610
|
* 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.
|
|
7611
7611
|
* @summary Coordinate System
|
|
@@ -7617,7 +7617,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
7617
7617
|
* @throws {RequiredError}
|
|
7618
7618
|
* @memberof ControllerApi
|
|
7619
7619
|
*/
|
|
7620
|
-
getCoordinateSystem(cell: string, controller: string, coordinateSystem: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<
|
|
7620
|
+
getCoordinateSystem(cell: string, controller: string, coordinateSystem: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<CoordinateSystem, any>>;
|
|
7621
7621
|
/**
|
|
7622
7622
|
* Get the current state of a robot controller.
|
|
7623
7623
|
* @summary State
|
|
@@ -7627,7 +7627,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
7627
7627
|
* @throws {RequiredError}
|
|
7628
7628
|
* @memberof ControllerApi
|
|
7629
7629
|
*/
|
|
7630
|
-
getCurrentRobotControllerState(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
7630
|
+
getCurrentRobotControllerState(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<RobotControllerState, any>>;
|
|
7631
7631
|
/**
|
|
7632
7632
|
* Get the configuration for a robot controller.
|
|
7633
7633
|
* @summary Robot Controller
|
|
@@ -7637,7 +7637,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
7637
7637
|
* @throws {RequiredError}
|
|
7638
7638
|
* @memberof ControllerApi
|
|
7639
7639
|
*/
|
|
7640
|
-
getRobotController(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
7640
|
+
getRobotController(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<RobotController, any>>;
|
|
7641
7641
|
/**
|
|
7642
7642
|
* 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.
|
|
7643
7643
|
* @summary Virtual Controller Configuration
|
|
@@ -7647,7 +7647,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
7647
7647
|
* @throws {RequiredError}
|
|
7648
7648
|
* @memberof ControllerApi
|
|
7649
7649
|
*/
|
|
7650
|
-
getVirtualControllerConfiguration(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
7650
|
+
getVirtualControllerConfiguration(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<VirtualRobotConfiguration, any>>;
|
|
7651
7651
|
/**
|
|
7652
7652
|
* 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.
|
|
7653
7653
|
* @summary List Coordinate Systems
|
|
@@ -7658,7 +7658,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
7658
7658
|
* @throws {RequiredError}
|
|
7659
7659
|
* @memberof ControllerApi
|
|
7660
7660
|
*/
|
|
7661
|
-
listCoordinateSystems(cell: string, controller: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<
|
|
7661
|
+
listCoordinateSystems(cell: string, controller: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<CoordinateSystem[], any>>;
|
|
7662
7662
|
/**
|
|
7663
7663
|
* List the names of all deployed robot controllers.
|
|
7664
7664
|
* @summary List Robot Controllers
|
|
@@ -7667,7 +7667,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
7667
7667
|
* @throws {RequiredError}
|
|
7668
7668
|
* @memberof ControllerApi
|
|
7669
7669
|
*/
|
|
7670
|
-
listRobotControllers(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
7670
|
+
listRobotControllers(cell: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<string[], any>>;
|
|
7671
7671
|
/**
|
|
7672
7672
|
* 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.
|
|
7673
7673
|
* @summary Set Default Mode
|
|
@@ -7678,7 +7678,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
7678
7678
|
* @throws {RequiredError}
|
|
7679
7679
|
* @memberof ControllerApi
|
|
7680
7680
|
*/
|
|
7681
|
-
setDefaultMode(cell: string, controller: string, mode: SettableRobotSystemMode, options?: RawAxiosRequestConfig): Promise<
|
|
7681
|
+
setDefaultMode(cell: string, controller: string, mode: SettableRobotSystemMode, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<void, any>>;
|
|
7682
7682
|
/**
|
|
7683
7683
|
* <!-- 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.
|
|
7684
7684
|
* @summary Stream Free Drive
|
|
@@ -7689,7 +7689,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
7689
7689
|
* @throws {RequiredError}
|
|
7690
7690
|
* @memberof ControllerApi
|
|
7691
7691
|
*/
|
|
7692
|
-
streamFreeDrive(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<
|
|
7692
|
+
streamFreeDrive(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<RobotControllerState, any>>;
|
|
7693
7693
|
/**
|
|
7694
7694
|
* <!-- 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.
|
|
7695
7695
|
* @summary Stream State
|
|
@@ -7701,7 +7701,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
7701
7701
|
* @throws {RequiredError}
|
|
7702
7702
|
* @memberof ControllerApi
|
|
7703
7703
|
*/
|
|
7704
|
-
streamRobotControllerState(cell: string, controller: string, responseRate?: number, addControllerTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
7704
|
+
streamRobotControllerState(cell: string, controller: string, responseRate?: number, addControllerTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<RobotControllerState, any>>;
|
|
7705
7705
|
/**
|
|
7706
7706
|
* 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).
|
|
7707
7707
|
* @summary Update Robot Controller
|
|
@@ -7713,7 +7713,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
7713
7713
|
* @throws {RequiredError}
|
|
7714
7714
|
* @memberof ControllerApi
|
|
7715
7715
|
*/
|
|
7716
|
-
updateRobotController(cell: string, controller: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
7716
|
+
updateRobotController(cell: string, controller: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<void, any>>;
|
|
7717
7717
|
}
|
|
7718
7718
|
/**
|
|
7719
7719
|
* ControllerInputsOutputsApi - axios parameter creator
|
|
@@ -7912,7 +7912,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
|
|
|
7912
7912
|
* @throws {RequiredError}
|
|
7913
7913
|
* @memberof ControllerInputsOutputsApi
|
|
7914
7914
|
*/
|
|
7915
|
-
listIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<
|
|
7915
|
+
listIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<IODescription[], any>>;
|
|
7916
7916
|
/**
|
|
7917
7917
|
* 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).
|
|
7918
7918
|
* @summary Get Input/Output Values
|
|
@@ -7923,7 +7923,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
|
|
|
7923
7923
|
* @throws {RequiredError}
|
|
7924
7924
|
* @memberof ControllerInputsOutputsApi
|
|
7925
7925
|
*/
|
|
7926
|
-
listIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<
|
|
7926
|
+
listIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<IOValue[], any>>;
|
|
7927
7927
|
/**
|
|
7928
7928
|
* 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.
|
|
7929
7929
|
* @summary Set Output Values
|
|
@@ -7934,7 +7934,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
|
|
|
7934
7934
|
* @throws {RequiredError}
|
|
7935
7935
|
* @memberof ControllerInputsOutputsApi
|
|
7936
7936
|
*/
|
|
7937
|
-
setOutputValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<
|
|
7937
|
+
setOutputValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<void, any>>;
|
|
7938
7938
|
/**
|
|
7939
7939
|
* <!-- 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.
|
|
7940
7940
|
* @summary Stream Input/Output Values
|
|
@@ -7945,7 +7945,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
|
|
|
7945
7945
|
* @throws {RequiredError}
|
|
7946
7946
|
* @memberof ControllerInputsOutputsApi
|
|
7947
7947
|
*/
|
|
7948
|
-
streamIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<
|
|
7948
|
+
streamIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<StreamIOValuesResponse, any>>;
|
|
7949
7949
|
/**
|
|
7950
7950
|
* 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 ```
|
|
7951
7951
|
* @summary Wait For
|
|
@@ -7956,7 +7956,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
|
|
|
7956
7956
|
* @throws {RequiredError}
|
|
7957
7957
|
* @memberof ControllerInputsOutputsApi
|
|
7958
7958
|
*/
|
|
7959
|
-
waitForIOEvent(cell: string, controller: string, waitForIOEventRequest: WaitForIOEventRequest, options?: RawAxiosRequestConfig): Promise<
|
|
7959
|
+
waitForIOEvent(cell: string, controller: string, waitForIOEventRequest: WaitForIOEventRequest, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<boolean, any>>;
|
|
7960
7960
|
}
|
|
7961
7961
|
/**
|
|
7962
7962
|
* JoggingApi - axios parameter creator
|
|
@@ -8023,7 +8023,7 @@ declare class JoggingApi extends BaseAPI {
|
|
|
8023
8023
|
* @throws {RequiredError}
|
|
8024
8024
|
* @memberof JoggingApi
|
|
8025
8025
|
*/
|
|
8026
|
-
executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): Promise<
|
|
8026
|
+
executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<ExecuteJoggingResponse, any>>;
|
|
8027
8027
|
}
|
|
8028
8028
|
/**
|
|
8029
8029
|
* KinematicsApi - axios parameter creator
|
|
@@ -8113,7 +8113,7 @@ declare class KinematicsApi extends BaseAPI {
|
|
|
8113
8113
|
* @throws {RequiredError}
|
|
8114
8114
|
* @memberof KinematicsApi
|
|
8115
8115
|
*/
|
|
8116
|
-
forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): Promise<
|
|
8116
|
+
forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<ForwardKinematicsResponse, any>>;
|
|
8117
8117
|
/**
|
|
8118
8118
|
* Returns the reachable joint positions for a list of given poses.
|
|
8119
8119
|
* @summary Inverse kinematics
|
|
@@ -8123,7 +8123,7 @@ declare class KinematicsApi extends BaseAPI {
|
|
|
8123
8123
|
* @throws {RequiredError}
|
|
8124
8124
|
* @memberof KinematicsApi
|
|
8125
8125
|
*/
|
|
8126
|
-
inverseKinematics(cell: string, inverseKinematicsRequest: InverseKinematicsRequest, options?: RawAxiosRequestConfig): Promise<
|
|
8126
|
+
inverseKinematics(cell: string, inverseKinematicsRequest: InverseKinematicsRequest, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<InverseKinematicsResponse, any>>;
|
|
8127
8127
|
}
|
|
8128
8128
|
/**
|
|
8129
8129
|
* LicenseApi - axios parameter creator
|
|
@@ -8245,7 +8245,7 @@ declare class LicenseApi extends BaseAPI {
|
|
|
8245
8245
|
* @throws {RequiredError}
|
|
8246
8246
|
* @memberof LicenseApi
|
|
8247
8247
|
*/
|
|
8248
|
-
activateLicense(activateLicenseRequest: ActivateLicenseRequest, options?: RawAxiosRequestConfig): Promise<
|
|
8248
|
+
activateLicense(activateLicenseRequest: ActivateLicenseRequest, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<License, any>>;
|
|
8249
8249
|
/**
|
|
8250
8250
|
* Deactivates active license.
|
|
8251
8251
|
* @summary Deactivate license
|
|
@@ -8253,7 +8253,7 @@ declare class LicenseApi extends BaseAPI {
|
|
|
8253
8253
|
* @throws {RequiredError}
|
|
8254
8254
|
* @memberof LicenseApi
|
|
8255
8255
|
*/
|
|
8256
|
-
deactivateLicense(options?: RawAxiosRequestConfig): Promise<
|
|
8256
|
+
deactivateLicense(options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<void, any>>;
|
|
8257
8257
|
/**
|
|
8258
8258
|
* Get information on the license used with the Wandelbots NOVA instance, e.g., licensed product, expiration date, license status.
|
|
8259
8259
|
* @summary Get license
|
|
@@ -8261,7 +8261,7 @@ declare class LicenseApi extends BaseAPI {
|
|
|
8261
8261
|
* @throws {RequiredError}
|
|
8262
8262
|
* @memberof LicenseApi
|
|
8263
8263
|
*/
|
|
8264
|
-
getLicense(options?: RawAxiosRequestConfig): Promise<
|
|
8264
|
+
getLicense(options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<License, any>>;
|
|
8265
8265
|
/**
|
|
8266
8266
|
* 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.
|
|
8267
8267
|
* @summary Get license status
|
|
@@ -8269,7 +8269,7 @@ declare class LicenseApi extends BaseAPI {
|
|
|
8269
8269
|
* @throws {RequiredError}
|
|
8270
8270
|
* @memberof LicenseApi
|
|
8271
8271
|
*/
|
|
8272
|
-
getLicenseStatus(options?: RawAxiosRequestConfig): Promise<
|
|
8272
|
+
getLicenseStatus(options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<LicenseStatus, any>>;
|
|
8273
8273
|
}
|
|
8274
8274
|
/**
|
|
8275
8275
|
* MotionGroupApi - axios parameter creator
|
|
@@ -8406,7 +8406,7 @@ declare class MotionGroupApi extends BaseAPI {
|
|
|
8406
8406
|
* @throws {RequiredError}
|
|
8407
8407
|
* @memberof MotionGroupApi
|
|
8408
8408
|
*/
|
|
8409
|
-
getCurrentMotionGroupState(cell: string, controller: string, motionGroup: string, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<
|
|
8409
|
+
getCurrentMotionGroupState(cell: string, controller: string, motionGroup: string, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<MotionGroupState, any>>;
|
|
8410
8410
|
/**
|
|
8411
8411
|
* 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.
|
|
8412
8412
|
* @summary Description
|
|
@@ -8417,7 +8417,7 @@ declare class MotionGroupApi extends BaseAPI {
|
|
|
8417
8417
|
* @throws {RequiredError}
|
|
8418
8418
|
* @memberof MotionGroupApi
|
|
8419
8419
|
*/
|
|
8420
|
-
getMotionGroupDescription(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
8420
|
+
getMotionGroupDescription(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<MotionGroupDescription, any>>;
|
|
8421
8421
|
/**
|
|
8422
8422
|
* <!-- theme: success --> > Websocket endpoint Receive updates of the motion group state. The stream will be closed from the server if the controller is disconnected.
|
|
8423
8423
|
* @summary Stream State
|
|
@@ -8430,7 +8430,7 @@ declare class MotionGroupApi extends BaseAPI {
|
|
|
8430
8430
|
* @throws {RequiredError}
|
|
8431
8431
|
* @memberof MotionGroupApi
|
|
8432
8432
|
*/
|
|
8433
|
-
streamMotionGroupState(cell: string, controller: string, motionGroup: string, responseRate?: number, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<
|
|
8433
|
+
streamMotionGroupState(cell: string, controller: string, motionGroup: string, responseRate?: number, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<MotionGroupState, any>>;
|
|
8434
8434
|
}
|
|
8435
8435
|
/**
|
|
8436
8436
|
* MotionGroupModelsApi - axios parameter creator
|
|
@@ -8514,7 +8514,7 @@ declare class MotionGroupModelsApi extends BaseAPI {
|
|
|
8514
8514
|
* @throws {RequiredError}
|
|
8515
8515
|
* @memberof MotionGroupModelsApi
|
|
8516
8516
|
*/
|
|
8517
|
-
getMotionGroupCollisionModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<
|
|
8517
|
+
getMotionGroupCollisionModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<{
|
|
8518
8518
|
[key: string]: Collider;
|
|
8519
8519
|
}[], any>>;
|
|
8520
8520
|
/**
|
|
@@ -8524,7 +8524,7 @@ declare class MotionGroupModelsApi extends BaseAPI {
|
|
|
8524
8524
|
* @throws {RequiredError}
|
|
8525
8525
|
* @memberof MotionGroupModelsApi
|
|
8526
8526
|
*/
|
|
8527
|
-
getMotionGroupModels(options?: RawAxiosRequestConfig): Promise<
|
|
8527
|
+
getMotionGroupModels(options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<string[], any>>;
|
|
8528
8528
|
}
|
|
8529
8529
|
/**
|
|
8530
8530
|
* ProgramApi - axios parameter creator
|
|
@@ -8668,7 +8668,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
8668
8668
|
* @throws {RequiredError}
|
|
8669
8669
|
* @memberof ProgramApi
|
|
8670
8670
|
*/
|
|
8671
|
-
getProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<
|
|
8671
|
+
getProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<Program, any>>;
|
|
8672
8672
|
/**
|
|
8673
8673
|
* List details of all existing programs.
|
|
8674
8674
|
* @summary List programs
|
|
@@ -8677,7 +8677,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
8677
8677
|
* @throws {RequiredError}
|
|
8678
8678
|
* @memberof ProgramApi
|
|
8679
8679
|
*/
|
|
8680
|
-
listPrograms(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
8680
|
+
listPrograms(cell: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<Program[], any>>;
|
|
8681
8681
|
/**
|
|
8682
8682
|
* This endpoint starts a new program execution. The program will be executed asynchronously.
|
|
8683
8683
|
* @summary Start the program
|
|
@@ -8688,7 +8688,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
8688
8688
|
* @throws {RequiredError}
|
|
8689
8689
|
* @memberof ProgramApi
|
|
8690
8690
|
*/
|
|
8691
|
-
startProgram(cell: string, program: string, programStartRequest: ProgramStartRequest, options?: RawAxiosRequestConfig): Promise<
|
|
8691
|
+
startProgram(cell: string, program: string, programStartRequest: ProgramStartRequest, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<ProgramRun, any>>;
|
|
8692
8692
|
/**
|
|
8693
8693
|
* Stop a specific program run.
|
|
8694
8694
|
* @summary Stop program run
|
|
@@ -8698,7 +8698,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
8698
8698
|
* @throws {RequiredError}
|
|
8699
8699
|
* @memberof ProgramApi
|
|
8700
8700
|
*/
|
|
8701
|
-
stopProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<
|
|
8701
|
+
stopProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<void, any>>;
|
|
8702
8702
|
}
|
|
8703
8703
|
/**
|
|
8704
8704
|
* StoreCollisionComponentsApi - axios parameter creator
|
|
@@ -9178,7 +9178,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
9178
9178
|
* @throws {RequiredError}
|
|
9179
9179
|
* @memberof StoreCollisionComponentsApi
|
|
9180
9180
|
*/
|
|
9181
|
-
deleteStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<
|
|
9181
|
+
deleteStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<void, any>>;
|
|
9182
9182
|
/**
|
|
9183
9183
|
* Deletes the stored link chain. <!-- theme: danger --> > This will delete persistently stored data.
|
|
9184
9184
|
* @summary Delete Link Chain
|
|
@@ -9188,7 +9188,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
9188
9188
|
* @throws {RequiredError}
|
|
9189
9189
|
* @memberof StoreCollisionComponentsApi
|
|
9190
9190
|
*/
|
|
9191
|
-
deleteStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<
|
|
9191
|
+
deleteStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<void, any>>;
|
|
9192
9192
|
/**
|
|
9193
9193
|
* Deletes the stored tool. <!-- theme: danger --> > This will delete persistently stored data.
|
|
9194
9194
|
* @summary Delete Tool
|
|
@@ -9198,7 +9198,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
9198
9198
|
* @throws {RequiredError}
|
|
9199
9199
|
* @memberof StoreCollisionComponentsApi
|
|
9200
9200
|
*/
|
|
9201
|
-
deleteStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<
|
|
9201
|
+
deleteStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<void, any>>;
|
|
9202
9202
|
/**
|
|
9203
9203
|
* Returns the collider.
|
|
9204
9204
|
* @summary Get Collider
|
|
@@ -9208,7 +9208,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
9208
9208
|
* @throws {RequiredError}
|
|
9209
9209
|
* @memberof StoreCollisionComponentsApi
|
|
9210
9210
|
*/
|
|
9211
|
-
getStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<
|
|
9211
|
+
getStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<Collider, any>>;
|
|
9212
9212
|
/**
|
|
9213
9213
|
* Returns the collision link chain.
|
|
9214
9214
|
* @summary Get Link Chain
|
|
@@ -9218,7 +9218,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
9218
9218
|
* @throws {RequiredError}
|
|
9219
9219
|
* @memberof StoreCollisionComponentsApi
|
|
9220
9220
|
*/
|
|
9221
|
-
getStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<
|
|
9221
|
+
getStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<{
|
|
9222
9222
|
[key: string]: Collider;
|
|
9223
9223
|
}[], any>>;
|
|
9224
9224
|
/**
|
|
@@ -9230,7 +9230,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
9230
9230
|
* @throws {RequiredError}
|
|
9231
9231
|
* @memberof StoreCollisionComponentsApi
|
|
9232
9232
|
*/
|
|
9233
|
-
getStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<
|
|
9233
|
+
getStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<{
|
|
9234
9234
|
[key: string]: Collider;
|
|
9235
9235
|
}, any>>;
|
|
9236
9236
|
/**
|
|
@@ -9241,7 +9241,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
9241
9241
|
* @throws {RequiredError}
|
|
9242
9242
|
* @memberof StoreCollisionComponentsApi
|
|
9243
9243
|
*/
|
|
9244
|
-
listCollisionLinkChains(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
9244
|
+
listCollisionLinkChains(cell: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<{
|
|
9245
9245
|
[key: string]: {
|
|
9246
9246
|
[key: string]: Collider;
|
|
9247
9247
|
}[];
|
|
@@ -9254,7 +9254,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
9254
9254
|
* @throws {RequiredError}
|
|
9255
9255
|
* @memberof StoreCollisionComponentsApi
|
|
9256
9256
|
*/
|
|
9257
|
-
listCollisionLinkChainsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
9257
|
+
listCollisionLinkChainsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<string[], any>>;
|
|
9258
9258
|
/**
|
|
9259
9259
|
* Returns all stored colliders.
|
|
9260
9260
|
* @summary List Colliders
|
|
@@ -9263,7 +9263,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
9263
9263
|
* @throws {RequiredError}
|
|
9264
9264
|
* @memberof StoreCollisionComponentsApi
|
|
9265
9265
|
*/
|
|
9266
|
-
listStoredColliders(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
9266
|
+
listStoredColliders(cell: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<{
|
|
9267
9267
|
[key: string]: Collider;
|
|
9268
9268
|
}, any>>;
|
|
9269
9269
|
/**
|
|
@@ -9274,7 +9274,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
9274
9274
|
* @throws {RequiredError}
|
|
9275
9275
|
* @memberof StoreCollisionComponentsApi
|
|
9276
9276
|
*/
|
|
9277
|
-
listStoredCollidersKeys(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
9277
|
+
listStoredCollidersKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<string[], any>>;
|
|
9278
9278
|
/**
|
|
9279
9279
|
* Returns the list of stored tools.
|
|
9280
9280
|
* @summary List Tools
|
|
@@ -9283,7 +9283,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
9283
9283
|
* @throws {RequiredError}
|
|
9284
9284
|
* @memberof StoreCollisionComponentsApi
|
|
9285
9285
|
*/
|
|
9286
|
-
listStoredCollisionTools(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
9286
|
+
listStoredCollisionTools(cell: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<{
|
|
9287
9287
|
[key: string]: {
|
|
9288
9288
|
[key: string]: Collider;
|
|
9289
9289
|
};
|
|
@@ -9296,7 +9296,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
9296
9296
|
* @throws {RequiredError}
|
|
9297
9297
|
* @memberof StoreCollisionComponentsApi
|
|
9298
9298
|
*/
|
|
9299
|
-
listStoredCollisionToolsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
9299
|
+
listStoredCollisionToolsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<string[], any>>;
|
|
9300
9300
|
/**
|
|
9301
9301
|
* Stores collider. - If the collider does not exist, it will be created. - If the collider exists, it will be updated.
|
|
9302
9302
|
* @summary Store Collider
|
|
@@ -9307,7 +9307,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
9307
9307
|
* @throws {RequiredError}
|
|
9308
9308
|
* @memberof StoreCollisionComponentsApi
|
|
9309
9309
|
*/
|
|
9310
|
-
storeCollider(cell: string, collider: string, collider2: Collider, options?: RawAxiosRequestConfig): Promise<
|
|
9310
|
+
storeCollider(cell: string, collider: string, collider2: Collider, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<Collider, any>>;
|
|
9311
9311
|
/**
|
|
9312
9312
|
* Stores link chain. - If the link chain does not exist, it will be created. - If the link chain exists, it will be updated.
|
|
9313
9313
|
* @summary Store Link Chain
|
|
@@ -9320,7 +9320,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
9320
9320
|
*/
|
|
9321
9321
|
storeCollisionLinkChain(cell: string, linkChain: string, collider: Array<{
|
|
9322
9322
|
[key: string]: Collider;
|
|
9323
|
-
}>, options?: RawAxiosRequestConfig): Promise<
|
|
9323
|
+
}>, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<{
|
|
9324
9324
|
[key: string]: Collider;
|
|
9325
9325
|
}[], any>>;
|
|
9326
9326
|
/**
|
|
@@ -9335,7 +9335,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
9335
9335
|
*/
|
|
9336
9336
|
storeCollisionTool(cell: string, tool: string, requestBody: {
|
|
9337
9337
|
[key: string]: Collider;
|
|
9338
|
-
}, options?: RawAxiosRequestConfig): Promise<
|
|
9338
|
+
}, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<{
|
|
9339
9339
|
[key: string]: Collider;
|
|
9340
9340
|
}, any>>;
|
|
9341
9341
|
}
|
|
@@ -9509,7 +9509,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
|
|
|
9509
9509
|
* @throws {RequiredError}
|
|
9510
9510
|
* @memberof StoreCollisionSetupsApi
|
|
9511
9511
|
*/
|
|
9512
|
-
deleteStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<
|
|
9512
|
+
deleteStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<void, any>>;
|
|
9513
9513
|
/**
|
|
9514
9514
|
* Returns the stored collision setup.
|
|
9515
9515
|
* @summary Get Collision Setup
|
|
@@ -9519,7 +9519,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
|
|
|
9519
9519
|
* @throws {RequiredError}
|
|
9520
9520
|
* @memberof StoreCollisionSetupsApi
|
|
9521
9521
|
*/
|
|
9522
|
-
getStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<
|
|
9522
|
+
getStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<CollisionSetup, any>>;
|
|
9523
9523
|
/**
|
|
9524
9524
|
* Returns a list of stored collision setups.
|
|
9525
9525
|
* @summary List Collision Setups
|
|
@@ -9528,7 +9528,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
|
|
|
9528
9528
|
* @throws {RequiredError}
|
|
9529
9529
|
* @memberof StoreCollisionSetupsApi
|
|
9530
9530
|
*/
|
|
9531
|
-
listStoredCollisionSetups(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
9531
|
+
listStoredCollisionSetups(cell: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<{
|
|
9532
9532
|
[key: string]: CollisionSetup;
|
|
9533
9533
|
}, any>>;
|
|
9534
9534
|
/**
|
|
@@ -9539,7 +9539,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
|
|
|
9539
9539
|
* @throws {RequiredError}
|
|
9540
9540
|
* @memberof StoreCollisionSetupsApi
|
|
9541
9541
|
*/
|
|
9542
|
-
listStoredCollisionSetupsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
9542
|
+
listStoredCollisionSetupsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<string[], any>>;
|
|
9543
9543
|
/**
|
|
9544
9544
|
* Stores collision setup. - If the collision setup does not exist, it will be created. - If the collision setup exists, it will be updated.
|
|
9545
9545
|
* @summary Store Collision Setup
|
|
@@ -9550,7 +9550,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
|
|
|
9550
9550
|
* @throws {RequiredError}
|
|
9551
9551
|
* @memberof StoreCollisionSetupsApi
|
|
9552
9552
|
*/
|
|
9553
|
-
storeCollisionSetup(cell: string, setup: string, collisionSetup: CollisionSetup, options?: RawAxiosRequestConfig): Promise<
|
|
9553
|
+
storeCollisionSetup(cell: string, setup: string, collisionSetup: CollisionSetup, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<CollisionSetup, any>>;
|
|
9554
9554
|
}
|
|
9555
9555
|
/**
|
|
9556
9556
|
* StoreObjectApi - axios parameter creator
|
|
@@ -9753,7 +9753,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
9753
9753
|
* @throws {RequiredError}
|
|
9754
9754
|
* @memberof StoreObjectApi
|
|
9755
9755
|
*/
|
|
9756
|
-
clearAllObjects(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
9756
|
+
clearAllObjects(cell: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<void, any>>;
|
|
9757
9757
|
/**
|
|
9758
9758
|
* Delete an object <!-- theme: danger --> > This will delete persistently stored data.
|
|
9759
9759
|
* @summary Delete Object
|
|
@@ -9763,7 +9763,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
9763
9763
|
* @throws {RequiredError}
|
|
9764
9764
|
* @memberof StoreObjectApi
|
|
9765
9765
|
*/
|
|
9766
|
-
deleteObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<
|
|
9766
|
+
deleteObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<void, any>>;
|
|
9767
9767
|
/**
|
|
9768
9768
|
* Returns content and metadata of a stored object.
|
|
9769
9769
|
* @summary Get Object
|
|
@@ -9773,7 +9773,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
9773
9773
|
* @throws {RequiredError}
|
|
9774
9774
|
* @memberof StoreObjectApi
|
|
9775
9775
|
*/
|
|
9776
|
-
getObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<
|
|
9776
|
+
getObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<File, any>>;
|
|
9777
9777
|
/**
|
|
9778
9778
|
* Returns metadata. Object content is not returned.
|
|
9779
9779
|
* @summary Get Object Metadata
|
|
@@ -9783,7 +9783,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
9783
9783
|
* @throws {RequiredError}
|
|
9784
9784
|
* @memberof StoreObjectApi
|
|
9785
9785
|
*/
|
|
9786
|
-
getObjectMetadata(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<
|
|
9786
|
+
getObjectMetadata(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<void, any>>;
|
|
9787
9787
|
/**
|
|
9788
9788
|
* List the keys for all objects.
|
|
9789
9789
|
* @summary List all Object Keys
|
|
@@ -9792,7 +9792,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
9792
9792
|
* @throws {RequiredError}
|
|
9793
9793
|
* @memberof StoreObjectApi
|
|
9794
9794
|
*/
|
|
9795
|
-
listAllObjectKeys(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
9795
|
+
listAllObjectKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<string[], any>>;
|
|
9796
9796
|
/**
|
|
9797
9797
|
* 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.
|
|
9798
9798
|
* @summary Store Object
|
|
@@ -9806,7 +9806,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
9806
9806
|
*/
|
|
9807
9807
|
storeObject(cell: string, key: string, xMetadata?: {
|
|
9808
9808
|
[key: string]: string;
|
|
9809
|
-
}, anyValue?: any, options?: RawAxiosRequestConfig): Promise<
|
|
9809
|
+
}, anyValue?: any, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<void, any>>;
|
|
9810
9810
|
}
|
|
9811
9811
|
/**
|
|
9812
9812
|
* SystemApi - axios parameter creator
|
|
@@ -10060,7 +10060,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
10060
10060
|
*/
|
|
10061
10061
|
backupConfiguration(resources?: Array<string>, metadata?: {
|
|
10062
10062
|
[key: string]: string;
|
|
10063
|
-
}, options?: RawAxiosRequestConfig): Promise<
|
|
10063
|
+
}, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<File, any>>;
|
|
10064
10064
|
/**
|
|
10065
10065
|
* Check if a more recent Wandelbots NOVA Version is available.
|
|
10066
10066
|
* @summary Check update
|
|
@@ -10069,7 +10069,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
10069
10069
|
* @throws {RequiredError}
|
|
10070
10070
|
* @memberof SystemApi
|
|
10071
10071
|
*/
|
|
10072
|
-
checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<
|
|
10072
|
+
checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<string, any>>;
|
|
10073
10073
|
/**
|
|
10074
10074
|
* 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.
|
|
10075
10075
|
* @summary Retrieve Backup Status
|
|
@@ -10078,7 +10078,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
10078
10078
|
* @throws {RequiredError}
|
|
10079
10079
|
* @memberof SystemApi
|
|
10080
10080
|
*/
|
|
10081
|
-
getConfigurationBackupStatus(operationId: string, options?: RawAxiosRequestConfig): Promise<
|
|
10081
|
+
getConfigurationBackupStatus(operationId: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<ConfigurationArchiveStatus, any>>;
|
|
10082
10082
|
/**
|
|
10083
10083
|
* 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.
|
|
10084
10084
|
* @summary Download Diagnosis Package
|
|
@@ -10086,7 +10086,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
10086
10086
|
* @throws {RequiredError}
|
|
10087
10087
|
* @memberof SystemApi
|
|
10088
10088
|
*/
|
|
10089
|
-
getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<
|
|
10089
|
+
getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<File, any>>;
|
|
10090
10090
|
/**
|
|
10091
10091
|
* Get the status of all system services.
|
|
10092
10092
|
* @summary Wandelbots NOVA status
|
|
@@ -10094,7 +10094,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
10094
10094
|
* @throws {RequiredError}
|
|
10095
10095
|
* @memberof SystemApi
|
|
10096
10096
|
*/
|
|
10097
|
-
getSystemStatus(options?: RawAxiosRequestConfig): Promise<
|
|
10097
|
+
getSystemStatus(options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<ServiceStatus[], any>>;
|
|
10098
10098
|
/**
|
|
10099
10099
|
* Get the current Wandelbots NOVA version.
|
|
10100
10100
|
* @summary Wandelbots NOVA Version
|
|
@@ -10102,7 +10102,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
10102
10102
|
* @throws {RequiredError}
|
|
10103
10103
|
* @memberof SystemApi
|
|
10104
10104
|
*/
|
|
10105
|
-
getSystemVersion(options?: RawAxiosRequestConfig): Promise<
|
|
10105
|
+
getSystemVersion(options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<string, any>>;
|
|
10106
10106
|
/**
|
|
10107
10107
|
* Retrieves a list of all available configuration resources for backup purposes.
|
|
10108
10108
|
* @summary List Configuration Resources
|
|
@@ -10110,7 +10110,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
10110
10110
|
* @throws {RequiredError}
|
|
10111
10111
|
* @memberof SystemApi
|
|
10112
10112
|
*/
|
|
10113
|
-
listConfigurationResources(options?: RawAxiosRequestConfig): Promise<
|
|
10113
|
+
listConfigurationResources(options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<ConfigurationResource[], any>>;
|
|
10114
10114
|
/**
|
|
10115
10115
|
* Restores a previously backed up configuration.
|
|
10116
10116
|
* @summary Restore Configuration Backup
|
|
@@ -10120,7 +10120,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
10120
10120
|
* @throws {RequiredError}
|
|
10121
10121
|
* @memberof SystemApi
|
|
10122
10122
|
*/
|
|
10123
|
-
restoreConfiguration(resources: Array<string>, body: File, options?: RawAxiosRequestConfig): Promise<
|
|
10123
|
+
restoreConfiguration(resources: Array<string>, body: File, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<void, any>>;
|
|
10124
10124
|
/**
|
|
10125
10125
|
* 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.
|
|
10126
10126
|
* @summary Update Wandelbots NOVA version
|
|
@@ -10129,7 +10129,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
10129
10129
|
* @throws {RequiredError}
|
|
10130
10130
|
* @memberof SystemApi
|
|
10131
10131
|
*/
|
|
10132
|
-
updateNovaVersion(updateNovaVersionRequest: UpdateNovaVersionRequest, options?: RawAxiosRequestConfig): Promise<
|
|
10132
|
+
updateNovaVersion(updateNovaVersionRequest: UpdateNovaVersionRequest, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<void, any>>;
|
|
10133
10133
|
}
|
|
10134
10134
|
/**
|
|
10135
10135
|
* TrajectoryCachingApi - axios parameter creator
|
|
@@ -10310,7 +10310,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
|
|
|
10310
10310
|
* @throws {RequiredError}
|
|
10311
10311
|
* @memberof TrajectoryCachingApi
|
|
10312
10312
|
*/
|
|
10313
|
-
addTrajectory(cell: string, controller: string, addTrajectoryRequest: AddTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<
|
|
10313
|
+
addTrajectory(cell: string, controller: string, addTrajectoryRequest: AddTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<AddTrajectoryResponse, any>>;
|
|
10314
10314
|
/**
|
|
10315
10315
|
* Clear the trajectory cache.
|
|
10316
10316
|
* @summary Clear Trajectories
|
|
@@ -10320,7 +10320,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
|
|
|
10320
10320
|
* @throws {RequiredError}
|
|
10321
10321
|
* @memberof TrajectoryCachingApi
|
|
10322
10322
|
*/
|
|
10323
|
-
clearTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
10323
|
+
clearTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<void, any>>;
|
|
10324
10324
|
/**
|
|
10325
10325
|
* 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.
|
|
10326
10326
|
* @summary Delete Trajectory
|
|
@@ -10331,7 +10331,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
|
|
|
10331
10331
|
* @throws {RequiredError}
|
|
10332
10332
|
* @memberof TrajectoryCachingApi
|
|
10333
10333
|
*/
|
|
10334
|
-
deleteTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<
|
|
10334
|
+
deleteTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<void, any>>;
|
|
10335
10335
|
/**
|
|
10336
10336
|
* Get a previously created trajectory from cache. Use [listTrajectories](listTrajectories) to list all cached trajectories.
|
|
10337
10337
|
* @summary Get Trajectory
|
|
@@ -10342,7 +10342,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
|
|
|
10342
10342
|
* @throws {RequiredError}
|
|
10343
10343
|
* @memberof TrajectoryCachingApi
|
|
10344
10344
|
*/
|
|
10345
|
-
getTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<
|
|
10345
|
+
getTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<GetTrajectoryResponse, any>>;
|
|
10346
10346
|
/**
|
|
10347
10347
|
* 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.
|
|
10348
10348
|
* @summary List Trajectories
|
|
@@ -10352,7 +10352,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
|
|
|
10352
10352
|
* @throws {RequiredError}
|
|
10353
10353
|
* @memberof TrajectoryCachingApi
|
|
10354
10354
|
*/
|
|
10355
|
-
listTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
10355
|
+
listTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<ListTrajectoriesResponse, any>>;
|
|
10356
10356
|
}
|
|
10357
10357
|
/**
|
|
10358
10358
|
* TrajectoryExecutionApi - axios parameter creator
|
|
@@ -10419,7 +10419,7 @@ declare class TrajectoryExecutionApi extends BaseAPI {
|
|
|
10419
10419
|
* @throws {RequiredError}
|
|
10420
10420
|
* @memberof TrajectoryExecutionApi
|
|
10421
10421
|
*/
|
|
10422
|
-
executeTrajectory(cell: string, controller: string, executeTrajectoryRequest: ExecuteTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<
|
|
10422
|
+
executeTrajectory(cell: string, controller: string, executeTrajectoryRequest: ExecuteTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<ExecuteTrajectoryResponse, any>>;
|
|
10423
10423
|
}
|
|
10424
10424
|
/**
|
|
10425
10425
|
* TrajectoryPlanningApi - axios parameter creator
|
|
@@ -10509,7 +10509,7 @@ declare class TrajectoryPlanningApi extends BaseAPI {
|
|
|
10509
10509
|
* @throws {RequiredError}
|
|
10510
10510
|
* @memberof TrajectoryPlanningApi
|
|
10511
10511
|
*/
|
|
10512
|
-
planCollisionFree(cell: string, planCollisionFreeRequest: PlanCollisionFreeRequest, options?: RawAxiosRequestConfig): Promise<
|
|
10512
|
+
planCollisionFree(cell: string, planCollisionFreeRequest: PlanCollisionFreeRequest, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<PlanCollisionFreeResponse, any>>;
|
|
10513
10513
|
/**
|
|
10514
10514
|
* 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.
|
|
10515
10515
|
* @summary Plan Trajectory
|
|
@@ -10519,7 +10519,7 @@ declare class TrajectoryPlanningApi extends BaseAPI {
|
|
|
10519
10519
|
* @throws {RequiredError}
|
|
10520
10520
|
* @memberof TrajectoryPlanningApi
|
|
10521
10521
|
*/
|
|
10522
|
-
planTrajectory(cell: string, planTrajectoryRequest: PlanTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<
|
|
10522
|
+
planTrajectory(cell: string, planTrajectoryRequest: PlanTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<PlanTrajectoryResponse, any>>;
|
|
10523
10523
|
}
|
|
10524
10524
|
/**
|
|
10525
10525
|
* VirtualControllerApi - axios parameter creator
|
|
@@ -11016,7 +11016,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
11016
11016
|
* @throws {RequiredError}
|
|
11017
11017
|
* @memberof VirtualControllerApi
|
|
11018
11018
|
*/
|
|
11019
|
-
addVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, coordinateSystemData: CoordinateSystemData, options?: RawAxiosRequestConfig): Promise<
|
|
11019
|
+
addVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, coordinateSystemData: CoordinateSystemData, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<void, any>>;
|
|
11020
11020
|
/**
|
|
11021
11021
|
* 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.
|
|
11022
11022
|
* @summary Add TCP
|
|
@@ -11029,7 +11029,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
11029
11029
|
* @throws {RequiredError}
|
|
11030
11030
|
* @memberof VirtualControllerApi
|
|
11031
11031
|
*/
|
|
11032
|
-
addVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, robotTcpData: RobotTcpData, options?: RawAxiosRequestConfig): Promise<
|
|
11032
|
+
addVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, robotTcpData: RobotTcpData, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<void, any>>;
|
|
11033
11033
|
/**
|
|
11034
11034
|
* 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.
|
|
11035
11035
|
* @summary Delete Coordinate System
|
|
@@ -11041,7 +11041,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
11041
11041
|
* @throws {RequiredError}
|
|
11042
11042
|
* @memberof VirtualControllerApi
|
|
11043
11043
|
*/
|
|
11044
|
-
deleteVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<
|
|
11044
|
+
deleteVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<void, any>>;
|
|
11045
11045
|
/**
|
|
11046
11046
|
* 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.
|
|
11047
11047
|
* @summary Remove TCP
|
|
@@ -11053,7 +11053,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
11053
11053
|
* @throws {RequiredError}
|
|
11054
11054
|
* @memberof VirtualControllerApi
|
|
11055
11055
|
*/
|
|
11056
|
-
deleteVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): Promise<
|
|
11056
|
+
deleteVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<void, any>>;
|
|
11057
11057
|
/**
|
|
11058
11058
|
* 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.
|
|
11059
11059
|
* @summary Get Emergency Stop State
|
|
@@ -11063,7 +11063,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
11063
11063
|
* @throws {RequiredError}
|
|
11064
11064
|
* @memberof VirtualControllerApi
|
|
11065
11065
|
*/
|
|
11066
|
-
getEmergencyStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
11066
|
+
getEmergencyStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<Flag, any>>;
|
|
11067
11067
|
/**
|
|
11068
11068
|
* Get the current motion group state which provides values for the joints\' position, velocity and acceleration.
|
|
11069
11069
|
* @summary Get Motion Group State
|
|
@@ -11074,7 +11074,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
11074
11074
|
* @throws {RequiredError}
|
|
11075
11075
|
* @memberof VirtualControllerApi
|
|
11076
11076
|
*/
|
|
11077
|
-
getMotionGroupState(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
11077
|
+
getMotionGroupState(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<MotionGroupJoints, any>>;
|
|
11078
11078
|
/**
|
|
11079
11079
|
* Gets information on the motion group.
|
|
11080
11080
|
* @summary Motion Group Description
|
|
@@ -11084,7 +11084,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
11084
11084
|
* @throws {RequiredError}
|
|
11085
11085
|
* @memberof VirtualControllerApi
|
|
11086
11086
|
*/
|
|
11087
|
-
getMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
11087
|
+
getMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<MotionGroupInfo[], any>>;
|
|
11088
11088
|
/**
|
|
11089
11089
|
* 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.
|
|
11090
11090
|
* @summary Get Operation Mode
|
|
@@ -11094,7 +11094,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
11094
11094
|
* @throws {RequiredError}
|
|
11095
11095
|
* @memberof VirtualControllerApi
|
|
11096
11096
|
*/
|
|
11097
|
-
getOperationMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
11097
|
+
getOperationMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<OpMode, any>>;
|
|
11098
11098
|
/**
|
|
11099
11099
|
* Gets motion group mounting. The motion group is based on the origin of the returned coordinate system.
|
|
11100
11100
|
* @summary Get Mounting
|
|
@@ -11105,7 +11105,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
11105
11105
|
* @throws {RequiredError}
|
|
11106
11106
|
* @memberof VirtualControllerApi
|
|
11107
11107
|
*/
|
|
11108
|
-
getVirtualControllerMounting(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
11108
|
+
getVirtualControllerMounting(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<CoordinateSystem, any>>;
|
|
11109
11109
|
/**
|
|
11110
11110
|
* Lists all coordinate systems on the robot controller.
|
|
11111
11111
|
* @summary List Coordinate Systems
|
|
@@ -11115,7 +11115,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
11115
11115
|
* @throws {RequiredError}
|
|
11116
11116
|
* @memberof VirtualControllerApi
|
|
11117
11117
|
*/
|
|
11118
|
-
listVirtualControllerCoordinateSystems(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
11118
|
+
listVirtualControllerCoordinateSystems(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<CoordinateSystem[], any>>;
|
|
11119
11119
|
/**
|
|
11120
11120
|
* Lists TCPs of the motion group. An empty TCP list is valid, e.g., for external axes.
|
|
11121
11121
|
* @summary List TCPs
|
|
@@ -11126,7 +11126,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
11126
11126
|
* @throws {RequiredError}
|
|
11127
11127
|
* @memberof VirtualControllerApi
|
|
11128
11128
|
*/
|
|
11129
|
-
listVirtualControllerTcps(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
11129
|
+
listVirtualControllerTcps(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<RobotTcp[], any>>;
|
|
11130
11130
|
/**
|
|
11131
11131
|
* 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.
|
|
11132
11132
|
* @summary Push or Release Emergency Stop
|
|
@@ -11137,7 +11137,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
11137
11137
|
* @throws {RequiredError}
|
|
11138
11138
|
* @memberof VirtualControllerApi
|
|
11139
11139
|
*/
|
|
11140
|
-
setEmergencyStop(cell: string, controller: string, active?: boolean, options?: RawAxiosRequestConfig): Promise<
|
|
11140
|
+
setEmergencyStop(cell: string, controller: string, active?: boolean, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<void, any>>;
|
|
11141
11141
|
/**
|
|
11142
11142
|
* 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.
|
|
11143
11143
|
* @summary Set Motion Group State
|
|
@@ -11149,7 +11149,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
11149
11149
|
* @throws {RequiredError}
|
|
11150
11150
|
* @memberof VirtualControllerApi
|
|
11151
11151
|
*/
|
|
11152
|
-
setMotionGroupState(cell: string, controller: string, motionGroup: string, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): Promise<
|
|
11152
|
+
setMotionGroupState(cell: string, controller: string, motionGroup: string, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<void, any>>;
|
|
11153
11153
|
/**
|
|
11154
11154
|
* 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.
|
|
11155
11155
|
* @summary Set Operation Mode
|
|
@@ -11160,7 +11160,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
11160
11160
|
* @throws {RequiredError}
|
|
11161
11161
|
* @memberof VirtualControllerApi
|
|
11162
11162
|
*/
|
|
11163
|
-
setOperationMode(cell: string, controller: string, mode: OperationMode, options?: RawAxiosRequestConfig): Promise<
|
|
11163
|
+
setOperationMode(cell: string, controller: string, mode: OperationMode, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<void, any>>;
|
|
11164
11164
|
/**
|
|
11165
11165
|
* 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.
|
|
11166
11166
|
* @summary Set Mounting
|
|
@@ -11172,7 +11172,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
11172
11172
|
* @throws {RequiredError}
|
|
11173
11173
|
* @memberof VirtualControllerApi
|
|
11174
11174
|
*/
|
|
11175
|
-
setVirtualControllerMounting(cell: string, controller: string, motionGroup: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<
|
|
11175
|
+
setVirtualControllerMounting(cell: string, controller: string, motionGroup: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<CoordinateSystem, any>>;
|
|
11176
11176
|
}
|
|
11177
11177
|
/**
|
|
11178
11178
|
* VirtualControllerBehaviorApi - axios parameter creator
|
|
@@ -11323,7 +11323,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
|
|
|
11323
11323
|
* @throws {RequiredError}
|
|
11324
11324
|
* @memberof VirtualControllerBehaviorApi
|
|
11325
11325
|
*/
|
|
11326
|
-
externalJointsStream(cell: string, controller: string, externalJointStreamRequest: ExternalJointStreamRequest, options?: RawAxiosRequestConfig): Promise<
|
|
11326
|
+
externalJointsStream(cell: string, controller: string, externalJointStreamRequest: ExternalJointStreamRequest, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<ExternalJointStreamDatapoint[], any>>;
|
|
11327
11327
|
/**
|
|
11328
11328
|
* Get the cycle time of controller communication in [ms].
|
|
11329
11329
|
* @summary Get Cycle Time
|
|
@@ -11333,7 +11333,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
|
|
|
11333
11333
|
* @throws {RequiredError}
|
|
11334
11334
|
* @memberof VirtualControllerBehaviorApi
|
|
11335
11335
|
*/
|
|
11336
|
-
getCycleTime(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
11336
|
+
getCycleTime(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<CycleTime, any>>;
|
|
11337
11337
|
/**
|
|
11338
11338
|
* Get the current virtual controller behavior. See [setVirtualControllerBehavior](setVirtualControllerBehavior) and the body for details.
|
|
11339
11339
|
* @summary Get Behavior
|
|
@@ -11343,7 +11343,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
|
|
|
11343
11343
|
* @throws {RequiredError}
|
|
11344
11344
|
* @memberof VirtualControllerBehaviorApi
|
|
11345
11345
|
*/
|
|
11346
|
-
getVirtualControllerBehavior(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
11346
|
+
getVirtualControllerBehavior(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<Behavior, any>>;
|
|
11347
11347
|
/**
|
|
11348
11348
|
* Set virtual controller behavior. See query parameters for details.
|
|
11349
11349
|
* @summary Set Behavior
|
|
@@ -11354,7 +11354,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
|
|
|
11354
11354
|
* @throws {RequiredError}
|
|
11355
11355
|
* @memberof VirtualControllerBehaviorApi
|
|
11356
11356
|
*/
|
|
11357
|
-
setVirtualControllerBehavior(cell: string, controller: string, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<
|
|
11357
|
+
setVirtualControllerBehavior(cell: string, controller: string, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<void, any>>;
|
|
11358
11358
|
}
|
|
11359
11359
|
/**
|
|
11360
11360
|
* VirtualControllerInputsOutputsApi - axios parameter creator
|
|
@@ -11490,7 +11490,7 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
|
|
|
11490
11490
|
* @throws {RequiredError}
|
|
11491
11491
|
* @memberof VirtualControllerInputsOutputsApi
|
|
11492
11492
|
*/
|
|
11493
|
-
listIOs(cell: string, controller: string, ios: Array<string>, options?: RawAxiosRequestConfig): Promise<
|
|
11493
|
+
listIOs(cell: string, controller: string, ios: Array<string>, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<IOValue[], any>>;
|
|
11494
11494
|
/**
|
|
11495
11495
|
* 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.
|
|
11496
11496
|
* @summary List Descriptions
|
|
@@ -11504,7 +11504,7 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
|
|
|
11504
11504
|
* @throws {RequiredError}
|
|
11505
11505
|
* @memberof VirtualControllerInputsOutputsApi
|
|
11506
11506
|
*/
|
|
11507
|
-
listVirtualControllerIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<
|
|
11507
|
+
listVirtualControllerIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<IODescription[], any>>;
|
|
11508
11508
|
/**
|
|
11509
11509
|
* Sets a list of values of a virtual controller inputs/outputs.
|
|
11510
11510
|
* @summary Set Input/Ouput Values
|
|
@@ -11515,7 +11515,7 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
|
|
|
11515
11515
|
* @throws {RequiredError}
|
|
11516
11516
|
* @memberof VirtualControllerInputsOutputsApi
|
|
11517
11517
|
*/
|
|
11518
|
-
setIOValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<
|
|
11518
|
+
setIOValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios175.AxiosResponse<void, any>>;
|
|
11519
11519
|
}
|
|
11520
11520
|
//#endregion
|
|
11521
11521
|
export { AbbController, AbbControllerEgmServer, AbbControllerKindEnum, ActivateLicenseRequest, AddTrajectoryError, AddTrajectoryErrorData, AddTrajectoryRequest, AddTrajectoryResponse, 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, VirtualController, VirtualControllerApi, VirtualControllerApiAxiosParamCreator, VirtualControllerApiFactory, VirtualControllerApiFp, VirtualControllerBehaviorApi, VirtualControllerBehaviorApiAxiosParamCreator, VirtualControllerBehaviorApiFactory, VirtualControllerBehaviorApiFp, VirtualControllerInputsOutputsApi, VirtualControllerInputsOutputsApiAxiosParamCreator, VirtualControllerInputsOutputsApiFactory, VirtualControllerInputsOutputsApiFp, VirtualControllerKindEnum, VirtualControllerTypes, VirtualRobotConfiguration, WaitForIOEventRequest, YaskawaController, YaskawaControllerKindEnum, operationServerMap };
|