@wandelbots/nova-api 25.7.0-dev.4 → 25.7.0-dev.40
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 +1 -1
- package/v1/api.d.ts +11 -7
- package/v1/api.js +9 -5
- package/v1/api.js.map +1 -1
- package/v1/api.ts +11 -7
- package/v1/base.d.ts +1 -1
- package/v1/base.js +1 -1
- package/v1/base.ts +1 -1
- package/v1/common.d.ts +1 -1
- package/v1/common.js +1 -1
- package/v1/common.ts +1 -1
- package/v1/configuration.d.ts +1 -1
- package/v1/configuration.js +1 -1
- package/v1/configuration.ts +1 -1
- package/v1/index.d.ts +1 -1
- package/v1/index.js +1 -1
- package/v1/index.ts +1 -1
- package/v2/api.d.ts +2036 -744
- package/v2/api.js +1597 -439
- package/v2/api.js.map +1 -1
- package/v2/api.ts +2833 -821
package/v1/api.ts
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
|
|
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).
|
|
@@ -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
|
|
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
|
*/
|
|
@@ -7528,6 +7528,7 @@ export const VirtualControllerTypes = {
|
|
|
7528
7528
|
FanucCrx20ial: 'fanuc-crx20ial',
|
|
7529
7529
|
FanucCrx25ia: 'fanuc-crx25ia',
|
|
7530
7530
|
FanucCrx30ia: 'fanuc-crx30ia',
|
|
7531
|
+
FanucCrx5ia: 'fanuc-crx5ia',
|
|
7531
7532
|
FanucLrMate200iD: 'fanuc-lr_mate_200iD',
|
|
7532
7533
|
FanucLrMate200iD4S: 'fanuc-lr_mate_200iD4S',
|
|
7533
7534
|
FanucLrMate200iD7L: 'fanuc-lr_mate_200iD7L',
|
|
@@ -7535,6 +7536,7 @@ export const VirtualControllerTypes = {
|
|
|
7535
7536
|
FanucM10iD16S: 'fanuc-m10iD16S',
|
|
7536
7537
|
FanucM20iD25: 'fanuc-m20iD25',
|
|
7537
7538
|
FanucM20iD35: 'fanuc-m20iD35',
|
|
7539
|
+
FanucM710iC20L: 'fanuc-m710iC20L',
|
|
7538
7540
|
FanucM900iB280L: 'fanuc-m900iB280L',
|
|
7539
7541
|
FanucM900iB360E: 'fanuc-m900iB360E',
|
|
7540
7542
|
FanucR2000ic125l: 'fanuc-r2000ic125l',
|
|
@@ -9095,7 +9097,7 @@ export const ControllerApiAxiosParamCreator = function (configuration?: Configur
|
|
|
9095
9097
|
};
|
|
9096
9098
|
},
|
|
9097
9099
|
/**
|
|
9098
|
-
* Receive
|
|
9100
|
+
* 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
9101
|
* @summary Virtual Robot Configuration
|
|
9100
9102
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9101
9103
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -9551,7 +9553,7 @@ export const ControllerApiFp = function(configuration?: Configuration) {
|
|
|
9551
9553
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
9552
9554
|
},
|
|
9553
9555
|
/**
|
|
9554
|
-
* Receive
|
|
9556
|
+
* 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
9557
|
* @summary Virtual Robot Configuration
|
|
9556
9558
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9557
9559
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -9742,7 +9744,7 @@ export const ControllerApiFactory = function (configuration?: Configuration, bas
|
|
|
9742
9744
|
return localVarFp.getSupportedModes(cell, controller, options).then((request) => request(axios, basePath));
|
|
9743
9745
|
},
|
|
9744
9746
|
/**
|
|
9745
|
-
* Receive
|
|
9747
|
+
* 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
9748
|
* @summary Virtual Robot Configuration
|
|
9747
9749
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9748
9750
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -9926,7 +9928,7 @@ export class ControllerApi extends BaseAPI {
|
|
|
9926
9928
|
}
|
|
9927
9929
|
|
|
9928
9930
|
/**
|
|
9929
|
-
* Receive
|
|
9931
|
+
* 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
9932
|
* @summary Virtual Robot Configuration
|
|
9931
9933
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9932
9934
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -20633,10 +20635,12 @@ export const GetDefaultLinkChainMotionGroupModelEnum = {
|
|
|
20633
20635
|
FanucM20iD12L: 'FANUC_M20iD12L',
|
|
20634
20636
|
FanucM20iD25: 'FANUC_M20iD25',
|
|
20635
20637
|
FanucM20iD35: 'FANUC_M20iD35',
|
|
20638
|
+
FanucM710iC20L: 'FANUC_M710iC20L',
|
|
20636
20639
|
FanucM900iB280L: 'FANUC_M900iB280L',
|
|
20637
20640
|
FanucM900iB360E: 'FANUC_M900iB360E',
|
|
20638
20641
|
FanucR2000iC125L: 'FANUC_R2000iC125L',
|
|
20639
20642
|
FanucR2000iC210F: 'FANUC_R2000iC210F',
|
|
20643
|
+
KukaDk5002: 'KUKA_DK500_2',
|
|
20640
20644
|
KukaKr10R1100: 'KUKA_KR10_R1100',
|
|
20641
20645
|
KukaKr10R11002: 'KUKA_KR10_R1100_2',
|
|
20642
20646
|
KukaKr10R900: 'KUKA_KR10_R900',
|
package/v1/base.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
|
|
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).
|
package/v1/base.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
|
|
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).
|
package/v1/base.ts
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
|
|
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).
|
package/v1/common.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
|
|
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).
|
package/v1/common.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
|
|
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).
|
package/v1/common.ts
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
|
|
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).
|
package/v1/configuration.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
|
|
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).
|
package/v1/configuration.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
|
|
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).
|
package/v1/configuration.ts
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
|
|
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).
|
package/v1/index.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
|
|
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).
|
package/v1/index.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
|
|
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).
|
package/v1/index.ts
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
|
|
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).
|