@wandelbots/nova-api 25.6.0-dev.30 → 25.6.0-dev.31

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/v2/api.ts CHANGED
@@ -754,92 +754,6 @@ export interface ContainerStorage {
754
754
  */
755
755
  'capacity': string;
756
756
  }
757
- /**
758
- * The data type to describe a robot controller.
759
- * @export
760
- * @interface Controller
761
- */
762
- export interface Controller {
763
- /**
764
- * The unique identifier to address the robot controller in the cell.
765
- * @type {string}
766
- * @memberof Controller
767
- */
768
- 'controller': string;
769
- /**
770
- * The unique identifier to address a robot controller model when configuring the robot controller. Used for evaluation of the robot controller model and to ensure communication with the expected robot controller type.
771
- * @type {string}
772
- * @memberof Controller
773
- */
774
- 'model_name': string;
775
- /**
776
- * Resolvable host name or IP address that connects to the robot controller.
777
- * @type {string}
778
- * @memberof Controller
779
- */
780
- 'host': string;
781
- /**
782
- * True if the user has actively confirmed that it is allowed to install required communication software onto the robot controller. NOTE: Installing third party software on a robot controller can result in liability issues in regard to the actual certified state of the robot system. Please contact your company\'s legal responsible before installing third party software.
783
- * @type {boolean}
784
- * @memberof Controller
785
- */
786
- 'allow_software_install_on_controller': boolean;
787
- /**
788
- * The list of physical connected motion groups as detected by the controller.
789
- * @type {Array<MotionGroupInstance>}
790
- * @memberof Controller
791
- */
792
- 'motion_groups': Array<MotionGroupInstance>;
793
- /**
794
- *
795
- * @type {VersionNumber}
796
- * @memberof Controller
797
- */
798
- 'vendor_software_version'?: VersionNumber;
799
- /**
800
- * Set to true if there was an error while inspecting this instance, e.g. The robot controller is not reachable due to missing network connection or turned off. The instance remains configured but can\'t provide information on the robot controller.
801
- * @type {boolean}
802
- * @memberof Controller
803
- */
804
- 'has_error': boolean;
805
- /**
806
- * If has_error is true, error_details provides detailed background information about the error.
807
- * @type {string}
808
- * @memberof Controller
809
- */
810
- 'error_details'?: string;
811
- /**
812
- * Can this controller be moved through freedrive (true), or not (false).
813
- * @type {boolean}
814
- * @memberof Controller
815
- */
816
- 'supports_freedrive': boolean;
817
- /**
818
- * Can this controller be controlled with NOVA (true) or is it only possible to read data (false).
819
- * @type {boolean}
820
- * @memberof Controller
821
- */
822
- 'supports_control': boolean;
823
- /**
824
- * True if NOVA supports reading safety zone-, tool- and link-geometries for this motion group. Safety zones are used to define areas where the robot should slow down or stop. If false, NOVA can not guarantuee that the executed motions respect safety zones defined by the controller.
825
- * @type {boolean}
826
- * @memberof Controller
827
- */
828
- 'supports_safety_zones': boolean;
829
- }
830
- /**
831
- * The list of configured robot controllers.
832
- * @export
833
- * @interface ControllersList
834
- */
835
- export interface ControllersList {
836
- /**
837
- *
838
- * @type {Array<Controller>}
839
- * @memberof ControllersList
840
- */
841
- 'controllers': Array<Controller>;
842
- }
843
757
  /**
844
758
  * Defines a convex hull encapsulating a set of vertices.
845
759
  * @export
@@ -2566,49 +2480,6 @@ export interface MotionGroupInfos {
2566
2480
  */
2567
2481
  'motion_groups': Array<MotionGroupInfo>;
2568
2482
  }
