@wandelbots/nova-api 26.8.0-dev.2 → 26.8.0-dev.21
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/dist/v2/index.cjs +27 -21
- package/dist/v2/index.d.cts +25 -13
- package/dist/v2/index.d.ts +25 -13
- package/dist/v2/index.js +27 -21
- package/package.json +1 -1
package/dist/v2/index.cjs
CHANGED
|
@@ -4827,7 +4827,7 @@ var MotionGroupApi = class extends BaseAPI {
|
|
|
4827
4827
|
*/
|
|
4828
4828
|
const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
|
|
4829
4829
|
return {
|
|
4830
|
-
copyMotionGroupModel: async (motionGroupModel, copyMotionGroupModelRequest, options = {}) => {
|
|
4830
|
+
copyMotionGroupModel: async (motionGroupModel, copyMotionGroupModelRequest, serialNumber, options = {}) => {
|
|
4831
4831
|
assertParamExists("copyMotionGroupModel", "motionGroupModel", motionGroupModel);
|
|
4832
4832
|
assertParamExists("copyMotionGroupModel", "copyMotionGroupModelRequest", copyMotionGroupModelRequest);
|
|
4833
4833
|
const localVarPath = `/experimental/motion-group-models/{motion-group-model}/archive`.replace("{motion-group-model}", encodeURIComponent(String(motionGroupModel)));
|
|
@@ -4842,6 +4842,7 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
|
|
|
4842
4842
|
const localVarHeaderParameter = {};
|
|
4843
4843
|
const localVarQueryParameter = {};
|
|
4844
4844
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
4845
|
+
if (serialNumber !== void 0) localVarQueryParameter["serial_number"] = serialNumber;
|
|
4845
4846
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
4846
4847
|
localVarHeaderParameter["Accept"] = "application/json";
|
|
4847
4848
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -4857,7 +4858,7 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
|
|
|
4857
4858
|
options: localVarRequestOptions
|
|
4858
4859
|
};
|
|
4859
4860
|
},
|
|
4860
|
-
deleteExperimentalMotionGroupModel: async (motionGroupModel, options = {}) => {
|
|
4861
|
+
deleteExperimentalMotionGroupModel: async (motionGroupModel, serialNumber, options = {}) => {
|
|
4861
4862
|
assertParamExists("deleteExperimentalMotionGroupModel", "motionGroupModel", motionGroupModel);
|
|
4862
4863
|
const localVarPath = `/experimental/motion-group-models/{motion-group-model}/archive`.replace("{motion-group-model}", encodeURIComponent(String(motionGroupModel)));
|
|
4863
4864
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -4871,6 +4872,7 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
|
|
|
4871
4872
|
const localVarHeaderParameter = {};
|
|
4872
4873
|
const localVarQueryParameter = {};
|
|
4873
4874
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
4875
|
+
if (serialNumber !== void 0) localVarQueryParameter["serial_number"] = serialNumber;
|
|
4874
4876
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4875
4877
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4876
4878
|
localVarRequestOptions.headers = {
|
|
@@ -4883,7 +4885,7 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
|
|
|
4883
4885
|
options: localVarRequestOptions
|
|
4884
4886
|
};
|
|
4885
4887
|
},
|
|
4886
|
-
exportMotionGroupModel: async (motionGroupModel, options = {}) => {
|
|
4888
|
+
exportMotionGroupModel: async (motionGroupModel, serialNumber, options = {}) => {
|
|
4887
4889
|
assertParamExists("exportMotionGroupModel", "motionGroupModel", motionGroupModel);
|
|
4888
4890
|
const localVarPath = `/experimental/motion-group-models/{motion-group-model}/archive`.replace("{motion-group-model}", encodeURIComponent(String(motionGroupModel)));
|
|
4889
4891
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -4897,6 +4899,7 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
|
|
|
4897
4899
|
const localVarHeaderParameter = {};
|
|
4898
4900
|
const localVarQueryParameter = {};
|
|
4899
4901
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
4902
|
+
if (serialNumber !== void 0) localVarQueryParameter["serial_number"] = serialNumber;
|
|
4900
4903
|
localVarHeaderParameter["Accept"] = "application/gzip";
|
|
4901
4904
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4902
4905
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -5212,20 +5215,20 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
|
|
|
5212
5215
|
const MotionGroupModelsApiFp = function(configuration) {
|
|
5213
5216
|
const localVarAxiosParamCreator = MotionGroupModelsApiAxiosParamCreator(configuration);
|
|
5214
5217
|
return {
|
|
5215
|
-
async copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options) {
|
|
5216
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options);
|
|
5218
|
+
async copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, serialNumber, options) {
|
|
5219
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, serialNumber, options);
|
|
5217
5220
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5218
5221
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.copyMotionGroupModel"]?.[localVarOperationServerIndex]?.url;
|
|
5219
5222
|
return (axios$90, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$90, localVarOperationServerBasePath || basePath);
|
|
5220
5223
|
},
|
|
5221
|
-
async deleteExperimentalMotionGroupModel(motionGroupModel, options) {
|
|
5222
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteExperimentalMotionGroupModel(motionGroupModel, options);
|
|
5224
|
+
async deleteExperimentalMotionGroupModel(motionGroupModel, serialNumber, options) {
|
|
5225
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteExperimentalMotionGroupModel(motionGroupModel, serialNumber, options);
|
|
5223
5226
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5224
5227
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.deleteExperimentalMotionGroupModel"]?.[localVarOperationServerIndex]?.url;
|
|
5225
5228
|
return (axios$91, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$91, localVarOperationServerBasePath || basePath);
|
|
5226
5229
|
},
|
|
5227
|
-
async exportMotionGroupModel(motionGroupModel, options) {
|
|
5228
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.exportMotionGroupModel(motionGroupModel, options);
|
|
5230
|
+
async exportMotionGroupModel(motionGroupModel, serialNumber, options) {
|
|
5231
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.exportMotionGroupModel(motionGroupModel, serialNumber, options);
|
|
5229
5232
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5230
5233
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.exportMotionGroupModel"]?.[localVarOperationServerIndex]?.url;
|
|
5231
5234
|
return (axios$92, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$92, localVarOperationServerBasePath || basePath);
|
|
@@ -5304,14 +5307,14 @@ const MotionGroupModelsApiFp = function(configuration) {
|
|
|
5304
5307
|
const MotionGroupModelsApiFactory = function(configuration, basePath, axios$104) {
|
|
5305
5308
|
const localVarFp = MotionGroupModelsApiFp(configuration);
|
|
5306
5309
|
return {
|
|
5307
|
-
copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options) {
|
|
5308
|
-
return localVarFp.copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options).then((request) => request(axios$104, basePath));
|
|
5310
|
+
copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, serialNumber, options) {
|
|
5311
|
+
return localVarFp.copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, serialNumber, options).then((request) => request(axios$104, basePath));
|
|
5309
5312
|
},
|
|
5310
|
-
deleteExperimentalMotionGroupModel(motionGroupModel, options) {
|
|
5311
|
-
return localVarFp.deleteExperimentalMotionGroupModel(motionGroupModel, options).then((request) => request(axios$104, basePath));
|
|
5313
|
+
deleteExperimentalMotionGroupModel(motionGroupModel, serialNumber, options) {
|
|
5314
|
+
return localVarFp.deleteExperimentalMotionGroupModel(motionGroupModel, serialNumber, options).then((request) => request(axios$104, basePath));
|
|
5312
5315
|
},
|
|
5313
|
-
exportMotionGroupModel(motionGroupModel, options) {
|
|
5314
|
-
return localVarFp.exportMotionGroupModel(motionGroupModel, options).then((request) => request(axios$104, basePath));
|
|
5316
|
+
exportMotionGroupModel(motionGroupModel, serialNumber, options) {
|
|
5317
|
+
return localVarFp.exportMotionGroupModel(motionGroupModel, serialNumber, options).then((request) => request(axios$104, basePath));
|
|
5315
5318
|
},
|
|
5316
5319
|
getConfigurationForMotionGroup(motionGroupModel, options) {
|
|
5317
5320
|
return localVarFp.getConfigurationForMotionGroup(motionGroupModel, options).then((request) => request(axios$104, basePath));
|
|
@@ -5357,31 +5360,34 @@ var MotionGroupModelsApi = class extends BaseAPI {
|
|
|
5357
5360
|
* @summary Copy Motion Group Model
|
|
5358
5361
|
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
|
|
5359
5362
|
* @param {CopyMotionGroupModelRequest} copyMotionGroupModelRequest
|
|
5363
|
+
* @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
|
|
5360
5364
|
* @param {*} [options] Override http request option.
|
|
5361
5365
|
* @throws {RequiredError}
|
|
5362
5366
|
*/
|
|
5363
|
-
copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options) {
|
|
5364
|
-
return MotionGroupModelsApiFp(this.configuration).copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options).then((request) => request(this.axios, this.basePath));
|
|
5367
|
+
copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, serialNumber, options) {
|
|
5368
|
+
return MotionGroupModelsApiFp(this.configuration).copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, serialNumber, options).then((request) => request(this.axios, this.basePath));
|
|
5365
5369
|
}
|
|
5366
5370
|
/**
|
|
5367
5371
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models, where `is_custom` is `true`, can be deleted. Built-in base models cannot be removed.
|
|
5368
5372
|
* @summary Delete Motion Group Model
|
|
5369
5373
|
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
|
|
5374
|
+
* @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
|
|
5370
5375
|
* @param {*} [options] Override http request option.
|
|
5371
5376
|
* @throws {RequiredError}
|
|
5372
5377
|
*/
|
|
5373
|
-
deleteExperimentalMotionGroupModel(motionGroupModel, options) {
|
|
5374
|
-
return MotionGroupModelsApiFp(this.configuration).deleteExperimentalMotionGroupModel(motionGroupModel, options).then((request) => request(this.axios, this.basePath));
|
|
5378
|
+
deleteExperimentalMotionGroupModel(motionGroupModel, serialNumber, options) {
|
|
5379
|
+
return MotionGroupModelsApiFp(this.configuration).deleteExperimentalMotionGroupModel(motionGroupModel, serialNumber, options).then((request) => request(this.axios, this.basePath));
|
|
5375
5380
|
}
|
|
5376
5381
|
/**
|
|
5377
5382
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Exports the specified motion group model as a tar.gz archive. The resulting tar.gz file can be imported on another system using the import endpoint.
|
|
5378
5383
|
* @summary Export Motion Group Model
|
|
5379
5384
|
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
|
|
5385
|
+
* @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
|
|
5380
5386
|
* @param {*} [options] Override http request option.
|
|
5381
5387
|
* @throws {RequiredError}
|
|
5382
5388
|
*/
|
|
5383
|
-
exportMotionGroupModel(motionGroupModel, options) {
|
|
5384
|
-
return MotionGroupModelsApiFp(this.configuration).exportMotionGroupModel(motionGroupModel, options).then((request) => request(this.axios, this.basePath));
|
|
5389
|
+
exportMotionGroupModel(motionGroupModel, serialNumber, options) {
|
|
5390
|
+
return MotionGroupModelsApiFp(this.configuration).exportMotionGroupModel(motionGroupModel, serialNumber, options).then((request) => request(this.axios, this.basePath));
|
|
5385
5391
|
}
|
|
5386
5392
|
/**
|
|
5387
5393
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Get a robot configuration containing the specified motion group model. This endpoint is designed for Virtual Robot to dynamically add motion groups by model name without needing to know the robot configuration name. Returns the full GCI transcript along with the motion group UID that corresponds to the requested motion group model.
|
package/dist/v2/index.d.cts
CHANGED
|
@@ -6,7 +6,7 @@ import { AxiosInstance, AxiosPromise, RawAxiosRequestConfig } from "axios";
|
|
|
6
6
|
* Wandelbots NOVA API
|
|
7
7
|
* Interact with robots in an easy and intuitive way.
|
|
8
8
|
*
|
|
9
|
-
* The version of the OpenAPI document: 2.
|
|
9
|
+
* The version of the OpenAPI document: 2.8.0 dev
|
|
10
10
|
*
|
|
11
11
|
*
|
|
12
12
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -9810,26 +9810,29 @@ declare const MotionGroupModelsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
9810
9810
|
* @summary Copy Motion Group Model
|
|
9811
9811
|
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
|
|
9812
9812
|
* @param {CopyMotionGroupModelRequest} copyMotionGroupModelRequest
|
|
9813
|
+
* @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
|
|
9813
9814
|
* @param {*} [options] Override http request option.
|
|
9814
9815
|
* @throws {RequiredError}
|
|
9815
9816
|
*/
|
|
9816
|
-
copyMotionGroupModel: (motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9817
|
+
copyMotionGroupModel: (motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, serialNumber?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9817
9818
|
/**
|
|
9818
9819
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models, where `is_custom` is `true`, can be deleted. Built-in base models cannot be removed.
|
|
9819
9820
|
* @summary Delete Motion Group Model
|
|
9820
9821
|
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
|
|
9822
|
+
* @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
|
|
9821
9823
|
* @param {*} [options] Override http request option.
|
|
9822
9824
|
* @throws {RequiredError}
|
|
9823
9825
|
*/
|
|
9824
|
-
deleteExperimentalMotionGroupModel: (motionGroupModel: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9826
|
+
deleteExperimentalMotionGroupModel: (motionGroupModel: string, serialNumber?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9825
9827
|
/**
|
|
9826
9828
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Exports the specified motion group model as a tar.gz archive. The resulting tar.gz file can be imported on another system using the import endpoint.
|
|
9827
9829
|
* @summary Export Motion Group Model
|
|
9828
9830
|
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
|
|
9831
|
+
* @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
|
|
9829
9832
|
* @param {*} [options] Override http request option.
|
|
9830
9833
|
* @throws {RequiredError}
|
|
9831
9834
|
*/
|
|
9832
|
-
exportMotionGroupModel: (motionGroupModel: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9835
|
+
exportMotionGroupModel: (motionGroupModel: string, serialNumber?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9833
9836
|
/**
|
|
9834
9837
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Get a robot configuration containing the specified motion group model. This endpoint is designed for Virtual Robot to dynamically add motion groups by model name without needing to know the robot configuration name. Returns the full GCI transcript along with the motion group UID that corresponds to the requested motion group model.
|
|
9835
9838
|
* @summary Get Configuration for Motion Group
|
|
@@ -9926,26 +9929,29 @@ declare const MotionGroupModelsApiFp: (configuration?: Configuration) => {
|
|
|
9926
9929
|
* @summary Copy Motion Group Model
|
|
9927
9930
|
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
|
|
9928
9931
|
* @param {CopyMotionGroupModelRequest} copyMotionGroupModelRequest
|
|
9932
|
+
* @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
|
|
9929
9933
|
* @param {*} [options] Override http request option.
|
|
9930
9934
|
* @throws {RequiredError}
|
|
9931
9935
|
*/
|
|
9932
|
-
copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MotionGroupModelDescription>>;
|
|
9936
|
+
copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, serialNumber?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MotionGroupModelDescription>>;
|
|
9933
9937
|
/**
|
|
9934
9938
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models, where `is_custom` is `true`, can be deleted. Built-in base models cannot be removed.
|
|
9935
9939
|
* @summary Delete Motion Group Model
|
|
9936
9940
|
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
|
|
9941
|
+
* @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
|
|
9937
9942
|
* @param {*} [options] Override http request option.
|
|
9938
9943
|
* @throws {RequiredError}
|
|
9939
9944
|
*/
|
|
9940
|
-
deleteExperimentalMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
9945
|
+
deleteExperimentalMotionGroupModel(motionGroupModel: string, serialNumber?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
9941
9946
|
/**
|
|
9942
9947
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Exports the specified motion group model as a tar.gz archive. The resulting tar.gz file can be imported on another system using the import endpoint.
|
|
9943
9948
|
* @summary Export Motion Group Model
|
|
9944
9949
|
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
|
|
9950
|
+
* @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
|
|
9945
9951
|
* @param {*} [options] Override http request option.
|
|
9946
9952
|
* @throws {RequiredError}
|
|
9947
9953
|
*/
|
|
9948
|
-
exportMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
9954
|
+
exportMotionGroupModel(motionGroupModel: string, serialNumber?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
9949
9955
|
/**
|
|
9950
9956
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Get a robot configuration containing the specified motion group model. This endpoint is designed for Virtual Robot to dynamically add motion groups by model name without needing to know the robot configuration name. Returns the full GCI transcript along with the motion group UID that corresponds to the requested motion group model.
|
|
9951
9957
|
* @summary Get Configuration for Motion Group
|
|
@@ -10044,26 +10050,29 @@ declare const MotionGroupModelsApiFactory: (configuration?: Configuration, baseP
|
|
|
10044
10050
|
* @summary Copy Motion Group Model
|
|
10045
10051
|
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
|
|
10046
10052
|
* @param {CopyMotionGroupModelRequest} copyMotionGroupModelRequest
|
|
10053
|
+
* @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
|
|
10047
10054
|
* @param {*} [options] Override http request option.
|
|
10048
10055
|
* @throws {RequiredError}
|
|
10049
10056
|
*/
|
|
10050
|
-
copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig): AxiosPromise<MotionGroupModelDescription>;
|
|
10057
|
+
copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, serialNumber?: string, options?: RawAxiosRequestConfig): AxiosPromise<MotionGroupModelDescription>;
|
|
10051
10058
|
/**
|
|
10052
10059
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models, where `is_custom` is `true`, can be deleted. Built-in base models cannot be removed.
|
|
10053
10060
|
* @summary Delete Motion Group Model
|
|
10054
10061
|
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
|
|
10062
|
+
* @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
|
|
10055
10063
|
* @param {*} [options] Override http request option.
|
|
10056
10064
|
* @throws {RequiredError}
|
|
10057
10065
|
*/
|
|
10058
|
-
deleteExperimentalMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
10066
|
+
deleteExperimentalMotionGroupModel(motionGroupModel: string, serialNumber?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
10059
10067
|
/**
|
|
10060
10068
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Exports the specified motion group model as a tar.gz archive. The resulting tar.gz file can be imported on another system using the import endpoint.
|
|
10061
10069
|
* @summary Export Motion Group Model
|
|
10062
10070
|
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
|
|
10071
|
+
* @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
|
|
10063
10072
|
* @param {*} [options] Override http request option.
|
|
10064
10073
|
* @throws {RequiredError}
|
|
10065
10074
|
*/
|
|
10066
|
-
exportMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): AxiosPromise<File>;
|
|
10075
|
+
exportMotionGroupModel(motionGroupModel: string, serialNumber?: string, options?: RawAxiosRequestConfig): AxiosPromise<File>;
|
|
10067
10076
|
/**
|
|
10068
10077
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Get a robot configuration containing the specified motion group model. This endpoint is designed for Virtual Robot to dynamically add motion groups by model name without needing to know the robot configuration name. Returns the full GCI transcript along with the motion group UID that corresponds to the requested motion group model.
|
|
10069
10078
|
* @summary Get Configuration for Motion Group
|
|
@@ -10162,26 +10171,29 @@ declare class MotionGroupModelsApi extends BaseAPI {
|
|
|
10162
10171
|
* @summary Copy Motion Group Model
|
|
10163
10172
|
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
|
|
10164
10173
|
* @param {CopyMotionGroupModelRequest} copyMotionGroupModelRequest
|
|
10174
|
+
* @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
|
|
10165
10175
|
* @param {*} [options] Override http request option.
|
|
10166
10176
|
* @throws {RequiredError}
|
|
10167
10177
|
*/
|
|
10168
|
-
copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MotionGroupModelDescription, any, {}>>;
|
|
10178
|
+
copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, serialNumber?: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MotionGroupModelDescription, any, {}>>;
|
|
10169
10179
|
/**
|
|
10170
10180
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models, where `is_custom` is `true`, can be deleted. Built-in base models cannot be removed.
|
|
10171
10181
|
* @summary Delete Motion Group Model
|
|
10172
10182
|
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
|
|
10183
|
+
* @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
|
|
10173
10184
|
* @param {*} [options] Override http request option.
|
|
10174
10185
|
* @throws {RequiredError}
|
|
10175
10186
|
*/
|
|
10176
|
-
deleteExperimentalMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
|
|
10187
|
+
deleteExperimentalMotionGroupModel(motionGroupModel: string, serialNumber?: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
|
|
10177
10188
|
/**
|
|
10178
10189
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Exports the specified motion group model as a tar.gz archive. The resulting tar.gz file can be imported on another system using the import endpoint.
|
|
10179
10190
|
* @summary Export Motion Group Model
|
|
10180
10191
|
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
|
|
10192
|
+
* @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
|
|
10181
10193
|
* @param {*} [options] Override http request option.
|
|
10182
10194
|
* @throws {RequiredError}
|
|
10183
10195
|
*/
|
|
10184
|
-
exportMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<File, any, {}>>;
|
|
10196
|
+
exportMotionGroupModel(motionGroupModel: string, serialNumber?: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<File, any, {}>>;
|
|
10185
10197
|
/**
|
|
10186
10198
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Get a robot configuration containing the specified motion group model. This endpoint is designed for Virtual Robot to dynamically add motion groups by model name without needing to know the robot configuration name. Returns the full GCI transcript along with the motion group UID that corresponds to the requested motion group model.
|
|
10187
10199
|
* @summary Get Configuration for Motion Group
|
package/dist/v2/index.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ import { AxiosInstance, AxiosPromise, RawAxiosRequestConfig } from "axios";
|
|
|
6
6
|
* Wandelbots NOVA API
|
|
7
7
|
* Interact with robots in an easy and intuitive way.
|
|
8
8
|
*
|
|
9
|
-
* The version of the OpenAPI document: 2.
|
|
9
|
+
* The version of the OpenAPI document: 2.8.0 dev
|
|
10
10
|
*
|
|
11
11
|
*
|
|
12
12
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -9810,26 +9810,29 @@ declare const MotionGroupModelsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
9810
9810
|
* @summary Copy Motion Group Model
|
|
9811
9811
|
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
|
|
9812
9812
|
* @param {CopyMotionGroupModelRequest} copyMotionGroupModelRequest
|
|
9813
|
+
* @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
|
|
9813
9814
|
* @param {*} [options] Override http request option.
|
|
9814
9815
|
* @throws {RequiredError}
|
|
9815
9816
|
*/
|
|
9816
|
-
copyMotionGroupModel: (motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9817
|
+
copyMotionGroupModel: (motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, serialNumber?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9817
9818
|
/**
|
|
9818
9819
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models, where `is_custom` is `true`, can be deleted. Built-in base models cannot be removed.
|
|
9819
9820
|
* @summary Delete Motion Group Model
|
|
9820
9821
|
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
|
|
9822
|
+
* @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
|
|
9821
9823
|
* @param {*} [options] Override http request option.
|
|
9822
9824
|
* @throws {RequiredError}
|
|
9823
9825
|
*/
|
|
9824
|
-
deleteExperimentalMotionGroupModel: (motionGroupModel: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9826
|
+
deleteExperimentalMotionGroupModel: (motionGroupModel: string, serialNumber?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9825
9827
|
/**
|
|
9826
9828
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Exports the specified motion group model as a tar.gz archive. The resulting tar.gz file can be imported on another system using the import endpoint.
|
|
9827
9829
|
* @summary Export Motion Group Model
|
|
9828
9830
|
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
|
|
9831
|
+
* @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
|
|
9829
9832
|
* @param {*} [options] Override http request option.
|
|
9830
9833
|
* @throws {RequiredError}
|
|
9831
9834
|
*/
|
|
9832
|
-
exportMotionGroupModel: (motionGroupModel: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9835
|
+
exportMotionGroupModel: (motionGroupModel: string, serialNumber?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9833
9836
|
/**
|
|
9834
9837
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Get a robot configuration containing the specified motion group model. This endpoint is designed for Virtual Robot to dynamically add motion groups by model name without needing to know the robot configuration name. Returns the full GCI transcript along with the motion group UID that corresponds to the requested motion group model.
|
|
9835
9838
|
* @summary Get Configuration for Motion Group
|
|
@@ -9926,26 +9929,29 @@ declare const MotionGroupModelsApiFp: (configuration?: Configuration) => {
|
|
|
9926
9929
|
* @summary Copy Motion Group Model
|
|
9927
9930
|
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
|
|
9928
9931
|
* @param {CopyMotionGroupModelRequest} copyMotionGroupModelRequest
|
|
9932
|
+
* @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
|
|
9929
9933
|
* @param {*} [options] Override http request option.
|
|
9930
9934
|
* @throws {RequiredError}
|
|
9931
9935
|
*/
|
|
9932
|
-
copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MotionGroupModelDescription>>;
|
|
9936
|
+
copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, serialNumber?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MotionGroupModelDescription>>;
|
|
9933
9937
|
/**
|
|
9934
9938
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models, where `is_custom` is `true`, can be deleted. Built-in base models cannot be removed.
|
|
9935
9939
|
* @summary Delete Motion Group Model
|
|
9936
9940
|
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
|
|
9941
|
+
* @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
|
|
9937
9942
|
* @param {*} [options] Override http request option.
|
|
9938
9943
|
* @throws {RequiredError}
|
|
9939
9944
|
*/
|
|
9940
|
-
deleteExperimentalMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
9945
|
+
deleteExperimentalMotionGroupModel(motionGroupModel: string, serialNumber?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
9941
9946
|
/**
|
|
9942
9947
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Exports the specified motion group model as a tar.gz archive. The resulting tar.gz file can be imported on another system using the import endpoint.
|
|
9943
9948
|
* @summary Export Motion Group Model
|
|
9944
9949
|
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
|
|
9950
|
+
* @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
|
|
9945
9951
|
* @param {*} [options] Override http request option.
|
|
9946
9952
|
* @throws {RequiredError}
|
|
9947
9953
|
*/
|
|
9948
|
-
exportMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
9954
|
+
exportMotionGroupModel(motionGroupModel: string, serialNumber?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
9949
9955
|
/**
|
|
9950
9956
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Get a robot configuration containing the specified motion group model. This endpoint is designed for Virtual Robot to dynamically add motion groups by model name without needing to know the robot configuration name. Returns the full GCI transcript along with the motion group UID that corresponds to the requested motion group model.
|
|
9951
9957
|
* @summary Get Configuration for Motion Group
|
|
@@ -10044,26 +10050,29 @@ declare const MotionGroupModelsApiFactory: (configuration?: Configuration, baseP
|
|
|
10044
10050
|
* @summary Copy Motion Group Model
|
|
10045
10051
|
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
|
|
10046
10052
|
* @param {CopyMotionGroupModelRequest} copyMotionGroupModelRequest
|
|
10053
|
+
* @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
|
|
10047
10054
|
* @param {*} [options] Override http request option.
|
|
10048
10055
|
* @throws {RequiredError}
|
|
10049
10056
|
*/
|
|
10050
|
-
copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig): AxiosPromise<MotionGroupModelDescription>;
|
|
10057
|
+
copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, serialNumber?: string, options?: RawAxiosRequestConfig): AxiosPromise<MotionGroupModelDescription>;
|
|
10051
10058
|
/**
|
|
10052
10059
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models, where `is_custom` is `true`, can be deleted. Built-in base models cannot be removed.
|
|
10053
10060
|
* @summary Delete Motion Group Model
|
|
10054
10061
|
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
|
|
10062
|
+
* @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
|
|
10055
10063
|
* @param {*} [options] Override http request option.
|
|
10056
10064
|
* @throws {RequiredError}
|
|
10057
10065
|
*/
|
|
10058
|
-
deleteExperimentalMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
10066
|
+
deleteExperimentalMotionGroupModel(motionGroupModel: string, serialNumber?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
10059
10067
|
/**
|
|
10060
10068
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Exports the specified motion group model as a tar.gz archive. The resulting tar.gz file can be imported on another system using the import endpoint.
|
|
10061
10069
|
* @summary Export Motion Group Model
|
|
10062
10070
|
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
|
|
10071
|
+
* @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
|
|
10063
10072
|
* @param {*} [options] Override http request option.
|
|
10064
10073
|
* @throws {RequiredError}
|
|
10065
10074
|
*/
|
|
10066
|
-
exportMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): AxiosPromise<File>;
|
|
10075
|
+
exportMotionGroupModel(motionGroupModel: string, serialNumber?: string, options?: RawAxiosRequestConfig): AxiosPromise<File>;
|
|
10067
10076
|
/**
|
|
10068
10077
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Get a robot configuration containing the specified motion group model. This endpoint is designed for Virtual Robot to dynamically add motion groups by model name without needing to know the robot configuration name. Returns the full GCI transcript along with the motion group UID that corresponds to the requested motion group model.
|
|
10069
10078
|
* @summary Get Configuration for Motion Group
|
|
@@ -10162,26 +10171,29 @@ declare class MotionGroupModelsApi extends BaseAPI {
|
|
|
10162
10171
|
* @summary Copy Motion Group Model
|
|
10163
10172
|
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
|
|
10164
10173
|
* @param {CopyMotionGroupModelRequest} copyMotionGroupModelRequest
|
|
10174
|
+
* @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
|
|
10165
10175
|
* @param {*} [options] Override http request option.
|
|
10166
10176
|
* @throws {RequiredError}
|
|
10167
10177
|
*/
|
|
10168
|
-
copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MotionGroupModelDescription, any, {}>>;
|
|
10178
|
+
copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, serialNumber?: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MotionGroupModelDescription, any, {}>>;
|
|
10169
10179
|
/**
|
|
10170
10180
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models, where `is_custom` is `true`, can be deleted. Built-in base models cannot be removed.
|
|
10171
10181
|
* @summary Delete Motion Group Model
|
|
10172
10182
|
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
|
|
10183
|
+
* @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
|
|
10173
10184
|
* @param {*} [options] Override http request option.
|
|
10174
10185
|
* @throws {RequiredError}
|
|
10175
10186
|
*/
|
|
10176
|
-
deleteExperimentalMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
|
|
10187
|
+
deleteExperimentalMotionGroupModel(motionGroupModel: string, serialNumber?: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
|
|
10177
10188
|
/**
|
|
10178
10189
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Exports the specified motion group model as a tar.gz archive. The resulting tar.gz file can be imported on another system using the import endpoint.
|
|
10179
10190
|
* @summary Export Motion Group Model
|
|
10180
10191
|
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
|
|
10192
|
+
* @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
|
|
10181
10193
|
* @param {*} [options] Override http request option.
|
|
10182
10194
|
* @throws {RequiredError}
|
|
10183
10195
|
*/
|
|
10184
|
-
exportMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<File, any, {}>>;
|
|
10196
|
+
exportMotionGroupModel(motionGroupModel: string, serialNumber?: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<File, any, {}>>;
|
|
10185
10197
|
/**
|
|
10186
10198
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Get a robot configuration containing the specified motion group model. This endpoint is designed for Virtual Robot to dynamically add motion groups by model name without needing to know the robot configuration name. Returns the full GCI transcript along with the motion group UID that corresponds to the requested motion group model.
|
|
10187
10199
|
* @summary Get Configuration for Motion Group
|
package/dist/v2/index.js
CHANGED
|
@@ -4803,7 +4803,7 @@ var MotionGroupApi = class extends BaseAPI {
|
|
|
4803
4803
|
*/
|
|
4804
4804
|
const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
|
|
4805
4805
|
return {
|
|
4806
|
-
copyMotionGroupModel: async (motionGroupModel, copyMotionGroupModelRequest, options = {}) => {
|
|
4806
|
+
copyMotionGroupModel: async (motionGroupModel, copyMotionGroupModelRequest, serialNumber, options = {}) => {
|
|
4807
4807
|
assertParamExists("copyMotionGroupModel", "motionGroupModel", motionGroupModel);
|
|
4808
4808
|
assertParamExists("copyMotionGroupModel", "copyMotionGroupModelRequest", copyMotionGroupModelRequest);
|
|
4809
4809
|
const localVarPath = `/experimental/motion-group-models/{motion-group-model}/archive`.replace("{motion-group-model}", encodeURIComponent(String(motionGroupModel)));
|
|
@@ -4818,6 +4818,7 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
|
|
|
4818
4818
|
const localVarHeaderParameter = {};
|
|
4819
4819
|
const localVarQueryParameter = {};
|
|
4820
4820
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
4821
|
+
if (serialNumber !== void 0) localVarQueryParameter["serial_number"] = serialNumber;
|
|
4821
4822
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
4822
4823
|
localVarHeaderParameter["Accept"] = "application/json";
|
|
4823
4824
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -4833,7 +4834,7 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
|
|
|
4833
4834
|
options: localVarRequestOptions
|
|
4834
4835
|
};
|
|
4835
4836
|
},
|
|
4836
|
-
deleteExperimentalMotionGroupModel: async (motionGroupModel, options = {}) => {
|
|
4837
|
+
deleteExperimentalMotionGroupModel: async (motionGroupModel, serialNumber, options = {}) => {
|
|
4837
4838
|
assertParamExists("deleteExperimentalMotionGroupModel", "motionGroupModel", motionGroupModel);
|
|
4838
4839
|
const localVarPath = `/experimental/motion-group-models/{motion-group-model}/archive`.replace("{motion-group-model}", encodeURIComponent(String(motionGroupModel)));
|
|
4839
4840
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -4847,6 +4848,7 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
|
|
|
4847
4848
|
const localVarHeaderParameter = {};
|
|
4848
4849
|
const localVarQueryParameter = {};
|
|
4849
4850
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
4851
|
+
if (serialNumber !== void 0) localVarQueryParameter["serial_number"] = serialNumber;
|
|
4850
4852
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4851
4853
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4852
4854
|
localVarRequestOptions.headers = {
|
|
@@ -4859,7 +4861,7 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
|
|
|
4859
4861
|
options: localVarRequestOptions
|
|
4860
4862
|
};
|
|
4861
4863
|
},
|
|
4862
|
-
exportMotionGroupModel: async (motionGroupModel, options = {}) => {
|
|
4864
|
+
exportMotionGroupModel: async (motionGroupModel, serialNumber, options = {}) => {
|
|
4863
4865
|
assertParamExists("exportMotionGroupModel", "motionGroupModel", motionGroupModel);
|
|
4864
4866
|
const localVarPath = `/experimental/motion-group-models/{motion-group-model}/archive`.replace("{motion-group-model}", encodeURIComponent(String(motionGroupModel)));
|
|
4865
4867
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -4873,6 +4875,7 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
|
|
|
4873
4875
|
const localVarHeaderParameter = {};
|
|
4874
4876
|
const localVarQueryParameter = {};
|
|
4875
4877
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
4878
|
+
if (serialNumber !== void 0) localVarQueryParameter["serial_number"] = serialNumber;
|
|
4876
4879
|
localVarHeaderParameter["Accept"] = "application/gzip";
|
|
4877
4880
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4878
4881
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -5188,20 +5191,20 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
|
|
|
5188
5191
|
const MotionGroupModelsApiFp = function(configuration) {
|
|
5189
5192
|
const localVarAxiosParamCreator = MotionGroupModelsApiAxiosParamCreator(configuration);
|
|
5190
5193
|
return {
|
|
5191
|
-
async copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options) {
|
|
5192
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options);
|
|
5194
|
+
async copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, serialNumber, options) {
|
|
5195
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, serialNumber, options);
|
|
5193
5196
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5194
5197
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.copyMotionGroupModel"]?.[localVarOperationServerIndex]?.url;
|
|
5195
5198
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
5196
5199
|
},
|
|
5197
|
-
async deleteExperimentalMotionGroupModel(motionGroupModel, options) {
|
|
5198
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteExperimentalMotionGroupModel(motionGroupModel, options);
|
|
5200
|
+
async deleteExperimentalMotionGroupModel(motionGroupModel, serialNumber, options) {
|
|
5201
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteExperimentalMotionGroupModel(motionGroupModel, serialNumber, options);
|
|
5199
5202
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5200
5203
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.deleteExperimentalMotionGroupModel"]?.[localVarOperationServerIndex]?.url;
|
|
5201
5204
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
5202
5205
|
},
|
|
5203
|
-
async exportMotionGroupModel(motionGroupModel, options) {
|
|
5204
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.exportMotionGroupModel(motionGroupModel, options);
|
|
5206
|
+
async exportMotionGroupModel(motionGroupModel, serialNumber, options) {
|
|
5207
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.exportMotionGroupModel(motionGroupModel, serialNumber, options);
|
|
5205
5208
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5206
5209
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.exportMotionGroupModel"]?.[localVarOperationServerIndex]?.url;
|
|
5207
5210
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -5280,14 +5283,14 @@ const MotionGroupModelsApiFp = function(configuration) {
|
|
|
5280
5283
|
const MotionGroupModelsApiFactory = function(configuration, basePath, axios) {
|
|
5281
5284
|
const localVarFp = MotionGroupModelsApiFp(configuration);
|
|
5282
5285
|
return {
|
|
5283
|
-
copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options) {
|
|
5284
|
-
return localVarFp.copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options).then((request) => request(axios, basePath));
|
|
5286
|
+
copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, serialNumber, options) {
|
|
5287
|
+
return localVarFp.copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, serialNumber, options).then((request) => request(axios, basePath));
|
|
5285
5288
|
},
|
|
5286
|
-
deleteExperimentalMotionGroupModel(motionGroupModel, options) {
|
|
5287
|
-
return localVarFp.deleteExperimentalMotionGroupModel(motionGroupModel, options).then((request) => request(axios, basePath));
|
|
5289
|
+
deleteExperimentalMotionGroupModel(motionGroupModel, serialNumber, options) {
|
|
5290
|
+
return localVarFp.deleteExperimentalMotionGroupModel(motionGroupModel, serialNumber, options).then((request) => request(axios, basePath));
|
|
5288
5291
|
},
|
|
5289
|
-
exportMotionGroupModel(motionGroupModel, options) {
|
|
5290
|
-
return localVarFp.exportMotionGroupModel(motionGroupModel, options).then((request) => request(axios, basePath));
|
|
5292
|
+
exportMotionGroupModel(motionGroupModel, serialNumber, options) {
|
|
5293
|
+
return localVarFp.exportMotionGroupModel(motionGroupModel, serialNumber, options).then((request) => request(axios, basePath));
|
|
5291
5294
|
},
|
|
5292
5295
|
getConfigurationForMotionGroup(motionGroupModel, options) {
|
|
5293
5296
|
return localVarFp.getConfigurationForMotionGroup(motionGroupModel, options).then((request) => request(axios, basePath));
|
|
@@ -5333,31 +5336,34 @@ var MotionGroupModelsApi = class extends BaseAPI {
|
|
|
5333
5336
|
* @summary Copy Motion Group Model
|
|
5334
5337
|
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
|
|
5335
5338
|
* @param {CopyMotionGroupModelRequest} copyMotionGroupModelRequest
|
|
5339
|
+
* @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
|
|
5336
5340
|
* @param {*} [options] Override http request option.
|
|
5337
5341
|
* @throws {RequiredError}
|
|
5338
5342
|
*/
|
|
5339
|
-
copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options) {
|
|
5340
|
-
return MotionGroupModelsApiFp(this.configuration).copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options).then((request) => request(this.axios, this.basePath));
|
|
5343
|
+
copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, serialNumber, options) {
|
|
5344
|
+
return MotionGroupModelsApiFp(this.configuration).copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, serialNumber, options).then((request) => request(this.axios, this.basePath));
|
|
5341
5345
|
}
|
|
5342
5346
|
/**
|
|
5343
5347
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models, where `is_custom` is `true`, can be deleted. Built-in base models cannot be removed.
|
|
5344
5348
|
* @summary Delete Motion Group Model
|
|
5345
5349
|
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
|
|
5350
|
+
* @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
|
|
5346
5351
|
* @param {*} [options] Override http request option.
|
|
5347
5352
|
* @throws {RequiredError}
|
|
5348
5353
|
*/
|
|
5349
|
-
deleteExperimentalMotionGroupModel(motionGroupModel, options) {
|
|
5350
|
-
return MotionGroupModelsApiFp(this.configuration).deleteExperimentalMotionGroupModel(motionGroupModel, options).then((request) => request(this.axios, this.basePath));
|
|
5354
|
+
deleteExperimentalMotionGroupModel(motionGroupModel, serialNumber, options) {
|
|
5355
|
+
return MotionGroupModelsApiFp(this.configuration).deleteExperimentalMotionGroupModel(motionGroupModel, serialNumber, options).then((request) => request(this.axios, this.basePath));
|
|
5351
5356
|
}
|
|
5352
5357
|
/**
|
|
5353
5358
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Exports the specified motion group model as a tar.gz archive. The resulting tar.gz file can be imported on another system using the import endpoint.
|
|
5354
5359
|
* @summary Export Motion Group Model
|
|
5355
5360
|
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
|
|
5361
|
+
* @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
|
|
5356
5362
|
* @param {*} [options] Override http request option.
|
|
5357
5363
|
* @throws {RequiredError}
|
|
5358
5364
|
*/
|
|
5359
|
-
exportMotionGroupModel(motionGroupModel, options) {
|
|
5360
|
-
return MotionGroupModelsApiFp(this.configuration).exportMotionGroupModel(motionGroupModel, options).then((request) => request(this.axios, this.basePath));
|
|
5365
|
+
exportMotionGroupModel(motionGroupModel, serialNumber, options) {
|
|
5366
|
+
return MotionGroupModelsApiFp(this.configuration).exportMotionGroupModel(motionGroupModel, serialNumber, options).then((request) => request(this.axios, this.basePath));
|
|
5361
5367
|
}
|
|
5362
5368
|
/**
|
|
5363
5369
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Get a robot configuration containing the specified motion group model. This endpoint is designed for Virtual Robot to dynamically add motion groups by model name without needing to know the robot configuration name. Returns the full GCI transcript along with the motion group UID that corresponds to the requested motion group model.
|