@wandelbots/nova-api 25.10.0-dev.37 → 25.10.0-dev.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/v1/index.d.cts +177 -177
- package/dist/v1/index.d.ts +177 -177
- package/dist/v2/index.d.cts +130 -130
- package/dist/v2/index.d.ts +130 -130
- package/package.json +1 -1
package/dist/v1/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as axios128 from "axios";
|
|
2
2
|
import { AxiosInstance, AxiosPromise, RawAxiosRequestConfig } from "axios";
|
|
3
3
|
|
|
4
4
|
//#region v1/configuration.d.ts
|
|
@@ -7828,7 +7828,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
7828
7828
|
* @throws {RequiredError}
|
|
7829
7829
|
* @memberof ApplicationApi
|
|
7830
7830
|
*/
|
|
7831
|
-
addApp(cell: string, app: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
7831
|
+
addApp(cell: string, app: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
7832
7832
|
/**
|
|
7833
7833
|
* Delete all GUI applications from the cell.
|
|
7834
7834
|
* @summary Clear Applications
|
|
@@ -7838,7 +7838,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
7838
7838
|
* @throws {RequiredError}
|
|
7839
7839
|
* @memberof ApplicationApi
|
|
7840
7840
|
*/
|
|
7841
|
-
clearApps(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
7841
|
+
clearApps(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
7842
7842
|
/**
|
|
7843
7843
|
* Delete a GUI application from the cell.
|
|
7844
7844
|
* @summary Delete Application
|
|
@@ -7849,7 +7849,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
7849
7849
|
* @throws {RequiredError}
|
|
7850
7850
|
* @memberof ApplicationApi
|
|
7851
7851
|
*/
|
|
7852
|
-
deleteApp(cell: string, app: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
7852
|
+
deleteApp(cell: string, app: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
7853
7853
|
/**
|
|
7854
7854
|
* 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.
|
|
7855
7855
|
* @summary Configuration
|
|
@@ -7859,7 +7859,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
7859
7859
|
* @throws {RequiredError}
|
|
7860
7860
|
* @memberof ApplicationApi
|
|
7861
7861
|
*/
|
|
7862
|
-
getApp(cell: string, app: string, options?: RawAxiosRequestConfig): Promise<
|
|
7862
|
+
getApp(cell: string, app: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<App, any>>;
|
|
7863
7863
|
/**
|
|
7864
7864
|
* 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.
|
|
7865
7865
|
* @summary List Applications
|
|
@@ -7868,7 +7868,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
7868
7868
|
* @throws {RequiredError}
|
|
7869
7869
|
* @memberof ApplicationApi
|
|
7870
7870
|
*/
|
|
7871
|
-
listApps(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
7871
|
+
listApps(cell: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<string[], any>>;
|
|
7872
7872
|
/**
|
|
7873
7873
|
* Update the configuration of a GUI application in the cell.
|
|
7874
7874
|
* @summary Update Configuration
|
|
@@ -7880,7 +7880,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
7880
7880
|
* @throws {RequiredError}
|
|
7881
7881
|
* @memberof ApplicationApi
|
|
7882
7882
|
*/
|
|
7883
|
-
updateApp(cell: string, app: string, app2: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
7883
|
+
updateApp(cell: string, app: string, app2: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
7884
7884
|
}
|
|
7885
7885
|
/**
|
|
7886
7886
|
* CellApi - axios parameter creator
|
|
@@ -8069,7 +8069,7 @@ declare class CellApi extends BaseAPI {
|
|
|
8069
8069
|
* @throws {RequiredError}
|
|
8070
8070
|
* @memberof CellApi
|
|
8071
8071
|
*/
|
|
8072
|
-
deleteCell(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
8072
|
+
deleteCell(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
8073
8073
|
/**
|
|
8074
8074
|
* 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.
|
|
8075
8075
|
* @summary Add Cell
|
|
@@ -8079,7 +8079,7 @@ declare class CellApi extends BaseAPI {
|
|
|
8079
8079
|
* @throws {RequiredError}
|
|
8080
8080
|
* @memberof CellApi
|
|
8081
8081
|
*/
|
|
8082
|
-
deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
8082
|
+
deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
8083
8083
|
/**
|
|
8084
8084
|
* 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.
|
|
8085
8085
|
* @summary Configuration
|
|
@@ -8088,7 +8088,7 @@ declare class CellApi extends BaseAPI {
|
|
|
8088
8088
|
* @throws {RequiredError}
|
|
8089
8089
|
* @memberof CellApi
|
|
8090
8090
|
*/
|
|
8091
|
-
getCell(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
8091
|
+
getCell(cell: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<Cell, any>>;
|
|
8092
8092
|
/**
|
|
8093
8093
|
* List the status of all cell resources.
|
|
8094
8094
|
* @summary Service Status
|
|
@@ -8097,7 +8097,7 @@ declare class CellApi extends BaseAPI {
|
|
|
8097
8097
|
* @throws {RequiredError}
|
|
8098
8098
|
* @memberof CellApi
|
|
8099
8099
|
*/
|
|
8100
|
-
getCellStatus(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
8100
|
+
getCellStatus(cell: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ServiceStatus[], any>>;
|
|
8101
8101
|
/**
|
|
8102
8102
|
* List all deployed cell names. If no cells are deployed, an empty list is returned.
|
|
8103
8103
|
* @summary List Cells
|
|
@@ -8105,7 +8105,7 @@ declare class CellApi extends BaseAPI {
|
|
|
8105
8105
|
* @throws {RequiredError}
|
|
8106
8106
|
* @memberof CellApi
|
|
8107
8107
|
*/
|
|
8108
|
-
listCells(options?: RawAxiosRequestConfig): Promise<
|
|
8108
|
+
listCells(options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<string[], any>>;
|
|
8109
8109
|
/**
|
|
8110
8110
|
* Update the definition of the entire Cell.
|
|
8111
8111
|
* @summary Update Configuration
|
|
@@ -8116,7 +8116,7 @@ declare class CellApi extends BaseAPI {
|
|
|
8116
8116
|
* @throws {RequiredError}
|
|
8117
8117
|
* @memberof CellApi
|
|
8118
8118
|
*/
|
|
8119
|
-
updateCell(cell: string, cell2: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
8119
|
+
updateCell(cell: string, cell2: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
8120
8120
|
}
|
|
8121
8121
|
/**
|
|
8122
8122
|
* ControllerApi - axios parameter creator
|
|
@@ -8549,7 +8549,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
8549
8549
|
* @throws {RequiredError}
|
|
8550
8550
|
* @memberof ControllerApi
|
|
8551
8551
|
*/
|
|
8552
|
-
addRobotController(cell: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
8552
|
+
addRobotController(cell: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
8553
8553
|
/**
|
|
8554
8554
|
* 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.
|
|
8555
8555
|
* @summary Clear Robot Controllers
|
|
@@ -8559,7 +8559,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
8559
8559
|
* @throws {RequiredError}
|
|
8560
8560
|
* @memberof ControllerApi
|
|
8561
8561
|
*/
|
|
8562
|
-
clearRobotControllers(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
8562
|
+
clearRobotControllers(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
8563
8563
|
/**
|
|
8564
8564
|
* Delete a robot controller from the cell. <!-- theme: warning --> > **WARNING** > > Using it in conjunction with the settings app may lead to unpredictable behavior.
|
|
8565
8565
|
* @summary Delete Robot Controller
|
|
@@ -8570,7 +8570,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
8570
8570
|
* @throws {RequiredError}
|
|
8571
8571
|
* @memberof ControllerApi
|
|
8572
8572
|
*/
|
|
8573
|
-
deleteRobotController(cell: string, controller: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
8573
|
+
deleteRobotController(cell: string, controller: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
8574
8574
|
/**
|
|
8575
8575
|
* Get the current state of a robot controller.
|
|
8576
8576
|
* @summary State of Device
|
|
@@ -8580,7 +8580,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
8580
8580
|
* @throws {RequiredError}
|
|
8581
8581
|
* @memberof ControllerApi
|
|
8582
8582
|
*/
|
|
8583
|
-
getCurrentRobotControllerState(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
8583
|
+
getCurrentRobotControllerState(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<RobotControllerState, any>>;
|
|
8584
8584
|
/**
|
|
8585
8585
|
* 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).
|
|
8586
8586
|
* @summary Current Mode
|
|
@@ -8590,7 +8590,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
8590
8590
|
* @throws {RequiredError}
|
|
8591
8591
|
* @memberof ControllerApi
|
|
8592
8592
|
*/
|
|
8593
|
-
getMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
8593
|
+
getMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<GetModeResponse, any>>;
|
|
8594
8594
|
/**
|
|
8595
8595
|
* Get the configuration for a robot controller.
|
|
8596
8596
|
* @summary Robot Controller Configuration
|
|
@@ -8600,7 +8600,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
8600
8600
|
* @throws {RequiredError}
|
|
8601
8601
|
* @memberof ControllerApi
|
|
8602
8602
|
*/
|
|
8603
|
-
getRobotController(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
8603
|
+
getRobotController(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<RobotController, any>>;
|
|
8604
8604
|
/**
|
|
8605
8605
|
* Lists supported operating modes. Usually cobots support free drive and control, industrial robots only support control.
|
|
8606
8606
|
* @summary Supported Motion Modes
|
|
@@ -8610,7 +8610,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
8610
8610
|
* @throws {RequiredError}
|
|
8611
8611
|
* @memberof ControllerApi
|
|
8612
8612
|
*/
|
|
8613
|
-
getSupportedModes(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
8613
|
+
getSupportedModes(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ControllerCapabilities, any>>;
|
|
8614
8614
|
/**
|
|
8615
8615
|
* 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.
|
|
8616
8616
|
* @summary Virtual Robot Configuration
|
|
@@ -8620,7 +8620,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
8620
8620
|
* @throws {RequiredError}
|
|
8621
8621
|
* @memberof ControllerApi
|
|
8622
8622
|
*/
|
|
8623
|
-
getVirtualRobotConfiguration(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
8623
|
+
getVirtualRobotConfiguration(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<VirtualRobotConfiguration, any>>;
|
|
8624
8624
|
/**
|
|
8625
8625
|
* List all configured robot controllers.
|
|
8626
8626
|
* @summary List Robot Controllers
|
|
@@ -8629,7 +8629,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
8629
8629
|
* @throws {RequiredError}
|
|
8630
8630
|
* @memberof ControllerApi
|
|
8631
8631
|
*/
|
|
8632
|
-
listControllers(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
8632
|
+
listControllers(cell: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ControllerInstanceList, any>>;
|
|
8633
8633
|
/**
|
|
8634
8634
|
* 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.
|
|
8635
8635
|
* @summary Set Default Mode
|
|
@@ -8640,7 +8640,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
8640
8640
|
* @throws {RequiredError}
|
|
8641
8641
|
* @memberof ControllerApi
|
|
8642
8642
|
*/
|
|
8643
|
-
setDefaultMode(cell: string, controller: string, mode: SetDefaultModeModeEnum, options?: RawAxiosRequestConfig): Promise<
|
|
8643
|
+
setDefaultMode(cell: string, controller: string, mode: SetDefaultModeModeEnum, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
8644
8644
|
/**
|
|
8645
8645
|
* 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.
|
|
8646
8646
|
* @summary Stream Free Drive Mode
|
|
@@ -8651,7 +8651,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
8651
8651
|
* @throws {RequiredError}
|
|
8652
8652
|
* @memberof ControllerApi
|
|
8653
8653
|
*/
|
|
8654
|
-
streamFreeDrive(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<
|
|
8654
|
+
streamFreeDrive(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<RobotControllerState, any>>;
|
|
8655
8655
|
/**
|
|
8656
8656
|
* 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.
|
|
8657
8657
|
* @summary Stream Mode Change
|
|
@@ -8661,7 +8661,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
8661
8661
|
* @throws {RequiredError}
|
|
8662
8662
|
* @memberof ControllerApi
|
|
8663
8663
|
*/
|
|
8664
|
-
streamModeChange(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
8664
|
+
streamModeChange(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ModeChangeResponse, any>>;
|
|
8665
8665
|
/**
|
|
8666
8666
|
* Receive updates of the state of a robot controller.
|
|
8667
8667
|
* @summary Stream State of Device
|
|
@@ -8672,7 +8672,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
8672
8672
|
* @throws {RequiredError}
|
|
8673
8673
|
* @memberof ControllerApi
|
|
8674
8674
|
*/
|
|
8675
|
-
streamRobotControllerState(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<
|
|
8675
|
+
streamRobotControllerState(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<RobotControllerState, any>>;
|
|
8676
8676
|
/**
|
|
8677
8677
|
* 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).
|
|
8678
8678
|
* @summary Update Robot Controller Configuration
|
|
@@ -8684,7 +8684,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
8684
8684
|
* @throws {RequiredError}
|
|
8685
8685
|
* @memberof ControllerApi
|
|
8686
8686
|
*/
|
|
8687
|
-
updateRobotController(cell: string, controller: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
8687
|
+
updateRobotController(cell: string, controller: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
8688
8688
|
}
|
|
8689
8689
|
/**
|
|
8690
8690
|
* @export
|
|
@@ -8891,7 +8891,7 @@ declare class ControllerIOsApi extends BaseAPI {
|
|
|
8891
8891
|
* @throws {RequiredError}
|
|
8892
8892
|
* @memberof ControllerIOsApi
|
|
8893
8893
|
*/
|
|
8894
|
-
listIODescriptions(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<
|
|
8894
|
+
listIODescriptions(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ListIODescriptionsResponse, any>>;
|
|
8895
8895
|
/**
|
|
8896
8896
|
* 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).
|
|
8897
8897
|
* @summary Values
|
|
@@ -8902,7 +8902,7 @@ declare class ControllerIOsApi extends BaseAPI {
|
|
|
8902
8902
|
* @throws {RequiredError}
|
|
8903
8903
|
* @memberof ControllerIOsApi
|
|
8904
8904
|
*/
|
|
8905
|
-
listIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<
|
|
8905
|
+
listIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ListIOValuesResponse, any>>;
|
|
8906
8906
|
/**
|
|
8907
8907
|
* 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.
|
|
8908
8908
|
* @summary Set Values
|
|
@@ -8913,7 +8913,7 @@ declare class ControllerIOsApi extends BaseAPI {
|
|
|
8913
8913
|
* @throws {RequiredError}
|
|
8914
8914
|
* @memberof ControllerIOsApi
|
|
8915
8915
|
*/
|
|
8916
|
-
setOutputValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<
|
|
8916
|
+
setOutputValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
8917
8917
|
/**
|
|
8918
8918
|
* 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.
|
|
8919
8919
|
* @summary Stream Values
|
|
@@ -8924,7 +8924,7 @@ declare class ControllerIOsApi extends BaseAPI {
|
|
|
8924
8924
|
* @throws {RequiredError}
|
|
8925
8925
|
* @memberof ControllerIOsApi
|
|
8926
8926
|
*/
|
|
8927
|
-
streamIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<
|
|
8927
|
+
streamIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ListIOValuesResponse, any>>;
|
|
8928
8928
|
/**
|
|
8929
8929
|
* 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.
|
|
8930
8930
|
* @summary Wait For
|
|
@@ -8939,7 +8939,7 @@ declare class ControllerIOsApi extends BaseAPI {
|
|
|
8939
8939
|
* @throws {RequiredError}
|
|
8940
8940
|
* @memberof ControllerIOsApi
|
|
8941
8941
|
*/
|
|
8942
|
-
waitForIOEvent(cell: string, controller: string, io: string, comparisonType: WaitForIOEventComparisonTypeEnum, booleanValue?: boolean, integerValue?: string, floatingValue?: number, options?: RawAxiosRequestConfig): Promise<
|
|
8942
|
+
waitForIOEvent(cell: string, controller: string, io: string, comparisonType: WaitForIOEventComparisonTypeEnum, booleanValue?: boolean, integerValue?: string, floatingValue?: number, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<boolean, any>>;
|
|
8943
8943
|
}
|
|
8944
8944
|
/**
|
|
8945
8945
|
* @export
|
|
@@ -9125,7 +9125,7 @@ declare class CoordinateSystemsApi extends BaseAPI {
|
|
|
9125
9125
|
* @throws {RequiredError}
|
|
9126
9126
|
* @memberof CoordinateSystemsApi
|
|
9127
9127
|
*/
|
|
9128
|
-
addCoordinateSystem(cell: string, addRequest: AddRequest, options?: RawAxiosRequestConfig): Promise<
|
|
9128
|
+
addCoordinateSystem(cell: string, addRequest: AddRequest, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<CoordinateSystem, any>>;
|
|
9129
9129
|
/**
|
|
9130
9130
|
* 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.
|
|
9131
9131
|
* @summary Delete
|
|
@@ -9135,7 +9135,7 @@ declare class CoordinateSystemsApi extends BaseAPI {
|
|
|
9135
9135
|
* @throws {RequiredError}
|
|
9136
9136
|
* @memberof CoordinateSystemsApi
|
|
9137
9137
|
*/
|
|
9138
|
-
deleteCoordinateSystem(cell: string, coordinateSystem: string, options?: RawAxiosRequestConfig): Promise<
|
|
9138
|
+
deleteCoordinateSystem(cell: string, coordinateSystem: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
9139
9139
|
/**
|
|
9140
9140
|
* 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.
|
|
9141
9141
|
* @summary Description
|
|
@@ -9146,7 +9146,7 @@ declare class CoordinateSystemsApi extends BaseAPI {
|
|
|
9146
9146
|
* @throws {RequiredError}
|
|
9147
9147
|
* @memberof CoordinateSystemsApi
|
|
9148
9148
|
*/
|
|
9149
|
-
getCoordinateSystem(cell: string, coordinateSystem: string, rotationType?: RotationAngleTypes, options?: RawAxiosRequestConfig): Promise<
|
|
9149
|
+
getCoordinateSystem(cell: string, coordinateSystem: string, rotationType?: RotationAngleTypes, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<CoordinateSystem, any>>;
|
|
9150
9150
|
/**
|
|
9151
9151
|
* 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.
|
|
9152
9152
|
* @summary List
|
|
@@ -9156,7 +9156,7 @@ declare class CoordinateSystemsApi extends BaseAPI {
|
|
|
9156
9156
|
* @throws {RequiredError}
|
|
9157
9157
|
* @memberof CoordinateSystemsApi
|
|
9158
9158
|
*/
|
|
9159
|
-
listCoordinateSystems(cell: string, rotationType?: RotationAngleTypes, options?: RawAxiosRequestConfig): Promise<
|
|
9159
|
+
listCoordinateSystems(cell: string, rotationType?: RotationAngleTypes, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ListResponse, any>>;
|
|
9160
9160
|
/**
|
|
9161
9161
|
* Transform a pose to another base.
|
|
9162
9162
|
* @summary Transform
|
|
@@ -9167,7 +9167,7 @@ declare class CoordinateSystemsApi extends BaseAPI {
|
|
|
9167
9167
|
* @throws {RequiredError}
|
|
9168
9168
|
* @memberof CoordinateSystemsApi
|
|
9169
9169
|
*/
|
|
9170
|
-
transformInCoordinateSystem(cell: string, coordinateSystem: string, pose: Pose, options?: RawAxiosRequestConfig): Promise<
|
|
9170
|
+
transformInCoordinateSystem(cell: string, coordinateSystem: string, pose: Pose, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<Pose, any>>;
|
|
9171
9171
|
}
|
|
9172
9172
|
/**
|
|
9173
9173
|
* DeviceConfigurationApi - axios parameter creator
|
|
@@ -9347,7 +9347,7 @@ declare class DeviceConfigurationApi extends BaseAPI {
|
|
|
9347
9347
|
* @throws {RequiredError}
|
|
9348
9348
|
* @memberof DeviceConfigurationApi
|
|
9349
9349
|
*/
|
|
9350
|
-
clearDevices(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
9350
|
+
clearDevices(cell: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
9351
9351
|
/**
|
|
9352
9352
|
* 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.
|
|
9353
9353
|
* @summary Create Devices
|
|
@@ -9358,7 +9358,7 @@ declare class DeviceConfigurationApi extends BaseAPI {
|
|
|
9358
9358
|
* @throws {RequiredError}
|
|
9359
9359
|
* @memberof DeviceConfigurationApi
|
|
9360
9360
|
*/
|
|
9361
|
-
createDevice(cell: string, createDeviceRequestInner: Array<CreateDeviceRequestInner>, options?: RawAxiosRequestConfig): Promise<
|
|
9361
|
+
createDevice(cell: string, createDeviceRequestInner: Array<CreateDeviceRequestInner>, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<any, any>>;
|
|
9362
9362
|
/**
|
|
9363
9363
|
* Deprecated endpoint. Deletes a specific device from the cell.
|
|
9364
9364
|
* @summary Delete Device
|
|
@@ -9369,7 +9369,7 @@ declare class DeviceConfigurationApi extends BaseAPI {
|
|
|
9369
9369
|
* @throws {RequiredError}
|
|
9370
9370
|
* @memberof DeviceConfigurationApi
|
|
9371
9371
|
*/
|
|
9372
|
-
deleteDevice(cell: string, identifier: string, options?: RawAxiosRequestConfig): Promise<
|
|
9372
|
+
deleteDevice(cell: string, identifier: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
9373
9373
|
/**
|
|
9374
9374
|
* Deprecated endpoint. Returns information about a device.
|
|
9375
9375
|
* @summary Device Information
|
|
@@ -9380,7 +9380,7 @@ declare class DeviceConfigurationApi extends BaseAPI {
|
|
|
9380
9380
|
* @throws {RequiredError}
|
|
9381
9381
|
* @memberof DeviceConfigurationApi
|
|
9382
9382
|
*/
|
|
9383
|
-
getDevice(cell: string, identifier: string, options?: RawAxiosRequestConfig): Promise<
|
|
9383
|
+
getDevice(cell: string, identifier: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<any, any>>;
|
|
9384
9384
|
/**
|
|
9385
9385
|
* Deprecated endpoint. Lists all devices which are configured in the cell: - Robots - Databases - OPC UA devices
|
|
9386
9386
|
* @summary List All Devices
|
|
@@ -9390,7 +9390,7 @@ declare class DeviceConfigurationApi extends BaseAPI {
|
|
|
9390
9390
|
* @throws {RequiredError}
|
|
9391
9391
|
* @memberof DeviceConfigurationApi
|
|
9392
9392
|
*/
|
|
9393
|
-
listDevices(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
9393
|
+
listDevices(cell: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ListDevices200ResponseInner[], any>>;
|
|
9394
9394
|
}
|
|
9395
9395
|
/**
|
|
9396
9396
|
* LibraryProgramApi - axios parameter creator
|
|
@@ -9568,7 +9568,7 @@ declare class LibraryProgramApi extends BaseAPI {
|
|
|
9568
9568
|
* @throws {RequiredError}
|
|
9569
9569
|
* @memberof LibraryProgramApi
|
|
9570
9570
|
*/
|
|
9571
|
-
createProgram(cell: string, body: string, name?: string, options?: RawAxiosRequestConfig): Promise<
|
|
9571
|
+
createProgram(cell: string, body: string, name?: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ProgramMetadata, any>>;
|
|
9572
9572
|
/**
|
|
9573
9573
|
* <!-- theme: danger --> > **Experimental** Deletes the program with the corresponding metadata. This action is irreversible. Does not delete the associated recipes.
|
|
9574
9574
|
* @summary Delete Program
|
|
@@ -9578,7 +9578,7 @@ declare class LibraryProgramApi extends BaseAPI {
|
|
|
9578
9578
|
* @throws {RequiredError}
|
|
9579
9579
|
* @memberof LibraryProgramApi
|
|
9580
9580
|
*/
|
|
9581
|
-
deleteProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<
|
|
9581
|
+
deleteProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ProgramMetadata, any>>;
|
|
9582
9582
|
/**
|
|
9583
9583
|
* <!-- theme: danger --> > **Experimental** Deletes the provided list of programs with the corresponding metadata. This action is irreversible. Does not delete the associated recipes.
|
|
9584
9584
|
* @summary Delete Program List
|
|
@@ -9588,7 +9588,7 @@ declare class LibraryProgramApi extends BaseAPI {
|
|
|
9588
9588
|
* @throws {RequiredError}
|
|
9589
9589
|
* @memberof LibraryProgramApi
|
|
9590
9590
|
*/
|
|
9591
|
-
deleteProgramList(cell: string, programIds: Array<string>, options?: RawAxiosRequestConfig): Promise<
|
|
9591
|
+
deleteProgramList(cell: string, programIds: Array<string>, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ListProgramMetadataResponse, any>>;
|
|
9592
9592
|
/**
|
|
9593
9593
|
* <!-- 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.
|
|
9594
9594
|
* @summary Get Program
|
|
@@ -9598,7 +9598,7 @@ declare class LibraryProgramApi extends BaseAPI {
|
|
|
9598
9598
|
* @throws {RequiredError}
|
|
9599
9599
|
* @memberof LibraryProgramApi
|
|
9600
9600
|
*/
|
|
9601
|
-
getProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<
|
|
9601
|
+
getProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<string, any>>;
|
|
9602
9602
|
/**
|
|
9603
9603
|
* <!-- 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 ```
|
|
9604
9604
|
* @summary Update Program
|
|
@@ -9609,7 +9609,7 @@ declare class LibraryProgramApi extends BaseAPI {
|
|
|
9609
9609
|
* @throws {RequiredError}
|
|
9610
9610
|
* @memberof LibraryProgramApi
|
|
9611
9611
|
*/
|
|
9612
|
-
updateProgram(cell: string, program: string, body: string, options?: RawAxiosRequestConfig): Promise<
|
|
9612
|
+
updateProgram(cell: string, program: string, body: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ProgramMetadata, any>>;
|
|
9613
9613
|
}
|
|
9614
9614
|
/**
|
|
9615
9615
|
* LibraryProgramMetadataApi - axios parameter creator
|
|
@@ -9759,7 +9759,7 @@ declare class LibraryProgramMetadataApi extends BaseAPI {
|
|
|
9759
9759
|
* @throws {RequiredError}
|
|
9760
9760
|
* @memberof LibraryProgramMetadataApi
|
|
9761
9761
|
*/
|
|
9762
|
-
getProgramMetadata(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<
|
|
9762
|
+
getProgramMetadata(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ProgramMetadata, any>>;
|
|
9763
9763
|
/**
|
|
9764
9764
|
* <!-- theme: danger --> > **Experimental** Returns a list of all the stored programs, represented by their metadata.
|
|
9765
9765
|
* @summary List Program Metadata
|
|
@@ -9769,7 +9769,7 @@ declare class LibraryProgramMetadataApi extends BaseAPI {
|
|
|
9769
9769
|
* @throws {RequiredError}
|
|
9770
9770
|
* @memberof LibraryProgramMetadataApi
|
|
9771
9771
|
*/
|
|
9772
|
-
listProgramMetadata(cell: string, showHidden?: boolean, options?: RawAxiosRequestConfig): Promise<
|
|
9772
|
+
listProgramMetadata(cell: string, showHidden?: boolean, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ListProgramMetadataResponse, any>>;
|
|
9773
9773
|
/**
|
|
9774
9774
|
* <!-- theme: danger --> > **Experimental** Updates the metadata of the corresponding program. The update is partial, only the set fields get updated.
|
|
9775
9775
|
* @summary Update Program Metadata
|
|
@@ -9780,7 +9780,7 @@ declare class LibraryProgramMetadataApi extends BaseAPI {
|
|
|
9780
9780
|
* @throws {RequiredError}
|
|
9781
9781
|
* @memberof LibraryProgramMetadataApi
|
|
9782
9782
|
*/
|
|
9783
|
-
updateProgramMetadata(cell: string, program: string, updateProgramMetadataRequest: UpdateProgramMetadataRequest, options?: RawAxiosRequestConfig): Promise<
|
|
9783
|
+
updateProgramMetadata(cell: string, program: string, updateProgramMetadataRequest: UpdateProgramMetadataRequest, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ProgramMetadata, any>>;
|
|
9784
9784
|
/**
|
|
9785
9785
|
* <!-- 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.
|
|
9786
9786
|
* @summary Upload Program Metadata Image
|
|
@@ -9791,7 +9791,7 @@ declare class LibraryProgramMetadataApi extends BaseAPI {
|
|
|
9791
9791
|
* @throws {RequiredError}
|
|
9792
9792
|
* @memberof LibraryProgramMetadataApi
|
|
9793
9793
|
*/
|
|
9794
|
-
uploadProgramMetadataImage(cell: string, program: string, file: File, options?: RawAxiosRequestConfig): Promise<
|
|
9794
|
+
uploadProgramMetadataImage(cell: string, program: string, file: File, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ProgramMetadata, any>>;
|
|
9795
9795
|
}
|
|
9796
9796
|
/**
|
|
9797
9797
|
* LibraryRecipeApi - axios parameter creator
|
|
@@ -9973,7 +9973,7 @@ declare class LibraryRecipeApi extends BaseAPI {
|
|
|
9973
9973
|
* @throws {RequiredError}
|
|
9974
9974
|
* @memberof LibraryRecipeApi
|
|
9975
9975
|
*/
|
|
9976
|
-
createRecipe(cell: string, programId: string, body: object, name?: string, options?: RawAxiosRequestConfig): Promise<
|
|
9976
|
+
createRecipe(cell: string, programId: string, body: object, name?: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<RecipeMetadata, any>>;
|
|
9977
9977
|
/**
|
|
9978
9978
|
* # EXPERIMENTAL > **Note:** This endpoint is experimental and might experience functional changes in the future. Deletes a recipe. This action is irreversible.
|
|
9979
9979
|
* @summary Delete Recipe
|
|
@@ -9983,7 +9983,7 @@ declare class LibraryRecipeApi extends BaseAPI {
|
|
|
9983
9983
|
* @throws {RequiredError}
|
|
9984
9984
|
* @memberof LibraryRecipeApi
|
|
9985
9985
|
*/
|
|
9986
|
-
deleteRecipe(cell: string, recipe: string, options?: RawAxiosRequestConfig): Promise<
|
|
9986
|
+
deleteRecipe(cell: string, recipe: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<RecipeMetadata, any>>;
|
|
9987
9987
|
/**
|
|
9988
9988
|
* <!-- theme: danger --> > **Experimental** Deletes the provided list of recipes. This action is irreversible.
|
|
9989
9989
|
* @summary Delete Recipe List
|
|
@@ -9993,7 +9993,7 @@ declare class LibraryRecipeApi extends BaseAPI {
|
|
|
9993
9993
|
* @throws {RequiredError}
|
|
9994
9994
|
* @memberof LibraryRecipeApi
|
|
9995
9995
|
*/
|
|
9996
|
-
deleteRecipeList(cell: string, recipeIds: Array<string>, options?: RawAxiosRequestConfig): Promise<
|
|
9996
|
+
deleteRecipeList(cell: string, recipeIds: Array<string>, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ListRecipeMetadataResponse, any>>;
|
|
9997
9997
|
/**
|
|
9998
9998
|
* <!-- 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.
|
|
9999
9999
|
* @summary Get Recipe
|
|
@@ -10003,7 +10003,7 @@ declare class LibraryRecipeApi extends BaseAPI {
|
|
|
10003
10003
|
* @throws {RequiredError}
|
|
10004
10004
|
* @memberof LibraryRecipeApi
|
|
10005
10005
|
*/
|
|
10006
|
-
getRecipe(cell: string, recipe: string, options?: RawAxiosRequestConfig): Promise<
|
|
10006
|
+
getRecipe(cell: string, recipe: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<object, any>>;
|
|
10007
10007
|
/**
|
|
10008
10008
|
* <!-- theme: danger --> > **Experimental** Updates an existing recipe. The update is partial, only the set fields get updated.
|
|
10009
10009
|
* @summary Update Recipe
|
|
@@ -10014,7 +10014,7 @@ declare class LibraryRecipeApi extends BaseAPI {
|
|
|
10014
10014
|
* @throws {RequiredError}
|
|
10015
10015
|
* @memberof LibraryRecipeApi
|
|
10016
10016
|
*/
|
|
10017
|
-
updateRecipe(cell: string, recipe: string, body: object, options?: RawAxiosRequestConfig): Promise<
|
|
10017
|
+
updateRecipe(cell: string, recipe: string, body: object, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<RecipeMetadata, any>>;
|
|
10018
10018
|
}
|
|
10019
10019
|
/**
|
|
10020
10020
|
* LibraryRecipeMetadataApi - axios parameter creator
|
|
@@ -10161,7 +10161,7 @@ declare class LibraryRecipeMetadataApi extends BaseAPI {
|
|
|
10161
10161
|
* @throws {RequiredError}
|
|
10162
10162
|
* @memberof LibraryRecipeMetadataApi
|
|
10163
10163
|
*/
|
|
10164
|
-
getRecipeMetadata(cell: string, recipe: string, options?: RawAxiosRequestConfig): Promise<
|
|
10164
|
+
getRecipeMetadata(cell: string, recipe: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<RecipeMetadata, any>>;
|
|
10165
10165
|
/**
|
|
10166
10166
|
* <!-- theme: danger --> > **Experimental** List of all the stored recipes, represented by their metadata.
|
|
10167
10167
|
* @summary List Recipe Metadata
|
|
@@ -10170,7 +10170,7 @@ declare class LibraryRecipeMetadataApi extends BaseAPI {
|
|
|
10170
10170
|
* @throws {RequiredError}
|
|
10171
10171
|
* @memberof LibraryRecipeMetadataApi
|
|
10172
10172
|
*/
|
|
10173
|
-
listRecipeMetadata(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
10173
|
+
listRecipeMetadata(cell: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ListRecipeMetadataResponse, any>>;
|
|
10174
10174
|
/**
|
|
10175
10175
|
* <!-- theme: danger --> > **Experimental** Updates the metadata of a recipe. The update is partial, only the set fields get updated.
|
|
10176
10176
|
* @summary Update Recipe Metadata
|
|
@@ -10181,7 +10181,7 @@ declare class LibraryRecipeMetadataApi extends BaseAPI {
|
|
|
10181
10181
|
* @throws {RequiredError}
|
|
10182
10182
|
* @memberof LibraryRecipeMetadataApi
|
|
10183
10183
|
*/
|
|
10184
|
-
updateRecipeMetadata(cell: string, recipe: string, updateRecipeMetadataRequest: UpdateRecipeMetadataRequest, options?: RawAxiosRequestConfig): Promise<
|
|
10184
|
+
updateRecipeMetadata(cell: string, recipe: string, updateRecipeMetadataRequest: UpdateRecipeMetadataRequest, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<RecipeMetadata, any>>;
|
|
10185
10185
|
/**
|
|
10186
10186
|
* <!-- 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.
|
|
10187
10187
|
* @summary Upload Recipe Metadata Image
|
|
@@ -10192,7 +10192,7 @@ declare class LibraryRecipeMetadataApi extends BaseAPI {
|
|
|
10192
10192
|
* @throws {RequiredError}
|
|
10193
10193
|
* @memberof LibraryRecipeMetadataApi
|
|
10194
10194
|
*/
|
|
10195
|
-
uploadRecipeMetadataImage(cell: string, recipe: string, file: File, options?: RawAxiosRequestConfig): Promise<
|
|
10195
|
+
uploadRecipeMetadataImage(cell: string, recipe: string, file: File, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<RecipeMetadata, any>>;
|
|
10196
10196
|
}
|
|
10197
10197
|
/**
|
|
10198
10198
|
* LicenseApi - axios parameter creator
|
|
@@ -10314,7 +10314,7 @@ declare class LicenseApi extends BaseAPI {
|
|
|
10314
10314
|
* @throws {RequiredError}
|
|
10315
10315
|
* @memberof LicenseApi
|
|
10316
10316
|
*/
|
|
10317
|
-
activateLicense(activateLicenseRequest: ActivateLicenseRequest, options?: RawAxiosRequestConfig): Promise<
|
|
10317
|
+
activateLicense(activateLicenseRequest: ActivateLicenseRequest, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<License, any>>;
|
|
10318
10318
|
/**
|
|
10319
10319
|
* Deactivates active license.
|
|
10320
10320
|
* @summary Deactivate license
|
|
@@ -10322,7 +10322,7 @@ declare class LicenseApi extends BaseAPI {
|
|
|
10322
10322
|
* @throws {RequiredError}
|
|
10323
10323
|
* @memberof LicenseApi
|
|
10324
10324
|
*/
|
|
10325
|
-
deactivateLicense(options?: RawAxiosRequestConfig): Promise<
|
|
10325
|
+
deactivateLicense(options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
10326
10326
|
/**
|
|
10327
10327
|
* Get information on the license used with the Wandelbots NOVA instance, e.g. licensed product, expiration date, license status.
|
|
10328
10328
|
* @summary Get license
|
|
@@ -10330,7 +10330,7 @@ declare class LicenseApi extends BaseAPI {
|
|
|
10330
10330
|
* @throws {RequiredError}
|
|
10331
10331
|
* @memberof LicenseApi
|
|
10332
10332
|
*/
|
|
10333
|
-
getLicense(options?: RawAxiosRequestConfig): Promise<
|
|
10333
|
+
getLicense(options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<License, any>>;
|
|
10334
10334
|
/**
|
|
10335
10335
|
* 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.
|
|
10336
10336
|
* @summary Get license status
|
|
@@ -10338,7 +10338,7 @@ declare class LicenseApi extends BaseAPI {
|
|
|
10338
10338
|
* @throws {RequiredError}
|
|
10339
10339
|
* @memberof LicenseApi
|
|
10340
10340
|
*/
|
|
10341
|
-
getLicenseStatus(options?: RawAxiosRequestConfig): Promise<
|
|
10341
|
+
getLicenseStatus(options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<LicenseStatus, any>>;
|
|
10342
10342
|
}
|
|
10343
10343
|
/**
|
|
10344
10344
|
* MotionApi - axios parameter creator
|
|
@@ -10898,7 +10898,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
10898
10898
|
* @throws {RequiredError}
|
|
10899
10899
|
* @memberof MotionApi
|
|
10900
10900
|
*/
|
|
10901
|
-
deleteAllMotions(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
10901
|
+
deleteAllMotions(cell: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
10902
10902
|
/**
|
|
10903
10903
|
* 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.
|
|
10904
10904
|
* @summary Remove
|
|
@@ -10908,7 +10908,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
10908
10908
|
* @throws {RequiredError}
|
|
10909
10909
|
* @memberof MotionApi
|
|
10910
10910
|
*/
|
|
10911
|
-
deleteMotion(cell: string, motion: string, options?: RawAxiosRequestConfig): Promise<
|
|
10911
|
+
deleteMotion(cell: string, motion: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
10912
10912
|
/**
|
|
10913
10913
|
* <!-- 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.
|
|
10914
10914
|
* @summary Execute Trajectory
|
|
@@ -10918,7 +10918,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
10918
10918
|
* @throws {RequiredError}
|
|
10919
10919
|
* @memberof MotionApi
|
|
10920
10920
|
*/
|
|
10921
|
-
executeTrajectory(cell: string, executeTrajectoryRequest: ExecuteTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<
|
|
10921
|
+
executeTrajectory(cell: string, executeTrajectoryRequest: ExecuteTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ExecuteTrajectoryResponse, any>>;
|
|
10922
10922
|
/**
|
|
10923
10923
|
* 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.
|
|
10924
10924
|
* @summary Get Trajectory
|
|
@@ -10930,7 +10930,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
10930
10930
|
* @throws {RequiredError}
|
|
10931
10931
|
* @memberof MotionApi
|
|
10932
10932
|
*/
|
|
10933
|
-
getMotionTrajectory(cell: string, motion: string, sampleTime: number, responsesCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<
|
|
10933
|
+
getMotionTrajectory(cell: string, motion: string, sampleTime: number, responsesCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<GetTrajectoryResponse, any>>;
|
|
10934
10934
|
/**
|
|
10935
10935
|
* Get a single point at a certain location of a planned motion. To get the whole trajectory, use the [getMotionTrajectory](getMotionTrajectory) endpoint.
|
|
10936
10936
|
* @summary Get Trajectory Sample
|
|
@@ -10942,7 +10942,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
10942
10942
|
* @throws {RequiredError}
|
|
10943
10943
|
* @memberof MotionApi
|
|
10944
10944
|
*/
|
|
10945
|
-
getMotionTrajectorySample(cell: string, motion: string, locationOnTrajectory?: number, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<
|
|
10945
|
+
getMotionTrajectorySample(cell: string, motion: string, locationOnTrajectory?: number, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<GetTrajectorySampleResponse, any>>;
|
|
10946
10946
|
/**
|
|
10947
10947
|
* 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.
|
|
10948
10948
|
* @summary Get Planned Motion
|
|
@@ -10953,7 +10953,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
10953
10953
|
* @throws {RequiredError}
|
|
10954
10954
|
* @memberof MotionApi
|
|
10955
10955
|
*/
|
|
10956
|
-
getPlannedMotion(cell: string, motion: string, sampleTime?: number, options?: RawAxiosRequestConfig): Promise<
|
|
10956
|
+
getPlannedMotion(cell: string, motion: string, sampleTime?: number, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<PlannedMotion, any>>;
|
|
10957
10957
|
/**
|
|
10958
10958
|
* Returns motion group models that are supported for planning.
|
|
10959
10959
|
* @summary Motion Group Models for Planning
|
|
@@ -10962,7 +10962,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
10962
10962
|
* @throws {RequiredError}
|
|
10963
10963
|
* @memberof MotionApi
|
|
10964
10964
|
*/
|
|
10965
|
-
getPlanningMotionGroupModels(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
10965
|
+
getPlanningMotionGroupModels(cell: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<string[], any>>;
|
|
10966
10966
|
/**
|
|
10967
10967
|
* 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.
|
|
10968
10968
|
* @summary List All Motions
|
|
@@ -10971,7 +10971,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
10971
10971
|
* @throws {RequiredError}
|
|
10972
10972
|
* @memberof MotionApi
|
|
10973
10973
|
*/
|
|
10974
|
-
listMotions(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
10974
|
+
listMotions(cell: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<MotionIdsListResponse, any>>;
|
|
10975
10975
|
/**
|
|
10976
10976
|
* 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.
|
|
10977
10977
|
* @summary Load Planned Motion
|
|
@@ -10981,7 +10981,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
10981
10981
|
* @throws {RequiredError}
|
|
10982
10982
|
* @memberof MotionApi
|
|
10983
10983
|
*/
|
|
10984
|
-
loadPlannedMotion(cell: string, plannedMotion: PlannedMotion, options?: RawAxiosRequestConfig): Promise<
|
|
10984
|
+
loadPlannedMotion(cell: string, plannedMotion: PlannedMotion, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<PlanResponse, any>>;
|
|
10985
10985
|
/**
|
|
10986
10986
|
* <!-- 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.
|
|
10987
10987
|
* @summary Plan Collision Free PTP
|
|
@@ -10991,7 +10991,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
10991
10991
|
* @throws {RequiredError}
|
|
10992
10992
|
* @memberof MotionApi
|
|
10993
10993
|
*/
|
|
10994
|
-
planCollisionFreePTP(cell: string, planCollisionFreePTPRequest?: PlanCollisionFreePTPRequest, options?: RawAxiosRequestConfig): Promise<
|
|
10994
|
+
planCollisionFreePTP(cell: string, planCollisionFreePTPRequest?: PlanCollisionFreePTPRequest, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<PlanTrajectoryResponse, any>>;
|
|
10995
10995
|
/**
|
|
10996
10996
|
* 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.
|
|
10997
10997
|
* @summary Plan Motion
|
|
@@ -11002,7 +11002,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
11002
11002
|
* @throws {RequiredError}
|
|
11003
11003
|
* @memberof MotionApi
|
|
11004
11004
|
*/
|
|
11005
|
-
planMotion(cell: string, planRequest: PlanRequest, options?: RawAxiosRequestConfig): Promise<
|
|
11005
|
+
planMotion(cell: string, planRequest: PlanRequest, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<PlanResponse, any>>;
|
|
11006
11006
|
/**
|
|
11007
11007
|
* 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.
|
|
11008
11008
|
* @summary Plan Trajectory
|
|
@@ -11012,7 +11012,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
11012
11012
|
* @throws {RequiredError}
|
|
11013
11013
|
* @memberof MotionApi
|
|
11014
11014
|
*/
|
|
11015
|
-
planTrajectory(cell: string, planTrajectoryRequest?: PlanTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<
|
|
11015
|
+
planTrajectory(cell: string, planTrajectoryRequest?: PlanTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<PlanTrajectoryResponse, any>>;
|
|
11016
11016
|
/**
|
|
11017
11017
|
* 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.
|
|
11018
11018
|
* @summary Stop
|
|
@@ -11022,7 +11022,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
11022
11022
|
* @throws {RequiredError}
|
|
11023
11023
|
* @memberof MotionApi
|
|
11024
11024
|
*/
|
|
11025
|
-
stopExecution(cell: string, motion: string, options?: RawAxiosRequestConfig): Promise<
|
|
11025
|
+
stopExecution(cell: string, motion: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
11026
11026
|
/**
|
|
11027
11027
|
* 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.
|
|
11028
11028
|
* @summary Stream Move
|
|
@@ -11033,7 +11033,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
11033
11033
|
* @throws {RequiredError}
|
|
11034
11034
|
* @memberof MotionApi
|
|
11035
11035
|
*/
|
|
11036
|
-
streamMove(cell: string, streamMoveRequest: StreamMoveRequest, options?: RawAxiosRequestConfig): Promise<
|
|
11036
|
+
streamMove(cell: string, streamMoveRequest: StreamMoveRequest, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<StreamMoveResponse, any>>;
|
|
11037
11037
|
/**
|
|
11038
11038
|
* 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.
|
|
11039
11039
|
* @summary Stream Backward
|
|
@@ -11048,7 +11048,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
11048
11048
|
* @throws {RequiredError}
|
|
11049
11049
|
* @memberof MotionApi
|
|
11050
11050
|
*/
|
|
11051
|
-
streamMoveBackward(cell: string, motion: string, playbackSpeedInPercent: number, responseRate?: number, responseCoordinateSystem?: string, startLocationOnTrajectory?: number, options?: RawAxiosRequestConfig): Promise<
|
|
11051
|
+
streamMoveBackward(cell: string, motion: string, playbackSpeedInPercent: number, responseRate?: number, responseCoordinateSystem?: string, startLocationOnTrajectory?: number, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<StreamMoveResponse, any>>;
|
|
11052
11052
|
/**
|
|
11053
11053
|
* 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.
|
|
11054
11054
|
* @summary Stream Forward
|
|
@@ -11063,7 +11063,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
11063
11063
|
* @throws {RequiredError}
|
|
11064
11064
|
* @memberof MotionApi
|
|
11065
11065
|
*/
|
|
11066
|
-
streamMoveForward(cell: string, motion: string, playbackSpeedInPercent: number, responseRate?: number, responseCoordinateSystem?: string, startLocationOnTrajectory?: number, options?: RawAxiosRequestConfig): Promise<
|
|
11066
|
+
streamMoveForward(cell: string, motion: string, playbackSpeedInPercent: number, responseRate?: number, responseCoordinateSystem?: string, startLocationOnTrajectory?: number, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<StreamMoveResponse, any>>;
|
|
11067
11067
|
/**
|
|
11068
11068
|
* 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.
|
|
11069
11069
|
* @summary Stream to Trajectory
|
|
@@ -11081,7 +11081,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
11081
11081
|
* @throws {RequiredError}
|
|
11082
11082
|
* @memberof MotionApi
|
|
11083
11083
|
*/
|
|
11084
|
-
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<
|
|
11084
|
+
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<axios128.AxiosResponse<StreamMoveResponse, any>>;
|
|
11085
11085
|
}
|
|
11086
11086
|
/**
|
|
11087
11087
|
* MotionGroupApi - axios parameter creator
|
|
@@ -11222,7 +11222,7 @@ declare class MotionGroupApi extends BaseAPI {
|
|
|
11222
11222
|
* @throws {RequiredError}
|
|
11223
11223
|
* @memberof MotionGroupApi
|
|
11224
11224
|
*/
|
|
11225
|
-
activateAllMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
11225
|
+
activateAllMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<MotionGroupInstanceList, any>>;
|
|
11226
11226
|
/**
|
|
11227
11227
|
* 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).
|
|
11228
11228
|
* @summary Activate
|
|
@@ -11232,7 +11232,7 @@ declare class MotionGroupApi extends BaseAPI {
|
|
|
11232
11232
|
* @throws {RequiredError}
|
|
11233
11233
|
* @memberof MotionGroupApi
|
|
11234
11234
|
*/
|
|
11235
|
-
activateMotionGroup(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
11235
|
+
activateMotionGroup(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<MotionGroupInstance, any>>;
|
|
11236
11236
|
/**
|
|
11237
11237
|
* 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.
|
|
11238
11238
|
* @summary Deactivate
|
|
@@ -11242,7 +11242,7 @@ declare class MotionGroupApi extends BaseAPI {
|
|
|
11242
11242
|
* @throws {RequiredError}
|
|
11243
11243
|
* @memberof MotionGroupApi
|
|
11244
11244
|
*/
|
|
11245
|
-
deactivateMotionGroup(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
11245
|
+
deactivateMotionGroup(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
11246
11246
|
/**
|
|
11247
11247
|
* List all active motion groups. A motion group is active if it is currently used by a controller.
|
|
11248
11248
|
* @summary List Active
|
|
@@ -11251,7 +11251,7 @@ declare class MotionGroupApi extends BaseAPI {
|
|
|
11251
11251
|
* @throws {RequiredError}
|
|
11252
11252
|
* @memberof MotionGroupApi
|
|
11253
11253
|
*/
|
|
11254
|
-
listMotionGroups(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
11254
|
+
listMotionGroups(cell: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<MotionGroupInstanceList, any>>;
|
|
11255
11255
|
}
|
|
11256
11256
|
/**
|
|
11257
11257
|
* MotionGroupInfosApi - axios parameter creator
|
|
@@ -11608,7 +11608,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
|
|
|
11608
11608
|
* @throws {RequiredError}
|
|
11609
11609
|
* @memberof MotionGroupInfosApi
|
|
11610
11610
|
*/
|
|
11611
|
-
getActivePayload(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
11611
|
+
getActivePayload(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<Payload, any>>;
|
|
11612
11612
|
/**
|
|
11613
11613
|
* Get the internal selected TCP of a connected device.
|
|
11614
11614
|
* @summary Selected TCP
|
|
@@ -11619,7 +11619,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
|
|
|
11619
11619
|
* @throws {RequiredError}
|
|
11620
11620
|
* @memberof MotionGroupInfosApi
|
|
11621
11621
|
*/
|
|
11622
|
-
getActiveTcp(cell: string, motionGroup: string, rotationType?: RotationAngleTypes, options?: RawAxiosRequestConfig): Promise<
|
|
11622
|
+
getActiveTcp(cell: string, motionGroup: string, rotationType?: RotationAngleTypes, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<RobotTcp, any>>;
|
|
11623
11623
|
/**
|
|
11624
11624
|
* Returns the current state of the selected motion group including the current joint position, velocity, pose, and more.
|
|
11625
11625
|
* @summary State of Device
|
|
@@ -11631,7 +11631,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
|
|
|
11631
11631
|
* @throws {RequiredError}
|
|
11632
11632
|
* @memberof MotionGroupInfosApi
|
|
11633
11633
|
*/
|
|
11634
|
-
getCurrentMotionGroupState(cell: string, motionGroup: string, tcp?: string, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<
|
|
11634
|
+
getCurrentMotionGroupState(cell: string, motionGroup: string, tcp?: string, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<MotionGroupStateResponse, any>>;
|
|
11635
11635
|
/**
|
|
11636
11636
|
* 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.
|
|
11637
11637
|
* @summary Capabilities
|
|
@@ -11641,7 +11641,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
|
|
|
11641
11641
|
* @throws {RequiredError}
|
|
11642
11642
|
* @memberof MotionGroupInfosApi
|
|
11643
11643
|
*/
|
|
11644
|
-
getInfoCapabilities(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
11644
|
+
getInfoCapabilities(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<InfoServiceCapabilities, any>>;
|
|
11645
11645
|
/**
|
|
11646
11646
|
* 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.
|
|
11647
11647
|
* @summary Get Static Properties
|
|
@@ -11651,7 +11651,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
|
|
|
11651
11651
|
* @throws {RequiredError}
|
|
11652
11652
|
* @memberof MotionGroupInfosApi
|
|
11653
11653
|
*/
|
|
11654
|
-
getMotionGroupSpecification(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
11654
|
+
getMotionGroupSpecification(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<MotionGroupSpecification, any>>;
|
|
11655
11655
|
/**
|
|
11656
11656
|
* Returns the configured mounting pose offset in relation to world coordinate system and the motion groups coordinate system.
|
|
11657
11657
|
* @summary Device Mounting
|
|
@@ -11661,7 +11661,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
|
|
|
11661
11661
|
* @throws {RequiredError}
|
|
11662
11662
|
* @memberof MotionGroupInfosApi
|
|
11663
11663
|
*/
|
|
11664
|
-
getMounting(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
11664
|
+
getMounting(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<Mounting, any>>;
|
|
11665
11665
|
/**
|
|
11666
11666
|
* <!-- theme: danger --> > **Experimental** Get the complete configuration which can be passed to the planner-optimizer (incl. motion group description, limits etc.)
|
|
11667
11667
|
* @summary Optimizer Configuration
|
|
@@ -11672,7 +11672,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
|
|
|
11672
11672
|
* @throws {RequiredError}
|
|
11673
11673
|
* @memberof MotionGroupInfosApi
|
|
11674
11674
|
*/
|
|
11675
|
-
getOptimizerConfiguration(cell: string, motionGroup: string, tcp?: string, options?: RawAxiosRequestConfig): Promise<
|
|
11675
|
+
getOptimizerConfiguration(cell: string, motionGroup: string, tcp?: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<OptimizerSetup, any>>;
|
|
11676
11676
|
/**
|
|
11677
11677
|
* 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).
|
|
11678
11678
|
* @summary Safety Setup and Limitations
|
|
@@ -11682,7 +11682,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
|
|
|
11682
11682
|
* @throws {RequiredError}
|
|
11683
11683
|
* @memberof MotionGroupInfosApi
|
|
11684
11684
|
*/
|
|
11685
|
-
getSafetySetup(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
11685
|
+
getSafetySetup(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<SafetySetup, any>>;
|
|
11686
11686
|
/**
|
|
11687
11687
|
* 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.
|
|
11688
11688
|
* @summary List Payloads
|
|
@@ -11692,7 +11692,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
|
|
|
11692
11692
|
* @throws {RequiredError}
|
|
11693
11693
|
* @memberof MotionGroupInfosApi
|
|
11694
11694
|
*/
|
|
11695
|
-
listPayloads(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
11695
|
+
listPayloads(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ListPayloadsResponse, any>>;
|
|
11696
11696
|
/**
|
|
11697
11697
|
* Get all internal configured TCPs of a connected device.
|
|
11698
11698
|
* @summary List TCPs
|
|
@@ -11703,7 +11703,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
|
|
|
11703
11703
|
* @throws {RequiredError}
|
|
11704
11704
|
* @memberof MotionGroupInfosApi
|
|
11705
11705
|
*/
|
|
11706
|
-
listTcps(cell: string, motionGroup: string, rotationType?: RotationAngleTypes, options?: RawAxiosRequestConfig): Promise<
|
|
11706
|
+
listTcps(cell: string, motionGroup: string, rotationType?: RotationAngleTypes, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ListTcpsResponse, any>>;
|
|
11707
11707
|
/**
|
|
11708
11708
|
* Receive updates of the motion group state. The stream will be closed from the server if the controller is disconnected.
|
|
11709
11709
|
* @summary Stream State of Device
|
|
@@ -11716,7 +11716,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
|
|
|
11716
11716
|
* @throws {RequiredError}
|
|
11717
11717
|
* @memberof MotionGroupInfosApi
|
|
11718
11718
|
*/
|
|
11719
|
-
streamMotionGroupState(cell: string, motionGroup: string, responseRate?: number, responseCoordinateSystem?: string, tcp?: string, options?: RawAxiosRequestConfig): Promise<
|
|
11719
|
+
streamMotionGroupState(cell: string, motionGroup: string, responseRate?: number, responseCoordinateSystem?: string, tcp?: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<MotionGroupStateResponse, any>>;
|
|
11720
11720
|
}
|
|
11721
11721
|
/**
|
|
11722
11722
|
* MotionGroupJoggingApi - axios parameter creator
|
|
@@ -11860,7 +11860,7 @@ declare class MotionGroupJoggingApi extends BaseAPI {
|
|
|
11860
11860
|
* @throws {RequiredError}
|
|
11861
11861
|
* @memberof MotionGroupJoggingApi
|
|
11862
11862
|
*/
|
|
11863
|
-
directionJogging(cell: string, directionJoggingRequest: DirectionJoggingRequest, options?: RawAxiosRequestConfig): Promise<
|
|
11863
|
+
directionJogging(cell: string, directionJoggingRequest: DirectionJoggingRequest, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<JoggingResponse, any>>;
|
|
11864
11864
|
/**
|
|
11865
11865
|
* 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.
|
|
11866
11866
|
* @summary Capabilities
|
|
@@ -11870,7 +11870,7 @@ declare class MotionGroupJoggingApi extends BaseAPI {
|
|
|
11870
11870
|
* @throws {RequiredError}
|
|
11871
11871
|
* @memberof MotionGroupJoggingApi
|
|
11872
11872
|
*/
|
|
11873
|
-
getJoggingCapabilities(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
11873
|
+
getJoggingCapabilities(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<JoggingServiceCapabilities, any>>;
|
|
11874
11874
|
/**
|
|
11875
11875
|
* 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.
|
|
11876
11876
|
* @summary Stream Joints
|
|
@@ -11880,7 +11880,7 @@ declare class MotionGroupJoggingApi extends BaseAPI {
|
|
|
11880
11880
|
* @throws {RequiredError}
|
|
11881
11881
|
* @memberof MotionGroupJoggingApi
|
|
11882
11882
|
*/
|
|
11883
|
-
jointJogging(cell: string, jointJoggingRequest: JointJoggingRequest, options?: RawAxiosRequestConfig): Promise<
|
|
11883
|
+
jointJogging(cell: string, jointJoggingRequest: JointJoggingRequest, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<JoggingResponse, any>>;
|
|
11884
11884
|
/**
|
|
11885
11885
|
* 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.
|
|
11886
11886
|
* @summary Stop
|
|
@@ -11890,7 +11890,7 @@ declare class MotionGroupJoggingApi extends BaseAPI {
|
|
|
11890
11890
|
* @throws {RequiredError}
|
|
11891
11891
|
* @memberof MotionGroupJoggingApi
|
|
11892
11892
|
*/
|
|
11893
|
-
stopJogging(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
11893
|
+
stopJogging(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
11894
11894
|
}
|
|
11895
11895
|
/**
|
|
11896
11896
|
* MotionGroupKinematicApi - axios parameter creator
|
|
@@ -12044,7 +12044,7 @@ declare class MotionGroupKinematicApi extends BaseAPI {
|
|
|
12044
12044
|
* @throws {RequiredError}
|
|
12045
12045
|
* @memberof MotionGroupKinematicApi
|
|
12046
12046
|
*/
|
|
12047
|
-
calculateAllInverseKinematic(cell: string, motionGroup: string, allJointPositionsRequest: AllJointPositionsRequest, options?: RawAxiosRequestConfig): Promise<
|
|
12047
|
+
calculateAllInverseKinematic(cell: string, motionGroup: string, allJointPositionsRequest: AllJointPositionsRequest, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<AllJointPositionsResponse, any>>;
|
|
12048
12048
|
/**
|
|
12049
12049
|
* Calculates the TCP pose from a joint position sample using the forward kinematics of the motion-group.
|
|
12050
12050
|
* @summary TcpPose from JointPosition
|
|
@@ -12055,7 +12055,7 @@ declare class MotionGroupKinematicApi extends BaseAPI {
|
|
|
12055
12055
|
* @throws {RequiredError}
|
|
12056
12056
|
* @memberof MotionGroupKinematicApi
|
|
12057
12057
|
*/
|
|
12058
|
-
calculateForwardKinematic(cell: string, motionGroup: string, tcpPoseRequest: TcpPoseRequest, options?: RawAxiosRequestConfig): Promise<
|
|
12058
|
+
calculateForwardKinematic(cell: string, motionGroup: string, tcpPoseRequest: TcpPoseRequest, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<Pose, any>>;
|
|
12059
12059
|
/**
|
|
12060
12060
|
* 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.
|
|
12061
12061
|
* @summary Nearest JointPosition from TcpPose
|
|
@@ -12066,7 +12066,7 @@ declare class MotionGroupKinematicApi extends BaseAPI {
|
|
|
12066
12066
|
* @throws {RequiredError}
|
|
12067
12067
|
* @memberof MotionGroupKinematicApi
|
|
12068
12068
|
*/
|
|
12069
|
-
calculateInverseKinematic(cell: string, motionGroup: string, jointPositionRequest: JointPositionRequest, options?: RawAxiosRequestConfig): Promise<
|
|
12069
|
+
calculateInverseKinematic(cell: string, motionGroup: string, jointPositionRequest: JointPositionRequest, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<Joints, any>>;
|
|
12070
12070
|
/**
|
|
12071
12071
|
* Get the kinematic endpoints provided for the specified motion-group.
|
|
12072
12072
|
* @summary Capabilities
|
|
@@ -12076,7 +12076,7 @@ declare class MotionGroupKinematicApi extends BaseAPI {
|
|
|
12076
12076
|
* @throws {RequiredError}
|
|
12077
12077
|
* @memberof MotionGroupKinematicApi
|
|
12078
12078
|
*/
|
|
12079
|
-
getKinematicCapabilities(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
12079
|
+
getKinematicCapabilities(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<KinematicServiceCapabilities, any>>;
|
|
12080
12080
|
}
|
|
12081
12081
|
/**
|
|
12082
12082
|
* ProgramApi - axios parameter creator
|
|
@@ -12325,7 +12325,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
12325
12325
|
* @throws {RequiredError}
|
|
12326
12326
|
* @memberof ProgramApi
|
|
12327
12327
|
*/
|
|
12328
|
-
createProgramRunner(cell: string, request: Request, options?: RawAxiosRequestConfig): Promise<
|
|
12328
|
+
createProgramRunner(cell: string, request: Request, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ProgramRunnerReference, any>>;
|
|
12329
12329
|
/**
|
|
12330
12330
|
* 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)
|
|
12331
12331
|
* @summary Execute Program
|
|
@@ -12335,7 +12335,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
12335
12335
|
* @throws {RequiredError}
|
|
12336
12336
|
* @memberof ProgramApi
|
|
12337
12337
|
*/
|
|
12338
|
-
executeProgram(cell: string, codeWithArguments: CodeWithArguments, options?: RawAxiosRequestConfig): Promise<
|
|
12338
|
+
executeProgram(cell: string, codeWithArguments: CodeWithArguments, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ProgramRun, any>>;
|
|
12339
12339
|
/**
|
|
12340
12340
|
* 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
|
|
12341
12341
|
* @summary Get Program Runner
|
|
@@ -12345,7 +12345,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
12345
12345
|
* @throws {RequiredError}
|
|
12346
12346
|
* @memberof ProgramApi
|
|
12347
12347
|
*/
|
|
12348
|
-
getProgramRunner(cell: string, runner: string, options?: RawAxiosRequestConfig): Promise<
|
|
12348
|
+
getProgramRunner(cell: string, runner: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ProgramRun, any>>;
|
|
12349
12349
|
/**
|
|
12350
12350
|
* Get details about all existing program runners.
|
|
12351
12351
|
* @summary List Program Runners
|
|
@@ -12354,7 +12354,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
12354
12354
|
* @throws {RequiredError}
|
|
12355
12355
|
* @memberof ProgramApi
|
|
12356
12356
|
*/
|
|
12357
|
-
listProgramRunners(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
12357
|
+
listProgramRunners(cell: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ProgramRunnerReference[], any>>;
|
|
12358
12358
|
/**
|
|
12359
12359
|
* Migrate a program ## Parameters See the **Schema** tab for information about the request body
|
|
12360
12360
|
* @summary Migrate Program
|
|
@@ -12364,7 +12364,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
12364
12364
|
* @throws {RequiredError}
|
|
12365
12365
|
* @memberof ProgramApi
|
|
12366
12366
|
*/
|
|
12367
|
-
migrateProgram(cell: string, request1: Request1, options?: RawAxiosRequestConfig): Promise<
|
|
12367
|
+
migrateProgram(cell: string, request1: Request1, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<string, any>>;
|
|
12368
12368
|
/**
|
|
12369
12369
|
* 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)
|
|
12370
12370
|
* @summary Plan Program
|
|
@@ -12375,7 +12375,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
12375
12375
|
* @throws {RequiredError}
|
|
12376
12376
|
* @memberof ProgramApi
|
|
12377
12377
|
*/
|
|
12378
|
-
planProgram(cell: string, request: Request, identifier?: string, options?: RawAxiosRequestConfig): Promise<
|
|
12378
|
+
planProgram(cell: string, request: Request, identifier?: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ProgramRun, any>>;
|
|
12379
12379
|
/**
|
|
12380
12380
|
* Stop all runners.
|
|
12381
12381
|
* @summary Stop All Program Runners
|
|
@@ -12384,7 +12384,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
12384
12384
|
* @throws {RequiredError}
|
|
12385
12385
|
* @memberof ProgramApi
|
|
12386
12386
|
*/
|
|
12387
|
-
stopAllProgramRunner(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
12387
|
+
stopAllProgramRunner(cell: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<any, any>>;
|
|
12388
12388
|
/**
|
|
12389
12389
|
* 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
|
|
12390
12390
|
* @summary Stop Program Runner
|
|
@@ -12394,7 +12394,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
12394
12394
|
* @throws {RequiredError}
|
|
12395
12395
|
* @memberof ProgramApi
|
|
12396
12396
|
*/
|
|
12397
|
-
stopProgramRunner(cell: string, runner: string, options?: RawAxiosRequestConfig): Promise<
|
|
12397
|
+
stopProgramRunner(cell: string, runner: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
12398
12398
|
}
|
|
12399
12399
|
/**
|
|
12400
12400
|
* ProgramOperatorApi - axios parameter creator
|
|
@@ -12646,7 +12646,7 @@ declare class ProgramOperatorApi extends BaseAPI {
|
|
|
12646
12646
|
* @throws {RequiredError}
|
|
12647
12647
|
* @memberof ProgramOperatorApi
|
|
12648
12648
|
*/
|
|
12649
|
-
createProgramRun(cell: string, createProgramRunRequest: CreateProgramRunRequest, options?: RawAxiosRequestConfig): Promise<
|
|
12649
|
+
createProgramRun(cell: string, createProgramRunRequest: CreateProgramRunRequest, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<CreateProgramRun200Response, any>>;
|
|
12650
12650
|
/**
|
|
12651
12651
|
* <!-- 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.
|
|
12652
12652
|
* @summary Create Trigger
|
|
@@ -12656,7 +12656,7 @@ declare class ProgramOperatorApi extends BaseAPI {
|
|
|
12656
12656
|
* @throws {RequiredError}
|
|
12657
12657
|
* @memberof ProgramOperatorApi
|
|
12658
12658
|
*/
|
|
12659
|
-
createTrigger(cell: string, createTriggerRequest: CreateTriggerRequest, options?: RawAxiosRequestConfig): Promise<
|
|
12659
|
+
createTrigger(cell: string, createTriggerRequest: CreateTriggerRequest, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<CreateTrigger200Response, any>>;
|
|
12660
12660
|
/**
|
|
12661
12661
|
* <!-- theme: danger --> > **Experimental** Delete an existing trigger.
|
|
12662
12662
|
* @summary Delete Trigger
|
|
@@ -12666,7 +12666,7 @@ declare class ProgramOperatorApi extends BaseAPI {
|
|
|
12666
12666
|
* @throws {RequiredError}
|
|
12667
12667
|
* @memberof ProgramOperatorApi
|
|
12668
12668
|
*/
|
|
12669
|
-
deleteTrigger(trigger: string, cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
12669
|
+
deleteTrigger(trigger: string, cell: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
12670
12670
|
/**
|
|
12671
12671
|
* <!-- theme: danger --> > **Experimental** Retrieves all program runs, including past and current executions. Use the optional `state` parameter to filter the results by their status.
|
|
12672
12672
|
* @summary Get All Program Runs
|
|
@@ -12676,7 +12676,7 @@ declare class ProgramOperatorApi extends BaseAPI {
|
|
|
12676
12676
|
* @throws {RequiredError}
|
|
12677
12677
|
* @memberof ProgramOperatorApi
|
|
12678
12678
|
*/
|
|
12679
|
-
getAllProgramRuns(cell: string, state?: string, options?: RawAxiosRequestConfig): Promise<
|
|
12679
|
+
getAllProgramRuns(cell: string, state?: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<GetAllProgramRuns200Response, any>>;
|
|
12680
12680
|
/**
|
|
12681
12681
|
* <!-- 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.
|
|
12682
12682
|
* @summary Get All Triggers
|
|
@@ -12685,7 +12685,7 @@ declare class ProgramOperatorApi extends BaseAPI {
|
|
|
12685
12685
|
* @throws {RequiredError}
|
|
12686
12686
|
* @memberof ProgramOperatorApi
|
|
12687
12687
|
*/
|
|
12688
|
-
getAllTriggers(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
12688
|
+
getAllTriggers(cell: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<GetAllTriggers200Response, any>>;
|
|
12689
12689
|
/**
|
|
12690
12690
|
* <!-- theme: danger --> > **Experimental** Retrieves detailed information about a specific program run.
|
|
12691
12691
|
* @summary Get Program Run
|
|
@@ -12695,7 +12695,7 @@ declare class ProgramOperatorApi extends BaseAPI {
|
|
|
12695
12695
|
* @throws {RequiredError}
|
|
12696
12696
|
* @memberof ProgramOperatorApi
|
|
12697
12697
|
*/
|
|
12698
|
-
getProgramRun(run: string, cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
12698
|
+
getProgramRun(run: string, cell: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ProgramRunObject, any>>;
|
|
12699
12699
|
/**
|
|
12700
12700
|
* <!-- theme: danger --> > **Experimental** Retrieves detailed information about a specific trigger.
|
|
12701
12701
|
* @summary Get Trigger
|
|
@@ -12705,7 +12705,7 @@ declare class ProgramOperatorApi extends BaseAPI {
|
|
|
12705
12705
|
* @throws {RequiredError}
|
|
12706
12706
|
* @memberof ProgramOperatorApi
|
|
12707
12707
|
*/
|
|
12708
|
-
getTrigger(trigger: string, cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
12708
|
+
getTrigger(trigger: string, cell: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<TriggerObject, any>>;
|
|
12709
12709
|
/**
|
|
12710
12710
|
* <!-- 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.
|
|
12711
12711
|
* @summary Update Trigger
|
|
@@ -12716,7 +12716,7 @@ declare class ProgramOperatorApi extends BaseAPI {
|
|
|
12716
12716
|
* @throws {RequiredError}
|
|
12717
12717
|
* @memberof ProgramOperatorApi
|
|
12718
12718
|
*/
|
|
12719
|
-
updateTrigger(trigger: string, cell: string, updateTriggerRequest: UpdateTriggerRequest, options?: RawAxiosRequestConfig): Promise<
|
|
12719
|
+
updateTrigger(trigger: string, cell: string, updateTriggerRequest: UpdateTriggerRequest, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<TriggerObject, any>>;
|
|
12720
12720
|
}
|
|
12721
12721
|
/**
|
|
12722
12722
|
* ProgramValuesApi - axios parameter creator
|
|
@@ -12939,7 +12939,7 @@ declare class ProgramValuesApi extends BaseAPI {
|
|
|
12939
12939
|
* @throws {RequiredError}
|
|
12940
12940
|
* @memberof ProgramValuesApi
|
|
12941
12941
|
*/
|
|
12942
|
-
clearProgramsValues(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
12942
|
+
clearProgramsValues(cell: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
12943
12943
|
/**
|
|
12944
12944
|
* 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)
|
|
12945
12945
|
* @summary Add Value(s)
|
|
@@ -12952,7 +12952,7 @@ declare class ProgramValuesApi extends BaseAPI {
|
|
|
12952
12952
|
*/
|
|
12953
12953
|
createProgramsValue(cell: string, requestBody: {
|
|
12954
12954
|
[key: string]: CollectionValue;
|
|
12955
|
-
}, options?: RawAxiosRequestConfig): Promise<
|
|
12955
|
+
}, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
12956
12956
|
/**
|
|
12957
12957
|
* Delete a value from the database.
|
|
12958
12958
|
* @summary Delete Value
|
|
@@ -12963,7 +12963,7 @@ declare class ProgramValuesApi extends BaseAPI {
|
|
|
12963
12963
|
* @throws {RequiredError}
|
|
12964
12964
|
* @memberof ProgramValuesApi
|
|
12965
12965
|
*/
|
|
12966
|
-
deleteProgramValue(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<
|
|
12966
|
+
deleteProgramValue(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
12967
12967
|
/**
|
|
12968
12968
|
* 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)
|
|
12969
12969
|
* @summary Get Value
|
|
@@ -12974,7 +12974,7 @@ declare class ProgramValuesApi extends BaseAPI {
|
|
|
12974
12974
|
* @throws {RequiredError}
|
|
12975
12975
|
* @memberof ProgramValuesApi
|
|
12976
12976
|
*/
|
|
12977
|
-
getProgramValue(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<
|
|
12977
|
+
getProgramValue(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ResponseGetValueProgramsValuesKeyGet, any>>;
|
|
12978
12978
|
/**
|
|
12979
12979
|
* 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)
|
|
12980
12980
|
* @summary Get Values
|
|
@@ -12984,7 +12984,7 @@ declare class ProgramValuesApi extends BaseAPI {
|
|
|
12984
12984
|
* @throws {RequiredError}
|
|
12985
12985
|
* @memberof ProgramValuesApi
|
|
12986
12986
|
*/
|
|
12987
|
-
listProgramsValues(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
12987
|
+
listProgramsValues(cell: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<{
|
|
12988
12988
|
[key: string]: ResponseGetValuesProgramsValuesGetValue;
|
|
12989
12989
|
}, any>>;
|
|
12990
12990
|
/**
|
|
@@ -12998,7 +12998,7 @@ declare class ProgramValuesApi extends BaseAPI {
|
|
|
12998
12998
|
* @throws {RequiredError}
|
|
12999
12999
|
* @memberof ProgramValuesApi
|
|
13000
13000
|
*/
|
|
13001
|
-
updateProgramValue(cell: string, key: string, value: Value, options?: RawAxiosRequestConfig): Promise<
|
|
13001
|
+
updateProgramValue(cell: string, key: string, value: Value, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
13002
13002
|
}
|
|
13003
13003
|
/**
|
|
13004
13004
|
* StoreCollisionComponentsApi - axios parameter creator
|
|
@@ -13440,7 +13440,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
13440
13440
|
* @throws {RequiredError}
|
|
13441
13441
|
* @memberof StoreCollisionComponentsApi
|
|
13442
13442
|
*/
|
|
13443
|
-
deleteStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<
|
|
13443
|
+
deleteStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
13444
13444
|
/**
|
|
13445
13445
|
* Deletes the stored link chain. <!-- theme: danger --> > This will delete persistently stored data.
|
|
13446
13446
|
* @summary Delete Link Chain
|
|
@@ -13450,7 +13450,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
13450
13450
|
* @throws {RequiredError}
|
|
13451
13451
|
* @memberof StoreCollisionComponentsApi
|
|
13452
13452
|
*/
|
|
13453
|
-
deleteStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<
|
|
13453
|
+
deleteStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
13454
13454
|
/**
|
|
13455
13455
|
* Deletes the stored tool. <!-- theme: danger --> > This will delete persistently stored data.
|
|
13456
13456
|
* @summary Delete Tool
|
|
@@ -13460,7 +13460,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
13460
13460
|
* @throws {RequiredError}
|
|
13461
13461
|
* @memberof StoreCollisionComponentsApi
|
|
13462
13462
|
*/
|
|
13463
|
-
deleteStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<
|
|
13463
|
+
deleteStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
13464
13464
|
/**
|
|
13465
13465
|
* 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.
|
|
13466
13466
|
* @summary Get Default Link Chain
|
|
@@ -13471,7 +13471,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
13471
13471
|
* @throws {RequiredError}
|
|
13472
13472
|
* @memberof StoreCollisionComponentsApi
|
|
13473
13473
|
*/
|
|
13474
|
-
getDefaultLinkChain(cell: string, motionGroupModel: GetDefaultLinkChainMotionGroupModelEnum, options?: RawAxiosRequestConfig): Promise<
|
|
13474
|
+
getDefaultLinkChain(cell: string, motionGroupModel: GetDefaultLinkChainMotionGroupModelEnum, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<{
|
|
13475
13475
|
[key: string]: Collider;
|
|
13476
13476
|
}[], any>>;
|
|
13477
13477
|
/**
|
|
@@ -13483,7 +13483,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
13483
13483
|
* @throws {RequiredError}
|
|
13484
13484
|
* @memberof StoreCollisionComponentsApi
|
|
13485
13485
|
*/
|
|
13486
|
-
getStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<
|
|
13486
|
+
getStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<Collider, any>>;
|
|
13487
13487
|
/**
|
|
13488
13488
|
* Returns the collision link chain.
|
|
13489
13489
|
* @summary Get Link Chain
|
|
@@ -13493,7 +13493,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
13493
13493
|
* @throws {RequiredError}
|
|
13494
13494
|
* @memberof StoreCollisionComponentsApi
|
|
13495
13495
|
*/
|
|
13496
|
-
getStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<
|
|
13496
|
+
getStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<{
|
|
13497
13497
|
[key: string]: Collider;
|
|
13498
13498
|
}[], any>>;
|
|
13499
13499
|
/**
|
|
@@ -13505,7 +13505,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
13505
13505
|
* @throws {RequiredError}
|
|
13506
13506
|
* @memberof StoreCollisionComponentsApi
|
|
13507
13507
|
*/
|
|
13508
|
-
getStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<
|
|
13508
|
+
getStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<{
|
|
13509
13509
|
[key: string]: Collider;
|
|
13510
13510
|
}, any>>;
|
|
13511
13511
|
/**
|
|
@@ -13516,7 +13516,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
13516
13516
|
* @throws {RequiredError}
|
|
13517
13517
|
* @memberof StoreCollisionComponentsApi
|
|
13518
13518
|
*/
|
|
13519
|
-
listCollisionLinkChains(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
13519
|
+
listCollisionLinkChains(cell: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<{
|
|
13520
13520
|
[key: string]: {
|
|
13521
13521
|
[key: string]: Collider;
|
|
13522
13522
|
}[];
|
|
@@ -13529,7 +13529,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
13529
13529
|
* @throws {RequiredError}
|
|
13530
13530
|
* @memberof StoreCollisionComponentsApi
|
|
13531
13531
|
*/
|
|
13532
|
-
listStoredColliders(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
13532
|
+
listStoredColliders(cell: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<{
|
|
13533
13533
|
[key: string]: Collider;
|
|
13534
13534
|
}, any>>;
|
|
13535
13535
|
/**
|
|
@@ -13540,7 +13540,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
13540
13540
|
* @throws {RequiredError}
|
|
13541
13541
|
* @memberof StoreCollisionComponentsApi
|
|
13542
13542
|
*/
|
|
13543
|
-
listStoredCollisionTools(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
13543
|
+
listStoredCollisionTools(cell: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<{
|
|
13544
13544
|
[key: string]: {
|
|
13545
13545
|
[key: string]: Collider;
|
|
13546
13546
|
};
|
|
@@ -13555,7 +13555,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
13555
13555
|
* @throws {RequiredError}
|
|
13556
13556
|
* @memberof StoreCollisionComponentsApi
|
|
13557
13557
|
*/
|
|
13558
|
-
storeCollider(cell: string, collider: string, collider2: Collider, options?: RawAxiosRequestConfig): Promise<
|
|
13558
|
+
storeCollider(cell: string, collider: string, collider2: Collider, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<Collider, any>>;
|
|
13559
13559
|
/**
|
|
13560
13560
|
* Stores link chain. If the link chain does not exist, it will be created. If the link chain exists, it will be updated.
|
|
13561
13561
|
* @summary Store Link Chain
|
|
@@ -13568,7 +13568,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
13568
13568
|
*/
|
|
13569
13569
|
storeCollisionLinkChain(cell: string, linkChain: string, collider: Array<{
|
|
13570
13570
|
[key: string]: Collider;
|
|
13571
|
-
}>, options?: RawAxiosRequestConfig): Promise<
|
|
13571
|
+
}>, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<{
|
|
13572
13572
|
[key: string]: Collider;
|
|
13573
13573
|
}[], any>>;
|
|
13574
13574
|
/**
|
|
@@ -13583,7 +13583,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
13583
13583
|
*/
|
|
13584
13584
|
storeCollisionTool(cell: string, tool: string, requestBody: {
|
|
13585
13585
|
[key: string]: Collider;
|
|
13586
|
-
}, options?: RawAxiosRequestConfig): Promise<
|
|
13586
|
+
}, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<{
|
|
13587
13587
|
[key: string]: Collider;
|
|
13588
13588
|
}, any>>;
|
|
13589
13589
|
}
|
|
@@ -13903,7 +13903,7 @@ declare class StoreCollisionScenesApi extends BaseAPI {
|
|
|
13903
13903
|
* @throws {RequiredError}
|
|
13904
13904
|
* @memberof StoreCollisionScenesApi
|
|
13905
13905
|
*/
|
|
13906
|
-
deleteStoredCollisionScene(cell: string, scene: string, options?: RawAxiosRequestConfig): Promise<
|
|
13906
|
+
deleteStoredCollisionScene(cell: string, scene: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
13907
13907
|
/**
|
|
13908
13908
|
* Returns the stored scene.
|
|
13909
13909
|
* @summary Get Scene
|
|
@@ -13913,7 +13913,7 @@ declare class StoreCollisionScenesApi extends BaseAPI {
|
|
|
13913
13913
|
* @throws {RequiredError}
|
|
13914
13914
|
* @memberof StoreCollisionScenesApi
|
|
13915
13915
|
*/
|
|
13916
|
-
getStoredCollisionScene(cell: string, scene: string, options?: RawAxiosRequestConfig): Promise<
|
|
13916
|
+
getStoredCollisionScene(cell: string, scene: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<CollisionScene, any>>;
|
|
13917
13917
|
/**
|
|
13918
13918
|
* Returns a list of stored scenes.
|
|
13919
13919
|
* @summary List Scenes
|
|
@@ -13922,7 +13922,7 @@ declare class StoreCollisionScenesApi extends BaseAPI {
|
|
|
13922
13922
|
* @throws {RequiredError}
|
|
13923
13923
|
* @memberof StoreCollisionScenesApi
|
|
13924
13924
|
*/
|
|
13925
|
-
listStoredCollisionScenes(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
13925
|
+
listStoredCollisionScenes(cell: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<{
|
|
13926
13926
|
[key: string]: CollisionScene;
|
|
13927
13927
|
}, any>>;
|
|
13928
13928
|
/**
|
|
@@ -13935,7 +13935,7 @@ declare class StoreCollisionScenesApi extends BaseAPI {
|
|
|
13935
13935
|
* @throws {RequiredError}
|
|
13936
13936
|
* @memberof StoreCollisionScenesApi
|
|
13937
13937
|
*/
|
|
13938
|
-
storeCollisionScene(cell: string, scene: string, collisionSceneAssembly: CollisionSceneAssembly, options?: RawAxiosRequestConfig): Promise<
|
|
13938
|
+
storeCollisionScene(cell: string, scene: string, collisionSceneAssembly: CollisionSceneAssembly, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<CollisionScene, any>>;
|
|
13939
13939
|
}
|
|
13940
13940
|
/**
|
|
13941
13941
|
* StoreObjectApi - axios parameter creator
|
|
@@ -14138,7 +14138,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
14138
14138
|
* @throws {RequiredError}
|
|
14139
14139
|
* @memberof StoreObjectApi
|
|
14140
14140
|
*/
|
|
14141
|
-
clearAllObjects(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
14141
|
+
clearAllObjects(cell: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
14142
14142
|
/**
|
|
14143
14143
|
* Delete an object <!-- theme: danger --> > This will delete persistently stored data.
|
|
14144
14144
|
* @summary Delete Object
|
|
@@ -14148,7 +14148,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
14148
14148
|
* @throws {RequiredError}
|
|
14149
14149
|
* @memberof StoreObjectApi
|
|
14150
14150
|
*/
|
|
14151
|
-
deleteObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<
|
|
14151
|
+
deleteObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
14152
14152
|
/**
|
|
14153
14153
|
* Get the object. This request returns the object and any metadata attached to it.
|
|
14154
14154
|
* @summary Get Object
|
|
@@ -14158,7 +14158,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
14158
14158
|
* @throws {RequiredError}
|
|
14159
14159
|
* @memberof StoreObjectApi
|
|
14160
14160
|
*/
|
|
14161
|
-
getObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<
|
|
14161
|
+
getObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<File, any>>;
|
|
14162
14162
|
/**
|
|
14163
14163
|
* Get object metadata. Objects can be large. Therefore this request only returns metadata without fetching the object\'s content.
|
|
14164
14164
|
* @summary Get Object Metadata
|
|
@@ -14168,7 +14168,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
14168
14168
|
* @throws {RequiredError}
|
|
14169
14169
|
* @memberof StoreObjectApi
|
|
14170
14170
|
*/
|
|
14171
|
-
getObjectMetadata(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<
|
|
14171
|
+
getObjectMetadata(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
14172
14172
|
/**
|
|
14173
14173
|
* List the keys for all objects.
|
|
14174
14174
|
* @summary List all Object Keys
|
|
@@ -14177,7 +14177,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
14177
14177
|
* @throws {RequiredError}
|
|
14178
14178
|
* @memberof StoreObjectApi
|
|
14179
14179
|
*/
|
|
14180
|
-
listAllObjectKeys(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
14180
|
+
listAllObjectKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<string[], any>>;
|
|
14181
14181
|
/**
|
|
14182
14182
|
* 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.
|
|
14183
14183
|
* @summary Store Object
|
|
@@ -14191,7 +14191,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
14191
14191
|
*/
|
|
14192
14192
|
storeObject(cell: string, key: string, xMetadata?: {
|
|
14193
14193
|
[key: string]: string;
|
|
14194
|
-
}, anyValue?: any, options?: RawAxiosRequestConfig): Promise<
|
|
14194
|
+
}, anyValue?: any, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
14195
14195
|
}
|
|
14196
14196
|
/**
|
|
14197
14197
|
* SystemApi - axios parameter creator
|
|
@@ -14337,7 +14337,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
14337
14337
|
* @throws {RequiredError}
|
|
14338
14338
|
* @memberof SystemApi
|
|
14339
14339
|
*/
|
|
14340
|
-
checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<
|
|
14340
|
+
checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<string, any>>;
|
|
14341
14341
|
/**
|
|
14342
14342
|
* 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.
|
|
14343
14343
|
* @summary Download Diagnosis Package
|
|
@@ -14345,7 +14345,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
14345
14345
|
* @throws {RequiredError}
|
|
14346
14346
|
* @memberof SystemApi
|
|
14347
14347
|
*/
|
|
14348
|
-
getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<
|
|
14348
|
+
getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<File, any>>;
|
|
14349
14349
|
/**
|
|
14350
14350
|
* Get the status of all system services.
|
|
14351
14351
|
* @summary Wandelbots NOVA status
|
|
@@ -14353,7 +14353,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
14353
14353
|
* @throws {RequiredError}
|
|
14354
14354
|
* @memberof SystemApi
|
|
14355
14355
|
*/
|
|
14356
|
-
getSystemStatus(options?: RawAxiosRequestConfig): Promise<
|
|
14356
|
+
getSystemStatus(options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ServiceStatus[], any>>;
|
|
14357
14357
|
/**
|
|
14358
14358
|
* Get the current Wandelbots NOVA version.
|
|
14359
14359
|
* @summary Wandelbots NOVA Version
|
|
@@ -14361,7 +14361,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
14361
14361
|
* @throws {RequiredError}
|
|
14362
14362
|
* @memberof SystemApi
|
|
14363
14363
|
*/
|
|
14364
|
-
getSystemVersion(options?: RawAxiosRequestConfig): Promise<
|
|
14364
|
+
getSystemVersion(options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<string, any>>;
|
|
14365
14365
|
/**
|
|
14366
14366
|
* 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.
|
|
14367
14367
|
* @summary Update Wandelbots NOVA version
|
|
@@ -14370,7 +14370,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
14370
14370
|
* @throws {RequiredError}
|
|
14371
14371
|
* @memberof SystemApi
|
|
14372
14372
|
*/
|
|
14373
|
-
updateNovaVersion(updateNovaVersionRequest: UpdateNovaVersionRequest, options?: RawAxiosRequestConfig): Promise<
|
|
14373
|
+
updateNovaVersion(updateNovaVersionRequest: UpdateNovaVersionRequest, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
14374
14374
|
}
|
|
14375
14375
|
/**
|
|
14376
14376
|
* VirtualRobotApi - axios parameter creator
|
|
@@ -14593,7 +14593,7 @@ declare class VirtualRobotApi extends BaseAPI {
|
|
|
14593
14593
|
* @throws {RequiredError}
|
|
14594
14594
|
* @memberof VirtualRobotApi
|
|
14595
14595
|
*/
|
|
14596
|
-
getMotionGroupState(cell: string, controller: string, id: number, options?: RawAxiosRequestConfig): Promise<
|
|
14596
|
+
getMotionGroupState(cell: string, controller: string, id: number, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<MotionGroupJoints, any>>;
|
|
14597
14597
|
/**
|
|
14598
14598
|
* Gets information on the motion group.
|
|
14599
14599
|
* @summary Motion Group Description
|
|
@@ -14603,7 +14603,7 @@ declare class VirtualRobotApi extends BaseAPI {
|
|
|
14603
14603
|
* @throws {RequiredError}
|
|
14604
14604
|
* @memberof VirtualRobotApi
|
|
14605
14605
|
*/
|
|
14606
|
-
getMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
14606
|
+
getMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<MotionGroupInfos, any>>;
|
|
14607
14607
|
/**
|
|
14608
14608
|
* Gets the description and value of a virtual controller I/O.
|
|
14609
14609
|
* @summary Get I/O
|
|
@@ -14614,7 +14614,7 @@ declare class VirtualRobotApi extends BaseAPI {
|
|
|
14614
14614
|
* @throws {RequiredError}
|
|
14615
14615
|
* @memberof VirtualRobotApi
|
|
14616
14616
|
*/
|
|
14617
|
-
getVirtualRobotIOValue(cell: string, controller: string, io: string, options?: RawAxiosRequestConfig): Promise<
|
|
14617
|
+
getVirtualRobotIOValue(cell: string, controller: string, io: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<IO, any>>;
|
|
14618
14618
|
/**
|
|
14619
14619
|
* 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.
|
|
14620
14620
|
* @summary List Inputs/Outputs
|
|
@@ -14624,7 +14624,7 @@ declare class VirtualRobotApi extends BaseAPI {
|
|
|
14624
14624
|
* @throws {RequiredError}
|
|
14625
14625
|
* @memberof VirtualRobotApi
|
|
14626
14626
|
*/
|
|
14627
|
-
listIOs(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
14627
|
+
listIOs(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<IOs, any>>;
|
|
14628
14628
|
/**
|
|
14629
14629
|
* 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.
|
|
14630
14630
|
* @summary Set Motion Group State
|
|
@@ -14636,7 +14636,7 @@ declare class VirtualRobotApi extends BaseAPI {
|
|
|
14636
14636
|
* @throws {RequiredError}
|
|
14637
14637
|
* @memberof VirtualRobotApi
|
|
14638
14638
|
*/
|
|
14639
|
-
setMotionGroupState(cell: string, controller: string, id: number, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): Promise<
|
|
14639
|
+
setMotionGroupState(cell: string, controller: string, id: number, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<object, any>>;
|
|
14640
14640
|
/**
|
|
14641
14641
|
* Sets the value of a virtual controller I/O.
|
|
14642
14642
|
* @summary Set I/O
|
|
@@ -14650,7 +14650,7 @@ declare class VirtualRobotApi extends BaseAPI {
|
|
|
14650
14650
|
* @throws {RequiredError}
|
|
14651
14651
|
* @memberof VirtualRobotApi
|
|
14652
14652
|
*/
|
|
14653
|
-
setVirtualRobotIOValue(cell: string, controller: string, io: string, bool?: boolean, integer?: string, _double?: number, options?: RawAxiosRequestConfig): Promise<
|
|
14653
|
+
setVirtualRobotIOValue(cell: string, controller: string, io: string, bool?: boolean, integer?: string, _double?: number, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<object, any>>;
|
|
14654
14654
|
}
|
|
14655
14655
|
/**
|
|
14656
14656
|
* VirtualRobotBehaviorApi - axios parameter creator
|
|
@@ -14780,7 +14780,7 @@ declare class VirtualRobotBehaviorApi extends BaseAPI {
|
|
|
14780
14780
|
* @throws {RequiredError}
|
|
14781
14781
|
* @memberof VirtualRobotBehaviorApi
|
|
14782
14782
|
*/
|
|
14783
|
-
externalJointsStream(cell: string, controller: string, externalJointStreamDatapoint: ExternalJointStreamDatapoint, options?: RawAxiosRequestConfig): Promise<
|
|
14783
|
+
externalJointsStream(cell: string, controller: string, externalJointStreamDatapoint: ExternalJointStreamDatapoint, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<MotionGroupJoints, any>>;
|
|
14784
14784
|
/**
|
|
14785
14785
|
* Get the current robot motion group behavior - please see the setter [setMotionGroupBehavior](setMotionGroupBehavior) and the enum for details.
|
|
14786
14786
|
* @summary Behavior
|
|
@@ -14791,7 +14791,7 @@ declare class VirtualRobotBehaviorApi extends BaseAPI {
|
|
|
14791
14791
|
* @throws {RequiredError}
|
|
14792
14792
|
* @memberof VirtualRobotBehaviorApi
|
|
14793
14793
|
*/
|
|
14794
|
-
getMotionGroupBehavior(cell: string, controller: string, id: number, options?: RawAxiosRequestConfig): Promise<
|
|
14794
|
+
getMotionGroupBehavior(cell: string, controller: string, id: number, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<MotionGroupBehaviorGetter, any>>;
|
|
14795
14795
|
/**
|
|
14796
14796
|
* Switch robot motion group behavior.
|
|
14797
14797
|
* @summary Switch Behavior
|
|
@@ -14803,7 +14803,7 @@ declare class VirtualRobotBehaviorApi extends BaseAPI {
|
|
|
14803
14803
|
* @throws {RequiredError}
|
|
14804
14804
|
* @memberof VirtualRobotBehaviorApi
|
|
14805
14805
|
*/
|
|
14806
|
-
setMotionGroupBehavior(cell: string, controller: string, id: number, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<
|
|
14806
|
+
setMotionGroupBehavior(cell: string, controller: string, id: number, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<object, any>>;
|
|
14807
14807
|
}
|
|
14808
14808
|
/**
|
|
14809
14809
|
* VirtualRobotModeApi - axios parameter creator
|
|
@@ -15004,7 +15004,7 @@ declare class VirtualRobotModeApi extends BaseAPI {
|
|
|
15004
15004
|
* @throws {RequiredError}
|
|
15005
15005
|
* @memberof VirtualRobotModeApi
|
|
15006
15006
|
*/
|
|
15007
|
-
getCycleTime(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
15007
|
+
getCycleTime(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<CycleTime, any>>;
|
|
15008
15008
|
/**
|
|
15009
15009
|
* 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.
|
|
15010
15010
|
* @summary Get E-Stop State
|
|
@@ -15014,7 +15014,7 @@ declare class VirtualRobotModeApi extends BaseAPI {
|
|
|
15014
15014
|
* @throws {RequiredError}
|
|
15015
15015
|
* @memberof VirtualRobotModeApi
|
|
15016
15016
|
*/
|
|
15017
|
-
getEStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
15017
|
+
getEStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<Flag, any>>;
|
|
15018
15018
|
/**
|
|
15019
15019
|
* 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.
|
|
15020
15020
|
* @summary Get Operation Mode
|
|
@@ -15024,7 +15024,7 @@ declare class VirtualRobotModeApi extends BaseAPI {
|
|
|
15024
15024
|
* @throws {RequiredError}
|
|
15025
15025
|
* @memberof VirtualRobotModeApi
|
|
15026
15026
|
*/
|
|
15027
|
-
getOperationMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
15027
|
+
getOperationMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<OpMode, any>>;
|
|
15028
15028
|
/**
|
|
15029
15029
|
* 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.
|
|
15030
15030
|
* @summary Push E-Stop
|
|
@@ -15034,7 +15034,7 @@ declare class VirtualRobotModeApi extends BaseAPI {
|
|
|
15034
15034
|
* @throws {RequiredError}
|
|
15035
15035
|
* @memberof VirtualRobotModeApi
|
|
15036
15036
|
*/
|
|
15037
|
-
pushEStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
15037
|
+
pushEStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<object, any>>;
|
|
15038
15038
|
/**
|
|
15039
15039
|
* 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.
|
|
15040
15040
|
* @summary Release E-Stop
|
|
@@ -15044,7 +15044,7 @@ declare class VirtualRobotModeApi extends BaseAPI {
|
|
|
15044
15044
|
* @throws {RequiredError}
|
|
15045
15045
|
* @memberof VirtualRobotModeApi
|
|
15046
15046
|
*/
|
|
15047
|
-
releaseEStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
15047
|
+
releaseEStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<object, any>>;
|
|
15048
15048
|
/**
|
|
15049
15049
|
* 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.
|
|
15050
15050
|
* @summary Set Operation Mode
|
|
@@ -15055,7 +15055,7 @@ declare class VirtualRobotModeApi extends BaseAPI {
|
|
|
15055
15055
|
* @throws {RequiredError}
|
|
15056
15056
|
* @memberof VirtualRobotModeApi
|
|
15057
15057
|
*/
|
|
15058
|
-
setOperationMode(cell: string, controller: string, mode: SetOperationModeModeEnum, options?: RawAxiosRequestConfig): Promise<
|
|
15058
|
+
setOperationMode(cell: string, controller: string, mode: SetOperationModeModeEnum, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<object, any>>;
|
|
15059
15059
|
}
|
|
15060
15060
|
/**
|
|
15061
15061
|
* @export
|
|
@@ -15349,7 +15349,7 @@ declare class VirtualRobotSetupApi extends BaseAPI {
|
|
|
15349
15349
|
* @throws {RequiredError}
|
|
15350
15350
|
* @memberof VirtualRobotSetupApi
|
|
15351
15351
|
*/
|
|
15352
|
-
addVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<
|
|
15352
|
+
addVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<object, any>>;
|
|
15353
15353
|
/**
|
|
15354
15354
|
* 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.
|
|
15355
15355
|
* @summary Add TCP
|
|
@@ -15361,7 +15361,7 @@ declare class VirtualRobotSetupApi extends BaseAPI {
|
|
|
15361
15361
|
* @throws {RequiredError}
|
|
15362
15362
|
* @memberof VirtualRobotSetupApi
|
|
15363
15363
|
*/
|
|
15364
|
-
addVirtualRobotTcp(cell: string, controller: string, id: number, robotTcp: RobotTcp, options?: RawAxiosRequestConfig): Promise<
|
|
15364
|
+
addVirtualRobotTcp(cell: string, controller: string, id: number, robotTcp: RobotTcp, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<object, any>>;
|
|
15365
15365
|
/**
|
|
15366
15366
|
* 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.
|
|
15367
15367
|
* @summary Remove Coordinate System
|
|
@@ -15373,7 +15373,7 @@ declare class VirtualRobotSetupApi extends BaseAPI {
|
|
|
15373
15373
|
* @throws {RequiredError}
|
|
15374
15374
|
* @memberof VirtualRobotSetupApi
|
|
15375
15375
|
*/
|
|
15376
|
-
deleteVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<
|
|
15376
|
+
deleteVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<object, any>>;
|
|
15377
15377
|
/**
|
|
15378
15378
|
* 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.
|
|
15379
15379
|
* @summary Remove TCP
|
|
@@ -15385,7 +15385,7 @@ declare class VirtualRobotSetupApi extends BaseAPI {
|
|
|
15385
15385
|
* @throws {RequiredError}
|
|
15386
15386
|
* @memberof VirtualRobotSetupApi
|
|
15387
15387
|
*/
|
|
15388
|
-
deleteVirtualRobotTcp(cell: string, controller: string, id: number, tcp: string, options?: RawAxiosRequestConfig): Promise<
|
|
15388
|
+
deleteVirtualRobotTcp(cell: string, controller: string, id: number, tcp: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<object, any>>;
|
|
15389
15389
|
/**
|
|
15390
15390
|
* Gets motion group mounting. The motion group is based on the origin of the returned coordinate system.
|
|
15391
15391
|
* @summary Get Mounting
|
|
@@ -15396,7 +15396,7 @@ declare class VirtualRobotSetupApi extends BaseAPI {
|
|
|
15396
15396
|
* @throws {RequiredError}
|
|
15397
15397
|
* @memberof VirtualRobotSetupApi
|
|
15398
15398
|
*/
|
|
15399
|
-
getVirtualRobotMounting(cell: string, controller: string, id: number, options?: RawAxiosRequestConfig): Promise<
|
|
15399
|
+
getVirtualRobotMounting(cell: string, controller: string, id: number, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<CoordinateSystem, any>>;
|
|
15400
15400
|
/**
|
|
15401
15401
|
* Lists all coordinate systems on the robot controller.
|
|
15402
15402
|
* @summary List Coordinate Systems
|
|
@@ -15406,7 +15406,7 @@ declare class VirtualRobotSetupApi extends BaseAPI {
|
|
|
15406
15406
|
* @throws {RequiredError}
|
|
15407
15407
|
* @memberof VirtualRobotSetupApi
|
|
15408
15408
|
*/
|
|
15409
|
-
listVirtualRobotCoordinateSystems(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
15409
|
+
listVirtualRobotCoordinateSystems(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<CoordinateSystems, any>>;
|
|
15410
15410
|
/**
|
|
15411
15411
|
* Lists TCPs of the motion group. An empty TCP list is valid, for example for external axes.
|
|
15412
15412
|
* @summary List TCPs
|
|
@@ -15417,7 +15417,7 @@ declare class VirtualRobotSetupApi extends BaseAPI {
|
|
|
15417
15417
|
* @throws {RequiredError}
|
|
15418
15418
|
* @memberof VirtualRobotSetupApi
|
|
15419
15419
|
*/
|
|
15420
|
-
listVirtualRobotTcps(cell: string, controller: string, id: number, options?: RawAxiosRequestConfig): Promise<
|
|
15420
|
+
listVirtualRobotTcps(cell: string, controller: string, id: number, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<RobotTcps, any>>;
|
|
15421
15421
|
/**
|
|
15422
15422
|
* 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.
|
|
15423
15423
|
* @summary Set Mounting
|
|
@@ -15429,7 +15429,7 @@ declare class VirtualRobotSetupApi extends BaseAPI {
|
|
|
15429
15429
|
* @throws {RequiredError}
|
|
15430
15430
|
* @memberof VirtualRobotSetupApi
|
|
15431
15431
|
*/
|
|
15432
|
-
setVirtualRobotMounting(cell: string, controller: string, id: number, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<
|
|
15432
|
+
setVirtualRobotMounting(cell: string, controller: string, id: number, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<CoordinateSystem, any>>;
|
|
15433
15433
|
}
|
|
15434
15434
|
//#endregion
|
|
15435
15435
|
export { AbbController, AbbControllerEgmServer, AbbControllerKindEnum, ActivateLicenseRequest, AddRequest, AllJointPositionsRequest, AllJointPositionsResponse, 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, 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 };
|