2569
- /**
2570
- * The data type describes the physically connected motion groups on a robot controller, e.g., a robot arm.
2571
- * @export
2572
- * @interface MotionGroupInstance
2573
- */
2574
- export interface MotionGroupInstance {
2575
- /**
2576
- * Identifier of the motion group.
2577
- * @type {string}
2578
- * @memberof MotionGroupInstance
2579
- */
2580
- 'motion_group': string;
2581
- /**
2582
- * Identifier of the robot controller the motion group is attached to.
2583
- * @type {string}
2584
- * @memberof MotionGroupInstance
2585
- */
2586
- 'controller': string;
2587
- /**
2588
- * The name of the motion group has on the robot controller.
2589
- * @type {string}
2590
- * @memberof MotionGroupInstance
2591
- */
2592
- 'name_from_controller': string;
2593
- /**
2594
- * The robot controller model, if available. Usable for frontend 3D visualization.
2595
- * @type {string}
2596
- * @memberof MotionGroupInstance
2597
- */
2598
- 'model_from_controller': string;
2599
- /**
2600
- * The serial number of the motion group, if available. If not available, the serial number of the robot controller. if available. If not available, then empty.
2601
- * @type {string}
2602
- * @memberof MotionGroupInstance
2603
- */
2604
- 'serial_number'?: string;
2605
- /**
2606
- * True if NOVA supports inverse kinematics for this motion group. Inverse kinematics is used to calculate the joint angles from the end effector position. If inverse kinematics is not supported, cartesian jogging is not possible.
2607
- * @type {boolean}
2608
- * @memberof MotionGroupInstance
2609
- */
2610
- 'has_inverse_kinematics': boolean;
2611
- }
2612
2483
  /**
2613
2484
  * Ensure to provide one value for each joint. See [getMotionGroups](getMotionGroups) for the number of joints. Everything but positions is optional.
2614
2485
  * @export
@@ -4719,61 +4590,6 @@ export interface ValidationError2 {
4719
4590
  */
4720
4591
  export type ValidationErrorLocInner = number | string;
4721
4592
 
4722
- /**
4723
- * A generic representation of a version number.
4724
- * @export
4725
- * @interface VersionNumber
4726
- */
4727
- export interface VersionNumber {
4728
- /**
4729
- *
4730
- * @type {number}
4731
- * @memberof VersionNumber
4732
- */
4733
- 'major_version': number;
4734
- /**
4735
- *
4736
- * @type {number}
4737
- * @memberof VersionNumber
4738
- */
4739
- 'minor_version'?: number;
4740
- /**
4741
- *
4742
- * @type {number}
4743
- * @memberof VersionNumber
4744
- */
4745
- 'build_version'?: number;
4746
- /**
4747
- *
4748
- * @type {number}
4749
- * @memberof VersionNumber
4750
- */
4751
- 'bugfix_version'?: number;
4752
- /**
4753
- * If minor version is a wildcard set to true.
4754
- * @type {boolean}
4755
- * @memberof VersionNumber
4756
- */
4757
- 'minor_version_wildcard'?: boolean;
4758
- /**
4759
- * If build version is a wildcard set to true.
4760
- * @type {boolean}
4761
- * @memberof VersionNumber
4762
- */
4763
- 'build_version_wildcard'?: boolean;
4764
- /**
4765
- * If bugfix version is a wildcard set to true.
4766
- * @type {boolean}
4767
- * @memberof VersionNumber
4768
- */
4769
- 'bugfix_version_wildcard'?: boolean;
4770
- /**
4771
- * A string representation of the version e.g. 1.1.x.x.
4772
- * @type {string}
4773
- * @memberof VersionNumber
4774
- */
4775
- 'string_version'?: string;
4776
- }
4777
4593
  /**
4778
4594
  * The configuration of a virtual robot controller has to contain the manufacturer string, an optional joint position string array and either a type or the full JSON configuration. The JSON config of a physical controller can be obtained via `/cells/{cell}/controllers/{controller}/virtual-robot-configuration`
4779
4595
  * @export
@@ -6876,17 +6692,22 @@ export const ControllerApiAxiosParamCreator = function (configuration?: Configur
6876
6692
  };
6877
6693
  },
6878
6694
  /**
6879
- * List all configured robot controllers.
6880
- * @summary List Descriptions
6695
+ * Lists all specifications of coordinate systems from robot controllers. Use parameter orientation_type to get the orientation part of the transformation offset of the coordinate system returned in the requested orientation notation. If parameter orientation_type is not set, the orientation part of the transformation offset of the coordinate system is returned in rotation vector notation. 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.
6696
+ * @summary List Coordinate Systems
6881
6697
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6698
+ * @param {string} controller Unique identifier to address a controller in the cell.
6699
+ * @param {OrientationType} [orientationType]
6882
6700
  * @param {*} [options] Override http request option.
6883
6701
  * @throws {RequiredError}
6884
6702
  */
