@wandelbots/nova-api 25.9.0-dev.31 → 25.9.0-dev.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/v1/index.cjs +5 -0
- package/dist/v1/index.d.cts +182 -177
- package/dist/v1/index.d.ts +182 -177
- package/dist/v1/index.js +5 -0
- package/dist/v2/index.cjs +200 -1
- package/dist/v2/index.d.cts +389 -7
- package/dist/v2/index.d.ts +389 -7
- package/dist/v2/index.js +193 -2
- package/package.json +1 -1
package/dist/v1/index.d.ts
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
|
|
@@ -7544,11 +7544,13 @@ declare const VirtualControllerTypes: {
|
|
|
7544
7544
|
readonly KukaLbrIisy11R1300: "kuka-lbr_iisy_11_r1300";
|
|
7545
7545
|
readonly UniversalrobotsUr10cb: "universalrobots-ur10cb";
|
|
7546
7546
|
readonly UniversalrobotsUr10e: "universalrobots-ur10e";
|
|
7547
|
+
readonly UniversalrobotsUr12e: "universalrobots-ur12e";
|
|
7547
7548
|
readonly UniversalrobotsUr16e: "universalrobots-ur16e";
|
|
7548
7549
|
readonly UniversalrobotsUr20e: "universalrobots-ur20e";
|
|
7549
7550
|
readonly UniversalrobotsUr3e: "universalrobots-ur3e";
|
|
7550
7551
|
readonly UniversalrobotsUr5cb: "universalrobots-ur5cb";
|
|
7551
7552
|
readonly UniversalrobotsUr5e: "universalrobots-ur5e";
|
|
7553
|
+
readonly UniversalrobotsUr7e: "universalrobots-ur7e";
|
|
7552
7554
|
readonly YaskawaAr1440: "yaskawa-ar1440";
|
|
7553
7555
|
readonly YaskawaAr1730: "yaskawa-ar1730";
|
|
7554
7556
|
readonly YaskawaAr2010: "yaskawa-ar2010";
|
|
@@ -7825,7 +7827,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
7825
7827
|
* @throws {RequiredError}
|
|
7826
7828
|
* @memberof ApplicationApi
|
|
7827
7829
|
*/
|
|
7828
|
-
addApp(cell: string, app: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
7830
|
+
addApp(cell: string, app: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
7829
7831
|
/**
|
|
7830
7832
|
* Delete all GUI applications from the cell.
|
|
7831
7833
|
* @summary Clear Applications
|
|
@@ -7835,7 +7837,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
7835
7837
|
* @throws {RequiredError}
|
|
7836
7838
|
* @memberof ApplicationApi
|
|
7837
7839
|
*/
|
|
7838
|
-
clearApps(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
7840
|
+
clearApps(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
7839
7841
|
/**
|
|
7840
7842
|
* Delete a GUI application from the cell.
|
|
7841
7843
|
* @summary Delete Application
|
|
@@ -7846,7 +7848,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
7846
7848
|
* @throws {RequiredError}
|
|
7847
7849
|
* @memberof ApplicationApi
|
|
7848
7850
|
*/
|
|
7849
|
-
deleteApp(cell: string, app: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
7851
|
+
deleteApp(cell: string, app: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
7850
7852
|
/**
|
|
7851
7853
|
* 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.
|
|
7852
7854
|
* @summary Configuration
|
|
@@ -7856,7 +7858,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
7856
7858
|
* @throws {RequiredError}
|
|
7857
7859
|
* @memberof ApplicationApi
|
|
7858
7860
|
*/
|
|
7859
|
-
getApp(cell: string, app: string, options?: RawAxiosRequestConfig): Promise<
|
|
7861
|
+
getApp(cell: string, app: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<App, any>>;
|
|
7860
7862
|
/**
|
|
7861
7863
|
* 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.
|
|
7862
7864
|
* @summary List Applications
|
|
@@ -7865,7 +7867,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
7865
7867
|
* @throws {RequiredError}
|
|
7866
7868
|
* @memberof ApplicationApi
|
|
7867
7869
|
*/
|
|
7868
|
-
listApps(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
7870
|
+
listApps(cell: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<string[], any>>;
|
|
7869
7871
|
/**
|
|
7870
7872
|
* Update the configuration of a GUI application in the cell.
|
|
7871
7873
|
* @summary Update Configuration
|
|
@@ -7877,7 +7879,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
7877
7879
|
* @throws {RequiredError}
|
|
7878
7880
|
* @memberof ApplicationApi
|
|
7879
7881
|
*/
|
|
7880
|
-
updateApp(cell: string, app: string, app2: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
7882
|
+
updateApp(cell: string, app: string, app2: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
7881
7883
|
}
|
|
7882
7884
|
/**
|
|
7883
7885
|
* CellApi - axios parameter creator
|
|
@@ -8066,7 +8068,7 @@ declare class CellApi extends BaseAPI {
|
|
|
8066
8068
|
* @throws {RequiredError}
|
|
8067
8069
|
* @memberof CellApi
|
|
8068
8070
|
*/
|
|
8069
|
-
deleteCell(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
8071
|
+
deleteCell(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
8070
8072
|
/**
|
|
8071
8073
|
* 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.
|
|
8072
8074
|
* @summary Add Cell
|
|
@@ -8076,7 +8078,7 @@ declare class CellApi extends BaseAPI {
|
|
|
8076
8078
|
* @throws {RequiredError}
|
|
8077
8079
|
* @memberof CellApi
|
|
8078
8080
|
*/
|
|
8079
|
-
deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
8081
|
+
deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
8080
8082
|
/**
|
|
8081
8083
|
* 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.
|
|
8082
8084
|
* @summary Configuration
|
|
@@ -8085,7 +8087,7 @@ declare class CellApi extends BaseAPI {
|
|
|
8085
8087
|
* @throws {RequiredError}
|
|
8086
8088
|
* @memberof CellApi
|
|
8087
8089
|
*/
|
|
8088
|
-
getCell(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
8090
|
+
getCell(cell: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<Cell, any>>;
|
|
8089
8091
|
/**
|
|
8090
8092
|
* List the status of all cell resources.
|
|
8091
8093
|
* @summary Service Status
|
|
@@ -8094,7 +8096,7 @@ declare class CellApi extends BaseAPI {
|
|
|
8094
8096
|
* @throws {RequiredError}
|
|
8095
8097
|
* @memberof CellApi
|
|
8096
8098
|
*/
|
|
8097
|
-
getCellStatus(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
8099
|
+
getCellStatus(cell: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ServiceStatus[], any>>;
|
|
8098
8100
|
/**
|
|
8099
8101
|
* List all deployed cell names. If no cells are deployed, an empty list is returned.
|
|
8100
8102
|
* @summary List Cells
|
|
@@ -8102,7 +8104,7 @@ declare class CellApi extends BaseAPI {
|
|
|
8102
8104
|
* @throws {RequiredError}
|
|
8103
8105
|
* @memberof CellApi
|
|
8104
8106
|
*/
|
|
8105
|
-
listCells(options?: RawAxiosRequestConfig): Promise<
|
|
8107
|
+
listCells(options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<string[], any>>;
|
|
8106
8108
|
/**
|
|
8107
8109
|
* Update the definition of the entire Cell.
|
|
8108
8110
|
* @summary Update Configuration
|
|
@@ -8113,7 +8115,7 @@ declare class CellApi extends BaseAPI {
|
|
|
8113
8115
|
* @throws {RequiredError}
|
|
8114
8116
|
* @memberof CellApi
|
|
8115
8117
|
*/
|
|
8116
|
-
updateCell(cell: string, cell2: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
8118
|
+
updateCell(cell: string, cell2: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
8117
8119
|
}
|
|
8118
8120
|
/**
|
|
8119
8121
|
* ControllerApi - axios parameter creator
|
|
@@ -8546,7 +8548,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
8546
8548
|
* @throws {RequiredError}
|
|
8547
8549
|
* @memberof ControllerApi
|
|
8548
8550
|
*/
|
|
8549
|
-
addRobotController(cell: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
8551
|
+
addRobotController(cell: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
8550
8552
|
/**
|
|
8551
8553
|
* 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.
|
|
8552
8554
|
* @summary Clear Robot Controllers
|
|
@@ -8556,7 +8558,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
8556
8558
|
* @throws {RequiredError}
|
|
8557
8559
|
* @memberof ControllerApi
|
|
8558
8560
|
*/
|
|
8559
|
-
clearRobotControllers(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
8561
|
+
clearRobotControllers(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
8560
8562
|
/**
|
|
8561
8563
|
* Delete a robot controller from the cell. <!-- theme: warning --> > **WARNING** > > Using it in conjunction with the settings app may lead to unpredictable behavior.
|
|
8562
8564
|
* @summary Delete Robot Controller
|
|
@@ -8567,7 +8569,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
8567
8569
|
* @throws {RequiredError}
|
|
8568
8570
|
* @memberof ControllerApi
|
|
8569
8571
|
*/
|
|
8570
|
-
deleteRobotController(cell: string, controller: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
8572
|
+
deleteRobotController(cell: string, controller: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
8571
8573
|
/**
|
|
8572
8574
|
* Get the current state of a robot controller.
|
|
8573
8575
|
* @summary State of Device
|
|
@@ -8577,7 +8579,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
8577
8579
|
* @throws {RequiredError}
|
|
8578
8580
|
* @memberof ControllerApi
|
|
8579
8581
|
*/
|
|
8580
|
-
getCurrentRobotControllerState(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
8582
|
+
getCurrentRobotControllerState(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<RobotControllerState, any>>;
|
|
8581
8583
|
/**
|
|
8582
8584
|
* 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).
|
|
8583
8585
|
* @summary Current Mode
|
|
@@ -8587,7 +8589,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
8587
8589
|
* @throws {RequiredError}
|
|
8588
8590
|
* @memberof ControllerApi
|
|
8589
8591
|
*/
|
|
8590
|
-
getMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
8592
|
+
getMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<GetModeResponse, any>>;
|
|
8591
8593
|
/**
|
|
8592
8594
|
* Get the configuration for a robot controller.
|
|
8593
8595
|
* @summary Robot Controller Configuration
|
|
@@ -8597,7 +8599,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
8597
8599
|
* @throws {RequiredError}
|
|
8598
8600
|
* @memberof ControllerApi
|
|
8599
8601
|
*/
|
|
8600
|
-
getRobotController(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
8602
|
+
getRobotController(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<RobotController, any>>;
|
|
8601
8603
|
/**
|
|
8602
8604
|
* Lists supported operating modes. Usually cobots support free drive and control, industrial robots only support control.
|
|
8603
8605
|
* @summary Supported Motion Modes
|
|
@@ -8607,7 +8609,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
8607
8609
|
* @throws {RequiredError}
|
|
8608
8610
|
* @memberof ControllerApi
|
|
8609
8611
|
*/
|
|
8610
|
-
getSupportedModes(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
8612
|
+
getSupportedModes(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ControllerCapabilities, any>>;
|
|
8611
8613
|
/**
|
|
8612
8614
|
* 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.
|
|
8613
8615
|
* @summary Virtual Robot Configuration
|
|
@@ -8617,7 +8619,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
8617
8619
|
* @throws {RequiredError}
|
|
8618
8620
|
* @memberof ControllerApi
|
|
8619
8621
|
*/
|
|
8620
|
-
getVirtualRobotConfiguration(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
8622
|
+
getVirtualRobotConfiguration(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<VirtualRobotConfiguration, any>>;
|
|
8621
8623
|
/**
|
|
8622
8624
|
* List all configured robot controllers.
|
|
8623
8625
|
* @summary List Robot Controllers
|
|
@@ -8626,7 +8628,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
8626
8628
|
* @throws {RequiredError}
|
|
8627
8629
|
* @memberof ControllerApi
|
|
8628
8630
|
*/
|
|
8629
|
-
listControllers(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
8631
|
+
listControllers(cell: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ControllerInstanceList, any>>;
|
|
8630
8632
|
/**
|
|
8631
8633
|
* 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.
|
|
8632
8634
|
* @summary Set Default Mode
|
|
@@ -8637,7 +8639,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
8637
8639
|
* @throws {RequiredError}
|
|
8638
8640
|
* @memberof ControllerApi
|
|
8639
8641
|
*/
|
|
8640
|
-
setDefaultMode(cell: string, controller: string, mode: SetDefaultModeModeEnum, options?: RawAxiosRequestConfig): Promise<
|
|
8642
|
+
setDefaultMode(cell: string, controller: string, mode: SetDefaultModeModeEnum, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
8641
8643
|
/**
|
|
8642
8644
|
* 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.
|
|
8643
8645
|
* @summary Stream Free Drive Mode
|
|
@@ -8648,7 +8650,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
8648
8650
|
* @throws {RequiredError}
|
|
8649
8651
|
* @memberof ControllerApi
|
|
8650
8652
|
*/
|
|
8651
|
-
streamFreeDrive(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<
|
|
8653
|
+
streamFreeDrive(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<RobotControllerState, any>>;
|
|
8652
8654
|
/**
|
|
8653
8655
|
* 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.
|
|
8654
8656
|
* @summary Stream Mode Change
|
|
@@ -8658,7 +8660,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
8658
8660
|
* @throws {RequiredError}
|
|
8659
8661
|
* @memberof ControllerApi
|
|
8660
8662
|
*/
|
|
8661
|
-
streamModeChange(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
8663
|
+
streamModeChange(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ModeChangeResponse, any>>;
|
|
8662
8664
|
/**
|
|
8663
8665
|
* Receive updates of the state of a robot controller.
|
|
8664
8666
|
* @summary Stream State of Device
|
|
@@ -8669,7 +8671,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
8669
8671
|
* @throws {RequiredError}
|
|
8670
8672
|
* @memberof ControllerApi
|
|
8671
8673
|
*/
|
|
8672
|
-
streamRobotControllerState(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<
|
|
8674
|
+
streamRobotControllerState(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<RobotControllerState, any>>;
|
|
8673
8675
|
/**
|
|
8674
8676
|
* 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).
|
|
8675
8677
|
* @summary Update Robot Controller Configuration
|
|
@@ -8681,7 +8683,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
8681
8683
|
* @throws {RequiredError}
|
|
8682
8684
|
* @memberof ControllerApi
|
|
8683
8685
|
*/
|
|
8684
|
-
updateRobotController(cell: string, controller: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
8686
|
+
updateRobotController(cell: string, controller: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
8685
8687
|
}
|
|
8686
8688
|
/**
|
|
8687
8689
|
* @export
|
|
@@ -8888,7 +8890,7 @@ declare class ControllerIOsApi extends BaseAPI {
|
|
|
8888
8890
|
* @throws {RequiredError}
|
|
8889
8891
|
* @memberof ControllerIOsApi
|
|
8890
8892
|
*/
|
|
8891
|
-
listIODescriptions(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<
|
|
8893
|
+
listIODescriptions(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ListIODescriptionsResponse, any>>;
|
|
8892
8894
|
/**
|
|
8893
8895
|
* 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).
|
|
8894
8896
|
* @summary Values
|
|
@@ -8899,7 +8901,7 @@ declare class ControllerIOsApi extends BaseAPI {
|
|
|
8899
8901
|
* @throws {RequiredError}
|
|
8900
8902
|
* @memberof ControllerIOsApi
|
|
8901
8903
|
*/
|
|
8902
|
-
listIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<
|
|
8904
|
+
listIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ListIOValuesResponse, any>>;
|
|
8903
8905
|
/**
|
|
8904
8906
|
* 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.
|
|
8905
8907
|
* @summary Set Values
|
|
@@ -8910,7 +8912,7 @@ declare class ControllerIOsApi extends BaseAPI {
|
|
|
8910
8912
|
* @throws {RequiredError}
|
|
8911
8913
|
* @memberof ControllerIOsApi
|
|
8912
8914
|
*/
|
|
8913
|
-
setOutputValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<
|
|
8915
|
+
setOutputValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
8914
8916
|
/**
|
|
8915
8917
|
* 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.
|
|
8916
8918
|
* @summary Stream Values
|
|
@@ -8921,7 +8923,7 @@ declare class ControllerIOsApi extends BaseAPI {
|
|
|
8921
8923
|
* @throws {RequiredError}
|
|
8922
8924
|
* @memberof ControllerIOsApi
|
|
8923
8925
|
*/
|
|
8924
|
-
streamIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<
|
|
8926
|
+
streamIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ListIOValuesResponse, any>>;
|
|
8925
8927
|
/**
|
|
8926
8928
|
* 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.
|
|
8927
8929
|
* @summary Wait For
|
|
@@ -8936,7 +8938,7 @@ declare class ControllerIOsApi extends BaseAPI {
|
|
|
8936
8938
|
* @throws {RequiredError}
|
|
8937
8939
|
* @memberof ControllerIOsApi
|
|
8938
8940
|
*/
|
|
8939
|
-
waitForIOEvent(cell: string, controller: string, io: string, comparisonType: WaitForIOEventComparisonTypeEnum, booleanValue?: boolean, integerValue?: string, floatingValue?: number, options?: RawAxiosRequestConfig): Promise<
|
|
8941
|
+
waitForIOEvent(cell: string, controller: string, io: string, comparisonType: WaitForIOEventComparisonTypeEnum, booleanValue?: boolean, integerValue?: string, floatingValue?: number, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<boolean, any>>;
|
|
8940
8942
|
}
|
|
8941
8943
|
/**
|
|
8942
8944
|
* @export
|
|
@@ -9122,7 +9124,7 @@ declare class CoordinateSystemsApi extends BaseAPI {
|
|
|
9122
9124
|
* @throws {RequiredError}
|
|
9123
9125
|
* @memberof CoordinateSystemsApi
|
|
9124
9126
|
*/
|
|
9125
|
-
addCoordinateSystem(cell: string, addRequest: AddRequest, options?: RawAxiosRequestConfig): Promise<
|
|
9127
|
+
addCoordinateSystem(cell: string, addRequest: AddRequest, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<CoordinateSystem, any>>;
|
|
9126
9128
|
/**
|
|
9127
9129
|
* 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.
|
|
9128
9130
|
* @summary Delete
|
|
@@ -9132,7 +9134,7 @@ declare class CoordinateSystemsApi extends BaseAPI {
|
|
|
9132
9134
|
* @throws {RequiredError}
|
|
9133
9135
|
* @memberof CoordinateSystemsApi
|
|
9134
9136
|
*/
|
|
9135
|
-
deleteCoordinateSystem(cell: string, coordinateSystem: string, options?: RawAxiosRequestConfig): Promise<
|
|
9137
|
+
deleteCoordinateSystem(cell: string, coordinateSystem: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
9136
9138
|
/**
|
|
9137
9139
|
* 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.
|
|
9138
9140
|
* @summary Description
|
|
@@ -9143,7 +9145,7 @@ declare class CoordinateSystemsApi extends BaseAPI {
|
|
|
9143
9145
|
* @throws {RequiredError}
|
|
9144
9146
|
* @memberof CoordinateSystemsApi
|
|
9145
9147
|
*/
|
|
9146
|
-
getCoordinateSystem(cell: string, coordinateSystem: string, rotationType?: RotationAngleTypes, options?: RawAxiosRequestConfig): Promise<
|
|
9148
|
+
getCoordinateSystem(cell: string, coordinateSystem: string, rotationType?: RotationAngleTypes, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<CoordinateSystem, any>>;
|
|
9147
9149
|
/**
|
|
9148
9150
|
* 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.
|
|
9149
9151
|
* @summary List
|
|
@@ -9153,7 +9155,7 @@ declare class CoordinateSystemsApi extends BaseAPI {
|
|
|
9153
9155
|
* @throws {RequiredError}
|
|
9154
9156
|
* @memberof CoordinateSystemsApi
|
|
9155
9157
|
*/
|
|
9156
|
-
listCoordinateSystems(cell: string, rotationType?: RotationAngleTypes, options?: RawAxiosRequestConfig): Promise<
|
|
9158
|
+
listCoordinateSystems(cell: string, rotationType?: RotationAngleTypes, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ListResponse, any>>;
|
|
9157
9159
|
/**
|
|
9158
9160
|
* Transform a pose to another base.
|
|
9159
9161
|
* @summary Transform
|
|
@@ -9164,7 +9166,7 @@ declare class CoordinateSystemsApi extends BaseAPI {
|
|
|
9164
9166
|
* @throws {RequiredError}
|
|
9165
9167
|
* @memberof CoordinateSystemsApi
|
|
9166
9168
|
*/
|
|
9167
|
-
transformInCoordinateSystem(cell: string, coordinateSystem: string, pose: Pose, options?: RawAxiosRequestConfig): Promise<
|
|
9169
|
+
transformInCoordinateSystem(cell: string, coordinateSystem: string, pose: Pose, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<Pose, any>>;
|
|
9168
9170
|
}
|
|
9169
9171
|
/**
|
|
9170
9172
|
* DeviceConfigurationApi - axios parameter creator
|
|
@@ -9344,7 +9346,7 @@ declare class DeviceConfigurationApi extends BaseAPI {
|
|
|
9344
9346
|
* @throws {RequiredError}
|
|
9345
9347
|
* @memberof DeviceConfigurationApi
|
|
9346
9348
|
*/
|
|
9347
|
-
clearDevices(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
9349
|
+
clearDevices(cell: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
9348
9350
|
/**
|
|
9349
9351
|
* 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.
|
|
9350
9352
|
* @summary Create Devices
|
|
@@ -9355,7 +9357,7 @@ declare class DeviceConfigurationApi extends BaseAPI {
|
|
|
9355
9357
|
* @throws {RequiredError}
|
|
9356
9358
|
* @memberof DeviceConfigurationApi
|
|
9357
9359
|
*/
|
|
9358
|
-
createDevice(cell: string, createDeviceRequestInner: Array<CreateDeviceRequestInner>, options?: RawAxiosRequestConfig): Promise<
|
|
9360
|
+
createDevice(cell: string, createDeviceRequestInner: Array<CreateDeviceRequestInner>, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<any, any>>;
|
|
9359
9361
|
/**
|
|
9360
9362
|
* Deprecated endpoint. Deletes a specific device from the cell.
|
|
9361
9363
|
* @summary Delete Device
|
|
@@ -9366,7 +9368,7 @@ declare class DeviceConfigurationApi extends BaseAPI {
|
|
|
9366
9368
|
* @throws {RequiredError}
|
|
9367
9369
|
* @memberof DeviceConfigurationApi
|
|
9368
9370
|
*/
|
|
9369
|
-
deleteDevice(cell: string, identifier: string, options?: RawAxiosRequestConfig): Promise<
|
|
9371
|
+
deleteDevice(cell: string, identifier: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
9370
9372
|
/**
|
|
9371
9373
|
* Deprecated endpoint. Returns information about a device.
|
|
9372
9374
|
* @summary Device Information
|
|
@@ -9377,7 +9379,7 @@ declare class DeviceConfigurationApi extends BaseAPI {
|
|
|
9377
9379
|
* @throws {RequiredError}
|
|
9378
9380
|
* @memberof DeviceConfigurationApi
|
|
9379
9381
|
*/
|
|
9380
|
-
getDevice(cell: string, identifier: string, options?: RawAxiosRequestConfig): Promise<
|
|
9382
|
+
getDevice(cell: string, identifier: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<any, any>>;
|
|
9381
9383
|
/**
|
|
9382
9384
|
* Deprecated endpoint. Lists all devices which are configured in the cell: - Robots - Databases - OPC UA devices
|
|
9383
9385
|
* @summary List All Devices
|
|
@@ -9387,7 +9389,7 @@ declare class DeviceConfigurationApi extends BaseAPI {
|
|
|
9387
9389
|
* @throws {RequiredError}
|
|
9388
9390
|
* @memberof DeviceConfigurationApi
|
|
9389
9391
|
*/
|
|
9390
|
-
listDevices(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
9392
|
+
listDevices(cell: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ListDevices200ResponseInner[], any>>;
|
|
9391
9393
|
}
|
|
9392
9394
|
/**
|
|
9393
9395
|
* LibraryProgramApi - axios parameter creator
|
|
@@ -9565,7 +9567,7 @@ declare class LibraryProgramApi extends BaseAPI {
|
|
|
9565
9567
|
* @throws {RequiredError}
|
|
9566
9568
|
* @memberof LibraryProgramApi
|
|
9567
9569
|
*/
|
|
9568
|
-
createProgram(cell: string, body: string, name?: string, options?: RawAxiosRequestConfig): Promise<
|
|
9570
|
+
createProgram(cell: string, body: string, name?: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ProgramMetadata, any>>;
|
|
9569
9571
|
/**
|
|
9570
9572
|
* <!-- theme: danger --> > **Experimental** Deletes the program with the corresponding metadata. This action is irreversible. Does not delete the associated recipes.
|
|
9571
9573
|
* @summary Delete Program
|
|
@@ -9575,7 +9577,7 @@ declare class LibraryProgramApi extends BaseAPI {
|
|
|
9575
9577
|
* @throws {RequiredError}
|
|
9576
9578
|
* @memberof LibraryProgramApi
|
|
9577
9579
|
*/
|
|
9578
|
-
deleteProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<
|
|
9580
|
+
deleteProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ProgramMetadata, any>>;
|
|
9579
9581
|
/**
|
|
9580
9582
|
* <!-- theme: danger --> > **Experimental** Deletes the provided list of programs with the corresponding metadata. This action is irreversible. Does not delete the associated recipes.
|
|
9581
9583
|
* @summary Delete Program List
|
|
@@ -9585,7 +9587,7 @@ declare class LibraryProgramApi extends BaseAPI {
|
|
|
9585
9587
|
* @throws {RequiredError}
|
|
9586
9588
|
* @memberof LibraryProgramApi
|
|
9587
9589
|
*/
|
|
9588
|
-
deleteProgramList(cell: string, programIds: Array<string>, options?: RawAxiosRequestConfig): Promise<
|
|
9590
|
+
deleteProgramList(cell: string, programIds: Array<string>, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ListProgramMetadataResponse, any>>;
|
|
9589
9591
|
/**
|
|
9590
9592
|
* <!-- 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.
|
|
9591
9593
|
* @summary Get Program
|
|
@@ -9595,7 +9597,7 @@ declare class LibraryProgramApi extends BaseAPI {
|
|
|
9595
9597
|
* @throws {RequiredError}
|
|
9596
9598
|
* @memberof LibraryProgramApi
|
|
9597
9599
|
*/
|
|
9598
|
-
getProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<
|
|
9600
|
+
getProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<string, any>>;
|
|
9599
9601
|
/**
|
|
9600
9602
|
* <!-- 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 ```
|
|
9601
9603
|
* @summary Update Program
|
|
@@ -9606,7 +9608,7 @@ declare class LibraryProgramApi extends BaseAPI {
|
|
|
9606
9608
|
* @throws {RequiredError}
|
|
9607
9609
|
* @memberof LibraryProgramApi
|
|
9608
9610
|
*/
|
|
9609
|
-
updateProgram(cell: string, program: string, body: string, options?: RawAxiosRequestConfig): Promise<
|
|
9611
|
+
updateProgram(cell: string, program: string, body: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ProgramMetadata, any>>;
|
|
9610
9612
|
}
|
|
9611
9613
|
/**
|
|
9612
9614
|
* LibraryProgramMetadataApi - axios parameter creator
|
|
@@ -9756,7 +9758,7 @@ declare class LibraryProgramMetadataApi extends BaseAPI {
|
|
|
9756
9758
|
* @throws {RequiredError}
|
|
9757
9759
|
* @memberof LibraryProgramMetadataApi
|
|
9758
9760
|
*/
|
|
9759
|
-
getProgramMetadata(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<
|
|
9761
|
+
getProgramMetadata(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ProgramMetadata, any>>;
|
|
9760
9762
|
/**
|
|
9761
9763
|
* <!-- theme: danger --> > **Experimental** Returns a list of all the stored programs, represented by their metadata.
|
|
9762
9764
|
* @summary List Program Metadata
|
|
@@ -9766,7 +9768,7 @@ declare class LibraryProgramMetadataApi extends BaseAPI {
|
|
|
9766
9768
|
* @throws {RequiredError}
|
|
9767
9769
|
* @memberof LibraryProgramMetadataApi
|
|
9768
9770
|
*/
|
|
9769
|
-
listProgramMetadata(cell: string, showHidden?: boolean, options?: RawAxiosRequestConfig): Promise<
|
|
9771
|
+
listProgramMetadata(cell: string, showHidden?: boolean, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ListProgramMetadataResponse, any>>;
|
|
9770
9772
|
/**
|
|
9771
9773
|
* <!-- theme: danger --> > **Experimental** Updates the metadata of the corresponding program. The update is partial, only the set fields get updated.
|
|
9772
9774
|
* @summary Update Program Metadata
|
|
@@ -9777,7 +9779,7 @@ declare class LibraryProgramMetadataApi extends BaseAPI {
|
|
|
9777
9779
|
* @throws {RequiredError}
|
|
9778
9780
|
* @memberof LibraryProgramMetadataApi
|
|
9779
9781
|
*/
|
|
9780
|
-
updateProgramMetadata(cell: string, program: string, updateProgramMetadataRequest: UpdateProgramMetadataRequest, options?: RawAxiosRequestConfig): Promise<
|
|
9782
|
+
updateProgramMetadata(cell: string, program: string, updateProgramMetadataRequest: UpdateProgramMetadataRequest, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ProgramMetadata, any>>;
|
|
9781
9783
|
/**
|
|
9782
9784
|
* <!-- 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.
|
|
9783
9785
|
* @summary Upload Program Metadata Image
|
|
@@ -9788,7 +9790,7 @@ declare class LibraryProgramMetadataApi extends BaseAPI {
|
|
|
9788
9790
|
* @throws {RequiredError}
|
|
9789
9791
|
* @memberof LibraryProgramMetadataApi
|
|
9790
9792
|
*/
|
|
9791
|
-
uploadProgramMetadataImage(cell: string, program: string, file: File, options?: RawAxiosRequestConfig): Promise<
|
|
9793
|
+
uploadProgramMetadataImage(cell: string, program: string, file: File, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ProgramMetadata, any>>;
|
|
9792
9794
|
}
|
|
9793
9795
|
/**
|
|
9794
9796
|
* LibraryRecipeApi - axios parameter creator
|
|
@@ -9970,7 +9972,7 @@ declare class LibraryRecipeApi extends BaseAPI {
|
|
|
9970
9972
|
* @throws {RequiredError}
|
|
9971
9973
|
* @memberof LibraryRecipeApi
|
|
9972
9974
|
*/
|
|
9973
|
-
createRecipe(cell: string, programId: string, body: object, name?: string, options?: RawAxiosRequestConfig): Promise<
|
|
9975
|
+
createRecipe(cell: string, programId: string, body: object, name?: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<RecipeMetadata, any>>;
|
|
9974
9976
|
/**
|
|
9975
9977
|
* # EXPERIMENTAL > **Note:** This endpoint is experimental and might experience functional changes in the future. Deletes a recipe. This action is irreversible.
|
|
9976
9978
|
* @summary Delete Recipe
|
|
@@ -9980,7 +9982,7 @@ declare class LibraryRecipeApi extends BaseAPI {
|
|
|
9980
9982
|
* @throws {RequiredError}
|
|
9981
9983
|
* @memberof LibraryRecipeApi
|
|
9982
9984
|
*/
|
|
9983
|
-
deleteRecipe(cell: string, recipe: string, options?: RawAxiosRequestConfig): Promise<
|
|
9985
|
+
deleteRecipe(cell: string, recipe: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<RecipeMetadata, any>>;
|
|
9984
9986
|
/**
|
|
9985
9987
|
* <!-- theme: danger --> > **Experimental** Deletes the provided list of recipes. This action is irreversible.
|
|
9986
9988
|
* @summary Delete Recipe List
|
|
@@ -9990,7 +9992,7 @@ declare class LibraryRecipeApi extends BaseAPI {
|
|
|
9990
9992
|
* @throws {RequiredError}
|
|
9991
9993
|
* @memberof LibraryRecipeApi
|
|
9992
9994
|
*/
|
|
9993
|
-
deleteRecipeList(cell: string, recipeIds: Array<string>, options?: RawAxiosRequestConfig): Promise<
|
|
9995
|
+
deleteRecipeList(cell: string, recipeIds: Array<string>, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ListRecipeMetadataResponse, any>>;
|
|
9994
9996
|
/**
|
|
9995
9997
|
* <!-- 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.
|
|
9996
9998
|
* @summary Get Recipe
|
|
@@ -10000,7 +10002,7 @@ declare class LibraryRecipeApi extends BaseAPI {
|
|
|
10000
10002
|
* @throws {RequiredError}
|
|
10001
10003
|
* @memberof LibraryRecipeApi
|
|
10002
10004
|
*/
|
|
10003
|
-
getRecipe(cell: string, recipe: string, options?: RawAxiosRequestConfig): Promise<
|
|
10005
|
+
getRecipe(cell: string, recipe: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<object, any>>;
|
|
10004
10006
|
/**
|
|
10005
10007
|
* <!-- theme: danger --> > **Experimental** Updates an existing recipe. The update is partial, only the set fields get updated.
|
|
10006
10008
|
* @summary Update Recipe
|
|
@@ -10011,7 +10013,7 @@ declare class LibraryRecipeApi extends BaseAPI {
|
|
|
10011
10013
|
* @throws {RequiredError}
|
|
10012
10014
|
* @memberof LibraryRecipeApi
|
|
10013
10015
|
*/
|
|
10014
|
-
updateRecipe(cell: string, recipe: string, body: object, options?: RawAxiosRequestConfig): Promise<
|
|
10016
|
+
updateRecipe(cell: string, recipe: string, body: object, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<RecipeMetadata, any>>;
|
|
10015
10017
|
}
|
|
10016
10018
|
/**
|
|
10017
10019
|
* LibraryRecipeMetadataApi - axios parameter creator
|
|
@@ -10158,7 +10160,7 @@ declare class LibraryRecipeMetadataApi extends BaseAPI {
|
|
|
10158
10160
|
* @throws {RequiredError}
|
|
10159
10161
|
* @memberof LibraryRecipeMetadataApi
|
|
10160
10162
|
*/
|
|
10161
|
-
getRecipeMetadata(cell: string, recipe: string, options?: RawAxiosRequestConfig): Promise<
|
|
10163
|
+
getRecipeMetadata(cell: string, recipe: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<RecipeMetadata, any>>;
|
|
10162
10164
|
/**
|
|
10163
10165
|
* <!-- theme: danger --> > **Experimental** List of all the stored recipes, represented by their metadata.
|
|
10164
10166
|
* @summary List Recipe Metadata
|
|
@@ -10167,7 +10169,7 @@ declare class LibraryRecipeMetadataApi extends BaseAPI {
|
|
|
10167
10169
|
* @throws {RequiredError}
|
|
10168
10170
|
* @memberof LibraryRecipeMetadataApi
|
|
10169
10171
|
*/
|
|
10170
|
-
listRecipeMetadata(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
10172
|
+
listRecipeMetadata(cell: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ListRecipeMetadataResponse, any>>;
|
|
10171
10173
|
/**
|
|
10172
10174
|
* <!-- theme: danger --> > **Experimental** Updates the metadata of a recipe. The update is partial, only the set fields get updated.
|
|
10173
10175
|
* @summary Update Recipe Metadata
|
|
@@ -10178,7 +10180,7 @@ declare class LibraryRecipeMetadataApi extends BaseAPI {
|
|
|
10178
10180
|
* @throws {RequiredError}
|
|
10179
10181
|
* @memberof LibraryRecipeMetadataApi
|
|
10180
10182
|
*/
|
|
10181
|
-
updateRecipeMetadata(cell: string, recipe: string, updateRecipeMetadataRequest: UpdateRecipeMetadataRequest, options?: RawAxiosRequestConfig): Promise<
|
|
10183
|
+
updateRecipeMetadata(cell: string, recipe: string, updateRecipeMetadataRequest: UpdateRecipeMetadataRequest, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<RecipeMetadata, any>>;
|
|
10182
10184
|
/**
|
|
10183
10185
|
* <!-- 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.
|
|
10184
10186
|
* @summary Upload Recipe Metadata Image
|
|
@@ -10189,7 +10191,7 @@ declare class LibraryRecipeMetadataApi extends BaseAPI {
|
|
|
10189
10191
|
* @throws {RequiredError}
|
|
10190
10192
|
* @memberof LibraryRecipeMetadataApi
|
|
10191
10193
|
*/
|
|
10192
|
-
uploadRecipeMetadataImage(cell: string, recipe: string, file: File, options?: RawAxiosRequestConfig): Promise<
|
|
10194
|
+
uploadRecipeMetadataImage(cell: string, recipe: string, file: File, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<RecipeMetadata, any>>;
|
|
10193
10195
|
}
|
|
10194
10196
|
/**
|
|
10195
10197
|
* LicenseApi - axios parameter creator
|
|
@@ -10311,7 +10313,7 @@ declare class LicenseApi extends BaseAPI {
|
|
|
10311
10313
|
* @throws {RequiredError}
|
|
10312
10314
|
* @memberof LicenseApi
|
|
10313
10315
|
*/
|
|
10314
|
-
activateLicense(activateLicenseRequest: ActivateLicenseRequest, options?: RawAxiosRequestConfig): Promise<
|
|
10316
|
+
activateLicense(activateLicenseRequest: ActivateLicenseRequest, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<License, any>>;
|
|
10315
10317
|
/**
|
|
10316
10318
|
* Deactivates active license.
|
|
10317
10319
|
* @summary Deactivate license
|
|
@@ -10319,7 +10321,7 @@ declare class LicenseApi extends BaseAPI {
|
|
|
10319
10321
|
* @throws {RequiredError}
|
|
10320
10322
|
* @memberof LicenseApi
|
|
10321
10323
|
*/
|
|
10322
|
-
deactivateLicense(options?: RawAxiosRequestConfig): Promise<
|
|
10324
|
+
deactivateLicense(options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
10323
10325
|
/**
|
|
10324
10326
|
* Get information on the license used with the Wandelbots NOVA instance, e.g. licensed product, expiration date, license status.
|
|
10325
10327
|
* @summary Get license
|
|
@@ -10327,7 +10329,7 @@ declare class LicenseApi extends BaseAPI {
|
|
|
10327
10329
|
* @throws {RequiredError}
|
|
10328
10330
|
* @memberof LicenseApi
|
|
10329
10331
|
*/
|
|
10330
|
-
getLicense(options?: RawAxiosRequestConfig): Promise<
|
|
10332
|
+
getLicense(options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<License, any>>;
|
|
10331
10333
|
/**
|
|
10332
10334
|
* 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.
|
|
10333
10335
|
* @summary Get license status
|
|
@@ -10335,7 +10337,7 @@ declare class LicenseApi extends BaseAPI {
|
|
|
10335
10337
|
* @throws {RequiredError}
|
|
10336
10338
|
* @memberof LicenseApi
|
|
10337
10339
|
*/
|
|
10338
|
-
getLicenseStatus(options?: RawAxiosRequestConfig): Promise<
|
|
10340
|
+
getLicenseStatus(options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<LicenseStatus, any>>;
|
|
10339
10341
|
}
|
|
10340
10342
|
/**
|
|
10341
10343
|
* MotionApi - axios parameter creator
|
|
@@ -10895,7 +10897,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
10895
10897
|
* @throws {RequiredError}
|
|
10896
10898
|
* @memberof MotionApi
|
|
10897
10899
|
*/
|
|
10898
|
-
deleteAllMotions(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
10900
|
+
deleteAllMotions(cell: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
10899
10901
|
/**
|
|
10900
10902
|
* 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.
|
|
10901
10903
|
* @summary Remove
|
|
@@ -10905,7 +10907,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
10905
10907
|
* @throws {RequiredError}
|
|
10906
10908
|
* @memberof MotionApi
|
|
10907
10909
|
*/
|
|
10908
|
-
deleteMotion(cell: string, motion: string, options?: RawAxiosRequestConfig): Promise<
|
|
10910
|
+
deleteMotion(cell: string, motion: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
10909
10911
|
/**
|
|
10910
10912
|
* <!-- 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.
|
|
10911
10913
|
* @summary Execute Trajectory
|
|
@@ -10915,7 +10917,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
10915
10917
|
* @throws {RequiredError}
|
|
10916
10918
|
* @memberof MotionApi
|
|
10917
10919
|
*/
|
|
10918
|
-
executeTrajectory(cell: string, executeTrajectoryRequest: ExecuteTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<
|
|
10920
|
+
executeTrajectory(cell: string, executeTrajectoryRequest: ExecuteTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ExecuteTrajectoryResponse, any>>;
|
|
10919
10921
|
/**
|
|
10920
10922
|
* 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.
|
|
10921
10923
|
* @summary Get Trajectory
|
|
@@ -10927,7 +10929,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
10927
10929
|
* @throws {RequiredError}
|
|
10928
10930
|
* @memberof MotionApi
|
|
10929
10931
|
*/
|
|
10930
|
-
getMotionTrajectory(cell: string, motion: string, sampleTime: number, responsesCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<
|
|
10932
|
+
getMotionTrajectory(cell: string, motion: string, sampleTime: number, responsesCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<GetTrajectoryResponse, any>>;
|
|
10931
10933
|
/**
|
|
10932
10934
|
* Get a single point at a certain location of a planned motion. To get the whole trajectory, use the [getMotionTrajectory](getMotionTrajectory) endpoint.
|
|
10933
10935
|
* @summary Get Trajectory Sample
|
|
@@ -10939,7 +10941,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
10939
10941
|
* @throws {RequiredError}
|
|
10940
10942
|
* @memberof MotionApi
|
|
10941
10943
|
*/
|
|
10942
|
-
getMotionTrajectorySample(cell: string, motion: string, locationOnTrajectory?: number, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<
|
|
10944
|
+
getMotionTrajectorySample(cell: string, motion: string, locationOnTrajectory?: number, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<GetTrajectorySampleResponse, any>>;
|
|
10943
10945
|
/**
|
|
10944
10946
|
* 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.
|
|
10945
10947
|
* @summary Get Planned Motion
|
|
@@ -10950,7 +10952,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
10950
10952
|
* @throws {RequiredError}
|
|
10951
10953
|
* @memberof MotionApi
|
|
10952
10954
|
*/
|
|
10953
|
-
getPlannedMotion(cell: string, motion: string, sampleTime?: number, options?: RawAxiosRequestConfig): Promise<
|
|
10955
|
+
getPlannedMotion(cell: string, motion: string, sampleTime?: number, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<PlannedMotion, any>>;
|
|
10954
10956
|
/**
|
|
10955
10957
|
* Returns motion group models that are supported for planning.
|
|
10956
10958
|
* @summary Motion Group Models for Planning
|
|
@@ -10959,7 +10961,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
10959
10961
|
* @throws {RequiredError}
|
|
10960
10962
|
* @memberof MotionApi
|
|
10961
10963
|
*/
|
|
10962
|
-
getPlanningMotionGroupModels(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
10964
|
+
getPlanningMotionGroupModels(cell: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<string[], any>>;
|
|
10963
10965
|
/**
|
|
10964
10966
|
* 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.
|
|
10965
10967
|
* @summary List All Motions
|
|
@@ -10968,7 +10970,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
10968
10970
|
* @throws {RequiredError}
|
|
10969
10971
|
* @memberof MotionApi
|
|
10970
10972
|
*/
|
|
10971
|
-
listMotions(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
10973
|
+
listMotions(cell: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<MotionIdsListResponse, any>>;
|
|
10972
10974
|
/**
|
|
10973
10975
|
* 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.
|
|
10974
10976
|
* @summary Load Planned Motion
|
|
@@ -10978,7 +10980,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
10978
10980
|
* @throws {RequiredError}
|
|
10979
10981
|
* @memberof MotionApi
|
|
10980
10982
|
*/
|
|
10981
|
-
loadPlannedMotion(cell: string, plannedMotion: PlannedMotion, options?: RawAxiosRequestConfig): Promise<
|
|
10983
|
+
loadPlannedMotion(cell: string, plannedMotion: PlannedMotion, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<PlanResponse, any>>;
|
|
10982
10984
|
/**
|
|
10983
10985
|
* <!-- 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.
|
|
10984
10986
|
* @summary Plan Collision Free PTP
|
|
@@ -10988,7 +10990,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
10988
10990
|
* @throws {RequiredError}
|
|
10989
10991
|
* @memberof MotionApi
|
|
10990
10992
|
*/
|
|
10991
|
-
planCollisionFreePTP(cell: string, planCollisionFreePTPRequest?: PlanCollisionFreePTPRequest, options?: RawAxiosRequestConfig): Promise<
|
|
10993
|
+
planCollisionFreePTP(cell: string, planCollisionFreePTPRequest?: PlanCollisionFreePTPRequest, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<PlanTrajectoryResponse, any>>;
|
|
10992
10994
|
/**
|
|
10993
10995
|
* 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.
|
|
10994
10996
|
* @summary Plan Motion
|
|
@@ -10999,7 +11001,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
10999
11001
|
* @throws {RequiredError}
|
|
11000
11002
|
* @memberof MotionApi
|
|
11001
11003
|
*/
|
|
11002
|
-
planMotion(cell: string, planRequest: PlanRequest, options?: RawAxiosRequestConfig): Promise<
|
|
11004
|
+
planMotion(cell: string, planRequest: PlanRequest, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<PlanResponse, any>>;
|
|
11003
11005
|
/**
|
|
11004
11006
|
* 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.
|
|
11005
11007
|
* @summary Plan Trajectory
|
|
@@ -11009,7 +11011,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
11009
11011
|
* @throws {RequiredError}
|
|
11010
11012
|
* @memberof MotionApi
|
|
11011
11013
|
*/
|
|
11012
|
-
planTrajectory(cell: string, planTrajectoryRequest?: PlanTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<
|
|
11014
|
+
planTrajectory(cell: string, planTrajectoryRequest?: PlanTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<PlanTrajectoryResponse, any>>;
|
|
11013
11015
|
/**
|
|
11014
11016
|
* 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.
|
|
11015
11017
|
* @summary Stop
|
|
@@ -11019,7 +11021,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
11019
11021
|
* @throws {RequiredError}
|
|
11020
11022
|
* @memberof MotionApi
|
|
11021
11023
|
*/
|
|
11022
|
-
stopExecution(cell: string, motion: string, options?: RawAxiosRequestConfig): Promise<
|
|
11024
|
+
stopExecution(cell: string, motion: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
11023
11025
|
/**
|
|
11024
11026
|
* 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.
|
|
11025
11027
|
* @summary Stream Move
|
|
@@ -11030,7 +11032,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
11030
11032
|
* @throws {RequiredError}
|
|
11031
11033
|
* @memberof MotionApi
|
|
11032
11034
|
*/
|
|
11033
|
-
streamMove(cell: string, streamMoveRequest: StreamMoveRequest, options?: RawAxiosRequestConfig): Promise<
|
|
11035
|
+
streamMove(cell: string, streamMoveRequest: StreamMoveRequest, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<StreamMoveResponse, any>>;
|
|
11034
11036
|
/**
|
|
11035
11037
|
* 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.
|
|
11036
11038
|
* @summary Stream Backward
|
|
@@ -11045,7 +11047,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
11045
11047
|
* @throws {RequiredError}
|
|
11046
11048
|
* @memberof MotionApi
|
|
11047
11049
|
*/
|
|
11048
|
-
streamMoveBackward(cell: string, motion: string, playbackSpeedInPercent: number, responseRate?: number, responseCoordinateSystem?: string, startLocationOnTrajectory?: number, options?: RawAxiosRequestConfig): Promise<
|
|
11050
|
+
streamMoveBackward(cell: string, motion: string, playbackSpeedInPercent: number, responseRate?: number, responseCoordinateSystem?: string, startLocationOnTrajectory?: number, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<StreamMoveResponse, any>>;
|
|
11049
11051
|
/**
|
|
11050
11052
|
* 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.
|
|
11051
11053
|
* @summary Stream Forward
|
|
@@ -11060,7 +11062,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
11060
11062
|
* @throws {RequiredError}
|
|
11061
11063
|
* @memberof MotionApi
|
|
11062
11064
|
*/
|
|
11063
|
-
streamMoveForward(cell: string, motion: string, playbackSpeedInPercent: number, responseRate?: number, responseCoordinateSystem?: string, startLocationOnTrajectory?: number, options?: RawAxiosRequestConfig): Promise<
|
|
11065
|
+
streamMoveForward(cell: string, motion: string, playbackSpeedInPercent: number, responseRate?: number, responseCoordinateSystem?: string, startLocationOnTrajectory?: number, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<StreamMoveResponse, any>>;
|
|
11064
11066
|
/**
|
|
11065
11067
|
* 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.
|
|
11066
11068
|
* @summary Stream to Trajectory
|
|
@@ -11078,7 +11080,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
11078
11080
|
* @throws {RequiredError}
|
|
11079
11081
|
* @memberof MotionApi
|
|
11080
11082
|
*/
|
|
11081
|
-
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<
|
|
11083
|
+
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>>;
|
|
11082
11084
|
}
|
|
11083
11085
|
/**
|
|
11084
11086
|
* MotionGroupApi - axios parameter creator
|
|
@@ -11219,7 +11221,7 @@ declare class MotionGroupApi extends BaseAPI {
|
|
|
11219
11221
|
* @throws {RequiredError}
|
|
11220
11222
|
* @memberof MotionGroupApi
|
|
11221
11223
|
*/
|
|
11222
|
-
activateAllMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
11224
|
+
activateAllMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<MotionGroupInstanceList, any>>;
|
|
11223
11225
|
/**
|
|
11224
11226
|
* 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).
|
|
11225
11227
|
* @summary Activate
|
|
@@ -11229,7 +11231,7 @@ declare class MotionGroupApi extends BaseAPI {
|
|
|
11229
11231
|
* @throws {RequiredError}
|
|
11230
11232
|
* @memberof MotionGroupApi
|
|
11231
11233
|
*/
|
|
11232
|
-
activateMotionGroup(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
11234
|
+
activateMotionGroup(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<MotionGroupInstance, any>>;
|
|
11233
11235
|
/**
|
|
11234
11236
|
* 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.
|
|
11235
11237
|
* @summary Deactivate
|
|
@@ -11239,7 +11241,7 @@ declare class MotionGroupApi extends BaseAPI {
|
|
|
11239
11241
|
* @throws {RequiredError}
|
|
11240
11242
|
* @memberof MotionGroupApi
|
|
11241
11243
|
*/
|
|
11242
|
-
deactivateMotionGroup(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
11244
|
+
deactivateMotionGroup(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
11243
11245
|
/**
|
|
11244
11246
|
* List all active motion groups. A motion group is active if it is currently used by a controller.
|
|
11245
11247
|
* @summary List Active
|
|
@@ -11248,7 +11250,7 @@ declare class MotionGroupApi extends BaseAPI {
|
|
|
11248
11250
|
* @throws {RequiredError}
|
|
11249
11251
|
* @memberof MotionGroupApi
|
|
11250
11252
|
*/
|
|
11251
|
-
listMotionGroups(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
11253
|
+
listMotionGroups(cell: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<MotionGroupInstanceList, any>>;
|
|
11252
11254
|
}
|
|
11253
11255
|
/**
|
|
11254
11256
|
* MotionGroupInfosApi - axios parameter creator
|
|
@@ -11605,7 +11607,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
|
|
|
11605
11607
|
* @throws {RequiredError}
|
|
11606
11608
|
* @memberof MotionGroupInfosApi
|
|
11607
11609
|
*/
|
|
11608
|
-
getActivePayload(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
11610
|
+
getActivePayload(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<Payload, any>>;
|
|
11609
11611
|
/**
|
|
11610
11612
|
* Get the internal selected TCP of a connected device.
|
|
11611
11613
|
* @summary Selected TCP
|
|
@@ -11616,7 +11618,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
|
|
|
11616
11618
|
* @throws {RequiredError}
|
|
11617
11619
|
* @memberof MotionGroupInfosApi
|
|
11618
11620
|
*/
|
|
11619
|
-
getActiveTcp(cell: string, motionGroup: string, rotationType?: RotationAngleTypes, options?: RawAxiosRequestConfig): Promise<
|
|
11621
|
+
getActiveTcp(cell: string, motionGroup: string, rotationType?: RotationAngleTypes, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<RobotTcp, any>>;
|
|
11620
11622
|
/**
|
|
11621
11623
|
* Returns the current state of the selected motion group including the current joint position, velocity, pose, and more.
|
|
11622
11624
|
* @summary State of Device
|
|
@@ -11628,7 +11630,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
|
|
|
11628
11630
|
* @throws {RequiredError}
|
|
11629
11631
|
* @memberof MotionGroupInfosApi
|
|
11630
11632
|
*/
|
|
11631
|
-
getCurrentMotionGroupState(cell: string, motionGroup: string, tcp?: string, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<
|
|
11633
|
+
getCurrentMotionGroupState(cell: string, motionGroup: string, tcp?: string, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<MotionGroupStateResponse, any>>;
|
|
11632
11634
|
/**
|
|
11633
11635
|
* 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.
|
|
11634
11636
|
* @summary Capabilities
|
|
@@ -11638,7 +11640,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
|
|
|
11638
11640
|
* @throws {RequiredError}
|
|
11639
11641
|
* @memberof MotionGroupInfosApi
|
|
11640
11642
|
*/
|
|
11641
|
-
getInfoCapabilities(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
11643
|
+
getInfoCapabilities(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<InfoServiceCapabilities, any>>;
|
|
11642
11644
|
/**
|
|
11643
11645
|
* 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.
|
|
11644
11646
|
* @summary Get Static Properties
|
|
@@ -11648,7 +11650,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
|
|
|
11648
11650
|
* @throws {RequiredError}
|
|
11649
11651
|
* @memberof MotionGroupInfosApi
|
|
11650
11652
|
*/
|
|
11651
|
-
getMotionGroupSpecification(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
11653
|
+
getMotionGroupSpecification(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<MotionGroupSpecification, any>>;
|
|
11652
11654
|
/**
|
|
11653
11655
|
* Returns the configured mounting pose offset in relation to world coordinate system and the motion groups coordinate system.
|
|
11654
11656
|
* @summary Device Mounting
|
|
@@ -11658,7 +11660,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
|
|
|
11658
11660
|
* @throws {RequiredError}
|
|
11659
11661
|
* @memberof MotionGroupInfosApi
|
|
11660
11662
|
*/
|
|
11661
|
-
getMounting(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
11663
|
+
getMounting(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<Mounting, any>>;
|
|
11662
11664
|
/**
|
|
11663
11665
|
* <!-- theme: danger --> > **Experimental** Get the complete configuration which can be passed to the planner-optimizer (incl. motion group description, limits etc.)
|
|
11664
11666
|
* @summary Optimizer Configuration
|
|
@@ -11669,7 +11671,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
|
|
|
11669
11671
|
* @throws {RequiredError}
|
|
11670
11672
|
* @memberof MotionGroupInfosApi
|
|
11671
11673
|
*/
|
|
11672
|
-
getOptimizerConfiguration(cell: string, motionGroup: string, tcp?: string, options?: RawAxiosRequestConfig): Promise<
|
|
11674
|
+
getOptimizerConfiguration(cell: string, motionGroup: string, tcp?: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<OptimizerSetup, any>>;
|
|
11673
11675
|
/**
|
|
11674
11676
|
* 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).
|
|
11675
11677
|
* @summary Safety Setup and Limitations
|
|
@@ -11679,7 +11681,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
|
|
|
11679
11681
|
* @throws {RequiredError}
|
|
11680
11682
|
* @memberof MotionGroupInfosApi
|
|
11681
11683
|
*/
|
|
11682
|
-
getSafetySetup(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
11684
|
+
getSafetySetup(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<SafetySetup, any>>;
|
|
11683
11685
|
/**
|
|
11684
11686
|
* 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.
|
|
11685
11687
|
* @summary List Payloads
|
|
@@ -11689,7 +11691,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
|
|
|
11689
11691
|
* @throws {RequiredError}
|
|
11690
11692
|
* @memberof MotionGroupInfosApi
|
|
11691
11693
|
*/
|
|
11692
|
-
listPayloads(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
11694
|
+
listPayloads(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ListPayloadsResponse, any>>;
|
|
11693
11695
|
/**
|
|
11694
11696
|
* Get all internal configured TCPs of a connected device.
|
|
11695
11697
|
* @summary List TCPs
|
|
@@ -11700,7 +11702,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
|
|
|
11700
11702
|
* @throws {RequiredError}
|
|
11701
11703
|
* @memberof MotionGroupInfosApi
|
|
11702
11704
|
*/
|
|
11703
|
-
listTcps(cell: string, motionGroup: string, rotationType?: RotationAngleTypes, options?: RawAxiosRequestConfig): Promise<
|
|
11705
|
+
listTcps(cell: string, motionGroup: string, rotationType?: RotationAngleTypes, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ListTcpsResponse, any>>;
|
|
11704
11706
|
/**
|
|
11705
11707
|
* Receive updates of the motion group state. The stream will be closed from the server if the controller is disconnected.
|
|
11706
11708
|
* @summary Stream State of Device
|
|
@@ -11713,7 +11715,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
|
|
|
11713
11715
|
* @throws {RequiredError}
|
|
11714
11716
|
* @memberof MotionGroupInfosApi
|
|
11715
11717
|
*/
|
|
11716
|
-
streamMotionGroupState(cell: string, motionGroup: string, responseRate?: number, responseCoordinateSystem?: string, tcp?: string, options?: RawAxiosRequestConfig): Promise<
|
|
11718
|
+
streamMotionGroupState(cell: string, motionGroup: string, responseRate?: number, responseCoordinateSystem?: string, tcp?: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<MotionGroupStateResponse, any>>;
|
|
11717
11719
|
}
|
|
11718
11720
|
/**
|
|
11719
11721
|
* MotionGroupJoggingApi - axios parameter creator
|
|
@@ -11857,7 +11859,7 @@ declare class MotionGroupJoggingApi extends BaseAPI {
|
|
|
11857
11859
|
* @throws {RequiredError}
|
|
11858
11860
|
* @memberof MotionGroupJoggingApi
|
|
11859
11861
|
*/
|
|
11860
|
-
directionJogging(cell: string, directionJoggingRequest: DirectionJoggingRequest, options?: RawAxiosRequestConfig): Promise<
|
|
11862
|
+
directionJogging(cell: string, directionJoggingRequest: DirectionJoggingRequest, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<JoggingResponse, any>>;
|
|
11861
11863
|
/**
|
|
11862
11864
|
* 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.
|
|
11863
11865
|
* @summary Capabilities
|
|
@@ -11867,7 +11869,7 @@ declare class MotionGroupJoggingApi extends BaseAPI {
|
|
|
11867
11869
|
* @throws {RequiredError}
|
|
11868
11870
|
* @memberof MotionGroupJoggingApi
|
|
11869
11871
|
*/
|
|
11870
|
-
getJoggingCapabilities(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
11872
|
+
getJoggingCapabilities(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<JoggingServiceCapabilities, any>>;
|
|
11871
11873
|
/**
|
|
11872
11874
|
* 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.
|
|
11873
11875
|
* @summary Stream Joints
|
|
@@ -11877,7 +11879,7 @@ declare class MotionGroupJoggingApi extends BaseAPI {
|
|
|
11877
11879
|
* @throws {RequiredError}
|
|
11878
11880
|
* @memberof MotionGroupJoggingApi
|
|
11879
11881
|
*/
|
|
11880
|
-
jointJogging(cell: string, jointJoggingRequest: JointJoggingRequest, options?: RawAxiosRequestConfig): Promise<
|
|
11882
|
+
jointJogging(cell: string, jointJoggingRequest: JointJoggingRequest, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<JoggingResponse, any>>;
|
|
11881
11883
|
/**
|
|
11882
11884
|
* 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.
|
|
11883
11885
|
* @summary Stop
|
|
@@ -11887,7 +11889,7 @@ declare class MotionGroupJoggingApi extends BaseAPI {
|
|
|
11887
11889
|
* @throws {RequiredError}
|
|
11888
11890
|
* @memberof MotionGroupJoggingApi
|
|
11889
11891
|
*/
|
|
11890
|
-
stopJogging(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
11892
|
+
stopJogging(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
11891
11893
|
}
|
|
11892
11894
|
/**
|
|
11893
11895
|
* MotionGroupKinematicApi - axios parameter creator
|
|
@@ -12041,7 +12043,7 @@ declare class MotionGroupKinematicApi extends BaseAPI {
|
|
|
12041
12043
|
* @throws {RequiredError}
|
|
12042
12044
|
* @memberof MotionGroupKinematicApi
|
|
12043
12045
|
*/
|
|
12044
|
-
calculateAllInverseKinematic(cell: string, motionGroup: string, allJointPositionsRequest: AllJointPositionsRequest, options?: RawAxiosRequestConfig): Promise<
|
|
12046
|
+
calculateAllInverseKinematic(cell: string, motionGroup: string, allJointPositionsRequest: AllJointPositionsRequest, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<AllJointPositionsResponse, any>>;
|
|
12045
12047
|
/**
|
|
12046
12048
|
* Calculates the TCP pose from a joint position sample using the forward kinematics of the motion-group.
|
|
12047
12049
|
* @summary TcpPose from JointPosition
|
|
@@ -12052,7 +12054,7 @@ declare class MotionGroupKinematicApi extends BaseAPI {
|
|
|
12052
12054
|
* @throws {RequiredError}
|
|
12053
12055
|
* @memberof MotionGroupKinematicApi
|
|
12054
12056
|
*/
|
|
12055
|
-
calculateForwardKinematic(cell: string, motionGroup: string, tcpPoseRequest: TcpPoseRequest, options?: RawAxiosRequestConfig): Promise<
|
|
12057
|
+
calculateForwardKinematic(cell: string, motionGroup: string, tcpPoseRequest: TcpPoseRequest, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<Pose, any>>;
|
|
12056
12058
|
/**
|
|
12057
12059
|
* 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.
|
|
12058
12060
|
* @summary Nearest JointPosition from TcpPose
|
|
@@ -12063,7 +12065,7 @@ declare class MotionGroupKinematicApi extends BaseAPI {
|
|
|
12063
12065
|
* @throws {RequiredError}
|
|
12064
12066
|
* @memberof MotionGroupKinematicApi
|
|
12065
12067
|
*/
|
|
12066
|
-
calculateInverseKinematic(cell: string, motionGroup: string, jointPositionRequest: JointPositionRequest, options?: RawAxiosRequestConfig): Promise<
|
|
12068
|
+
calculateInverseKinematic(cell: string, motionGroup: string, jointPositionRequest: JointPositionRequest, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<Joints, any>>;
|
|
12067
12069
|
/**
|
|
12068
12070
|
* Get the kinematic endpoints provided for the specified motion-group.
|
|
12069
12071
|
* @summary Capabilities
|
|
@@ -12073,7 +12075,7 @@ declare class MotionGroupKinematicApi extends BaseAPI {
|
|
|
12073
12075
|
* @throws {RequiredError}
|
|
12074
12076
|
* @memberof MotionGroupKinematicApi
|
|
12075
12077
|
*/
|
|
12076
|
-
getKinematicCapabilities(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
12078
|
+
getKinematicCapabilities(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<KinematicServiceCapabilities, any>>;
|
|
12077
12079
|
}
|
|
12078
12080
|
/**
|
|
12079
12081
|
* ProgramApi - axios parameter creator
|
|
@@ -12322,7 +12324,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
12322
12324
|
* @throws {RequiredError}
|
|
12323
12325
|
* @memberof ProgramApi
|
|
12324
12326
|
*/
|
|
12325
|
-
createProgramRunner(cell: string, request: Request, options?: RawAxiosRequestConfig): Promise<
|
|
12327
|
+
createProgramRunner(cell: string, request: Request, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ProgramRunnerReference, any>>;
|
|
12326
12328
|
/**
|
|
12327
12329
|
* 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)
|
|
12328
12330
|
* @summary Execute Program
|
|
@@ -12332,7 +12334,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
12332
12334
|
* @throws {RequiredError}
|
|
12333
12335
|
* @memberof ProgramApi
|
|
12334
12336
|
*/
|
|
12335
|
-
executeProgram(cell: string, codeWithArguments: CodeWithArguments, options?: RawAxiosRequestConfig): Promise<
|
|
12337
|
+
executeProgram(cell: string, codeWithArguments: CodeWithArguments, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ProgramRun, any>>;
|
|
12336
12338
|
/**
|
|
12337
12339
|
* 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
|
|
12338
12340
|
* @summary Get Program Runner
|
|
@@ -12342,7 +12344,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
12342
12344
|
* @throws {RequiredError}
|
|
12343
12345
|
* @memberof ProgramApi
|
|
12344
12346
|
*/
|
|
12345
|
-
getProgramRunner(cell: string, runner: string, options?: RawAxiosRequestConfig): Promise<
|
|
12347
|
+
getProgramRunner(cell: string, runner: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ProgramRun, any>>;
|
|
12346
12348
|
/**
|
|
12347
12349
|
* Get details about all existing program runners.
|
|
12348
12350
|
* @summary List Program Runners
|
|
@@ -12351,7 +12353,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
12351
12353
|
* @throws {RequiredError}
|
|
12352
12354
|
* @memberof ProgramApi
|
|
12353
12355
|
*/
|
|
12354
|
-
listProgramRunners(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
12356
|
+
listProgramRunners(cell: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ProgramRunnerReference[], any>>;
|
|
12355
12357
|
/**
|
|
12356
12358
|
* Migrate a program ## Parameters See the **Schema** tab for information about the request body
|
|
12357
12359
|
* @summary Migrate Program
|
|
@@ -12361,7 +12363,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
12361
12363
|
* @throws {RequiredError}
|
|
12362
12364
|
* @memberof ProgramApi
|
|
12363
12365
|
*/
|
|
12364
|
-
migrateProgram(cell: string, request1: Request1, options?: RawAxiosRequestConfig): Promise<
|
|
12366
|
+
migrateProgram(cell: string, request1: Request1, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<string, any>>;
|
|
12365
12367
|
/**
|
|
12366
12368
|
* 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)
|
|
12367
12369
|
* @summary Plan Program
|
|
@@ -12372,7 +12374,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
12372
12374
|
* @throws {RequiredError}
|
|
12373
12375
|
* @memberof ProgramApi
|
|
12374
12376
|
*/
|
|
12375
|
-
planProgram(cell: string, request: Request, identifier?: string, options?: RawAxiosRequestConfig): Promise<
|
|
12377
|
+
planProgram(cell: string, request: Request, identifier?: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ProgramRun, any>>;
|
|
12376
12378
|
/**
|
|
12377
12379
|
* Stop all runners.
|
|
12378
12380
|
* @summary Stop All Program Runners
|
|
@@ -12381,7 +12383,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
12381
12383
|
* @throws {RequiredError}
|
|
12382
12384
|
* @memberof ProgramApi
|
|
12383
12385
|
*/
|
|
12384
|
-
stopAllProgramRunner(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
12386
|
+
stopAllProgramRunner(cell: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<any, any>>;
|
|
12385
12387
|
/**
|
|
12386
12388
|
* 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
|
|
12387
12389
|
* @summary Stop Program Runner
|
|
@@ -12391,7 +12393,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
12391
12393
|
* @throws {RequiredError}
|
|
12392
12394
|
* @memberof ProgramApi
|
|
12393
12395
|
*/
|
|
12394
|
-
stopProgramRunner(cell: string, runner: string, options?: RawAxiosRequestConfig): Promise<
|
|
12396
|
+
stopProgramRunner(cell: string, runner: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
12395
12397
|
}
|
|
12396
12398
|
/**
|
|
12397
12399
|
* ProgramOperatorApi - axios parameter creator
|
|
@@ -12643,7 +12645,7 @@ declare class ProgramOperatorApi extends BaseAPI {
|
|
|
12643
12645
|
* @throws {RequiredError}
|
|
12644
12646
|
* @memberof ProgramOperatorApi
|
|
12645
12647
|
*/
|
|
12646
|
-
createProgramRun(cell: string, createProgramRunRequest: CreateProgramRunRequest, options?: RawAxiosRequestConfig): Promise<
|
|
12648
|
+
createProgramRun(cell: string, createProgramRunRequest: CreateProgramRunRequest, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<CreateProgramRun200Response, any>>;
|
|
12647
12649
|
/**
|
|
12648
12650
|
* <!-- 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.
|
|
12649
12651
|
* @summary Create Trigger
|
|
@@ -12653,7 +12655,7 @@ declare class ProgramOperatorApi extends BaseAPI {
|
|
|
12653
12655
|
* @throws {RequiredError}
|
|
12654
12656
|
* @memberof ProgramOperatorApi
|
|
12655
12657
|
*/
|
|
12656
|
-
createTrigger(cell: string, createTriggerRequest: CreateTriggerRequest, options?: RawAxiosRequestConfig): Promise<
|
|
12658
|
+
createTrigger(cell: string, createTriggerRequest: CreateTriggerRequest, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<CreateTrigger200Response, any>>;
|
|
12657
12659
|
/**
|
|
12658
12660
|
* <!-- theme: danger --> > **Experimental** Delete an existing trigger.
|
|
12659
12661
|
* @summary Delete Trigger
|
|
@@ -12663,7 +12665,7 @@ declare class ProgramOperatorApi extends BaseAPI {
|
|
|
12663
12665
|
* @throws {RequiredError}
|
|
12664
12666
|
* @memberof ProgramOperatorApi
|
|
12665
12667
|
*/
|
|
12666
|
-
deleteTrigger(trigger: string, cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
12668
|
+
deleteTrigger(trigger: string, cell: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
12667
12669
|
/**
|
|
12668
12670
|
* <!-- theme: danger --> > **Experimental** Retrieves all program runs, including past and current executions. Use the optional `state` parameter to filter the results by their status.
|
|
12669
12671
|
* @summary Get All Program Runs
|
|
@@ -12673,7 +12675,7 @@ declare class ProgramOperatorApi extends BaseAPI {
|
|
|
12673
12675
|
* @throws {RequiredError}
|
|
12674
12676
|
* @memberof ProgramOperatorApi
|
|
12675
12677
|
*/
|
|
12676
|
-
getAllProgramRuns(cell: string, state?: string, options?: RawAxiosRequestConfig): Promise<
|
|
12678
|
+
getAllProgramRuns(cell: string, state?: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<GetAllProgramRuns200Response, any>>;
|
|
12677
12679
|
/**
|
|
12678
12680
|
* <!-- 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.
|
|
12679
12681
|
* @summary Get All Triggers
|
|
@@ -12682,7 +12684,7 @@ declare class ProgramOperatorApi extends BaseAPI {
|
|
|
12682
12684
|
* @throws {RequiredError}
|
|
12683
12685
|
* @memberof ProgramOperatorApi
|
|
12684
12686
|
*/
|
|
12685
|
-
getAllTriggers(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
12687
|
+
getAllTriggers(cell: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<GetAllTriggers200Response, any>>;
|
|
12686
12688
|
/**
|
|
12687
12689
|
* <!-- theme: danger --> > **Experimental** Retrieves detailed information about a specific program run.
|
|
12688
12690
|
* @summary Get Program Run
|
|
@@ -12692,7 +12694,7 @@ declare class ProgramOperatorApi extends BaseAPI {
|
|
|
12692
12694
|
* @throws {RequiredError}
|
|
12693
12695
|
* @memberof ProgramOperatorApi
|
|
12694
12696
|
*/
|
|
12695
|
-
getProgramRun(run: string, cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
12697
|
+
getProgramRun(run: string, cell: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ProgramRunObject, any>>;
|
|
12696
12698
|
/**
|
|
12697
12699
|
* <!-- theme: danger --> > **Experimental** Retrieves detailed information about a specific trigger.
|
|
12698
12700
|
* @summary Get Trigger
|
|
@@ -12702,7 +12704,7 @@ declare class ProgramOperatorApi extends BaseAPI {
|
|
|
12702
12704
|
* @throws {RequiredError}
|
|
12703
12705
|
* @memberof ProgramOperatorApi
|
|
12704
12706
|
*/
|
|
12705
|
-
getTrigger(trigger: string, cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
12707
|
+
getTrigger(trigger: string, cell: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<TriggerObject, any>>;
|
|
12706
12708
|
/**
|
|
12707
12709
|
* <!-- 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.
|
|
12708
12710
|
* @summary Update Trigger
|
|
@@ -12713,7 +12715,7 @@ declare class ProgramOperatorApi extends BaseAPI {
|
|
|
12713
12715
|
* @throws {RequiredError}
|
|
12714
12716
|
* @memberof ProgramOperatorApi
|
|
12715
12717
|
*/
|
|
12716
|
-
updateTrigger(trigger: string, cell: string, updateTriggerRequest: UpdateTriggerRequest, options?: RawAxiosRequestConfig): Promise<
|
|
12718
|
+
updateTrigger(trigger: string, cell: string, updateTriggerRequest: UpdateTriggerRequest, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<TriggerObject, any>>;
|
|
12717
12719
|
}
|
|
12718
12720
|
/**
|
|
12719
12721
|
* ProgramValuesApi - axios parameter creator
|
|
@@ -12936,7 +12938,7 @@ declare class ProgramValuesApi extends BaseAPI {
|
|
|
12936
12938
|
* @throws {RequiredError}
|
|
12937
12939
|
* @memberof ProgramValuesApi
|
|
12938
12940
|
*/
|
|
12939
|
-
clearProgramsValues(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
12941
|
+
clearProgramsValues(cell: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
12940
12942
|
/**
|
|
12941
12943
|
* 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)
|
|
12942
12944
|
* @summary Add Value(s)
|
|
@@ -12949,7 +12951,7 @@ declare class ProgramValuesApi extends BaseAPI {
|
|
|
12949
12951
|
*/
|
|
12950
12952
|
createProgramsValue(cell: string, requestBody: {
|
|
12951
12953
|
[key: string]: CollectionValue;
|
|
12952
|
-
}, options?: RawAxiosRequestConfig): Promise<
|
|
12954
|
+
}, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
12953
12955
|
/**
|
|
12954
12956
|
* Delete a value from the database.
|
|
12955
12957
|
* @summary Delete Value
|
|
@@ -12960,7 +12962,7 @@ declare class ProgramValuesApi extends BaseAPI {
|
|
|
12960
12962
|
* @throws {RequiredError}
|
|
12961
12963
|
* @memberof ProgramValuesApi
|
|
12962
12964
|
*/
|
|
12963
|
-
deleteProgramValue(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<
|
|
12965
|
+
deleteProgramValue(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
12964
12966
|
/**
|
|
12965
12967
|
* 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)
|
|
12966
12968
|
* @summary Get Value
|
|
@@ -12971,7 +12973,7 @@ declare class ProgramValuesApi extends BaseAPI {
|
|
|
12971
12973
|
* @throws {RequiredError}
|
|
12972
12974
|
* @memberof ProgramValuesApi
|
|
12973
12975
|
*/
|
|
12974
|
-
getProgramValue(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<
|
|
12976
|
+
getProgramValue(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ResponseGetValueProgramsValuesKeyGet, any>>;
|
|
12975
12977
|
/**
|
|
12976
12978
|
* 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)
|
|
12977
12979
|
* @summary Get Values
|
|
@@ -12981,7 +12983,7 @@ declare class ProgramValuesApi extends BaseAPI {
|
|
|
12981
12983
|
* @throws {RequiredError}
|
|
12982
12984
|
* @memberof ProgramValuesApi
|
|
12983
12985
|
*/
|
|
12984
|
-
listProgramsValues(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
12986
|
+
listProgramsValues(cell: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<{
|
|
12985
12987
|
[key: string]: ResponseGetValuesProgramsValuesGetValue;
|
|
12986
12988
|
}, any>>;
|
|
12987
12989
|
/**
|
|
@@ -12995,7 +12997,7 @@ declare class ProgramValuesApi extends BaseAPI {
|
|
|
12995
12997
|
* @throws {RequiredError}
|
|
12996
12998
|
* @memberof ProgramValuesApi
|
|
12997
12999
|
*/
|
|
12998
|
-
updateProgramValue(cell: string, key: string, value: Value, options?: RawAxiosRequestConfig): Promise<
|
|
13000
|
+
updateProgramValue(cell: string, key: string, value: Value, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
12999
13001
|
}
|
|
13000
13002
|
/**
|
|
13001
13003
|
* StoreCollisionComponentsApi - axios parameter creator
|
|
@@ -13434,7 +13436,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
13434
13436
|
* @throws {RequiredError}
|
|
13435
13437
|
* @memberof StoreCollisionComponentsApi
|
|
13436
13438
|
*/
|
|
13437
|
-
deleteStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<
|
|
13439
|
+
deleteStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
13438
13440
|
/**
|
|
13439
13441
|
* Deletes the stored link chain. <!-- theme: danger --> > This will delete persistently stored data.
|
|
13440
13442
|
* @summary Delete Link Chain
|
|
@@ -13444,7 +13446,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
13444
13446
|
* @throws {RequiredError}
|
|
13445
13447
|
* @memberof StoreCollisionComponentsApi
|
|
13446
13448
|
*/
|
|
13447
|
-
deleteStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<
|
|
13449
|
+
deleteStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
13448
13450
|
/**
|
|
13449
13451
|
* Deletes the stored tool. <!-- theme: danger --> > This will delete persistently stored data.
|
|
13450
13452
|
* @summary Delete Tool
|
|
@@ -13454,7 +13456,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
13454
13456
|
* @throws {RequiredError}
|
|
13455
13457
|
* @memberof StoreCollisionComponentsApi
|
|
13456
13458
|
*/
|
|
13457
|
-
deleteStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<
|
|
13459
|
+
deleteStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
13458
13460
|
/**
|
|
13459
13461
|
* 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.
|
|
13460
13462
|
* @summary Get Default Link Chain
|
|
@@ -13464,7 +13466,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
13464
13466
|
* @throws {RequiredError}
|
|
13465
13467
|
* @memberof StoreCollisionComponentsApi
|
|
13466
13468
|
*/
|
|
13467
|
-
getDefaultLinkChain(cell: string, motionGroupModel: GetDefaultLinkChainMotionGroupModelEnum, options?: RawAxiosRequestConfig): Promise<
|
|
13469
|
+
getDefaultLinkChain(cell: string, motionGroupModel: GetDefaultLinkChainMotionGroupModelEnum, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<{
|
|
13468
13470
|
[key: string]: Collider;
|
|
13469
13471
|
}[], any>>;
|
|
13470
13472
|
/**
|
|
@@ -13476,7 +13478,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
13476
13478
|
* @throws {RequiredError}
|
|
13477
13479
|
* @memberof StoreCollisionComponentsApi
|
|
13478
13480
|
*/
|
|
13479
|
-
getStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<
|
|
13481
|
+
getStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<Collider, any>>;
|
|
13480
13482
|
/**
|
|
13481
13483
|
* Returns the collision link chain.
|
|
13482
13484
|
* @summary Get Link Chain
|
|
@@ -13486,7 +13488,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
13486
13488
|
* @throws {RequiredError}
|
|
13487
13489
|
* @memberof StoreCollisionComponentsApi
|
|
13488
13490
|
*/
|
|
13489
|
-
getStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<
|
|
13491
|
+
getStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<{
|
|
13490
13492
|
[key: string]: Collider;
|
|
13491
13493
|
}[], any>>;
|
|
13492
13494
|
/**
|
|
@@ -13498,7 +13500,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
13498
13500
|
* @throws {RequiredError}
|
|
13499
13501
|
* @memberof StoreCollisionComponentsApi
|
|
13500
13502
|
*/
|
|
13501
|
-
getStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<
|
|
13503
|
+
getStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<{
|
|
13502
13504
|
[key: string]: Collider;
|
|
13503
13505
|
}, any>>;
|
|
13504
13506
|
/**
|
|
@@ -13509,7 +13511,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
13509
13511
|
* @throws {RequiredError}
|
|
13510
13512
|
* @memberof StoreCollisionComponentsApi
|
|
13511
13513
|
*/
|
|
13512
|
-
listCollisionLinkChains(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
13514
|
+
listCollisionLinkChains(cell: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<{
|
|
13513
13515
|
[key: string]: {
|
|
13514
13516
|
[key: string]: Collider;
|
|
13515
13517
|
}[];
|
|
@@ -13522,7 +13524,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
13522
13524
|
* @throws {RequiredError}
|
|
13523
13525
|
* @memberof StoreCollisionComponentsApi
|
|
13524
13526
|
*/
|
|
13525
|
-
listStoredColliders(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
13527
|
+
listStoredColliders(cell: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<{
|
|
13526
13528
|
[key: string]: Collider;
|
|
13527
13529
|
}, any>>;
|
|
13528
13530
|
/**
|
|
@@ -13533,7 +13535,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
13533
13535
|
* @throws {RequiredError}
|
|
13534
13536
|
* @memberof StoreCollisionComponentsApi
|
|
13535
13537
|
*/
|
|
13536
|
-
listStoredCollisionTools(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
13538
|
+
listStoredCollisionTools(cell: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<{
|
|
13537
13539
|
[key: string]: {
|
|
13538
13540
|
[key: string]: Collider;
|
|
13539
13541
|
};
|
|
@@ -13548,7 +13550,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
13548
13550
|
* @throws {RequiredError}
|
|
13549
13551
|
* @memberof StoreCollisionComponentsApi
|
|
13550
13552
|
*/
|
|
13551
|
-
storeCollider(cell: string, collider: string, collider2: Collider, options?: RawAxiosRequestConfig): Promise<
|
|
13553
|
+
storeCollider(cell: string, collider: string, collider2: Collider, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<Collider, any>>;
|
|
13552
13554
|
/**
|
|
13553
13555
|
* Stores link chain. If the link chain does not exist, it will be created. If the link chain exists, it will be updated.
|
|
13554
13556
|
* @summary Store Link Chain
|
|
@@ -13561,7 +13563,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
13561
13563
|
*/
|
|
13562
13564
|
storeCollisionLinkChain(cell: string, linkChain: string, collider: Array<{
|
|
13563
13565
|
[key: string]: Collider;
|
|
13564
|
-
}>, options?: RawAxiosRequestConfig): Promise<
|
|
13566
|
+
}>, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<{
|
|
13565
13567
|
[key: string]: Collider;
|
|
13566
13568
|
}[], any>>;
|
|
13567
13569
|
/**
|
|
@@ -13576,7 +13578,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
13576
13578
|
*/
|
|
13577
13579
|
storeCollisionTool(cell: string, tool: string, requestBody: {
|
|
13578
13580
|
[key: string]: Collider;
|
|
13579
|
-
}, options?: RawAxiosRequestConfig): Promise<
|
|
13581
|
+
}, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<{
|
|
13580
13582
|
[key: string]: Collider;
|
|
13581
13583
|
}, any>>;
|
|
13582
13584
|
}
|
|
@@ -13629,6 +13631,7 @@ declare const GetDefaultLinkChainMotionGroupModelEnum: {
|
|
|
13629
13631
|
readonly FanucCrx10iAl: "FANUC_CRX10iAL";
|
|
13630
13632
|
readonly FanucCrx20iAl: "FANUC_CRX20iAL";
|
|
13631
13633
|
readonly FanucCrx25iA: "FANUC_CRX25iA";
|
|
13634
|
+
readonly FanucCrx30iA: "FANUC_CRX30iA";
|
|
13632
13635
|
readonly FanucCrx5iA: "FANUC_CRX5iA";
|
|
13633
13636
|
readonly FanucLrMate200iD: "FANUC_LR_Mate_200iD";
|
|
13634
13637
|
readonly FanucLrMate200iD4S: "FANUC_LR_Mate_200iD4S";
|
|
@@ -13692,12 +13695,14 @@ declare const GetDefaultLinkChainMotionGroupModelEnum: {
|
|
|
13692
13695
|
readonly KukaLbrIisy11R1300: "KUKA_LBR_IISY_11_R1300";
|
|
13693
13696
|
readonly UniversalRobotsUr10: "UniversalRobots_UR10";
|
|
13694
13697
|
readonly UniversalRobotsUr10e: "UniversalRobots_UR10e";
|
|
13698
|
+
readonly UniversalRobotsUr12e: "UniversalRobots_UR12e";
|
|
13695
13699
|
readonly UniversalRobotsUr16e: "UniversalRobots_UR16e";
|
|
13696
13700
|
readonly UniversalRobotsUr20e: "UniversalRobots_UR20e";
|
|
13697
13701
|
readonly UniversalRobotsUr3: "UniversalRobots_UR3";
|
|
13698
13702
|
readonly UniversalRobotsUr3e: "UniversalRobots_UR3e";
|
|
13699
13703
|
readonly UniversalRobotsUr5: "UniversalRobots_UR5";
|
|
13700
13704
|
readonly UniversalRobotsUr5e: "UniversalRobots_UR5e";
|
|
13705
|
+
readonly UniversalRobotsUr7e: "UniversalRobots_UR7e";
|
|
13701
13706
|
readonly YaskawaAr1440: "Yaskawa_AR1440";
|
|
13702
13707
|
readonly YaskawaAr1440E: "Yaskawa_AR1440E";
|
|
13703
13708
|
readonly YaskawaAr1730: "Yaskawa_AR1730";
|
|
@@ -13892,7 +13897,7 @@ declare class StoreCollisionScenesApi extends BaseAPI {
|
|
|
13892
13897
|
* @throws {RequiredError}
|
|
13893
13898
|
* @memberof StoreCollisionScenesApi
|
|
13894
13899
|
*/
|
|
13895
|
-
deleteStoredCollisionScene(cell: string, scene: string, options?: RawAxiosRequestConfig): Promise<
|
|
13900
|
+
deleteStoredCollisionScene(cell: string, scene: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
13896
13901
|
/**
|
|
13897
13902
|
* Returns the stored scene.
|
|
13898
13903
|
* @summary Get Scene
|
|
@@ -13902,7 +13907,7 @@ declare class StoreCollisionScenesApi extends BaseAPI {
|
|
|
13902
13907
|
* @throws {RequiredError}
|
|
13903
13908
|
* @memberof StoreCollisionScenesApi
|
|
13904
13909
|
*/
|
|
13905
|
-
getStoredCollisionScene(cell: string, scene: string, options?: RawAxiosRequestConfig): Promise<
|
|
13910
|
+
getStoredCollisionScene(cell: string, scene: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<CollisionScene, any>>;
|
|
13906
13911
|
/**
|
|
13907
13912
|
* Returns a list of stored scenes.
|
|
13908
13913
|
* @summary List Scenes
|
|
@@ -13911,7 +13916,7 @@ declare class StoreCollisionScenesApi extends BaseAPI {
|
|
|
13911
13916
|
* @throws {RequiredError}
|
|
13912
13917
|
* @memberof StoreCollisionScenesApi
|
|
13913
13918
|
*/
|
|
13914
|
-
listStoredCollisionScenes(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
13919
|
+
listStoredCollisionScenes(cell: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<{
|
|
13915
13920
|
[key: string]: CollisionScene;
|
|
13916
13921
|
}, any>>;
|
|
13917
13922
|
/**
|
|
@@ -13924,7 +13929,7 @@ declare class StoreCollisionScenesApi extends BaseAPI {
|
|
|
13924
13929
|
* @throws {RequiredError}
|
|
13925
13930
|
* @memberof StoreCollisionScenesApi
|
|
13926
13931
|
*/
|
|
13927
|
-
storeCollisionScene(cell: string, scene: string, collisionSceneAssembly: CollisionSceneAssembly, options?: RawAxiosRequestConfig): Promise<
|
|
13932
|
+
storeCollisionScene(cell: string, scene: string, collisionSceneAssembly: CollisionSceneAssembly, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<CollisionScene, any>>;
|
|
13928
13933
|
}
|
|
13929
13934
|
/**
|
|
13930
13935
|
* StoreObjectApi - axios parameter creator
|
|
@@ -14127,7 +14132,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
14127
14132
|
* @throws {RequiredError}
|
|
14128
14133
|
* @memberof StoreObjectApi
|
|
14129
14134
|
*/
|
|
14130
|
-
clearAllObjects(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
14135
|
+
clearAllObjects(cell: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
14131
14136
|
/**
|
|
14132
14137
|
* Delete an object <!-- theme: danger --> > This will delete persistently stored data.
|
|
14133
14138
|
* @summary Delete Object
|
|
@@ -14137,7 +14142,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
14137
14142
|
* @throws {RequiredError}
|
|
14138
14143
|
* @memberof StoreObjectApi
|
|
14139
14144
|
*/
|
|
14140
|
-
deleteObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<
|
|
14145
|
+
deleteObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
14141
14146
|
/**
|
|
14142
14147
|
* Get the object. This request returns the object and any metadata attached to it.
|
|
14143
14148
|
* @summary Get Object
|
|
@@ -14147,7 +14152,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
14147
14152
|
* @throws {RequiredError}
|
|
14148
14153
|
* @memberof StoreObjectApi
|
|
14149
14154
|
*/
|
|
14150
|
-
getObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<
|
|
14155
|
+
getObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<File, any>>;
|
|
14151
14156
|
/**
|
|
14152
14157
|
* Get object metadata. Objects can be large. Therefore this request only returns metadata without fetching the object\'s content.
|
|
14153
14158
|
* @summary Get Object Metadata
|
|
@@ -14157,7 +14162,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
14157
14162
|
* @throws {RequiredError}
|
|
14158
14163
|
* @memberof StoreObjectApi
|
|
14159
14164
|
*/
|
|
14160
|
-
getObjectMetadata(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<
|
|
14165
|
+
getObjectMetadata(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
14161
14166
|
/**
|
|
14162
14167
|
* List the keys for all objects.
|
|
14163
14168
|
* @summary List all Object Keys
|
|
@@ -14166,7 +14171,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
14166
14171
|
* @throws {RequiredError}
|
|
14167
14172
|
* @memberof StoreObjectApi
|
|
14168
14173
|
*/
|
|
14169
|
-
listAllObjectKeys(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
14174
|
+
listAllObjectKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<string[], any>>;
|
|
14170
14175
|
/**
|
|
14171
14176
|
* 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.
|
|
14172
14177
|
* @summary Store Object
|
|
@@ -14180,7 +14185,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
14180
14185
|
*/
|
|
14181
14186
|
storeObject(cell: string, key: string, xMetadata?: {
|
|
14182
14187
|
[key: string]: string;
|
|
14183
|
-
}, anyValue?: any, options?: RawAxiosRequestConfig): Promise<
|
|
14188
|
+
}, anyValue?: any, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
14184
14189
|
}
|
|
14185
14190
|
/**
|
|
14186
14191
|
* SystemApi - axios parameter creator
|
|
@@ -14326,7 +14331,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
14326
14331
|
* @throws {RequiredError}
|
|
14327
14332
|
* @memberof SystemApi
|
|
14328
14333
|
*/
|
|
14329
|
-
checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<
|
|
14334
|
+
checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<string, any>>;
|
|
14330
14335
|
/**
|
|
14331
14336
|
* 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.
|
|
14332
14337
|
* @summary Download Diagnosis Package
|
|
@@ -14334,7 +14339,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
14334
14339
|
* @throws {RequiredError}
|
|
14335
14340
|
* @memberof SystemApi
|
|
14336
14341
|
*/
|
|
14337
|
-
getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<
|
|
14342
|
+
getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<File, any>>;
|
|
14338
14343
|
/**
|
|
14339
14344
|
* Get the status of all system services.
|
|
14340
14345
|
* @summary Wandelbots NOVA status
|
|
@@ -14342,7 +14347,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
14342
14347
|
* @throws {RequiredError}
|
|
14343
14348
|
* @memberof SystemApi
|
|
14344
14349
|
*/
|
|
14345
|
-
getSystemStatus(options?: RawAxiosRequestConfig): Promise<
|
|
14350
|
+
getSystemStatus(options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<ServiceStatus[], any>>;
|
|
14346
14351
|
/**
|
|
14347
14352
|
* Get the current Wandelbots NOVA version.
|
|
14348
14353
|
* @summary Wandelbots NOVA Version
|
|
@@ -14350,7 +14355,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
14350
14355
|
* @throws {RequiredError}
|
|
14351
14356
|
* @memberof SystemApi
|
|
14352
14357
|
*/
|
|
14353
|
-
getSystemVersion(options?: RawAxiosRequestConfig): Promise<
|
|
14358
|
+
getSystemVersion(options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<string, any>>;
|
|
14354
14359
|
/**
|
|
14355
14360
|
* 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.
|
|
14356
14361
|
* @summary Update Wandelbots NOVA version
|
|
@@ -14359,7 +14364,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
14359
14364
|
* @throws {RequiredError}
|
|
14360
14365
|
* @memberof SystemApi
|
|
14361
14366
|
*/
|
|
14362
|
-
updateNovaVersion(updateNovaVersionRequest: UpdateNovaVersionRequest, options?: RawAxiosRequestConfig): Promise<
|
|
14367
|
+
updateNovaVersion(updateNovaVersionRequest: UpdateNovaVersionRequest, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<void, any>>;
|
|
14363
14368
|
}
|
|
14364
14369
|
/**
|
|
14365
14370
|
* VirtualRobotApi - axios parameter creator
|
|
@@ -14582,7 +14587,7 @@ declare class VirtualRobotApi extends BaseAPI {
|
|
|
14582
14587
|
* @throws {RequiredError}
|
|
14583
14588
|
* @memberof VirtualRobotApi
|
|
14584
14589
|
*/
|
|
14585
|
-
getMotionGroupState(cell: string, controller: string, id: number, options?: RawAxiosRequestConfig): Promise<
|
|
14590
|
+
getMotionGroupState(cell: string, controller: string, id: number, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<MotionGroupJoints, any>>;
|
|
14586
14591
|
/**
|
|
14587
14592
|
* Gets information on the motion group.
|
|
14588
14593
|
* @summary Motion Group Description
|
|
@@ -14592,7 +14597,7 @@ declare class VirtualRobotApi extends BaseAPI {
|
|
|
14592
14597
|
* @throws {RequiredError}
|
|
14593
14598
|
* @memberof VirtualRobotApi
|
|
14594
14599
|
*/
|
|
14595
|
-
getMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
14600
|
+
getMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<MotionGroupInfos, any>>;
|
|
14596
14601
|
/**
|
|
14597
14602
|
* Gets the description and value of a virtual controller I/O.
|
|
14598
14603
|
* @summary Get I/O
|
|
@@ -14603,7 +14608,7 @@ declare class VirtualRobotApi extends BaseAPI {
|
|
|
14603
14608
|
* @throws {RequiredError}
|
|
14604
14609
|
* @memberof VirtualRobotApi
|
|
14605
14610
|
*/
|
|
14606
|
-
getVirtualRobotIOValue(cell: string, controller: string, io: string, options?: RawAxiosRequestConfig): Promise<
|
|
14611
|
+
getVirtualRobotIOValue(cell: string, controller: string, io: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<IO, any>>;
|
|
14607
14612
|
/**
|
|
14608
14613
|
* 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.
|
|
14609
14614
|
* @summary List Inputs/Outputs
|
|
@@ -14613,7 +14618,7 @@ declare class VirtualRobotApi extends BaseAPI {
|
|
|
14613
14618
|
* @throws {RequiredError}
|
|
14614
14619
|
* @memberof VirtualRobotApi
|
|
14615
14620
|
*/
|
|
14616
|
-
listIOs(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
14621
|
+
listIOs(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<IOs, any>>;
|
|
14617
14622
|
/**
|
|
14618
14623
|
* 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.
|
|
14619
14624
|
* @summary Set Motion Group State
|
|
@@ -14625,7 +14630,7 @@ declare class VirtualRobotApi extends BaseAPI {
|
|
|
14625
14630
|
* @throws {RequiredError}
|
|
14626
14631
|
* @memberof VirtualRobotApi
|
|
14627
14632
|
*/
|
|
14628
|
-
setMotionGroupState(cell: string, controller: string, id: number, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): Promise<
|
|
14633
|
+
setMotionGroupState(cell: string, controller: string, id: number, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<object, any>>;
|
|
14629
14634
|
/**
|
|
14630
14635
|
* Sets the value of a virtual controller I/O.
|
|
14631
14636
|
* @summary Set I/O
|
|
@@ -14639,7 +14644,7 @@ declare class VirtualRobotApi extends BaseAPI {
|
|
|
14639
14644
|
* @throws {RequiredError}
|
|
14640
14645
|
* @memberof VirtualRobotApi
|
|
14641
14646
|
*/
|
|
14642
|
-
setVirtualRobotIOValue(cell: string, controller: string, io: string, bool?: boolean, integer?: string, _double?: number, options?: RawAxiosRequestConfig): Promise<
|
|
14647
|
+
setVirtualRobotIOValue(cell: string, controller: string, io: string, bool?: boolean, integer?: string, _double?: number, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<object, any>>;
|
|
14643
14648
|
}
|
|
14644
14649
|
/**
|
|
14645
14650
|
* VirtualRobotBehaviorApi - axios parameter creator
|
|
@@ -14769,7 +14774,7 @@ declare class VirtualRobotBehaviorApi extends BaseAPI {
|
|
|
14769
14774
|
* @throws {RequiredError}
|
|
14770
14775
|
* @memberof VirtualRobotBehaviorApi
|
|
14771
14776
|
*/
|
|
14772
|
-
externalJointsStream(cell: string, controller: string, externalJointStreamDatapoint: ExternalJointStreamDatapoint, options?: RawAxiosRequestConfig): Promise<
|
|
14777
|
+
externalJointsStream(cell: string, controller: string, externalJointStreamDatapoint: ExternalJointStreamDatapoint, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<MotionGroupJoints, any>>;
|
|
14773
14778
|
/**
|
|
14774
14779
|
* Get the current robot motion group behavior - please see the setter [setMotionGroupBehavior](setMotionGroupBehavior) and the enum for details.
|
|
14775
14780
|
* @summary Behavior
|
|
@@ -14780,7 +14785,7 @@ declare class VirtualRobotBehaviorApi extends BaseAPI {
|
|
|
14780
14785
|
* @throws {RequiredError}
|
|
14781
14786
|
* @memberof VirtualRobotBehaviorApi
|
|
14782
14787
|
*/
|
|
14783
|
-
getMotionGroupBehavior(cell: string, controller: string, id: number, options?: RawAxiosRequestConfig): Promise<
|
|
14788
|
+
getMotionGroupBehavior(cell: string, controller: string, id: number, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<MotionGroupBehaviorGetter, any>>;
|
|
14784
14789
|
/**
|
|
14785
14790
|
* Switch robot motion group behavior.
|
|
14786
14791
|
* @summary Switch Behavior
|
|
@@ -14792,7 +14797,7 @@ declare class VirtualRobotBehaviorApi extends BaseAPI {
|
|
|
14792
14797
|
* @throws {RequiredError}
|
|
14793
14798
|
* @memberof VirtualRobotBehaviorApi
|
|
14794
14799
|
*/
|
|
14795
|
-
setMotionGroupBehavior(cell: string, controller: string, id: number, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<
|
|
14800
|
+
setMotionGroupBehavior(cell: string, controller: string, id: number, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<object, any>>;
|
|
14796
14801
|
}
|
|
14797
14802
|
/**
|
|
14798
14803
|
* VirtualRobotModeApi - axios parameter creator
|
|
@@ -14993,7 +14998,7 @@ declare class VirtualRobotModeApi extends BaseAPI {
|
|
|
14993
14998
|
* @throws {RequiredError}
|
|
14994
14999
|
* @memberof VirtualRobotModeApi
|
|
14995
15000
|
*/
|
|
14996
|
-
getCycleTime(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
15001
|
+
getCycleTime(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<CycleTime, any>>;
|
|
14997
15002
|
/**
|
|
14998
15003
|
* 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.
|
|
14999
15004
|
* @summary Get E-Stop State
|
|
@@ -15003,7 +15008,7 @@ declare class VirtualRobotModeApi extends BaseAPI {
|
|
|
15003
15008
|
* @throws {RequiredError}
|
|
15004
15009
|
* @memberof VirtualRobotModeApi
|
|
15005
15010
|
*/
|
|
15006
|
-
getEStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
15011
|
+
getEStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<Flag, any>>;
|
|
15007
15012
|
/**
|
|
15008
15013
|
* 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.
|
|
15009
15014
|
* @summary Get Operation Mode
|
|
@@ -15013,7 +15018,7 @@ declare class VirtualRobotModeApi extends BaseAPI {
|
|
|
15013
15018
|
* @throws {RequiredError}
|
|
15014
15019
|
* @memberof VirtualRobotModeApi
|
|
15015
15020
|
*/
|
|
15016
|
-
getOperationMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
15021
|
+
getOperationMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<OpMode, any>>;
|
|
15017
15022
|
/**
|
|
15018
15023
|
* 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.
|
|
15019
15024
|
* @summary Push E-Stop
|
|
@@ -15023,7 +15028,7 @@ declare class VirtualRobotModeApi extends BaseAPI {
|
|
|
15023
15028
|
* @throws {RequiredError}
|
|
15024
15029
|
* @memberof VirtualRobotModeApi
|
|
15025
15030
|
*/
|
|
15026
|
-
pushEStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
15031
|
+
pushEStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<object, any>>;
|
|
15027
15032
|
/**
|
|
15028
15033
|
* 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.
|
|
15029
15034
|
* @summary Release E-Stop
|
|
@@ -15033,7 +15038,7 @@ declare class VirtualRobotModeApi extends BaseAPI {
|
|
|
15033
15038
|
* @throws {RequiredError}
|
|
15034
15039
|
* @memberof VirtualRobotModeApi
|
|
15035
15040
|
*/
|
|
15036
|
-
releaseEStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
15041
|
+
releaseEStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<object, any>>;
|
|
15037
15042
|
/**
|
|
15038
15043
|
* 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.
|
|
15039
15044
|
* @summary Set Operation Mode
|
|
@@ -15044,7 +15049,7 @@ declare class VirtualRobotModeApi extends BaseAPI {
|
|
|
15044
15049
|
* @throws {RequiredError}
|
|
15045
15050
|
* @memberof VirtualRobotModeApi
|
|
15046
15051
|
*/
|
|
15047
|
-
setOperationMode(cell: string, controller: string, mode: SetOperationModeModeEnum, options?: RawAxiosRequestConfig): Promise<
|
|
15052
|
+
setOperationMode(cell: string, controller: string, mode: SetOperationModeModeEnum, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<object, any>>;
|
|
15048
15053
|
}
|
|
15049
15054
|
/**
|
|
15050
15055
|
* @export
|
|
@@ -15338,7 +15343,7 @@ declare class VirtualRobotSetupApi extends BaseAPI {
|
|
|
15338
15343
|
* @throws {RequiredError}
|
|
15339
15344
|
* @memberof VirtualRobotSetupApi
|
|
15340
15345
|
*/
|
|
15341
|
-
addVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<
|
|
15346
|
+
addVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<object, any>>;
|
|
15342
15347
|
/**
|
|
15343
15348
|
* 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.
|
|
15344
15349
|
* @summary Add TCP
|
|
@@ -15350,7 +15355,7 @@ declare class VirtualRobotSetupApi extends BaseAPI {
|
|
|
15350
15355
|
* @throws {RequiredError}
|
|
15351
15356
|
* @memberof VirtualRobotSetupApi
|
|
15352
15357
|
*/
|
|
15353
|
-
addVirtualRobotTcp(cell: string, controller: string, id: number, robotTcp: RobotTcp, options?: RawAxiosRequestConfig): Promise<
|
|
15358
|
+
addVirtualRobotTcp(cell: string, controller: string, id: number, robotTcp: RobotTcp, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<object, any>>;
|
|
15354
15359
|
/**
|
|
15355
15360
|
* 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.
|
|
15356
15361
|
* @summary Remove Coordinate System
|
|
@@ -15362,7 +15367,7 @@ declare class VirtualRobotSetupApi extends BaseAPI {
|
|
|
15362
15367
|
* @throws {RequiredError}
|
|
15363
15368
|
* @memberof VirtualRobotSetupApi
|
|
15364
15369
|
*/
|
|
15365
|
-
deleteVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<
|
|
15370
|
+
deleteVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<object, any>>;
|
|
15366
15371
|
/**
|
|
15367
15372
|
* 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.
|
|
15368
15373
|
* @summary Remove TCP
|
|
@@ -15374,7 +15379,7 @@ declare class VirtualRobotSetupApi extends BaseAPI {
|
|
|
15374
15379
|
* @throws {RequiredError}
|
|
15375
15380
|
* @memberof VirtualRobotSetupApi
|
|
15376
15381
|
*/
|
|
15377
|
-
deleteVirtualRobotTcp(cell: string, controller: string, id: number, tcp: string, options?: RawAxiosRequestConfig): Promise<
|
|
15382
|
+
deleteVirtualRobotTcp(cell: string, controller: string, id: number, tcp: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<object, any>>;
|
|
15378
15383
|
/**
|
|
15379
15384
|
* Gets motion group mounting. The motion group is based on the origin of the returned coordinate system.
|
|
15380
15385
|
* @summary Get Mounting
|
|
@@ -15385,7 +15390,7 @@ declare class VirtualRobotSetupApi extends BaseAPI {
|
|
|
15385
15390
|
* @throws {RequiredError}
|
|
15386
15391
|
* @memberof VirtualRobotSetupApi
|
|
15387
15392
|
*/
|
|
15388
|
-
getVirtualRobotMounting(cell: string, controller: string, id: number, options?: RawAxiosRequestConfig): Promise<
|
|
15393
|
+
getVirtualRobotMounting(cell: string, controller: string, id: number, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<CoordinateSystem, any>>;
|
|
15389
15394
|
/**
|
|
15390
15395
|
* Lists all coordinate systems on the robot controller.
|
|
15391
15396
|
* @summary List Coordinate Systems
|
|
@@ -15395,7 +15400,7 @@ declare class VirtualRobotSetupApi extends BaseAPI {
|
|
|
15395
15400
|
* @throws {RequiredError}
|
|
15396
15401
|
* @memberof VirtualRobotSetupApi
|
|
15397
15402
|
*/
|
|
15398
|
-
listVirtualRobotCoordinateSystems(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
15403
|
+
listVirtualRobotCoordinateSystems(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<CoordinateSystems, any>>;
|
|
15399
15404
|
/**
|
|
15400
15405
|
* Lists TCPs of the motion group. An empty TCP list is valid, for example for external axes.
|
|
15401
15406
|
* @summary List TCPs
|
|
@@ -15406,7 +15411,7 @@ declare class VirtualRobotSetupApi extends BaseAPI {
|
|
|
15406
15411
|
* @throws {RequiredError}
|
|
15407
15412
|
* @memberof VirtualRobotSetupApi
|
|
15408
15413
|
*/
|
|
15409
|
-
listVirtualRobotTcps(cell: string, controller: string, id: number, options?: RawAxiosRequestConfig): Promise<
|
|
15414
|
+
listVirtualRobotTcps(cell: string, controller: string, id: number, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<RobotTcps, any>>;
|
|
15410
15415
|
/**
|
|
15411
15416
|
* 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.
|
|
15412
15417
|
* @summary Set Mounting
|
|
@@ -15418,7 +15423,7 @@ declare class VirtualRobotSetupApi extends BaseAPI {
|
|
|
15418
15423
|
* @throws {RequiredError}
|
|
15419
15424
|
* @memberof VirtualRobotSetupApi
|
|
15420
15425
|
*/
|
|
15421
|
-
setVirtualRobotMounting(cell: string, controller: string, id: number, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<
|
|
15426
|
+
setVirtualRobotMounting(cell: string, controller: string, id: number, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<axios128.AxiosResponse<CoordinateSystem, any>>;
|
|
15422
15427
|
}
|
|
15423
15428
|
//#endregion
|
|
15424
15429
|
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 };
|