@wandelbots/nova-api 25.7.0-dev.4 → 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.4",
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
@@ -4306,7 +4306,7 @@ export interface ValidationError {
4306
4306
  */
4307
4307
  export type ValidationErrorLocInner = number | string;
4308
4308
  /**
4309
- * 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.
4310
4310
  * @export
4311
4311
  * @interface VirtualController
4312
4312
  */
@@ -4330,7 +4330,7 @@ export interface VirtualController {
4330
4330
  */
4331
4331
  'type'?: VirtualControllerTypes;
4332
4332
  /**
4333
- *
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.
4334
4334
  * @type {string}
4335
4335
  * @memberof VirtualController
4336
4336
  */
@@ -5154,7 +5154,7 @@ export declare const ControllerApiAxiosParamCreator: (configuration?: Configurat
5154
5154
  */
5155
5155
  getRobotController: (cell: string, controller: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5156
5156
  /**
5157
- * 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.
5158
5158
  * @summary Virtual Robot Configuration
5159
5159
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5160
5160
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -5304,7 +5304,7 @@ export declare const ControllerApiFp: (configuration?: Configuration) => {
5304
5304
  */
5305
5305
  getRobotController(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RobotController>>;
5306
5306
  /**
5307
- * 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.
5308
5308
  * @summary Virtual Robot Configuration
5309
5309
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5310
5310
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -5454,7 +5454,7 @@ export declare const ControllerApiFactory: (configuration?: Configuration, baseP
5454
5454
  */
5455
5455
  getRobotController(cell: string, controller: string, options?: RawAxiosRequestConfig): AxiosPromise<RobotController>;
5456
5456
  /**
5457
- * 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.
5458
5458
  * @summary Virtual Robot Configuration
5459
5459
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5460
5460
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -5614,7 +5614,7 @@ export declare class ControllerApi extends BaseAPI {
5614
5614
  */
5615
5615
  getRobotController(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RobotController, any>>;
5616
5616
  /**
5617
- * 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.
5618
5618
  * @summary Virtual Robot Configuration
5619
5619
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5620
5620
  * @param {string} controller Unique identifier to address a controller in the cell.
package/v2/api.js CHANGED
@@ -1981,7 +1981,7 @@ export const ControllerApiAxiosParamCreator = function (configuration) {
1981
1981
  };
1982
1982
  },
1983
1983
  /**
1984
- * 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.
1985
1985
  * @summary Virtual Robot Configuration
1986
1986
  * @param {string} cell Unique identifier addressing a cell in all API calls.
1987
1987
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -2402,7 +2402,7 @@ export const ControllerApiFp = function (configuration) {
2402
2402
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
2403
2403
  },
2404
2404
  /**
2405
- * 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.
2406
2406
  * @summary Virtual Robot Configuration
2407
2407
  * @param {string} cell Unique identifier addressing a cell in all API calls.
2408
2408
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -2606,7 +2606,7 @@ export const ControllerApiFactory = function (configuration, basePath, axios) {
2606
2606
  return localVarFp.getRobotController(cell, controller, options).then((request) => request(axios, basePath));
2607
2607
  },
2608
2608
  /**
2609
- * 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.
2610
2610
  * @summary Virtual Robot Configuration
2611
2611
  * @param {string} cell Unique identifier addressing a cell in all API calls.
2612
2612
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -2797,7 +2797,7 @@ export class ControllerApi extends BaseAPI {
2797
2797
  return ControllerApiFp(this.configuration).getRobotController(cell, controller, options).then((request) => request(this.axios, this.basePath));
2798
2798
  }
2799
2799
  /**
2800
- * 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.
2801
2801
  * @summary Virtual Robot Configuration
2802
2802
  * @param {string} cell Unique identifier addressing a cell in all API calls.
2803
2803
  * @param {string} controller Unique identifier to address a controller in the cell.
package/v2/api.ts CHANGED
@@ -4543,7 +4543,7 @@ export interface ValidationError {
4543
4543
  export type ValidationErrorLocInner = number | string;
4544
4544
 
4545
4545
  /**
4546
- * 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`
4546
+ * 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.
4547
4547
  * @export
4548
4548
  * @interface VirtualController
4549
4549
  */
@@ -4567,7 +4567,7 @@ export interface VirtualController {
4567
4567
  */
4568
4568
  'type'?: VirtualControllerTypes;
4569
4569
  /**
4570
- *
4570
+ * 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.
4571
4571
  * @type {string}
4572
4572
  * @memberof VirtualController
4573
4573
  */
@@ -6377,7 +6377,7 @@ export const ControllerApiAxiosParamCreator = function (configuration?: Configur
6377
6377
  };
6378
6378
  },
6379
6379
  /**
6380
- * 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.
6380
+ * 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.
6381
6381
  * @summary Virtual Robot Configuration
6382
6382
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6383
6383
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -6854,7 +6854,7 @@ export const ControllerApiFp = function(configuration?: Configuration) {
6854
6854
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
6855
6855
  },
6856
6856
  /**
6857
- * 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.
6857
+ * 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.
6858
6858
  * @summary Virtual Robot Configuration
6859
6859
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6860
6860
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -7059,7 +7059,7 @@ export const ControllerApiFactory = function (configuration?: Configuration, bas
7059
7059
  return localVarFp.getRobotController(cell, controller, options).then((request) => request(axios, basePath));
7060
7060
  },
7061
7061
  /**
7062
- * 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.
7062
+ * 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.
7063
7063
  * @summary Virtual Robot Configuration
7064
7064
  * @param {string} cell Unique identifier addressing a cell in all API calls.
7065
7065
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -7259,7 +7259,7 @@ export class ControllerApi extends BaseAPI {
7259
7259
  }
7260
7260
 
7261
7261
  /**
7262
- * 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.
7262
+ * 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.
7263
7263
  * @summary Virtual Robot Configuration
7264
7264
  * @param {string} cell Unique identifier addressing a cell in all API calls.
7265
7265
  * @param {string} controller Unique identifier to address a controller in the cell.