@wandelbots/nova-api 25.10.0-dev.67 → 25.10.0-dev.68

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.
@@ -1,4 +1,4 @@
1
- import * as axios129 from "axios";
1
+ import * as axios0 from "axios";
2
2
  import { AxiosInstance, AxiosPromise, RawAxiosRequestConfig } from "axios";
3
3
 
4
4
  //#region v1/configuration.d.ts
@@ -4065,7 +4065,7 @@ declare class ApplicationApi extends BaseAPI {
4065
4065
  * @param {*} [options] Override http request option.
4066
4066
  * @throws {RequiredError}
4067
4067
  */
4068
- addApp(cell: string, app: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
4068
+ addApp(cell: string, app: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4069
4069
  /**
4070
4070
  * Delete all GUI applications from the cell.
4071
4071
  * @summary Clear Applications
@@ -4074,7 +4074,7 @@ declare class ApplicationApi extends BaseAPI {
4074
4074
  * @param {*} [options] Override http request option.
4075
4075
  * @throws {RequiredError}
4076
4076
  */
4077
- clearApps(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
4077
+ clearApps(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4078
4078
  /**
4079
4079
  * Delete a GUI application from the cell.
4080
4080
  * @summary Delete Application
@@ -4084,7 +4084,7 @@ declare class ApplicationApi extends BaseAPI {
4084
4084
  * @param {*} [options] Override http request option.
4085
4085
  * @throws {RequiredError}
4086
4086
  */
4087
- deleteApp(cell: string, app: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
4087
+ deleteApp(cell: string, app: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4088
4088
  /**
4089
4089
  * 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
4090
  * @summary Configuration
@@ -4093,7 +4093,7 @@ declare class ApplicationApi extends BaseAPI {
4093
4093
  * @param {*} [options] Override http request option.
4094
4094
  * @throws {RequiredError}
4095
4095
  */
4096
- getApp(cell: string, app: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<App, any>>;
4096
+ getApp(cell: string, app: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<App, any>>;
4097
4097
  /**
4098
4098
  * 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
4099
  * @summary List Applications
@@ -4101,7 +4101,7 @@ declare class ApplicationApi extends BaseAPI {
4101
4101
  * @param {*} [options] Override http request option.
4102
4102
  * @throws {RequiredError}
4103
4103
  */
4104
- listApps(cell: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<string[], any>>;
4104
+ listApps(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
4105
4105
  /**
4106
4106
  * Update the configuration of a GUI application in the cell.
4107
4107
  * @summary Update Configuration
@@ -4112,7 +4112,7 @@ declare class ApplicationApi extends BaseAPI {
4112
4112
  * @param {*} [options] Override http request option.
4113
4113
  * @throws {RequiredError}
4114
4114
  */
4115
- updateApp(cell: string, app: string, app2: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
4115
+ updateApp(cell: string, app: string, app2: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4116
4116
  }
4117
4117
  /**
4118
4118
  * CellApi - axios parameter creator
@@ -4294,7 +4294,7 @@ declare class CellApi extends BaseAPI {
4294
4294
  * @param {*} [options] Override http request option.
4295
4295
  * @throws {RequiredError}
4296
4296
  */
4297
- deleteCell(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
4297
+ deleteCell(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4298
4298
  /**
4299
4299
  * 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
4300
  * @summary Add Cell
@@ -4303,7 +4303,7 @@ declare class CellApi extends BaseAPI {
4303
4303
  * @param {*} [options] Override http request option.
4304
4304
  * @throws {RequiredError}
4305
4305
  */
4306
- deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
4306
+ deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4307
4307
  /**
4308
4308
  * 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
4309
  * @summary Configuration
@@ -4311,7 +4311,7 @@ declare class CellApi extends BaseAPI {
4311
4311
  * @param {*} [options] Override http request option.
4312
4312
  * @throws {RequiredError}
4313
4313
  */
4314
- getCell(cell: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<Cell, any>>;
4314
+ getCell(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Cell, any>>;
4315
4315
  /**
4316
4316
  * List the status of all cell resources.
4317
4317
  * @summary Service Status
@@ -4319,14 +4319,14 @@ declare class CellApi extends BaseAPI {
4319
4319
  * @param {*} [options] Override http request option.
4320
4320
  * @throws {RequiredError}
4321
4321
  */
4322
- getCellStatus(cell: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ServiceStatus[], any>>;
4322
+ getCellStatus(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ServiceStatus[], any>>;
4323
4323
  /**
4324
4324
  * List all deployed cell names. If no cells are deployed, an empty list is returned.
4325
4325
  * @summary List Cells
4326
4326
  * @param {*} [options] Override http request option.
4327
4327
  * @throws {RequiredError}
4328
4328
  */
4329
- listCells(options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<string[], any>>;
4329
+ listCells(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
4330
4330
  /**
4331
4331
  * Update the definition of the entire Cell.
4332
4332
  * @summary Update Configuration
@@ -4336,7 +4336,7 @@ declare class CellApi extends BaseAPI {
4336
4336
  * @param {*} [options] Override http request option.
4337
4337
  * @throws {RequiredError}
4338
4338
  */
4339
- updateCell(cell: string, cell2: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
4339
+ updateCell(cell: string, cell2: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4340
4340
  }
4341
4341
  /**
4342
4342
  * ControllerApi - axios parameter creator
@@ -4762,7 +4762,7 @@ declare class ControllerApi extends BaseAPI {
4762
4762
  * @param {*} [options] Override http request option.
4763
4763
  * @throws {RequiredError}
4764
4764
  */
4765
- addRobotController(cell: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
4765
+ addRobotController(cell: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4766
4766
  /**
4767
4767
  * 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
4768
  * @summary Clear Robot Controllers
@@ -4771,7 +4771,7 @@ declare class ControllerApi extends BaseAPI {
4771
4771
  * @param {*} [options] Override http request option.
4772
4772
  * @throws {RequiredError}
4773
4773
  */
4774
- clearRobotControllers(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
4774
+ clearRobotControllers(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4775
4775
  /**
4776
4776
  * Delete a robot controller from the cell. <!-- theme: warning --> > **WARNING** > > Using it in conjunction with the settings app may lead to unpredictable behavior.
4777
4777
  * @summary Delete Robot Controller
@@ -4781,7 +4781,7 @@ declare class ControllerApi extends BaseAPI {
4781
4781
  * @param {*} [options] Override http request option.
4782
4782
  * @throws {RequiredError}
4783
4783
  */
4784
- deleteRobotController(cell: string, controller: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
4784
+ deleteRobotController(cell: string, controller: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4785
4785
  /**
4786
4786
  * Get the current state of a robot controller.
4787
4787
  * @summary State of Device
@@ -4790,7 +4790,7 @@ declare class ControllerApi extends BaseAPI {
4790
4790
  * @param {*} [options] Override http request option.
4791
4791
  * @throws {RequiredError}
4792
4792
  */
4793
- getCurrentRobotControllerState(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<RobotControllerState, any>>;
4793
+ getCurrentRobotControllerState(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotControllerState, any>>;
4794
4794
  /**
4795
4795
  * 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
4796
  * @summary Current Mode
@@ -4799,7 +4799,7 @@ declare class ControllerApi extends BaseAPI {
4799
4799
  * @param {*} [options] Override http request option.
4800
4800
  * @throws {RequiredError}
4801
4801
  */
4802
- getMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<GetModeResponse, any>>;
4802
+ getMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<GetModeResponse, any>>;
4803
4803
  /**
4804
4804
  * Get the configuration for a robot controller.
4805
4805
  * @summary Robot Controller Configuration
@@ -4808,7 +4808,7 @@ declare class ControllerApi extends BaseAPI {
4808
4808
  * @param {*} [options] Override http request option.
4809
4809
  * @throws {RequiredError}
4810
4810
  */
4811
- getRobotController(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<RobotController, any>>;
4811
+ getRobotController(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotController, any>>;
4812
4812
  /**
4813
4813
  * Lists supported operating modes. Usually cobots support free drive and control, industrial robots only support control.
4814
4814
  * @summary Supported Motion Modes
@@ -4817,7 +4817,7 @@ declare class ControllerApi extends BaseAPI {
4817
4817
  * @param {*} [options] Override http request option.
4818
4818
  * @throws {RequiredError}
4819
4819
  */
4820
- getSupportedModes(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ControllerCapabilities, any>>;
4820
+ getSupportedModes(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ControllerCapabilities, any>>;
4821
4821
  /**
4822
4822
  * 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
4823
  * @summary Virtual Robot Configuration
@@ -4826,7 +4826,7 @@ declare class ControllerApi extends BaseAPI {
4826
4826
  * @param {*} [options] Override http request option.
4827
4827
  * @throws {RequiredError}
4828
4828
  */
4829
- getVirtualRobotConfiguration(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<VirtualRobotConfiguration, any>>;
4829
+ getVirtualRobotConfiguration(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<VirtualRobotConfiguration, any>>;
4830
4830
  /**
4831
4831
  * List all configured robot controllers.
4832
4832
  * @summary List Robot Controllers
@@ -4834,7 +4834,7 @@ declare class ControllerApi extends BaseAPI {
4834
4834
  * @param {*} [options] Override http request option.
4835
4835
  * @throws {RequiredError}
4836
4836
  */
4837
- listControllers(cell: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ControllerInstanceList, any>>;
4837
+ listControllers(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ControllerInstanceList, any>>;
4838
4838
  /**
4839
4839
  * 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
4840
  * @summary Set Default Mode
@@ -4844,7 +4844,7 @@ declare class ControllerApi extends BaseAPI {
4844
4844
  * @param {*} [options] Override http request option.
4845
4845
  * @throws {RequiredError}
4846
4846
  */
4847
- setDefaultMode(cell: string, controller: string, mode: SetDefaultModeModeEnum, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
4847
+ setDefaultMode(cell: string, controller: string, mode: SetDefaultModeModeEnum, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4848
4848
  /**
4849
4849
  * 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
4850
  * @summary Stream Free Drive Mode
@@ -4854,7 +4854,7 @@ declare class ControllerApi extends BaseAPI {
4854
4854
  * @param {*} [options] Override http request option.
4855
4855
  * @throws {RequiredError}
4856
4856
  */
4857
- streamFreeDrive(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<RobotControllerState, any>>;
4857
+ streamFreeDrive(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotControllerState, any>>;
4858
4858
  /**
4859
4859
  * 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
4860
  * @summary Stream Mode Change
@@ -4863,7 +4863,7 @@ declare class ControllerApi extends BaseAPI {
4863
4863
  * @param {*} [options] Override http request option.
4864
4864
  * @throws {RequiredError}
4865
4865
  */
4866
- streamModeChange(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ModeChangeResponse, any>>;
4866
+ streamModeChange(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ModeChangeResponse, any>>;
4867
4867
  /**
4868
4868
  * Receive updates of the state of a robot controller.
4869
4869
  * @summary Stream State of Device
@@ -4873,7 +4873,7 @@ declare class ControllerApi extends BaseAPI {
4873
4873
  * @param {*} [options] Override http request option.
4874
4874
  * @throws {RequiredError}
4875
4875
  */
4876
- streamRobotControllerState(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<RobotControllerState, any>>;
4876
+ streamRobotControllerState(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotControllerState, any>>;
4877
4877
  /**
4878
4878
  * 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
4879
  * @summary Update Robot Controller Configuration
@@ -4884,7 +4884,7 @@ declare class ControllerApi extends BaseAPI {
4884
4884
  * @param {*} [options] Override http request option.
4885
4885
  * @throws {RequiredError}
4886
4886
  */
4887
- updateRobotController(cell: string, controller: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
4887
+ updateRobotController(cell: string, controller: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
4888
4888
  }
4889
4889
  declare const SetDefaultModeModeEnum: {
4890
4890
  readonly ModeMonitor: "MODE_MONITOR";
@@ -5081,7 +5081,7 @@ declare class ControllerIOsApi extends BaseAPI {
5081
5081
  * @param {*} [options] Override http request option.
5082
5082
  * @throws {RequiredError}
5083
5083
  */
5084
- listIODescriptions(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ListIODescriptionsResponse, any>>;
5084
+ listIODescriptions(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ListIODescriptionsResponse, any>>;
5085
5085
  /**
5086
5086
  * 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
5087
  * @summary Values
@@ -5091,7 +5091,7 @@ declare class ControllerIOsApi extends BaseAPI {
5091
5091
  * @param {*} [options] Override http request option.
5092
5092
  * @throws {RequiredError}
5093
5093
  */
5094
- listIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ListIOValuesResponse, any>>;
5094
+ listIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ListIOValuesResponse, any>>;
5095
5095
  /**
5096
5096
  * 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
5097
  * @summary Set Values
@@ -5101,7 +5101,7 @@ declare class ControllerIOsApi extends BaseAPI {
5101
5101
  * @param {*} [options] Override http request option.
5102
5102
  * @throws {RequiredError}
5103
5103
  */
5104
- setOutputValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
5104
+ setOutputValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
5105
5105
  /**
5106
5106
  * 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
5107
  * @summary Stream Values
@@ -5111,7 +5111,7 @@ declare class ControllerIOsApi extends BaseAPI {
5111
5111
  * @param {*} [options] Override http request option.
5112
5112
  * @throws {RequiredError}
5113
5113
  */
5114
- streamIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ListIOValuesResponse, any>>;
5114
+ streamIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ListIOValuesResponse, any>>;
5115
5115
  /**
5116
5116
  * 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
5117
  * @summary Wait For
@@ -5125,7 +5125,7 @@ declare class ControllerIOsApi extends BaseAPI {
5125
5125
  * @param {*} [options] Override http request option.
5126
5126
  * @throws {RequiredError}
5127
5127
  */
5128
- waitForIOEvent(cell: string, controller: string, io: string, comparisonType: WaitForIOEventComparisonTypeEnum, booleanValue?: boolean, integerValue?: string, floatingValue?: number, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<boolean, any>>;
5128
+ waitForIOEvent(cell: string, controller: string, io: string, comparisonType: WaitForIOEventComparisonTypeEnum, booleanValue?: boolean, integerValue?: string, floatingValue?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<boolean, any>>;
5129
5129
  }
5130
5130
  declare const WaitForIOEventComparisonTypeEnum: {
5131
5131
  readonly ComparisonTypeEqual: "COMPARISON_TYPE_EQUAL";
@@ -5301,7 +5301,7 @@ declare class CoordinateSystemsApi extends BaseAPI {
5301
5301
  * @param {*} [options] Override http request option.
5302
5302
  * @throws {RequiredError}
5303
5303
  */
5304
- addCoordinateSystem(cell: string, addRequest: AddRequest, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<CoordinateSystem, any>>;
5304
+ addCoordinateSystem(cell: string, addRequest: AddRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem, any>>;
5305
5305
  /**
5306
5306
  * 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
5307
  * @summary Delete
@@ -5310,7 +5310,7 @@ declare class CoordinateSystemsApi extends BaseAPI {
5310
5310
  * @param {*} [options] Override http request option.
5311
5311
  * @throws {RequiredError}
5312
5312
  */
5313
- deleteCoordinateSystem(cell: string, coordinateSystem: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
5313
+ deleteCoordinateSystem(cell: string, coordinateSystem: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
5314
5314
  /**
5315
5315
  * 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
5316
  * @summary Description
@@ -5320,7 +5320,7 @@ declare class CoordinateSystemsApi extends BaseAPI {
5320
5320
  * @param {*} [options] Override http request option.
5321
5321
  * @throws {RequiredError}
5322
5322
  */
5323
- getCoordinateSystem(cell: string, coordinateSystem: string, rotationType?: RotationAngleTypes, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<CoordinateSystem, any>>;
5323
+ getCoordinateSystem(cell: string, coordinateSystem: string, rotationType?: RotationAngleTypes, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem, any>>;
5324
5324
  /**
5325
5325
  * 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
5326
  * @summary List
@@ -5329,7 +5329,7 @@ declare class CoordinateSystemsApi extends BaseAPI {
5329
5329
  * @param {*} [options] Override http request option.
5330
5330
  * @throws {RequiredError}
5331
5331
  */
5332
- listCoordinateSystems(cell: string, rotationType?: RotationAngleTypes, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ListResponse, any>>;
5332
+ listCoordinateSystems(cell: string, rotationType?: RotationAngleTypes, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ListResponse, any>>;
5333
5333
  /**
5334
5334
  * Transform a pose to another base.
5335
5335
  * @summary Transform
@@ -5339,7 +5339,7 @@ declare class CoordinateSystemsApi extends BaseAPI {
5339
5339
  * @param {*} [options] Override http request option.
5340
5340
  * @throws {RequiredError}
5341
5341
  */
5342
- transformInCoordinateSystem(cell: string, coordinateSystem: string, pose: Pose, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<Pose, any>>;
5342
+ transformInCoordinateSystem(cell: string, coordinateSystem: string, pose: Pose, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Pose, any>>;
5343
5343
  }
5344
5344
  /**
5345
5345
  * DeviceConfigurationApi - axios parameter creator
@@ -5512,7 +5512,7 @@ declare class DeviceConfigurationApi extends BaseAPI {
5512
5512
  * @deprecated
5513
5513
  * @throws {RequiredError}
5514
5514
  */
5515
- clearDevices(cell: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
5515
+ clearDevices(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
5516
5516
  /**
5517
5517
  * 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
5518
  * @summary Create Devices
@@ -5522,7 +5522,7 @@ declare class DeviceConfigurationApi extends BaseAPI {
5522
5522
  * @deprecated
5523
5523
  * @throws {RequiredError}
5524
5524
  */
5525
- createDevice(cell: string, createDeviceRequestInner: Array<CreateDeviceRequestInner>, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<any, any>>;
5525
+ createDevice(cell: string, createDeviceRequestInner: Array<CreateDeviceRequestInner>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<any, any>>;
5526
5526
  /**
5527
5527
  * Deprecated endpoint. Deletes a specific device from the cell.
5528
5528
  * @summary Delete Device
@@ -5532,7 +5532,7 @@ declare class DeviceConfigurationApi extends BaseAPI {
5532
5532
  * @deprecated
5533
5533
  * @throws {RequiredError}
5534
5534
  */
5535
- deleteDevice(cell: string, identifier: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
5535
+ deleteDevice(cell: string, identifier: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
5536
5536
  /**
5537
5537
  * Deprecated endpoint. Returns information about a device.
5538
5538
  * @summary Device Information
@@ -5542,7 +5542,7 @@ declare class DeviceConfigurationApi extends BaseAPI {
5542
5542
  * @deprecated
5543
5543
  * @throws {RequiredError}
5544
5544
  */
5545
- getDevice(cell: string, identifier: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<any, any>>;
5545
+ getDevice(cell: string, identifier: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<any, any>>;
5546
5546
  /**
5547
5547
  * Deprecated endpoint. Lists all devices which are configured in the cell: - Robots - Databases - OPC UA devices
5548
5548
  * @summary List All Devices
@@ -5551,7 +5551,7 @@ declare class DeviceConfigurationApi extends BaseAPI {
5551
5551
  * @deprecated
5552
5552
  * @throws {RequiredError}
5553
5553
  */
5554
- listDevices(cell: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ListDevices200ResponseInner[], any>>;
5554
+ listDevices(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ListDevices200ResponseInner[], any>>;
5555
5555
  }
5556
5556
  /**
5557
5557
  * LibraryProgramApi - axios parameter creator
@@ -5722,7 +5722,7 @@ declare class LibraryProgramApi extends BaseAPI {
5722
5722
  * @param {*} [options] Override http request option.
5723
5723
  * @throws {RequiredError}
5724
5724
  */
5725
- createProgram(cell: string, body: string, name?: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ProgramMetadata, any>>;
5725
+ createProgram(cell: string, body: string, name?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProgramMetadata, any>>;
5726
5726
  /**
5727
5727
  * <!-- theme: danger --> > **Experimental** Deletes the program with the corresponding metadata. This action is irreversible. Does not delete the associated recipes.
5728
5728
  * @summary Delete Program
@@ -5731,7 +5731,7 @@ declare class LibraryProgramApi extends BaseAPI {
5731
5731
  * @param {*} [options] Override http request option.
5732
5732
  * @throws {RequiredError}
5733
5733
  */
5734
- deleteProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ProgramMetadata, any>>;
5734
+ deleteProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProgramMetadata, any>>;
5735
5735
  /**
5736
5736
  * <!-- theme: danger --> > **Experimental** Deletes the provided list of programs with the corresponding metadata. This action is irreversible. Does not delete the associated recipes.
5737
5737
  * @summary Delete Program List
@@ -5740,7 +5740,7 @@ declare class LibraryProgramApi extends BaseAPI {
5740
5740
  * @param {*} [options] Override http request option.
5741
5741
  * @throws {RequiredError}
5742
5742
  */
5743
- deleteProgramList(cell: string, programIds: Array<string>, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ListProgramMetadataResponse, any>>;
5743
+ deleteProgramList(cell: string, programIds: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ListProgramMetadataResponse, any>>;
5744
5744
  /**
5745
5745
  * <!-- 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
5746
  * @summary Get Program
@@ -5749,7 +5749,7 @@ declare class LibraryProgramApi extends BaseAPI {
5749
5749
  * @param {*} [options] Override http request option.
5750
5750
  * @throws {RequiredError}
5751
5751
  */
5752
- getProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<string, any>>;
5752
+ getProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string, any>>;
5753
5753
  /**
5754
5754
  * <!-- 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
5755
  * @summary Update Program
@@ -5759,7 +5759,7 @@ declare class LibraryProgramApi extends BaseAPI {
5759
5759
  * @param {*} [options] Override http request option.
5760
5760
  * @throws {RequiredError}
5761
5761
  */
5762
- updateProgram(cell: string, program: string, body: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ProgramMetadata, any>>;
5762
+ updateProgram(cell: string, program: string, body: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProgramMetadata, any>>;
5763
5763
  }
5764
5764
  /**
5765
5765
  * LibraryProgramMetadataApi - axios parameter creator
@@ -5902,7 +5902,7 @@ declare class LibraryProgramMetadataApi extends BaseAPI {
5902
5902
  * @param {*} [options] Override http request option.
5903
5903
  * @throws {RequiredError}
5904
5904
  */
5905
- getProgramMetadata(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ProgramMetadata, any>>;
5905
+ getProgramMetadata(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProgramMetadata, any>>;
5906
5906
  /**
5907
5907
  * <!-- theme: danger --> > **Experimental** Returns a list of all the stored programs, represented by their metadata.
5908
5908
  * @summary List Program Metadata
@@ -5911,7 +5911,7 @@ declare class LibraryProgramMetadataApi extends BaseAPI {
5911
5911
  * @param {*} [options] Override http request option.
5912
5912
  * @throws {RequiredError}
5913
5913
  */
5914
- listProgramMetadata(cell: string, showHidden?: boolean, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ListProgramMetadataResponse, any>>;
5914
+ listProgramMetadata(cell: string, showHidden?: boolean, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ListProgramMetadataResponse, any>>;
5915
5915
  /**
5916
5916
  * <!-- theme: danger --> > **Experimental** Updates the metadata of the corresponding program. The update is partial, only the set fields get updated.
5917
5917
  * @summary Update Program Metadata
@@ -5921,7 +5921,7 @@ declare class LibraryProgramMetadataApi extends BaseAPI {
5921
5921
  * @param {*} [options] Override http request option.
5922
5922
  * @throws {RequiredError}
5923
5923
  */
5924
- updateProgramMetadata(cell: string, program: string, updateProgramMetadataRequest: UpdateProgramMetadataRequest, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ProgramMetadata, any>>;
5924
+ updateProgramMetadata(cell: string, program: string, updateProgramMetadataRequest: UpdateProgramMetadataRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProgramMetadata, any>>;
5925
5925
  /**
5926
5926
  * <!-- 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
5927
  * @summary Upload Program Metadata Image
@@ -5931,7 +5931,7 @@ declare class LibraryProgramMetadataApi extends BaseAPI {
5931
5931
  * @param {*} [options] Override http request option.
5932
5932
  * @throws {RequiredError}
5933
5933
  */
5934
- uploadProgramMetadataImage(cell: string, program: string, file: File, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ProgramMetadata, any>>;
5934
+ uploadProgramMetadataImage(cell: string, program: string, file: File, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProgramMetadata, any>>;
5935
5935
  }
5936
5936
  /**
5937
5937
  * LibraryRecipeApi - axios parameter creator
@@ -6106,7 +6106,7 @@ declare class LibraryRecipeApi extends BaseAPI {
6106
6106
  * @param {*} [options] Override http request option.
6107
6107
  * @throws {RequiredError}
6108
6108
  */
6109
- createRecipe(cell: string, programId: string, body: object, name?: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<RecipeMetadata, any>>;
6109
+ createRecipe(cell: string, programId: string, body: object, name?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RecipeMetadata, any>>;
6110
6110
  /**
6111
6111
  * # EXPERIMENTAL > **Note:** This endpoint is experimental and might experience functional changes in the future. Deletes a recipe. This action is irreversible.
6112
6112
  * @summary Delete Recipe
@@ -6115,7 +6115,7 @@ declare class LibraryRecipeApi extends BaseAPI {
6115
6115
  * @param {*} [options] Override http request option.
6116
6116
  * @throws {RequiredError}
6117
6117
  */
6118
- deleteRecipe(cell: string, recipe: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<RecipeMetadata, any>>;
6118
+ deleteRecipe(cell: string, recipe: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RecipeMetadata, any>>;
6119
6119
  /**
6120
6120
  * <!-- theme: danger --> > **Experimental** Deletes the provided list of recipes. This action is irreversible.
6121
6121
  * @summary Delete Recipe List
@@ -6124,7 +6124,7 @@ declare class LibraryRecipeApi extends BaseAPI {
6124
6124
  * @param {*} [options] Override http request option.
6125
6125
  * @throws {RequiredError}
6126
6126
  */
6127
- deleteRecipeList(cell: string, recipeIds: Array<string>, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ListRecipeMetadataResponse, any>>;
6127
+ deleteRecipeList(cell: string, recipeIds: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ListRecipeMetadataResponse, any>>;
6128
6128
  /**
6129
6129
  * <!-- 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
6130
  * @summary Get Recipe
@@ -6133,7 +6133,7 @@ declare class LibraryRecipeApi extends BaseAPI {
6133
6133
  * @param {*} [options] Override http request option.
6134
6134
  * @throws {RequiredError}
6135
6135
  */
6136
- getRecipe(cell: string, recipe: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<object, any>>;
6136
+ getRecipe(cell: string, recipe: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<object, any>>;
6137
6137
  /**
6138
6138
  * <!-- theme: danger --> > **Experimental** Updates an existing recipe. The update is partial, only the set fields get updated.
6139
6139
  * @summary Update Recipe
@@ -6143,7 +6143,7 @@ declare class LibraryRecipeApi extends BaseAPI {
6143
6143
  * @param {*} [options] Override http request option.
6144
6144
  * @throws {RequiredError}
6145
6145
  */
6146
- updateRecipe(cell: string, recipe: string, body: object, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<RecipeMetadata, any>>;
6146
+ updateRecipe(cell: string, recipe: string, body: object, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RecipeMetadata, any>>;
6147
6147
  }
6148
6148
  /**
6149
6149
  * LibraryRecipeMetadataApi - axios parameter creator
@@ -6283,7 +6283,7 @@ declare class LibraryRecipeMetadataApi extends BaseAPI {
6283
6283
  * @param {*} [options] Override http request option.
6284
6284
  * @throws {RequiredError}
6285
6285
  */
6286
- getRecipeMetadata(cell: string, recipe: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<RecipeMetadata, any>>;
6286
+ getRecipeMetadata(cell: string, recipe: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RecipeMetadata, any>>;
6287
6287
  /**
6288
6288
  * <!-- theme: danger --> > **Experimental** List of all the stored recipes, represented by their metadata.
6289
6289
  * @summary List Recipe Metadata
@@ -6291,7 +6291,7 @@ declare class LibraryRecipeMetadataApi extends BaseAPI {
6291
6291
  * @param {*} [options] Override http request option.
6292
6292
  * @throws {RequiredError}
6293
6293
  */
6294
- listRecipeMetadata(cell: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ListRecipeMetadataResponse, any>>;
6294
+ listRecipeMetadata(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ListRecipeMetadataResponse, any>>;
6295
6295
  /**
6296
6296
  * <!-- theme: danger --> > **Experimental** Updates the metadata of a recipe. The update is partial, only the set fields get updated.
6297
6297
  * @summary Update Recipe Metadata
@@ -6301,7 +6301,7 @@ declare class LibraryRecipeMetadataApi extends BaseAPI {
6301
6301
  * @param {*} [options] Override http request option.
6302
6302
  * @throws {RequiredError}
6303
6303
  */
6304
- updateRecipeMetadata(cell: string, recipe: string, updateRecipeMetadataRequest: UpdateRecipeMetadataRequest, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<RecipeMetadata, any>>;
6304
+ updateRecipeMetadata(cell: string, recipe: string, updateRecipeMetadataRequest: UpdateRecipeMetadataRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RecipeMetadata, any>>;
6305
6305
  /**
6306
6306
  * <!-- 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
6307
  * @summary Upload Recipe Metadata Image
@@ -6311,7 +6311,7 @@ declare class LibraryRecipeMetadataApi extends BaseAPI {
6311
6311
  * @param {*} [options] Override http request option.
6312
6312
  * @throws {RequiredError}
6313
6313
  */
6314
- uploadRecipeMetadataImage(cell: string, recipe: string, file: File, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<RecipeMetadata, any>>;
6314
+ uploadRecipeMetadataImage(cell: string, recipe: string, file: File, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RecipeMetadata, any>>;
6315
6315
  }
6316
6316
  /**
6317
6317
  * LicenseApi - axios parameter creator
@@ -6426,28 +6426,28 @@ declare class LicenseApi extends BaseAPI {
6426
6426
  * @param {*} [options] Override http request option.
6427
6427
  * @throws {RequiredError}
6428
6428
  */
6429
- activateLicense(activateLicenseRequest: ActivateLicenseRequest, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<License, any>>;
6429
+ activateLicense(activateLicenseRequest: ActivateLicenseRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<License, any>>;
6430
6430
  /**
6431
6431
  * Deactivates active license.
6432
6432
  * @summary Deactivate license
6433
6433
  * @param {*} [options] Override http request option.
6434
6434
  * @throws {RequiredError}
6435
6435
  */
6436
- deactivateLicense(options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
6436
+ deactivateLicense(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
6437
6437
  /**
6438
6438
  * Get information on the license used with the Wandelbots NOVA instance, e.g. licensed product, expiration date, license status.
6439
6439
  * @summary Get license
6440
6440
  * @param {*} [options] Override http request option.
6441
6441
  * @throws {RequiredError}
6442
6442
  */
6443
- getLicense(options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<License, any>>;
6443
+ getLicense(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<License, any>>;
6444
6444
  /**
6445
6445
  * 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
6446
  * @summary Get license status
6447
6447
  * @param {*} [options] Override http request option.
6448
6448
  * @throws {RequiredError}
6449
6449
  */
6450
- getLicenseStatus(options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<LicenseStatus, any>>;
6450
+ getLicenseStatus(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<LicenseStatus, any>>;
6451
6451
  }
6452
6452
  /**
6453
6453
  * MotionApi - axios parameter creator
@@ -7000,7 +7000,7 @@ declare class MotionApi extends BaseAPI {
7000
7000
  * @param {*} [options] Override http request option.
7001
7001
  * @throws {RequiredError}
7002
7002
  */
7003
- deleteAllMotions(cell: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
7003
+ deleteAllMotions(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
7004
7004
  /**
7005
7005
  * 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
7006
  * @summary Remove
@@ -7009,7 +7009,7 @@ declare class MotionApi extends BaseAPI {
7009
7009
  * @param {*} [options] Override http request option.
7010
7010
  * @throws {RequiredError}
7011
7011
  */
7012
- deleteMotion(cell: string, motion: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
7012
+ deleteMotion(cell: string, motion: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
7013
7013
  /**
7014
7014
  * <!-- 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
7015
  * @summary Execute Trajectory
@@ -7018,7 +7018,7 @@ declare class MotionApi extends BaseAPI {
7018
7018
  * @param {*} [options] Override http request option.
7019
7019
  * @throws {RequiredError}
7020
7020
  */
7021
- executeTrajectory(cell: string, executeTrajectoryRequest: ExecuteTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ExecuteTrajectoryResponse, any>>;
7021
+ executeTrajectory(cell: string, executeTrajectoryRequest: ExecuteTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ExecuteTrajectoryResponse, any>>;
7022
7022
  /**
7023
7023
  * 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
7024
  * @summary Get Trajectory
@@ -7029,7 +7029,7 @@ declare class MotionApi extends BaseAPI {
7029
7029
  * @param {*} [options] Override http request option.
7030
7030
  * @throws {RequiredError}
7031
7031
  */
7032
- getMotionTrajectory(cell: string, motion: string, sampleTime: number, responsesCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<GetTrajectoryResponse, any>>;
7032
+ getMotionTrajectory(cell: string, motion: string, sampleTime: number, responsesCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<GetTrajectoryResponse, any>>;
7033
7033
  /**
7034
7034
  * Get a single point at a certain location of a planned motion. To get the whole trajectory, use the [getMotionTrajectory](getMotionTrajectory) endpoint.
7035
7035
  * @summary Get Trajectory Sample
@@ -7040,7 +7040,7 @@ declare class MotionApi extends BaseAPI {
7040
7040
  * @param {*} [options] Override http request option.
7041
7041
  * @throws {RequiredError}
7042
7042
  */
7043
- getMotionTrajectorySample(cell: string, motion: string, locationOnTrajectory?: number, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<GetTrajectorySampleResponse, any>>;
7043
+ getMotionTrajectorySample(cell: string, motion: string, locationOnTrajectory?: number, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<GetTrajectorySampleResponse, any>>;
7044
7044
  /**
7045
7045
  * 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
7046
  * @summary Get Planned Motion
@@ -7050,7 +7050,7 @@ declare class MotionApi extends BaseAPI {
7050
7050
  * @param {*} [options] Override http request option.
7051
7051
  * @throws {RequiredError}
7052
7052
  */
7053
- getPlannedMotion(cell: string, motion: string, sampleTime?: number, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<PlannedMotion, any>>;
7053
+ getPlannedMotion(cell: string, motion: string, sampleTime?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<PlannedMotion, any>>;
7054
7054
  /**
7055
7055
  * Returns motion group models that are supported for planning.
7056
7056
  * @summary Motion Group Models for Planning
@@ -7058,7 +7058,7 @@ declare class MotionApi extends BaseAPI {
7058
7058
  * @param {*} [options] Override http request option.
7059
7059
  * @throws {RequiredError}
7060
7060
  */
7061
- getPlanningMotionGroupModels(cell: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<string[], any>>;
7061
+ getPlanningMotionGroupModels(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
7062
7062
  /**
7063
7063
  * 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
7064
  * @summary List All Motions
@@ -7066,7 +7066,7 @@ declare class MotionApi extends BaseAPI {
7066
7066
  * @param {*} [options] Override http request option.
7067
7067
  * @throws {RequiredError}
7068
7068
  */
7069
- listMotions(cell: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<MotionIdsListResponse, any>>;
7069
+ listMotions(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionIdsListResponse, any>>;
7070
7070
  /**
7071
7071
  * 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
7072
  * @summary Load Planned Motion
@@ -7075,7 +7075,7 @@ declare class MotionApi extends BaseAPI {
7075
7075
  * @param {*} [options] Override http request option.
7076
7076
  * @throws {RequiredError}
7077
7077
  */
7078
- loadPlannedMotion(cell: string, plannedMotion: PlannedMotion, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<PlanResponse, any>>;
7078
+ loadPlannedMotion(cell: string, plannedMotion: PlannedMotion, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<PlanResponse, any>>;
7079
7079
  /**
7080
7080
  * <!-- 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
7081
  * @summary Plan Collision Free PTP
@@ -7084,7 +7084,7 @@ declare class MotionApi extends BaseAPI {
7084
7084
  * @param {*} [options] Override http request option.
7085
7085
  * @throws {RequiredError}
7086
7086
  */
7087
- planCollisionFreePTP(cell: string, planCollisionFreePTPRequest?: PlanCollisionFreePTPRequest, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<PlanTrajectoryResponse, any>>;
7087
+ planCollisionFreePTP(cell: string, planCollisionFreePTPRequest?: PlanCollisionFreePTPRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<PlanTrajectoryResponse, any>>;
7088
7088
  /**
7089
7089
  * 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
7090
  * @summary Plan Motion
@@ -7094,7 +7094,7 @@ declare class MotionApi extends BaseAPI {
7094
7094
  * @deprecated
7095
7095
  * @throws {RequiredError}
7096
7096
  */
7097
- planMotion(cell: string, planRequest: PlanRequest, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<PlanResponse, any>>;
7097
+ planMotion(cell: string, planRequest: PlanRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<PlanResponse, any>>;
7098
7098
  /**
7099
7099
  * 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
7100
  * @summary Plan Trajectory
@@ -7103,7 +7103,7 @@ declare class MotionApi extends BaseAPI {
7103
7103
  * @param {*} [options] Override http request option.
7104
7104
  * @throws {RequiredError}
7105
7105
  */
7106
- planTrajectory(cell: string, planTrajectoryRequest?: PlanTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<PlanTrajectoryResponse, any>>;
7106
+ planTrajectory(cell: string, planTrajectoryRequest?: PlanTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<PlanTrajectoryResponse, any>>;
7107
7107
  /**
7108
7108
  * 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
7109
  * @summary Stop
@@ -7112,7 +7112,7 @@ declare class MotionApi extends BaseAPI {
7112
7112
  * @param {*} [options] Override http request option.
7113
7113
  * @throws {RequiredError}
7114
7114
  */
7115
- stopExecution(cell: string, motion: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
7115
+ stopExecution(cell: string, motion: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
7116
7116
  /**
7117
7117
  * 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
7118
  * @summary Stream Move
@@ -7122,7 +7122,7 @@ declare class MotionApi extends BaseAPI {
7122
7122
  * @deprecated
7123
7123
  * @throws {RequiredError}
7124
7124
  */
7125
- streamMove(cell: string, streamMoveRequest: StreamMoveRequest, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<StreamMoveResponse, any>>;
7125
+ streamMove(cell: string, streamMoveRequest: StreamMoveRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<StreamMoveResponse, any>>;
7126
7126
  /**
7127
7127
  * 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
7128
  * @summary Stream Backward
@@ -7136,7 +7136,7 @@ declare class MotionApi extends BaseAPI {
7136
7136
  * @deprecated
7137
7137
  * @throws {RequiredError}
7138
7138
  */
7139
- streamMoveBackward(cell: string, motion: string, playbackSpeedInPercent: number, responseRate?: number, responseCoordinateSystem?: string, startLocationOnTrajectory?: number, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<StreamMoveResponse, any>>;
7139
+ streamMoveBackward(cell: string, motion: string, playbackSpeedInPercent: number, responseRate?: number, responseCoordinateSystem?: string, startLocationOnTrajectory?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<StreamMoveResponse, any>>;
7140
7140
  /**
7141
7141
  * 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
7142
  * @summary Stream Forward
@@ -7150,7 +7150,7 @@ declare class MotionApi extends BaseAPI {
7150
7150
  * @deprecated
7151
7151
  * @throws {RequiredError}
7152
7152
  */
7153
- streamMoveForward(cell: string, motion: string, playbackSpeedInPercent: number, responseRate?: number, responseCoordinateSystem?: string, startLocationOnTrajectory?: number, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<StreamMoveResponse, any>>;
7153
+ streamMoveForward(cell: string, motion: string, playbackSpeedInPercent: number, responseRate?: number, responseCoordinateSystem?: string, startLocationOnTrajectory?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<StreamMoveResponse, any>>;
7154
7154
  /**
7155
7155
  * 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
7156
  * @summary Stream to Trajectory
@@ -7167,7 +7167,7 @@ declare class MotionApi extends BaseAPI {
7167
7167
  * @param {*} [options] Override http request option.
7168
7168
  * @throws {RequiredError}
7169
7169
  */
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<axios129.AxiosResponse<StreamMoveResponse, any>>;
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<axios0.AxiosResponse<StreamMoveResponse, any>>;
7171
7171
  }
7172
7172
  /**
7173
7173
  * MotionGroupApi - axios parameter creator
@@ -7301,7 +7301,7 @@ declare class MotionGroupApi extends BaseAPI {
7301
7301
  * @param {*} [options] Override http request option.
7302
7302
  * @throws {RequiredError}
7303
7303
  */
7304
- activateAllMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<MotionGroupInstanceList, any>>;
7304
+ activateAllMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupInstanceList, any>>;
7305
7305
  /**
7306
7306
  * 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
7307
  * @summary Activate
@@ -7310,7 +7310,7 @@ declare class MotionGroupApi extends BaseAPI {
7310
7310
  * @param {*} [options] Override http request option.
7311
7311
  * @throws {RequiredError}
7312
7312
  */
7313
- activateMotionGroup(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<MotionGroupInstance, any>>;
7313
+ activateMotionGroup(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupInstance, any>>;
7314
7314
  /**
7315
7315
  * 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
7316
  * @summary Deactivate
@@ -7319,7 +7319,7 @@ declare class MotionGroupApi extends BaseAPI {
7319
7319
  * @param {*} [options] Override http request option.
7320
7320
  * @throws {RequiredError}
7321
7321
  */
7322
- deactivateMotionGroup(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
7322
+ deactivateMotionGroup(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
7323
7323
  /**
7324
7324
  * List all active motion groups. A motion group is active if it is currently used by a controller.
7325
7325
  * @summary List Active
@@ -7327,7 +7327,7 @@ declare class MotionGroupApi extends BaseAPI {
7327
7327
  * @param {*} [options] Override http request option.
7328
7328
  * @throws {RequiredError}
7329
7329
  */
7330
- listMotionGroups(cell: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<MotionGroupInstanceList, any>>;
7330
+ listMotionGroups(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupInstanceList, any>>;
7331
7331
  }
7332
7332
  /**
7333
7333
  * MotionGroupInfosApi - axios parameter creator
@@ -7677,7 +7677,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
7677
7677
  * @param {*} [options] Override http request option.
7678
7678
  * @throws {RequiredError}
7679
7679
  */
7680
- getActivePayload(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<Payload, any>>;
7680
+ getActivePayload(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Payload, any>>;
7681
7681
  /**
7682
7682
  * Get the internal selected TCP of a connected device.
7683
7683
  * @summary Selected TCP
@@ -7687,7 +7687,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
7687
7687
  * @param {*} [options] Override http request option.
7688
7688
  * @throws {RequiredError}
7689
7689
  */
7690
- getActiveTcp(cell: string, motionGroup: string, rotationType?: RotationAngleTypes, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<RobotTcp, any>>;
7690
+ getActiveTcp(cell: string, motionGroup: string, rotationType?: RotationAngleTypes, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotTcp, any>>;
7691
7691
  /**
7692
7692
  * Returns the current state of the selected motion group including the current joint position, velocity, pose, and more.
7693
7693
  * @summary State of Device
@@ -7698,7 +7698,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
7698
7698
  * @param {*} [options] Override http request option.
7699
7699
  * @throws {RequiredError}
7700
7700
  */
7701
- getCurrentMotionGroupState(cell: string, motionGroup: string, tcp?: string, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<MotionGroupStateResponse, any>>;
7701
+ getCurrentMotionGroupState(cell: string, motionGroup: string, tcp?: string, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupStateResponse, any>>;
7702
7702
  /**
7703
7703
  * 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
7704
  * @summary Capabilities
@@ -7707,7 +7707,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
7707
7707
  * @param {*} [options] Override http request option.
7708
7708
  * @throws {RequiredError}
7709
7709
  */
7710
- getInfoCapabilities(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<InfoServiceCapabilities, any>>;
7710
+ getInfoCapabilities(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<InfoServiceCapabilities, any>>;
7711
7711
  /**
7712
7712
  * 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
7713
  * @summary Get Static Properties
@@ -7716,7 +7716,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
7716
7716
  * @param {*} [options] Override http request option.
7717
7717
  * @throws {RequiredError}
7718
7718
  */
7719
- getMotionGroupSpecification(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<MotionGroupSpecification, any>>;
7719
+ getMotionGroupSpecification(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupSpecification, any>>;
7720
7720
  /**
7721
7721
  * Returns the configured mounting pose offset in relation to world coordinate system and the motion groups coordinate system.
7722
7722
  * @summary Device Mounting
@@ -7725,7 +7725,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
7725
7725
  * @param {*} [options] Override http request option.
7726
7726
  * @throws {RequiredError}
7727
7727
  */
7728
- getMounting(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<Mounting, any>>;
7728
+ getMounting(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Mounting, any>>;
7729
7729
  /**
7730
7730
  * <!-- theme: danger --> > **Experimental** Get the complete configuration which can be passed to the planner-optimizer (incl. motion group description, limits etc.)
7731
7731
  * @summary Optimizer Configuration
@@ -7735,7 +7735,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
7735
7735
  * @param {*} [options] Override http request option.
7736
7736
  * @throws {RequiredError}
7737
7737
  */
7738
- getOptimizerConfiguration(cell: string, motionGroup: string, tcp?: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<OptimizerSetup, any>>;
7738
+ getOptimizerConfiguration(cell: string, motionGroup: string, tcp?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<OptimizerSetup, any>>;
7739
7739
  /**
7740
7740
  * 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
7741
  * @summary Safety Setup and Limitations
@@ -7744,7 +7744,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
7744
7744
  * @param {*} [options] Override http request option.
7745
7745
  * @throws {RequiredError}
7746
7746
  */
7747
- getSafetySetup(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<SafetySetup, any>>;
7747
+ getSafetySetup(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<SafetySetup, any>>;
7748
7748
  /**
7749
7749
  * 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
7750
  * @summary List Payloads
@@ -7753,7 +7753,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
7753
7753
  * @param {*} [options] Override http request option.
7754
7754
  * @throws {RequiredError}
7755
7755
  */
7756
- listPayloads(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ListPayloadsResponse, any>>;
7756
+ listPayloads(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ListPayloadsResponse, any>>;
7757
7757
  /**
7758
7758
  * Get all internal configured TCPs of a connected device.
7759
7759
  * @summary List TCPs
@@ -7763,7 +7763,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
7763
7763
  * @param {*} [options] Override http request option.
7764
7764
  * @throws {RequiredError}
7765
7765
  */
7766
- listTcps(cell: string, motionGroup: string, rotationType?: RotationAngleTypes, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ListTcpsResponse, any>>;
7766
+ listTcps(cell: string, motionGroup: string, rotationType?: RotationAngleTypes, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ListTcpsResponse, any>>;
7767
7767
  /**
7768
7768
  * Receive updates of the motion group state. The stream will be closed from the server if the controller is disconnected.
7769
7769
  * @summary Stream State of Device
@@ -7775,7 +7775,7 @@ declare class MotionGroupInfosApi extends BaseAPI {
7775
7775
  * @param {*} [options] Override http request option.
7776
7776
  * @throws {RequiredError}
7777
7777
  */
7778
- streamMotionGroupState(cell: string, motionGroup: string, responseRate?: number, responseCoordinateSystem?: string, tcp?: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<MotionGroupStateResponse, any>>;
7778
+ streamMotionGroupState(cell: string, motionGroup: string, responseRate?: number, responseCoordinateSystem?: string, tcp?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupStateResponse, any>>;
7779
7779
  }
7780
7780
  /**
7781
7781
  * MotionGroupJoggingApi - axios parameter creator
@@ -7912,7 +7912,7 @@ declare class MotionGroupJoggingApi extends BaseAPI {
7912
7912
  * @param {*} [options] Override http request option.
7913
7913
  * @throws {RequiredError}
7914
7914
  */
7915
- directionJogging(cell: string, directionJoggingRequest: DirectionJoggingRequest, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<JoggingResponse, any>>;
7915
+ directionJogging(cell: string, directionJoggingRequest: DirectionJoggingRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<JoggingResponse, any>>;
7916
7916
  /**
7917
7917
  * 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
7918
  * @summary Capabilities
@@ -7921,7 +7921,7 @@ declare class MotionGroupJoggingApi extends BaseAPI {
7921
7921
  * @param {*} [options] Override http request option.
7922
7922
  * @throws {RequiredError}
7923
7923
  */
7924
- getJoggingCapabilities(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<JoggingServiceCapabilities, any>>;
7924
+ getJoggingCapabilities(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<JoggingServiceCapabilities, any>>;
7925
7925
  /**
7926
7926
  * 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
7927
  * @summary Stream Joints
@@ -7930,7 +7930,7 @@ declare class MotionGroupJoggingApi extends BaseAPI {
7930
7930
  * @param {*} [options] Override http request option.
7931
7931
  * @throws {RequiredError}
7932
7932
  */
7933
- jointJogging(cell: string, jointJoggingRequest: JointJoggingRequest, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<JoggingResponse, any>>;
7933
+ jointJogging(cell: string, jointJoggingRequest: JointJoggingRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<JoggingResponse, any>>;
7934
7934
  /**
7935
7935
  * 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
7936
  * @summary Stop
@@ -7939,7 +7939,7 @@ declare class MotionGroupJoggingApi extends BaseAPI {
7939
7939
  * @param {*} [options] Override http request option.
7940
7940
  * @throws {RequiredError}
7941
7941
  */
7942
- stopJogging(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
7942
+ stopJogging(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
7943
7943
  }
7944
7944
  /**
7945
7945
  * MotionGroupKinematicApi - axios parameter creator
@@ -8086,7 +8086,7 @@ declare class MotionGroupKinematicApi extends BaseAPI {
8086
8086
  * @param {*} [options] Override http request option.
8087
8087
  * @throws {RequiredError}
8088
8088
  */
8089
- calculateAllInverseKinematic(cell: string, motionGroup: string, allJointPositionsRequest: AllJointPositionsRequest, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<AllJointPositionsResponse, any>>;
8089
+ calculateAllInverseKinematic(cell: string, motionGroup: string, allJointPositionsRequest: AllJointPositionsRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<AllJointPositionsResponse, any>>;
8090
8090
  /**
8091
8091
  * Calculates the TCP pose from a joint position sample using the forward kinematics of the motion-group.
8092
8092
  * @summary TcpPose from JointPosition
@@ -8096,7 +8096,7 @@ declare class MotionGroupKinematicApi extends BaseAPI {
8096
8096
  * @param {*} [options] Override http request option.
8097
8097
  * @throws {RequiredError}
8098
8098
  */
8099
- calculateForwardKinematic(cell: string, motionGroup: string, tcpPoseRequest: TcpPoseRequest, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<Pose, any>>;
8099
+ calculateForwardKinematic(cell: string, motionGroup: string, tcpPoseRequest: TcpPoseRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Pose, any>>;
8100
8100
  /**
8101
8101
  * 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
8102
  * @summary Nearest JointPosition from TcpPose
@@ -8106,7 +8106,7 @@ declare class MotionGroupKinematicApi extends BaseAPI {
8106
8106
  * @param {*} [options] Override http request option.
8107
8107
  * @throws {RequiredError}
8108
8108
  */
8109
- calculateInverseKinematic(cell: string, motionGroup: string, jointPositionRequest: JointPositionRequest, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<Joints, any>>;
8109
+ calculateInverseKinematic(cell: string, motionGroup: string, jointPositionRequest: JointPositionRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Joints, any>>;
8110
8110
  /**
8111
8111
  * Get the kinematic endpoints provided for the specified motion-group.
8112
8112
  * @summary Capabilities
@@ -8115,7 +8115,7 @@ declare class MotionGroupKinematicApi extends BaseAPI {
8115
8115
  * @param {*} [options] Override http request option.
8116
8116
  * @throws {RequiredError}
8117
8117
  */
8118
- getKinematicCapabilities(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<KinematicServiceCapabilities, any>>;
8118
+ getKinematicCapabilities(cell: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<KinematicServiceCapabilities, any>>;
8119
8119
  }
8120
8120
  /**
8121
8121
  * ProgramApi - axios parameter creator
@@ -8357,7 +8357,7 @@ declare class ProgramApi extends BaseAPI {
8357
8357
  * @param {*} [options] Override http request option.
8358
8358
  * @throws {RequiredError}
8359
8359
  */
8360
- createProgramRunner(cell: string, request: Request, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ProgramRunnerReference, any>>;
8360
+ createProgramRunner(cell: string, request: Request, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProgramRunnerReference, any>>;
8361
8361
  /**
8362
8362
  * 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
8363
  * @summary Execute Program
@@ -8366,7 +8366,7 @@ declare class ProgramApi extends BaseAPI {
8366
8366
  * @param {*} [options] Override http request option.
8367
8367
  * @throws {RequiredError}
8368
8368
  */
8369
- executeProgram(cell: string, codeWithArguments: CodeWithArguments, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ProgramRun, any>>;
8369
+ executeProgram(cell: string, codeWithArguments: CodeWithArguments, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProgramRun, any>>;
8370
8370
  /**
8371
8371
  * 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
8372
  * @summary Get Program Runner
@@ -8375,7 +8375,7 @@ declare class ProgramApi extends BaseAPI {
8375
8375
  * @param {*} [options] Override http request option.
8376
8376
  * @throws {RequiredError}
8377
8377
  */
8378
- getProgramRunner(cell: string, runner: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ProgramRun, any>>;
8378
+ getProgramRunner(cell: string, runner: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProgramRun, any>>;
8379
8379
  /**
8380
8380
  * Get details about all existing program runners.
8381
8381
  * @summary List Program Runners
@@ -8383,7 +8383,7 @@ declare class ProgramApi extends BaseAPI {
8383
8383
  * @param {*} [options] Override http request option.
8384
8384
  * @throws {RequiredError}
8385
8385
  */
8386
- listProgramRunners(cell: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ProgramRunnerReference[], any>>;
8386
+ listProgramRunners(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProgramRunnerReference[], any>>;
8387
8387
  /**
8388
8388
  * Migrate a program ## Parameters See the **Schema** tab for information about the request body
8389
8389
  * @summary Migrate Program
@@ -8392,7 +8392,7 @@ declare class ProgramApi extends BaseAPI {
8392
8392
  * @param {*} [options] Override http request option.
8393
8393
  * @throws {RequiredError}
8394
8394
  */
8395
- migrateProgram(cell: string, request1: Request1, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<string, any>>;
8395
+ migrateProgram(cell: string, request1: Request1, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string, any>>;
8396
8396
  /**
8397
8397
  * 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
8398
  * @summary Plan Program
@@ -8402,7 +8402,7 @@ declare class ProgramApi extends BaseAPI {
8402
8402
  * @param {*} [options] Override http request option.
8403
8403
  * @throws {RequiredError}
8404
8404
  */
8405
- planProgram(cell: string, request: Request, identifier?: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ProgramRun, any>>;
8405
+ planProgram(cell: string, request: Request, identifier?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProgramRun, any>>;
8406
8406
  /**
8407
8407
  * Stop all runners.
8408
8408
  * @summary Stop All Program Runners
@@ -8410,7 +8410,7 @@ declare class ProgramApi extends BaseAPI {
8410
8410
  * @param {*} [options] Override http request option.
8411
8411
  * @throws {RequiredError}
8412
8412
  */
8413
- stopAllProgramRunner(cell: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<any, any>>;
8413
+ stopAllProgramRunner(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<any, any>>;
8414
8414
  /**
8415
8415
  * 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
8416
  * @summary Stop Program Runner
@@ -8419,7 +8419,7 @@ declare class ProgramApi extends BaseAPI {
8419
8419
  * @param {*} [options] Override http request option.
8420
8420
  * @throws {RequiredError}
8421
8421
  */
8422
- stopProgramRunner(cell: string, runner: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
8422
+ stopProgramRunner(cell: string, runner: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8423
8423
  }
8424
8424
  /**
8425
8425
  * ProgramOperatorApi - axios parameter creator
@@ -8664,7 +8664,7 @@ declare class ProgramOperatorApi extends BaseAPI {
8664
8664
  * @param {*} [options] Override http request option.
8665
8665
  * @throws {RequiredError}
8666
8666
  */
8667
- createProgramRun(cell: string, createProgramRunRequest: CreateProgramRunRequest, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<CreateProgramRun200Response, any>>;
8667
+ createProgramRun(cell: string, createProgramRunRequest: CreateProgramRunRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CreateProgramRun200Response, any>>;
8668
8668
  /**
8669
8669
  * <!-- 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
8670
  * @summary Create Trigger
@@ -8673,7 +8673,7 @@ declare class ProgramOperatorApi extends BaseAPI {
8673
8673
  * @param {*} [options] Override http request option.
8674
8674
  * @throws {RequiredError}
8675
8675
  */
8676
- createTrigger(cell: string, createTriggerRequest: CreateTriggerRequest, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<CreateTrigger200Response, any>>;
8676
+ createTrigger(cell: string, createTriggerRequest: CreateTriggerRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CreateTrigger200Response, any>>;
8677
8677
  /**
8678
8678
  * <!-- theme: danger --> > **Experimental** Delete an existing trigger.
8679
8679
  * @summary Delete Trigger
@@ -8682,7 +8682,7 @@ declare class ProgramOperatorApi extends BaseAPI {
8682
8682
  * @param {*} [options] Override http request option.
8683
8683
  * @throws {RequiredError}
8684
8684
  */
8685
- deleteTrigger(trigger: string, cell: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
8685
+ deleteTrigger(trigger: string, cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8686
8686
  /**
8687
8687
  * <!-- 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
8688
  * @summary Get All Program Runs
@@ -8691,7 +8691,7 @@ declare class ProgramOperatorApi extends BaseAPI {
8691
8691
  * @param {*} [options] Override http request option.
8692
8692
  * @throws {RequiredError}
8693
8693
  */
8694
- getAllProgramRuns(cell: string, state?: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<GetAllProgramRuns200Response, any>>;
8694
+ getAllProgramRuns(cell: string, state?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<GetAllProgramRuns200Response, any>>;
8695
8695
  /**
8696
8696
  * <!-- 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
8697
  * @summary Get All Triggers
@@ -8699,7 +8699,7 @@ declare class ProgramOperatorApi extends BaseAPI {
8699
8699
  * @param {*} [options] Override http request option.
8700
8700
  * @throws {RequiredError}
8701
8701
  */
8702
- getAllTriggers(cell: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<GetAllTriggers200Response, any>>;
8702
+ getAllTriggers(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<GetAllTriggers200Response, any>>;
8703
8703
  /**
8704
8704
  * <!-- theme: danger --> > **Experimental** Retrieves detailed information about a specific program run.
8705
8705
  * @summary Get Program Run
@@ -8708,7 +8708,7 @@ declare class ProgramOperatorApi extends BaseAPI {
8708
8708
  * @param {*} [options] Override http request option.
8709
8709
  * @throws {RequiredError}
8710
8710
  */
8711
- getProgramRun(run: string, cell: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ProgramRunObject, any>>;
8711
+ getProgramRun(run: string, cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProgramRunObject, any>>;
8712
8712
  /**
8713
8713
  * <!-- theme: danger --> > **Experimental** Retrieves detailed information about a specific trigger.
8714
8714
  * @summary Get Trigger
@@ -8717,7 +8717,7 @@ declare class ProgramOperatorApi extends BaseAPI {
8717
8717
  * @param {*} [options] Override http request option.
8718
8718
  * @throws {RequiredError}
8719
8719
  */
8720
- getTrigger(trigger: string, cell: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<TriggerObject, any>>;
8720
+ getTrigger(trigger: string, cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<TriggerObject, any>>;
8721
8721
  /**
8722
8722
  * <!-- 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
8723
  * @summary Update Trigger
@@ -8727,7 +8727,7 @@ declare class ProgramOperatorApi extends BaseAPI {
8727
8727
  * @param {*} [options] Override http request option.
8728
8728
  * @throws {RequiredError}
8729
8729
  */
8730
- updateTrigger(trigger: string, cell: string, updateTriggerRequest: UpdateTriggerRequest, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<TriggerObject, any>>;
8730
+ updateTrigger(trigger: string, cell: string, updateTriggerRequest: UpdateTriggerRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<TriggerObject, any>>;
8731
8731
  }
8732
8732
  /**
8733
8733
  * ProgramValuesApi - axios parameter creator
@@ -8943,7 +8943,7 @@ declare class ProgramValuesApi extends BaseAPI {
8943
8943
  * @deprecated
8944
8944
  * @throws {RequiredError}
8945
8945
  */
8946
- clearProgramsValues(cell: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
8946
+ clearProgramsValues(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8947
8947
  /**
8948
8948
  * 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
8949
  * @summary Add Value(s)
@@ -8955,7 +8955,7 @@ declare class ProgramValuesApi extends BaseAPI {
8955
8955
  */
8956
8956
  createProgramsValue(cell: string, requestBody: {
8957
8957
  [key: string]: CollectionValue;
8958
- }, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
8958
+ }, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8959
8959
  /**
8960
8960
  * Delete a value from the database.
8961
8961
  * @summary Delete Value
@@ -8965,7 +8965,7 @@ declare class ProgramValuesApi extends BaseAPI {
8965
8965
  * @deprecated
8966
8966
  * @throws {RequiredError}
8967
8967
  */
8968
- deleteProgramValue(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
8968
+ deleteProgramValue(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
8969
8969
  /**
8970
8970
  * 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
8971
  * @summary Get Value
@@ -8975,7 +8975,7 @@ declare class ProgramValuesApi extends BaseAPI {
8975
8975
  * @deprecated
8976
8976
  * @throws {RequiredError}
8977
8977
  */
8978
- getProgramValue(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ResponseGetValueProgramsValuesKeyGet, any>>;
8978
+ getProgramValue(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ResponseGetValueProgramsValuesKeyGet, any>>;
8979
8979
  /**
8980
8980
  * 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
8981
  * @summary Get Values
@@ -8984,7 +8984,7 @@ declare class ProgramValuesApi extends BaseAPI {
8984
8984
  * @deprecated
8985
8985
  * @throws {RequiredError}
8986
8986
  */
8987
- listProgramsValues(cell: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<{
8987
+ listProgramsValues(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
8988
8988
  [key: string]: ResponseGetValuesProgramsValuesGetValue;
8989
8989
  }, any>>;
8990
8990
  /**
@@ -8997,7 +8997,7 @@ declare class ProgramValuesApi extends BaseAPI {
8997
8997
  * @deprecated
8998
8998
  * @throws {RequiredError}
8999
8999
  */
9000
- updateProgramValue(cell: string, key: string, value: Value, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
9000
+ updateProgramValue(cell: string, key: string, value: Value, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
9001
9001
  }
9002
9002
  /**
9003
9003
  * StoreCollisionComponentsApi - axios parameter creator
@@ -9432,7 +9432,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
9432
9432
  * @param {*} [options] Override http request option.
9433
9433
  * @throws {RequiredError}
9434
9434
  */
9435
- deleteStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
9435
+ deleteStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
9436
9436
  /**
9437
9437
  * Deletes the stored link chain. <!-- theme: danger --> > This will delete persistently stored data.
9438
9438
  * @summary Delete Link Chain
@@ -9441,7 +9441,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
9441
9441
  * @param {*} [options] Override http request option.
9442
9442
  * @throws {RequiredError}
9443
9443
  */
9444
- deleteStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
9444
+ deleteStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
9445
9445
  /**
9446
9446
  * Deletes the stored tool. <!-- theme: danger --> > This will delete persistently stored data.
9447
9447
  * @summary Delete Tool
@@ -9450,7 +9450,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
9450
9450
  * @param {*} [options] Override http request option.
9451
9451
  * @throws {RequiredError}
9452
9452
  */
9453
- deleteStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
9453
+ deleteStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
9454
9454
  /**
9455
9455
  * 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
9456
  * @summary Get Default Link Chain
@@ -9460,7 +9460,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
9460
9460
  * @deprecated
9461
9461
  * @throws {RequiredError}
9462
9462
  */
9463
- getDefaultLinkChain(cell: string, motionGroupModel: GetDefaultLinkChainMotionGroupModelEnum, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<{
9463
+ getDefaultLinkChain(cell: string, motionGroupModel: GetDefaultLinkChainMotionGroupModelEnum, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
9464
9464
  [key: string]: Collider;
9465
9465
  }[], any>>;
9466
9466
  /**
@@ -9471,7 +9471,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
9471
9471
  * @param {*} [options] Override http request option.
9472
9472
  * @throws {RequiredError}
9473
9473
  */
9474
- getStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<Collider, any>>;
9474
+ getStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Collider, any>>;
9475
9475
  /**
9476
9476
  * Returns the collision link chain.
9477
9477
  * @summary Get Link Chain
@@ -9480,7 +9480,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
9480
9480
  * @param {*} [options] Override http request option.
9481
9481
  * @throws {RequiredError}
9482
9482
  */
9483
- getStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<{
9483
+ getStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
9484
9484
  [key: string]: Collider;
9485
9485
  }[], any>>;
9486
9486
  /**
@@ -9491,7 +9491,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
9491
9491
  * @param {*} [options] Override http request option.
9492
9492
  * @throws {RequiredError}
9493
9493
  */
9494
- getStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<{
9494
+ getStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
9495
9495
  [key: string]: Collider;
9496
9496
  }, any>>;
9497
9497
  /**
@@ -9501,7 +9501,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
9501
9501
  * @param {*} [options] Override http request option.
9502
9502
  * @throws {RequiredError}
9503
9503
  */
9504
- listCollisionLinkChains(cell: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<{
9504
+ listCollisionLinkChains(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
9505
9505
  [key: string]: {
9506
9506
  [key: string]: Collider;
9507
9507
  }[];
@@ -9513,7 +9513,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
9513
9513
  * @param {*} [options] Override http request option.
9514
9514
  * @throws {RequiredError}
9515
9515
  */
9516
- listStoredColliders(cell: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<{
9516
+ listStoredColliders(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
9517
9517
  [key: string]: Collider;
9518
9518
  }, any>>;
9519
9519
  /**
@@ -9523,7 +9523,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
9523
9523
  * @param {*} [options] Override http request option.
9524
9524
  * @throws {RequiredError}
9525
9525
  */
9526
- listStoredCollisionTools(cell: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<{
9526
+ listStoredCollisionTools(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
9527
9527
  [key: string]: {
9528
9528
  [key: string]: Collider;
9529
9529
  };
@@ -9537,7 +9537,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
9537
9537
  * @param {*} [options] Override http request option.
9538
9538
  * @throws {RequiredError}
9539
9539
  */
9540
- storeCollider(cell: string, collider: string, collider2: Collider, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<Collider, any>>;
9540
+ storeCollider(cell: string, collider: string, collider2: Collider, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Collider, any>>;
9541
9541
  /**
9542
9542
  * Stores link chain. If the link chain does not exist, it will be created. If the link chain exists, it will be updated.
9543
9543
  * @summary Store Link Chain
@@ -9549,7 +9549,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
9549
9549
  */
9550
9550
  storeCollisionLinkChain(cell: string, linkChain: string, collider: Array<{
9551
9551
  [key: string]: Collider;
9552
- }>, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<{
9552
+ }>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
9553
9553
  [key: string]: Collider;
9554
9554
  }[], any>>;
9555
9555
  /**
@@ -9563,7 +9563,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
9563
9563
  */
9564
9564
  storeCollisionTool(cell: string, tool: string, requestBody: {
9565
9565
  [key: string]: Collider;
9566
- }, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<{
9566
+ }, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
9567
9567
  [key: string]: Collider;
9568
9568
  }, any>>;
9569
9569
  }
@@ -9875,7 +9875,7 @@ declare class StoreCollisionScenesApi extends BaseAPI {
9875
9875
  * @param {*} [options] Override http request option.
9876
9876
  * @throws {RequiredError}
9877
9877
  */
9878
- deleteStoredCollisionScene(cell: string, scene: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
9878
+ deleteStoredCollisionScene(cell: string, scene: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
9879
9879
  /**
9880
9880
  * Returns the stored scene.
9881
9881
  * @summary Get Scene
@@ -9884,7 +9884,7 @@ declare class StoreCollisionScenesApi extends BaseAPI {
9884
9884
  * @param {*} [options] Override http request option.
9885
9885
  * @throws {RequiredError}
9886
9886
  */
9887
- getStoredCollisionScene(cell: string, scene: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<CollisionScene, any>>;
9887
+ getStoredCollisionScene(cell: string, scene: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CollisionScene, any>>;
9888
9888
  /**
9889
9889
  * Returns a list of stored scenes.
9890
9890
  * @summary List Scenes
@@ -9892,7 +9892,7 @@ declare class StoreCollisionScenesApi extends BaseAPI {
9892
9892
  * @param {*} [options] Override http request option.
9893
9893
  * @throws {RequiredError}
9894
9894
  */
9895
- listStoredCollisionScenes(cell: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<{
9895
+ listStoredCollisionScenes(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
9896
9896
  [key: string]: CollisionScene;
9897
9897
  }, any>>;
9898
9898
  /**
@@ -9904,7 +9904,7 @@ declare class StoreCollisionScenesApi extends BaseAPI {
9904
9904
  * @param {*} [options] Override http request option.
9905
9905
  * @throws {RequiredError}
9906
9906
  */
9907
- storeCollisionScene(cell: string, scene: string, collisionSceneAssembly: CollisionSceneAssembly, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<CollisionScene, any>>;
9907
+ storeCollisionScene(cell: string, scene: string, collisionSceneAssembly: CollisionSceneAssembly, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CollisionScene, any>>;
9908
9908
  }
9909
9909
  /**
9910
9910
  * StoreObjectApi - axios parameter creator
@@ -10100,7 +10100,7 @@ declare class StoreObjectApi extends BaseAPI {
10100
10100
  * @param {*} [options] Override http request option.
10101
10101
  * @throws {RequiredError}
10102
10102
  */
10103
- clearAllObjects(cell: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
10103
+ clearAllObjects(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
10104
10104
  /**
10105
10105
  * Delete an object <!-- theme: danger --> > This will delete persistently stored data.
10106
10106
  * @summary Delete Object
@@ -10109,7 +10109,7 @@ declare class StoreObjectApi extends BaseAPI {
10109
10109
  * @param {*} [options] Override http request option.
10110
10110
  * @throws {RequiredError}
10111
10111
  */
10112
- deleteObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
10112
+ deleteObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
10113
10113
  /**
10114
10114
  * Get the object. This request returns the object and any metadata attached to it.
10115
10115
  * @summary Get Object
@@ -10118,7 +10118,7 @@ declare class StoreObjectApi extends BaseAPI {
10118
10118
  * @param {*} [options] Override http request option.
10119
10119
  * @throws {RequiredError}
10120
10120
  */
10121
- getObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<File, any>>;
10121
+ getObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<File, any>>;
10122
10122
  /**
10123
10123
  * Get object metadata. Objects can be large. Therefore this request only returns metadata without fetching the object\'s content.
10124
10124
  * @summary Get Object Metadata
@@ -10127,7 +10127,7 @@ declare class StoreObjectApi extends BaseAPI {
10127
10127
  * @param {*} [options] Override http request option.
10128
10128
  * @throws {RequiredError}
10129
10129
  */
10130
- getObjectMetadata(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
10130
+ getObjectMetadata(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
10131
10131
  /**
10132
10132
  * List the keys for all objects.
10133
10133
  * @summary List all Object Keys
@@ -10135,7 +10135,7 @@ declare class StoreObjectApi extends BaseAPI {
10135
10135
  * @param {*} [options] Override http request option.
10136
10136
  * @throws {RequiredError}
10137
10137
  */
10138
- listAllObjectKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<string[], any>>;
10138
+ listAllObjectKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
10139
10139
  /**
10140
10140
  * 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
10141
  * @summary Store Object
@@ -10148,7 +10148,7 @@ declare class StoreObjectApi extends BaseAPI {
10148
10148
  */
10149
10149
  storeObject(cell: string, key: string, xMetadata?: {
10150
10150
  [key: string]: string;
10151
- }, anyValue?: any, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
10151
+ }, anyValue?: any, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
10152
10152
  }
10153
10153
  /**
10154
10154
  * SystemApi - axios parameter creator
@@ -10287,28 +10287,28 @@ declare class SystemApi extends BaseAPI {
10287
10287
  * @param {*} [options] Override http request option.
10288
10288
  * @throws {RequiredError}
10289
10289
  */
10290
- checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<string, any>>;
10290
+ checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string, any>>;
10291
10291
  /**
10292
10292
  * 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
10293
  * @summary Download Diagnosis Package
10294
10294
  * @param {*} [options] Override http request option.
10295
10295
  * @throws {RequiredError}
10296
10296
  */
10297
- getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<File, any>>;
10297
+ getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<File, any>>;
10298
10298
  /**
10299
10299
  * Get the status of all system services.
10300
10300
  * @summary Wandelbots NOVA status
10301
10301
  * @param {*} [options] Override http request option.
10302
10302
  * @throws {RequiredError}
10303
10303
  */
10304
- getSystemStatus(options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ServiceStatus[], any>>;
10304
+ getSystemStatus(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ServiceStatus[], any>>;
10305
10305
  /**
10306
10306
  * Get the current Wandelbots NOVA version.
10307
10307
  * @summary Wandelbots NOVA Version
10308
10308
  * @param {*} [options] Override http request option.
10309
10309
  * @throws {RequiredError}
10310
10310
  */
10311
- getSystemVersion(options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<string, any>>;
10311
+ getSystemVersion(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string, any>>;
10312
10312
  /**
10313
10313
  * 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
10314
  * @summary Update Wandelbots NOVA version
@@ -10316,7 +10316,7 @@ declare class SystemApi extends BaseAPI {
10316
10316
  * @param {*} [options] Override http request option.
10317
10317
  * @throws {RequiredError}
10318
10318
  */
10319
- updateNovaVersion(updateNovaVersionRequest: UpdateNovaVersionRequest, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<void, any>>;
10319
+ updateNovaVersion(updateNovaVersionRequest: UpdateNovaVersionRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
10320
10320
  }
10321
10321
  /**
10322
10322
  * VersionApi - axios parameter creator
@@ -10364,7 +10364,7 @@ declare class VersionApi extends BaseAPI {
10364
10364
  * @param {*} [options] Override http request option.
10365
10365
  * @throws {RequiredError}
10366
10366
  */
10367
- getApiVersion(options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<ApiVersion, any>>;
10367
+ getApiVersion(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ApiVersion, any>>;
10368
10368
  }
10369
10369
  /**
10370
10370
  * VirtualRobotApi - axios parameter creator
@@ -10580,7 +10580,7 @@ declare class VirtualRobotApi extends BaseAPI {
10580
10580
  * @param {*} [options] Override http request option.
10581
10581
  * @throws {RequiredError}
10582
10582
  */
10583
- getMotionGroupState(cell: string, controller: string, id: number, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<MotionGroupJoints, any>>;
10583
+ getMotionGroupState(cell: string, controller: string, id: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupJoints, any>>;
10584
10584
  /**
10585
10585
  * Gets information on the motion group.
10586
10586
  * @summary Motion Group Description
@@ -10589,7 +10589,7 @@ declare class VirtualRobotApi extends BaseAPI {
10589
10589
  * @param {*} [options] Override http request option.
10590
10590
  * @throws {RequiredError}
10591
10591
  */
10592
- getMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<MotionGroupInfos, any>>;
10592
+ getMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupInfos, any>>;
10593
10593
  /**
10594
10594
  * Gets the description and value of a virtual controller I/O.
10595
10595
  * @summary Get I/O
@@ -10599,7 +10599,7 @@ declare class VirtualRobotApi extends BaseAPI {
10599
10599
  * @param {*} [options] Override http request option.
10600
10600
  * @throws {RequiredError}
10601
10601
  */
10602
- getVirtualRobotIOValue(cell: string, controller: string, io: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<IO, any>>;
10602
+ getVirtualRobotIOValue(cell: string, controller: string, io: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IO, any>>;
10603
10603
  /**
10604
10604
  * 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
10605
  * @summary List Inputs/Outputs
@@ -10608,7 +10608,7 @@ declare class VirtualRobotApi extends BaseAPI {
10608
10608
  * @param {*} [options] Override http request option.
10609
10609
  * @throws {RequiredError}
10610
10610
  */
10611
- listIOs(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<IOs, any>>;
10611
+ listIOs(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IOs, any>>;
10612
10612
  /**
10613
10613
  * 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
10614
  * @summary Set Motion Group State
@@ -10619,7 +10619,7 @@ declare class VirtualRobotApi extends BaseAPI {
10619
10619
  * @param {*} [options] Override http request option.
10620
10620
  * @throws {RequiredError}
10621
10621
  */
10622
- setMotionGroupState(cell: string, controller: string, id: number, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<object, any>>;
10622
+ setMotionGroupState(cell: string, controller: string, id: number, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<object, any>>;
10623
10623
  /**
10624
10624
  * Sets the value of a virtual controller I/O.
10625
10625
  * @summary Set I/O
@@ -10632,7 +10632,7 @@ declare class VirtualRobotApi extends BaseAPI {
10632
10632
  * @param {*} [options] Override http request option.
10633
10633
  * @throws {RequiredError}
10634
10634
  */
10635
- setVirtualRobotIOValue(cell: string, controller: string, io: string, bool?: boolean, integer?: string, _double?: number, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<object, any>>;
10635
+ setVirtualRobotIOValue(cell: string, controller: string, io: string, bool?: boolean, integer?: string, _double?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<object, any>>;
10636
10636
  }
10637
10637
  /**
10638
10638
  * VirtualRobotBehaviorApi - axios parameter creator
@@ -10755,7 +10755,7 @@ declare class VirtualRobotBehaviorApi extends BaseAPI {
10755
10755
  * @param {*} [options] Override http request option.
10756
10756
  * @throws {RequiredError}
10757
10757
  */
10758
- externalJointsStream(cell: string, controller: string, externalJointStreamDatapoint: ExternalJointStreamDatapoint, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<MotionGroupJoints, any>>;
10758
+ externalJointsStream(cell: string, controller: string, externalJointStreamDatapoint: ExternalJointStreamDatapoint, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupJoints, any>>;
10759
10759
  /**
10760
10760
  * Get the current robot motion group behavior - please see the setter [setMotionGroupBehavior](setMotionGroupBehavior) and the enum for details.
10761
10761
  * @summary Behavior
@@ -10765,7 +10765,7 @@ declare class VirtualRobotBehaviorApi extends BaseAPI {
10765
10765
  * @param {*} [options] Override http request option.
10766
10766
  * @throws {RequiredError}
10767
10767
  */
10768
- getMotionGroupBehavior(cell: string, controller: string, id: number, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<MotionGroupBehaviorGetter, any>>;
10768
+ getMotionGroupBehavior(cell: string, controller: string, id: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupBehaviorGetter, any>>;
10769
10769
  /**
10770
10770
  * Switch robot motion group behavior.
10771
10771
  * @summary Switch Behavior
@@ -10776,7 +10776,7 @@ declare class VirtualRobotBehaviorApi extends BaseAPI {
10776
10776
  * @param {*} [options] Override http request option.
10777
10777
  * @throws {RequiredError}
10778
10778
  */
10779
- setMotionGroupBehavior(cell: string, controller: string, id: number, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<object, any>>;
10779
+ setMotionGroupBehavior(cell: string, controller: string, id: number, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<object, any>>;
10780
10780
  }
10781
10781
  /**
10782
10782
  * VirtualRobotModeApi - axios parameter creator
@@ -10970,7 +10970,7 @@ declare class VirtualRobotModeApi extends BaseAPI {
10970
10970
  * @param {*} [options] Override http request option.
10971
10971
  * @throws {RequiredError}
10972
10972
  */
10973
- getCycleTime(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<CycleTime, any>>;
10973
+ getCycleTime(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CycleTime, any>>;
10974
10974
  /**
10975
10975
  * 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
10976
  * @summary Get E-Stop State
@@ -10979,7 +10979,7 @@ declare class VirtualRobotModeApi extends BaseAPI {
10979
10979
  * @param {*} [options] Override http request option.
10980
10980
  * @throws {RequiredError}
10981
10981
  */
10982
- getEStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<Flag, any>>;
10982
+ getEStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Flag, any>>;
10983
10983
  /**
10984
10984
  * 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
10985
  * @summary Get Operation Mode
@@ -10988,7 +10988,7 @@ declare class VirtualRobotModeApi extends BaseAPI {
10988
10988
  * @param {*} [options] Override http request option.
10989
10989
  * @throws {RequiredError}
10990
10990
  */
10991
- getOperationMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<OpMode, any>>;
10991
+ getOperationMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<OpMode, any>>;
10992
10992
  /**
10993
10993
  * 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
10994
  * @summary Push E-Stop
@@ -10997,7 +10997,7 @@ declare class VirtualRobotModeApi extends BaseAPI {
10997
10997
  * @param {*} [options] Override http request option.
10998
10998
  * @throws {RequiredError}
10999
10999
  */
11000
- pushEStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<object, any>>;
11000
+ pushEStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<object, any>>;
11001
11001
  /**
11002
11002
  * 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
11003
  * @summary Release E-Stop
@@ -11006,7 +11006,7 @@ declare class VirtualRobotModeApi extends BaseAPI {
11006
11006
  * @param {*} [options] Override http request option.
11007
11007
  * @throws {RequiredError}
11008
11008
  */
11009
- releaseEStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<object, any>>;
11009
+ releaseEStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<object, any>>;
11010
11010
  /**
11011
11011
  * 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
11012
  * @summary Set Operation Mode
@@ -11016,7 +11016,7 @@ declare class VirtualRobotModeApi extends BaseAPI {
11016
11016
  * @param {*} [options] Override http request option.
11017
11017
  * @throws {RequiredError}
11018
11018
  */
11019
- setOperationMode(cell: string, controller: string, mode: SetOperationModeModeEnum, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<object, any>>;
11019
+ setOperationMode(cell: string, controller: string, mode: SetOperationModeModeEnum, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<object, any>>;
11020
11020
  }
11021
11021
  declare const SetOperationModeModeEnum: {
11022
11022
  readonly OperationModeManual: "OPERATION_MODE_MANUAL";
@@ -11300,7 +11300,7 @@ declare class VirtualRobotSetupApi extends BaseAPI {
11300
11300
  * @param {*} [options] Override http request option.
11301
11301
  * @throws {RequiredError}
11302
11302
  */
11303
- addVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<object, any>>;
11303
+ addVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<object, any>>;
11304
11304
  /**
11305
11305
  * 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
11306
  * @summary Add TCP
@@ -11311,7 +11311,7 @@ declare class VirtualRobotSetupApi extends BaseAPI {
11311
11311
  * @param {*} [options] Override http request option.
11312
11312
  * @throws {RequiredError}
11313
11313
  */
11314
- addVirtualRobotTcp(cell: string, controller: string, id: number, robotTcp: RobotTcp, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<object, any>>;
11314
+ addVirtualRobotTcp(cell: string, controller: string, id: number, robotTcp: RobotTcp, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<object, any>>;
11315
11315
  /**
11316
11316
  * 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
11317
  * @summary Remove Coordinate System
@@ -11322,7 +11322,7 @@ declare class VirtualRobotSetupApi extends BaseAPI {
11322
11322
  * @param {*} [options] Override http request option.
11323
11323
  * @throws {RequiredError}
11324
11324
  */
11325
- deleteVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<object, any>>;
11325
+ deleteVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<object, any>>;
11326
11326
  /**
11327
11327
  * 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
11328
  * @summary Remove TCP
@@ -11333,7 +11333,7 @@ declare class VirtualRobotSetupApi extends BaseAPI {
11333
11333
  * @param {*} [options] Override http request option.
11334
11334
  * @throws {RequiredError}
11335
11335
  */
11336
- deleteVirtualRobotTcp(cell: string, controller: string, id: number, tcp: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<object, any>>;
11336
+ deleteVirtualRobotTcp(cell: string, controller: string, id: number, tcp: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<object, any>>;
11337
11337
  /**
11338
11338
  * Gets motion group mounting. The motion group is based on the origin of the returned coordinate system.
11339
11339
  * @summary Get Mounting
@@ -11343,7 +11343,7 @@ declare class VirtualRobotSetupApi extends BaseAPI {
11343
11343
  * @param {*} [options] Override http request option.
11344
11344
  * @throws {RequiredError}
11345
11345
  */
11346
- getVirtualRobotMounting(cell: string, controller: string, id: number, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<CoordinateSystem, any>>;
11346
+ getVirtualRobotMounting(cell: string, controller: string, id: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem, any>>;
11347
11347
  /**
11348
11348
  * Lists all coordinate systems on the robot controller.
11349
11349
  * @summary List Coordinate Systems
@@ -11352,7 +11352,7 @@ declare class VirtualRobotSetupApi extends BaseAPI {
11352
11352
  * @param {*} [options] Override http request option.
11353
11353
  * @throws {RequiredError}
11354
11354
  */
11355
- listVirtualRobotCoordinateSystems(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<CoordinateSystems, any>>;
11355
+ listVirtualRobotCoordinateSystems(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystems, any>>;
11356
11356
  /**
11357
11357
  * Lists TCPs of the motion group. An empty TCP list is valid, for example for external axes.
11358
11358
  * @summary List TCPs
@@ -11362,7 +11362,7 @@ declare class VirtualRobotSetupApi extends BaseAPI {
11362
11362
  * @param {*} [options] Override http request option.
11363
11363
  * @throws {RequiredError}
11364
11364
  */
11365
- listVirtualRobotTcps(cell: string, controller: string, id: number, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<RobotTcps, any>>;
11365
+ listVirtualRobotTcps(cell: string, controller: string, id: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotTcps, any>>;
11366
11366
  /**
11367
11367
  * 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
11368
  * @summary Set Mounting
@@ -11373,7 +11373,7 @@ declare class VirtualRobotSetupApi extends BaseAPI {
11373
11373
  * @param {*} [options] Override http request option.
11374
11374
  * @throws {RequiredError}
11375
11375
  */
11376
- setVirtualRobotMounting(cell: string, controller: string, id: number, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<axios129.AxiosResponse<CoordinateSystem, any>>;
11376
+ setVirtualRobotMounting(cell: string, controller: string, id: number, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem, any>>;
11377
11377
  }
11378
11378
  //#endregion
11379
11379
  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 };