@wandelbots/nova-api 25.7.0-dev.3 → 25.7.0-dev.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wandelbots/nova-api",
3
- "version": "25.7.0-dev.3",
3
+ "version": "25.7.0-dev.5",
4
4
  "description": "API Client to interact with Wandelbots Public API.",
5
5
  "files": [
6
6
  "*",
package/v1/api.d.ts CHANGED
@@ -7277,7 +7277,7 @@ export interface VersionNumber {
7277
7277
  'string_version'?: string;
7278
7278
  }
7279
7279
  /**
7280
- * 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`
7280
+ * The configuration of a virtual robot controller has to contain the manufacturer string, an optional joint position string array and either a preset `type` **or** the complete JSON configuration.
7281
7281
  * @export
7282
7282
  * @interface VirtualController
7283
7283
  */
@@ -7301,7 +7301,7 @@ export interface VirtualController {
7301
7301
  */
7302
7302
  'type'?: VirtualControllerTypes;
7303
7303
  /**
7304
- *
7304
+ * Complete JSON configuration of the virtual robot controller. Can be obtained from the physical controller\'s configuration via [getVirtualRobotConfiguration](getVirtualRobotConfiguration). If this field is provided, the `type` field should not be used.
7305
7305
  * @type {string}
7306
7306
  * @memberof VirtualController
7307
7307
  */
@@ -8041,7 +8041,7 @@ export declare const ControllerApiAxiosParamCreator: (configuration?: Configurat
8041
8041
  */
8042
8042
  getSupportedModes: (cell: string, controller: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8043
8043
  /**
8044
- * Receive the configuration for a virtual robot controller. Used to configure a virtual robot controller via [addRobotController](addRobotController). > **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.
8044
+ * 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.
8045
8045
  * @summary Virtual Robot Configuration
8046
8046
  * @param {string} cell Unique identifier addressing a cell in all API calls.
8047
8047
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -8179,7 +8179,7 @@ export declare const ControllerApiFp: (configuration?: Configuration) => {
8179
8179
  */
8180
8180
  getSupportedModes(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ControllerCapabilities>>;
8181
8181
  /**
8182
- * Receive the configuration for a virtual robot controller. Used to configure a virtual robot controller via [addRobotController](addRobotController). > **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.
8182
+ * 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.
8183
8183
  * @summary Virtual Robot Configuration
8184
8184
  * @param {string} cell Unique identifier addressing a cell in all API calls.
8185
8185
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -8317,7 +8317,7 @@ export declare const ControllerApiFactory: (configuration?: Configuration, baseP
8317
8317
  */
8318
8318
  getSupportedModes(cell: string, controller: string, options?: RawAxiosRequestConfig): AxiosPromise<ControllerCapabilities>;
8319
8319
  /**
8320
- * Receive the configuration for a virtual robot controller. Used to configure a virtual robot controller via [addRobotController](addRobotController). > **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.
8320
+ * 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.
8321
8321
  * @summary Virtual Robot Configuration
8322
8322
  * @param {string} cell Unique identifier addressing a cell in all API calls.
8323
8323
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -8464,7 +8464,7 @@ export declare class ControllerApi extends BaseAPI {
8464
8464
  */
8465
8465
  getSupportedModes(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ControllerCapabilities, any>>;
8466
8466
  /**
8467
- * Receive the configuration for a virtual robot controller. Used to configure a virtual robot controller via [addRobotController](addRobotController). > **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.
8467
+ * 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.
8468
8468
  * @summary Virtual Robot Configuration
8469
8469
  * @param {string} cell Unique identifier addressing a cell in all API calls.
8470
8470
  * @param {string} controller Unique identifier to address a controller in the cell.
package/v1/api.js CHANGED
@@ -1824,7 +1824,7 @@ export const ControllerApiAxiosParamCreator = function (configuration) {
1824
1824
  };
1825
1825
  },
1826
1826
  /**
1827
- * Receive the configuration for a virtual robot controller. Used to configure a virtual robot controller via [addRobotController](addRobotController). > **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.
1827
+ * 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.
1828
1828
  * @summary Virtual Robot Configuration
1829
1829
  * @param {string} cell Unique identifier addressing a cell in all API calls.
1830
1830
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -2225,7 +2225,7 @@ export const ControllerApiFp = function (configuration) {
2225
2225
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
2226
2226
  },
2227
2227
  /**
2228
- * Receive the configuration for a virtual robot controller. Used to configure a virtual robot controller via [addRobotController](addRobotController). > **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.
2228
+ * 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.
2229
2229
  * @summary Virtual Robot Configuration
2230
2230
  * @param {string} cell Unique identifier addressing a cell in all API calls.
2231
2231
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -2415,7 +2415,7 @@ export const ControllerApiFactory = function (configuration, basePath, axios) {
2415
2415
  return localVarFp.getSupportedModes(cell, controller, options).then((request) => request(axios, basePath));
2416
2416
  },
2417
2417
  /**
2418
- * Receive the configuration for a virtual robot controller. Used to configure a virtual robot controller via [addRobotController](addRobotController). > **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.
2418
+ * 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.
2419
2419
  * @summary Virtual Robot Configuration
2420
2420
  * @param {string} cell Unique identifier addressing a cell in all API calls.
2421
2421
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -2591,7 +2591,7 @@ export class ControllerApi extends BaseAPI {
2591
2591
  return ControllerApiFp(this.configuration).getSupportedModes(cell, controller, options).then((request) => request(this.axios, this.basePath));
2592
2592
  }
2593
2593
  /**
2594
- * Receive the configuration for a virtual robot controller. Used to configure a virtual robot controller via [addRobotController](addRobotController). > **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.
2594
+ * 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.
2595
2595
  * @summary Virtual Robot Configuration
2596
2596
  * @param {string} cell Unique identifier addressing a cell in all API calls.
2597
2597
  * @param {string} controller Unique identifier to address a controller in the cell.
package/v1/api.ts CHANGED
@@ -7444,7 +7444,7 @@ export interface VersionNumber {
7444
7444
  'string_version'?: string;
7445
7445
  }
7446
7446
  /**
7447
- * 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`
7447
+ * The configuration of a virtual robot controller has to contain the manufacturer string, an optional joint position string array and either a preset `type` **or** the complete JSON configuration.
7448
7448
  * @export
7449
7449
  * @interface VirtualController
7450
7450
  */
@@ -7468,7 +7468,7 @@ export interface VirtualController {
7468
7468
  */
7469
7469
  'type'?: VirtualControllerTypes;
7470
7470
  /**
7471
- *
7471
+ * Complete JSON configuration of the virtual robot controller. Can be obtained from the physical controller\'s configuration via [getVirtualRobotConfiguration](getVirtualRobotConfiguration). If this field is provided, the `type` field should not be used.
7472
7472
  * @type {string}
7473
7473
  * @memberof VirtualController
7474
7474
  */
@@ -9095,7 +9095,7 @@ export const ControllerApiAxiosParamCreator = function (configuration?: Configur
9095
9095
  };
9096
9096
  },
9097
9097
  /**
9098
- * Receive the configuration for a virtual robot controller. Used to configure a virtual robot controller via [addRobotController](addRobotController). > **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.
9098
+ * 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.
9099
9099
  * @summary Virtual Robot Configuration
9100
9100
  * @param {string} cell Unique identifier addressing a cell in all API calls.
9101
9101
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -9551,7 +9551,7 @@ export const ControllerApiFp = function(configuration?: Configuration) {
9551
9551
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
9552
9552
  },
9553
9553
  /**
9554
- * Receive the configuration for a virtual robot controller. Used to configure a virtual robot controller via [addRobotController](addRobotController). > **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.
9554
+ * 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.
9555
9555
  * @summary Virtual Robot Configuration
9556
9556
  * @param {string} cell Unique identifier addressing a cell in all API calls.
9557
9557
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -9742,7 +9742,7 @@ export const ControllerApiFactory = function (configuration?: Configuration, bas
9742
9742
  return localVarFp.getSupportedModes(cell, controller, options).then((request) => request(axios, basePath));
9743
9743
  },
9744
9744
  /**
9745
- * Receive the configuration for a virtual robot controller. Used to configure a virtual robot controller via [addRobotController](addRobotController). > **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.
9745
+ * 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.
9746
9746
  * @summary Virtual Robot Configuration
9747
9747
  * @param {string} cell Unique identifier addressing a cell in all API calls.
9748
9748
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -9926,7 +9926,7 @@ export class ControllerApi extends BaseAPI {
9926
9926
  }
9927
9927
 
9928
9928
  /**
9929
- * Receive the configuration for a virtual robot controller. Used to configure a virtual robot controller via [addRobotController](addRobotController). > **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.
9929
+ * 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.
9930
9930
  * @summary Virtual Robot Configuration
9931
9931
  * @param {string} cell Unique identifier addressing a cell in all API calls.
9932
9932
  * @param {string} controller Unique identifier to address a controller in the cell.
package/v2/api.d.ts CHANGED
@@ -859,6 +859,37 @@ export interface ContainerStorage {
859
859
  */
860
860
  'capacity': string;
861
861
  }
862
+ /**
863
+ * The data type to describe a robot controller.
864
+ * @export
865
+ * @interface ControllerDescription
866
+ */
867
+ export interface ControllerDescription {
868
+ /**
869
+ *
870
+ * @type {Array<string>}
871
+ * @memberof ControllerDescription
872
+ */
873
+ 'connected_motion_groups': Array<string>;
874
+ /**
875
+ * Can this controller be moved through freedrive (true), or not (false).
876
+ * @type {boolean}
877
+ * @memberof ControllerDescription
878
+ */
879
+ 'supports_freedrive': boolean;
880
+ /**
881
+ * Can this controller be controlled with NOVA (true) or is it only possible to read data (false).
882
+ * @type {boolean}
883
+ * @memberof ControllerDescription
884
+ */
885
+ 'supports_control': boolean;
886
+ /**
887
+ * 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\'t guarantee that the executed motions respect safety zones defined on the controller.
888
+ * @type {boolean}
889
+ * @memberof ControllerDescription
890
+ */
891
+ 'supports_safety_zones': boolean;
892
+ }
862
893
  /**
863
894
  * Defines a convex hull encapsulating a set of vertices.
864
895
  * @export
@@ -4275,7 +4306,7 @@ export interface ValidationError {
4275
4306
  */
4276
4307
  export type ValidationErrorLocInner = number | string;
4277
4308
  /**
4278
- * 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`
4309
+ * The configuration of a virtual robot controller has to contain the manufacturer string, an optional joint position string array and either a preset `type` **or** the complete JSON configuration.
4279
4310
  * @export
4280
4311
  * @interface VirtualController
4281
4312
  */
@@ -4299,7 +4330,7 @@ export interface VirtualController {
4299
4330
  */
4300
4331
  'type'?: VirtualControllerTypes;
4301
4332
  /**
4302
- *
4333
+ * Complete JSON configuration of the virtual robot controller. Can be obtained from the physical controller\'s configuration via [getVirtualRobotConfiguration](getVirtualRobotConfiguration). If provided, the `type` field should not be used.
4303
4334
  * @type {string}
4304
4335
  * @memberof VirtualController
4305
4336
  */
@@ -5075,6 +5106,15 @@ export declare const ControllerApiAxiosParamCreator: (configuration?: Configurat
5075
5106
  * @throws {RequiredError}
5076
5107
  */
5077
5108
  deleteRobotController: (cell: string, controller: string, completionTimeout?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5109
+ /**
5110
+ * Get description of a configured robot controller including a list of connected motion group identifiers. Use [getMotionGroupDescription](getMotionGroupDescription) to get more information about the motion group.
5111
+ * @summary Description
5112
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
5113
+ * @param {string} controller Unique identifier to address a controller in the cell.
5114
+ * @param {*} [options] Override http request option.
5115
+ * @throws {RequiredError}
5116
+ */
5117
+ getControllerDescription: (cell: string, controller: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5078
5118
  /**
5079
5119
  * Request a coordinate system specification for a given identifier. 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.
5080
5120
  * @summary Coordinate System
@@ -5114,7 +5154,7 @@ export declare const ControllerApiAxiosParamCreator: (configuration?: Configurat
5114
5154
  */
5115
5155
  getRobotController: (cell: string, controller: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5116
5156
  /**
5117
- * Receive the configuration for a virtual robot controller. Used to configure a virtual robot controller via [addRobotController](addRobotController). > **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.
5157
+ * 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.
5118
5158
  * @summary Virtual Robot Configuration
5119
5159
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5120
5160
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -5216,6 +5256,15 @@ export declare const ControllerApiFp: (configuration?: Configuration) => {
5216
5256
  * @throws {RequiredError}
5217
5257
  */
5218
5258
  deleteRobotController(cell: string, controller: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
5259
+ /**
5260
+ * Get description of a configured robot controller including a list of connected motion group identifiers. Use [getMotionGroupDescription](getMotionGroupDescription) to get more information about the motion group.
5261
+ * @summary Description
5262
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
5263
+ * @param {string} controller Unique identifier to address a controller in the cell.
5264
+ * @param {*} [options] Override http request option.
5265
+ * @throws {RequiredError}
5266
+ */
5267
+ getControllerDescription(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ControllerDescription>>;
5219
5268
  /**
5220
5269
  * Request a coordinate system specification for a given identifier. 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.
5221
5270
  * @summary Coordinate System
@@ -5255,7 +5304,7 @@ export declare const ControllerApiFp: (configuration?: Configuration) => {
5255
5304
  */
5256
5305
  getRobotController(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RobotController>>;
5257
5306
  /**
5258
- * Receive the configuration for a virtual robot controller. Used to configure a virtual robot controller via [addRobotController](addRobotController). > **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.
5307
+ * 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.
5259
5308
  * @summary Virtual Robot Configuration
5260
5309
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5261
5310
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -5357,6 +5406,15 @@ export declare const ControllerApiFactory: (configuration?: Configuration, baseP
5357
5406
  * @throws {RequiredError}
5358
5407
  */
5359
5408
  deleteRobotController(cell: string, controller: string, completionTimeout?: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
5409
+ /**
5410
+ * Get description of a configured robot controller including a list of connected motion group identifiers. Use [getMotionGroupDescription](getMotionGroupDescription) to get more information about the motion group.
5411
+ * @summary Description
5412
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
5413
+ * @param {string} controller Unique identifier to address a controller in the cell.
5414
+ * @param {*} [options] Override http request option.
5415
+ * @throws {RequiredError}
5416
+ */
5417
+ getControllerDescription(cell: string, controller: string, options?: RawAxiosRequestConfig): AxiosPromise<ControllerDescription>;
5360
5418
  /**
5361
5419
  * Request a coordinate system specification for a given identifier. 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.
5362
5420
  * @summary Coordinate System
@@ -5396,7 +5454,7 @@ export declare const ControllerApiFactory: (configuration?: Configuration, baseP
5396
5454
  */
5397
5455
  getRobotController(cell: string, controller: string, options?: RawAxiosRequestConfig): AxiosPromise<RobotController>;
5398
5456
  /**
5399
- * Receive the configuration for a virtual robot controller. Used to configure a virtual robot controller via [addRobotController](addRobotController). > **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.
5457
+ * 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.
5400
5458
  * @summary Virtual Robot Configuration
5401
5459
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5402
5460
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -5503,6 +5561,16 @@ export declare class ControllerApi extends BaseAPI {
5503
5561
  * @memberof ControllerApi
5504
5562
  */
5505
5563
  deleteRobotController(cell: string, controller: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
5564
+ /**
5565
+ * Get description of a configured robot controller including a list of connected motion group identifiers. Use [getMotionGroupDescription](getMotionGroupDescription) to get more information about the motion group.
5566
+ * @summary Description
5567
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
5568
+ * @param {string} controller Unique identifier to address a controller in the cell.
5569
+ * @param {*} [options] Override http request option.
5570
+ * @throws {RequiredError}
5571
+ * @memberof ControllerApi
5572
+ */
5573
+ getControllerDescription(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ControllerDescription, any>>;
5506
5574
  /**
5507
5575
  * Request a coordinate system specification for a given identifier. 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.
5508
5576
  * @summary Coordinate System
@@ -5546,7 +5614,7 @@ export declare class ControllerApi extends BaseAPI {
5546
5614
  */
5547
5615
  getRobotController(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RobotController, any>>;
5548
5616
  /**
5549
- * Receive the configuration for a virtual robot controller. Used to configure a virtual robot controller via [addRobotController](addRobotController). > **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.
5617
+ * 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.
5550
5618
  * @summary Virtual Robot Configuration
5551
5619
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5552
5620
  * @param {string} controller Unique identifier to address a controller in the cell.
package/v2/api.js CHANGED
@@ -1777,6 +1777,45 @@ export const ControllerApiAxiosParamCreator = function (configuration) {
1777
1777
  options: localVarRequestOptions,
1778
1778
  };
1779
1779
  },
1780
+ /**
1781
+ * Get description of a configured robot controller including a list of connected motion group identifiers. Use [getMotionGroupDescription](getMotionGroupDescription) to get more information about the motion group.
1782
+ * @summary Description
1783
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
1784
+ * @param {string} controller Unique identifier to address a controller in the cell.
1785
+ * @param {*} [options] Override http request option.
1786
+ * @throws {RequiredError}
1787
+ */
1788
+ getControllerDescription: async (cell, controller, options = {}) => {
1789
+ // verify required parameter 'cell' is not null or undefined
1790
+ assertParamExists('getControllerDescription', 'cell', cell);
1791
+ // verify required parameter 'controller' is not null or undefined
1792
+ assertParamExists('getControllerDescription', 'controller', controller);
1793
+ const localVarPath = `/cells/{cell}/controllers/{controller}/description`
1794
+ .replace(`{${"cell"}}`, encodeURIComponent(String(cell)))
1795
+ .replace(`{${"controller"}}`, encodeURIComponent(String(controller)));
1796
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1797
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1798
+ let baseOptions;
1799
+ if (configuration) {
1800
+ baseOptions = configuration.baseOptions;
1801
+ }
1802
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
1803
+ const localVarHeaderParameter = {};
1804
+ const localVarQueryParameter = {};
1805
+ // authentication BasicAuth required
1806
+ // http basic authentication required
1807
+ setBasicAuthToObject(localVarRequestOptions, configuration);
1808
+ // authentication BearerAuth required
1809
+ // http bearer authentication required
1810
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
1811
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1812
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1813
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
1814
+ return {
1815
+ url: toPathString(localVarUrlObj),
1816
+ options: localVarRequestOptions,
1817
+ };
1818
+ },
1780
1819
  /**
1781
1820
  * Request a coordinate system specification for a given identifier. 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.
1782
1821
  * @summary Coordinate System
@@ -1942,7 +1981,7 @@ export const ControllerApiAxiosParamCreator = function (configuration) {
1942
1981
  };
1943
1982
  },
1944
1983
  /**
1945
- * Receive the configuration for a virtual robot controller. Used to configure a virtual robot controller via [addRobotController](addRobotController). > **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.
1984
+ * 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.
1946
1985
  * @summary Virtual Robot Configuration
1947
1986
  * @param {string} cell Unique identifier addressing a cell in all API calls.
1948
1987
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -2290,6 +2329,20 @@ export const ControllerApiFp = function (configuration) {
2290
2329
  const localVarOperationServerBasePath = operationServerMap['ControllerApi.deleteRobotController']?.[localVarOperationServerIndex]?.url;
2291
2330
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
2292
2331
  },
2332
+ /**
2333
+ * Get description of a configured robot controller including a list of connected motion group identifiers. Use [getMotionGroupDescription](getMotionGroupDescription) to get more information about the motion group.
2334
+ * @summary Description
2335
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
2336
+ * @param {string} controller Unique identifier to address a controller in the cell.
2337
+ * @param {*} [options] Override http request option.
2338
+ * @throws {RequiredError}
2339
+ */
2340
+ async getControllerDescription(cell, controller, options) {
2341
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getControllerDescription(cell, controller, options);
2342
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
2343
+ const localVarOperationServerBasePath = operationServerMap['ControllerApi.getControllerDescription']?.[localVarOperationServerIndex]?.url;
2344
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
2345
+ },
2293
2346
  /**
2294
2347
  * Request a coordinate system specification for a given identifier. 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.
2295
2348
  * @summary Coordinate System
@@ -2349,7 +2402,7 @@ export const ControllerApiFp = function (configuration) {
2349
2402
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
2350
2403
  },
2351
2404
  /**
2352
- * Receive the configuration for a virtual robot controller. Used to configure a virtual robot controller via [addRobotController](addRobotController). > **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.
2405
+ * 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.
2353
2406
  * @summary Virtual Robot Configuration
2354
2407
  * @param {string} cell Unique identifier addressing a cell in all API calls.
2355
2408
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -2495,6 +2548,17 @@ export const ControllerApiFactory = function (configuration, basePath, axios) {
2495
2548
  deleteRobotController(cell, controller, completionTimeout, options) {
2496
2549
  return localVarFp.deleteRobotController(cell, controller, completionTimeout, options).then((request) => request(axios, basePath));
2497
2550
  },
2551
+ /**
2552
+ * Get description of a configured robot controller including a list of connected motion group identifiers. Use [getMotionGroupDescription](getMotionGroupDescription) to get more information about the motion group.
2553
+ * @summary Description
2554
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
2555
+ * @param {string} controller Unique identifier to address a controller in the cell.
2556
+ * @param {*} [options] Override http request option.
2557
+ * @throws {RequiredError}
2558
+ */
2559
+ getControllerDescription(cell, controller, options) {
2560
+ return localVarFp.getControllerDescription(cell, controller, options).then((request) => request(axios, basePath));
2561
+ },
2498
2562
  /**
2499
2563
  * Request a coordinate system specification for a given identifier. 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.
2500
2564
  * @summary Coordinate System
@@ -2542,7 +2606,7 @@ export const ControllerApiFactory = function (configuration, basePath, axios) {
2542
2606
  return localVarFp.getRobotController(cell, controller, options).then((request) => request(axios, basePath));
2543
2607
  },
2544
2608
  /**
2545
- * Receive the configuration for a virtual robot controller. Used to configure a virtual robot controller via [addRobotController](addRobotController). > **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.
2609
+ * 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.
2546
2610
  * @summary Virtual Robot Configuration
2547
2611
  * @param {string} cell Unique identifier addressing a cell in all API calls.
2548
2612
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -2670,6 +2734,18 @@ export class ControllerApi extends BaseAPI {
2670
2734
  deleteRobotController(cell, controller, completionTimeout, options) {
2671
2735
  return ControllerApiFp(this.configuration).deleteRobotController(cell, controller, completionTimeout, options).then((request) => request(this.axios, this.basePath));
2672
2736
  }
2737
+ /**
2738
+ * Get description of a configured robot controller including a list of connected motion group identifiers. Use [getMotionGroupDescription](getMotionGroupDescription) to get more information about the motion group.
2739
+ * @summary Description
2740
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
2741
+ * @param {string} controller Unique identifier to address a controller in the cell.
2742
+ * @param {*} [options] Override http request option.
2743
+ * @throws {RequiredError}
2744
+ * @memberof ControllerApi
2745
+ */
2746
+ getControllerDescription(cell, controller, options) {
2747
+ return ControllerApiFp(this.configuration).getControllerDescription(cell, controller, options).then((request) => request(this.axios, this.basePath));
2748
+ }
2673
2749
  /**
2674
2750
  * Request a coordinate system specification for a given identifier. 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.
2675
2751
  * @summary Coordinate System
@@ -2721,7 +2797,7 @@ export class ControllerApi extends BaseAPI {
2721
2797
  return ControllerApiFp(this.configuration).getRobotController(cell, controller, options).then((request) => request(this.axios, this.basePath));
2722
2798
  }
2723
2799
  /**
2724
- * Receive the configuration for a virtual robot controller. Used to configure a virtual robot controller via [addRobotController](addRobotController). > **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.
2800
+ * 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.
2725
2801
  * @summary Virtual Robot Configuration
2726
2802
  * @param {string} cell Unique identifier addressing a cell in all API calls.
2727
2803
  * @param {string} controller Unique identifier to address a controller in the cell.