@wandelbots/nova-api 25.10.0-dev.68 → 25.10.0-dev.69
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/v1/index.cjs +7 -0
- package/dist/v1/index.d.cts +185 -178
- package/dist/v1/index.d.ts +7 -0
- package/dist/v1/index.js +7 -0
- package/dist/v2/index.cjs +4 -0
- package/dist/v2/index.d.cts +135 -131
- package/dist/v2/index.d.ts +4 -0
- package/dist/v2/index.js +4 -0
- package/package.json +1 -1
package/dist/v1/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as axios129 from "axios";
|
|
2
2
|
import { AxiosInstance, AxiosPromise, RawAxiosRequestConfig } from "axios";
|
|
3
3
|
|
|
4
4
|
//#region v1/configuration.d.ts
|
|
@@ -3748,6 +3748,7 @@ declare const VirtualControllerTypes: {
|
|
|
3748
3748
|
readonly AbbIrb460025020: "abb-irb4600_250_20";
|
|
3749
3749
|
readonly AbbIrb460025540: "abb-irb4600_255_40";
|
|
3750
3750
|
readonly AbbIrb6730210310: "abb-irb6730_210_310";
|
|
3751
|
+
readonly AbbIrb6730240290: "abb-irb6730_240_290";
|
|
3751
3752
|
readonly FanucArcMate100iD: "fanuc-arc_mate_100iD";
|
|
3752
3753
|
readonly FanucArcMate100iD16S: "fanuc-arc_mate_100iD16S";
|
|
3753
3754
|
readonly FanucArcMate120iD: "fanuc-arc_mate_120iD";
|
|
@@ -3779,6 +3780,8 @@ declare const VirtualControllerTypes: {
|
|
|
3779
3780
|
readonly KukaKr10R900: "kuka-kr10_r900";
|
|
3780
3781
|
readonly KukaKr10R9002: "kuka-kr10_r900_2";
|
|
3781
3782
|
readonly KukaKr120R27002: "kuka-kr120_r2700_2";
|
|
3783
|
+
readonly KukaKr120R31002: "kuka-kr120_r3100_2";
|
|
3784
|
+
readonly KukaKr120R39002K: "kuka-kr120_r3900_2_k";
|
|
3782
3785
|
readonly KukaKr12R18102: "kuka-kr12_r1810_2";
|
|
3783
3786
|
readonly KukaKr150R2: "kuka-kr150_r2";
|
|
3784
3787
|
readonly KukaKr16R16102: "kuka-kr16_r1610_2";
|
|
@@ -3791,6 +3794,7 @@ declare const VirtualControllerTypes: {
|
|
|
3791
3794
|
readonly KukaKr210R33002: "kuka-kr210_r3300_2";
|
|
3792
3795
|
readonly KukaKr240R2700: "kuka-kr240_r2700";
|
|
3793
3796
|
readonly KukaKr240R2900: "kuka-kr240_r2900";
|
|
3797
|
+
readonly KukaKr240R37002: "kuka-kr240_r3700_2";
|
|
3794
3798
|
readonly KukaKr250R27002: "kuka-kr250_r2700_2";
|
|
3795
3799
|
readonly KukaKr270R2700: "kuka-kr270_r2700";
|
|
3796
3800
|
readonly KukaKr30R2100: "kuka-kr30_r2100";
|
|
@@ -4065,7 +4069,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
4065
4069
|
* @param {*} [options] Override http request option.
|
|
4066
4070
|
* @throws {RequiredError}
|
|
4067
4071
|
*/
|
|
4068
|
-
addApp(cell: string, app: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
4072
|
+
addApp(cell: string, app: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
|
|
4069
4073
|
/**
|
|
4070
4074
|
* Delete all GUI applications from the cell.
|
|
4071
4075
|
* @summary Clear Applications
|
|
@@ -4074,7 +4078,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
4074
4078
|
* @param {*} [options] Override http request option.
|
|
4075
4079
|
* @throws {RequiredError}
|
|
4076
4080
|
*/
|
|
4077
|
-
clearApps(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
4081
|
+
clearApps(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
|
|
4078
4082
|
/**
|
|
4079
4083
|
* Delete a GUI application from the cell.
|
|
4080
4084
|
* @summary Delete Application
|
|
@@ -4084,7 +4088,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
4084
4088
|
* @param {*} [options] Override http request option.
|
|
4085
4089
|
* @throws {RequiredError}
|
|
4086
4090
|
*/
|
|
4087
|
-
deleteApp(cell: string, app: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
4091
|
+
deleteApp(cell: string, app: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
|
|
4088
4092
|
/**
|
|
4089
4093
|
* 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.
|
|
4090
4094
|
* @summary Configuration
|
|
@@ -4093,7 +4097,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
4093
4097
|
* @param {*} [options] Override http request option.
|
|
4094
4098
|
* @throws {RequiredError}
|
|
4095
4099
|
*/
|
|
4096
|
-
getApp(cell: string, app: string, options?: RawAxiosRequestConfig): Promise<
|
|
4100
|
+
getApp(cell: string, app: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<App, any>>;
|
|
4097
4101
|
/**
|
|
4098
4102
|
* 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.
|
|
4099
4103
|
* @summary List Applications
|
|
@@ -4101,7 +4105,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
4101
4105
|
* @param {*} [options] Override http request option.
|
|
4102
4106
|
* @throws {RequiredError}
|
|
4103
4107
|
*/
|
|
4104
|
-
listApps(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
4108
|
+
listApps(cell: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<string[], any>>;
|
|
4105
4109
|
/**
|
|
4106
4110
|
* Update the configuration of a GUI application in the cell.
|
|
4107
4111
|
* @summary Update Configuration
|
|
@@ -4112,7 +4116,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
4112
4116
|
* @param {*} [options] Override http request option.
|
|
4113
4117
|
* @throws {RequiredError}
|
|
4114
4118
|
*/
|
|
4115
|
-
updateApp(cell: string, app: string, app2: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
4119
|
+
updateApp(cell: string, app: string, app2: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
|
|
4116
4120
|
}
|
|
4117
4121
|
/**
|
|
4118
4122
|
* CellApi - axios parameter creator
|
|
@@ -4294,7 +4298,7 @@ declare class CellApi extends BaseAPI {
|
|
|
4294
4298
|
* @param {*} [options] Override http request option.
|
|
4295
4299
|
* @throws {RequiredError}
|
|
4296
4300
|
*/
|
|
4297
|
-
deleteCell(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
4301
|
+
deleteCell(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
|
|
4298
4302
|
/**
|
|
4299
4303
|
* 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.
|
|
4300
4304
|
* @summary Add Cell
|
|
@@ -4303,7 +4307,7 @@ declare class CellApi extends BaseAPI {
|
|
|
4303
4307
|
* @param {*} [options] Override http request option.
|
|
4304
4308
|
* @throws {RequiredError}
|
|
4305
4309
|
*/
|
|
4306
|
-
deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
4310
|
+
deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
|
|
4307
4311
|
/**
|
|
4308
4312
|
* 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.
|
|
4309
4313
|
* @summary Configuration
|
|
@@ -4311,7 +4315,7 @@ declare class CellApi extends BaseAPI {
|
|
|
4311
4315
|
* @param {*} [options] Override http request option.
|
|
4312
4316
|
* @throws {RequiredError}
|
|
4313
4317
|
*/
|
|
4314
|
-
getCell(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
4318
|
+
getCell(cell: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<Cell, any>>;
|
|
4315
4319
|
/**
|
|
4316
4320
|
* List the status of all cell resources.
|
|
4317
4321
|
* @summary Service Status
|
|
@@ -4319,14 +4323,14 @@ declare class CellApi extends BaseAPI {
|
|
|
4319
4323
|
* @param {*} [options] Override http request option.
|
|
4320
4324
|
* @throws {RequiredError}
|
|
4321
4325
|
*/
|
|
4322
|
-
getCellStatus(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
4326
|
+
getCellStatus(cell: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ServiceStatus[], any>>;
|
|
4323
4327
|
/**
|
|
4324
4328
|
* List all deployed cell names. If no cells are deployed, an empty list is returned.
|
|
4325
4329
|
* @summary List Cells
|
|
4326
4330
|
* @param {*} [options] Override http request option.
|
|
4327
4331
|
* @throws {RequiredError}
|
|
4328
4332
|
*/
|
|
4329
|
-
listCells(options?: RawAxiosRequestConfig): Promise<
|
|
4333
|
+
listCells(options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<string[], any>>;
|
|
4330
4334
|
/**
|
|
4331
4335
|
* Update the definition of the entire Cell.
|
|
4332
4336
|
* @summary Update Configuration
|
|
@@ -4336,7 +4340,7 @@ declare class CellApi extends BaseAPI {
|
|
|
4336
4340
|
* @param {*} [options] Override http request option.
|
|
4337
4341
|
* @throws {RequiredError}
|
|
4338
4342
|
*/
|
|
4339
|
-
updateCell(cell: string, cell2: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
4343
|
+
updateCell(cell: string, cell2: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
|
|
4340
4344
|
}
|
|
4341
4345
|
/**
|
|
4342
4346
|
* ControllerApi - axios parameter creator
|
|
@@ -4762,7 +4766,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
4762
4766
|
* @param {*} [options] Override http request option.
|
|
4763
4767
|
* @throws {RequiredError}
|
|
4764
4768
|
*/
|
|
4765
|
-
addRobotController(cell: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
4769
|
+
addRobotController(cell: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
|
|
4766
4770
|
/**
|
|
4767
4771
|
* 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.
|
|
4768
4772
|
* @summary Clear Robot Controllers
|
|
@@ -4771,7 +4775,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
4771
4775
|
* @param {*} [options] Override http request option.
|
|
4772
4776
|
* @throws {RequiredError}
|
|
4773
4777
|
*/
|
|
4774
|
-
clearRobotControllers(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
4778
|
+
clearRobotControllers(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
|
|
4775
4779
|
/**
|
|
4776
4780
|
* Delete a robot controller from the cell. <!-- theme: warning --> > **WARNING** > > Using it in conjunction with the settings app may lead to unpredictable behavior.
|
|
4777
4781
|
* @summary Delete Robot Controller
|
|
@@ -4781,7 +4785,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
4781
4785
|
* @param {*} [options] Override http request option.
|
|
4782
4786
|
* @throws {RequiredError}
|
|
4783
4787
|
*/
|
|
4784
|
-
deleteRobotController(cell: string, controller: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
4788
|
+
deleteRobotController(cell: string, controller: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
|
|
4785
4789
|
/**
|
|
4786
4790
|
* Get the current state of a robot controller.
|
|
4787
4791
|
* @summary State of Device
|
|
@@ -4790,7 +4794,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
4790
4794
|
* @param {*} [options] Override http request option.
|
|
4791
4795
|
* @throws {RequiredError}
|
|
4792
4796
|
*/
|
|
4793
|
-
getCurrentRobotControllerState(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
4797
|
+
getCurrentRobotControllerState(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<RobotControllerState, any>>;
|
|
4794
4798
|
/**
|
|
4795
4799
|
* 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).
|
|
4796
4800
|
* @summary Current Mode
|
|
@@ -4799,7 +4803,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
4799
4803
|
* @param {*} [options] Override http request option.
|
|
4800
4804
|
* @throws {RequiredError}
|
|
4801
4805
|
*/
|
|
4802
|
-
getMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
4806
|
+
getMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<GetModeResponse, any>>;
|
|
4803
4807
|
/**
|
|
4804
4808
|
* Get the configuration for a robot controller.
|
|
4805
4809
|
* @summary Robot Controller Configuration
|
|
@@ -4808,7 +4812,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
4808
4812
|
* @param {*} [options] Override http request option.
|
|
4809
4813
|
* @throws {RequiredError}
|
|
4810
4814
|
*/
|
|
4811
|
-
getRobotController(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
4815
|
+
getRobotController(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<RobotController, any>>;
|
|
4812
4816
|
/**
|
|
4813
4817
|
* Lists supported operating modes. Usually cobots support free drive and control, industrial robots only support control.
|
|
4814
4818
|
* @summary Supported Motion Modes
|
|
@@ -4817,7 +4821,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
4817
4821
|
* @param {*} [options] Override http request option.
|
|
4818
4822
|
* @throws {RequiredError}
|
|
4819
4823
|
*/
|
|
4820
|
-
getSupportedModes(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
4824
|
+
getSupportedModes(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ControllerCapabilities, any>>;
|
|
4821
4825
|
/**
|
|
4822
4826
|
* 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.
|
|
4823
4827
|
* @summary Virtual Robot Configuration
|
|
@@ -4826,7 +4830,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
4826
4830
|
* @param {*} [options] Override http request option.
|
|
4827
4831
|
* @throws {RequiredError}
|
|
4828
4832
|
*/
|
|
4829
|
-
getVirtualRobotConfiguration(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
4833
|
+
getVirtualRobotConfiguration(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<VirtualRobotConfiguration, any>>;
|
|
4830
4834
|
/**
|
|
4831
4835
|
* List all configured robot controllers.
|
|
4832
4836
|
* @summary List Robot Controllers
|
|
@@ -4834,7 +4838,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
4834
4838
|
* @param {*} [options] Override http request option.
|
|
4835
4839
|
* @throws {RequiredError}
|
|
4836
4840
|
*/
|
|
4837
|
-
listControllers(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
4841
|
+
listControllers(cell: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ControllerInstanceList, any>>;
|
|
4838
4842
|
/**
|
|
4839
4843
|
* 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.
|
|
4840
4844
|
* @summary Set Default Mode
|
|
@@ -4844,7 +4848,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
4844
4848
|
* @param {*} [options] Override http request option.
|
|
4845
4849
|
* @throws {RequiredError}
|
|
4846
4850
|
*/
|
|
4847
|
-
setDefaultMode(cell: string, controller: string, mode: SetDefaultModeModeEnum, options?: RawAxiosRequestConfig): Promise<
|
|
4851
|
+
setDefaultMode(cell: string, controller: string, mode: SetDefaultModeModeEnum, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
|
|
4848
4852
|
/**
|
|
4849
4853
|
* 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.
|
|
4850
4854
|
* @summary Stream Free Drive Mode
|
|
@@ -4854,7 +4858,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
4854
4858
|
* @param {*} [options] Override http request option.
|
|
4855
4859
|
* @throws {RequiredError}
|
|
4856
4860
|
*/
|
|
4857
|
-
streamFreeDrive(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<
|
|
4861
|
+
streamFreeDrive(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<RobotControllerState, any>>;
|
|
4858
4862
|
/**
|
|
4859
4863
|
* 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.
|
|
4860
4864
|
* @summary Stream Mode Change
|
|
@@ -4863,7 +4867,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
4863
4867
|
* @param {*} [options] Override http request option.
|
|
4864
4868
|
* @throws {RequiredError}
|
|
4865
4869
|
*/
|
|
4866
|
-
streamModeChange(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
4870
|
+
streamModeChange(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ModeChangeResponse, any>>;
|
|
4867
4871
|
/**
|
|
4868
4872
|
* Receive updates of the state of a robot controller.
|
|
4869
4873
|
* @summary Stream State of Device
|
|
@@ -4873,7 +4877,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
4873
4877
|
* @param {*} [options] Override http request option.
|
|
4874
4878
|
* @throws {RequiredError}
|
|
4875
4879
|
*/
|
|
4876
|
-
streamRobotControllerState(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<
|
|
4880
|
+
streamRobotControllerState(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<RobotControllerState, any>>;
|
|
4877
4881
|
/**
|
|
4878
4882
|
* 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).
|
|
4879
4883
|
* @summary Update Robot Controller Configuration
|
|
@@ -4884,7 +4888,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
4884
4888
|
* @param {*} [options] Override http request option.
|
|
4885
4889
|
* @throws {RequiredError}
|
|
4886
4890
|
*/
|
|
4887
|
-
updateRobotController(cell: string, controller: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
4891
|
+
updateRobotController(cell: string, controller: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
|
|
4888
4892
|
}
|
|
4889
4893
|
declare const SetDefaultModeModeEnum: {
|
|
4890
4894
|
readonly ModeMonitor: "MODE_MONITOR";
|
|
@@ -5081,7 +5085,7 @@ declare class ControllerIOsApi extends BaseAPI {
|
|
|
5081
5085
|
* @param {*} [options] Override http request option.
|
|
5082
5086
|
* @throws {RequiredError}
|
|
5083
5087
|
*/
|
|
5084
|
-
listIODescriptions(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<
|
|
5088
|
+
listIODescriptions(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ListIODescriptionsResponse, any>>;
|
|
5085
5089
|
/**
|
|
5086
5090
|
* 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).
|
|
5087
5091
|
* @summary Values
|
|
@@ -5091,7 +5095,7 @@ declare class ControllerIOsApi extends BaseAPI {
|
|
|
5091
5095
|
* @param {*} [options] Override http request option.
|
|
5092
5096
|
* @throws {RequiredError}
|
|
5093
5097
|
*/
|
|
5094
|
-
listIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<
|
|
5098
|
+
listIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ListIOValuesResponse, any>>;
|
|
5095
5099
|
/**
|
|
5096
5100
|
* 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.
|
|
5097
5101
|
* @summary Set Values
|
|
@@ -5101,7 +5105,7 @@ declare class ControllerIOsApi extends BaseAPI {
|
|
|
5101
5105
|
* @param {*} [options] Override http request option.
|
|
5102
5106
|
* @throws {RequiredError}
|
|
5103
5107
|
*/
|
|
5104
|
-
setOutputValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<
|
|
5108
|
+
setOutputValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
|
|
5105
5109
|
/**
|
|
5106
5110
|
* 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.
|
|
5107
5111
|
* @summary Stream Values
|
|
@@ -5111,7 +5115,7 @@ declare class ControllerIOsApi extends BaseAPI {
|
|
|
5111
5115
|
* @param {*} [options] Override http request option.
|
|
5112
5116
|
* @throws {RequiredError}
|
|
5113
5117
|
*/
|
|
5114
|
-
streamIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<
|
|
5118
|
+
streamIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ListIOValuesResponse, any>>;
|
|
5115
5119
|
/**
|
|
5116
5120
|
* 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.
|
|
5117
5121
|
* @summary Wait For
|
|
@@ -5125,7 +5129,7 @@ declare class ControllerIOsApi extends BaseAPI {
|
|
|
5125
5129
|
* @param {*} [options] Override http request option.
|
|
5126
5130
|
* @throws {RequiredError}
|
|
5127
5131
|
*/
|
|
5128
|
-
waitForIOEvent(cell: string, controller: string, io: string, comparisonType: WaitForIOEventComparisonTypeEnum, booleanValue?: boolean, integerValue?: string, floatingValue?: number, options?: RawAxiosRequestConfig): Promise<
|
|
5132
|
+
waitForIOEvent(cell: string, controller: string, io: string, comparisonType: WaitForIOEventComparisonTypeEnum, booleanValue?: boolean, integerValue?: string, floatingValue?: number, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<boolean, any>>;
|
|
5129
5133
|
}
|
|
5130
5134
|
declare const WaitForIOEventComparisonTypeEnum: {
|
|
5131
5135
|
readonly ComparisonTypeEqual: "COMPARISON_TYPE_EQUAL";
|
|
@@ -5301,7 +5305,7 @@ declare class CoordinateSystemsApi extends BaseAPI {
|
|
|
5301
5305
|
* @param {*} [options] Override http request option.
|
|
5302
5306
|
* @throws {RequiredError}
|
|
5303
5307
|
*/
|
|
5304
|
-
addCoordinateSystem(cell: string, addRequest: AddRequest, options?: RawAxiosRequestConfig): Promise<
|
|
5308
|
+
addCoordinateSystem(cell: string, addRequest: AddRequest, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<CoordinateSystem, any>>;
|
|
5305
5309
|
/**
|
|
5306
5310
|
* 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.
|
|
5307
5311
|
* @summary Delete
|
|
@@ -5310,7 +5314,7 @@ declare class CoordinateSystemsApi extends BaseAPI {
|
|
|
5310
5314
|
* @param {*} [options] Override http request option.
|
|
5311
5315
|
* @throws {RequiredError}
|
|
5312
5316
|
*/
|
|
5313
|
-
deleteCoordinateSystem(cell: string, coordinateSystem: string, options?: RawAxiosRequestConfig): Promise<
|
|
5317
|
+
deleteCoordinateSystem(cell: string, coordinateSystem: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
|
|
5314
5318
|
/**
|
|
5315
5319
|
* 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.
|
|
5316
5320
|
* @summary Description
|
|
@@ -5320,7 +5324,7 @@ declare class CoordinateSystemsApi extends BaseAPI {
|
|
|
5320
5324
|
* @param {*} [options] Override http request option.
|
|
5321
5325
|
* @throws {RequiredError}
|
|
5322
5326
|
*/
|
|
5323
|
-
getCoordinateSystem(cell: string, coordinateSystem: string, rotationType?: RotationAngleTypes, options?: RawAxiosRequestConfig): Promise<
|
|
5327
|
+
getCoordinateSystem(cell: string, coordinateSystem: string, rotationType?: RotationAngleTypes, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<CoordinateSystem, any>>;
|
|
5324
5328
|
/**
|
|
5325
5329
|
* 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.
|
|
5326
5330
|
* @summary List
|
|
@@ -5329,7 +5333,7 @@ declare class CoordinateSystemsApi extends BaseAPI {
|
|
|
5329
5333
|
* @param {*} [options] Override http request option.
|
|
5330
5334
|
* @throws {RequiredError}
|
|
5331
5335
|
*/
|
|
5332
|
-
listCoordinateSystems(cell: string, rotationType?: RotationAngleTypes, options?: RawAxiosRequestConfig): Promise<
|
|
5336
|
+
listCoordinateSystems(cell: string, rotationType?: RotationAngleTypes, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ListResponse, any>>;
|
|
5333
5337
|
/**
|
|
5334
5338
|
* Transform a pose to another base.
|
|
5335
5339
|
* @summary Transform
|
|
@@ -5339,7 +5343,7 @@ declare class CoordinateSystemsApi extends BaseAPI {
|
|
|
5339
5343
|
* @param {*} [options] Override http request option.
|
|
5340
5344
|
* @throws {RequiredError}
|
|
5341
5345
|
*/
|
|
5342
|
-
transformInCoordinateSystem(cell: string, coordinateSystem: string, pose: Pose, options?: RawAxiosRequestConfig): Promise<
|
|
5346
|
+
transformInCoordinateSystem(cell: string, coordinateSystem: string, pose: Pose, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<Pose, any>>;
|
|
5343
5347
|
}
|
|
5344
5348
|
/**
|
|
5345
5349
|
* DeviceConfigurationApi - axios parameter creator
|
|
@@ -5512,7 +5516,7 @@ declare class DeviceConfigurationApi extends BaseAPI {
|
|
|
5512
5516
|
* @deprecated
|
|
5513
5517
|
* @throws {RequiredError}
|
|
5514
5518
|
*/
|
|
5515
|
-
clearDevices(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
5519
|
+
clearDevices(cell: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
|
|
5516
5520
|
/**
|
|
5517
5521
|
* 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.
|
|
5518
5522
|
* @summary Create Devices
|
|
@@ -5522,7 +5526,7 @@ declare class DeviceConfigurationApi extends BaseAPI {
|
|
|
5522
5526
|
* @deprecated
|
|
5523
5527
|
* @throws {RequiredError}
|
|
5524
5528
|
*/
|
|
5525
|
-
createDevice(cell: string, createDeviceRequestInner: Array<CreateDeviceRequestInner>, options?: RawAxiosRequestConfig): Promise<
|
|
5529
|
+
createDevice(cell: string, createDeviceRequestInner: Array<CreateDeviceRequestInner>, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<any, any>>;
|
|
5526
5530
|
/**
|
|
5527
5531
|
* Deprecated endpoint. Deletes a specific device from the cell.
|
|
5528
5532
|
* @summary Delete Device
|
|
@@ -5532,7 +5536,7 @@ declare class DeviceConfigurationApi extends BaseAPI {
|
|
|
5532
5536
|
* @deprecated
|
|
5533
5537
|
* @throws {RequiredError}
|
|
5534
5538
|
*/
|
|
5535
|
-
deleteDevice(cell: string, identifier: string, options?: RawAxiosRequestConfig): Promise<
|
|
5539
|
+
deleteDevice(cell: string, identifier: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
|
|
5536
5540
|
/**
|
|
5537
5541
|
* Deprecated endpoint. Returns information about a device.
|
|
5538
5542
|
* @summary Device Information
|
|
@@ -5542,7 +5546,7 @@ declare class DeviceConfigurationApi extends BaseAPI {
|
|
|
5542
5546
|
* @deprecated
|
|
5543
5547
|
* @throws {RequiredError}
|
|
5544
5548
|
*/
|
|
5545
|
-
getDevice(cell: string, identifier: string, options?: RawAxiosRequestConfig): Promise<
|
|
5549
|
+
getDevice(cell: string, identifier: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<any, any>>;
|
|
5546
5550
|
/**
|
|
5547
5551
|
* Deprecated endpoint. Lists all devices which are configured in the cell: - Robots - Databases - OPC UA devices
|
|
5548
5552
|
* @summary List All Devices
|
|
@@ -5551,7 +5555,7 @@ declare class DeviceConfigurationApi extends BaseAPI {
|
|
|
5551
5555
|
* @deprecated
|
|
5552
5556
|
* @throws {RequiredError}
|
|
5553
5557
|
*/
|
|
5554
|
-
listDevices(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
5558
|
+
listDevices(cell: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ListDevices200ResponseInner[], any>>;
|
|
5555
5559
|
}
|
|
5556
5560
|
/**
|
|
5557
5561
|
* LibraryProgramApi - axios parameter creator
|
|
@@ -5722,7 +5726,7 @@ declare class LibraryProgramApi extends BaseAPI {
|
|
|
5722
5726
|
* @param {*} [options] Override http request option.
|
|
5723
5727
|
* @throws {RequiredError}
|
|
5724
5728
|
*/
|
|
5725
|
-
createProgram(cell: string, body: string, name?: string, options?: RawAxiosRequestConfig): Promise<
|
|
5729
|
+
createProgram(cell: string, body: string, name?: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ProgramMetadata, any>>;
|
|
5726
5730
|
/**
|
|
5727
5731
|
* <!-- theme: danger --> > **Experimental** Deletes the program with the corresponding metadata. This action is irreversible. Does not delete the associated recipes.
|
|
5728
5732
|
* @summary Delete Program
|
|
@@ -5731,7 +5735,7 @@ declare class LibraryProgramApi extends BaseAPI {
|
|
|
5731
5735
|
* @param {*} [options] Override http request option.
|
|
5732
5736
|
* @throws {RequiredError}
|
|
5733
5737
|
*/
|
|
5734
|
-
deleteProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<
|
|
5738
|
+
deleteProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ProgramMetadata, any>>;
|
|
5735
5739
|
/**
|
|
5736
5740
|
* <!-- theme: danger --> > **Experimental** Deletes the provided list of programs with the corresponding metadata. This action is irreversible. Does not delete the associated recipes.
|
|
5737
5741
|
* @summary Delete Program List
|
|
@@ -5740,7 +5744,7 @@ declare class LibraryProgramApi extends BaseAPI {
|
|
|
5740
5744
|
* @param {*} [options] Override http request option.
|
|
5741
5745
|
* @throws {RequiredError}
|
|
5742
5746
|
*/
|
|
5743
|
-
deleteProgramList(cell: string, programIds: Array<string>, options?: RawAxiosRequestConfig): Promise<
|
|
5747
|
+
deleteProgramList(cell: string, programIds: Array<string>, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ListProgramMetadataResponse, any>>;
|
|
5744
5748
|
/**
|
|
5745
5749
|
* <!-- 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.
|
|
5746
5750
|
* @summary Get Program
|
|
@@ -5749,7 +5753,7 @@ declare class LibraryProgramApi extends BaseAPI {
|
|
|
5749
5753
|
* @param {*} [options] Override http request option.
|
|
5750
5754
|
* @throws {RequiredError}
|
|
5751
5755
|
*/
|
|
5752
|
-
getProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<
|
|
5756
|
+
getProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<string, any>>;
|
|
5753
5757
|
/**
|
|
5754
5758
|
* <!-- 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 ```
|
|
5755
5759
|
* @summary Update Program
|
|
@@ -5759,7 +5763,7 @@ declare class LibraryProgramApi extends BaseAPI {
|
|
|
5759
5763
|
* @param {*} [options] Override http request option.
|
|
5760
5764
|
* @throws {RequiredError}
|
|
5761
5765
|
*/
|
|
5762
|
-
updateProgram(cell: string, program: string, body: string, options?: RawAxiosRequestConfig): Promise<
|
|
5766
|
+
updateProgram(cell: string, program: string, body: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ProgramMetadata, any>>;
|
|
5763
5767
|
}
|
|
5764
5768
|
/**
|
|
5765
5769
|
* LibraryProgramMetadataApi - axios parameter creator
|
|
@@ -5902,7 +5906,7 @@ declare class LibraryProgramMetadataApi extends BaseAPI {
|
|
|
5902
5906
|
* @param {*} [options] Override http request option.
|
|
5903
5907
|
* @throws {RequiredError}
|
|
5904
5908
|
*/
|
|
5905
|
-
getProgramMetadata(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<
|
|
5909
|
+
getProgramMetadata(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ProgramMetadata, any>>;
|
|
5906
5910
|
/**
|
|
5907
5911
|
* <!-- theme: danger --> > **Experimental** Returns a list of all the stored programs, represented by their metadata.
|
|
5908
5912
|
* @summary List Program Metadata
|
|
@@ -5911,7 +5915,7 @@ declare class LibraryProgramMetadataApi extends BaseAPI {
|
|
|
5911
5915
|
* @param {*} [options] Override http request option.
|
|
5912
5916
|
* @throws {RequiredError}
|
|
5913
5917
|
*/
|
|
5914
|
-
listProgramMetadata(cell: string, showHidden?: boolean, options?: RawAxiosRequestConfig): Promise<
|
|
5918
|
+
listProgramMetadata(cell: string, showHidden?: boolean, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ListProgramMetadataResponse, any>>;
|
|
5915
5919
|
/**
|
|
5916
5920
|
* <!-- theme: danger --> > **Experimental** Updates the metadata of the corresponding program. The update is partial, only the set fields get updated.
|
|
5917
5921
|
* @summary Update Program Metadata
|
|
@@ -5921,7 +5925,7 @@ declare class LibraryProgramMetadataApi extends BaseAPI {
|
|
|
5921
5925
|
* @param {*} [options] Override http request option.
|
|
5922
5926
|
* @throws {RequiredError}
|
|
5923
5927
|
*/
|
|
5924
|
-
updateProgramMetadata(cell: string, program: string, updateProgramMetadataRequest: UpdateProgramMetadataRequest, options?: RawAxiosRequestConfig): Promise<
|
|
5928
|
+
updateProgramMetadata(cell: string, program: string, updateProgramMetadataRequest: UpdateProgramMetadataRequest, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ProgramMetadata, any>>;
|
|
5925
5929
|
/**
|
|
5926
5930
|
* <!-- 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.
|
|
5927
5931
|
* @summary Upload Program Metadata Image
|
|
@@ -5931,7 +5935,7 @@ declare class LibraryProgramMetadataApi extends BaseAPI {
|
|
|
5931
5935
|
* @param {*} [options] Override http request option.
|
|
5932
5936
|
* @throws {RequiredError}
|
|
5933
5937
|
*/
|
|
5934
|
-
uploadProgramMetadataImage(cell: string, program: string, file: File, options?: RawAxiosRequestConfig): Promise<
|
|
5938
|
+
uploadProgramMetadataImage(cell: string, program: string, file: File, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ProgramMetadata, any>>;
|
|
5935
5939
|
}
|
|
5936
5940
|
/**
|
|
5937
5941
|
* LibraryRecipeApi - axios parameter creator
|
|
@@ -6106,7 +6110,7 @@ declare class LibraryRecipeApi extends BaseAPI {
|
|
|
6106
6110
|
* @param {*} [options] Override http request option.
|
|
6107
6111
|
* @throws {RequiredError}
|
|
6108
6112
|
*/
|
|
6109
|
-
createRecipe(cell: string, programId: string, body: object, name?: string, options?: RawAxiosRequestConfig): Promise<
|
|
6113
|
+
createRecipe(cell: string, programId: string, body: object, name?: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<RecipeMetadata, any>>;
|
|
6110
6114
|
/**
|
|
6111
6115
|
* # EXPERIMENTAL > **Note:** This endpoint is experimental and might experience functional changes in the future. Deletes a recipe. This action is irreversible.
|
|
6112
6116
|
* @summary Delete Recipe
|
|
@@ -6115,7 +6119,7 @@ declare class LibraryRecipeApi extends BaseAPI {
|
|
|
6115
6119
|
* @param {*} [options] Override http request option.
|
|
6116
6120
|
* @throws {RequiredError}
|
|
6117
6121
|
*/
|
|
6118
|
-
deleteRecipe(cell: string, recipe: string, options?: RawAxiosRequestConfig): Promise<
|
|
6122
|
+
deleteRecipe(cell: string, recipe: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<RecipeMetadata, any>>;
|
|
6119
6123
|
/**
|
|
6120
6124
|
* <!-- theme: danger --> > **Experimental** Deletes the provided list of recipes. This action is irreversible.
|
|
6121
6125
|
* @summary Delete Recipe List
|
|
@@ -6124,7 +6128,7 @@ declare class LibraryRecipeApi extends BaseAPI {
|
|
|
6124
6128
|
* @param {*} [options] Override http request option.
|
|
6125
6129
|
* @throws {RequiredError}
|
|
6126
6130
|
*/
|
|
6127
|
-
deleteRecipeList(cell: string, recipeIds: Array<string>, options?: RawAxiosRequestConfig): Promise<
|
|
6131
|
+
deleteRecipeList(cell: string, recipeIds: Array<string>, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ListRecipeMetadataResponse, any>>;
|
|
6128
6132
|
/**
|
|
6129
6133
|
* <!-- 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.
|
|
6130
6134
|
* @summary Get Recipe
|
|
@@ -6133,7 +6137,7 @@ declare class LibraryRecipeApi extends BaseAPI {
|
|
|
6133
6137
|
* @param {*} [options] Override http request option.
|
|
6134
6138
|
* @throws {RequiredError}
|
|
6135
6139
|
*/
|
|
6136
|
-
getRecipe(cell: string, recipe: string, options?: RawAxiosRequestConfig): Promise<
|
|
6140
|
+
getRecipe(cell: string, recipe: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<object, any>>;
|
|
6137
6141
|
/**
|
|
6138
6142
|
* <!-- theme: danger --> > **Experimental** Updates an existing recipe. The update is partial, only the set fields get updated.
|
|
6139
6143
|
* @summary Update Recipe
|
|
@@ -6143,7 +6147,7 @@ declare class LibraryRecipeApi extends BaseAPI {
|
|
|
6143
6147
|
* @param {*} [options] Override http request option.
|
|
6144
6148
|
* @throws {RequiredError}
|
|
6145
6149
|
*/
|
|
6146
|
-
updateRecipe(cell: string, recipe: string, body: object, options?: RawAxiosRequestConfig): Promise<
|
|
6150
|
+
updateRecipe(cell: string, recipe: string, body: object, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<RecipeMetadata, any>>;
|
|
6147
6151
|
}
|
|
6148
6152
|
/**
|
|
6149
6153
|
* LibraryRecipeMetadataApi - axios parameter creator
|
|
@@ -6283,7 +6287,7 @@ declare class LibraryRecipeMetadataApi extends BaseAPI {
|
|
|
6283
6287
|
* @param {*} [options] Override http request option.
|
|
6284
6288
|
* @throws {RequiredError}
|
|
6285
6289
|
*/
|
|
6286
|
-
getRecipeMetadata(cell: string, recipe: string, options?: RawAxiosRequestConfig): Promise<
|
|
6290
|
+
getRecipeMetadata(cell: string, recipe: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<RecipeMetadata, any>>;
|
|
6287
6291
|
/**
|
|
6288
6292
|
* <!-- theme: danger --> > **Experimental** List of all the stored recipes, represented by their metadata.
|
|
6289
6293
|
* @summary List Recipe Metadata
|
|
@@ -6291,7 +6295,7 @@ declare class LibraryRecipeMetadataApi extends BaseAPI {
|
|
|
6291
6295
|
* @param {*} [options] Override http request option.
|
|
6292
6296
|
* @throws {RequiredError}
|
|
6293
6297
|
*/
|
|
6294
|
-
listRecipeMetadata(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
6298
|
+
listRecipeMetadata(cell: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ListRecipeMetadataResponse, any>>;
|
|
6295
6299
|
/**
|
|
6296
6300
|
* <!-- theme: danger --> > **Experimental** Updates the metadata of a recipe. The update is partial, only the set fields get updated.
|
|
6297
6301
|
* @summary Update Recipe Metadata
|
|
@@ -6301,7 +6305,7 @@ declare class LibraryRecipeMetadataApi extends BaseAPI {
|
|
|
6301
6305
|
* @param {*} [options] Override http request option.
|
|
6302
6306
|
* @throws {RequiredError}
|
|
6303
6307
|
*/
|
|
6304
|
-
updateRecipeMetadata(cell: string, recipe: string, updateRecipeMetadataRequest: UpdateRecipeMetadataRequest, options?: RawAxiosRequestConfig): Promise<
|
|
6308
|
+
updateRecipeMetadata(cell: string, recipe: string, updateRecipeMetadataRequest: UpdateRecipeMetadataRequest, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<RecipeMetadata, any>>;
|
|
6305
6309
|
/**
|
|
6306
6310
|
* <!-- 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.
|
|
6307
6311
|
* @summary Upload Recipe Metadata Image
|
|
@@ -6311,7 +6315,7 @@ declare class LibraryRecipeMetadataApi extends BaseAPI {
|
|
|
6311
6315
|
* @param {*} [options] Override http request option.
|
|
6312
6316
|
* @throws {RequiredError}
|
|
6313
6317
|
*/
|
|
6314
|
-
uploadRecipeMetadataImage(cell: string, recipe: string, file: File, options?: RawAxiosRequestConfig): Promise<
|
|
6318
|
+
uploadRecipeMetadataImage(cell: string, recipe: string, file: File, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<RecipeMetadata, any>>;
|
|
6315
6319
|
}
|
|
6316
6320
|
/**
|
|
6317
6321
|
* LicenseApi - axios parameter creator
|
|
@@ -6426,28 +6430,28 @@ declare class LicenseApi extends BaseAPI {
|
|
|
6426
6430
|
* @param {*} [options] Override http request option.
|
|
6427
6431
|
* @throws {RequiredError}
|
|
6428
6432
|
*/
|
|
6429
|
-
activateLicense(activateLicenseRequest: ActivateLicenseRequest, options?: RawAxiosRequestConfig): Promise<
|
|
6433
|
+
activateLicense(activateLicenseRequest: ActivateLicenseRequest, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<License, any>>;
|
|
6430
6434
|
/**
|
|
6431
6435
|
* Deactivates active license.
|
|
6432
6436
|
* @summary Deactivate license
|
|
6433
6437
|
* @param {*} [options] Override http request option.
|
|
6434
6438
|
* @throws {RequiredError}
|
|
6435
6439
|
*/
|
|
6436
|
-
deactivateLicense(options?: RawAxiosRequestConfig): Promise<
|
|
6440
|
+
deactivateLicense(options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
|
|
6437
6441
|
/**
|
|
6438
6442
|
* Get information on the license used with the Wandelbots NOVA instance, e.g. licensed product, expiration date, license status.
|
|
6439
6443
|
* @summary Get license
|
|
6440
6444
|
* @param {*} [options] Override http request option.
|
|
6441
6445
|
* @throws {RequiredError}
|
|
6442
6446
|
*/
|
|
6443
|
-
getLicense(options?: RawAxiosRequestConfig): Promise<
|
|
6447
|
+
getLicense(options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<License, any>>;
|
|
6444
6448
|
/**
|
|
6445
6449
|
* 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.
|
|
6446
6450
|
* @summary Get license status
|
|
6447
6451
|
* @param {*} [options] Override http request option.
|
|
6448
6452
|
* @throws {RequiredError}
|
|
6449
6453
|
*/
|
|
6450
|
-
getLicenseStatus(options?: RawAxiosRequestConfig): Promise<
|
|
6454
|
+
getLicenseStatus(options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<LicenseStatus, any>>;
|
|
6451
6455
|
}
|
|
6452
6456
|
/**
|
|
6453
6457
|
* MotionApi - axios parameter creator
|
|
@@ -7000,7 +7004,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
7000
7004
|
* @param {*} [options] Override http request option.
|
|
7001
7005
|
* @throws {RequiredError}
|
|
7002
7006
|
*/
|
|
7003
|
-
deleteAllMotions(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
7007
|
+
deleteAllMotions(cell: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
|
|
7004
7008
|
/**
|
|
7005
7009
|
* 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.
|
|
7006
7010
|
* @summary Remove
|
|
@@ -7009,7 +7013,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
7009
7013
|
* @param {*} [options] Override http request option.
|
|
7010
7014
|
* @throws {RequiredError}
|
|
7011
7015
|
*/
|
|
7012
|
-
deleteMotion(cell: string, motion: string, options?: RawAxiosRequestConfig): Promise<
|
|
7016
|
+
deleteMotion(cell: string, motion: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
|
|
7013
7017
|
/**
|
|
7014
7018
|
* <!-- 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.
|
|
7015
7019
|
* @summary Execute Trajectory
|
|
@@ -7018,7 +7022,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
7018
7022
|
* @param {*} [options] Override http request option.
|
|
7019
7023
|
* @throws {RequiredError}
|
|
7020
7024
|
*/
|
|
7021
|
-
executeTrajectory(cell: string, executeTrajectoryRequest: ExecuteTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<
|
|
7025
|
+
executeTrajectory(cell: string, executeTrajectoryRequest: ExecuteTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ExecuteTrajectoryResponse, any>>;
|
|
7022
7026
|
/**
|
|
7023
7027
|
* 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.
|
|
7024
7028
|
* @summary Get Trajectory
|
|
@@ -7029,7 +7033,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
7029
7033
|
* @param {*} [options] Override http request option.
|
|
7030
7034
|
* @throws {RequiredError}
|
|
7031
7035
|
*/
|
|
7032
|
-
getMotionTrajectory(cell: string, motion: string, sampleTime: number, responsesCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<
|
|
7036
|
+
getMotionTrajectory(cell: string, motion: string, sampleTime: number, responsesCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<GetTrajectoryResponse, any>>;
|
|
7033
7037
|
/**
|
|
7034
7038
|
* Get a single point at a certain location of a planned motion. To get the whole trajectory, use the [getMotionTrajectory](getMotionTrajectory) endpoint.
|
|
7035
7039
|
* @summary Get Trajectory Sample
|
|
@@ -7040,7 +7044,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
7040
7044
|
* @param {*} [options] Override http request option.
|
|
7041
7045
|
* @throws {RequiredError}
|
|
7042
7046
|
*/
|
|
7043
|
-
getMotionTrajectorySample(cell: string, motion: string, locationOnTrajectory?: number, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<
|
|
7047
|
+
getMotionTrajectorySample(cell: string, motion: string, locationOnTrajectory?: number, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<GetTrajectorySampleResponse, any>>;
|
|
7044
7048
|
/**
|
|
7045
7049
|
* 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.
|
|
7046
7050
|
* @summary Get Planned Motion
|
|
@@ -7050,7 +7054,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
7050
7054
|
* @param {*} [options] Override http request option.
|
|
7051
7055
|
* @throws {RequiredError}
|
|
7052
7056
|
*/
|
|
7053
|
-
getPlannedMotion(cell: string, motion: string, sampleTime?: number, options?: RawAxiosRequestConfig): Promise<
|
|
7057
|
+
getPlannedMotion(cell: string, motion: string, sampleTime?: number, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<PlannedMotion, any>>;
|
|
7054
7058
|
/**
|
|
7055
7059
|
* Returns motion group models that are supported for planning.
|
|
7056
7060
|
* @summary Motion Group Models for Planning
|
|
@@ -7058,7 +7062,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
7058
7062
|
* @param {*} [options] Override http request option.
|
|
7059
7063
|
* @throws {RequiredError}
|
|
7060
7064
|
*/
|
|
7061
|
-
getPlanningMotionGroupModels(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
7065
|
+
getPlanningMotionGroupModels(cell: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<string[], any>>;
|
|
7062
7066
|
/**
|
|
7063
7067
|
* 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.
|
|
7064
7068
|
* @summary List All Motions
|
|
@@ -7066,7 +7070,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
7066
7070
|
* @param {*} [options] Override http request option.
|
|
7067
7071
|
* @throws {RequiredError}
|
|
7068
7072
|
*/
|
|
7069
|
-
listMotions(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
7073
|
+
listMotions(cell: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<MotionIdsListResponse, any>>;
|
|
7070
7074
|
/**
|
|
7071
7075
|
* 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.
|
|
7072
7076
|
* @summary Load Planned Motion
|
|
@@ -7075,7 +7079,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
7075
7079
|
* @param {*} [options] Override http request option.
|
|
7076
7080
|
* @throws {RequiredError}
|
|
7077
7081
|
*/
|
|
7078
|
-
loadPlannedMotion(cell: string, plannedMotion: PlannedMotion, options?: RawAxiosRequestConfig): Promise<
|
|
7082
|
+
loadPlannedMotion(cell: string, plannedMotion: PlannedMotion, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<PlanResponse, any>>;
|
|
7079
7083
|
/**
|
|
7080
7084
|
* <!-- 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.
|
|
7081
7085
|
* @summary Plan Collision Free PTP
|
|
@@ -7084,7 +7088,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
7084
7088
|
* @param {*} [options] Override http request option.
|
|
7085
7089
|
* @throws {RequiredError}
|
|
7086
7090
|
*/
|
|
7087
|
-
planCollisionFreePTP(cell: string, planCollisionFreePTPRequest?: PlanCollisionFreePTPRequest, options?: RawAxiosRequestConfig): Promise<
|
|
7091
|
+
planCollisionFreePTP(cell: string, planCollisionFreePTPRequest?: PlanCollisionFreePTPRequest, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<PlanTrajectoryResponse, any>>;
|
|
7088
7092
|
/**
|
|
7089
7093
|
* 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.
|
|
7090
7094
|
* @summary Plan Motion
|
|
@@ -7094,7 +7098,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
7094
7098
|
* @deprecated
|
|
7095
7099
|
* @throws {RequiredError}
|
|
7096
7100
|
*/
|
|
7097
|
-
planMotion(cell: string, planRequest: PlanRequest, options?: RawAxiosRequestConfig): Promise<
|
|
7101
|
+
planMotion(cell: string, planRequest: PlanRequest, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<PlanResponse, any>>;
|
|
7098
7102
|
/**
|
|
7099
7103
|
* 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.
|
|
7100
7104
|
* @summary Plan Trajectory
|
|
@@ -7103,7 +7107,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
7103
7107
|
* @param {*} [options] Override http request option.
|
|
7104
7108
|
* @throws {RequiredError}
|
|
7105
7109
|
*/
|
|
7106
|
-
planTrajectory(cell: string, planTrajectoryRequest?: PlanTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<
|
|
7110
|
+
planTrajectory(cell: string, planTrajectoryRequest?: PlanTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<PlanTrajectoryResponse, any>>;
|
|
7107
7111
|
/**
|
|
7108
7112
|
* 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.
|
|
7109
7113
|
* @summary Stop
|
|
@@ -7112,7 +7116,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
7112
7116
|
* @param {*} [options] Override http request option.
|
|
7113
7117
|
* @throws {RequiredError}
|
|
7114
7118
|
*/
|
|
7115
|
-
stopExecution(cell: string, motion: string, options?: RawAxiosRequestConfig): Promise<
|
|
7119
|
+
stopExecution(cell: string, motion: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
|
|
7116
7120
|
/**
|
|
7117
7121
|
* 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.
|
|
7118
7122
|
* @summary Stream Move
|
|
@@ -7122,7 +7126,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
7122
7126
|
* @deprecated
|
|
7123
7127
|
* @throws {RequiredError}
|
|
7124
7128
|
*/
|
|
7125
|
-
streamMove(cell: string, streamMoveRequest: StreamMoveRequest, options?: RawAxiosRequestConfig): Promise<
|
|
7129
|
+
streamMove(cell: string, streamMoveRequest: StreamMoveRequest, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<StreamMoveResponse, any>>;
|
|
7126
7130
|
/**
|
|
7127
7131
|
* 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.
|
|
7128
7132
|
* @summary Stream Backward
|
|
@@ -7136,7 +7140,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
7136
7140
|
* @deprecated
|
|
7137
7141
|
* @throws {RequiredError}
|
|
7138
7142
|
*/
|
|
7139
|
-
streamMoveBackward(cell: string, motion: string, playbackSpeedInPercent: number, responseRate?: number, responseCoordinateSystem?: string, startLocationOnTrajectory?: number, options?: RawAxiosRequestConfig): Promise<
|
|
7143
|
+
streamMoveBackward(cell: string, motion: string, playbackSpeedInPercent: number, responseRate?: number, responseCoordinateSystem?: string, startLocationOnTrajectory?: number, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<StreamMoveResponse, any>>;
|
|
7140
7144
|
/**
|
|
7141
7145
|
* 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.
|
|
7142
7146
|
* @summary Stream Forward
|
|
@@ -7150,7 +7154,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
7150
7154
|
* @deprecated
|
|
7151
7155
|
* @throws {RequiredError}
|
|
7152
7156
|
*/
|
|
7153
|
-
streamMoveForward(cell: string, motion: string, playbackSpeedInPercent: number, responseRate?: number, responseCoordinateSystem?: string, startLocationOnTrajectory?: number, options?: RawAxiosRequestConfig): Promise<
|
|
7157
|
+
streamMoveForward(cell: string, motion: string, playbackSpeedInPercent: number, responseRate?: number, responseCoordinateSystem?: string, startLocationOnTrajectory?: number, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<StreamMoveResponse, any>>;
|
|
7154
7158
|
/**
|
|
7155
7159
|
* 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.
|
|
7156
7160
|
* @summary Stream to Trajectory
|
|
@@ -7167,7 +7171,7 @@ declare class MotionApi extends BaseAPI {
|
|
|
7167
7171
|
* @param {*} [options] Override http request option.
|
|
7168
7172
|
* @throws {RequiredError}
|
|
7169
7173
|
*/
|
|
7170
|
-
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<
|
|
7174
|
+
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<axios129.AxiosResponse<StreamMoveResponse, any>>;
|
|
7171
7175
|
}
|
|
7172
7176
|
/**
|
|
7173
7177
|
* MotionGroupApi - axios parameter creator
|
|
@@ -7301,7 +7305,7 @@ declare class MotionGroupApi extends BaseAPI {
|
|
|
7301
7305
|
* @param {*} [options] Override http request option.
|
|
7302
7306
|
* @throws {RequiredError}
|
|
7303
7307
|
*/
|
|
7304
|
-
activateAllMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
7308
|
+
activateAllMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<MotionGroupInstanceList, any>>;
|
|
7305
7309
|
/**
|
|
7306
7310
|
* 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).
|
|
7307
7311
|
* @summary Activate
|
|
@@ -7310,7 +7314,7 @@ declare class MotionGroupApi extends BaseAPI {
|
|
|
7310
7314
|
* @param {*} [options] Override http request option.
|
|
7311
7315
|
* @throws {RequiredError}
|
|
7312
7316
|
*/
|
|
7313
|
-
activateMotionGroup(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
7317
|
+
activateMotionGroup(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<MotionGroupInstance, any>>;
|
|
7314
7318
|
/**
|
|
7315
7319
|
* 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.
|
|
7316
7320
|
* @summary Deactivate
|
|
@@ -7319,7 +7323,7 @@ declare class MotionGroupApi extends BaseAPI {
|
|
|
7319
7323
|
* @param {*} [options] Override http request option.
|
|
7320
7324
|
* @throws {RequiredError}
|
|
7321
7325
|
*/
|
|
7322
|
-
deactivateMotionGroup(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
7326
|
+
deactivateMotionGroup(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
|
|
7323
7327
|
/**
|
|
7324
7328
|
* List all active motion groups. A motion group is active if it is currently used by a controller.
|
|
7325
7329
|
* @summary List Active
|
|
@@ -7327,7 +7331,7 @@ declare class MotionGroupApi extends BaseAPI {
|
|
|
7327
7331
|
* @param {*} [options] Override http request option.
|
|
7328
7332
|
* @throws {RequiredError}
|
|
7329
7333
|
*/
|
|
7330
|
-
listMotionGroups(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
7334
|
+
listMotionGroups(cell: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<MotionGroupInstanceList, any>>;
|
|
7331
7335
|
}
|
|
7332
7336
|
/**
|
|
7333
7337
|
* MotionGroupInfosApi - axios parameter creator
|
|
@@ -7677,7 +7681,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
|
|
|
7677
7681
|
* @param {*} [options] Override http request option.
|
|
7678
7682
|
* @throws {RequiredError}
|
|
7679
7683
|
*/
|
|
7680
|
-
getActivePayload(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
7684
|
+
getActivePayload(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<Payload, any>>;
|
|
7681
7685
|
/**
|
|
7682
7686
|
* Get the internal selected TCP of a connected device.
|
|
7683
7687
|
* @summary Selected TCP
|
|
@@ -7687,7 +7691,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
|
|
|
7687
7691
|
* @param {*} [options] Override http request option.
|
|
7688
7692
|
* @throws {RequiredError}
|
|
7689
7693
|
*/
|
|
7690
|
-
getActiveTcp(cell: string, motionGroup: string, rotationType?: RotationAngleTypes, options?: RawAxiosRequestConfig): Promise<
|
|
7694
|
+
getActiveTcp(cell: string, motionGroup: string, rotationType?: RotationAngleTypes, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<RobotTcp, any>>;
|
|
7691
7695
|
/**
|
|
7692
7696
|
* Returns the current state of the selected motion group including the current joint position, velocity, pose, and more.
|
|
7693
7697
|
* @summary State of Device
|
|
@@ -7698,7 +7702,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
|
|
|
7698
7702
|
* @param {*} [options] Override http request option.
|
|
7699
7703
|
* @throws {RequiredError}
|
|
7700
7704
|
*/
|
|
7701
|
-
getCurrentMotionGroupState(cell: string, motionGroup: string, tcp?: string, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<
|
|
7705
|
+
getCurrentMotionGroupState(cell: string, motionGroup: string, tcp?: string, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<MotionGroupStateResponse, any>>;
|
|
7702
7706
|
/**
|
|
7703
7707
|
* 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.
|
|
7704
7708
|
* @summary Capabilities
|
|
@@ -7707,7 +7711,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
|
|
|
7707
7711
|
* @param {*} [options] Override http request option.
|
|
7708
7712
|
* @throws {RequiredError}
|
|
7709
7713
|
*/
|
|
7710
|
-
getInfoCapabilities(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
7714
|
+
getInfoCapabilities(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<InfoServiceCapabilities, any>>;
|
|
7711
7715
|
/**
|
|
7712
7716
|
* 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.
|
|
7713
7717
|
* @summary Get Static Properties
|
|
@@ -7716,7 +7720,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
|
|
|
7716
7720
|
* @param {*} [options] Override http request option.
|
|
7717
7721
|
* @throws {RequiredError}
|
|
7718
7722
|
*/
|
|
7719
|
-
getMotionGroupSpecification(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
7723
|
+
getMotionGroupSpecification(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<MotionGroupSpecification, any>>;
|
|
7720
7724
|
/**
|
|
7721
7725
|
* Returns the configured mounting pose offset in relation to world coordinate system and the motion groups coordinate system.
|
|
7722
7726
|
* @summary Device Mounting
|
|
@@ -7725,7 +7729,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
|
|
|
7725
7729
|
* @param {*} [options] Override http request option.
|
|
7726
7730
|
* @throws {RequiredError}
|
|
7727
7731
|
*/
|
|
7728
|
-
getMounting(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
7732
|
+
getMounting(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<Mounting, any>>;
|
|
7729
7733
|
/**
|
|
7730
7734
|
* <!-- theme: danger --> > **Experimental** Get the complete configuration which can be passed to the planner-optimizer (incl. motion group description, limits etc.)
|
|
7731
7735
|
* @summary Optimizer Configuration
|
|
@@ -7735,7 +7739,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
|
|
|
7735
7739
|
* @param {*} [options] Override http request option.
|
|
7736
7740
|
* @throws {RequiredError}
|
|
7737
7741
|
*/
|
|
7738
|
-
getOptimizerConfiguration(cell: string, motionGroup: string, tcp?: string, options?: RawAxiosRequestConfig): Promise<
|
|
7742
|
+
getOptimizerConfiguration(cell: string, motionGroup: string, tcp?: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<OptimizerSetup, any>>;
|
|
7739
7743
|
/**
|
|
7740
7744
|
* 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).
|
|
7741
7745
|
* @summary Safety Setup and Limitations
|
|
@@ -7744,7 +7748,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
|
|
|
7744
7748
|
* @param {*} [options] Override http request option.
|
|
7745
7749
|
* @throws {RequiredError}
|
|
7746
7750
|
*/
|
|
7747
|
-
getSafetySetup(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
7751
|
+
getSafetySetup(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<SafetySetup, any>>;
|
|
7748
7752
|
/**
|
|
7749
7753
|
* 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.
|
|
7750
7754
|
* @summary List Payloads
|
|
@@ -7753,7 +7757,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
|
|
|
7753
7757
|
* @param {*} [options] Override http request option.
|
|
7754
7758
|
* @throws {RequiredError}
|
|
7755
7759
|
*/
|
|
7756
|
-
listPayloads(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
7760
|
+
listPayloads(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ListPayloadsResponse, any>>;
|
|
7757
7761
|
/**
|
|
7758
7762
|
* Get all internal configured TCPs of a connected device.
|
|
7759
7763
|
* @summary List TCPs
|
|
@@ -7763,7 +7767,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
|
|
|
7763
7767
|
* @param {*} [options] Override http request option.
|
|
7764
7768
|
* @throws {RequiredError}
|
|
7765
7769
|
*/
|
|
7766
|
-
listTcps(cell: string, motionGroup: string, rotationType?: RotationAngleTypes, options?: RawAxiosRequestConfig): Promise<
|
|
7770
|
+
listTcps(cell: string, motionGroup: string, rotationType?: RotationAngleTypes, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ListTcpsResponse, any>>;
|
|
7767
7771
|
/**
|
|
7768
7772
|
* Receive updates of the motion group state. The stream will be closed from the server if the controller is disconnected.
|
|
7769
7773
|
* @summary Stream State of Device
|
|
@@ -7775,7 +7779,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
|
|
|
7775
7779
|
* @param {*} [options] Override http request option.
|
|
7776
7780
|
* @throws {RequiredError}
|
|
7777
7781
|
*/
|
|
7778
|
-
streamMotionGroupState(cell: string, motionGroup: string, responseRate?: number, responseCoordinateSystem?: string, tcp?: string, options?: RawAxiosRequestConfig): Promise<
|
|
7782
|
+
streamMotionGroupState(cell: string, motionGroup: string, responseRate?: number, responseCoordinateSystem?: string, tcp?: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<MotionGroupStateResponse, any>>;
|
|
7779
7783
|
}
|
|
7780
7784
|
/**
|
|
7781
7785
|
* MotionGroupJoggingApi - axios parameter creator
|
|
@@ -7912,7 +7916,7 @@ declare class MotionGroupJoggingApi extends BaseAPI {
|
|
|
7912
7916
|
* @param {*} [options] Override http request option.
|
|
7913
7917
|
* @throws {RequiredError}
|
|
7914
7918
|
*/
|
|
7915
|
-
directionJogging(cell: string, directionJoggingRequest: DirectionJoggingRequest, options?: RawAxiosRequestConfig): Promise<
|
|
7919
|
+
directionJogging(cell: string, directionJoggingRequest: DirectionJoggingRequest, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<JoggingResponse, any>>;
|
|
7916
7920
|
/**
|
|
7917
7921
|
* 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.
|
|
7918
7922
|
* @summary Capabilities
|
|
@@ -7921,7 +7925,7 @@ declare class MotionGroupJoggingApi extends BaseAPI {
|
|
|
7921
7925
|
* @param {*} [options] Override http request option.
|
|
7922
7926
|
* @throws {RequiredError}
|
|
7923
7927
|
*/
|
|
7924
|
-
getJoggingCapabilities(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
7928
|
+
getJoggingCapabilities(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<JoggingServiceCapabilities, any>>;
|
|
7925
7929
|
/**
|
|
7926
7930
|
* 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.
|
|
7927
7931
|
* @summary Stream Joints
|
|
@@ -7930,7 +7934,7 @@ declare class MotionGroupJoggingApi extends BaseAPI {
|
|
|
7930
7934
|
* @param {*} [options] Override http request option.
|
|
7931
7935
|
* @throws {RequiredError}
|
|
7932
7936
|
*/
|
|
7933
|
-
jointJogging(cell: string, jointJoggingRequest: JointJoggingRequest, options?: RawAxiosRequestConfig): Promise<
|
|
7937
|
+
jointJogging(cell: string, jointJoggingRequest: JointJoggingRequest, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<JoggingResponse, any>>;
|
|
7934
7938
|
/**
|
|
7935
7939
|
* 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.
|
|
7936
7940
|
* @summary Stop
|
|
@@ -7939,7 +7943,7 @@ declare class MotionGroupJoggingApi extends BaseAPI {
|
|
|
7939
7943
|
* @param {*} [options] Override http request option.
|
|
7940
7944
|
* @throws {RequiredError}
|
|
7941
7945
|
*/
|
|
7942
|
-
stopJogging(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
7946
|
+
stopJogging(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
|
|
7943
7947
|
}
|
|
7944
7948
|
/**
|
|
7945
7949
|
* MotionGroupKinematicApi - axios parameter creator
|
|
@@ -8086,7 +8090,7 @@ declare class MotionGroupKinematicApi extends BaseAPI {
|
|
|
8086
8090
|
* @param {*} [options] Override http request option.
|
|
8087
8091
|
* @throws {RequiredError}
|
|
8088
8092
|
*/
|
|
8089
|
-
calculateAllInverseKinematic(cell: string, motionGroup: string, allJointPositionsRequest: AllJointPositionsRequest, options?: RawAxiosRequestConfig): Promise<
|
|
8093
|
+
calculateAllInverseKinematic(cell: string, motionGroup: string, allJointPositionsRequest: AllJointPositionsRequest, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<AllJointPositionsResponse, any>>;
|
|
8090
8094
|
/**
|
|
8091
8095
|
* Calculates the TCP pose from a joint position sample using the forward kinematics of the motion-group.
|
|
8092
8096
|
* @summary TcpPose from JointPosition
|
|
@@ -8096,7 +8100,7 @@ declare class MotionGroupKinematicApi extends BaseAPI {
|
|
|
8096
8100
|
* @param {*} [options] Override http request option.
|
|
8097
8101
|
* @throws {RequiredError}
|
|
8098
8102
|
*/
|
|
8099
|
-
calculateForwardKinematic(cell: string, motionGroup: string, tcpPoseRequest: TcpPoseRequest, options?: RawAxiosRequestConfig): Promise<
|
|
8103
|
+
calculateForwardKinematic(cell: string, motionGroup: string, tcpPoseRequest: TcpPoseRequest, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<Pose, any>>;
|
|
8100
8104
|
/**
|
|
8101
8105
|
* 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.
|
|
8102
8106
|
* @summary Nearest JointPosition from TcpPose
|
|
@@ -8106,7 +8110,7 @@ declare class MotionGroupKinematicApi extends BaseAPI {
|
|
|
8106
8110
|
* @param {*} [options] Override http request option.
|
|
8107
8111
|
* @throws {RequiredError}
|
|
8108
8112
|
*/
|
|
8109
|
-
calculateInverseKinematic(cell: string, motionGroup: string, jointPositionRequest: JointPositionRequest, options?: RawAxiosRequestConfig): Promise<
|
|
8113
|
+
calculateInverseKinematic(cell: string, motionGroup: string, jointPositionRequest: JointPositionRequest, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<Joints, any>>;
|
|
8110
8114
|
/**
|
|
8111
8115
|
* Get the kinematic endpoints provided for the specified motion-group.
|
|
8112
8116
|
* @summary Capabilities
|
|
@@ -8115,7 +8119,7 @@ declare class MotionGroupKinematicApi extends BaseAPI {
|
|
|
8115
8119
|
* @param {*} [options] Override http request option.
|
|
8116
8120
|
* @throws {RequiredError}
|
|
8117
8121
|
*/
|
|
8118
|
-
getKinematicCapabilities(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
8122
|
+
getKinematicCapabilities(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<KinematicServiceCapabilities, any>>;
|
|
8119
8123
|
}
|
|
8120
8124
|
/**
|
|
8121
8125
|
* ProgramApi - axios parameter creator
|
|
@@ -8357,7 +8361,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
8357
8361
|
* @param {*} [options] Override http request option.
|
|
8358
8362
|
* @throws {RequiredError}
|
|
8359
8363
|
*/
|
|
8360
|
-
createProgramRunner(cell: string, request: Request, options?: RawAxiosRequestConfig): Promise<
|
|
8364
|
+
createProgramRunner(cell: string, request: Request, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ProgramRunnerReference, any>>;
|
|
8361
8365
|
/**
|
|
8362
8366
|
* 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)
|
|
8363
8367
|
* @summary Execute Program
|
|
@@ -8366,7 +8370,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
8366
8370
|
* @param {*} [options] Override http request option.
|
|
8367
8371
|
* @throws {RequiredError}
|
|
8368
8372
|
*/
|
|
8369
|
-
executeProgram(cell: string, codeWithArguments: CodeWithArguments, options?: RawAxiosRequestConfig): Promise<
|
|
8373
|
+
executeProgram(cell: string, codeWithArguments: CodeWithArguments, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ProgramRun, any>>;
|
|
8370
8374
|
/**
|
|
8371
8375
|
* 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
|
|
8372
8376
|
* @summary Get Program Runner
|
|
@@ -8375,7 +8379,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
8375
8379
|
* @param {*} [options] Override http request option.
|
|
8376
8380
|
* @throws {RequiredError}
|
|
8377
8381
|
*/
|
|
8378
|
-
getProgramRunner(cell: string, runner: string, options?: RawAxiosRequestConfig): Promise<
|
|
8382
|
+
getProgramRunner(cell: string, runner: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ProgramRun, any>>;
|
|
8379
8383
|
/**
|
|
8380
8384
|
* Get details about all existing program runners.
|
|
8381
8385
|
* @summary List Program Runners
|
|
@@ -8383,7 +8387,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
8383
8387
|
* @param {*} [options] Override http request option.
|
|
8384
8388
|
* @throws {RequiredError}
|
|
8385
8389
|
*/
|
|
8386
|
-
listProgramRunners(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
8390
|
+
listProgramRunners(cell: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ProgramRunnerReference[], any>>;
|
|
8387
8391
|
/**
|
|
8388
8392
|
* Migrate a program ## Parameters See the **Schema** tab for information about the request body
|
|
8389
8393
|
* @summary Migrate Program
|
|
@@ -8392,7 +8396,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
8392
8396
|
* @param {*} [options] Override http request option.
|
|
8393
8397
|
* @throws {RequiredError}
|
|
8394
8398
|
*/
|
|
8395
|
-
migrateProgram(cell: string, request1: Request1, options?: RawAxiosRequestConfig): Promise<
|
|
8399
|
+
migrateProgram(cell: string, request1: Request1, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<string, any>>;
|
|
8396
8400
|
/**
|
|
8397
8401
|
* 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)
|
|
8398
8402
|
* @summary Plan Program
|
|
@@ -8402,7 +8406,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
8402
8406
|
* @param {*} [options] Override http request option.
|
|
8403
8407
|
* @throws {RequiredError}
|
|
8404
8408
|
*/
|
|
8405
|
-
planProgram(cell: string, request: Request, identifier?: string, options?: RawAxiosRequestConfig): Promise<
|
|
8409
|
+
planProgram(cell: string, request: Request, identifier?: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ProgramRun, any>>;
|
|
8406
8410
|
/**
|
|
8407
8411
|
* Stop all runners.
|
|
8408
8412
|
* @summary Stop All Program Runners
|
|
@@ -8410,7 +8414,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
8410
8414
|
* @param {*} [options] Override http request option.
|
|
8411
8415
|
* @throws {RequiredError}
|
|
8412
8416
|
*/
|
|
8413
|
-
stopAllProgramRunner(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
8417
|
+
stopAllProgramRunner(cell: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<any, any>>;
|
|
8414
8418
|
/**
|
|
8415
8419
|
* 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
|
|
8416
8420
|
* @summary Stop Program Runner
|
|
@@ -8419,7 +8423,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
8419
8423
|
* @param {*} [options] Override http request option.
|
|
8420
8424
|
* @throws {RequiredError}
|
|
8421
8425
|
*/
|
|
8422
|
-
stopProgramRunner(cell: string, runner: string, options?: RawAxiosRequestConfig): Promise<
|
|
8426
|
+
stopProgramRunner(cell: string, runner: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
|
|
8423
8427
|
}
|
|
8424
8428
|
/**
|
|
8425
8429
|
* ProgramOperatorApi - axios parameter creator
|
|
@@ -8664,7 +8668,7 @@ declare class ProgramOperatorApi extends BaseAPI {
|
|
|
8664
8668
|
* @param {*} [options] Override http request option.
|
|
8665
8669
|
* @throws {RequiredError}
|
|
8666
8670
|
*/
|
|
8667
|
-
createProgramRun(cell: string, createProgramRunRequest: CreateProgramRunRequest, options?: RawAxiosRequestConfig): Promise<
|
|
8671
|
+
createProgramRun(cell: string, createProgramRunRequest: CreateProgramRunRequest, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<CreateProgramRun200Response, any>>;
|
|
8668
8672
|
/**
|
|
8669
8673
|
* <!-- 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.
|
|
8670
8674
|
* @summary Create Trigger
|
|
@@ -8673,7 +8677,7 @@ declare class ProgramOperatorApi extends BaseAPI {
|
|
|
8673
8677
|
* @param {*} [options] Override http request option.
|
|
8674
8678
|
* @throws {RequiredError}
|
|
8675
8679
|
*/
|
|
8676
|
-
createTrigger(cell: string, createTriggerRequest: CreateTriggerRequest, options?: RawAxiosRequestConfig): Promise<
|
|
8680
|
+
createTrigger(cell: string, createTriggerRequest: CreateTriggerRequest, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<CreateTrigger200Response, any>>;
|
|
8677
8681
|
/**
|
|
8678
8682
|
* <!-- theme: danger --> > **Experimental** Delete an existing trigger.
|
|
8679
8683
|
* @summary Delete Trigger
|
|
@@ -8682,7 +8686,7 @@ declare class ProgramOperatorApi extends BaseAPI {
|
|
|
8682
8686
|
* @param {*} [options] Override http request option.
|
|
8683
8687
|
* @throws {RequiredError}
|
|
8684
8688
|
*/
|
|
8685
|
-
deleteTrigger(trigger: string, cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
8689
|
+
deleteTrigger(trigger: string, cell: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
|
|
8686
8690
|
/**
|
|
8687
8691
|
* <!-- theme: danger --> > **Experimental** Retrieves all program runs, including past and current executions. Use the optional `state` parameter to filter the results by their status.
|
|
8688
8692
|
* @summary Get All Program Runs
|
|
@@ -8691,7 +8695,7 @@ declare class ProgramOperatorApi extends BaseAPI {
|
|
|
8691
8695
|
* @param {*} [options] Override http request option.
|
|
8692
8696
|
* @throws {RequiredError}
|
|
8693
8697
|
*/
|
|
8694
|
-
getAllProgramRuns(cell: string, state?: string, options?: RawAxiosRequestConfig): Promise<
|
|
8698
|
+
getAllProgramRuns(cell: string, state?: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<GetAllProgramRuns200Response, any>>;
|
|
8695
8699
|
/**
|
|
8696
8700
|
* <!-- 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.
|
|
8697
8701
|
* @summary Get All Triggers
|
|
@@ -8699,7 +8703,7 @@ declare class ProgramOperatorApi extends BaseAPI {
|
|
|
8699
8703
|
* @param {*} [options] Override http request option.
|
|
8700
8704
|
* @throws {RequiredError}
|
|
8701
8705
|
*/
|
|
8702
|
-
getAllTriggers(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
8706
|
+
getAllTriggers(cell: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<GetAllTriggers200Response, any>>;
|
|
8703
8707
|
/**
|
|
8704
8708
|
* <!-- theme: danger --> > **Experimental** Retrieves detailed information about a specific program run.
|
|
8705
8709
|
* @summary Get Program Run
|
|
@@ -8708,7 +8712,7 @@ declare class ProgramOperatorApi extends BaseAPI {
|
|
|
8708
8712
|
* @param {*} [options] Override http request option.
|
|
8709
8713
|
* @throws {RequiredError}
|
|
8710
8714
|
*/
|
|
8711
|
-
getProgramRun(run: string, cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
8715
|
+
getProgramRun(run: string, cell: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ProgramRunObject, any>>;
|
|
8712
8716
|
/**
|
|
8713
8717
|
* <!-- theme: danger --> > **Experimental** Retrieves detailed information about a specific trigger.
|
|
8714
8718
|
* @summary Get Trigger
|
|
@@ -8717,7 +8721,7 @@ declare class ProgramOperatorApi extends BaseAPI {
|
|
|
8717
8721
|
* @param {*} [options] Override http request option.
|
|
8718
8722
|
* @throws {RequiredError}
|
|
8719
8723
|
*/
|
|
8720
|
-
getTrigger(trigger: string, cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
8724
|
+
getTrigger(trigger: string, cell: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<TriggerObject, any>>;
|
|
8721
8725
|
/**
|
|
8722
8726
|
* <!-- 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.
|
|
8723
8727
|
* @summary Update Trigger
|
|
@@ -8727,7 +8731,7 @@ declare class ProgramOperatorApi extends BaseAPI {
|
|
|
8727
8731
|
* @param {*} [options] Override http request option.
|
|
8728
8732
|
* @throws {RequiredError}
|
|
8729
8733
|
*/
|
|
8730
|
-
updateTrigger(trigger: string, cell: string, updateTriggerRequest: UpdateTriggerRequest, options?: RawAxiosRequestConfig): Promise<
|
|
8734
|
+
updateTrigger(trigger: string, cell: string, updateTriggerRequest: UpdateTriggerRequest, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<TriggerObject, any>>;
|
|
8731
8735
|
}
|
|
8732
8736
|
/**
|
|
8733
8737
|
* ProgramValuesApi - axios parameter creator
|
|
@@ -8943,7 +8947,7 @@ declare class ProgramValuesApi extends BaseAPI {
|
|
|
8943
8947
|
* @deprecated
|
|
8944
8948
|
* @throws {RequiredError}
|
|
8945
8949
|
*/
|
|
8946
|
-
clearProgramsValues(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
8950
|
+
clearProgramsValues(cell: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
|
|
8947
8951
|
/**
|
|
8948
8952
|
* 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)
|
|
8949
8953
|
* @summary Add Value(s)
|
|
@@ -8955,7 +8959,7 @@ declare class ProgramValuesApi extends BaseAPI {
|
|
|
8955
8959
|
*/
|
|
8956
8960
|
createProgramsValue(cell: string, requestBody: {
|
|
8957
8961
|
[key: string]: CollectionValue;
|
|
8958
|
-
}, options?: RawAxiosRequestConfig): Promise<
|
|
8962
|
+
}, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
|
|
8959
8963
|
/**
|
|
8960
8964
|
* Delete a value from the database.
|
|
8961
8965
|
* @summary Delete Value
|
|
@@ -8965,7 +8969,7 @@ declare class ProgramValuesApi extends BaseAPI {
|
|
|
8965
8969
|
* @deprecated
|
|
8966
8970
|
* @throws {RequiredError}
|
|
8967
8971
|
*/
|
|
8968
|
-
deleteProgramValue(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<
|
|
8972
|
+
deleteProgramValue(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
|
|
8969
8973
|
/**
|
|
8970
8974
|
* 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)
|
|
8971
8975
|
* @summary Get Value
|
|
@@ -8975,7 +8979,7 @@ declare class ProgramValuesApi extends BaseAPI {
|
|
|
8975
8979
|
* @deprecated
|
|
8976
8980
|
* @throws {RequiredError}
|
|
8977
8981
|
*/
|
|
8978
|
-
getProgramValue(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<
|
|
8982
|
+
getProgramValue(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ResponseGetValueProgramsValuesKeyGet, any>>;
|
|
8979
8983
|
/**
|
|
8980
8984
|
* 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)
|
|
8981
8985
|
* @summary Get Values
|
|
@@ -8984,7 +8988,7 @@ declare class ProgramValuesApi extends BaseAPI {
|
|
|
8984
8988
|
* @deprecated
|
|
8985
8989
|
* @throws {RequiredError}
|
|
8986
8990
|
*/
|
|
8987
|
-
listProgramsValues(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
8991
|
+
listProgramsValues(cell: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<{
|
|
8988
8992
|
[key: string]: ResponseGetValuesProgramsValuesGetValue;
|
|
8989
8993
|
}, any>>;
|
|
8990
8994
|
/**
|
|
@@ -8997,7 +9001,7 @@ declare class ProgramValuesApi extends BaseAPI {
|
|
|
8997
9001
|
* @deprecated
|
|
8998
9002
|
* @throws {RequiredError}
|
|
8999
9003
|
*/
|
|
9000
|
-
updateProgramValue(cell: string, key: string, value: Value, options?: RawAxiosRequestConfig): Promise<
|
|
9004
|
+
updateProgramValue(cell: string, key: string, value: Value, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
|
|
9001
9005
|
}
|
|
9002
9006
|
/**
|
|
9003
9007
|
* StoreCollisionComponentsApi - axios parameter creator
|
|
@@ -9432,7 +9436,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
9432
9436
|
* @param {*} [options] Override http request option.
|
|
9433
9437
|
* @throws {RequiredError}
|
|
9434
9438
|
*/
|
|
9435
|
-
deleteStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<
|
|
9439
|
+
deleteStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
|
|
9436
9440
|
/**
|
|
9437
9441
|
* Deletes the stored link chain. <!-- theme: danger --> > This will delete persistently stored data.
|
|
9438
9442
|
* @summary Delete Link Chain
|
|
@@ -9441,7 +9445,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
9441
9445
|
* @param {*} [options] Override http request option.
|
|
9442
9446
|
* @throws {RequiredError}
|
|
9443
9447
|
*/
|
|
9444
|
-
deleteStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<
|
|
9448
|
+
deleteStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
|
|
9445
9449
|
/**
|
|
9446
9450
|
* Deletes the stored tool. <!-- theme: danger --> > This will delete persistently stored data.
|
|
9447
9451
|
* @summary Delete Tool
|
|
@@ -9450,7 +9454,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
9450
9454
|
* @param {*} [options] Override http request option.
|
|
9451
9455
|
* @throws {RequiredError}
|
|
9452
9456
|
*/
|
|
9453
|
-
deleteStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<
|
|
9457
|
+
deleteStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
|
|
9454
9458
|
/**
|
|
9455
9459
|
* Deprecated endpoint. Use [getCollisionModel](https://portal.wandelbots.io/docs/api/v2/ui/#/operations/getMotionGroupCollisionModel) instead. Returns the default collision link chain for a given motion group model. See [getPlanningMotionGroupModels](getPlanningMotionGroupModels) for supported motion group models. The default link chain is derived from 3D models and optimized for collision detection within NOVA. The default link chain includes link shapes only. It does not include any attached components like wire feeders or sensors. Use the `stored_link_chain` or `link_chain` field in [storeCollisionScene](storeCollisionScene) to attach additional shapes to the link reference frames. Additional shapes may overlap each other per link and may also overlap the respective link\'s default shape.
|
|
9456
9460
|
* @summary Get Default Link Chain
|
|
@@ -9460,7 +9464,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
9460
9464
|
* @deprecated
|
|
9461
9465
|
* @throws {RequiredError}
|
|
9462
9466
|
*/
|
|
9463
|
-
getDefaultLinkChain(cell: string, motionGroupModel: GetDefaultLinkChainMotionGroupModelEnum, options?: RawAxiosRequestConfig): Promise<
|
|
9467
|
+
getDefaultLinkChain(cell: string, motionGroupModel: GetDefaultLinkChainMotionGroupModelEnum, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<{
|
|
9464
9468
|
[key: string]: Collider;
|
|
9465
9469
|
}[], any>>;
|
|
9466
9470
|
/**
|
|
@@ -9471,7 +9475,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
9471
9475
|
* @param {*} [options] Override http request option.
|
|
9472
9476
|
* @throws {RequiredError}
|
|
9473
9477
|
*/
|
|
9474
|
-
getStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<
|
|
9478
|
+
getStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<Collider, any>>;
|
|
9475
9479
|
/**
|
|
9476
9480
|
* Returns the collision link chain.
|
|
9477
9481
|
* @summary Get Link Chain
|
|
@@ -9480,7 +9484,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
9480
9484
|
* @param {*} [options] Override http request option.
|
|
9481
9485
|
* @throws {RequiredError}
|
|
9482
9486
|
*/
|
|
9483
|
-
getStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<
|
|
9487
|
+
getStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<{
|
|
9484
9488
|
[key: string]: Collider;
|
|
9485
9489
|
}[], any>>;
|
|
9486
9490
|
/**
|
|
@@ -9491,7 +9495,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
9491
9495
|
* @param {*} [options] Override http request option.
|
|
9492
9496
|
* @throws {RequiredError}
|
|
9493
9497
|
*/
|
|
9494
|
-
getStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<
|
|
9498
|
+
getStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<{
|
|
9495
9499
|
[key: string]: Collider;
|
|
9496
9500
|
}, any>>;
|
|
9497
9501
|
/**
|
|
@@ -9501,7 +9505,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
9501
9505
|
* @param {*} [options] Override http request option.
|
|
9502
9506
|
* @throws {RequiredError}
|
|
9503
9507
|
*/
|
|
9504
|
-
listCollisionLinkChains(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
9508
|
+
listCollisionLinkChains(cell: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<{
|
|
9505
9509
|
[key: string]: {
|
|
9506
9510
|
[key: string]: Collider;
|
|
9507
9511
|
}[];
|
|
@@ -9513,7 +9517,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
9513
9517
|
* @param {*} [options] Override http request option.
|
|
9514
9518
|
* @throws {RequiredError}
|
|
9515
9519
|
*/
|
|
9516
|
-
listStoredColliders(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
9520
|
+
listStoredColliders(cell: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<{
|
|
9517
9521
|
[key: string]: Collider;
|
|
9518
9522
|
}, any>>;
|
|
9519
9523
|
/**
|
|
@@ -9523,7 +9527,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
9523
9527
|
* @param {*} [options] Override http request option.
|
|
9524
9528
|
* @throws {RequiredError}
|
|
9525
9529
|
*/
|
|
9526
|
-
listStoredCollisionTools(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
9530
|
+
listStoredCollisionTools(cell: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<{
|
|
9527
9531
|
[key: string]: {
|
|
9528
9532
|
[key: string]: Collider;
|
|
9529
9533
|
};
|
|
@@ -9537,7 +9541,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
9537
9541
|
* @param {*} [options] Override http request option.
|
|
9538
9542
|
* @throws {RequiredError}
|
|
9539
9543
|
*/
|
|
9540
|
-
storeCollider(cell: string, collider: string, collider2: Collider, options?: RawAxiosRequestConfig): Promise<
|
|
9544
|
+
storeCollider(cell: string, collider: string, collider2: Collider, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<Collider, any>>;
|
|
9541
9545
|
/**
|
|
9542
9546
|
* Stores link chain. If the link chain does not exist, it will be created. If the link chain exists, it will be updated.
|
|
9543
9547
|
* @summary Store Link Chain
|
|
@@ -9549,7 +9553,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
9549
9553
|
*/
|
|
9550
9554
|
storeCollisionLinkChain(cell: string, linkChain: string, collider: Array<{
|
|
9551
9555
|
[key: string]: Collider;
|
|
9552
|
-
}>, options?: RawAxiosRequestConfig): Promise<
|
|
9556
|
+
}>, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<{
|
|
9553
9557
|
[key: string]: Collider;
|
|
9554
9558
|
}[], any>>;
|
|
9555
9559
|
/**
|
|
@@ -9563,7 +9567,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
9563
9567
|
*/
|
|
9564
9568
|
storeCollisionTool(cell: string, tool: string, requestBody: {
|
|
9565
9569
|
[key: string]: Collider;
|
|
9566
|
-
}, options?: RawAxiosRequestConfig): Promise<
|
|
9570
|
+
}, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<{
|
|
9567
9571
|
[key: string]: Collider;
|
|
9568
9572
|
}, any>>;
|
|
9569
9573
|
}
|
|
@@ -9595,6 +9599,7 @@ declare const GetDefaultLinkChainMotionGroupModelEnum: {
|
|
|
9595
9599
|
readonly Abb460025020: "ABB_4600_250_20";
|
|
9596
9600
|
readonly Abb460025540: "ABB_4600_255_40";
|
|
9597
9601
|
readonly Abb6730210310: "ABB_6730_210_310";
|
|
9602
|
+
readonly Abb6730240290: "ABB_6730_240_290";
|
|
9598
9603
|
readonly FanucArcMate100iD: "FANUC_ARC_Mate_100iD";
|
|
9599
9604
|
readonly FanucArcMate100iD10L: "FANUC_ARC_Mate_100iD10L";
|
|
9600
9605
|
readonly FanucArcMate100iD16S: "FANUC_ARC_Mate_100iD16S";
|
|
@@ -9642,6 +9647,7 @@ declare const GetDefaultLinkChainMotionGroupModelEnum: {
|
|
|
9642
9647
|
readonly KukaKr120R2700: "KUKA_KR120_R2700";
|
|
9643
9648
|
readonly KukaKr120R27002: "KUKA_KR120_R2700_2";
|
|
9644
9649
|
readonly KukaKr120R31002: "KUKA_KR120_R3100_2";
|
|
9650
|
+
readonly KukaKr120R39002K: "KUKA_KR120_R3900_2_K";
|
|
9645
9651
|
readonly KukaKr12R18102: "KUKA_KR12_R1810_2";
|
|
9646
9652
|
readonly KukaKr150R2: "KUKA_KR150_R2";
|
|
9647
9653
|
readonly KukaKr16R1610: "KUKA_KR16_R1610";
|
|
@@ -9659,6 +9665,7 @@ declare const GetDefaultLinkChainMotionGroupModelEnum: {
|
|
|
9659
9665
|
readonly KukaKr210R33002: "KUKA_KR210_R3300_2";
|
|
9660
9666
|
readonly KukaKr240R2700: "KUKA_KR240_R2700";
|
|
9661
9667
|
readonly KukaKr240R2900: "KUKA_KR240_R2900";
|
|
9668
|
+
readonly KukaKr240R37002: "KUKA_KR240_R3700_2";
|
|
9662
9669
|
readonly KukaKr250R27002: "KUKA_KR250_R2700_2";
|
|
9663
9670
|
readonly KukaKr270R2700: "KUKA_KR270_R2700";
|
|
9664
9671
|
readonly KukaKr270R3100: "KUKA_KR270_R3100";
|
|
@@ -9875,7 +9882,7 @@ declare class StoreCollisionScenesApi extends BaseAPI {
|
|
|
9875
9882
|
* @param {*} [options] Override http request option.
|
|
9876
9883
|
* @throws {RequiredError}
|
|
9877
9884
|
*/
|
|
9878
|
-
deleteStoredCollisionScene(cell: string, scene: string, options?: RawAxiosRequestConfig): Promise<
|
|
9885
|
+
deleteStoredCollisionScene(cell: string, scene: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
|
|
9879
9886
|
/**
|
|
9880
9887
|
* Returns the stored scene.
|
|
9881
9888
|
* @summary Get Scene
|
|
@@ -9884,7 +9891,7 @@ declare class StoreCollisionScenesApi extends BaseAPI {
|
|
|
9884
9891
|
* @param {*} [options] Override http request option.
|
|
9885
9892
|
* @throws {RequiredError}
|
|
9886
9893
|
*/
|
|
9887
|
-
getStoredCollisionScene(cell: string, scene: string, options?: RawAxiosRequestConfig): Promise<
|
|
9894
|
+
getStoredCollisionScene(cell: string, scene: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<CollisionScene, any>>;
|
|
9888
9895
|
/**
|
|
9889
9896
|
* Returns a list of stored scenes.
|
|
9890
9897
|
* @summary List Scenes
|
|
@@ -9892,7 +9899,7 @@ declare class StoreCollisionScenesApi extends BaseAPI {
|
|
|
9892
9899
|
* @param {*} [options] Override http request option.
|
|
9893
9900
|
* @throws {RequiredError}
|
|
9894
9901
|
*/
|
|
9895
|
-
listStoredCollisionScenes(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
9902
|
+
listStoredCollisionScenes(cell: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<{
|
|
9896
9903
|
[key: string]: CollisionScene;
|
|
9897
9904
|
}, any>>;
|
|
9898
9905
|
/**
|
|
@@ -9904,7 +9911,7 @@ declare class StoreCollisionScenesApi extends BaseAPI {
|
|
|
9904
9911
|
* @param {*} [options] Override http request option.
|
|
9905
9912
|
* @throws {RequiredError}
|
|
9906
9913
|
*/
|
|
9907
|
-
storeCollisionScene(cell: string, scene: string, collisionSceneAssembly: CollisionSceneAssembly, options?: RawAxiosRequestConfig): Promise<
|
|
9914
|
+
storeCollisionScene(cell: string, scene: string, collisionSceneAssembly: CollisionSceneAssembly, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<CollisionScene, any>>;
|
|
9908
9915
|
}
|
|
9909
9916
|
/**
|
|
9910
9917
|
* StoreObjectApi - axios parameter creator
|
|
@@ -10100,7 +10107,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
10100
10107
|
* @param {*} [options] Override http request option.
|
|
10101
10108
|
* @throws {RequiredError}
|
|
10102
10109
|
*/
|
|
10103
|
-
clearAllObjects(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
10110
|
+
clearAllObjects(cell: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
|
|
10104
10111
|
/**
|
|
10105
10112
|
* Delete an object <!-- theme: danger --> > This will delete persistently stored data.
|
|
10106
10113
|
* @summary Delete Object
|
|
@@ -10109,7 +10116,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
10109
10116
|
* @param {*} [options] Override http request option.
|
|
10110
10117
|
* @throws {RequiredError}
|
|
10111
10118
|
*/
|
|
10112
|
-
deleteObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<
|
|
10119
|
+
deleteObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
|
|
10113
10120
|
/**
|
|
10114
10121
|
* Get the object. This request returns the object and any metadata attached to it.
|
|
10115
10122
|
* @summary Get Object
|
|
@@ -10118,7 +10125,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
10118
10125
|
* @param {*} [options] Override http request option.
|
|
10119
10126
|
* @throws {RequiredError}
|
|
10120
10127
|
*/
|
|
10121
|
-
getObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<
|
|
10128
|
+
getObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<File, any>>;
|
|
10122
10129
|
/**
|
|
10123
10130
|
* Get object metadata. Objects can be large. Therefore this request only returns metadata without fetching the object\'s content.
|
|
10124
10131
|
* @summary Get Object Metadata
|
|
@@ -10127,7 +10134,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
10127
10134
|
* @param {*} [options] Override http request option.
|
|
10128
10135
|
* @throws {RequiredError}
|
|
10129
10136
|
*/
|
|
10130
|
-
getObjectMetadata(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<
|
|
10137
|
+
getObjectMetadata(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
|
|
10131
10138
|
/**
|
|
10132
10139
|
* List the keys for all objects.
|
|
10133
10140
|
* @summary List all Object Keys
|
|
@@ -10135,7 +10142,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
10135
10142
|
* @param {*} [options] Override http request option.
|
|
10136
10143
|
* @throws {RequiredError}
|
|
10137
10144
|
*/
|
|
10138
|
-
listAllObjectKeys(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
10145
|
+
listAllObjectKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<string[], any>>;
|
|
10139
10146
|
/**
|
|
10140
10147
|
* 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.
|
|
10141
10148
|
* @summary Store Object
|
|
@@ -10148,7 +10155,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
10148
10155
|
*/
|
|
10149
10156
|
storeObject(cell: string, key: string, xMetadata?: {
|
|
10150
10157
|
[key: string]: string;
|
|
10151
|
-
}, anyValue?: any, options?: RawAxiosRequestConfig): Promise<
|
|
10158
|
+
}, anyValue?: any, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
|
|
10152
10159
|
}
|
|
10153
10160
|
/**
|
|
10154
10161
|
* SystemApi - axios parameter creator
|
|
@@ -10287,28 +10294,28 @@ declare class SystemApi extends BaseAPI {
|
|
|
10287
10294
|
* @param {*} [options] Override http request option.
|
|
10288
10295
|
* @throws {RequiredError}
|
|
10289
10296
|
*/
|
|
10290
|
-
checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<
|
|
10297
|
+
checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<string, any>>;
|
|
10291
10298
|
/**
|
|
10292
10299
|
* 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.
|
|
10293
10300
|
* @summary Download Diagnosis Package
|
|
10294
10301
|
* @param {*} [options] Override http request option.
|
|
10295
10302
|
* @throws {RequiredError}
|
|
10296
10303
|
*/
|
|
10297
|
-
getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<
|
|
10304
|
+
getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<File, any>>;
|
|
10298
10305
|
/**
|
|
10299
10306
|
* Get the status of all system services.
|
|
10300
10307
|
* @summary Wandelbots NOVA status
|
|
10301
10308
|
* @param {*} [options] Override http request option.
|
|
10302
10309
|
* @throws {RequiredError}
|
|
10303
10310
|
*/
|
|
10304
|
-
getSystemStatus(options?: RawAxiosRequestConfig): Promise<
|
|
10311
|
+
getSystemStatus(options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ServiceStatus[], any>>;
|
|
10305
10312
|
/**
|
|
10306
10313
|
* Get the current Wandelbots NOVA version.
|
|
10307
10314
|
* @summary Wandelbots NOVA Version
|
|
10308
10315
|
* @param {*} [options] Override http request option.
|
|
10309
10316
|
* @throws {RequiredError}
|
|
10310
10317
|
*/
|
|
10311
|
-
getSystemVersion(options?: RawAxiosRequestConfig): Promise<
|
|
10318
|
+
getSystemVersion(options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<string, any>>;
|
|
10312
10319
|
/**
|
|
10313
10320
|
* 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.
|
|
10314
10321
|
* @summary Update Wandelbots NOVA version
|
|
@@ -10316,7 +10323,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
10316
10323
|
* @param {*} [options] Override http request option.
|
|
10317
10324
|
* @throws {RequiredError}
|
|
10318
10325
|
*/
|
|
10319
|
-
updateNovaVersion(updateNovaVersionRequest: UpdateNovaVersionRequest, options?: RawAxiosRequestConfig): Promise<
|
|
10326
|
+
updateNovaVersion(updateNovaVersionRequest: UpdateNovaVersionRequest, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
|
|
10320
10327
|
}
|
|
10321
10328
|
/**
|
|
10322
10329
|
* VersionApi - axios parameter creator
|
|
@@ -10364,7 +10371,7 @@ declare class VersionApi extends BaseAPI {
|
|
|
10364
10371
|
* @param {*} [options] Override http request option.
|
|
10365
10372
|
* @throws {RequiredError}
|
|
10366
10373
|
*/
|
|
10367
|
-
getApiVersion(options?: RawAxiosRequestConfig): Promise<
|
|
10374
|
+
getApiVersion(options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ApiVersion, any>>;
|
|
10368
10375
|
}
|
|
10369
10376
|
/**
|
|
10370
10377
|
* VirtualRobotApi - axios parameter creator
|
|
@@ -10580,7 +10587,7 @@ declare class VirtualRobotApi extends BaseAPI {
|
|
|
10580
10587
|
* @param {*} [options] Override http request option.
|
|
10581
10588
|
* @throws {RequiredError}
|
|
10582
10589
|
*/
|
|
10583
|
-
getMotionGroupState(cell: string, controller: string, id: number, options?: RawAxiosRequestConfig): Promise<
|
|
10590
|
+
getMotionGroupState(cell: string, controller: string, id: number, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<MotionGroupJoints, any>>;
|
|
10584
10591
|
/**
|
|
10585
10592
|
* Gets information on the motion group.
|
|
10586
10593
|
* @summary Motion Group Description
|
|
@@ -10589,7 +10596,7 @@ declare class VirtualRobotApi extends BaseAPI {
|
|
|
10589
10596
|
* @param {*} [options] Override http request option.
|
|
10590
10597
|
* @throws {RequiredError}
|
|
10591
10598
|
*/
|
|
10592
|
-
getMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
10599
|
+
getMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<MotionGroupInfos, any>>;
|
|
10593
10600
|
/**
|
|
10594
10601
|
* Gets the description and value of a virtual controller I/O.
|
|
10595
10602
|
* @summary Get I/O
|
|
@@ -10599,7 +10606,7 @@ declare class VirtualRobotApi extends BaseAPI {
|
|
|
10599
10606
|
* @param {*} [options] Override http request option.
|
|
10600
10607
|
* @throws {RequiredError}
|
|
10601
10608
|
*/
|
|
10602
|
-
getVirtualRobotIOValue(cell: string, controller: string, io: string, options?: RawAxiosRequestConfig): Promise<
|
|
10609
|
+
getVirtualRobotIOValue(cell: string, controller: string, io: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<IO, any>>;
|
|
10603
10610
|
/**
|
|
10604
10611
|
* 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.
|
|
10605
10612
|
* @summary List Inputs/Outputs
|
|
@@ -10608,7 +10615,7 @@ declare class VirtualRobotApi extends BaseAPI {
|
|
|
10608
10615
|
* @param {*} [options] Override http request option.
|
|
10609
10616
|
* @throws {RequiredError}
|
|
10610
10617
|
*/
|
|
10611
|
-
listIOs(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
10618
|
+
listIOs(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<IOs, any>>;
|
|
10612
10619
|
/**
|
|
10613
10620
|
* 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.
|
|
10614
10621
|
* @summary Set Motion Group State
|
|
@@ -10619,7 +10626,7 @@ declare class VirtualRobotApi extends BaseAPI {
|
|
|
10619
10626
|
* @param {*} [options] Override http request option.
|
|
10620
10627
|
* @throws {RequiredError}
|
|
10621
10628
|
*/
|
|
10622
|
-
setMotionGroupState(cell: string, controller: string, id: number, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): Promise<
|
|
10629
|
+
setMotionGroupState(cell: string, controller: string, id: number, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<object, any>>;
|
|
10623
10630
|
/**
|
|
10624
10631
|
* Sets the value of a virtual controller I/O.
|
|
10625
10632
|
* @summary Set I/O
|
|
@@ -10632,7 +10639,7 @@ declare class VirtualRobotApi extends BaseAPI {
|
|
|
10632
10639
|
* @param {*} [options] Override http request option.
|
|
10633
10640
|
* @throws {RequiredError}
|
|
10634
10641
|
*/
|
|
10635
|
-
setVirtualRobotIOValue(cell: string, controller: string, io: string, bool?: boolean, integer?: string, _double?: number, options?: RawAxiosRequestConfig): Promise<
|
|
10642
|
+
setVirtualRobotIOValue(cell: string, controller: string, io: string, bool?: boolean, integer?: string, _double?: number, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<object, any>>;
|
|
10636
10643
|
}
|
|
10637
10644
|
/**
|
|
10638
10645
|
* VirtualRobotBehaviorApi - axios parameter creator
|
|
@@ -10755,7 +10762,7 @@ declare class VirtualRobotBehaviorApi extends BaseAPI {
|
|
|
10755
10762
|
* @param {*} [options] Override http request option.
|
|
10756
10763
|
* @throws {RequiredError}
|
|
10757
10764
|
*/
|
|
10758
|
-
externalJointsStream(cell: string, controller: string, externalJointStreamDatapoint: ExternalJointStreamDatapoint, options?: RawAxiosRequestConfig): Promise<
|
|
10765
|
+
externalJointsStream(cell: string, controller: string, externalJointStreamDatapoint: ExternalJointStreamDatapoint, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<MotionGroupJoints, any>>;
|
|
10759
10766
|
/**
|
|
10760
10767
|
* Get the current robot motion group behavior - please see the setter [setMotionGroupBehavior](setMotionGroupBehavior) and the enum for details.
|
|
10761
10768
|
* @summary Behavior
|
|
@@ -10765,7 +10772,7 @@ declare class VirtualRobotBehaviorApi extends BaseAPI {
|
|
|
10765
10772
|
* @param {*} [options] Override http request option.
|
|
10766
10773
|
* @throws {RequiredError}
|
|
10767
10774
|
*/
|
|
10768
|
-
getMotionGroupBehavior(cell: string, controller: string, id: number, options?: RawAxiosRequestConfig): Promise<
|
|
10775
|
+
getMotionGroupBehavior(cell: string, controller: string, id: number, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<MotionGroupBehaviorGetter, any>>;
|
|
10769
10776
|
/**
|
|
10770
10777
|
* Switch robot motion group behavior.
|
|
10771
10778
|
* @summary Switch Behavior
|
|
@@ -10776,7 +10783,7 @@ declare class VirtualRobotBehaviorApi extends BaseAPI {
|
|
|
10776
10783
|
* @param {*} [options] Override http request option.
|
|
10777
10784
|
* @throws {RequiredError}
|
|
10778
10785
|
*/
|
|
10779
|
-
setMotionGroupBehavior(cell: string, controller: string, id: number, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<
|
|
10786
|
+
setMotionGroupBehavior(cell: string, controller: string, id: number, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<object, any>>;
|
|
10780
10787
|
}
|
|
10781
10788
|
/**
|
|
10782
10789
|
* VirtualRobotModeApi - axios parameter creator
|
|
@@ -10970,7 +10977,7 @@ declare class VirtualRobotModeApi extends BaseAPI {
|
|
|
10970
10977
|
* @param {*} [options] Override http request option.
|
|
10971
10978
|
* @throws {RequiredError}
|
|
10972
10979
|
*/
|
|
10973
|
-
getCycleTime(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
10980
|
+
getCycleTime(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<CycleTime, any>>;
|
|
10974
10981
|
/**
|
|
10975
10982
|
* 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.
|
|
10976
10983
|
* @summary Get E-Stop State
|
|
@@ -10979,7 +10986,7 @@ declare class VirtualRobotModeApi extends BaseAPI {
|
|
|
10979
10986
|
* @param {*} [options] Override http request option.
|
|
10980
10987
|
* @throws {RequiredError}
|
|
10981
10988
|
*/
|
|
10982
|
-
getEStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
10989
|
+
getEStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<Flag, any>>;
|
|
10983
10990
|
/**
|
|
10984
10991
|
* 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.
|
|
10985
10992
|
* @summary Get Operation Mode
|
|
@@ -10988,7 +10995,7 @@ declare class VirtualRobotModeApi extends BaseAPI {
|
|
|
10988
10995
|
* @param {*} [options] Override http request option.
|
|
10989
10996
|
* @throws {RequiredError}
|
|
10990
10997
|
*/
|
|
10991
|
-
getOperationMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
10998
|
+
getOperationMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<OpMode, any>>;
|
|
10992
10999
|
/**
|
|
10993
11000
|
* 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.
|
|
10994
11001
|
* @summary Push E-Stop
|
|
@@ -10997,7 +11004,7 @@ declare class VirtualRobotModeApi extends BaseAPI {
|
|
|
10997
11004
|
* @param {*} [options] Override http request option.
|
|
10998
11005
|
* @throws {RequiredError}
|
|
10999
11006
|
*/
|
|
11000
|
-
pushEStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
11007
|
+
pushEStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<object, any>>;
|
|
11001
11008
|
/**
|
|
11002
11009
|
* 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.
|
|
11003
11010
|
* @summary Release E-Stop
|
|
@@ -11006,7 +11013,7 @@ declare class VirtualRobotModeApi extends BaseAPI {
|
|
|
11006
11013
|
* @param {*} [options] Override http request option.
|
|
11007
11014
|
* @throws {RequiredError}
|
|
11008
11015
|
*/
|
|
11009
|
-
releaseEStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
11016
|
+
releaseEStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<object, any>>;
|
|
11010
11017
|
/**
|
|
11011
11018
|
* 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.
|
|
11012
11019
|
* @summary Set Operation Mode
|
|
@@ -11016,7 +11023,7 @@ declare class VirtualRobotModeApi extends BaseAPI {
|
|
|
11016
11023
|
* @param {*} [options] Override http request option.
|
|
11017
11024
|
* @throws {RequiredError}
|
|
11018
11025
|
*/
|
|
11019
|
-
setOperationMode(cell: string, controller: string, mode: SetOperationModeModeEnum, options?: RawAxiosRequestConfig): Promise<
|
|
11026
|
+
setOperationMode(cell: string, controller: string, mode: SetOperationModeModeEnum, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<object, any>>;
|
|
11020
11027
|
}
|
|
11021
11028
|
declare const SetOperationModeModeEnum: {
|
|
11022
11029
|
readonly OperationModeManual: "OPERATION_MODE_MANUAL";
|
|
@@ -11300,7 +11307,7 @@ declare class VirtualRobotSetupApi extends BaseAPI {
|
|
|
11300
11307
|
* @param {*} [options] Override http request option.
|
|
11301
11308
|
* @throws {RequiredError}
|
|
11302
11309
|
*/
|
|
11303
|
-
addVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<
|
|
11310
|
+
addVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<object, any>>;
|
|
11304
11311
|
/**
|
|
11305
11312
|
* 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.
|
|
11306
11313
|
* @summary Add TCP
|
|
@@ -11311,7 +11318,7 @@ declare class VirtualRobotSetupApi extends BaseAPI {
|
|
|
11311
11318
|
* @param {*} [options] Override http request option.
|
|
11312
11319
|
* @throws {RequiredError}
|
|
11313
11320
|
*/
|
|
11314
|
-
addVirtualRobotTcp(cell: string, controller: string, id: number, robotTcp: RobotTcp, options?: RawAxiosRequestConfig): Promise<
|
|
11321
|
+
addVirtualRobotTcp(cell: string, controller: string, id: number, robotTcp: RobotTcp, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<object, any>>;
|
|
11315
11322
|
/**
|
|
11316
11323
|
* 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.
|
|
11317
11324
|
* @summary Remove Coordinate System
|
|
@@ -11322,7 +11329,7 @@ declare class VirtualRobotSetupApi extends BaseAPI {
|
|
|
11322
11329
|
* @param {*} [options] Override http request option.
|
|
11323
11330
|
* @throws {RequiredError}
|
|
11324
11331
|
*/
|
|
11325
|
-
deleteVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<
|
|
11332
|
+
deleteVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<object, any>>;
|
|
11326
11333
|
/**
|
|
11327
11334
|
* 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.
|
|
11328
11335
|
* @summary Remove TCP
|
|
@@ -11333,7 +11340,7 @@ declare class VirtualRobotSetupApi extends BaseAPI {
|
|
|
11333
11340
|
* @param {*} [options] Override http request option.
|
|
11334
11341
|
* @throws {RequiredError}
|
|
11335
11342
|
*/
|
|
11336
|
-
deleteVirtualRobotTcp(cell: string, controller: string, id: number, tcp: string, options?: RawAxiosRequestConfig): Promise<
|
|
11343
|
+
deleteVirtualRobotTcp(cell: string, controller: string, id: number, tcp: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<object, any>>;
|
|
11337
11344
|
/**
|
|
11338
11345
|
* Gets motion group mounting. The motion group is based on the origin of the returned coordinate system.
|
|
11339
11346
|
* @summary Get Mounting
|
|
@@ -11343,7 +11350,7 @@ declare class VirtualRobotSetupApi extends BaseAPI {
|
|
|
11343
11350
|
* @param {*} [options] Override http request option.
|
|
11344
11351
|
* @throws {RequiredError}
|
|
11345
11352
|
*/
|
|
11346
|
-
getVirtualRobotMounting(cell: string, controller: string, id: number, options?: RawAxiosRequestConfig): Promise<
|
|
11353
|
+
getVirtualRobotMounting(cell: string, controller: string, id: number, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<CoordinateSystem, any>>;
|
|
11347
11354
|
/**
|
|
11348
11355
|
* Lists all coordinate systems on the robot controller.
|
|
11349
11356
|
* @summary List Coordinate Systems
|
|
@@ -11352,7 +11359,7 @@ declare class VirtualRobotSetupApi extends BaseAPI {
|
|
|
11352
11359
|
* @param {*} [options] Override http request option.
|
|
11353
11360
|
* @throws {RequiredError}
|
|
11354
11361
|
*/
|
|
11355
|
-
listVirtualRobotCoordinateSystems(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
11362
|
+
listVirtualRobotCoordinateSystems(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<CoordinateSystems, any>>;
|
|
11356
11363
|
/**
|
|
11357
11364
|
* Lists TCPs of the motion group. An empty TCP list is valid, for example for external axes.
|
|
11358
11365
|
* @summary List TCPs
|
|
@@ -11362,7 +11369,7 @@ declare class VirtualRobotSetupApi extends BaseAPI {
|
|
|
11362
11369
|
* @param {*} [options] Override http request option.
|
|
11363
11370
|
* @throws {RequiredError}
|
|
11364
11371
|
*/
|
|
11365
|
-
listVirtualRobotTcps(cell: string, controller: string, id: number, options?: RawAxiosRequestConfig): Promise<
|
|
11372
|
+
listVirtualRobotTcps(cell: string, controller: string, id: number, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<RobotTcps, any>>;
|
|
11366
11373
|
/**
|
|
11367
11374
|
* 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.
|
|
11368
11375
|
* @summary Set Mounting
|
|
@@ -11373,7 +11380,7 @@ declare class VirtualRobotSetupApi extends BaseAPI {
|
|
|
11373
11380
|
* @param {*} [options] Override http request option.
|
|
11374
11381
|
* @throws {RequiredError}
|
|
11375
11382
|
*/
|
|
11376
|
-
setVirtualRobotMounting(cell: string, controller: string, id: number, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<
|
|
11383
|
+
setVirtualRobotMounting(cell: string, controller: string, id: number, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<CoordinateSystem, any>>;
|
|
11377
11384
|
}
|
|
11378
11385
|
//#endregion
|
|
11379
11386
|
export { AbbController, AbbControllerEgmServer, AbbControllerKindEnum, ActivateLicenseRequest, AddRequest, AllJointPositionsRequest, AllJointPositionsResponse, ApiVersion, App, ApplicationApi, ApplicationApiAxiosParamCreator, ApplicationApiFactory, ApplicationApiFp, ArrayInput, ArrayOutput, BASE_PATH, BaseAPI, Behavior, BlendingAuto, BlendingAutoBlendingNameEnum, BlendingPosition, BlendingPositionBlendingNameEnum, Box, Box2, Box2BoxTypeEnum, Box2ShapeTypeEnum, Box3, Box3ShapeTypeEnum, Box3TypeEnum, BoxTypeEnum, COLLECTION_FORMATS, Capsule, Capsule2, Capsule2ShapeTypeEnum, Capsule3, Capsule3ShapeTypeEnum, Capture, Cell, CellApi, CellApiAxiosParamCreator, CellApiFactory, CellApiFp, Circle, CodeWithArguments, CollectionValue, Collider, ColliderInput, ColliderOutput, ColliderOutputShape, ColliderShape, Collision, CollisionContact, CollisionMotionGroup, CollisionMotionGroupAssembly, CollisionRobotConfigurationInput, CollisionRobotConfigurationOutput, CollisionScene, CollisionSceneAssembly, Command, CommandSettings, Comparator, Compound, Configuration, ConfigurationParameters, ContainerEnvironmentInner, ContainerImage, ContainerImageSecretsInner, ContainerResources, ContainerStorage, ControllerApi, ControllerApiAxiosParamCreator, ControllerApiFactory, ControllerApiFp, ControllerCapabilities, ControllerIOsApi, ControllerIOsApiAxiosParamCreator, ControllerIOsApiFactory, ControllerIOsApiFp, ControllerInstance, ControllerInstanceList, ConvexHull, ConvexHull2, ConvexHull2ShapeTypeEnum, ConvexHull3, ConvexHull3ShapeTypeEnum, CoordinateSystem, CoordinateSystems, CoordinateSystemsApi, CoordinateSystemsApiAxiosParamCreator, CoordinateSystemsApiFactory, CoordinateSystemsApiFp, CreateDeviceRequestInner, CreateProgramRun200Response, CreateProgramRunRequest, CreateTrigger200Response, CreateTriggerRequest, CubicSpline, CubicSplineCubicSplineParameter, CubicSplineParameter, CycleTime, Cylinder, Cylinder2, Cylinder2ShapeTypeEnum, Cylinder3, Cylinder3ShapeTypeEnum, DHParameter, DeviceConfigurationApi, DeviceConfigurationApiAxiosParamCreator, DeviceConfigurationApiFactory, DeviceConfigurationApiFp, Direction, DirectionJoggingRequest, ExecuteTrajectoryRequest, ExecuteTrajectoryResponse, ExecutionResult, ExternalJointStreamDatapoint, ExternalJointStreamDatapointValue, FanucController, FanucControllerKindEnum, FeedbackCollision, FeedbackCollisionErrorFeedbackNameEnum, FeedbackJointLimitExceeded, FeedbackJointLimitExceededErrorFeedbackNameEnum, FeedbackOutOfWorkspace, FeedbackOutOfWorkspaceErrorFeedbackNameEnum, FeedbackSingularity, FeedbackSingularityErrorFeedbackNameEnum, Flag, ForceVector, Geometry, GetAllProgramRuns200Response, GetAllTriggers200Response, GetDefaultLinkChainMotionGroupModelEnum, GetModeResponse, GetTrajectoryResponse, GetTrajectorySampleResponse, GoogleProtobufAny, HTTPExceptionResponse, HTTPValidationError, HTTPValidationError2, IO, IODescription, IODescriptionTypeEnum, IODescriptionUnitEnum, IODescriptionValueTypeEnum, IODirectionEnum, IOValue, IOs, ImageCredentials, InfoServiceCapabilities, InitializeMovementRequest, InitializeMovementResponse, InitializeMovementResponseInitResponse, JoggingResponse, JoggingResponseMovementStateEnum, JoggingServiceCapabilities, JointJoggingRequest, JointLimit, JointLimitExceeded, JointLimitJointEnum, JointPositionRequest, JointTrajectory, Joints, KinematicServiceCapabilities, KukaController, KukaControllerKindEnum, KukaControllerRsiServer, LibraryProgramApi, LibraryProgramApiAxiosParamCreator, LibraryProgramApiFactory, LibraryProgramApiFp, LibraryProgramMetadataApi, LibraryProgramMetadataApiAxiosParamCreator, LibraryProgramMetadataApiFactory, LibraryProgramMetadataApiFp, LibraryRecipeApi, LibraryRecipeApiAxiosParamCreator, LibraryRecipeApiFactory, LibraryRecipeApiFp, LibraryRecipeMetadataApi, LibraryRecipeMetadataApiAxiosParamCreator, LibraryRecipeMetadataApiFactory, LibraryRecipeMetadataApiFp, License, LicenseApi, LicenseApiAxiosParamCreator, LicenseApiFactory, LicenseApiFp, LicenseStatus, LicenseStatusEnum, LimitSettings, LimitsOverride, ListDevices200ResponseInner, ListIODescriptionsResponse, ListIOValuesResponse, ListPayloadsResponse, ListProgramMetadataResponse, ListRecipeMetadataResponse, ListResponse, ListTcpsResponse, Manufacturer, ModeChangeResponse, ModelError, MotionApi, MotionApiAxiosParamCreator, MotionApiFactory, MotionApiFp, MotionCommand, MotionCommandBlending, MotionCommandPath, MotionGroupApi, MotionGroupApiAxiosParamCreator, MotionGroupApiFactory, MotionGroupApiFp, MotionGroupBehaviorGetter, MotionGroupInfo, MotionGroupInfos, MotionGroupInfosApi, MotionGroupInfosApiAxiosParamCreator, MotionGroupInfosApiFactory, MotionGroupInfosApiFp, MotionGroupInstance, MotionGroupInstanceList, MotionGroupJoggingApi, MotionGroupJoggingApiAxiosParamCreator, MotionGroupJoggingApiFactory, MotionGroupJoggingApiFp, MotionGroupJoints, MotionGroupKinematicApi, MotionGroupKinematicApiAxiosParamCreator, MotionGroupKinematicApiFactory, MotionGroupKinematicApiFp, MotionGroupPhysical, MotionGroupSpecification, MotionGroupState, MotionGroupStateJointLimitReached, MotionGroupStateResponse, MotionId, MotionIdsListResponse, MotionVector, Mounting, MoveRequest, MoveResponse, MoveToTrajectoryViaJointPTPRequest, Movement, MovementError, MovementErrorError, MovementMovement, OpMode, OpModeModeEnum, OpcuaNodeValueTriggerConfig, OpcuaNodeValueTriggerConfigNodeValue, OptimizerSetup, OutOfWorkspace, Path, PathCartesianPTP, PathCartesianPTPPathDefinitionNameEnum, PathCircle, PathCirclePathDefinitionNameEnum, PathCubicSpline, PathCubicSplinePathDefinitionNameEnum, PathJointPTP, PathJointPTPPathDefinitionNameEnum, PathLine, PathLinePathDefinitionNameEnum, PauseMovementRequest, PauseMovementResponse, PauseMovementResponsePauseResponse, PauseOnIO, Payload, PlanCollisionFreePTPRequest, PlanCollisionFreePTPRequestTarget, PlanFailedOnTrajectoryResponse, PlanFailedResponse, PlanRequest, PlanResponse, PlanSuccessfulResponse, PlanTrajectoryFailedResponse, PlanTrajectoryFailedResponseErrorFeedback, PlanTrajectoryRequest, PlanTrajectoryResponse, PlanTrajectoryResponseResponse, Plane2, Plane2ShapeTypeEnum, Plane3, Plane3ShapeTypeEnum, PlannedMotion, PlannerPose, PlanningLimits, PlanningLimitsLimitRange, PlaybackSpeedRequest, PlaybackSpeedResponse, PlaybackSpeedResponsePlaybackSpeedResponse, PointCloud, Pose, Pose2, ProgramApi, ProgramApiAxiosParamCreator, ProgramApiFactory, ProgramApiFp, ProgramMetadata, ProgramOperatorApi, ProgramOperatorApiAxiosParamCreator, ProgramOperatorApiFactory, ProgramOperatorApiFp, ProgramRun, ProgramRunObject, ProgramRunState, ProgramRunnerReference, ProgramValuesApi, ProgramValuesApiAxiosParamCreator, ProgramValuesApiFactory, ProgramValuesApiFp, PyjectoryDatatypesCorePose, PyjectoryDatatypesSerializerOrientation, PyjectoryDatatypesSerializerPose, PyjectoryDatatypesSerializerPosition, PyripheryEtcdETCDConfiguration, PyripheryHardwareIsaacIsaacConfiguration, PyripheryOpcuaOPCUAConfiguration, PyripheryPyraeControllerControllerConfiguration, PyripheryPyraeRobotRobotConfiguration, PyripheryPyraeRobotRobotConfigurationTypeEnum, PyripheryRoboticsConfigurableCollisionSceneConfigurableCollisionSceneConfigurationInput, PyripheryRoboticsConfigurableCollisionSceneConfigurableCollisionSceneConfigurationOutput, PyripheryRoboticsRobotcellTimerConfiguration, PyripheryRoboticsRobotcellTimerConfigurationTypeEnum, PyripheryRoboticsSimulationRobotWithViewOpen3dConfiguration, PyripheryRoboticsSimulationSimulatedIOConfiguration, PyripheryRoboticsSimulationSimulatedOPCUAConfiguration, Quaternion, RecipeMetadata, Rectangle, Rectangle2, Rectangle2ShapeTypeEnum, Rectangle3, Rectangle3ShapeTypeEnum, RectangularCapsule, RectangularCapsule2, RectangularCapsule2ShapeTypeEnum, RectangularCapsule3, RectangularCapsule3ShapeTypeEnum, ReleaseChannel, Request, Request1, RequestArgs, RequiredError, ResponseGetValueProgramsValuesKeyGet, ResponseGetValuesProgramsValuesGetValue, RobotController, RobotControllerConfiguration, RobotControllerState, RobotControllerStateOperationModeEnum, RobotControllerStateSafetyStateEnum, RobotLinkGeometry, RobotState, RobotSystemMode, RobotTcp, RobotTcps, RotationAngleTypes, RotationAngles, SafetyConfiguration, SafetySetup, SafetySetupSafetySettings, SafetySetupSafetySettingsSafetyStateEnum, SafetySetupSafetyZone, SafetyZone, SafetyZoneLimits, SafetyZoneViolation, ServiceStatus, ServiceStatusPhase, ServiceStatusSeverity, ServiceStatusStatus, SetDefaultModeModeEnum, SetIO, SetOperationModeModeEnum, SetPlaybackSpeed, SingleJointLimit, SingleJointLimitJointEnum, Singularity, SingularitySingularityTypeEnum, SingularityTypeEnum, Sphere, Sphere2, Sphere2ShapeTypeEnum, Sphere3, Sphere3ShapeTypeEnum, Standstill, StandstillReason, StandstillStandstill, StartMovementRequest, StartOnIO, Status, StopResponse, StopResponseStopCodeEnum, StoreCollisionComponentsApi, StoreCollisionComponentsApiAxiosParamCreator, StoreCollisionComponentsApiFactory, StoreCollisionComponentsApiFp, StoreCollisionScenesApi, StoreCollisionScenesApiAxiosParamCreator, StoreCollisionScenesApiFactory, StoreCollisionScenesApiFp, StoreObjectApi, StoreObjectApiAxiosParamCreator, StoreObjectApiFactory, StoreObjectApiFp, StoreValue, StreamMoveBackward, StreamMoveForward, StreamMovePlaybackSpeed, StreamMoveRequest, StreamMoveResponse, StreamMoveToTrajectory, StreamStop, SystemApi, SystemApiAxiosParamCreator, SystemApiFactory, SystemApiFp, TcpPose, TcpPoseRequest, ToolGeometry, TrajectorySample, TriggerObject, TriggerType, UniversalrobotsController, UniversalrobotsControllerKindEnum, UpdateNovaVersionRequest, UpdateProgramMetadataRequest, UpdateRecipeMetadataRequest, UpdateTriggerRequest, ValidationError, ValidationError2, ValidationError2LocInner, ValidationErrorLocInner, Value, Vector3d, VersionApi, VersionApiAxiosParamCreator, VersionApiFactory, VersionApiFp, VersionNumber, VirtualController, VirtualControllerKindEnum, VirtualControllerTypes, VirtualRobotApi, VirtualRobotApiAxiosParamCreator, VirtualRobotApiFactory, VirtualRobotApiFp, VirtualRobotBehaviorApi, VirtualRobotBehaviorApiAxiosParamCreator, VirtualRobotBehaviorApiFactory, VirtualRobotBehaviorApiFp, VirtualRobotConfiguration, VirtualRobotModeApi, VirtualRobotModeApiAxiosParamCreator, VirtualRobotModeApiFactory, VirtualRobotModeApiFp, VirtualRobotSetupApi, VirtualRobotSetupApiAxiosParamCreator, VirtualRobotSetupApiFactory, VirtualRobotSetupApiFp, WaitForIOEventComparisonTypeEnum, YaskawaController, YaskawaControllerKindEnum, operationServerMap };
|