6885
- listControllers: async (cell: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
6703
+ listCoordinateSystems: async (cell: string, controller: string, orientationType?: OrientationType, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
6886
6704
  // verify required parameter 'cell' is not null or undefined
6887
- assertParamExists('listControllers', 'cell', cell)
6888
- const localVarPath = `/cells/{cell}/controllers`
6889
- .replace(`{${"cell"}}`, encodeURIComponent(String(cell)));
6705
+ assertParamExists('listCoordinateSystems', 'cell', cell)
6706
+ // verify required parameter 'controller' is not null or undefined
6707
+ assertParamExists('listCoordinateSystems', 'controller', controller)
6708
+ const localVarPath = `/cells/{cell}/controllers/{controller}/coordinate-systems`
6709
+ .replace(`{${"cell"}}`, encodeURIComponent(String(cell)))
6710
+ .replace(`{${"controller"}}`, encodeURIComponent(String(controller)));
6890
6711
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
6891
6712
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
6892
6713
  let baseOptions;
@@ -6906,6 +6727,10 @@ export const ControllerApiAxiosParamCreator = function (configuration?: Configur
6906
6727
  // http bearer authentication required
6907
6728
  await setBearerAuthToObject(localVarHeaderParameter, configuration)
6908
6729
 
6730
+ if (orientationType !== undefined) {
6731
+ localVarQueryParameter['orientation_type'] = orientationType;
6732
+ }
6733
+
6909
6734
 
6910
6735
 
6911
6736
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -6918,22 +6743,17 @@ export const ControllerApiAxiosParamCreator = function (configuration?: Configur
6918
6743
  };
6919
6744
  },
6920
6745
  /**
6921
- * Lists all specifications of coordinate systems from robot controllers. Use parameter orientation_type to get the orientation part of the transformation offset of the coordinate system returned in the requested orientation notation. If parameter orientation_type is not set, the orientation part of the transformation offset of the coordinate system is returned in rotation vector notation. 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.
6922
- * @summary List Coordinate Systems
6746
+ * List the names of all deployed robot controllers.
6747
+ * @summary List Robot Controllers
6923
6748
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6924
- * @param {string} controller Unique identifier to address a controller in the cell.
6925
- * @param {OrientationType} [orientationType]
6926
6749
  * @param {*} [options] Override http request option.
6927
6750
  * @throws {RequiredError}
6928
6751
  */
6929
- listCoordinateSystems: async (cell: string, controller: string, orientationType?: OrientationType, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
6752
+ listRobotControllers: async (cell: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
6930
6753
  // verify required parameter 'cell' is not null or undefined
6931
- assertParamExists('listCoordinateSystems', 'cell', cell)
6932
- // verify required parameter 'controller' is not null or undefined
6933
- assertParamExists('listCoordinateSystems', 'controller', controller)
6934
- const localVarPath = `/cells/{cell}/controllers/{controller}/coordinate-systems`
6935
- .replace(`{${"cell"}}`, encodeURIComponent(String(cell)))
6936
- .replace(`{${"controller"}}`, encodeURIComponent(String(controller)));
6754
+ assertParamExists('listRobotControllers', 'cell', cell)
6755
+ const localVarPath = `/cells/{cell}/controllers`
6756
+ .replace(`{${"cell"}}`, encodeURIComponent(String(cell)));
6937
6757
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
6938
6758
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
6939
6759
  let baseOptions;
@@ -6953,10 +6773,6 @@ export const ControllerApiAxiosParamCreator = function (configuration?: Configur
6953
6773
  // http bearer authentication required
6954
6774
  await setBearerAuthToObject(localVarHeaderParameter, configuration)
6955
6775
 
6956
- if (orientationType !== undefined) {
6957
- localVarQueryParameter['orientation_type'] = orientationType;
6958
- }
6959
-
6960
6776
 
6961
6777
 
6962
6778
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -7307,31 +7123,31 @@ export const ControllerApiFp = function(configuration?: Configuration) {
7307
7123
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
7308
7124
  },
7309
7125
  /**
7310
- * List all configured robot controllers.
7311
- * @summary List Descriptions
7126
+ * Lists all specifications of coordinate systems from robot controllers. Use parameter orientation_type to get the orientation part of the transformation offset of the coordinate system returned in the requested orientation notation. If parameter orientation_type is not set, the orientation part of the transformation offset of the coordinate system is returned in rotation vector notation. 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.
7127
+ * @summary List Coordinate Systems
7312
7128
  * @param {string} cell Unique identifier addressing a cell in all API calls.
7129
+ * @param {string} controller Unique identifier to address a controller in the cell.
7130
+ * @param {OrientationType} [orientationType]
7313
7131
  * @param {*} [options] Override http request option.
7314
7132
  * @throws {RequiredError}
7315
7133
  */
7316
- async listControllers(cell: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ControllersList>> {
7317
- const localVarAxiosArgs = await localVarAxiosParamCreator.listControllers(cell, options);
7134
+ async listCoordinateSystems(cell: string, controller: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListCoordinateSystemsResponse>> {
7135
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listCoordinateSystems(cell, controller, orientationType, options);
7318
7136
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
7319
- const localVarOperationServerBasePath = operationServerMap['ControllerApi.listControllers']?.[localVarOperationServerIndex]?.url;
7137
+ const localVarOperationServerBasePath = operationServerMap['ControllerApi.listCoordinateSystems']?.[localVarOperationServerIndex]?.url;
7320
7138
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
7321
7139
  },
7322
7140
  /**
7323
- * Lists all specifications of coordinate systems from robot controllers. Use parameter orientation_type to get the orientation part of the transformation offset of the coordinate system returned in the requested orientation notation. If parameter orientation_type is not set, the orientation part of the transformation offset of the coordinate system is returned in rotation vector notation. 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.
7324
- * @summary List Coordinate Systems
7141
+ * List the names of all deployed robot controllers.
7142
+ * @summary List Robot Controllers
7325
7143
  * @param {string} cell Unique identifier addressing a cell in all API calls.
7326
- * @param {string} controller Unique identifier to address a controller in the cell.
7327
- * @param {OrientationType} [orientationType]
7328
7144
  * @param {*} [options] Override http request option.
7329
7145
  * @throws {RequiredError}
7330
7146
  */
7331
- async listCoordinateSystems(cell: string, controller: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListCoordinateSystemsResponse>> {
7332
- const localVarAxiosArgs = await localVarAxiosParamCreator.listCoordinateSystems(cell, controller, orientationType, options);
7147
+ async listRobotControllers(cell: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<string>>> {
7148
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listRobotControllers(cell, options);
7333
7149
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
7334
- const localVarOperationServerBasePath = operationServerMap['ControllerApi.listCoordinateSystems']?.[localVarOperationServerIndex]?.url;
7150
+ const localVarOperationServerBasePath = operationServerMap['ControllerApi.listRobotControllers']?.[localVarOperationServerIndex]?.url;
7335
7151
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
7336
7152
  },
7337
7153
  /**
@@ -7497,16 +7313,6 @@ export const ControllerApiFactory = function (configuration?: Configuration, bas
7497
7313
  getVirtualRobotConfiguration(cell: string, controller: string, options?: RawAxiosRequestConfig): AxiosPromise<VirtualRobotConfiguration> {
7498
7314
  return localVarFp.getVirtualRobotConfiguration(cell, controller, options).then((request) => request(axios, basePath));
7499
7315
  },
7500
- /**
7501
- * List all configured robot controllers.
7502
- * @summary List Descriptions
7503
- * @param {string} cell Unique identifier addressing a cell in all API calls.
7504
- * @param {*} [options] Override http request option.
7505
- * @throws {RequiredError}
7506
- */
7507
- listControllers(cell: string, options?: RawAxiosRequestConfig): AxiosPromise<ControllersList> {
7508
- return localVarFp.listControllers(cell, options).then((request) => request(axios, basePath));
7509
- },
7510
7316
  /**
7511
7317
  * Lists all specifications of coordinate systems from robot controllers. Use parameter orientation_type to get the orientation part of the transformation offset of the coordinate system returned in the requested orientation notation. If parameter orientation_type is not set, the orientation part of the transformation offset of the coordinate system is returned in rotation vector notation. 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.
7512
7318
  * @summary List Coordinate Systems
@@ -7519,6 +7325,16 @@ export const ControllerApiFactory = function (configuration?: Configuration, bas
7519
7325
  listCoordinateSystems(cell: string, controller: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): AxiosPromise<ListCoordinateSystemsResponse> {
7520
7326
  return localVarFp.listCoordinateSystems(cell, controller, orientationType, options).then((request) => request(axios, basePath));
7521
7327
  },
7328
+ /**
7329
+ * List the names of all deployed robot controllers.
7330
+ * @summary List Robot Controllers
7331
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
7332
+ * @param {*} [options] Override http request option.
7333
+ * @throws {RequiredError}
7334
+ */
7335
+ listRobotControllers(cell: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<string>> {
7336
+ return localVarFp.listRobotControllers(cell, options).then((request) => request(axios, basePath));
7337
+ },
7522
7338
  /**
7523
7339
  * 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.
7524
7340
  * @summary Set Default Mode
@@ -7687,29 +7503,29 @@ export class ControllerApi extends BaseAPI {
7687
7503
  }
7688
7504
 
7689
7505
  /**
7690
- * List all configured robot controllers.
7691
- * @summary List Descriptions
7506
+ * Lists all specifications of coordinate systems from robot controllers. Use parameter orientation_type to get the orientation part of the transformation offset of the coordinate system returned in the requested orientation notation. If parameter orientation_type is not set, the orientation part of the transformation offset of the coordinate system is returned in rotation vector notation. 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.
7507
+ * @summary List Coordinate Systems
7692
7508
  * @param {string} cell Unique identifier addressing a cell in all API calls.
7509
+ * @param {string} controller Unique identifier to address a controller in the cell.
7510
+ * @param {OrientationType} [orientationType]
7693
7511
  * @param {*} [options] Override http request option.
7694
7512
  * @throws {RequiredError}
7695
7513
  * @memberof ControllerApi
7696
7514
  */
7697
- public listControllers(cell: string, options?: RawAxiosRequestConfig) {
7698
- return ControllerApiFp(this.configuration).listControllers(cell, options).then((request) => request(this.axios, this.basePath));
7515
+ public listCoordinateSystems(cell: string, controller: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig) {
7516
+ return ControllerApiFp(this.configuration).listCoordinateSystems(cell, controller, orientationType, options).then((request) => request(this.axios, this.basePath));
7699
7517
  }
7700
7518
 
7701
7519
  /**
7702
- * Lists all specifications of coordinate systems from robot controllers. Use parameter orientation_type to get the orientation part of the transformation offset of the coordinate system returned in the requested orientation notation. If parameter orientation_type is not set, the orientation part of the transformation offset of the coordinate system is returned in rotation vector notation. 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.
7703
- * @summary List Coordinate Systems
7520
+ * List the names of all deployed robot controllers.
7521
+ * @summary List Robot Controllers
7704
7522
  * @param {string} cell Unique identifier addressing a cell in all API calls.
7705
- * @param {string} controller Unique identifier to address a controller in the cell.
7706
- * @param {OrientationType} [orientationType]
7707
7523
  * @param {*} [options] Override http request option.
7708
7524
  * @throws {RequiredError}
7709
7525
  * @memberof ControllerApi
7710
7526
  */
7711
- public listCoordinateSystems(cell: string, controller: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig) {
7712
- return ControllerApiFp(this.configuration).listCoordinateSystems(cell, controller, orientationType, options).then((request) => request(this.axios, this.basePath));
7527
+ public listRobotControllers(cell: string, options?: RawAxiosRequestConfig) {
7528
+ return ControllerApiFp(this.configuration).listRobotControllers(cell, options).then((request) => request(this.axios, this.basePath));
7713
7529
  }
7714
7530
 
7715
7531
  /**