@wandelbots/nova-api 25.10.0-dev.51 → 25.10.0-dev.53
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/v1/index.d.ts +178 -178
- package/dist/v2/index.d.ts +131 -131
- package/package.json +1 -1
package/dist/v1/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as axios0 from "axios";
|
|
2
2
|
import { AxiosInstance, AxiosPromise, RawAxiosRequestConfig } from "axios";
|
|
3
3
|
|
|
4
4
|
//#region v1/configuration.d.ts
|
|
@@ -7844,7 +7844,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
7844
7844
|
* @throws {RequiredError}
|
|
7845
7845
|
* @memberof ApplicationApi
|
|
7846
7846
|
*/
|
|
7847
|
-
addApp(cell: string, app: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
7847
|
+
addApp(cell: string, app: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
7848
7848
|
/**
|
|
7849
7849
|
* Delete all GUI applications from the cell.
|
|
7850
7850
|
* @summary Clear Applications
|
|
@@ -7854,7 +7854,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
7854
7854
|
* @throws {RequiredError}
|
|
7855
7855
|
* @memberof ApplicationApi
|
|
7856
7856
|
*/
|
|
7857
|
-
clearApps(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
7857
|
+
clearApps(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
7858
7858
|
/**
|
|
7859
7859
|
* Delete a GUI application from the cell.
|
|
7860
7860
|
* @summary Delete Application
|
|
@@ -7865,7 +7865,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
7865
7865
|
* @throws {RequiredError}
|
|
7866
7866
|
* @memberof ApplicationApi
|
|
7867
7867
|
*/
|
|
7868
|
-
deleteApp(cell: string, app: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
7868
|
+
deleteApp(cell: string, app: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
7869
7869
|
/**
|
|
7870
7870
|
* 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 the \'Update Configuration\' endpoint.
|
|
7871
7871
|
* @summary Configuration
|
|
@@ -7875,7 +7875,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
7875
7875
|
* @throws {RequiredError}
|
|
7876
7876
|
* @memberof ApplicationApi
|
|
7877
7877
|
*/
|
|
7878
|
-
getApp(cell: string, app: string, options?: RawAxiosRequestConfig): Promise<
|
|
7878
|
+
getApp(cell: string, app: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<App, any>>;
|
|
7879
7879
|
/**
|
|
7880
7880
|
* List all GUI applications that have been added to a cell. with the \'Add Application\' endpoint. If the cell does not contain GUI applications, the list is returned empty.
|
|
7881
7881
|
* @summary List Applications
|
|
@@ -7884,7 +7884,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
7884
7884
|
* @throws {RequiredError}
|
|
7885
7885
|
* @memberof ApplicationApi
|
|
7886
7886
|
*/
|
|
7887
|
-
listApps(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
7887
|
+
listApps(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
|
|
7888
7888
|
/**
|
|
7889
7889
|
* Update the configuration of a GUI application in the cell.
|
|
7890
7890
|
* @summary Update Configuration
|
|
@@ -7896,7 +7896,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
7896
7896
|
* @throws {RequiredError}
|
|
7897
7897
|
* @memberof ApplicationApi
|
|
7898
7898
|
*/
|
|
7899
|
-
updateApp(cell: string, app: string, app2: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
7899
|
+
updateApp(cell: string, app: string, app2: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
7900
7900
|
}
|
|
7901
7901
|
/**
|
|
7902
7902
|
* CellApi - axios parameter creator
|
|
@@ -8085,7 +8085,7 @@ declare class CellApi extends BaseAPI {
|
|
|
8085
8085
|
* @throws {RequiredError}
|
|
8086
8086
|
* @memberof CellApi
|
|
8087
8087
|
*/
|
|
8088
|
-
deleteCell(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
8088
|
+
deleteCell(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
8089
8089
|
/**
|
|
8090
8090
|
* 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](docs/wandelbots-nova-api/#create-a-cell) for more information.
|
|
8091
8091
|
* @summary Add Cell
|
|
@@ -8095,7 +8095,7 @@ declare class CellApi extends BaseAPI {
|
|
|
8095
8095
|
* @throws {RequiredError}
|
|
8096
8096
|
* @memberof CellApi
|
|
8097
8097
|
*/
|
|
8098
|
-
deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
8098
|
+
deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
8099
8099
|
/**
|
|
8100
8100
|
* List all cell resources. > **NOTE** > > The output generated by this endpoint can be too large for the site to handle, and may produce an error or incorrect output. > Use `curl` in combination with `> output.json` to capture the output, or use an API client like Postman.
|
|
8101
8101
|
* @summary Configuration
|
|
@@ -8104,7 +8104,7 @@ declare class CellApi extends BaseAPI {
|
|
|
8104
8104
|
* @throws {RequiredError}
|
|
8105
8105
|
* @memberof CellApi
|
|
8106
8106
|
*/
|
|
8107
|
-
getCell(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
8107
|
+
getCell(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Cell, any>>;
|
|
8108
8108
|
/**
|
|
8109
8109
|
* List the status of all cell resources.
|
|
8110
8110
|
* @summary Service Status
|
|
@@ -8113,7 +8113,7 @@ declare class CellApi extends BaseAPI {
|
|
|
8113
8113
|
* @throws {RequiredError}
|
|
8114
8114
|
* @memberof CellApi
|
|
8115
8115
|
*/
|
|
8116
|
-
getCellStatus(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
8116
|
+
getCellStatus(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ServiceStatus[], any>>;
|
|
8117
8117
|
/**
|
|
8118
8118
|
* List all deployed cell names. If no cells are deployed, an empty list is returned.
|
|
8119
8119
|
* @summary List Cells
|
|
@@ -8121,7 +8121,7 @@ declare class CellApi extends BaseAPI {
|
|
|
8121
8121
|
* @throws {RequiredError}
|
|
8122
8122
|
* @memberof CellApi
|
|
8123
8123
|
*/
|
|
8124
|
-
listCells(options?: RawAxiosRequestConfig): Promise<
|
|
8124
|
+
listCells(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
|
|
8125
8125
|
/**
|
|
8126
8126
|
* Update the definition of the entire Cell.
|
|
8127
8127
|
* @summary Update Configuration
|
|
@@ -8132,7 +8132,7 @@ declare class CellApi extends BaseAPI {
|
|
|
8132
8132
|
* @throws {RequiredError}
|
|
8133
8133
|
* @memberof CellApi
|
|
8134
8134
|
*/
|
|
8135
|
-
updateCell(cell: string, cell2: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
8135
|
+
updateCell(cell: string, cell2: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
8136
8136
|
}
|
|
8137
8137
|
/**
|
|
8138
8138
|
* ControllerApi - axios parameter creator
|
|
@@ -8565,7 +8565,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
8565
8565
|
* @throws {RequiredError}
|
|
8566
8566
|
* @memberof ControllerApi
|
|
8567
8567
|
*/
|
|
8568
|
-
addRobotController(cell: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
8568
|
+
addRobotController(cell: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
8569
8569
|
/**
|
|
8570
8570
|
* Delete all robot controllers from the cell. To replace all robot controllers in a cell, use this endpoint in combination with the \'Add Robot Controller\' endpoint. <!-- theme: warning --> > **WARNING** > > Using it in conjunction with the settings app may lead to unpredictable behavior.
|
|
8571
8571
|
* @summary Clear Robot Controllers
|
|
@@ -8575,7 +8575,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
8575
8575
|
* @throws {RequiredError}
|
|
8576
8576
|
* @memberof ControllerApi
|
|
8577
8577
|
*/
|
|
8578
|
-
clearRobotControllers(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
8578
|
+
clearRobotControllers(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
8579
8579
|
/**
|
|
8580
8580
|
* Delete a robot controller from the cell. <!-- theme: warning --> > **WARNING** > > Using it in conjunction with the settings app may lead to unpredictable behavior.
|
|
8581
8581
|
* @summary Delete Robot Controller
|
|
@@ -8586,7 +8586,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
8586
8586
|
* @throws {RequiredError}
|
|
8587
8587
|
* @memberof ControllerApi
|
|
8588
8588
|
*/
|
|
8589
|
-
deleteRobotController(cell: string, controller: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
8589
|
+
deleteRobotController(cell: string, controller: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
8590
8590
|
/**
|
|
8591
8591
|
* Get the current state of a robot controller.
|
|
8592
8592
|
* @summary State of Device
|
|
@@ -8596,7 +8596,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
8596
8596
|
* @throws {RequiredError}
|
|
8597
8597
|
* @memberof ControllerApi
|
|
8598
8598
|
*/
|
|
8599
|
-
getCurrentRobotControllerState(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
8599
|
+
getCurrentRobotControllerState(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotControllerState, any>>;
|
|
8600
8600
|
/**
|
|
8601
8601
|
* Get the current robot system mode of a registered robot controller. The robot system mode indicates if a robot controller can be used. See [setDefaultMode](setDefaultMode) for more information about the different modes. The mode is influenced by the operating mode of the robot controller. The operating mode can be changed via [setDefaultMode](setDefaultMode). Request the current operating mode of the robot controller via [getCurrentRobotControllerState](getCurrentRobotControllerState).
|
|
8602
8602
|
* @summary Current Mode
|
|
@@ -8606,7 +8606,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
8606
8606
|
* @throws {RequiredError}
|
|
8607
8607
|
* @memberof ControllerApi
|
|
8608
8608
|
*/
|
|
8609
|
-
getMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
8609
|
+
getMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<GetModeResponse, any>>;
|
|
8610
8610
|
/**
|
|
8611
8611
|
* Get the configuration for a robot controller.
|
|
8612
8612
|
* @summary Robot Controller Configuration
|
|
@@ -8616,7 +8616,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
8616
8616
|
* @throws {RequiredError}
|
|
8617
8617
|
* @memberof ControllerApi
|
|
8618
8618
|
*/
|
|
8619
|
-
getRobotController(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
8619
|
+
getRobotController(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotController, any>>;
|
|
8620
8620
|
/**
|
|
8621
8621
|
* Lists supported operating modes. Usually cobots support free drive and control, industrial robots only support control.
|
|
8622
8622
|
* @summary Supported Motion Modes
|
|
@@ -8626,7 +8626,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
8626
8626
|
* @throws {RequiredError}
|
|
8627
8627
|
* @memberof ControllerApi
|
|
8628
8628
|
*/
|
|
8629
|
-
getSupportedModes(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
8629
|
+
getSupportedModes(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ControllerCapabilities, any>>;
|
|
8630
8630
|
/**
|
|
8631
8631
|
* 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. > **NOTE** > > The output generated by this endpoint can be too large for the site to handle, and may produce an error or incorrect output. > Use `curl` in combination with `> output.json` to capture the output, or use an API client like Postman.
|
|
8632
8632
|
* @summary Virtual Robot Configuration
|
|
@@ -8636,7 +8636,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
8636
8636
|
* @throws {RequiredError}
|
|
8637
8637
|
* @memberof ControllerApi
|
|
8638
8638
|
*/
|
|
8639
|
-
getVirtualRobotConfiguration(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
8639
|
+
getVirtualRobotConfiguration(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<VirtualRobotConfiguration, any>>;
|
|
8640
8640
|
/**
|
|
8641
8641
|
* List all configured robot controllers.
|
|
8642
8642
|
* @summary List Robot Controllers
|
|
@@ -8645,7 +8645,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
8645
8645
|
* @throws {RequiredError}
|
|
8646
8646
|
* @memberof ControllerApi
|
|
8647
8647
|
*/
|
|
8648
|
-
listControllers(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
8648
|
+
listControllers(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ControllerInstanceList, any>>;
|
|
8649
8649
|
/**
|
|
8650
8650
|
* 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 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** > > 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.
|
|
8651
8651
|
* @summary Set Default Mode
|
|
@@ -8656,7 +8656,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
8656
8656
|
* @throws {RequiredError}
|
|
8657
8657
|
* @memberof ControllerApi
|
|
8658
8658
|
*/
|
|
8659
|
-
setDefaultMode(cell: string, controller: string, mode: SetDefaultModeModeEnum, options?: RawAxiosRequestConfig): Promise<
|
|
8659
|
+
setDefaultMode(cell: string, controller: string, mode: SetDefaultModeModeEnum, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
8660
8660
|
/**
|
|
8661
8661
|
* 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 (e.g by using the (getActivePayload)[getActivePayload] endpoint), > - 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 Collobarative Robots (\"Cobots\"). Use the (getSupportedModes)[getSupportedModes] endpoint to check if the robot controller supports free drive mode.
|
|
8662
8662
|
* @summary Stream Free Drive Mode
|
|
@@ -8667,7 +8667,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
8667
8667
|
* @throws {RequiredError}
|
|
8668
8668
|
* @memberof ControllerApi
|
|
8669
8669
|
*/
|
|
8670
|
-
streamFreeDrive(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<
|
|
8670
|
+
streamFreeDrive(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotControllerState, any>>;
|
|
8671
8671
|
/**
|
|
8672
8672
|
* Receive updates of the current robot system mode of a robot controller via websocket upon robot system mode change. See [setDefaultMode](setDefaultMode) for more information about the different modes.
|
|
8673
8673
|
* @summary Stream Mode Change
|
|
@@ -8677,7 +8677,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
8677
8677
|
* @throws {RequiredError}
|
|
8678
8678
|
* @memberof ControllerApi
|
|
8679
8679
|
*/
|
|
8680
|
-
streamModeChange(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
8680
|
+
streamModeChange(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ModeChangeResponse, any>>;
|
|
8681
8681
|
/**
|
|
8682
8682
|
* Receive updates of the state of a robot controller.
|
|
8683
8683
|
* @summary Stream State of Device
|
|
@@ -8688,7 +8688,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
8688
8688
|
* @throws {RequiredError}
|
|
8689
8689
|
* @memberof ControllerApi
|
|
8690
8690
|
*/
|
|
8691
|
-
streamRobotControllerState(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<
|
|
8691
|
+
streamRobotControllerState(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotControllerState, any>>;
|
|
8692
8692
|
/**
|
|
8693
8693
|
* Update the configuration of a robot controller. Reconfigure certain options of a robot controller, or deploy a specific container image of a robot controller. <!-- theme: warning --> > **WARNING** > > Using it in conjunction with the settings app may lead to unpredictable behavior. 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).
|
|
8694
8694
|
* @summary Update Robot Controller Configuration
|
|
@@ -8700,7 +8700,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
8700
8700
|
* @throws {RequiredError}
|
|
8701
8701
|
* @memberof ControllerApi
|
|
8702
8702
|
*/
|
|
8703
|
-
updateRobotController(cell: string, controller: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
8703
|
+
updateRobotController(cell: string, controller: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
8704
8704
|
}
|
|
8705
8705
|
/**
|
|
8706
8706
|
* @export
|
|
@@ -8907,7 +8907,7 @@ declare class ControllerIOsApi extends BaseAPI {
|
|
|
8907
8907
|
* @throws {RequiredError}
|
|
8908
8908
|
* @memberof ControllerIOsApi
|
|
8909
8909
|
*/
|
|
8910
|
-
listIODescriptions(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<
|
|
8910
|
+
listIODescriptions(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ListIODescriptionsResponse, any>>;
|
|
8911
8911
|
/**
|
|
8912
8912
|
* Retrieves the current values of I/Os. The identifiers of the I/Os must be provided in the request. Request all available I/O identifiers via [listIODescriptions](listIODescriptions).
|
|
8913
8913
|
* @summary Values
|
|
@@ -8918,7 +8918,7 @@ declare class ControllerIOsApi extends BaseAPI {
|
|
|
8918
8918
|
* @throws {RequiredError}
|
|
8919
8919
|
* @memberof ControllerIOsApi
|
|
8920
8920
|
*/
|
|
8921
|
-
listIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<
|
|
8921
|
+
listIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ListIOValuesResponse, any>>;
|
|
8922
8922
|
/**
|
|
8923
8923
|
* Set the values of outputs. All available I/O 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 might take up to 200 milliseconds. > **NOTE** > > Do not call this endpoint while another request is still in progress. The second call will fail.
|
|
8924
8924
|
* @summary Set Values
|
|
@@ -8929,7 +8929,7 @@ declare class ControllerIOsApi extends BaseAPI {
|
|
|
8929
8929
|
* @throws {RequiredError}
|
|
8930
8930
|
* @memberof ControllerIOsApi
|
|
8931
8931
|
*/
|
|
8932
|
-
setOutputValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<
|
|
8932
|
+
setOutputValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
8933
8933
|
/**
|
|
8934
8934
|
* Continuously receive updates of I/O values via websocket. Updates are sent in the update rate of the controller. > **NOTE** > > Do not request too many values simultaneously as the request is then 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. Consider that this might lead to a high amount of data transmitted.
|
|
8935
8935
|
* @summary Stream Values
|
|
@@ -8940,7 +8940,7 @@ declare class ControllerIOsApi extends BaseAPI {
|
|
|
8940
8940
|
* @throws {RequiredError}
|
|
8941
8941
|
* @memberof ControllerIOsApi
|
|
8942
8942
|
*/
|
|
8943
|
-
streamIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<
|
|
8943
|
+
streamIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ListIOValuesResponse, any>>;
|
|
8944
8944
|
/**
|
|
8945
8945
|
* Wait until an I/O 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 I/O is compared with given value. Only set the value that corresponds to the value_type of the I/O, see (listIODescriptions)[listIODescriptions] for more information. Examples: If you want to wait until an analog input (\"AI_1\") is less than 10, you would set io to \"AI_1\" comparison_type to COMPARISON_LESS and only integer_value to 10. If you want to wait until an analog input (\"AI_2\") is greater than 5.0, you would set io to \"AI_2\" comparison_type to COMPARISON_GREATER and only floating_value to 5.0. If you want to wait until a digital input (\"DI_3\") is true, you would set io to \"DI_3\" comparison_type to COMPARISON_EQUAL and only boolean_value to true.
|
|
8946
8946
|
* @summary Wait For
|
|
@@ -8955,7 +8955,7 @@ declare class ControllerIOsApi extends BaseAPI {
|
|
|
8955
8955
|
* @throws {RequiredError}
|
|
8956
8956
|
* @memberof ControllerIOsApi
|
|
8957
8957
|
*/
|
|
8958
|
-
waitForIOEvent(cell: string, controller: string, io: string, comparisonType: WaitForIOEventComparisonTypeEnum, booleanValue?: boolean, integerValue?: string, floatingValue?: number, options?: RawAxiosRequestConfig): Promise<
|
|
8958
|
+
waitForIOEvent(cell: string, controller: string, io: string, comparisonType: WaitForIOEventComparisonTypeEnum, booleanValue?: boolean, integerValue?: string, floatingValue?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<boolean, any>>;
|
|
8959
8959
|
}
|
|
8960
8960
|
/**
|
|
8961
8961
|
* @export
|
|
@@ -9141,7 +9141,7 @@ declare class CoordinateSystemsApi extends BaseAPI {
|
|
|
9141
9141
|
* @throws {RequiredError}
|
|
9142
9142
|
* @memberof CoordinateSystemsApi
|
|
9143
9143
|
*/
|
|
9144
|
-
addCoordinateSystem(cell: string, addRequest: AddRequest, options?: RawAxiosRequestConfig): Promise<
|
|
9144
|
+
addCoordinateSystem(cell: string, addRequest: AddRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem, any>>;
|
|
9145
9145
|
/**
|
|
9146
9146
|
* Removes a user coordinate system specified by the given identifier. > **NOTE** > > If the coordinate system has originally been configured on the robot controller, it will remain on the controller even after this endpoint has been executed successfully.. This will remove the user coordinate system from the list of user coordinate systems but keep all dependent coordinate systems which use the deleted coordinate system as reference. Coordinate systems on the robot controller are not affected by this operation. They can be removed via the robot control panel only and will be removed in NOVA when the controller is removed. On virtual controllers, use the [deleteVirtualRobotCoordinateSystem](deleteVirtualRobotCoordinateSystem) endpoint to remove coordinate systems from NOVA and the virtual controller. All available coordinate systems can be listed via the [listCoordinateSystems](listCoordinateSystems) endpoint.
|
|
9147
9147
|
* @summary Delete
|
|
@@ -9151,7 +9151,7 @@ declare class CoordinateSystemsApi extends BaseAPI {
|
|
|
9151
9151
|
* @throws {RequiredError}
|
|
9152
9152
|
* @memberof CoordinateSystemsApi
|
|
9153
9153
|
*/
|
|
9154
|
-
deleteCoordinateSystem(cell: string, coordinateSystem: string, options?: RawAxiosRequestConfig): Promise<
|
|
9154
|
+
deleteCoordinateSystem(cell: string, coordinateSystem: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
9155
9155
|
/**
|
|
9156
9156
|
* Request a coordinate system specification for a given identifier. Use parameter rotation_type to get the orientation part of the transformation offset of the coordinate system returned in the requested rotation angle type. If parameter rotation_type is not set, the orientation part of the transformation offset of the coordinate system is returned in the rotation angle type used on the robot controller. This can be useful for visualization purposes in the client application due to equivalent numbers with robot control panel visualization. User coordinate systems can be configured on a robot controller during setup or added to the system via the [addCoordinateSystem](addCoordinateSystem) endpoint. Updating the robot controller\'s configuration either requires credentials or is not possible. With the endpoint [addCoordinateSystem](addCoordinateSystem) you can create a coordinate system without changing the robot controller\'s configuration.
|
|
9157
9157
|
* @summary Description
|
|
@@ -9162,7 +9162,7 @@ declare class CoordinateSystemsApi extends BaseAPI {
|
|
|
9162
9162
|
* @throws {RequiredError}
|
|
9163
9163
|
* @memberof CoordinateSystemsApi
|
|
9164
9164
|
*/
|
|
9165
|
-
getCoordinateSystem(cell: string, coordinateSystem: string, rotationType?: RotationAngleTypes, options?: RawAxiosRequestConfig): Promise<
|
|
9165
|
+
getCoordinateSystem(cell: string, coordinateSystem: string, rotationType?: RotationAngleTypes, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem, any>>;
|
|
9166
9166
|
/**
|
|
9167
9167
|
* Lists all specifications of coordinate systems from robot controllers and user coordinate systems added to the system via the [addCoordinateSystem](addCoordinateSystem) endpoint. Use parameter rotation_type to get the orientation part of the transformation offset of the coordinate system returned in the requested rotation angle type. If parameter rotation_type is not set, the orientation part of the transformation offset of the coordinate system is returned in the rotation angle type used on the robot controller. This can be useful for visualization purposes in the client application due to equivalent numbers with robot control panel visualization. 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. Updating the robot controller\'s configuration either requires credentials or is not possible. With the endpoint [addCoordinateSystem](addCoordinateSystem) you can create a coordinate system without changing the robot controller\'s configuration.
|
|
9168
9168
|
* @summary List
|
|
@@ -9172,7 +9172,7 @@ declare class CoordinateSystemsApi extends BaseAPI {
|
|
|
9172
9172
|
* @throws {RequiredError}
|
|
9173
9173
|
* @memberof CoordinateSystemsApi
|
|
9174
9174
|
*/
|
|
9175
|
-
listCoordinateSystems(cell: string, rotationType?: RotationAngleTypes, options?: RawAxiosRequestConfig): Promise<
|
|
9175
|
+
listCoordinateSystems(cell: string, rotationType?: RotationAngleTypes, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ListResponse, any>>;
|
|
9176
9176
|
/**
|
|
9177
9177
|
* Transform a pose to another base.
|
|
9178
9178
|
* @summary Transform
|
|
@@ -9183,7 +9183,7 @@ declare class CoordinateSystemsApi extends BaseAPI {
|
|
|
9183
9183
|
* @throws {RequiredError}
|
|
9184
9184
|
* @memberof CoordinateSystemsApi
|
|
9185
9185
|
*/
|
|
9186
|
-
transformInCoordinateSystem(cell: string, coordinateSystem: string, pose: Pose, options?: RawAxiosRequestConfig): Promise<
|
|
9186
|
+
transformInCoordinateSystem(cell: string, coordinateSystem: string, pose: Pose, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Pose, any>>;
|
|
9187
9187
|
}
|
|
9188
9188
|
/**
|
|
9189
9189
|
* DeviceConfigurationApi - axios parameter creator
|
|
@@ -9363,7 +9363,7 @@ declare class DeviceConfigurationApi extends BaseAPI {
|
|
|
9363
9363
|
* @throws {RequiredError}
|
|
9364
9364
|
* @memberof DeviceConfigurationApi
|
|
9365
9365
|
*/
|
|
9366
|
-
clearDevices(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
9366
|
+
clearDevices(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
9367
9367
|
/**
|
|
9368
9368
|
* Deprecated endpoint. Overwrite existing devices in an existing robot cell. The devices are added to the robot cell in the order they are specified in the request body. Each device needs to have a unique identifier which is used to reference the device in Wandelscript. Devices which can be configured in the cell: - Robots - OPC UA devices ## Parameters - For more information about the available device configurations have a look at the **Schema** tab or in the provided examples.
|
|
9369
9369
|
* @summary Create Devices
|
|
@@ -9374,7 +9374,7 @@ declare class DeviceConfigurationApi extends BaseAPI {
|
|
|
9374
9374
|
* @throws {RequiredError}
|
|
9375
9375
|
* @memberof DeviceConfigurationApi
|
|
9376
9376
|
*/
|
|
9377
|
-
createDevice(cell: string, createDeviceRequestInner: Array<CreateDeviceRequestInner>, options?: RawAxiosRequestConfig): Promise<
|
|
9377
|
+
createDevice(cell: string, createDeviceRequestInner: Array<CreateDeviceRequestInner>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<any, any>>;
|
|
9378
9378
|
/**
|
|
9379
9379
|
* Deprecated endpoint. Deletes a specific device from the cell.
|
|
9380
9380
|
* @summary Delete Device
|
|
@@ -9385,7 +9385,7 @@ declare class DeviceConfigurationApi extends BaseAPI {
|
|
|
9385
9385
|
* @throws {RequiredError}
|
|
9386
9386
|
* @memberof DeviceConfigurationApi
|
|
9387
9387
|
*/
|
|
9388
|
-
deleteDevice(cell: string, identifier: string, options?: RawAxiosRequestConfig): Promise<
|
|
9388
|
+
deleteDevice(cell: string, identifier: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
9389
9389
|
/**
|
|
9390
9390
|
* Deprecated endpoint. Returns information about a device.
|
|
9391
9391
|
* @summary Device Information
|
|
@@ -9396,7 +9396,7 @@ declare class DeviceConfigurationApi extends BaseAPI {
|
|
|
9396
9396
|
* @throws {RequiredError}
|
|
9397
9397
|
* @memberof DeviceConfigurationApi
|
|
9398
9398
|
*/
|
|
9399
|
-
getDevice(cell: string, identifier: string, options?: RawAxiosRequestConfig): Promise<
|
|
9399
|
+
getDevice(cell: string, identifier: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<any, any>>;
|
|
9400
9400
|
/**
|
|
9401
9401
|
* Deprecated endpoint. Lists all devices which are configured in the cell: - Robots - Databases - OPC UA devices
|
|
9402
9402
|
* @summary List All Devices
|
|
@@ -9406,7 +9406,7 @@ declare class DeviceConfigurationApi extends BaseAPI {
|
|
|
9406
9406
|
* @throws {RequiredError}
|
|
9407
9407
|
* @memberof DeviceConfigurationApi
|
|
9408
9408
|
*/
|
|
9409
|
-
listDevices(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
9409
|
+
listDevices(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ListDevices200ResponseInner[], any>>;
|
|
9410
9410
|
}
|
|
9411
9411
|
/**
|
|
9412
9412
|
* LibraryProgramApi - axios parameter creator
|
|
@@ -9584,7 +9584,7 @@ declare class LibraryProgramApi extends BaseAPI {
|
|
|
9584
9584
|
* @throws {RequiredError}
|
|
9585
9585
|
* @memberof LibraryProgramApi
|
|
9586
9586
|
*/
|
|
9587
|
-
createProgram(cell: string, body: string, name?: string, options?: RawAxiosRequestConfig): Promise<
|
|
9587
|
+
createProgram(cell: string, body: string, name?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProgramMetadata, any>>;
|
|
9588
9588
|
/**
|
|
9589
9589
|
* <!-- theme: danger --> > **Experimental** Deletes the program with the corresponding metadata. This action is irreversible. Does not delete the associated recipes.
|
|
9590
9590
|
* @summary Delete Program
|
|
@@ -9594,7 +9594,7 @@ declare class LibraryProgramApi extends BaseAPI {
|
|
|
9594
9594
|
* @throws {RequiredError}
|
|
9595
9595
|
* @memberof LibraryProgramApi
|
|
9596
9596
|
*/
|
|
9597
|
-
deleteProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<
|
|
9597
|
+
deleteProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProgramMetadata, any>>;
|
|
9598
9598
|
/**
|
|
9599
9599
|
* <!-- theme: danger --> > **Experimental** Deletes the provided list of programs with the corresponding metadata. This action is irreversible. Does not delete the associated recipes.
|
|
9600
9600
|
* @summary Delete Program List
|
|
@@ -9604,7 +9604,7 @@ declare class LibraryProgramApi extends BaseAPI {
|
|
|
9604
9604
|
* @throws {RequiredError}
|
|
9605
9605
|
* @memberof LibraryProgramApi
|
|
9606
9606
|
*/
|
|
9607
|
-
deleteProgramList(cell: string, programIds: Array<string>, options?: RawAxiosRequestConfig): Promise<
|
|
9607
|
+
deleteProgramList(cell: string, programIds: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ListProgramMetadataResponse, any>>;
|
|
9608
9608
|
/**
|
|
9609
9609
|
* <!-- theme: danger --> > **Experimental** Returns the content of the program. The identifier of the program is received upon creation or from the metadata list of all the programs.
|
|
9610
9610
|
* @summary Get Program
|
|
@@ -9614,7 +9614,7 @@ declare class LibraryProgramApi extends BaseAPI {
|
|
|
9614
9614
|
* @throws {RequiredError}
|
|
9615
9615
|
* @memberof LibraryProgramApi
|
|
9616
9616
|
*/
|
|
9617
|
-
getProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<
|
|
9617
|
+
getProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string, any>>;
|
|
9618
9618
|
/**
|
|
9619
9619
|
* <!-- theme: danger --> > **Experimental** Updates the content of the program. The update overwrites the existing content. The metadata is updated in correspondence. ## Examples ``` move via p2p() to [0, 0, 0, 0, 0, 0] move frame(\"flange\") to [1, 2, 0] move via line() to [1, 1, 0] a := planned_pose() ``` ``` {% from \'schneider_conveyor_v1.j2\' import schneider_conveyor_library -%} {{ schneider_conveyor_library() }} def start_main(): conveyor_speed_percentage = {{ conveyor_speed_percentage | round(4) }} conveyer_speed = conveyor_speed_percentage*1500 schneider_conveyor_start(conveyer_speed) end ```
|
|
9620
9620
|
* @summary Update Program
|
|
@@ -9625,7 +9625,7 @@ declare class LibraryProgramApi extends BaseAPI {
|
|
|
9625
9625
|
* @throws {RequiredError}
|
|
9626
9626
|
* @memberof LibraryProgramApi
|
|
9627
9627
|
*/
|
|
9628
|
-
updateProgram(cell: string, program: string, body: string, options?: RawAxiosRequestConfig): Promise<
|
|
9628
|
+
updateProgram(cell: string, program: string, body: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProgramMetadata, any>>;
|
|
9629
9629
|
}
|
|
9630
9630
|
/**
|
|
9631
9631
|
* LibraryProgramMetadataApi - axios parameter creator
|
|
@@ -9775,7 +9775,7 @@ declare class LibraryProgramMetadataApi extends BaseAPI {
|
|
|
9775
9775
|
* @throws {RequiredError}
|
|
9776
9776
|
* @memberof LibraryProgramMetadataApi
|
|
9777
9777
|
*/
|
|
9778
|
-
getProgramMetadata(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<
|
|
9778
|
+
getProgramMetadata(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProgramMetadata, any>>;
|
|
9779
9779
|
/**
|
|
9780
9780
|
* <!-- theme: danger --> > **Experimental** Returns a list of all the stored programs, represented by their metadata.
|
|
9781
9781
|
* @summary List Program Metadata
|
|
@@ -9785,7 +9785,7 @@ declare class LibraryProgramMetadataApi extends BaseAPI {
|
|
|
9785
9785
|
* @throws {RequiredError}
|
|
9786
9786
|
* @memberof LibraryProgramMetadataApi
|
|
9787
9787
|
*/
|
|
9788
|
-
listProgramMetadata(cell: string, showHidden?: boolean, options?: RawAxiosRequestConfig): Promise<
|
|
9788
|
+
listProgramMetadata(cell: string, showHidden?: boolean, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ListProgramMetadataResponse, any>>;
|
|
9789
9789
|
/**
|
|
9790
9790
|
* <!-- theme: danger --> > **Experimental** Updates the metadata of the corresponding program. The update is partial, only the set fields get updated.
|
|
9791
9791
|
* @summary Update Program Metadata
|
|
@@ -9796,7 +9796,7 @@ declare class LibraryProgramMetadataApi extends BaseAPI {
|
|
|
9796
9796
|
* @throws {RequiredError}
|
|
9797
9797
|
* @memberof LibraryProgramMetadataApi
|
|
9798
9798
|
*/
|
|
9799
|
-
updateProgramMetadata(cell: string, program: string, updateProgramMetadataRequest: UpdateProgramMetadataRequest, options?: RawAxiosRequestConfig): Promise<
|
|
9799
|
+
updateProgramMetadata(cell: string, program: string, updateProgramMetadataRequest: UpdateProgramMetadataRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProgramMetadata, any>>;
|
|
9800
9800
|
/**
|
|
9801
9801
|
* <!-- theme: danger --> > **Experimental** Uploads an image for the corresponding program. The image is served as a static file. The path to the image is stored in the metadata.
|
|
9802
9802
|
* @summary Upload Program Metadata Image
|
|
@@ -9807,7 +9807,7 @@ declare class LibraryProgramMetadataApi extends BaseAPI {
|
|
|
9807
9807
|
* @throws {RequiredError}
|
|
9808
9808
|
* @memberof LibraryProgramMetadataApi
|
|
9809
9809
|
*/
|
|
9810
|
-
uploadProgramMetadataImage(cell: string, program: string, file: File, options?: RawAxiosRequestConfig): Promise<
|
|
9810
|
+
uploadProgramMetadataImage(cell: string, program: string, file: File, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProgramMetadata, any>>;
|
|
9811
9811
|
}
|
|
9812
9812
|
/**
|
|
9813
9813
|
* LibraryRecipeApi - axios parameter creator
|
|
@@ -9989,7 +9989,7 @@ declare class LibraryRecipeApi extends BaseAPI {
|
|
|
9989
9989
|
* @throws {RequiredError}
|
|
9990
9990
|
* @memberof LibraryRecipeApi
|
|
9991
9991
|
*/
|
|
9992
|
-
createRecipe(cell: string, programId: string, body: object, name?: string, options?: RawAxiosRequestConfig): Promise<
|
|
9992
|
+
createRecipe(cell: string, programId: string, body: object, name?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RecipeMetadata, any>>;
|
|
9993
9993
|
/**
|
|
9994
9994
|
* # EXPERIMENTAL > **Note:** This endpoint is experimental and might experience functional changes in the future. Deletes a recipe. This action is irreversible.
|
|
9995
9995
|
* @summary Delete Recipe
|
|
@@ -9999,7 +9999,7 @@ declare class LibraryRecipeApi extends BaseAPI {
|
|
|
9999
9999
|
* @throws {RequiredError}
|
|
10000
10000
|
* @memberof LibraryRecipeApi
|
|
10001
10001
|
*/
|
|
10002
|
-
deleteRecipe(cell: string, recipe: string, options?: RawAxiosRequestConfig): Promise<
|
|
10002
|
+
deleteRecipe(cell: string, recipe: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RecipeMetadata, any>>;
|
|
10003
10003
|
/**
|
|
10004
10004
|
* <!-- theme: danger --> > **Experimental** Deletes the provided list of recipes. This action is irreversible.
|
|
10005
10005
|
* @summary Delete Recipe List
|
|
@@ -10009,7 +10009,7 @@ declare class LibraryRecipeApi extends BaseAPI {
|
|
|
10009
10009
|
* @throws {RequiredError}
|
|
10010
10010
|
* @memberof LibraryRecipeApi
|
|
10011
10011
|
*/
|
|
10012
|
-
deleteRecipeList(cell: string, recipeIds: Array<string>, options?: RawAxiosRequestConfig): Promise<
|
|
10012
|
+
deleteRecipeList(cell: string, recipeIds: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ListRecipeMetadataResponse, any>>;
|
|
10013
10013
|
/**
|
|
10014
10014
|
* <!-- theme: danger --> > **Experimental** Returns the content of a recipe. The identifier of the recipe is recieved on creation or from the metadata list of all the recipes.
|
|
10015
10015
|
* @summary Get Recipe
|
|
@@ -10019,7 +10019,7 @@ declare class LibraryRecipeApi extends BaseAPI {
|
|
|
10019
10019
|
* @throws {RequiredError}
|
|
10020
10020
|
* @memberof LibraryRecipeApi
|
|
10021
10021
|
*/
|
|
10022
|
-
getRecipe(cell: string, recipe: string, options?: RawAxiosRequestConfig): Promise<
|
|
10022
|
+
getRecipe(cell: string, recipe: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<object, any>>;
|
|
10023
10023
|
/**
|
|
10024
10024
|
* <!-- theme: danger --> > **Experimental** Updates an existing recipe. The update is partial, only the set fields get updated.
|
|
10025
10025
|
* @summary Update Recipe
|
|
@@ -10030,7 +10030,7 @@ declare class LibraryRecipeApi extends BaseAPI {
|
|
|
10030
10030
|
* @throws {RequiredError}
|
|
10031
10031
|
* @memberof LibraryRecipeApi
|
|
10032
10032
|
*/
|
|
10033
|
-
updateRecipe(cell: string, recipe: string, body: object, options?: RawAxiosRequestConfig): Promise<
|
|
10033
|
+
updateRecipe(cell: string, recipe: string, body: object, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RecipeMetadata, any>>;
|
|
10034
10034
|
}
|
|
10035
10035
|
/**
|
|
10036
10036
|
* LibraryRecipeMetadataApi - axios parameter creator
|
|
@@ -10177,7 +10177,7 @@ declare class LibraryRecipeMetadataApi extends BaseAPI {
|
|
|
10177
10177
|
* @throws {RequiredError}
|
|
10178
10178
|
* @memberof LibraryRecipeMetadataApi
|
|
10179
10179
|
*/
|
|
10180
|
-
getRecipeMetadata(cell: string, recipe: string, options?: RawAxiosRequestConfig): Promise<
|
|
10180
|
+
getRecipeMetadata(cell: string, recipe: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RecipeMetadata, any>>;
|
|
10181
10181
|
/**
|
|
10182
10182
|
* <!-- theme: danger --> > **Experimental** List of all the stored recipes, represented by their metadata.
|
|
10183
10183
|
* @summary List Recipe Metadata
|
|
@@ -10186,7 +10186,7 @@ declare class LibraryRecipeMetadataApi extends BaseAPI {
|
|
|
10186
10186
|
* @throws {RequiredError}
|
|
10187
10187
|
* @memberof LibraryRecipeMetadataApi
|
|
10188
10188
|
*/
|
|
10189
|
-
listRecipeMetadata(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
10189
|
+
listRecipeMetadata(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ListRecipeMetadataResponse, any>>;
|
|
10190
10190
|
/**
|
|
10191
10191
|
* <!-- theme: danger --> > **Experimental** Updates the metadata of a recipe. The update is partial, only the set fields get updated.
|
|
10192
10192
|
* @summary Update Recipe Metadata
|
|
@@ -10197,7 +10197,7 @@ declare class LibraryRecipeMetadataApi extends BaseAPI {
|
|
|
10197
10197
|
* @throws {RequiredError}
|
|
10198
10198
|
* @memberof LibraryRecipeMetadataApi
|
|
10199
10199
|
*/
|
|
10200
|
-
updateRecipeMetadata(cell: string, recipe: string, updateRecipeMetadataRequest: UpdateRecipeMetadataRequest, options?: RawAxiosRequestConfig): Promise<
|
|
10200
|
+
updateRecipeMetadata(cell: string, recipe: string, updateRecipeMetadataRequest: UpdateRecipeMetadataRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RecipeMetadata, any>>;
|
|
10201
10201
|
/**
|
|
10202
10202
|
* <!-- theme: danger --> > **Experimental** Uploads an image for a recipe. The image is served as a static file and the path is stored in the metadata.
|
|
10203
10203
|
* @summary Upload Recipe Metadata Image
|
|
@@ -10208,7 +10208,7 @@ declare class LibraryRecipeMetadataApi extends BaseAPI {
|
|
|
10208
10208
|
* @throws {RequiredError}
|
|
10209
10209
|
* @memberof LibraryRecipeMetadataApi
|
|
10210
10210
|
*/
|
|
10211
|
-
uploadRecipeMetadataImage(cell: string, recipe: string, file: File, options?: RawAxiosRequestConfig): Promise<
|
|
10211
|
+
uploadRecipeMetadataImage(cell: string, recipe: string, file: File, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RecipeMetadata, any>>;
|
|
10212
10212
|
}
|
|
10213
10213
|
/**
|
|
10214
10214
|
* LicenseApi - axios parameter creator
|
|
@@ -10330,7 +10330,7 @@ declare class LicenseApi extends BaseAPI {
|
|
|
10330
10330
|
* @throws {RequiredError}
|
|
10331
10331
|
* @memberof LicenseApi
|
|
10332
10332
|
*/
|
|
10333
|
-
activateLicense(activateLicenseRequest: ActivateLicenseRequest, options?: RawAxiosRequestConfig): Promise<
|
|
10333
|
+
activateLicense(activateLicenseRequest: ActivateLicenseRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<License, any>>;
|
|
10334
10334
|
/**
|
|
10335
10335
|
* Deactivates active license.
|
|
10336
10336
|
* @summary Deactivate license
|
|
@@ -10338,7 +10338,7 @@ declare class LicenseApi extends BaseAPI {
|
|
|
10338
10338
|
* @throws {RequiredError}
|
|
10339
10339
|
* @memberof LicenseApi
|
|
10340
10340
|
*/
|
|
10341
|
-
deactivateLicense(options?: RawAxiosRequestConfig): Promise<
|
|
10341
|
+
deactivateLicense(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
10342
10342
|
/**
|
|
10343
10343
|
* Get information on the license used with the Wandelbots NOVA instance, e.g. licensed product, expiration date, license status.
|
|
10344
10344
|
* @summary Get license
|
|
@@ -10346,7 +10346,7 @@ declare class LicenseApi extends BaseAPI {
|
|
|
10346
10346
|
* @throws {RequiredError}
|
|
10347
10347
|
* @memberof LicenseApi
|
|
10348
10348
|
*/
|
|
10349
|
-
getLicense(options?: RawAxiosRequestConfig): Promise<
|
|
10349
|
+
getLicense(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<License, any>>;
|
|
10350
10350
|
/**
|
|
10351
10351
|
* 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.
|
|
10352
10352
|
* @summary Get license status
|
|
@@ -10354,7 +10354,7 @@ declare class LicenseApi extends BaseAPI {
|
|
|
10354
10354
|
* @throws {RequiredError}
|
|
10355
10355
|
* @memberof LicenseApi
|
|
10356
10356
|
*/
|
|
10357
|
-
getLicenseStatus(options?: RawAxiosRequestConfig): Promise<
|
|
10357
|
+
getLicenseStatus(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<LicenseStatus, any>>;
|
|
10358
10358
|
}
|
|
10359
10359
|
/**
|
|
10360
10360
|
* MotionApi - axios parameter creator
|
|
@@ -10914,7 +10914,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
10914
10914
|
* @throws {RequiredError}
|
|
10915
10915
|
* @memberof MotionApi
|
|
10916
10916
|
*/
|
|
10917
|
-
deleteAllMotions(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
10917
|
+
deleteAllMotions(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
10918
10918
|
/**
|
|
10919
10919
|
* Remove a previously created motion from cache. Use [listMotions](listMotions) to list all available motions. Motions are removed automatically if the motion group or the corresponding controller is disconnected.
|
|
10920
10920
|
* @summary Remove
|
|
@@ -10924,7 +10924,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
10924
10924
|
* @throws {RequiredError}
|
|
10925
10925
|
* @memberof MotionApi
|
|
10926
10926
|
*/
|
|
10927
|
-
deleteMotion(cell: string, motion: string, options?: RawAxiosRequestConfig): Promise<
|
|
10927
|
+
deleteMotion(cell: string, motion: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
10928
10928
|
/**
|
|
10929
10929
|
* <!-- theme: danger --> > Websocket endpoint Provides execution control over a previously planned trajectory. Enables the caller to attach I/O actions to the trajectory. Understanding the concept of location: The location or path parameter specifies the exact position along a trajectory. The location is a scalar value that ranges from 0 to `n`, where `n` denotes the number of motion commands, or trajectory segments, e.g. line, p2p, etc. See [planMotion](planMotion). Each integer value of the location corresponds to one motion command, e.g. 3.0 to 3.999 could be a line. ### Preconditions - The motion group\'s control mode is not claimed by any other endpoint. - The motion group\'s joint position are at start location specified with InitializeMovementRequest. ### Requests #### 1. Send InitializeMovementRequest to lock the trajectory to this connection The following actions are executed: - Sets robot controller mode to control mode, - Sets start location of the execution Keep in mind that only a single trajectory can be locked to a websocket connection at a time and not unlocked anymore. To execute another trajectory, a new connection must be established. #### 2. Send StartMovementRequest to start the movement Sets direction of movement, default is forward. #### **Optional** - To pause, send PauseMovementRequest before the movement has reached its end location. - Change the movement\'s velocity with PlaybackSpeedRequest after initializing the movement with InitializeMovementRequest. ### Responses - InitializeMovementResponse is sent to signal the success or failure of the InitializeMovementRequest. - Movement responses are streamed after a StartMovementRequest successfully started the movement. Movement responses are streamed in a rate that is defined as the multiple of the controller step-rate closest to but not exceeding the rate configured by InitializeMovementRequest. - Standstill reponse is sent once the movement has finished or has come to a standstill due to a pause. - PauseMovementResponse is sent to signal the success of the PauseMovementRequest. It does not signal the end of the movement. End of movement is signaled by Standstill reponse . - PlaybackSpeedResponse is sent to signal the success of the PlaybackSpeedRequest. - MovementError with error details is sent in case of an unexpected error, e.g. controller disconnects during movement. ### Tips and Tricks - A movement can be paused and resumed by sending PauseMovementRequest and StartMovementRequest. - Send PlaybackSpeedRequest before StartMovementRequest to reduce the velocity of the movement before it starts. - Send PlaybackSpeedRequest repeatedly to implement a slider. The velocity of the motion group can be adjusted with each controller step. Therefore, if your app needs a slider-like UI to alter the velocity of a currently running movement, you can send PlaybackSpeedRequest with different speed values repeatedly during the movement. - A closed trajectory (end and start joint position are equal) can be repeated by sending StartMovementRequest after the movement has finished.
|
|
10930
10930
|
* @summary Execute Trajectory
|
|
@@ -10934,7 +10934,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
10934
10934
|
* @throws {RequiredError}
|
|
10935
10935
|
* @memberof MotionApi
|
|
10936
10936
|
*/
|
|
10937
|
-
executeTrajectory(cell: string, executeTrajectoryRequest: ExecuteTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<
|
|
10937
|
+
executeTrajectory(cell: string, executeTrajectoryRequest: ExecuteTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ExecuteTrajectoryResponse, any>>;
|
|
10938
10938
|
/**
|
|
10939
10939
|
* Get the trajectory of a planned motion with defined `sample_time` in milliseconds (ms). The trajectory is a list of points containing cartesian and joint data. The cartesian data is in the requested coordinate system. To get a single point of the trajectory, please use the [getMotionTrajectorySample](getMotionTrajectorySample) endpoint.
|
|
10940
10940
|
* @summary Get Trajectory
|
|
@@ -10946,7 +10946,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
10946
10946
|
* @throws {RequiredError}
|
|
10947
10947
|
* @memberof MotionApi
|
|
10948
10948
|
*/
|
|
10949
|
-
getMotionTrajectory(cell: string, motion: string, sampleTime: number, responsesCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<
|
|
10949
|
+
getMotionTrajectory(cell: string, motion: string, sampleTime: number, responsesCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<GetTrajectoryResponse, any>>;
|
|
10950
10950
|
/**
|
|
10951
10951
|
* Get a single point at a certain location of a planned motion. To get the whole trajectory, use the [getMotionTrajectory](getMotionTrajectory) endpoint.
|
|
10952
10952
|
* @summary Get Trajectory Sample
|
|
@@ -10958,7 +10958,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
10958
10958
|
* @throws {RequiredError}
|
|
10959
10959
|
* @memberof MotionApi
|
|
10960
10960
|
*/
|
|
10961
|
-
getMotionTrajectorySample(cell: string, motion: string, locationOnTrajectory?: number, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<
|
|
10961
|
+
getMotionTrajectorySample(cell: string, motion: string, locationOnTrajectory?: number, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<GetTrajectorySampleResponse, any>>;
|
|
10962
10962
|
/**
|
|
10963
10963
|
* Get the joint data of a planned motion. The planned motion contains only the joint information, to persistently store and reload it later. The data will be sampled equidistantly with defined `sample_time` in milliseconds (ms). If not provided, the data is returned as it is stored on Wandelbots NOVA system. To request cartesian data for visualization purposes, use the [getMotionTrajectory](getMotionTrajectory) endpoint. To get a single point of the planned motion, use the [getMotionTrajectorySample](getMotionTrajectorySample) endpoint.
|
|
10964
10964
|
* @summary Get Planned Motion
|
|
@@ -10969,7 +10969,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
10969
10969
|
* @throws {RequiredError}
|
|
10970
10970
|
* @memberof MotionApi
|
|
10971
10971
|
*/
|
|
10972
|
-
getPlannedMotion(cell: string, motion: string, sampleTime?: number, options?: RawAxiosRequestConfig): Promise<
|
|
10972
|
+
getPlannedMotion(cell: string, motion: string, sampleTime?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<PlannedMotion, any>>;
|
|
10973
10973
|
/**
|
|
10974
10974
|
* Returns motion group models that are supported for planning.
|
|
10975
10975
|
* @summary Motion Group Models for Planning
|
|
@@ -10978,7 +10978,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
10978
10978
|
* @throws {RequiredError}
|
|
10979
10979
|
* @memberof MotionApi
|
|
10980
10980
|
*/
|
|
10981
|
-
getPlanningMotionGroupModels(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
10981
|
+
getPlanningMotionGroupModels(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
|
|
10982
10982
|
/**
|
|
10983
10983
|
* List all currently planned and available motions. Use [planMotion](planMotion) to plan a new motion. Motions are removed if the corresponding motion group or controller disconnects.
|
|
10984
10984
|
* @summary List All Motions
|
|
@@ -10987,7 +10987,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
10987
10987
|
* @throws {RequiredError}
|
|
10988
10988
|
* @memberof MotionApi
|
|
10989
10989
|
*/
|
|
10990
|
-
listMotions(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
10990
|
+
listMotions(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionIdsListResponse, any>>;
|
|
10991
10991
|
/**
|
|
10992
10992
|
* Loads and validates the data of a planned motion into a motion session. The response contains information about the validated motion. Validation can lead to three different results: - Fully valid: The whole planned motion can be executed from start to end. The response will contain the session to move the robot. - Partially valid: Only parts of the planned motion can be executed. The response will contain the session to move the robot and information about the failure for the part that is not executable. - Invalid: The planned motion can not be executed. The response will tell you, which information about the reason of failure. If the motion is at least partially valid, the parts of the motion that are valid can be executed using the [streamMoveForward](streamMoveForward) endpoint. You can use the following workflows: - Plan motions using the [planMotion](planMotion) endpoint, - Store the planned motion persistently, - Use this endpoint to reload the stored motion and get a motion session for it. - Execute the loaded motion using the [streamMoveForward](streamMoveForward) endpoint. OR: - Generate a planned motion with [planTrajectory](planTrajectory) or your own motion planner, - Send the planned motion to this endpoint to validate it and get a motion session for it, - Execute your motion using the [streamMoveForward](streamMoveForward) endpoint. Once a planned motion is validated, it is treated like a motion session and will appear in the list of available motions, see [listMotions](listMotions) endpoint. You can then execute a motion session with the [streamMoveForward](streamMoveForward) endpoint.
|
|
10993
10993
|
* @summary Load Planned Motion
|
|
@@ -10997,7 +10997,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
10997
10997
|
* @throws {RequiredError}
|
|
10998
10998
|
* @memberof MotionApi
|
|
10999
10999
|
*/
|
|
11000
|
-
loadPlannedMotion(cell: string, plannedMotion: PlannedMotion, options?: RawAxiosRequestConfig): Promise<
|
|
11000
|
+
loadPlannedMotion(cell: string, plannedMotion: PlannedMotion, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<PlanResponse, any>>;
|
|
11001
11001
|
/**
|
|
11002
11002
|
* <!-- theme: danger --> > **Experimental** Plans a collision-free PTP motion for a single motion group. Use the following workflow to execute a planned trajectory: 1. Plan collision-free movement/motion. 2. Validate and load the planned trajectory using the [loadPlannedMotion](loadPlannedMotion) endpoint. 3. Execute the loaded trajectory using the [streamMove](streamMove) endpoint.
|
|
11003
11003
|
* @summary Plan Collision Free PTP
|
|
@@ -11007,7 +11007,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
11007
11007
|
* @throws {RequiredError}
|
|
11008
11008
|
* @memberof MotionApi
|
|
11009
11009
|
*/
|
|
11010
|
-
planCollisionFreePTP(cell: string, planCollisionFreePTPRequest?: PlanCollisionFreePTPRequest, options?: RawAxiosRequestConfig): Promise<
|
|
11010
|
+
planCollisionFreePTP(cell: string, planCollisionFreePTPRequest?: PlanCollisionFreePTPRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<PlanTrajectoryResponse, any>>;
|
|
11011
11011
|
/**
|
|
11012
11012
|
* Deprecated endpoint. Use [planTrajectory](planTrajectory) and [loadPlannedMotion](loadPlannedMotion) instead. Plans a new motion for a single previously configured [motion group](listMotionGroups). Motions are described by a sequence of motion commands starting with start joints. A motion is planned from standstill to standstill. A single motion has constant TCP and payload. Currently, I/O actions can\'t be attached to a motion to execute the action in realtime while a motion is executed. If an I/O is needed at a specific point, multiple motions need to be planned. If an I/O is needed to be set while a motion is executed, the endpoint [setOutputValues](setOutputValues) could be used.
|
|
11013
11013
|
* @summary Plan Motion
|
|
@@ -11018,7 +11018,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
11018
11018
|
* @throws {RequiredError}
|
|
11019
11019
|
* @memberof MotionApi
|
|
11020
11020
|
*/
|
|
11021
|
-
planMotion(cell: string, planRequest: PlanRequest, options?: RawAxiosRequestConfig): Promise<
|
|
11021
|
+
planMotion(cell: string, planRequest: PlanRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<PlanResponse, any>>;
|
|
11022
11022
|
/**
|
|
11023
11023
|
* 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. Validate and load the planned trajectory using the [loadPlannedMotion](loadPlannedMotion) endpoint. 3. Execute the loaded trajectory using the [streamMove](streamMove) endpoint. If the trajectory is not executable, the [PlanTrajectoryResponse](PlanTrajectoryResponse) will contain the joint trajectory up until the error, e.g. all samples until a collision occurs. 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.
|
|
11024
11024
|
* @summary Plan Trajectory
|
|
@@ -11028,7 +11028,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
11028
11028
|
* @throws {RequiredError}
|
|
11029
11029
|
* @memberof MotionApi
|
|
11030
11030
|
*/
|
|
11031
|
-
planTrajectory(cell: string, planTrajectoryRequest?: PlanTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<
|
|
11031
|
+
planTrajectory(cell: string, planTrajectoryRequest?: PlanTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<PlanTrajectoryResponse, any>>;
|
|
11032
11032
|
/**
|
|
11033
11033
|
* Stops an active motion gracefully with deceleration until standstill while staying on the planned trajectory. When an active movement is stopped any further update request will be rejected. The active movement request returns until the robot has reached standstill. Currently it is not possible to restart the motion. Please send in a feature request if you need to restart/continue the motion.
|
|
11034
11034
|
* @summary Stop
|
|
@@ -11038,7 +11038,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
11038
11038
|
* @throws {RequiredError}
|
|
11039
11039
|
* @memberof MotionApi
|
|
11040
11040
|
*/
|
|
11041
|
-
stopExecution(cell: string, motion: string, options?: RawAxiosRequestConfig): Promise<
|
|
11041
|
+
stopExecution(cell: string, motion: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
11042
11042
|
/**
|
|
11043
11043
|
* Deprecated endpoint. Use `executeTrajectory` instead. Moves the motion group forward or backward along a previously planned motion. Or request to move the motion group via joint point-to-point to a given location on a planned motion. Or set the playback speed of the motion. Or stop the motion execution.
|
|
11044
11044
|
* @summary Stream Move
|
|
@@ -11049,7 +11049,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
11049
11049
|
* @throws {RequiredError}
|
|
11050
11050
|
* @memberof MotionApi
|
|
11051
11051
|
*/
|
|
11052
|
-
streamMove(cell: string, streamMoveRequest: StreamMoveRequest, options?: RawAxiosRequestConfig): Promise<
|
|
11052
|
+
streamMove(cell: string, streamMoveRequest: StreamMoveRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<StreamMoveResponse, any>>;
|
|
11053
11053
|
/**
|
|
11054
11054
|
* Deprecated endpoint. Use the [executeTrajectory](executeTrajectory) endpoint instead. Request to move the motion group backward along a previously planned motion. Once started, you can stop a motion using the [stopExecution](stopExecution) endpoint. Prerequisites, before starting the motion execution: - The motion group is currently at the endpoint of the planned motion. OR - The motion was stopped using [stopExecution](stopExecution) endpoint. Then it is possible to resume the motion execution from where it stopped. OR - The motion group was moved onto the motion using the [streamMoveToTrajectoryViaJointP2P](streamMoveToTrajectoryViaJointP2P) endpoint.
|
|
11055
11055
|
* @summary Stream Backward
|
|
@@ -11064,7 +11064,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
11064
11064
|
* @throws {RequiredError}
|
|
11065
11065
|
* @memberof MotionApi
|
|
11066
11066
|
*/
|
|
11067
|
-
streamMoveBackward(cell: string, motion: string, playbackSpeedInPercent: number, responseRate?: number, responseCoordinateSystem?: string, startLocationOnTrajectory?: number, options?: RawAxiosRequestConfig): Promise<
|
|
11067
|
+
streamMoveBackward(cell: string, motion: string, playbackSpeedInPercent: number, responseRate?: number, responseCoordinateSystem?: string, startLocationOnTrajectory?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<StreamMoveResponse, any>>;
|
|
11068
11068
|
/**
|
|
11069
11069
|
* Deprecated endpoint. Use the [executeTrajectory](executeTrajectory) endpoint instead. Moves the motion group forward along a previously planned motion. Once started, you can stop a motion using the [stopExecution](stopExecution) endpoint. Prerequisites, before starting the motion execution: - The motion group is currently at the start point of the planned motion. OR - The motion was stopped using [stopExecution](stopExecution) endpoint. Then it is possible to resume the motion execution from where it stopped. OR - The motion group was moved onto the motion using the [streamMoveToTrajectoryViaJointP2P](streamMoveToTrajectoryViaJointP2P) endpoint.
|
|
11070
11070
|
* @summary Stream Forward
|
|
@@ -11079,7 +11079,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
11079
11079
|
* @throws {RequiredError}
|
|
11080
11080
|
* @memberof MotionApi
|
|
11081
11081
|
*/
|
|
11082
|
-
streamMoveForward(cell: string, motion: string, playbackSpeedInPercent: number, responseRate?: number, responseCoordinateSystem?: string, startLocationOnTrajectory?: number, options?: RawAxiosRequestConfig): Promise<
|
|
11082
|
+
streamMoveForward(cell: string, motion: string, playbackSpeedInPercent: number, responseRate?: number, responseCoordinateSystem?: string, startLocationOnTrajectory?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<StreamMoveResponse, any>>;
|
|
11083
11083
|
/**
|
|
11084
11084
|
* Request to move the motion group via joint point-to-point to a given location on a planned motion. You must use this endpoint in order to start moving from an arbritrary location of the trajectory. Afterwards, you are able to call [streamMoveForward](streamMoveForward) or [streamMoveBackward](streamMoveBackward) to move along planned motion. Use the [stopExecution](stopExecution) endpoint to stop the motion gracefully.
|
|
11085
11085
|
* @summary Stream to Trajectory
|
|
@@ -11097,7 +11097,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
11097
11097
|
* @throws {RequiredError}
|
|
11098
11098
|
* @memberof MotionApi
|
|
11099
11099
|
*/
|
|
11100
|
-
streamMoveToTrajectoryViaJointPTP(cell: string, motion: string, locationOnTrajectory: number, limitOverrideJointVelocityLimitsJoints?: Array<number>, limitOverrideJointAccelerationLimitsJoints?: Array<number>, limitOverrideTcpVelocityLimit?: number, limitOverrideTcpAccelerationLimit?: number, limitOverrideTcpOrientationVelocityLimit?: number, limitOverrideTcpOrientationAccelerationLimit?: number, responsesCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<
|
|
11100
|
+
streamMoveToTrajectoryViaJointPTP(cell: string, motion: string, locationOnTrajectory: number, limitOverrideJointVelocityLimitsJoints?: Array<number>, limitOverrideJointAccelerationLimitsJoints?: Array<number>, limitOverrideTcpVelocityLimit?: number, limitOverrideTcpAccelerationLimit?: number, limitOverrideTcpOrientationVelocityLimit?: number, limitOverrideTcpOrientationAccelerationLimit?: number, responsesCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<StreamMoveResponse, any>>;
|
|
11101
11101
|
}
|
|
11102
11102
|
/**
|
|
11103
11103
|
* MotionGroupApi - axios parameter creator
|
|
@@ -11238,7 +11238,7 @@ declare class MotionGroupApi extends BaseAPI {
|
|
|
11238
11238
|
* @throws {RequiredError}
|
|
11239
11239
|
* @memberof MotionGroupApi
|
|
11240
11240
|
*/
|
|
11241
|
-
activateAllMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
11241
|
+
activateAllMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupInstanceList, any>>;
|
|
11242
11242
|
/**
|
|
11243
11243
|
* Activate the motion group and keeps the motion group in an active status. To manually activate a motion group, use this endpoint. When activating a motion group, interacting with the controller in other ways is not possible. To deactivate a motion group, use [deactivateMotionGroup](deactivateMotionGroup).
|
|
11244
11244
|
* @summary Activate
|
|
@@ -11248,7 +11248,7 @@ declare class MotionGroupApi extends BaseAPI {
|
|
|
11248
11248
|
* @throws {RequiredError}
|
|
11249
11249
|
* @memberof MotionGroupApi
|
|
11250
11250
|
*/
|
|
11251
|
-
activateMotionGroup(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
11251
|
+
activateMotionGroup(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupInstance, any>>;
|
|
11252
11252
|
/**
|
|
11253
11253
|
* Deactivate a motion group. Activate the motion group and keeps the motion group in an active status. The robot controller streams information about all active motion groups. Deactivate motion groups that you no longer use. When deactivating motion groups, it is not possible to interact with the controller in any other way.
|
|
11254
11254
|
* @summary Deactivate
|
|
@@ -11258,7 +11258,7 @@ declare class MotionGroupApi extends BaseAPI {
|
|
|
11258
11258
|
* @throws {RequiredError}
|
|
11259
11259
|
* @memberof MotionGroupApi
|
|
11260
11260
|
*/
|
|
11261
|
-
deactivateMotionGroup(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
11261
|
+
deactivateMotionGroup(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
11262
11262
|
/**
|
|
11263
11263
|
* List all active motion groups. A motion group is active if it is currently used by a controller.
|
|
11264
11264
|
* @summary List Active
|
|
@@ -11267,7 +11267,7 @@ declare class MotionGroupApi extends BaseAPI {
|
|
|
11267
11267
|
* @throws {RequiredError}
|
|
11268
11268
|
* @memberof MotionGroupApi
|
|
11269
11269
|
*/
|
|
11270
|
-
listMotionGroups(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
11270
|
+
listMotionGroups(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupInstanceList, any>>;
|
|
11271
11271
|
}
|
|
11272
11272
|
/**
|
|
11273
11273
|
* MotionGroupInfosApi - axios parameter creator
|
|
@@ -11624,7 +11624,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
|
|
|
11624
11624
|
* @throws {RequiredError}
|
|
11625
11625
|
* @memberof MotionGroupInfosApi
|
|
11626
11626
|
*/
|
|
11627
|
-
getActivePayload(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
11627
|
+
getActivePayload(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Payload, any>>;
|
|
11628
11628
|
/**
|
|
11629
11629
|
* Get the internal selected TCP of a connected device.
|
|
11630
11630
|
* @summary Selected TCP
|
|
@@ -11635,7 +11635,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
|
|
|
11635
11635
|
* @throws {RequiredError}
|
|
11636
11636
|
* @memberof MotionGroupInfosApi
|
|
11637
11637
|
*/
|
|
11638
|
-
getActiveTcp(cell: string, motionGroup: string, rotationType?: RotationAngleTypes, options?: RawAxiosRequestConfig): Promise<
|
|
11638
|
+
getActiveTcp(cell: string, motionGroup: string, rotationType?: RotationAngleTypes, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotTcp, any>>;
|
|
11639
11639
|
/**
|
|
11640
11640
|
* Returns the current state of the selected motion group including the current joint position, velocity, pose, and more.
|
|
11641
11641
|
* @summary State of Device
|
|
@@ -11647,7 +11647,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
|
|
|
11647
11647
|
* @throws {RequiredError}
|
|
11648
11648
|
* @memberof MotionGroupInfosApi
|
|
11649
11649
|
*/
|
|
11650
|
-
getCurrentMotionGroupState(cell: string, motionGroup: string, tcp?: string, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<
|
|
11650
|
+
getCurrentMotionGroupState(cell: string, motionGroup: string, tcp?: string, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupStateResponse, any>>;
|
|
11651
11651
|
/**
|
|
11652
11652
|
* Shows the options the motion group offers in regard to the information service. Some motion groups may not provide all information services, e.g. some manufacturers don\'t have a blending zone concept.
|
|
11653
11653
|
* @summary Capabilities
|
|
@@ -11657,7 +11657,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
|
|
|
11657
11657
|
* @throws {RequiredError}
|
|
11658
11658
|
* @memberof MotionGroupInfosApi
|
|
11659
11659
|
*/
|
|
11660
|
-
getInfoCapabilities(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
11660
|
+
getInfoCapabilities(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<InfoServiceCapabilities, any>>;
|
|
11661
11661
|
/**
|
|
11662
11662
|
* Get static properties of the motion group. Those properties are used internally for motion group plannning. Only supported motion groups will return a valid response.
|
|
11663
11663
|
* @summary Get Static Properties
|
|
@@ -11667,7 +11667,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
|
|
|
11667
11667
|
* @throws {RequiredError}
|
|
11668
11668
|
* @memberof MotionGroupInfosApi
|
|
11669
11669
|
*/
|
|
11670
|
-
getMotionGroupSpecification(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
11670
|
+
getMotionGroupSpecification(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupSpecification, any>>;
|
|
11671
11671
|
/**
|
|
11672
11672
|
* Returns the configured mounting pose offset in relation to world coordinate system and the motion groups coordinate system.
|
|
11673
11673
|
* @summary Device Mounting
|
|
@@ -11677,7 +11677,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
|
|
|
11677
11677
|
* @throws {RequiredError}
|
|
11678
11678
|
* @memberof MotionGroupInfosApi
|
|
11679
11679
|
*/
|
|
11680
|
-
getMounting(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
11680
|
+
getMounting(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Mounting, any>>;
|
|
11681
11681
|
/**
|
|
11682
11682
|
* <!-- theme: danger --> > **Experimental** Get the complete configuration which can be passed to the planner-optimizer (incl. motion group description, limits etc.)
|
|
11683
11683
|
* @summary Optimizer Configuration
|
|
@@ -11688,7 +11688,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
|
|
|
11688
11688
|
* @throws {RequiredError}
|
|
11689
11689
|
* @memberof MotionGroupInfosApi
|
|
11690
11690
|
*/
|
|
11691
|
-
getOptimizerConfiguration(cell: string, motionGroup: string, tcp?: string, options?: RawAxiosRequestConfig): Promise<
|
|
11691
|
+
getOptimizerConfiguration(cell: string, motionGroup: string, tcp?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<OptimizerSetup, any>>;
|
|
11692
11692
|
/**
|
|
11693
11693
|
* Get the safety setup and limitations of a connected device, which restricts the device. Safety settings are configured globally on the robot controller and are valid for all the connected devices (like robots).
|
|
11694
11694
|
* @summary Safety Setup and Limitations
|
|
@@ -11698,7 +11698,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
|
|
|
11698
11698
|
* @throws {RequiredError}
|
|
11699
11699
|
* @memberof MotionGroupInfosApi
|
|
11700
11700
|
*/
|
|
11701
|
-
getSafetySetup(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
11701
|
+
getSafetySetup(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<SafetySetup, any>>;
|
|
11702
11702
|
/**
|
|
11703
11703
|
* Lists all defined payloads of the motion group. The payload is defined as the sum of all weights attached to the flange/endpoint of the motion group, e.g. sum of the tools and workpiece weight that are currently attached.
|
|
11704
11704
|
* @summary List Payloads
|
|
@@ -11708,7 +11708,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
|
|
|
11708
11708
|
* @throws {RequiredError}
|
|
11709
11709
|
* @memberof MotionGroupInfosApi
|
|
11710
11710
|
*/
|
|
11711
|
-
listPayloads(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
11711
|
+
listPayloads(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ListPayloadsResponse, any>>;
|
|
11712
11712
|
/**
|
|
11713
11713
|
* Get all internal configured TCPs of a connected device.
|
|
11714
11714
|
* @summary List TCPs
|
|
@@ -11719,7 +11719,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
|
|
|
11719
11719
|
* @throws {RequiredError}
|
|
11720
11720
|
* @memberof MotionGroupInfosApi
|
|
11721
11721
|
*/
|
|
11722
|
-
listTcps(cell: string, motionGroup: string, rotationType?: RotationAngleTypes, options?: RawAxiosRequestConfig): Promise<
|
|
11722
|
+
listTcps(cell: string, motionGroup: string, rotationType?: RotationAngleTypes, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ListTcpsResponse, any>>;
|
|
11723
11723
|
/**
|
|
11724
11724
|
* Receive updates of the motion group state. The stream will be closed from the server if the controller is disconnected.
|
|
11725
11725
|
* @summary Stream State of Device
|
|
@@ -11732,7 +11732,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
|
|
|
11732
11732
|
* @throws {RequiredError}
|
|
11733
11733
|
* @memberof MotionGroupInfosApi
|
|
11734
11734
|
*/
|
|
11735
|
-
streamMotionGroupState(cell: string, motionGroup: string, responseRate?: number, responseCoordinateSystem?: string, tcp?: string, options?: RawAxiosRequestConfig): Promise<
|
|
11735
|
+
streamMotionGroupState(cell: string, motionGroup: string, responseRate?: number, responseCoordinateSystem?: string, tcp?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupStateResponse, any>>;
|
|
11736
11736
|
}
|
|
11737
11737
|
/**
|
|
11738
11738
|
* MotionGroupJoggingApi - axios parameter creator
|
|
@@ -11876,7 +11876,7 @@ declare class MotionGroupJoggingApi extends BaseAPI {
|
|
|
11876
11876
|
* @throws {RequiredError}
|
|
11877
11877
|
* @memberof MotionGroupJoggingApi
|
|
11878
11878
|
*/
|
|
11879
|
-
directionJogging(cell: string, directionJoggingRequest: DirectionJoggingRequest, options?: RawAxiosRequestConfig): Promise<
|
|
11879
|
+
directionJogging(cell: string, directionJoggingRequest: DirectionJoggingRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<JoggingResponse, any>>;
|
|
11880
11880
|
/**
|
|
11881
11881
|
* Shows the options the motion group offers in regard to jogging. Some motion groups may not provide all information services, e.g. it is physically not possible to move a one-axis-turntable in a linear way.
|
|
11882
11882
|
* @summary Capabilities
|
|
@@ -11886,7 +11886,7 @@ declare class MotionGroupJoggingApi extends BaseAPI {
|
|
|
11886
11886
|
* @throws {RequiredError}
|
|
11887
11887
|
* @memberof MotionGroupJoggingApi
|
|
11888
11888
|
*/
|
|
11889
|
-
getJoggingCapabilities(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
11889
|
+
getJoggingCapabilities(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<JoggingServiceCapabilities, any>>;
|
|
11890
11890
|
/**
|
|
11891
11891
|
* Move one or more joints of a motion group with specified velocities via a websocket. The purpose of a joint jogging motion is to maneuver a motion group in one or more joints with a specified velocity for each joint. The sign of the velocity determines the direction of the joint movement. The velocity is given in [rad/s]. In contrast to a planned motion, a jogging motion can be changed dynamically while the motion group is in motion. Only one single client at a time can jog a particular motion group. If another client tries to jog the same motion group at the same time, the second call will fail. The movement of the motion group will start as soon as: * the motion group is not in motion * the websocket connection is established * the first request has been sent As long as the jogging motion is ongoing, responses will be sent continuously and contain the current state of the motion group. The responses will be sent with the specified rate according to the *response_rate* parameter of the initial websocket request. While in motion, the desired joint velocity can be changed by sending a new request to the same websocket. The motion and sending of the replies will stop when: * a [stopJogging](stopJogging) request was received, processed, and the movement stopped Motion group state will be published in the original command stream until the motion group has fully stopped. * the client cancels the stream (not recommended, because final stopping position will not be returned from the stream) When a physical limit (e.g. joint limit) is reached, the motion group will stop moving in the desired direction. The stream, howewer, will continue to send the state until the client cancels the stream or sends the [stopJogging](stopJogging) request. **Usage example:** 1. Open a websocket via python and start the jogging motion: ```bash > python -m websockets \"ws://<IP of Wandelbots NOVA API>/api/v1/cells/<your cell id>/motion-groups/move-joint\" ``` 2. Send the following message to move with a velocity of 0.1 rad/s (negative) for joint 5 and 0.2 rad/s for joint 6: ```json { \"motion_group\": \"<your motion group id>\", \"joint_velocities\": [0, 0, 0, 0, -0.1, 0.2], \"response_rate\": 500 } ``` The provided NOVA API clients also natively support jogging motions, without the need to manually open a websocket. > **NOTE** > > If the jogging movement is stopped immediately, ensure that > > - A websocket connection is established. Websockets can be kept open until the robot\'s movement is done as opposed to a simple HTTP GET request. > > - The motion group is not in motion by another jogging movement or a planned movement. > **NOTE** > > If the robot does not move, ensure that > > - The joint velocity values are not zero, > > - The motion group is not in a state where it cannot move further (e.g. joint limit reached). > **NOTE** > > If the specified velocities are higher than the maximum allowed by the robot controller, the motion group will move with the maximum allowed velocities.
|
|
11892
11892
|
* @summary Stream Joints
|
|
@@ -11896,7 +11896,7 @@ declare class MotionGroupJoggingApi extends BaseAPI {
|
|
|
11896
11896
|
* @throws {RequiredError}
|
|
11897
11897
|
* @memberof MotionGroupJoggingApi
|
|
11898
11898
|
*/
|
|
11899
|
-
jointJogging(cell: string, jointJoggingRequest: JointJoggingRequest, options?: RawAxiosRequestConfig): Promise<
|
|
11899
|
+
jointJogging(cell: string, jointJoggingRequest: JointJoggingRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<JoggingResponse, any>>;
|
|
11900
11900
|
/**
|
|
11901
11901
|
* Stops an ongoing jogging movement as fast as possible. Until the motion group reaches standstill, it decelerates and keeps the last specified direction. This call will immediately return even if the deceleration is still in progress. After a stop request has been received, no further updates to the ongoing jogging movement are possible. State responses will be sent via the jogging stream until the motion group reaches standstill.
|
|
11902
11902
|
* @summary Stop
|
|
@@ -11906,7 +11906,7 @@ declare class MotionGroupJoggingApi extends BaseAPI {
|
|
|
11906
11906
|
* @throws {RequiredError}
|
|
11907
11907
|
* @memberof MotionGroupJoggingApi
|
|
11908
11908
|
*/
|
|
11909
|
-
stopJogging(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
11909
|
+
stopJogging(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
11910
11910
|
}
|
|
11911
11911
|
/**
|
|
11912
11912
|
* MotionGroupKinematicApi - axios parameter creator
|
|
@@ -12060,7 +12060,7 @@ declare class MotionGroupKinematicApi extends BaseAPI {
|
|
|
12060
12060
|
* @throws {RequiredError}
|
|
12061
12061
|
* @memberof MotionGroupKinematicApi
|
|
12062
12062
|
*/
|
|
12063
|
-
calculateAllInverseKinematic(cell: string, motionGroup: string, allJointPositionsRequest: AllJointPositionsRequest, options?: RawAxiosRequestConfig): Promise<
|
|
12063
|
+
calculateAllInverseKinematic(cell: string, motionGroup: string, allJointPositionsRequest: AllJointPositionsRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<AllJointPositionsResponse, any>>;
|
|
12064
12064
|
/**
|
|
12065
12065
|
* Calculates the TCP pose from a joint position sample using the forward kinematics of the motion-group.
|
|
12066
12066
|
* @summary TcpPose from JointPosition
|
|
@@ -12071,7 +12071,7 @@ declare class MotionGroupKinematicApi extends BaseAPI {
|
|
|
12071
12071
|
* @throws {RequiredError}
|
|
12072
12072
|
* @memberof MotionGroupKinematicApi
|
|
12073
12073
|
*/
|
|
12074
|
-
calculateForwardKinematic(cell: string, motionGroup: string, tcpPoseRequest: TcpPoseRequest, options?: RawAxiosRequestConfig): Promise<
|
|
12074
|
+
calculateForwardKinematic(cell: string, motionGroup: string, tcpPoseRequest: TcpPoseRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Pose, any>>;
|
|
12075
12075
|
/**
|
|
12076
12076
|
* Calculate the joint positions the motion-group needs to apply for its TCP to be in a specified pose (Inverse Kinematic Solution). If multiple solutions are found, the one nearest to the given specified joint position is picked. * For all supported robot models, except the Fanuc CRX line, the returned joint position is guaranteed to have the same configuration (often referred to as ELBOW_UP, WRIST_DOWN, SHOULDER_RIGHT, f.e.) as the specified reference joint position. If the position limit of any single joint allows it to be in a range larger than 2 PI, the respective joint value in the result will be as close as possible to its reference value. * For the Fanuc CRX line the solution is selected to have the smallest distance measured by the norm of its difference to the reference joint position. The returned joint position is guaranteed to be within the joint limits and not in a singular position of the robot.
|
|
12077
12077
|
* @summary Nearest JointPosition from TcpPose
|
|
@@ -12082,7 +12082,7 @@ declare class MotionGroupKinematicApi extends BaseAPI {
|
|
|
12082
12082
|
* @throws {RequiredError}
|
|
12083
12083
|
* @memberof MotionGroupKinematicApi
|
|
12084
12084
|
*/
|
|
12085
|
-
calculateInverseKinematic(cell: string, motionGroup: string, jointPositionRequest: JointPositionRequest, options?: RawAxiosRequestConfig): Promise<
|
|
12085
|
+
calculateInverseKinematic(cell: string, motionGroup: string, jointPositionRequest: JointPositionRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Joints, any>>;
|
|
12086
12086
|
/**
|
|
12087
12087
|
* Get the kinematic endpoints provided for the specified motion-group.
|
|
12088
12088
|
* @summary Capabilities
|
|
@@ -12092,7 +12092,7 @@ declare class MotionGroupKinematicApi extends BaseAPI {
|
|
|
12092
12092
|
* @throws {RequiredError}
|
|
12093
12093
|
* @memberof MotionGroupKinematicApi
|
|
12094
12094
|
*/
|
|
12095
|
-
getKinematicCapabilities(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
12095
|
+
getKinematicCapabilities(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<KinematicServiceCapabilities, any>>;
|
|
12096
12096
|
}
|
|
12097
12097
|
/**
|
|
12098
12098
|
* ProgramApi - axios parameter creator
|
|
@@ -12341,7 +12341,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
12341
12341
|
* @throws {RequiredError}
|
|
12342
12342
|
* @memberof ProgramApi
|
|
12343
12343
|
*/
|
|
12344
|
-
createProgramRunner(cell: string, request: Request, options?: RawAxiosRequestConfig): Promise<
|
|
12344
|
+
createProgramRunner(cell: string, request: Request, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProgramRunnerReference, any>>;
|
|
12345
12345
|
/**
|
|
12346
12346
|
* Execute a program in Wandelscript. The Wandelscript can also move multiple robots by using the \'do with\' syntax. The execute operation will be started from the current joint configuration of any addressed robot(s). Addressed robots have to be in control mode for the execute operation to succeed. A request to this endpoint will block this endpoint until the program has been executed, or until an error occurs. The executed movement is returned in case of a succesful execution. Otherwise an error (e.g. out of reach, singularity), is returned. The Wandelscript can either be submitted as is, using Content-type text/plain, or as content-type application/json with the Wandelscript under \"code\" alongside a set of values provided under \"initial_state\". * [WandelEngine & Wandelscript Documentation](/docs/docs/wandelscript)
|
|
12347
12347
|
* @summary Execute Program
|
|
@@ -12351,7 +12351,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
12351
12351
|
* @throws {RequiredError}
|
|
12352
12352
|
* @memberof ProgramApi
|
|
12353
12353
|
*/
|
|
12354
|
-
executeProgram(cell: string, codeWithArguments: CodeWithArguments, options?: RawAxiosRequestConfig): Promise<
|
|
12354
|
+
executeProgram(cell: string, codeWithArguments: CodeWithArguments, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProgramRun, any>>;
|
|
12355
12355
|
/**
|
|
12356
12356
|
* Returns information about a program currently executed. When a program is finished: Program response, result, collected Wandelscript logs, etc. When a program is running: Running status, current executed line, etc. ## Parameters - **runner_id**: The id of the program runner
|
|
12357
12357
|
* @summary Get Program Runner
|
|
@@ -12361,7 +12361,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
12361
12361
|
* @throws {RequiredError}
|
|
12362
12362
|
* @memberof ProgramApi
|
|
12363
12363
|
*/
|
|
12364
|
-
getProgramRunner(cell: string, runner: string, options?: RawAxiosRequestConfig): Promise<
|
|
12364
|
+
getProgramRunner(cell: string, runner: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProgramRun, any>>;
|
|
12365
12365
|
/**
|
|
12366
12366
|
* Get details about all existing program runners.
|
|
12367
12367
|
* @summary List Program Runners
|
|
@@ -12370,7 +12370,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
12370
12370
|
* @throws {RequiredError}
|
|
12371
12371
|
* @memberof ProgramApi
|
|
12372
12372
|
*/
|
|
12373
|
-
listProgramRunners(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
12373
|
+
listProgramRunners(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProgramRunnerReference[], any>>;
|
|
12374
12374
|
/**
|
|
12375
12375
|
* Migrate a program ## Parameters See the **Schema** tab for information about the request body
|
|
12376
12376
|
* @summary Migrate Program
|
|
@@ -12380,7 +12380,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
12380
12380
|
* @throws {RequiredError}
|
|
12381
12381
|
* @memberof ProgramApi
|
|
12382
12382
|
*/
|
|
12383
|
-
migrateProgram(cell: string, request1: Request1, options?: RawAxiosRequestConfig): Promise<
|
|
12383
|
+
migrateProgram(cell: string, request1: Request1, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string, any>>;
|
|
12384
12384
|
/**
|
|
12385
12385
|
* Plan a program based on the specified robot type. The plan operation can be used to check if a Wandelscript is executable, given the current joint configuration of the robot. If the Wandelscript is executable, the result contains the motion path. If the Wandelscript is not executable, e.g. points that are out of reach, or the joints encounter a singularity, the reason is returned. The plan operation can be used in other operating modes besides control mode. The Wandelscript can either be submitted as is, using Content-type text/plain, or as content-type application/json with the Wandelscript under \"code\" alongside a set of values provided under \"initial_state\". The plan operation can be used in other operating modes besides control mode. The Wandelscript can either be submitted as is, using Content-type text/plain, or as Content-type application/json with the Wandelscript under \"code\" alongside a set of values provided under \"initial_state\". * [WandelEngine & Wandelscript Documentation](/docs/docs/wandelscript)
|
|
12386
12386
|
* @summary Plan Program
|
|
@@ -12391,7 +12391,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
12391
12391
|
* @throws {RequiredError}
|
|
12392
12392
|
* @memberof ProgramApi
|
|
12393
12393
|
*/
|
|
12394
|
-
planProgram(cell: string, request: Request, identifier?: string, options?: RawAxiosRequestConfig): Promise<
|
|
12394
|
+
planProgram(cell: string, request: Request, identifier?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProgramRun, any>>;
|
|
12395
12395
|
/**
|
|
12396
12396
|
* Stop all runners.
|
|
12397
12397
|
* @summary Stop All Program Runners
|
|
@@ -12400,7 +12400,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
12400
12400
|
* @throws {RequiredError}
|
|
12401
12401
|
* @memberof ProgramApi
|
|
12402
12402
|
*/
|
|
12403
|
-
stopAllProgramRunner(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
12403
|
+
stopAllProgramRunner(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<any, any>>;
|
|
12404
12404
|
/**
|
|
12405
12405
|
* Stop a specific program runner. If the indicated runner was not running, an error will be returned. ## Parameters - **runner_id**: The id of the program runner
|
|
12406
12406
|
* @summary Stop Program Runner
|
|
@@ -12410,7 +12410,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
12410
12410
|
* @throws {RequiredError}
|
|
12411
12411
|
* @memberof ProgramApi
|
|
12412
12412
|
*/
|
|
12413
|
-
stopProgramRunner(cell: string, runner: string, options?: RawAxiosRequestConfig): Promise<
|
|
12413
|
+
stopProgramRunner(cell: string, runner: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
12414
12414
|
}
|
|
12415
12415
|
/**
|
|
12416
12416
|
* ProgramOperatorApi - axios parameter creator
|
|
@@ -12662,7 +12662,7 @@ declare class ProgramOperatorApi extends BaseAPI {
|
|
|
12662
12662
|
* @throws {RequiredError}
|
|
12663
12663
|
* @memberof ProgramOperatorApi
|
|
12664
12664
|
*/
|
|
12665
|
-
createProgramRun(cell: string, createProgramRunRequest: CreateProgramRunRequest, options?: RawAxiosRequestConfig): Promise<
|
|
12665
|
+
createProgramRun(cell: string, createProgramRunRequest: CreateProgramRunRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CreateProgramRun200Response, any>>;
|
|
12666
12666
|
/**
|
|
12667
12667
|
* <!-- theme: danger --> > **Experimental** Creates a new trigger that automatically runs a program when certain conditions are met. Each trigger has a different configuration, and the configuration must be valid for the provided trigger type.
|
|
12668
12668
|
* @summary Create Trigger
|
|
@@ -12672,7 +12672,7 @@ declare class ProgramOperatorApi extends BaseAPI {
|
|
|
12672
12672
|
* @throws {RequiredError}
|
|
12673
12673
|
* @memberof ProgramOperatorApi
|
|
12674
12674
|
*/
|
|
12675
|
-
createTrigger(cell: string, createTriggerRequest: CreateTriggerRequest, options?: RawAxiosRequestConfig): Promise<
|
|
12675
|
+
createTrigger(cell: string, createTriggerRequest: CreateTriggerRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CreateTrigger200Response, any>>;
|
|
12676
12676
|
/**
|
|
12677
12677
|
* <!-- theme: danger --> > **Experimental** Delete an existing trigger.
|
|
12678
12678
|
* @summary Delete Trigger
|
|
@@ -12682,7 +12682,7 @@ declare class ProgramOperatorApi extends BaseAPI {
|
|
|
12682
12682
|
* @throws {RequiredError}
|
|
12683
12683
|
* @memberof ProgramOperatorApi
|
|
12684
12684
|
*/
|
|
12685
|
-
deleteTrigger(trigger: string, cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
12685
|
+
deleteTrigger(trigger: string, cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
12686
12686
|
/**
|
|
12687
12687
|
* <!-- theme: danger --> > **Experimental** Retrieves all program runs, including past and current executions. Use the optional `state` parameter to filter the results by their status.
|
|
12688
12688
|
* @summary Get All Program Runs
|
|
@@ -12692,7 +12692,7 @@ declare class ProgramOperatorApi extends BaseAPI {
|
|
|
12692
12692
|
* @throws {RequiredError}
|
|
12693
12693
|
* @memberof ProgramOperatorApi
|
|
12694
12694
|
*/
|
|
12695
|
-
getAllProgramRuns(cell: string, state?: string, options?: RawAxiosRequestConfig): Promise<
|
|
12695
|
+
getAllProgramRuns(cell: string, state?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<GetAllProgramRuns200Response, any>>;
|
|
12696
12696
|
/**
|
|
12697
12697
|
* <!-- theme: danger --> > **Experimental** Returns all triggers in the system with the program runs caused by each trigger. You can use the program run id to get more details about a specific program run.
|
|
12698
12698
|
* @summary Get All Triggers
|
|
@@ -12701,7 +12701,7 @@ declare class ProgramOperatorApi extends BaseAPI {
|
|
|
12701
12701
|
* @throws {RequiredError}
|
|
12702
12702
|
* @memberof ProgramOperatorApi
|
|
12703
12703
|
*/
|
|
12704
|
-
getAllTriggers(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
12704
|
+
getAllTriggers(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<GetAllTriggers200Response, any>>;
|
|
12705
12705
|
/**
|
|
12706
12706
|
* <!-- theme: danger --> > **Experimental** Retrieves detailed information about a specific program run.
|
|
12707
12707
|
* @summary Get Program Run
|
|
@@ -12711,7 +12711,7 @@ declare class ProgramOperatorApi extends BaseAPI {
|
|
|
12711
12711
|
* @throws {RequiredError}
|
|
12712
12712
|
* @memberof ProgramOperatorApi
|
|
12713
12713
|
*/
|
|
12714
|
-
getProgramRun(run: string, cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
12714
|
+
getProgramRun(run: string, cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProgramRunObject, any>>;
|
|
12715
12715
|
/**
|
|
12716
12716
|
* <!-- theme: danger --> > **Experimental** Retrieves detailed information about a specific trigger.
|
|
12717
12717
|
* @summary Get Trigger
|
|
@@ -12721,7 +12721,7 @@ declare class ProgramOperatorApi extends BaseAPI {
|
|
|
12721
12721
|
* @throws {RequiredError}
|
|
12722
12722
|
* @memberof ProgramOperatorApi
|
|
12723
12723
|
*/
|
|
12724
|
-
getTrigger(trigger: string, cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
12724
|
+
getTrigger(trigger: string, cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<TriggerObject, any>>;
|
|
12725
12725
|
/**
|
|
12726
12726
|
* <!-- theme: danger --> > **Experimental** Updates the details of an existing trigger The exact behavior of switching a trigger from active to inactive or vice versa is not defined yet.
|
|
12727
12727
|
* @summary Update Trigger
|
|
@@ -12732,7 +12732,7 @@ declare class ProgramOperatorApi extends BaseAPI {
|
|
|
12732
12732
|
* @throws {RequiredError}
|
|
12733
12733
|
* @memberof ProgramOperatorApi
|
|
12734
12734
|
*/
|
|
12735
|
-
updateTrigger(trigger: string, cell: string, updateTriggerRequest: UpdateTriggerRequest, options?: RawAxiosRequestConfig): Promise<
|
|
12735
|
+
updateTrigger(trigger: string, cell: string, updateTriggerRequest: UpdateTriggerRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<TriggerObject, any>>;
|
|
12736
12736
|
}
|
|
12737
12737
|
/**
|
|
12738
12738
|
* ProgramValuesApi - axios parameter creator
|
|
@@ -12955,7 +12955,7 @@ declare class ProgramValuesApi extends BaseAPI {
|
|
|
12955
12955
|
* @throws {RequiredError}
|
|
12956
12956
|
* @memberof ProgramValuesApi
|
|
12957
12957
|
*/
|
|
12958
|
-
clearProgramsValues(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
12958
|
+
clearProgramsValues(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
12959
12959
|
/**
|
|
12960
12960
|
* Deprecated endpoint. Add or overwrite one or more values in the database. PREREQUISITE: The database has been added as a device. Add the database with [createDevice](createDevice). The database itself is a key-value store. For reference of possible data types see: * [Documentation for elementary data types](/docs/docs/wandelscript/data-types/#elementary-types)
|
|
12961
12961
|
* @summary Add Value(s)
|
|
@@ -12968,7 +12968,7 @@ declare class ProgramValuesApi extends BaseAPI {
|
|
|
12968
12968
|
*/
|
|
12969
12969
|
createProgramsValue(cell: string, requestBody: {
|
|
12970
12970
|
[key: string]: CollectionValue;
|
|
12971
|
-
}, options?: RawAxiosRequestConfig): Promise<
|
|
12971
|
+
}, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
12972
12972
|
/**
|
|
12973
12973
|
* Delete a value from the database.
|
|
12974
12974
|
* @summary Delete Value
|
|
@@ -12979,7 +12979,7 @@ declare class ProgramValuesApi extends BaseAPI {
|
|
|
12979
12979
|
* @throws {RequiredError}
|
|
12980
12980
|
* @memberof ProgramValuesApi
|
|
12981
12981
|
*/
|
|
12982
|
-
deleteProgramValue(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<
|
|
12982
|
+
deleteProgramValue(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
12983
12983
|
/**
|
|
12984
12984
|
* Deprecated endpoint. Return a value stored in the database. PREREQUISITE: The database has been added as a device. Add the database with [createDevice](createDevice). The database itself is a key-value store. For reference of possible data types see: * [Documentation for elementary data types](/docs/docs/wandelscript/data-types/#elementary-types)
|
|
12985
12985
|
* @summary Get Value
|
|
@@ -12990,7 +12990,7 @@ declare class ProgramValuesApi extends BaseAPI {
|
|
|
12990
12990
|
* @throws {RequiredError}
|
|
12991
12991
|
* @memberof ProgramValuesApi
|
|
12992
12992
|
*/
|
|
12993
|
-
getProgramValue(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<
|
|
12993
|
+
getProgramValue(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ResponseGetValueProgramsValuesKeyGet, any>>;
|
|
12994
12994
|
/**
|
|
12995
12995
|
* Deprecated endpoint. Gets all values that are stored in the database. PREREQUISITE: The database has been added as a device. Add the database with [createDevice](createDevice). The database itself is a key-value storage. For reference of possible data types see: * [Documentation for elementary data types](/docs/docs/wandelscript/data-types/#elementary-types)
|
|
12996
12996
|
* @summary Get Values
|
|
@@ -13000,7 +13000,7 @@ declare class ProgramValuesApi extends BaseAPI {
|
|
|
13000
13000
|
* @throws {RequiredError}
|
|
13001
13001
|
* @memberof ProgramValuesApi
|
|
13002
13002
|
*/
|
|
13003
|
-
listProgramsValues(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
13003
|
+
listProgramsValues(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
|
|
13004
13004
|
[key: string]: ResponseGetValuesProgramsValuesGetValue;
|
|
13005
13005
|
}, any>>;
|
|
13006
13006
|
/**
|
|
@@ -13014,7 +13014,7 @@ declare class ProgramValuesApi extends BaseAPI {
|
|
|
13014
13014
|
* @throws {RequiredError}
|
|
13015
13015
|
* @memberof ProgramValuesApi
|
|
13016
13016
|
*/
|
|
13017
|
-
updateProgramValue(cell: string, key: string, value: Value, options?: RawAxiosRequestConfig): Promise<
|
|
13017
|
+
updateProgramValue(cell: string, key: string, value: Value, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
13018
13018
|
}
|
|
13019
13019
|
/**
|
|
13020
13020
|
* StoreCollisionComponentsApi - axios parameter creator
|
|
@@ -13456,7 +13456,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
13456
13456
|
* @throws {RequiredError}
|
|
13457
13457
|
* @memberof StoreCollisionComponentsApi
|
|
13458
13458
|
*/
|
|
13459
|
-
deleteStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<
|
|
13459
|
+
deleteStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
13460
13460
|
/**
|
|
13461
13461
|
* Deletes the stored link chain. <!-- theme: danger --> > This will delete persistently stored data.
|
|
13462
13462
|
* @summary Delete Link Chain
|
|
@@ -13466,7 +13466,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
13466
13466
|
* @throws {RequiredError}
|
|
13467
13467
|
* @memberof StoreCollisionComponentsApi
|
|
13468
13468
|
*/
|
|
13469
|
-
deleteStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<
|
|
13469
|
+
deleteStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
13470
13470
|
/**
|
|
13471
13471
|
* Deletes the stored tool. <!-- theme: danger --> > This will delete persistently stored data.
|
|
13472
13472
|
* @summary Delete Tool
|
|
@@ -13476,7 +13476,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
13476
13476
|
* @throws {RequiredError}
|
|
13477
13477
|
* @memberof StoreCollisionComponentsApi
|
|
13478
13478
|
*/
|
|
13479
|
-
deleteStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<
|
|
13479
|
+
deleteStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
13480
13480
|
/**
|
|
13481
13481
|
* Deprecated endpoint. Use [getCollisionModel](https://portal.wandelbots.io/docs/api/v2/ui/#/operations/getMotionGroupCollisionModel) instead. Returns the default collision link chain for a given motion group model. See [getPlanningMotionGroupModels](getPlanningMotionGroupModels) for supported motion group models. The default link chain is derived from 3D models and optimized for collision detection within NOVA. The default link chain includes link shapes only. It does not include any attached components like wire feeders or sensors. Use the `stored_link_chain` or `link_chain` field in [storeCollisionScene](storeCollisionScene) to attach additional shapes to the link reference frames. Additional shapes may overlap each other per link and may also overlap the respective link\'s default shape.
|
|
13482
13482
|
* @summary Get Default Link Chain
|
|
@@ -13487,7 +13487,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
13487
13487
|
* @throws {RequiredError}
|
|
13488
13488
|
* @memberof StoreCollisionComponentsApi
|
|
13489
13489
|
*/
|
|
13490
|
-
getDefaultLinkChain(cell: string, motionGroupModel: GetDefaultLinkChainMotionGroupModelEnum, options?: RawAxiosRequestConfig): Promise<
|
|
13490
|
+
getDefaultLinkChain(cell: string, motionGroupModel: GetDefaultLinkChainMotionGroupModelEnum, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
|
|
13491
13491
|
[key: string]: Collider;
|
|
13492
13492
|
}[], any>>;
|
|
13493
13493
|
/**
|
|
@@ -13499,7 +13499,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
13499
13499
|
* @throws {RequiredError}
|
|
13500
13500
|
* @memberof StoreCollisionComponentsApi
|
|
13501
13501
|
*/
|
|
13502
|
-
getStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<
|
|
13502
|
+
getStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Collider, any>>;
|
|
13503
13503
|
/**
|
|
13504
13504
|
* Returns the collision link chain.
|
|
13505
13505
|
* @summary Get Link Chain
|
|
@@ -13509,7 +13509,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
13509
13509
|
* @throws {RequiredError}
|
|
13510
13510
|
* @memberof StoreCollisionComponentsApi
|
|
13511
13511
|
*/
|
|
13512
|
-
getStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<
|
|
13512
|
+
getStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
|
|
13513
13513
|
[key: string]: Collider;
|
|
13514
13514
|
}[], any>>;
|
|
13515
13515
|
/**
|
|
@@ -13521,7 +13521,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
13521
13521
|
* @throws {RequiredError}
|
|
13522
13522
|
* @memberof StoreCollisionComponentsApi
|
|
13523
13523
|
*/
|
|
13524
|
-
getStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<
|
|
13524
|
+
getStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
|
|
13525
13525
|
[key: string]: Collider;
|
|
13526
13526
|
}, any>>;
|
|
13527
13527
|
/**
|
|
@@ -13532,7 +13532,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
13532
13532
|
* @throws {RequiredError}
|
|
13533
13533
|
* @memberof StoreCollisionComponentsApi
|
|
13534
13534
|
*/
|
|
13535
|
-
listCollisionLinkChains(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
13535
|
+
listCollisionLinkChains(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
|
|
13536
13536
|
[key: string]: {
|
|
13537
13537
|
[key: string]: Collider;
|
|
13538
13538
|
}[];
|
|
@@ -13545,7 +13545,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
13545
13545
|
* @throws {RequiredError}
|
|
13546
13546
|
* @memberof StoreCollisionComponentsApi
|
|
13547
13547
|
*/
|
|
13548
|
-
listStoredColliders(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
13548
|
+
listStoredColliders(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
|
|
13549
13549
|
[key: string]: Collider;
|
|
13550
13550
|
}, any>>;
|
|
13551
13551
|
/**
|
|
@@ -13556,7 +13556,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
13556
13556
|
* @throws {RequiredError}
|
|
13557
13557
|
* @memberof StoreCollisionComponentsApi
|
|
13558
13558
|
*/
|
|
13559
|
-
listStoredCollisionTools(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
13559
|
+
listStoredCollisionTools(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
|
|
13560
13560
|
[key: string]: {
|
|
13561
13561
|
[key: string]: Collider;
|
|
13562
13562
|
};
|
|
@@ -13571,7 +13571,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
13571
13571
|
* @throws {RequiredError}
|
|
13572
13572
|
* @memberof StoreCollisionComponentsApi
|
|
13573
13573
|
*/
|
|
13574
|
-
storeCollider(cell: string, collider: string, collider2: Collider, options?: RawAxiosRequestConfig): Promise<
|
|
13574
|
+
storeCollider(cell: string, collider: string, collider2: Collider, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Collider, any>>;
|
|
13575
13575
|
/**
|
|
13576
13576
|
* Stores link chain. If the link chain does not exist, it will be created. If the link chain exists, it will be updated.
|
|
13577
13577
|
* @summary Store Link Chain
|
|
@@ -13584,7 +13584,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
13584
13584
|
*/
|
|
13585
13585
|
storeCollisionLinkChain(cell: string, linkChain: string, collider: Array<{
|
|
13586
13586
|
[key: string]: Collider;
|
|
13587
|
-
}>, options?: RawAxiosRequestConfig): Promise<
|
|
13587
|
+
}>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
|
|
13588
13588
|
[key: string]: Collider;
|
|
13589
13589
|
}[], any>>;
|
|
13590
13590
|
/**
|
|
@@ -13599,7 +13599,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
13599
13599
|
*/
|
|
13600
13600
|
storeCollisionTool(cell: string, tool: string, requestBody: {
|
|
13601
13601
|
[key: string]: Collider;
|
|
13602
|
-
}, options?: RawAxiosRequestConfig): Promise<
|
|
13602
|
+
}, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
|
|
13603
13603
|
[key: string]: Collider;
|
|
13604
13604
|
}, any>>;
|
|
13605
13605
|
}
|
|
@@ -13921,7 +13921,7 @@ declare class StoreCollisionScenesApi extends BaseAPI {
|
|
|
13921
13921
|
* @throws {RequiredError}
|
|
13922
13922
|
* @memberof StoreCollisionScenesApi
|
|
13923
13923
|
*/
|
|
13924
|
-
deleteStoredCollisionScene(cell: string, scene: string, options?: RawAxiosRequestConfig): Promise<
|
|
13924
|
+
deleteStoredCollisionScene(cell: string, scene: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
13925
13925
|
/**
|
|
13926
13926
|
* Returns the stored scene.
|
|
13927
13927
|
* @summary Get Scene
|
|
@@ -13931,7 +13931,7 @@ declare class StoreCollisionScenesApi extends BaseAPI {
|
|
|
13931
13931
|
* @throws {RequiredError}
|
|
13932
13932
|
* @memberof StoreCollisionScenesApi
|
|
13933
13933
|
*/
|
|
13934
|
-
getStoredCollisionScene(cell: string, scene: string, options?: RawAxiosRequestConfig): Promise<
|
|
13934
|
+
getStoredCollisionScene(cell: string, scene: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CollisionScene, any>>;
|
|
13935
13935
|
/**
|
|
13936
13936
|
* Returns a list of stored scenes.
|
|
13937
13937
|
* @summary List Scenes
|
|
@@ -13940,7 +13940,7 @@ declare class StoreCollisionScenesApi extends BaseAPI {
|
|
|
13940
13940
|
* @throws {RequiredError}
|
|
13941
13941
|
* @memberof StoreCollisionScenesApi
|
|
13942
13942
|
*/
|
|
13943
|
-
listStoredCollisionScenes(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
13943
|
+
listStoredCollisionScenes(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
|
|
13944
13944
|
[key: string]: CollisionScene;
|
|
13945
13945
|
}, any>>;
|
|
13946
13946
|
/**
|
|
@@ -13953,7 +13953,7 @@ declare class StoreCollisionScenesApi extends BaseAPI {
|
|
|
13953
13953
|
* @throws {RequiredError}
|
|
13954
13954
|
* @memberof StoreCollisionScenesApi
|
|
13955
13955
|
*/
|
|
13956
|
-
storeCollisionScene(cell: string, scene: string, collisionSceneAssembly: CollisionSceneAssembly, options?: RawAxiosRequestConfig): Promise<
|
|
13956
|
+
storeCollisionScene(cell: string, scene: string, collisionSceneAssembly: CollisionSceneAssembly, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CollisionScene, any>>;
|
|
13957
13957
|
}
|
|
13958
13958
|
/**
|
|
13959
13959
|
* StoreObjectApi - axios parameter creator
|
|
@@ -14156,7 +14156,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
14156
14156
|
* @throws {RequiredError}
|
|
14157
14157
|
* @memberof StoreObjectApi
|
|
14158
14158
|
*/
|
|
14159
|
-
clearAllObjects(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
14159
|
+
clearAllObjects(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
14160
14160
|
/**
|
|
14161
14161
|
* Delete an object <!-- theme: danger --> > This will delete persistently stored data.
|
|
14162
14162
|
* @summary Delete Object
|
|
@@ -14166,7 +14166,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
14166
14166
|
* @throws {RequiredError}
|
|
14167
14167
|
* @memberof StoreObjectApi
|
|
14168
14168
|
*/
|
|
14169
|
-
deleteObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<
|
|
14169
|
+
deleteObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
14170
14170
|
/**
|
|
14171
14171
|
* Get the object. This request returns the object and any metadata attached to it.
|
|
14172
14172
|
* @summary Get Object
|
|
@@ -14176,7 +14176,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
14176
14176
|
* @throws {RequiredError}
|
|
14177
14177
|
* @memberof StoreObjectApi
|
|
14178
14178
|
*/
|
|
14179
|
-
getObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<
|
|
14179
|
+
getObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<File, any>>;
|
|
14180
14180
|
/**
|
|
14181
14181
|
* Get object metadata. Objects can be large. Therefore this request only returns metadata without fetching the object\'s content.
|
|
14182
14182
|
* @summary Get Object Metadata
|
|
@@ -14186,7 +14186,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
14186
14186
|
* @throws {RequiredError}
|
|
14187
14187
|
* @memberof StoreObjectApi
|
|
14188
14188
|
*/
|
|
14189
|
-
getObjectMetadata(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<
|
|
14189
|
+
getObjectMetadata(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
14190
14190
|
/**
|
|
14191
14191
|
* List the keys for all objects.
|
|
14192
14192
|
* @summary List all Object Keys
|
|
@@ -14195,7 +14195,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
14195
14195
|
* @throws {RequiredError}
|
|
14196
14196
|
* @memberof StoreObjectApi
|
|
14197
14197
|
*/
|
|
14198
|
-
listAllObjectKeys(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
14198
|
+
listAllObjectKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
|
|
14199
14199
|
/**
|
|
14200
14200
|
* 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.
|
|
14201
14201
|
* @summary Store Object
|
|
@@ -14209,7 +14209,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
14209
14209
|
*/
|
|
14210
14210
|
storeObject(cell: string, key: string, xMetadata?: {
|
|
14211
14211
|
[key: string]: string;
|
|
14212
|
-
}, anyValue?: any, options?: RawAxiosRequestConfig): Promise<
|
|
14212
|
+
}, anyValue?: any, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
14213
14213
|
}
|
|
14214
14214
|
/**
|
|
14215
14215
|
* SystemApi - axios parameter creator
|
|
@@ -14355,7 +14355,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
14355
14355
|
* @throws {RequiredError}
|
|
14356
14356
|
* @memberof SystemApi
|
|
14357
14357
|
*/
|
|
14358
|
-
checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<
|
|
14358
|
+
checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string, any>>;
|
|
14359
14359
|
/**
|
|
14360
14360
|
* 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.
|
|
14361
14361
|
* @summary Download Diagnosis Package
|
|
@@ -14363,7 +14363,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
14363
14363
|
* @throws {RequiredError}
|
|
14364
14364
|
* @memberof SystemApi
|
|
14365
14365
|
*/
|
|
14366
|
-
getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<
|
|
14366
|
+
getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<File, any>>;
|
|
14367
14367
|
/**
|
|
14368
14368
|
* Get the status of all system services.
|
|
14369
14369
|
* @summary Wandelbots NOVA status
|
|
@@ -14371,7 +14371,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
14371
14371
|
* @throws {RequiredError}
|
|
14372
14372
|
* @memberof SystemApi
|
|
14373
14373
|
*/
|
|
14374
|
-
getSystemStatus(options?: RawAxiosRequestConfig): Promise<
|
|
14374
|
+
getSystemStatus(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ServiceStatus[], any>>;
|
|
14375
14375
|
/**
|
|
14376
14376
|
* Get the current Wandelbots NOVA version.
|
|
14377
14377
|
* @summary Wandelbots NOVA Version
|
|
@@ -14379,7 +14379,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
14379
14379
|
* @throws {RequiredError}
|
|
14380
14380
|
* @memberof SystemApi
|
|
14381
14381
|
*/
|
|
14382
|
-
getSystemVersion(options?: RawAxiosRequestConfig): Promise<
|
|
14382
|
+
getSystemVersion(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string, any>>;
|
|
14383
14383
|
/**
|
|
14384
14384
|
* 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 an error occurs, the API Request is sent 3 times. If the error persists, the old Wandelbots NOVA version is restored.
|
|
14385
14385
|
* @summary Update Wandelbots NOVA version
|
|
@@ -14388,7 +14388,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
14388
14388
|
* @throws {RequiredError}
|
|
14389
14389
|
* @memberof SystemApi
|
|
14390
14390
|
*/
|
|
14391
|
-
updateNovaVersion(updateNovaVersionRequest: UpdateNovaVersionRequest, options?: RawAxiosRequestConfig): Promise<
|
|
14391
|
+
updateNovaVersion(updateNovaVersionRequest: UpdateNovaVersionRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
14392
14392
|
}
|
|
14393
14393
|
/**
|
|
14394
14394
|
* VersionApi - axios parameter creator
|
|
@@ -14443,7 +14443,7 @@ declare class VersionApi extends BaseAPI {
|
|
|
14443
14443
|
* @throws {RequiredError}
|
|
14444
14444
|
* @memberof VersionApi
|
|
14445
14445
|
*/
|
|
14446
|
-
getApiVersion(options?: RawAxiosRequestConfig): Promise<
|
|
14446
|
+
getApiVersion(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ApiVersion, any>>;
|
|
14447
14447
|
}
|
|
14448
14448
|
/**
|
|
14449
14449
|
* VirtualRobotApi - axios parameter creator
|
|
@@ -14666,7 +14666,7 @@ declare class VirtualRobotApi extends BaseAPI {
|
|
|
14666
14666
|
* @throws {RequiredError}
|
|
14667
14667
|
* @memberof VirtualRobotApi
|
|
14668
14668
|
*/
|
|
14669
|
-
getMotionGroupState(cell: string, controller: string, id: number, options?: RawAxiosRequestConfig): Promise<
|
|
14669
|
+
getMotionGroupState(cell: string, controller: string, id: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupJoints, any>>;
|
|
14670
14670
|
/**
|
|
14671
14671
|
* Gets information on the motion group.
|
|
14672
14672
|
* @summary Motion Group Description
|
|
@@ -14676,7 +14676,7 @@ declare class VirtualRobotApi extends BaseAPI {
|
|
|
14676
14676
|
* @throws {RequiredError}
|
|
14677
14677
|
* @memberof VirtualRobotApi
|
|
14678
14678
|
*/
|
|
14679
|
-
getMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
14679
|
+
getMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupInfos, any>>;
|
|
14680
14680
|
/**
|
|
14681
14681
|
* Gets the description and value of a virtual controller I/O.
|
|
14682
14682
|
* @summary Get I/O
|
|
@@ -14687,7 +14687,7 @@ declare class VirtualRobotApi extends BaseAPI {
|
|
|
14687
14687
|
* @throws {RequiredError}
|
|
14688
14688
|
* @memberof VirtualRobotApi
|
|
14689
14689
|
*/
|
|
14690
|
-
getVirtualRobotIOValue(cell: string, controller: string, io: string, options?: RawAxiosRequestConfig): Promise<
|
|
14690
|
+
getVirtualRobotIOValue(cell: string, controller: string, io: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IO, any>>;
|
|
14691
14691
|
/**
|
|
14692
14692
|
* Lists all inputs/outputs of the virtual controller. Every input/output contains the description and the value. As a virtual robot can have up to thousand inputs/outputs, be ready to handle a large response. Use [List Descriptions](List Descriptions) to get a detailed description of an input/output.
|
|
14693
14693
|
* @summary List Inputs/Outputs
|
|
@@ -14697,7 +14697,7 @@ declare class VirtualRobotApi extends BaseAPI {
|
|
|
14697
14697
|
* @throws {RequiredError}
|
|
14698
14698
|
* @memberof VirtualRobotApi
|
|
14699
14699
|
*/
|
|
14700
|
-
listIOs(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
14700
|
+
listIOs(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IOs, any>>;
|
|
14701
14701
|
/**
|
|
14702
14702
|
* 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. We recommend to only use the endpoint when the motion group is in monitor mode. In case the motion group is controlled, currently jogging or planning motions, the values are overridden by the controller or an error may occur.
|
|
14703
14703
|
* @summary Set Motion Group State
|
|
@@ -14709,7 +14709,7 @@ declare class VirtualRobotApi extends BaseAPI {
|
|
|
14709
14709
|
* @throws {RequiredError}
|
|
14710
14710
|
* @memberof VirtualRobotApi
|
|
14711
14711
|
*/
|
|
14712
|
-
setMotionGroupState(cell: string, controller: string, id: number, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): Promise<
|
|
14712
|
+
setMotionGroupState(cell: string, controller: string, id: number, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<object, any>>;
|
|
14713
14713
|
/**
|
|
14714
14714
|
* Sets the value of a virtual controller I/O.
|
|
14715
14715
|
* @summary Set I/O
|
|
@@ -14723,7 +14723,7 @@ declare class VirtualRobotApi extends BaseAPI {
|
|
|
14723
14723
|
* @throws {RequiredError}
|
|
14724
14724
|
* @memberof VirtualRobotApi
|
|
14725
14725
|
*/
|
|
14726
|
-
setVirtualRobotIOValue(cell: string, controller: string, io: string, bool?: boolean, integer?: string, _double?: number, options?: RawAxiosRequestConfig): Promise<
|
|
14726
|
+
setVirtualRobotIOValue(cell: string, controller: string, io: string, bool?: boolean, integer?: string, _double?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<object, any>>;
|
|
14727
14727
|
}
|
|
14728
14728
|
/**
|
|
14729
14729
|
* VirtualRobotBehaviorApi - axios parameter creator
|
|
@@ -14853,7 +14853,7 @@ declare class VirtualRobotBehaviorApi extends BaseAPI {
|
|
|
14853
14853
|
* @throws {RequiredError}
|
|
14854
14854
|
* @memberof VirtualRobotBehaviorApi
|
|
14855
14855
|
*/
|
|
14856
|
-
externalJointsStream(cell: string, controller: string, externalJointStreamDatapoint: ExternalJointStreamDatapoint, options?: RawAxiosRequestConfig): Promise<
|
|
14856
|
+
externalJointsStream(cell: string, controller: string, externalJointStreamDatapoint: ExternalJointStreamDatapoint, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupJoints, any>>;
|
|
14857
14857
|
/**
|
|
14858
14858
|
* Get the current robot motion group behavior - please see the setter [setMotionGroupBehavior](setMotionGroupBehavior) and the enum for details.
|
|
14859
14859
|
* @summary Behavior
|
|
@@ -14864,7 +14864,7 @@ declare class VirtualRobotBehaviorApi extends BaseAPI {
|
|
|
14864
14864
|
* @throws {RequiredError}
|
|
14865
14865
|
* @memberof VirtualRobotBehaviorApi
|
|
14866
14866
|
*/
|
|
14867
|
-
getMotionGroupBehavior(cell: string, controller: string, id: number, options?: RawAxiosRequestConfig): Promise<
|
|
14867
|
+
getMotionGroupBehavior(cell: string, controller: string, id: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupBehaviorGetter, any>>;
|
|
14868
14868
|
/**
|
|
14869
14869
|
* Switch robot motion group behavior.
|
|
14870
14870
|
* @summary Switch Behavior
|
|
@@ -14876,7 +14876,7 @@ declare class VirtualRobotBehaviorApi extends BaseAPI {
|
|
|
14876
14876
|
* @throws {RequiredError}
|
|
14877
14877
|
* @memberof VirtualRobotBehaviorApi
|
|
14878
14878
|
*/
|
|
14879
|
-
setMotionGroupBehavior(cell: string, controller: string, id: number, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<
|
|
14879
|
+
setMotionGroupBehavior(cell: string, controller: string, id: number, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<object, any>>;
|
|
14880
14880
|
}
|
|
14881
14881
|
/**
|
|
14882
14882
|
* VirtualRobotModeApi - axios parameter creator
|
|
@@ -15077,7 +15077,7 @@ declare class VirtualRobotModeApi extends BaseAPI {
|
|
|
15077
15077
|
* @throws {RequiredError}
|
|
15078
15078
|
* @memberof VirtualRobotModeApi
|
|
15079
15079
|
*/
|
|
15080
|
-
getCycleTime(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
15080
|
+
getCycleTime(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CycleTime, any>>;
|
|
15081
15081
|
/**
|
|
15082
15082
|
* Requests the Emergency Stop state of the virtual robot controller. Use [getCurrentMotionGroupState](getCurrentMotionGroupState) to get the Emergency Stop state regardless of the controller type. There the Emergency Stop state is visible as the `safety_state`. > **NOTE** > > The Emergency Stop state can only be changed when using virtual robot controllers.
|
|
15083
15083
|
* @summary Get E-Stop State
|
|
@@ -15087,7 +15087,7 @@ declare class VirtualRobotModeApi extends BaseAPI {
|
|
|
15087
15087
|
* @throws {RequiredError}
|
|
15088
15088
|
* @memberof VirtualRobotModeApi
|
|
15089
15089
|
*/
|
|
15090
|
-
getEStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
15090
|
+
getEStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Flag, any>>;
|
|
15091
15091
|
/**
|
|
15092
15092
|
* Requests the Operation Mode of the virtual robot controller. To get the Operation Mode regardless of the controller type use [getCurrentMotionGroupState](getCurrentMotionGroupState). > **NOTE** > > The Operating Mode can only change be changed via API when using virtual robot controllers.
|
|
15093
15093
|
* @summary Get Operation Mode
|
|
@@ -15097,7 +15097,7 @@ declare class VirtualRobotModeApi extends BaseAPI {
|
|
|
15097
15097
|
* @throws {RequiredError}
|
|
15098
15098
|
* @memberof VirtualRobotModeApi
|
|
15099
15099
|
*/
|
|
15100
|
-
getOperationMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
15100
|
+
getOperationMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<OpMode, any>>;
|
|
15101
15101
|
/**
|
|
15102
15102
|
* Activates the Emergency Stop on the virtual robot controller. Activating the Emergency Stop stops the execution of all motions on virtual and physical robot controllers. To return to normal operation the Emergency Stop needs to be released. Use [getCurrentMotionGroupState](getCurrentMotionGroupState) to get the Emergency Stop state regardless of the controller type. There the Emergency Stop state is visible as the `safety_state`. > **NOTE** > > The Emergency Stop state can only be changed via API when using virtual robot controllers.
|
|
15103
15103
|
* @summary Push E-Stop
|
|
@@ -15107,7 +15107,7 @@ declare class VirtualRobotModeApi extends BaseAPI {
|
|
|
15107
15107
|
* @throws {RequiredError}
|
|
15108
15108
|
* @memberof VirtualRobotModeApi
|
|
15109
15109
|
*/
|
|
15110
|
-
pushEStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
15110
|
+
pushEStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<object, any>>;
|
|
15111
15111
|
/**
|
|
15112
15112
|
* Releases the Emergency Stop on the virtual robot controller. Activating the Emergency Stop stops the execution of all motions on virtual and physical robot controllers. To return to normal operation the Emergency Stop needs to be released. Use [getCurrentMotionGroupState](getCurrentMotionGroupState) to get the Emergency Stop state regardless of the controller type. There the Emergency Stop state is visible as the `safety_state`. > **NOTE** > > The Emergency Stop state can only be changed via API when using virtual robot controllers.
|
|
15113
15113
|
* @summary Release E-Stop
|
|
@@ -15117,7 +15117,7 @@ declare class VirtualRobotModeApi extends BaseAPI {
|
|
|
15117
15117
|
* @throws {RequiredError}
|
|
15118
15118
|
* @memberof VirtualRobotModeApi
|
|
15119
15119
|
*/
|
|
15120
|
-
releaseEStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
15120
|
+
releaseEStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<object, any>>;
|
|
15121
15121
|
/**
|
|
15122
15122
|
* 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 Operating Mode can only change be changed via API when using virtual robot controllers.
|
|
15123
15123
|
* @summary Set Operation Mode
|
|
@@ -15128,7 +15128,7 @@ declare class VirtualRobotModeApi extends BaseAPI {
|
|
|
15128
15128
|
* @throws {RequiredError}
|
|
15129
15129
|
* @memberof VirtualRobotModeApi
|
|
15130
15130
|
*/
|
|
15131
|
-
setOperationMode(cell: string, controller: string, mode: SetOperationModeModeEnum, options?: RawAxiosRequestConfig): Promise<
|
|
15131
|
+
setOperationMode(cell: string, controller: string, mode: SetOperationModeModeEnum, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<object, any>>;
|
|
15132
15132
|
}
|
|
15133
15133
|
/**
|
|
15134
15134
|
* @export
|
|
@@ -15422,7 +15422,7 @@ declare class VirtualRobotSetupApi extends BaseAPI {
|
|
|
15422
15422
|
* @throws {RequiredError}
|
|
15423
15423
|
* @memberof VirtualRobotSetupApi
|
|
15424
15424
|
*/
|
|
15425
|
-
addVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<
|
|
15425
|
+
addVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<object, any>>;
|
|
15426
15426
|
/**
|
|
15427
15427
|
* Adds a new [TCP](https://docs.wandelbots.io/latest/vocabulary#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. > **NOTE** > Upon adding or updating a TCP, virtual robots are restarted to apply the new configuration. > What happens during restart: > - Robot visualization may temporarily disappear. > - TCP visualization may be delayed or outdated during the first run. > - Existing connections to the virtual robot are closed and re-established, which introduces a short delay before the TCP is available for use. > > The API call itself **does not wait until the restart and synchronization are complete**. This means that > immediately after a successful response, the TCP may not be available for visualization or program execution.
|
|
15428
15428
|
* @summary Add TCP
|
|
@@ -15434,7 +15434,7 @@ declare class VirtualRobotSetupApi extends BaseAPI {
|
|
|
15434
15434
|
* @throws {RequiredError}
|
|
15435
15435
|
* @memberof VirtualRobotSetupApi
|
|
15436
15436
|
*/
|
|
15437
|
-
addVirtualRobotTcp(cell: string, controller: string, id: number, robotTcp: RobotTcp, options?: RawAxiosRequestConfig): Promise<
|
|
15437
|
+
addVirtualRobotTcp(cell: string, controller: string, id: number, robotTcp: RobotTcp, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<object, any>>;
|
|
15438
15438
|
/**
|
|
15439
15439
|
* 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 which use the deleted coordinate system as a reference. **Important notes:** - When a new coordinate system is added/removed, the **virtual robot is restarted** in the background in order to apply the new configuration. - During this restart: - Robot visualization may temporarily disappear or appear outdated in the UI. - coordinate system changes are not immediately visible in visualizations. - All existing connections to the 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 > **NOTE** > > Upon adding or removing a coordinate system, virtual robots are restarted to apply the new configuration. > What happens during restart: > - Robot visualization may temporarily disappear or appear outdated in the UI. > - Coordinate system changes are not immediately visible in visualizations. > - Existing connections to the virtual robot are closed and re-established, which introduces a short delay before NOVA is fully operational again. > > The API call itself **does not wait until the restart and synchronization are complete**. This means that > immediately after a successful response, the new coordinate system may not be available for visualization or program execution.
|
|
15440
15440
|
* @summary Remove Coordinate System
|
|
@@ -15446,7 +15446,7 @@ declare class VirtualRobotSetupApi extends BaseAPI {
|
|
|
15446
15446
|
* @throws {RequiredError}
|
|
15447
15447
|
* @memberof VirtualRobotSetupApi
|
|
15448
15448
|
*/
|
|
15449
|
-
deleteVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<
|
|
15449
|
+
deleteVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<object, any>>;
|
|
15450
15450
|
/**
|
|
15451
15451
|
* Removes the TCP (Tool Center Point) from the motion group. An unknown TCP is a valid input and will simply be ignored. > **NOTE** > Upon removing a TCP, virtual robots are restarted to apply the new configuration. > What happens during restart: > - Robot visualization may temporarily disappear. > - TCP visualization may be delayed or outdated during the first run. > - Existing connections to the virtual robot are closed and re-established, which introduces a short delay before the TCP is removed. > > The API call itself **does not wait until the restart and synchronization are complete**. This means that immediately after a successful response, the TCP may not be removed.
|
|
15452
15452
|
* @summary Remove TCP
|
|
@@ -15458,7 +15458,7 @@ declare class VirtualRobotSetupApi extends BaseAPI {
|
|
|
15458
15458
|
* @throws {RequiredError}
|
|
15459
15459
|
* @memberof VirtualRobotSetupApi
|
|
15460
15460
|
*/
|
|
15461
|
-
deleteVirtualRobotTcp(cell: string, controller: string, id: number, tcp: string, options?: RawAxiosRequestConfig): Promise<
|
|
15461
|
+
deleteVirtualRobotTcp(cell: string, controller: string, id: number, tcp: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<object, any>>;
|
|
15462
15462
|
/**
|
|
15463
15463
|
* Gets motion group mounting. The motion group is based on the origin of the returned coordinate system.
|
|
15464
15464
|
* @summary Get Mounting
|
|
@@ -15469,7 +15469,7 @@ declare class VirtualRobotSetupApi extends BaseAPI {
|
|
|
15469
15469
|
* @throws {RequiredError}
|
|
15470
15470
|
* @memberof VirtualRobotSetupApi
|
|
15471
15471
|
*/
|
|
15472
|
-
getVirtualRobotMounting(cell: string, controller: string, id: number, options?: RawAxiosRequestConfig): Promise<
|
|
15472
|
+
getVirtualRobotMounting(cell: string, controller: string, id: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem, any>>;
|
|
15473
15473
|
/**
|
|
15474
15474
|
* Lists all coordinate systems on the robot controller.
|
|
15475
15475
|
* @summary List Coordinate Systems
|
|
@@ -15479,7 +15479,7 @@ declare class VirtualRobotSetupApi extends BaseAPI {
|
|
|
15479
15479
|
* @throws {RequiredError}
|
|
15480
15480
|
* @memberof VirtualRobotSetupApi
|
|
15481
15481
|
*/
|
|
15482
|
-
listVirtualRobotCoordinateSystems(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
15482
|
+
listVirtualRobotCoordinateSystems(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystems, any>>;
|
|
15483
15483
|
/**
|
|
15484
15484
|
* Lists TCPs of the motion group. An empty TCP list is valid, for example for external axes.
|
|
15485
15485
|
* @summary List TCPs
|
|
@@ -15490,7 +15490,7 @@ declare class VirtualRobotSetupApi extends BaseAPI {
|
|
|
15490
15490
|
* @throws {RequiredError}
|
|
15491
15491
|
* @memberof VirtualRobotSetupApi
|
|
15492
15492
|
*/
|
|
15493
|
-
listVirtualRobotTcps(cell: string, controller: string, id: number, options?: RawAxiosRequestConfig): Promise<
|
|
15493
|
+
listVirtualRobotTcps(cell: string, controller: string, id: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotTcps, any>>;
|
|
15494
15494
|
/**
|
|
15495
15495
|
* 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 name - An offset in another coordinate system, referenced by the unique identifier of the reference coordinate system. > **NOTE** > Changing the mounting configuration is considered a configuration change. > > Upon updating the mounting to another coordinate system, virtual robots are restarted to apply the new configuration. > What happens during restart: > - Robot visualization may temporarily disappear or not reflect the updated mounting. > - Motion group state and coordinate system alignment may not be instantly updated. > - Existing connections to the virtual robot are closed and re-established, which introduces a short delay before NOVA is fully operational again. > > The API call itself **does not wait until the restart and synchronization are complete**. This means that > immediately after a successful response, the new mounting may not be available for visualization or program execution.
|
|
15496
15496
|
* @summary Set Mounting
|
|
@@ -15502,7 +15502,7 @@ declare class VirtualRobotSetupApi extends BaseAPI {
|
|
|
15502
15502
|
* @throws {RequiredError}
|
|
15503
15503
|
* @memberof VirtualRobotSetupApi
|
|
15504
15504
|
*/
|
|
15505
|
-
setVirtualRobotMounting(cell: string, controller: string, id: number, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<
|
|
15505
|
+
setVirtualRobotMounting(cell: string, controller: string, id: number, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem, any>>;
|
|
15506
15506
|
}
|
|
15507
15507
|
//#endregion
|
|
15508
15508
|
export { AbbController, AbbControllerEgmServer, AbbControllerKindEnum, ActivateLicenseRequest, AddRequest, AllJointPositionsRequest, AllJointPositionsResponse, ApiVersion, App, ApplicationApi, ApplicationApiAxiosParamCreator, ApplicationApiFactory, ApplicationApiFp, ArrayInput, ArrayOutput, BASE_PATH, BaseAPI, Behavior, BlendingAuto, BlendingAutoBlendingNameEnum, BlendingPosition, BlendingPositionBlendingNameEnum, Box, Box2, Box2BoxTypeEnum, Box2ShapeTypeEnum, Box3, Box3ShapeTypeEnum, Box3TypeEnum, BoxTypeEnum, COLLECTION_FORMATS, Capsule, Capsule2, Capsule2ShapeTypeEnum, Capsule3, Capsule3ShapeTypeEnum, Capture, Cell, CellApi, CellApiAxiosParamCreator, CellApiFactory, CellApiFp, Circle, CodeWithArguments, CollectionValue, Collider, ColliderInput, ColliderOutput, ColliderOutputShape, ColliderShape, Collision, CollisionContact, CollisionMotionGroup, CollisionMotionGroupAssembly, CollisionRobotConfigurationInput, CollisionRobotConfigurationOutput, CollisionScene, CollisionSceneAssembly, Command, CommandSettings, Comparator, Compound, Configuration, ConfigurationParameters, ContainerEnvironmentInner, ContainerImage, ContainerImageSecretsInner, ContainerResources, ContainerStorage, ControllerApi, ControllerApiAxiosParamCreator, ControllerApiFactory, ControllerApiFp, ControllerCapabilities, ControllerIOsApi, ControllerIOsApiAxiosParamCreator, ControllerIOsApiFactory, ControllerIOsApiFp, ControllerInstance, ControllerInstanceList, ConvexHull, ConvexHull2, ConvexHull2ShapeTypeEnum, ConvexHull3, ConvexHull3ShapeTypeEnum, CoordinateSystem, CoordinateSystems, CoordinateSystemsApi, CoordinateSystemsApiAxiosParamCreator, CoordinateSystemsApiFactory, CoordinateSystemsApiFp, CreateDeviceRequestInner, CreateProgramRun200Response, CreateProgramRunRequest, CreateTrigger200Response, CreateTriggerRequest, CreateTriggerRequestConfig, CubicSpline, CubicSplineCubicSplineParameter, CubicSplineParameter, CycleTime, Cylinder, Cylinder2, Cylinder2ShapeTypeEnum, Cylinder3, Cylinder3ShapeTypeEnum, DHParameter, DeviceConfigurationApi, DeviceConfigurationApiAxiosParamCreator, DeviceConfigurationApiFactory, DeviceConfigurationApiFp, Direction, DirectionJoggingRequest, ExecuteTrajectoryRequest, ExecuteTrajectoryResponse, ExecutionResult, ExternalJointStreamDatapoint, ExternalJointStreamDatapointValue, FanucController, FanucControllerKindEnum, FeedbackCollision, FeedbackCollisionErrorFeedbackNameEnum, FeedbackJointLimitExceeded, FeedbackJointLimitExceededErrorFeedbackNameEnum, FeedbackOutOfWorkspace, FeedbackOutOfWorkspaceErrorFeedbackNameEnum, FeedbackSingularity, FeedbackSingularityErrorFeedbackNameEnum, Flag, ForceVector, Geometry, GetAllProgramRuns200Response, GetAllTriggers200Response, GetDefaultLinkChainMotionGroupModelEnum, GetModeResponse, GetTrajectoryResponse, GetTrajectorySampleResponse, GoogleProtobufAny, HTTPExceptionResponse, HTTPValidationError, HTTPValidationError2, IO, IODescription, IODescriptionTypeEnum, IODescriptionUnitEnum, IODescriptionValueTypeEnum, IODirectionEnum, IOValue, IOs, ImageCredentials, InfoServiceCapabilities, InitializeMovementRequest, InitializeMovementResponse, InitializeMovementResponseInitResponse, JoggingResponse, JoggingResponseMovementStateEnum, JoggingServiceCapabilities, JointJoggingRequest, JointLimit, JointLimitExceeded, JointLimitJointEnum, JointPositionRequest, JointTrajectory, Joints, KinematicServiceCapabilities, KukaController, KukaControllerKindEnum, KukaControllerRsiServer, LibraryProgramApi, LibraryProgramApiAxiosParamCreator, LibraryProgramApiFactory, LibraryProgramApiFp, LibraryProgramMetadataApi, LibraryProgramMetadataApiAxiosParamCreator, LibraryProgramMetadataApiFactory, LibraryProgramMetadataApiFp, LibraryRecipeApi, LibraryRecipeApiAxiosParamCreator, LibraryRecipeApiFactory, LibraryRecipeApiFp, LibraryRecipeMetadataApi, LibraryRecipeMetadataApiAxiosParamCreator, LibraryRecipeMetadataApiFactory, LibraryRecipeMetadataApiFp, License, LicenseApi, LicenseApiAxiosParamCreator, LicenseApiFactory, LicenseApiFp, LicenseStatus, LicenseStatusEnum, LimitSettings, LimitsOverride, ListDevices200ResponseInner, ListIODescriptionsResponse, ListIOValuesResponse, ListPayloadsResponse, ListProgramMetadataResponse, ListRecipeMetadataResponse, ListResponse, ListTcpsResponse, Manufacturer, ModeChangeResponse, ModelError, MotionApi, MotionApiAxiosParamCreator, MotionApiFactory, MotionApiFp, MotionCommand, MotionCommandBlending, MotionCommandPath, MotionGroupApi, MotionGroupApiAxiosParamCreator, MotionGroupApiFactory, MotionGroupApiFp, MotionGroupBehaviorGetter, MotionGroupInfo, MotionGroupInfos, MotionGroupInfosApi, MotionGroupInfosApiAxiosParamCreator, MotionGroupInfosApiFactory, MotionGroupInfosApiFp, MotionGroupInstance, MotionGroupInstanceList, MotionGroupJoggingApi, MotionGroupJoggingApiAxiosParamCreator, MotionGroupJoggingApiFactory, MotionGroupJoggingApiFp, MotionGroupJoints, MotionGroupKinematicApi, MotionGroupKinematicApiAxiosParamCreator, MotionGroupKinematicApiFactory, MotionGroupKinematicApiFp, MotionGroupPhysical, MotionGroupSpecification, MotionGroupState, MotionGroupStateJointLimitReached, MotionGroupStateResponse, MotionId, MotionIdsListResponse, MotionVector, Mounting, MoveRequest, MoveResponse, MoveToTrajectoryViaJointPTPRequest, Movement, MovementError, MovementErrorError, MovementMovement, OpMode, OpModeModeEnum, OpcuaNodeValueTriggerConfig, OpcuaNodeValueTriggerConfigNodeValue, OptimizerSetup, OutOfWorkspace, Path, PathCartesianPTP, PathCartesianPTPPathDefinitionNameEnum, PathCircle, PathCirclePathDefinitionNameEnum, PathCubicSpline, PathCubicSplinePathDefinitionNameEnum, PathJointPTP, PathJointPTPPathDefinitionNameEnum, PathLine, PathLinePathDefinitionNameEnum, PauseMovementRequest, PauseMovementResponse, PauseMovementResponsePauseResponse, PauseOnIO, Payload, PlanCollisionFreePTPRequest, PlanCollisionFreePTPRequestTarget, PlanFailedOnTrajectoryResponse, PlanFailedResponse, PlanRequest, PlanResponse, PlanSuccessfulResponse, PlanTrajectoryFailedResponse, PlanTrajectoryFailedResponseErrorFeedback, PlanTrajectoryRequest, PlanTrajectoryResponse, PlanTrajectoryResponseResponse, Plane2, Plane2ShapeTypeEnum, Plane3, Plane3ShapeTypeEnum, PlannedMotion, PlannerPose, PlanningLimits, PlanningLimitsLimitRange, PlaybackSpeedRequest, PlaybackSpeedResponse, PlaybackSpeedResponsePlaybackSpeedResponse, PointCloud, Pose, Pose2, ProgramApi, ProgramApiAxiosParamCreator, ProgramApiFactory, ProgramApiFp, ProgramMetadata, ProgramOperatorApi, ProgramOperatorApiAxiosParamCreator, ProgramOperatorApiFactory, ProgramOperatorApiFp, ProgramRun, ProgramRunObject, ProgramRunState, ProgramRunnerReference, ProgramValuesApi, ProgramValuesApiAxiosParamCreator, ProgramValuesApiFactory, ProgramValuesApiFp, PyjectoryDatatypesCorePose, PyjectoryDatatypesSerializerOrientation, PyjectoryDatatypesSerializerPose, PyjectoryDatatypesSerializerPosition, PyripheryEtcdETCDConfiguration, PyripheryHardwareIsaacIsaacConfiguration, PyripheryOpcuaOPCUAConfiguration, PyripheryPyraeControllerControllerConfiguration, PyripheryPyraeRobotRobotConfiguration, PyripheryPyraeRobotRobotConfigurationTypeEnum, PyripheryRoboticsConfigurableCollisionSceneConfigurableCollisionSceneConfigurationInput, PyripheryRoboticsConfigurableCollisionSceneConfigurableCollisionSceneConfigurationOutput, PyripheryRoboticsRobotcellTimerConfiguration, PyripheryRoboticsRobotcellTimerConfigurationTypeEnum, PyripheryRoboticsSimulationRobotWithViewOpen3dConfiguration, PyripheryRoboticsSimulationSimulatedIOConfiguration, PyripheryRoboticsSimulationSimulatedOPCUAConfiguration, Quaternion, RecipeMetadata, Rectangle, Rectangle2, Rectangle2ShapeTypeEnum, Rectangle3, Rectangle3ShapeTypeEnum, RectangularCapsule, RectangularCapsule2, RectangularCapsule2ShapeTypeEnum, RectangularCapsule3, RectangularCapsule3ShapeTypeEnum, ReleaseChannel, Request, Request1, RequestArgs, RequiredError, ResponseGetValueProgramsValuesKeyGet, ResponseGetValuesProgramsValuesGetValue, RobotController, RobotControllerConfiguration, RobotControllerState, RobotControllerStateOperationModeEnum, RobotControllerStateSafetyStateEnum, RobotLinkGeometry, RobotState, RobotSystemMode, RobotTcp, RobotTcps, RotationAngleTypes, RotationAngles, SafetyConfiguration, SafetySetup, SafetySetupSafetySettings, SafetySetupSafetySettingsSafetyStateEnum, SafetySetupSafetyZone, SafetyZone, SafetyZoneLimits, SafetyZoneViolation, ServiceStatus, ServiceStatusPhase, ServiceStatusSeverity, ServiceStatusStatus, SetDefaultModeModeEnum, SetIO, SetOperationModeModeEnum, SetPlaybackSpeed, SingleJointLimit, SingleJointLimitJointEnum, Singularity, SingularitySingularityTypeEnum, SingularityTypeEnum, Sphere, Sphere2, Sphere2ShapeTypeEnum, Sphere3, Sphere3ShapeTypeEnum, Standstill, StandstillReason, StandstillStandstill, StartMovementRequest, StartOnIO, Status, StopResponse, StopResponseStopCodeEnum, StoreCollisionComponentsApi, StoreCollisionComponentsApiAxiosParamCreator, StoreCollisionComponentsApiFactory, StoreCollisionComponentsApiFp, StoreCollisionScenesApi, StoreCollisionScenesApiAxiosParamCreator, StoreCollisionScenesApiFactory, StoreCollisionScenesApiFp, StoreObjectApi, StoreObjectApiAxiosParamCreator, StoreObjectApiFactory, StoreObjectApiFp, StoreValue, StreamMoveBackward, StreamMoveForward, StreamMovePlaybackSpeed, StreamMoveRequest, StreamMoveResponse, StreamMoveToTrajectory, StreamStop, SystemApi, SystemApiAxiosParamCreator, SystemApiFactory, SystemApiFp, TcpPose, TcpPoseRequest, ToolGeometry, TrajectorySample, TriggerObject, TriggerType, UniversalrobotsController, UniversalrobotsControllerKindEnum, UpdateNovaVersionRequest, UpdateProgramMetadataRequest, UpdateRecipeMetadataRequest, UpdateTriggerRequest, ValidationError, ValidationError2, ValidationError2LocInner, ValidationErrorLocInner, Value, Vector3d, VersionApi, VersionApiAxiosParamCreator, VersionApiFactory, VersionApiFp, VersionNumber, VirtualController, VirtualControllerKindEnum, VirtualControllerTypes, VirtualRobotApi, VirtualRobotApiAxiosParamCreator, VirtualRobotApiFactory, VirtualRobotApiFp, VirtualRobotBehaviorApi, VirtualRobotBehaviorApiAxiosParamCreator, VirtualRobotBehaviorApiFactory, VirtualRobotBehaviorApiFp, VirtualRobotConfiguration, VirtualRobotModeApi, VirtualRobotModeApiAxiosParamCreator, VirtualRobotModeApiFactory, VirtualRobotModeApiFp, VirtualRobotSetupApi, VirtualRobotSetupApiAxiosParamCreator, VirtualRobotSetupApiFactory, VirtualRobotSetupApiFp, WaitForIOEventComparisonTypeEnum, YaskawaController, YaskawaControllerKindEnum, operationServerMap };
|