@wandelbots/nova-api 25.7.0-dev.4 → 25.7.0-dev.41

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.41",
4
4
  "description": "API Client to interact with Wandelbots Public API.",
5
5
  "files": [
6
6
  "*",
package/v1/api.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Wandelbots NOVA API
3
3
  * Interact with robots in an easy and intuitive way.
4
4
  *
5
- * The version of the OpenAPI document: 1.0.0 beta
5
+ * The version of the OpenAPI document: 1.0.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -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
  */
@@ -7357,6 +7357,7 @@ export declare const VirtualControllerTypes: {
7357
7357
  readonly FanucCrx20ial: "fanuc-crx20ial";
7358
7358
  readonly FanucCrx25ia: "fanuc-crx25ia";
7359
7359
  readonly FanucCrx30ia: "fanuc-crx30ia";
7360
+ readonly FanucCrx5ia: "fanuc-crx5ia";
7360
7361
  readonly FanucLrMate200iD: "fanuc-lr_mate_200iD";
7361
7362
  readonly FanucLrMate200iD4S: "fanuc-lr_mate_200iD4S";
7362
7363
  readonly FanucLrMate200iD7L: "fanuc-lr_mate_200iD7L";
@@ -7364,6 +7365,7 @@ export declare const VirtualControllerTypes: {
7364
7365
  readonly FanucM10iD16S: "fanuc-m10iD16S";
7365
7366
  readonly FanucM20iD25: "fanuc-m20iD25";
7366
7367
  readonly FanucM20iD35: "fanuc-m20iD35";
7368
+ readonly FanucM710iC20L: "fanuc-m710iC20L";
7367
7369
  readonly FanucM900iB280L: "fanuc-m900iB280L";
7368
7370
  readonly FanucM900iB360E: "fanuc-m900iB360E";
7369
7371
  readonly FanucR2000ic125l: "fanuc-r2000ic125l";
@@ -8041,7 +8043,7 @@ export declare const ControllerApiAxiosParamCreator: (configuration?: Configurat
8041
8043
  */
8042
8044
  getSupportedModes: (cell: string, controller: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8043
8045
  /**
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.
8046
+ * 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
8047
  * @summary Virtual Robot Configuration
8046
8048
  * @param {string} cell Unique identifier addressing a cell in all API calls.
8047
8049
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -8179,7 +8181,7 @@ export declare const ControllerApiFp: (configuration?: Configuration) => {
8179
8181
  */
8180
8182
  getSupportedModes(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ControllerCapabilities>>;
8181
8183
  /**
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.
8184
+ * 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
8185
  * @summary Virtual Robot Configuration
8184
8186
  * @param {string} cell Unique identifier addressing a cell in all API calls.
8185
8187
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -8317,7 +8319,7 @@ export declare const ControllerApiFactory: (configuration?: Configuration, baseP
8317
8319
  */
8318
8320
  getSupportedModes(cell: string, controller: string, options?: RawAxiosRequestConfig): AxiosPromise<ControllerCapabilities>;
8319
8321
  /**
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.
8322
+ * 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
8323
  * @summary Virtual Robot Configuration
8322
8324
  * @param {string} cell Unique identifier addressing a cell in all API calls.
8323
8325
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -8464,7 +8466,7 @@ export declare class ControllerApi extends BaseAPI {
8464
8466
  */
8465
8467
  getSupportedModes(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ControllerCapabilities, any>>;
8466
8468
  /**
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.
8469
+ * 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
8470
  * @summary Virtual Robot Configuration
8469
8471
  * @param {string} cell Unique identifier addressing a cell in all API calls.
8470
8472
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -13498,10 +13500,12 @@ export declare const GetDefaultLinkChainMotionGroupModelEnum: {
13498
13500
  readonly FanucM20iD12L: "FANUC_M20iD12L";
13499
13501
  readonly FanucM20iD25: "FANUC_M20iD25";
13500
13502
  readonly FanucM20iD35: "FANUC_M20iD35";
13503
+ readonly FanucM710iC20L: "FANUC_M710iC20L";
13501
13504
  readonly FanucM900iB280L: "FANUC_M900iB280L";
13502
13505
  readonly FanucM900iB360E: "FANUC_M900iB360E";
13503
13506
  readonly FanucR2000iC125L: "FANUC_R2000iC125L";
13504
13507
  readonly FanucR2000iC210F: "FANUC_R2000iC210F";
13508
+ readonly KukaDk5002: "KUKA_DK500_2";
13505
13509
  readonly KukaKr10R1100: "KUKA_KR10_R1100";
13506
13510
  readonly KukaKr10R11002: "KUKA_KR10_R1100_2";
13507
13511
  readonly KukaKr10R900: "KUKA_KR10_R900";
package/v1/api.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * Wandelbots NOVA API
5
5
  * Interact with robots in an easy and intuitive way.
6
6
  *
7
- * The version of the OpenAPI document: 1.0.0 beta
7
+ * The version of the OpenAPI document: 1.0.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -474,6 +474,7 @@ export const VirtualControllerTypes = {
474
474
  FanucCrx20ial: 'fanuc-crx20ial',
475
475
  FanucCrx25ia: 'fanuc-crx25ia',
476
476
  FanucCrx30ia: 'fanuc-crx30ia',
477
+ FanucCrx5ia: 'fanuc-crx5ia',
477
478
  FanucLrMate200iD: 'fanuc-lr_mate_200iD',
478
479
  FanucLrMate200iD4S: 'fanuc-lr_mate_200iD4S',
479
480
  FanucLrMate200iD7L: 'fanuc-lr_mate_200iD7L',
@@ -481,6 +482,7 @@ export const VirtualControllerTypes = {
481
482
  FanucM10iD16S: 'fanuc-m10iD16S',
482
483
  FanucM20iD25: 'fanuc-m20iD25',
483
484
  FanucM20iD35: 'fanuc-m20iD35',
485
+ FanucM710iC20L: 'fanuc-m710iC20L',
484
486
  FanucM900iB280L: 'fanuc-m900iB280L',
485
487
  FanucM900iB360E: 'fanuc-m900iB360E',
486
488
  FanucR2000ic125l: 'fanuc-r2000ic125l',
@@ -1824,7 +1826,7 @@ export const ControllerApiAxiosParamCreator = function (configuration) {
1824
1826
  };
1825
1827
  },
1826
1828
  /**
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.
1829
+ * 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
1830
  * @summary Virtual Robot Configuration
1829
1831
  * @param {string} cell Unique identifier addressing a cell in all API calls.
1830
1832
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -2225,7 +2227,7 @@ export const ControllerApiFp = function (configuration) {
2225
2227
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
2226
2228
  },
2227
2229
  /**
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.
2230
+ * 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
2231
  * @summary Virtual Robot Configuration
2230
2232
  * @param {string} cell Unique identifier addressing a cell in all API calls.
2231
2233
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -2415,7 +2417,7 @@ export const ControllerApiFactory = function (configuration, basePath, axios) {
2415
2417
  return localVarFp.getSupportedModes(cell, controller, options).then((request) => request(axios, basePath));
2416
2418
  },
2417
2419
  /**
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.
2420
+ * 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
2421
  * @summary Virtual Robot Configuration
2420
2422
  * @param {string} cell Unique identifier addressing a cell in all API calls.
2421
2423
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -2591,7 +2593,7 @@ export class ControllerApi extends BaseAPI {
2591
2593
  return ControllerApiFp(this.configuration).getSupportedModes(cell, controller, options).then((request) => request(this.axios, this.basePath));
2592
2594
  }
2593
2595
  /**
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.
2596
+ * 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
2597
  * @summary Virtual Robot Configuration
2596
2598
  * @param {string} cell Unique identifier addressing a cell in all API calls.
2597
2599
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -12221,10 +12223,12 @@ export const GetDefaultLinkChainMotionGroupModelEnum = {
12221
12223
  FanucM20iD12L: 'FANUC_M20iD12L',
12222
12224
  FanucM20iD25: 'FANUC_M20iD25',
12223
12225
  FanucM20iD35: 'FANUC_M20iD35',
12226
+ FanucM710iC20L: 'FANUC_M710iC20L',
12224
12227
  FanucM900iB280L: 'FANUC_M900iB280L',
12225
12228
  FanucM900iB360E: 'FANUC_M900iB360E',
12226
12229
  FanucR2000iC125L: 'FANUC_R2000iC125L',
12227
12230
  FanucR2000iC210F: 'FANUC_R2000iC210F',
12231
+ KukaDk5002: 'KUKA_DK500_2',
12228
12232
  KukaKr10R1100: 'KUKA_KR10_R1100',
12229
12233
  KukaKr10R11002: 'KUKA_KR10_R1100_2',
12230
12234
  KukaKr10R900: 'KUKA_KR10_R900',