@wandelbots/nova-api 26.7.0-dev.49 → 26.7.0-dev.50
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 +493 -525
- package/dist/v2/index.d.cts +236 -256
- package/dist/v2/index.d.ts +236 -256
- package/dist/v2/index.js +237 -265
- package/package.json +1 -1
package/dist/v2/index.cjs
CHANGED
|
@@ -70,9 +70,9 @@ const COLLECTION_FORMATS = {
|
|
|
70
70
|
pipes: "|"
|
|
71
71
|
};
|
|
72
72
|
var BaseAPI = class {
|
|
73
|
-
constructor(configuration, basePath = BASE_PATH, axios$
|
|
73
|
+
constructor(configuration, basePath = BASE_PATH, axios$209 = axios.default) {
|
|
74
74
|
this.basePath = basePath;
|
|
75
|
-
this.axios = axios$
|
|
75
|
+
this.axios = axios$209;
|
|
76
76
|
_defineProperty(this, "configuration", void 0);
|
|
77
77
|
if (configuration) {
|
|
78
78
|
this.configuration = configuration;
|
|
@@ -3698,12 +3698,129 @@ var ControllerInputsOutputsApi = class extends BaseAPI {
|
|
|
3698
3698
|
*/
|
|
3699
3699
|
const DatasetsApiAxiosParamCreator = function(configuration) {
|
|
3700
3700
|
return {
|
|
3701
|
-
|
|
3702
|
-
assertParamExists("
|
|
3703
|
-
assertParamExists("
|
|
3704
|
-
|
|
3705
|
-
|
|
3706
|
-
|
|
3701
|
+
createDataset: async (cell, createDatasetRequest, options = {}) => {
|
|
3702
|
+
assertParamExists("createDataset", "cell", cell);
|
|
3703
|
+
assertParamExists("createDataset", "createDatasetRequest", createDatasetRequest);
|
|
3704
|
+
const localVarPath = `/experimental/cells/{cell}/datasets`.replace("{cell}", encodeURIComponent(String(cell)));
|
|
3705
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3706
|
+
let baseOptions;
|
|
3707
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
3708
|
+
const localVarRequestOptions = {
|
|
3709
|
+
method: "POST",
|
|
3710
|
+
...baseOptions,
|
|
3711
|
+
...options
|
|
3712
|
+
};
|
|
3713
|
+
const localVarHeaderParameter = {};
|
|
3714
|
+
const localVarQueryParameter = {};
|
|
3715
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3716
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
3717
|
+
localVarHeaderParameter["Accept"] = "application/json";
|
|
3718
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3719
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3720
|
+
localVarRequestOptions.headers = {
|
|
3721
|
+
...localVarHeaderParameter,
|
|
3722
|
+
...headersFromBaseOptions,
|
|
3723
|
+
...options.headers
|
|
3724
|
+
};
|
|
3725
|
+
localVarRequestOptions.data = serializeDataIfNeeded(createDatasetRequest, localVarRequestOptions, configuration);
|
|
3726
|
+
return {
|
|
3727
|
+
url: toPathString(localVarUrlObj),
|
|
3728
|
+
options: localVarRequestOptions
|
|
3729
|
+
};
|
|
3730
|
+
},
|
|
3731
|
+
deleteDataset: async (cell, dataset, revision, options = {}) => {
|
|
3732
|
+
assertParamExists("deleteDataset", "cell", cell);
|
|
3733
|
+
assertParamExists("deleteDataset", "dataset", dataset);
|
|
3734
|
+
const localVarPath = `/experimental/cells/{cell}/datasets/{dataset}`.replace("{cell}", encodeURIComponent(String(cell))).replace("{dataset}", encodeURIComponent(String(dataset)));
|
|
3735
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3736
|
+
let baseOptions;
|
|
3737
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
3738
|
+
const localVarRequestOptions = {
|
|
3739
|
+
method: "DELETE",
|
|
3740
|
+
...baseOptions,
|
|
3741
|
+
...options
|
|
3742
|
+
};
|
|
3743
|
+
const localVarHeaderParameter = {};
|
|
3744
|
+
const localVarQueryParameter = {};
|
|
3745
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3746
|
+
if (revision !== void 0) localVarQueryParameter["revision"] = revision;
|
|
3747
|
+
localVarHeaderParameter["Accept"] = "application/json";
|
|
3748
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3749
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3750
|
+
localVarRequestOptions.headers = {
|
|
3751
|
+
...localVarHeaderParameter,
|
|
3752
|
+
...headersFromBaseOptions,
|
|
3753
|
+
...options.headers
|
|
3754
|
+
};
|
|
3755
|
+
return {
|
|
3756
|
+
url: toPathString(localVarUrlObj),
|
|
3757
|
+
options: localVarRequestOptions
|
|
3758
|
+
};
|
|
3759
|
+
},
|
|
3760
|
+
getDataset: async (cell, dataset, revision, options = {}) => {
|
|
3761
|
+
assertParamExists("getDataset", "cell", cell);
|
|
3762
|
+
assertParamExists("getDataset", "dataset", dataset);
|
|
3763
|
+
const localVarPath = `/experimental/cells/{cell}/datasets/{dataset}`.replace("{cell}", encodeURIComponent(String(cell))).replace("{dataset}", encodeURIComponent(String(dataset)));
|
|
3764
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3765
|
+
let baseOptions;
|
|
3766
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
3767
|
+
const localVarRequestOptions = {
|
|
3768
|
+
method: "GET",
|
|
3769
|
+
...baseOptions,
|
|
3770
|
+
...options
|
|
3771
|
+
};
|
|
3772
|
+
const localVarHeaderParameter = {};
|
|
3773
|
+
const localVarQueryParameter = {};
|
|
3774
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3775
|
+
if (revision !== void 0) localVarQueryParameter["revision"] = revision;
|
|
3776
|
+
localVarHeaderParameter["Accept"] = "application/json";
|
|
3777
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3778
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3779
|
+
localVarRequestOptions.headers = {
|
|
3780
|
+
...localVarHeaderParameter,
|
|
3781
|
+
...headersFromBaseOptions,
|
|
3782
|
+
...options.headers
|
|
3783
|
+
};
|
|
3784
|
+
return {
|
|
3785
|
+
url: toPathString(localVarUrlObj),
|
|
3786
|
+
options: localVarRequestOptions
|
|
3787
|
+
};
|
|
3788
|
+
},
|
|
3789
|
+
getDatasets: async (cell, dataset, latestOnly, options = {}) => {
|
|
3790
|
+
assertParamExists("getDatasets", "cell", cell);
|
|
3791
|
+
const localVarPath = `/experimental/cells/{cell}/datasets`.replace("{cell}", encodeURIComponent(String(cell)));
|
|
3792
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3793
|
+
let baseOptions;
|
|
3794
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
3795
|
+
const localVarRequestOptions = {
|
|
3796
|
+
method: "GET",
|
|
3797
|
+
...baseOptions,
|
|
3798
|
+
...options
|
|
3799
|
+
};
|
|
3800
|
+
const localVarHeaderParameter = {};
|
|
3801
|
+
const localVarQueryParameter = {};
|
|
3802
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3803
|
+
if (dataset !== void 0) localVarQueryParameter["dataset"] = dataset;
|
|
3804
|
+
if (latestOnly !== void 0) localVarQueryParameter["latest_only"] = latestOnly;
|
|
3805
|
+
localVarHeaderParameter["Accept"] = "application/json";
|
|
3806
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3807
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3808
|
+
localVarRequestOptions.headers = {
|
|
3809
|
+
...localVarHeaderParameter,
|
|
3810
|
+
...headersFromBaseOptions,
|
|
3811
|
+
...options.headers
|
|
3812
|
+
};
|
|
3813
|
+
return {
|
|
3814
|
+
url: toPathString(localVarUrlObj),
|
|
3815
|
+
options: localVarRequestOptions
|
|
3816
|
+
};
|
|
3817
|
+
},
|
|
3818
|
+
localizeDatasetFramePose: async (cell, dataset, frame, poses, revision, options = {}) => {
|
|
3819
|
+
assertParamExists("localizeDatasetFramePose", "cell", cell);
|
|
3820
|
+
assertParamExists("localizeDatasetFramePose", "dataset", dataset);
|
|
3821
|
+
assertParamExists("localizeDatasetFramePose", "frame", frame);
|
|
3822
|
+
assertParamExists("localizeDatasetFramePose", "poses", poses);
|
|
3823
|
+
const localVarPath = `/experimental/cells/{cell}/datasets/{dataset}/frames/{frame}/localize`.replace("{cell}", encodeURIComponent(String(cell))).replace("{dataset}", encodeURIComponent(String(dataset))).replace("{frame}", encodeURIComponent(String(frame)));
|
|
3707
3824
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3708
3825
|
let baseOptions;
|
|
3709
3826
|
if (configuration) baseOptions = configuration.baseOptions;
|
|
@@ -3725,18 +3842,18 @@ const DatasetsApiAxiosParamCreator = function(configuration) {
|
|
|
3725
3842
|
...headersFromBaseOptions,
|
|
3726
3843
|
...options.headers
|
|
3727
3844
|
};
|
|
3728
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
3845
|
+
localVarRequestOptions.data = serializeDataIfNeeded(poses, localVarRequestOptions, configuration);
|
|
3729
3846
|
return {
|
|
3730
3847
|
url: toPathString(localVarUrlObj),
|
|
3731
3848
|
options: localVarRequestOptions
|
|
3732
3849
|
};
|
|
3733
3850
|
},
|
|
3734
|
-
|
|
3735
|
-
assertParamExists("
|
|
3736
|
-
assertParamExists("
|
|
3737
|
-
assertParamExists("
|
|
3738
|
-
assertParamExists("
|
|
3739
|
-
const localVarPath = `/experimental/cells/{cell}/
|
|
3851
|
+
resolveDatasetFramePose: async (cell, dataset, frame, poses, revision, options = {}) => {
|
|
3852
|
+
assertParamExists("resolveDatasetFramePose", "cell", cell);
|
|
3853
|
+
assertParamExists("resolveDatasetFramePose", "dataset", dataset);
|
|
3854
|
+
assertParamExists("resolveDatasetFramePose", "frame", frame);
|
|
3855
|
+
assertParamExists("resolveDatasetFramePose", "poses", poses);
|
|
3856
|
+
const localVarPath = `/experimental/cells/{cell}/datasets/{dataset}/frames/{frame}/resolve`.replace("{cell}", encodeURIComponent(String(cell))).replace("{dataset}", encodeURIComponent(String(dataset))).replace("{frame}", encodeURIComponent(String(frame)));
|
|
3740
3857
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3741
3858
|
let baseOptions;
|
|
3742
3859
|
if (configuration) baseOptions = configuration.baseOptions;
|
|
@@ -3758,7 +3875,7 @@ const DatasetsApiAxiosParamCreator = function(configuration) {
|
|
|
3758
3875
|
...headersFromBaseOptions,
|
|
3759
3876
|
...options.headers
|
|
3760
3877
|
};
|
|
3761
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
3878
|
+
localVarRequestOptions.data = serializeDataIfNeeded(poses, localVarRequestOptions, configuration);
|
|
3762
3879
|
return {
|
|
3763
3880
|
url: toPathString(localVarUrlObj),
|
|
3764
3881
|
options: localVarRequestOptions
|
|
@@ -3772,31 +3889,67 @@ const DatasetsApiAxiosParamCreator = function(configuration) {
|
|
|
3772
3889
|
const DatasetsApiFp = function(configuration) {
|
|
3773
3890
|
const localVarAxiosParamCreator = DatasetsApiAxiosParamCreator(configuration);
|
|
3774
3891
|
return {
|
|
3775
|
-
async
|
|
3776
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
3892
|
+
async createDataset(cell, createDatasetRequest, options) {
|
|
3893
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createDataset(cell, createDatasetRequest, options);
|
|
3777
3894
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3778
|
-
const localVarOperationServerBasePath = operationServerMap["DatasetsApi.
|
|
3895
|
+
const localVarOperationServerBasePath = operationServerMap["DatasetsApi.createDataset"]?.[localVarOperationServerIndex]?.url;
|
|
3779
3896
|
return (axios$65, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$65, localVarOperationServerBasePath || basePath);
|
|
3780
3897
|
},
|
|
3781
|
-
async
|
|
3782
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
3898
|
+
async deleteDataset(cell, dataset, revision, options) {
|
|
3899
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteDataset(cell, dataset, revision, options);
|
|
3783
3900
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3784
|
-
const localVarOperationServerBasePath = operationServerMap["DatasetsApi.
|
|
3901
|
+
const localVarOperationServerBasePath = operationServerMap["DatasetsApi.deleteDataset"]?.[localVarOperationServerIndex]?.url;
|
|
3785
3902
|
return (axios$66, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$66, localVarOperationServerBasePath || basePath);
|
|
3903
|
+
},
|
|
3904
|
+
async getDataset(cell, dataset, revision, options) {
|
|
3905
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getDataset(cell, dataset, revision, options);
|
|
3906
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3907
|
+
const localVarOperationServerBasePath = operationServerMap["DatasetsApi.getDataset"]?.[localVarOperationServerIndex]?.url;
|
|
3908
|
+
return (axios$67, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$67, localVarOperationServerBasePath || basePath);
|
|
3909
|
+
},
|
|
3910
|
+
async getDatasets(cell, dataset, latestOnly, options) {
|
|
3911
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getDatasets(cell, dataset, latestOnly, options);
|
|
3912
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3913
|
+
const localVarOperationServerBasePath = operationServerMap["DatasetsApi.getDatasets"]?.[localVarOperationServerIndex]?.url;
|
|
3914
|
+
return (axios$68, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$68, localVarOperationServerBasePath || basePath);
|
|
3915
|
+
},
|
|
3916
|
+
async localizeDatasetFramePose(cell, dataset, frame, poses, revision, options) {
|
|
3917
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.localizeDatasetFramePose(cell, dataset, frame, poses, revision, options);
|
|
3918
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3919
|
+
const localVarOperationServerBasePath = operationServerMap["DatasetsApi.localizeDatasetFramePose"]?.[localVarOperationServerIndex]?.url;
|
|
3920
|
+
return (axios$69, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$69, localVarOperationServerBasePath || basePath);
|
|
3921
|
+
},
|
|
3922
|
+
async resolveDatasetFramePose(cell, dataset, frame, poses, revision, options) {
|
|
3923
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.resolveDatasetFramePose(cell, dataset, frame, poses, revision, options);
|
|
3924
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3925
|
+
const localVarOperationServerBasePath = operationServerMap["DatasetsApi.resolveDatasetFramePose"]?.[localVarOperationServerIndex]?.url;
|
|
3926
|
+
return (axios$70, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$70, localVarOperationServerBasePath || basePath);
|
|
3786
3927
|
}
|
|
3787
3928
|
};
|
|
3788
3929
|
};
|
|
3789
3930
|
/**
|
|
3790
3931
|
* DatasetsApi - factory interface
|
|
3791
3932
|
*/
|
|
3792
|
-
const DatasetsApiFactory = function(configuration, basePath, axios$
|
|
3933
|
+
const DatasetsApiFactory = function(configuration, basePath, axios$71) {
|
|
3793
3934
|
const localVarFp = DatasetsApiFp(configuration);
|
|
3794
3935
|
return {
|
|
3795
|
-
|
|
3796
|
-
return localVarFp.
|
|
3936
|
+
createDataset(cell, createDatasetRequest, options) {
|
|
3937
|
+
return localVarFp.createDataset(cell, createDatasetRequest, options).then((request) => request(axios$71, basePath));
|
|
3938
|
+
},
|
|
3939
|
+
deleteDataset(cell, dataset, revision, options) {
|
|
3940
|
+
return localVarFp.deleteDataset(cell, dataset, revision, options).then((request) => request(axios$71, basePath));
|
|
3941
|
+
},
|
|
3942
|
+
getDataset(cell, dataset, revision, options) {
|
|
3943
|
+
return localVarFp.getDataset(cell, dataset, revision, options).then((request) => request(axios$71, basePath));
|
|
3944
|
+
},
|
|
3945
|
+
getDatasets(cell, dataset, latestOnly, options) {
|
|
3946
|
+
return localVarFp.getDatasets(cell, dataset, latestOnly, options).then((request) => request(axios$71, basePath));
|
|
3947
|
+
},
|
|
3948
|
+
localizeDatasetFramePose(cell, dataset, frame, poses, revision, options) {
|
|
3949
|
+
return localVarFp.localizeDatasetFramePose(cell, dataset, frame, poses, revision, options).then((request) => request(axios$71, basePath));
|
|
3797
3950
|
},
|
|
3798
|
-
|
|
3799
|
-
return localVarFp.
|
|
3951
|
+
resolveDatasetFramePose(cell, dataset, frame, poses, revision, options) {
|
|
3952
|
+
return localVarFp.resolveDatasetFramePose(cell, dataset, frame, poses, revision, options).then((request) => request(axios$71, basePath));
|
|
3800
3953
|
}
|
|
3801
3954
|
};
|
|
3802
3955
|
};
|
|
@@ -3805,32 +3958,79 @@ const DatasetsApiFactory = function(configuration, basePath, axios$67) {
|
|
|
3805
3958
|
*/
|
|
3806
3959
|
var DatasetsApi = class extends BaseAPI {
|
|
3807
3960
|
/**
|
|
3808
|
-
* **Required permissions:** `
|
|
3809
|
-
* @summary
|
|
3961
|
+
* **Required permissions:** `can_write_datasets` - Write stored datasets ___ <!-- theme: danger --> > **Experimental** Creates a new dataset together with its poses and command routines.
|
|
3962
|
+
* @summary Create Dataset
|
|
3963
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
3964
|
+
* @param {CreateDatasetRequest} createDatasetRequest
|
|
3965
|
+
* @param {*} [options] Override http request option.
|
|
3966
|
+
* @throws {RequiredError}
|
|
3967
|
+
*/
|
|
3968
|
+
createDataset(cell, createDatasetRequest, options) {
|
|
3969
|
+
return DatasetsApiFp(this.configuration).createDataset(cell, createDatasetRequest, options).then((request) => request(this.axios, this.basePath));
|
|
3970
|
+
}
|
|
3971
|
+
/**
|
|
3972
|
+
* **Required permissions:** `can_write_datasets` - Write stored datasets ___ <!-- theme: danger --> > **Experimental** Deletes a dataset together with its persisted poses and command routines. Deletes the requested revision when the `revision` query parameter is set; otherwise deletes the latest revision. <!-- theme: danger --> > This will delete persistently stored data.
|
|
3973
|
+
* @summary Delete Dataset
|
|
3974
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
3975
|
+
* @param {string} dataset Specifies the dataset identifier.
|
|
3976
|
+
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
3977
|
+
* @param {*} [options] Override http request option.
|
|
3978
|
+
* @throws {RequiredError}
|
|
3979
|
+
*/
|
|
3980
|
+
deleteDataset(cell, dataset, revision, options) {
|
|
3981
|
+
return DatasetsApiFp(this.configuration).deleteDataset(cell, dataset, revision, options).then((request) => request(this.axios, this.basePath));
|
|
3982
|
+
}
|
|
3983
|
+
/**
|
|
3984
|
+
* **Required permissions:** `can_read_datasets` - Read stored datasets ___ <!-- theme: danger --> > **Experimental** Returns a dataset together with its persisted poses and command routines. Returns the requested revision when the `revision` query parameter is set; otherwise returns the latest revision.
|
|
3985
|
+
* @summary Get Dataset
|
|
3986
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
3987
|
+
* @param {string} dataset Specifies the dataset identifier.
|
|
3988
|
+
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
3989
|
+
* @param {*} [options] Override http request option.
|
|
3990
|
+
* @throws {RequiredError}
|
|
3991
|
+
*/
|
|
3992
|
+
getDataset(cell, dataset, revision, options) {
|
|
3993
|
+
return DatasetsApiFp(this.configuration).getDataset(cell, dataset, revision, options).then((request) => request(this.axios, this.basePath));
|
|
3994
|
+
}
|
|
3995
|
+
/**
|
|
3996
|
+
* **Required permissions:** `can_read_datasets` - Read stored datasets ___ <!-- theme: danger --> > **Experimental** Returns the list of available datasets. Without query parameters, all datasets across all revisions are returned. Use `dataset` to return all revisions of a single dataset. Use `latest_only` to return only the latest revision of each dataset.
|
|
3997
|
+
* @summary List Datasets
|
|
3998
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
3999
|
+
* @param {string} [dataset] Restricts the result to all revisions of the given dataset.
|
|
4000
|
+
* @param {boolean} [latestOnly] When `true`, returns only the latest revision of each dataset.
|
|
4001
|
+
* @param {*} [options] Override http request option.
|
|
4002
|
+
* @throws {RequiredError}
|
|
4003
|
+
*/
|
|
4004
|
+
getDatasets(cell, dataset, latestOnly, options) {
|
|
4005
|
+
return DatasetsApiFp(this.configuration).getDatasets(cell, dataset, latestOnly, options).then((request) => request(this.axios, this.basePath));
|
|
4006
|
+
}
|
|
4007
|
+
/**
|
|
4008
|
+
* **Required permissions:** `can_read_datasets` - Read stored datasets ___ <!-- theme: danger --> > **Experimental** Localize a list of pose that are expressed in the `world` frame into the given dataset frame. This is the inverse of the resolve operation: the poses are transformed through the whole chain of reference frames within the dataset.
|
|
4009
|
+
* @summary Localize Poses from World (Dataset)
|
|
3810
4010
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
3811
4011
|
* @param {string} dataset Specifies the dataset identifier.
|
|
3812
|
-
* @param {string}
|
|
3813
|
-
* @param {Pose}
|
|
4012
|
+
* @param {string} frame Unique identifier addressing a frame within a dataset.
|
|
4013
|
+
* @param {Array<Pose>} poses The poses expressed in the `world` frame.
|
|
3814
4014
|
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
3815
4015
|
* @param {*} [options] Override http request option.
|
|
3816
4016
|
* @throws {RequiredError}
|
|
3817
4017
|
*/
|
|
3818
|
-
|
|
3819
|
-
return DatasetsApiFp(this.configuration).
|
|
4018
|
+
localizeDatasetFramePose(cell, dataset, frame, poses, revision, options) {
|
|
4019
|
+
return DatasetsApiFp(this.configuration).localizeDatasetFramePose(cell, dataset, frame, poses, revision, options).then((request) => request(this.axios, this.basePath));
|
|
3820
4020
|
}
|
|
3821
4021
|
/**
|
|
3822
|
-
* **Required permissions:** `
|
|
3823
|
-
* @summary Resolve
|
|
4022
|
+
* **Required permissions:** `can_read_datasets` - Read stored datasets ___ <!-- theme: danger --> > **Experimental** Resolve a list of poses that are expressed relative to the given dataset coordinate system into the `world` frame. The poses are transformed through the whole chain of reference frames within the dataset.
|
|
4023
|
+
* @summary Resolve Poses to World (Dataset)
|
|
3824
4024
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
3825
4025
|
* @param {string} dataset Specifies the dataset identifier.
|
|
3826
|
-
* @param {string}
|
|
3827
|
-
* @param {Pose}
|
|
4026
|
+
* @param {string} frame Unique identifier addressing a frame within a dataset.
|
|
4027
|
+
* @param {Array<Pose>} poses The poses expressed relative to the given frame.
|
|
3828
4028
|
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
3829
4029
|
* @param {*} [options] Override http request option.
|
|
3830
4030
|
* @throws {RequiredError}
|
|
3831
4031
|
*/
|
|
3832
|
-
|
|
3833
|
-
return DatasetsApiFp(this.configuration).
|
|
4032
|
+
resolveDatasetFramePose(cell, dataset, frame, poses, revision, options) {
|
|
4033
|
+
return DatasetsApiFp(this.configuration).resolveDatasetFramePose(cell, dataset, frame, poses, revision, options).then((request) => request(this.axios, this.basePath));
|
|
3834
4034
|
}
|
|
3835
4035
|
};
|
|
3836
4036
|
/**
|
|
@@ -3878,16 +4078,16 @@ const JoggingApiFp = function(configuration) {
|
|
|
3878
4078
|
const localVarAxiosArgs = await localVarAxiosParamCreator.executeJogging(cell, controller, executeJoggingRequest, options);
|
|
3879
4079
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3880
4080
|
const localVarOperationServerBasePath = operationServerMap["JoggingApi.executeJogging"]?.[localVarOperationServerIndex]?.url;
|
|
3881
|
-
return (axios$
|
|
4081
|
+
return (axios$72, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$72, localVarOperationServerBasePath || basePath);
|
|
3882
4082
|
} };
|
|
3883
4083
|
};
|
|
3884
4084
|
/**
|
|
3885
4085
|
* JoggingApi - factory interface
|
|
3886
4086
|
*/
|
|
3887
|
-
const JoggingApiFactory = function(configuration, basePath, axios$
|
|
4087
|
+
const JoggingApiFactory = function(configuration, basePath, axios$73) {
|
|
3888
4088
|
const localVarFp = JoggingApiFp(configuration);
|
|
3889
4089
|
return { executeJogging(cell, controller, executeJoggingRequest, options) {
|
|
3890
|
-
return localVarFp.executeJogging(cell, controller, executeJoggingRequest, options).then((request) => request(axios$
|
|
4090
|
+
return localVarFp.executeJogging(cell, controller, executeJoggingRequest, options).then((request) => request(axios$73, basePath));
|
|
3891
4091
|
} };
|
|
3892
4092
|
};
|
|
3893
4093
|
/**
|
|
@@ -4104,63 +4304,63 @@ const KinematicsApiFp = function(configuration) {
|
|
|
4104
4304
|
const localVarAxiosArgs = await localVarAxiosParamCreator.configuredPoseInverse(cell, configuredPoseInverseRequest, options);
|
|
4105
4305
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4106
4306
|
const localVarOperationServerBasePath = operationServerMap["KinematicsApi.configuredPoseInverse"]?.[localVarOperationServerIndex]?.url;
|
|
4107
|
-
return (axios$
|
|
4307
|
+
return (axios$74, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$74, localVarOperationServerBasePath || basePath);
|
|
4108
4308
|
},
|
|
4109
4309
|
async convertVendorConfiguredPose(cell, convertVendorConfiguredPoseRequest, options) {
|
|
4110
4310
|
const localVarAxiosArgs = await localVarAxiosParamCreator.convertVendorConfiguredPose(cell, convertVendorConfiguredPoseRequest, options);
|
|
4111
4311
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4112
4312
|
const localVarOperationServerBasePath = operationServerMap["KinematicsApi.convertVendorConfiguredPose"]?.[localVarOperationServerIndex]?.url;
|
|
4113
|
-
return (axios$
|
|
4313
|
+
return (axios$75, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$75, localVarOperationServerBasePath || basePath);
|
|
4114
4314
|
},
|
|
4115
4315
|
async forwardKinematics(cell, forwardKinematicsRequest, options) {
|
|
4116
4316
|
const localVarAxiosArgs = await localVarAxiosParamCreator.forwardKinematics(cell, forwardKinematicsRequest, options);
|
|
4117
4317
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4118
4318
|
const localVarOperationServerBasePath = operationServerMap["KinematicsApi.forwardKinematics"]?.[localVarOperationServerIndex]?.url;
|
|
4119
|
-
return (axios$
|
|
4319
|
+
return (axios$76, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$76, localVarOperationServerBasePath || basePath);
|
|
4120
4320
|
},
|
|
4121
4321
|
async getKinematicConfiguration(cell, getKinematicConfigurationRequest, options) {
|
|
4122
4322
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getKinematicConfiguration(cell, getKinematicConfigurationRequest, options);
|
|
4123
4323
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4124
4324
|
const localVarOperationServerBasePath = operationServerMap["KinematicsApi.getKinematicConfiguration"]?.[localVarOperationServerIndex]?.url;
|
|
4125
|
-
return (axios$
|
|
4325
|
+
return (axios$77, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$77, localVarOperationServerBasePath || basePath);
|
|
4126
4326
|
},
|
|
4127
4327
|
async inverseKinematics(cell, inverseKinematicsRequest, options) {
|
|
4128
4328
|
const localVarAxiosArgs = await localVarAxiosParamCreator.inverseKinematics(cell, inverseKinematicsRequest, options);
|
|
4129
4329
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4130
4330
|
const localVarOperationServerBasePath = operationServerMap["KinematicsApi.inverseKinematics"]?.[localVarOperationServerIndex]?.url;
|
|
4131
|
-
return (axios$
|
|
4331
|
+
return (axios$78, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$78, localVarOperationServerBasePath || basePath);
|
|
4132
4332
|
},
|
|
4133
4333
|
async projectJointPositionDirectionConstraint(cell, projectJointPositionDirectionConstraintRequest, options) {
|
|
4134
4334
|
const localVarAxiosArgs = await localVarAxiosParamCreator.projectJointPositionDirectionConstraint(cell, projectJointPositionDirectionConstraintRequest, options);
|
|
4135
4335
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4136
4336
|
const localVarOperationServerBasePath = operationServerMap["KinematicsApi.projectJointPositionDirectionConstraint"]?.[localVarOperationServerIndex]?.url;
|
|
4137
|
-
return (axios$
|
|
4337
|
+
return (axios$79, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$79, localVarOperationServerBasePath || basePath);
|
|
4138
4338
|
}
|
|
4139
4339
|
};
|
|
4140
4340
|
};
|
|
4141
4341
|
/**
|
|
4142
4342
|
* KinematicsApi - factory interface
|
|
4143
4343
|
*/
|
|
4144
|
-
const KinematicsApiFactory = function(configuration, basePath, axios$
|
|
4344
|
+
const KinematicsApiFactory = function(configuration, basePath, axios$80) {
|
|
4145
4345
|
const localVarFp = KinematicsApiFp(configuration);
|
|
4146
4346
|
return {
|
|
4147
4347
|
configuredPoseInverse(cell, configuredPoseInverseRequest, options) {
|
|
4148
|
-
return localVarFp.configuredPoseInverse(cell, configuredPoseInverseRequest, options).then((request) => request(axios$
|
|
4348
|
+
return localVarFp.configuredPoseInverse(cell, configuredPoseInverseRequest, options).then((request) => request(axios$80, basePath));
|
|
4149
4349
|
},
|
|
4150
4350
|
convertVendorConfiguredPose(cell, convertVendorConfiguredPoseRequest, options) {
|
|
4151
|
-
return localVarFp.convertVendorConfiguredPose(cell, convertVendorConfiguredPoseRequest, options).then((request) => request(axios$
|
|
4351
|
+
return localVarFp.convertVendorConfiguredPose(cell, convertVendorConfiguredPoseRequest, options).then((request) => request(axios$80, basePath));
|
|
4152
4352
|
},
|
|
4153
4353
|
forwardKinematics(cell, forwardKinematicsRequest, options) {
|
|
4154
|
-
return localVarFp.forwardKinematics(cell, forwardKinematicsRequest, options).then((request) => request(axios$
|
|
4354
|
+
return localVarFp.forwardKinematics(cell, forwardKinematicsRequest, options).then((request) => request(axios$80, basePath));
|
|
4155
4355
|
},
|
|
4156
4356
|
getKinematicConfiguration(cell, getKinematicConfigurationRequest, options) {
|
|
4157
|
-
return localVarFp.getKinematicConfiguration(cell, getKinematicConfigurationRequest, options).then((request) => request(axios$
|
|
4357
|
+
return localVarFp.getKinematicConfiguration(cell, getKinematicConfigurationRequest, options).then((request) => request(axios$80, basePath));
|
|
4158
4358
|
},
|
|
4159
4359
|
inverseKinematics(cell, inverseKinematicsRequest, options) {
|
|
4160
|
-
return localVarFp.inverseKinematics(cell, inverseKinematicsRequest, options).then((request) => request(axios$
|
|
4360
|
+
return localVarFp.inverseKinematics(cell, inverseKinematicsRequest, options).then((request) => request(axios$80, basePath));
|
|
4161
4361
|
},
|
|
4162
4362
|
projectJointPositionDirectionConstraint(cell, projectJointPositionDirectionConstraintRequest, options) {
|
|
4163
|
-
return localVarFp.projectJointPositionDirectionConstraint(cell, projectJointPositionDirectionConstraintRequest, options).then((request) => request(axios$
|
|
4363
|
+
return localVarFp.projectJointPositionDirectionConstraint(cell, projectJointPositionDirectionConstraintRequest, options).then((request) => request(axios$80, basePath));
|
|
4164
4364
|
}
|
|
4165
4365
|
};
|
|
4166
4366
|
};
|
|
@@ -4354,45 +4554,45 @@ const LicenseApiFp = function(configuration) {
|
|
|
4354
4554
|
const localVarAxiosArgs = await localVarAxiosParamCreator.activateLicense(activateLicenseRequest, options);
|
|
4355
4555
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4356
4556
|
const localVarOperationServerBasePath = operationServerMap["LicenseApi.activateLicense"]?.[localVarOperationServerIndex]?.url;
|
|
4357
|
-
return (axios$
|
|
4557
|
+
return (axios$81, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$81, localVarOperationServerBasePath || basePath);
|
|
4358
4558
|
},
|
|
4359
4559
|
async deactivateLicense(options) {
|
|
4360
4560
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deactivateLicense(options);
|
|
4361
4561
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4362
4562
|
const localVarOperationServerBasePath = operationServerMap["LicenseApi.deactivateLicense"]?.[localVarOperationServerIndex]?.url;
|
|
4363
|
-
return (axios$
|
|
4563
|
+
return (axios$82, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$82, localVarOperationServerBasePath || basePath);
|
|
4364
4564
|
},
|
|
4365
4565
|
async getLicense(options) {
|
|
4366
4566
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getLicense(options);
|
|
4367
4567
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4368
4568
|
const localVarOperationServerBasePath = operationServerMap["LicenseApi.getLicense"]?.[localVarOperationServerIndex]?.url;
|
|
4369
|
-
return (axios$
|
|
4569
|
+
return (axios$83, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$83, localVarOperationServerBasePath || basePath);
|
|
4370
4570
|
},
|
|
4371
4571
|
async getLicenseStatus(options) {
|
|
4372
4572
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getLicenseStatus(options);
|
|
4373
4573
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4374
4574
|
const localVarOperationServerBasePath = operationServerMap["LicenseApi.getLicenseStatus"]?.[localVarOperationServerIndex]?.url;
|
|
4375
|
-
return (axios$
|
|
4575
|
+
return (axios$84, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$84, localVarOperationServerBasePath || basePath);
|
|
4376
4576
|
}
|
|
4377
4577
|
};
|
|
4378
4578
|
};
|
|
4379
4579
|
/**
|
|
4380
4580
|
* LicenseApi - factory interface
|
|
4381
4581
|
*/
|
|
4382
|
-
const LicenseApiFactory = function(configuration, basePath, axios$
|
|
4582
|
+
const LicenseApiFactory = function(configuration, basePath, axios$85) {
|
|
4383
4583
|
const localVarFp = LicenseApiFp(configuration);
|
|
4384
4584
|
return {
|
|
4385
4585
|
activateLicense(activateLicenseRequest, options) {
|
|
4386
|
-
return localVarFp.activateLicense(activateLicenseRequest, options).then((request) => request(axios$
|
|
4586
|
+
return localVarFp.activateLicense(activateLicenseRequest, options).then((request) => request(axios$85, basePath));
|
|
4387
4587
|
},
|
|
4388
4588
|
deactivateLicense(options) {
|
|
4389
|
-
return localVarFp.deactivateLicense(options).then((request) => request(axios$
|
|
4589
|
+
return localVarFp.deactivateLicense(options).then((request) => request(axios$85, basePath));
|
|
4390
4590
|
},
|
|
4391
4591
|
getLicense(options) {
|
|
4392
|
-
return localVarFp.getLicense(options).then((request) => request(axios$
|
|
4592
|
+
return localVarFp.getLicense(options).then((request) => request(axios$85, basePath));
|
|
4393
4593
|
},
|
|
4394
4594
|
getLicenseStatus(options) {
|
|
4395
|
-
return localVarFp.getLicenseStatus(options).then((request) => request(axios$
|
|
4595
|
+
return localVarFp.getLicenseStatus(options).then((request) => request(axios$85, basePath));
|
|
4396
4596
|
}
|
|
4397
4597
|
};
|
|
4398
4598
|
};
|
|
@@ -4545,36 +4745,36 @@ const MotionGroupApiFp = function(configuration) {
|
|
|
4545
4745
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getCurrentMotionGroupState(cell, controller, motionGroup, responseCoordinateSystem, options);
|
|
4546
4746
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4547
4747
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupApi.getCurrentMotionGroupState"]?.[localVarOperationServerIndex]?.url;
|
|
4548
|
-
return (axios$
|
|
4748
|
+
return (axios$86, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$86, localVarOperationServerBasePath || basePath);
|
|
4549
4749
|
},
|
|
4550
4750
|
async getMotionGroupDescription(cell, controller, motionGroup, options) {
|
|
4551
4751
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupDescription(cell, controller, motionGroup, options);
|
|
4552
4752
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4553
4753
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupApi.getMotionGroupDescription"]?.[localVarOperationServerIndex]?.url;
|
|
4554
|
-
return (axios$
|
|
4754
|
+
return (axios$87, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$87, localVarOperationServerBasePath || basePath);
|
|
4555
4755
|
},
|
|
4556
4756
|
async streamMotionGroupState(cell, controller, motionGroup, responseRate, responseCoordinateSystem, options) {
|
|
4557
4757
|
const localVarAxiosArgs = await localVarAxiosParamCreator.streamMotionGroupState(cell, controller, motionGroup, responseRate, responseCoordinateSystem, options);
|
|
4558
4758
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4559
4759
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupApi.streamMotionGroupState"]?.[localVarOperationServerIndex]?.url;
|
|
4560
|
-
return (axios$
|
|
4760
|
+
return (axios$88, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$88, localVarOperationServerBasePath || basePath);
|
|
4561
4761
|
}
|
|
4562
4762
|
};
|
|
4563
4763
|
};
|
|
4564
4764
|
/**
|
|
4565
4765
|
* MotionGroupApi - factory interface
|
|
4566
4766
|
*/
|
|
4567
|
-
const MotionGroupApiFactory = function(configuration, basePath, axios$
|
|
4767
|
+
const MotionGroupApiFactory = function(configuration, basePath, axios$89) {
|
|
4568
4768
|
const localVarFp = MotionGroupApiFp(configuration);
|
|
4569
4769
|
return {
|
|
4570
4770
|
getCurrentMotionGroupState(cell, controller, motionGroup, responseCoordinateSystem, options) {
|
|
4571
|
-
return localVarFp.getCurrentMotionGroupState(cell, controller, motionGroup, responseCoordinateSystem, options).then((request) => request(axios$
|
|
4771
|
+
return localVarFp.getCurrentMotionGroupState(cell, controller, motionGroup, responseCoordinateSystem, options).then((request) => request(axios$89, basePath));
|
|
4572
4772
|
},
|
|
4573
4773
|
getMotionGroupDescription(cell, controller, motionGroup, options) {
|
|
4574
|
-
return localVarFp.getMotionGroupDescription(cell, controller, motionGroup, options).then((request) => request(axios$
|
|
4774
|
+
return localVarFp.getMotionGroupDescription(cell, controller, motionGroup, options).then((request) => request(axios$89, basePath));
|
|
4575
4775
|
},
|
|
4576
4776
|
streamMotionGroupState(cell, controller, motionGroup, responseRate, responseCoordinateSystem, options) {
|
|
4577
|
-
return localVarFp.streamMotionGroupState(cell, controller, motionGroup, responseRate, responseCoordinateSystem, options).then((request) => request(axios$
|
|
4777
|
+
return localVarFp.streamMotionGroupState(cell, controller, motionGroup, responseRate, responseCoordinateSystem, options).then((request) => request(axios$89, basePath));
|
|
4578
4778
|
}
|
|
4579
4779
|
};
|
|
4580
4780
|
};
|
|
@@ -5016,135 +5216,135 @@ const MotionGroupModelsApiFp = function(configuration) {
|
|
|
5016
5216
|
const localVarAxiosArgs = await localVarAxiosParamCreator.copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options);
|
|
5017
5217
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5018
5218
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.copyMotionGroupModel"]?.[localVarOperationServerIndex]?.url;
|
|
5019
|
-
return (axios$
|
|
5219
|
+
return (axios$90, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$90, localVarOperationServerBasePath || basePath);
|
|
5020
5220
|
},
|
|
5021
5221
|
async deleteExperimentalMotionGroupModel(motionGroupModel, options) {
|
|
5022
5222
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteExperimentalMotionGroupModel(motionGroupModel, options);
|
|
5023
5223
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5024
5224
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.deleteExperimentalMotionGroupModel"]?.[localVarOperationServerIndex]?.url;
|
|
5025
|
-
return (axios$
|
|
5225
|
+
return (axios$91, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$91, localVarOperationServerBasePath || basePath);
|
|
5026
5226
|
},
|
|
5027
5227
|
async exportMotionGroupModel(motionGroupModel, options) {
|
|
5028
5228
|
const localVarAxiosArgs = await localVarAxiosParamCreator.exportMotionGroupModel(motionGroupModel, options);
|
|
5029
5229
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5030
5230
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.exportMotionGroupModel"]?.[localVarOperationServerIndex]?.url;
|
|
5031
|
-
return (axios$
|
|
5231
|
+
return (axios$92, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$92, localVarOperationServerBasePath || basePath);
|
|
5032
5232
|
},
|
|
5033
5233
|
async getConfigurationForMotionGroup(motionGroupModel, options) {
|
|
5034
5234
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getConfigurationForMotionGroup(motionGroupModel, options);
|
|
5035
5235
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5036
5236
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getConfigurationForMotionGroup"]?.[localVarOperationServerIndex]?.url;
|
|
5037
|
-
return (axios$
|
|
5237
|
+
return (axios$93, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$93, localVarOperationServerBasePath || basePath);
|
|
5038
5238
|
},
|
|
5039
5239
|
async getMotionGroupCollisionModel(motionGroupModel, options) {
|
|
5040
5240
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupCollisionModel(motionGroupModel, options);
|
|
5041
5241
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5042
5242
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupCollisionModel"]?.[localVarOperationServerIndex]?.url;
|
|
5043
|
-
return (axios$
|
|
5243
|
+
return (axios$94, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$94, localVarOperationServerBasePath || basePath);
|
|
5044
5244
|
},
|
|
5045
5245
|
async getMotionGroupDynamicModel(motionGroupModel, options) {
|
|
5046
5246
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupDynamicModel(motionGroupModel, options);
|
|
5047
5247
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5048
5248
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupDynamicModel"]?.[localVarOperationServerIndex]?.url;
|
|
5049
|
-
return (axios$
|
|
5249
|
+
return (axios$95, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$95, localVarOperationServerBasePath || basePath);
|
|
5050
5250
|
},
|
|
5051
5251
|
async getMotionGroupGlbModel(motionGroupModel, options) {
|
|
5052
5252
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupGlbModel(motionGroupModel, options);
|
|
5053
5253
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5054
5254
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupGlbModel"]?.[localVarOperationServerIndex]?.url;
|
|
5055
|
-
return (axios$
|
|
5255
|
+
return (axios$96, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$96, localVarOperationServerBasePath || basePath);
|
|
5056
5256
|
},
|
|
5057
5257
|
async getMotionGroupHomejoints(motionGroupModel, options) {
|
|
5058
5258
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupHomejoints(motionGroupModel, options);
|
|
5059
5259
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5060
5260
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupHomejoints"]?.[localVarOperationServerIndex]?.url;
|
|
5061
|
-
return (axios$
|
|
5261
|
+
return (axios$97, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$97, localVarOperationServerBasePath || basePath);
|
|
5062
5262
|
},
|
|
5063
5263
|
async getMotionGroupKinematicModel(motionGroupModel, options) {
|
|
5064
5264
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupKinematicModel(motionGroupModel, options);
|
|
5065
5265
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5066
5266
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupKinematicModel"]?.[localVarOperationServerIndex]?.url;
|
|
5067
|
-
return (axios$
|
|
5267
|
+
return (axios$98, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$98, localVarOperationServerBasePath || basePath);
|
|
5068
5268
|
},
|
|
5069
5269
|
async getMotionGroupLimitModel(motionGroupModel, options) {
|
|
5070
5270
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupLimitModel(motionGroupModel, options);
|
|
5071
5271
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5072
5272
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupLimitModel"]?.[localVarOperationServerIndex]?.url;
|
|
5073
|
-
return (axios$
|
|
5273
|
+
return (axios$99, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$99, localVarOperationServerBasePath || basePath);
|
|
5074
5274
|
},
|
|
5075
5275
|
async getMotionGroupModels(options) {
|
|
5076
5276
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupModels(options);
|
|
5077
5277
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5078
5278
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupModels"]?.[localVarOperationServerIndex]?.url;
|
|
5079
|
-
return (axios$
|
|
5279
|
+
return (axios$100, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$100, localVarOperationServerBasePath || basePath);
|
|
5080
5280
|
},
|
|
5081
5281
|
async getMotionGroupModelsCatalog(options) {
|
|
5082
5282
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupModelsCatalog(options);
|
|
5083
5283
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5084
5284
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupModelsCatalog"]?.[localVarOperationServerIndex]?.url;
|
|
5085
|
-
return (axios$
|
|
5285
|
+
return (axios$101, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$101, localVarOperationServerBasePath || basePath);
|
|
5086
5286
|
},
|
|
5087
5287
|
async getMotionGroupUsdModel(motionGroupModel, options) {
|
|
5088
5288
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupUsdModel(motionGroupModel, options);
|
|
5089
5289
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5090
5290
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupUsdModel"]?.[localVarOperationServerIndex]?.url;
|
|
5091
|
-
return (axios$
|
|
5291
|
+
return (axios$102, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$102, localVarOperationServerBasePath || basePath);
|
|
5092
5292
|
},
|
|
5093
5293
|
async importMotionGroupModel(body, options) {
|
|
5094
5294
|
const localVarAxiosArgs = await localVarAxiosParamCreator.importMotionGroupModel(body, options);
|
|
5095
5295
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5096
5296
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.importMotionGroupModel"]?.[localVarOperationServerIndex]?.url;
|
|
5097
|
-
return (axios$
|
|
5297
|
+
return (axios$103, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$103, localVarOperationServerBasePath || basePath);
|
|
5098
5298
|
}
|
|
5099
5299
|
};
|
|
5100
5300
|
};
|
|
5101
5301
|
/**
|
|
5102
5302
|
* MotionGroupModelsApi - factory interface
|
|
5103
5303
|
*/
|
|
5104
|
-
const MotionGroupModelsApiFactory = function(configuration, basePath, axios$
|
|
5304
|
+
const MotionGroupModelsApiFactory = function(configuration, basePath, axios$104) {
|
|
5105
5305
|
const localVarFp = MotionGroupModelsApiFp(configuration);
|
|
5106
5306
|
return {
|
|
5107
5307
|
copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options) {
|
|
5108
|
-
return localVarFp.copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options).then((request) => request(axios$
|
|
5308
|
+
return localVarFp.copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options).then((request) => request(axios$104, basePath));
|
|
5109
5309
|
},
|
|
5110
5310
|
deleteExperimentalMotionGroupModel(motionGroupModel, options) {
|
|
5111
|
-
return localVarFp.deleteExperimentalMotionGroupModel(motionGroupModel, options).then((request) => request(axios$
|
|
5311
|
+
return localVarFp.deleteExperimentalMotionGroupModel(motionGroupModel, options).then((request) => request(axios$104, basePath));
|
|
5112
5312
|
},
|
|
5113
5313
|
exportMotionGroupModel(motionGroupModel, options) {
|
|
5114
|
-
return localVarFp.exportMotionGroupModel(motionGroupModel, options).then((request) => request(axios$
|
|
5314
|
+
return localVarFp.exportMotionGroupModel(motionGroupModel, options).then((request) => request(axios$104, basePath));
|
|
5115
5315
|
},
|
|
5116
5316
|
getConfigurationForMotionGroup(motionGroupModel, options) {
|
|
5117
|
-
return localVarFp.getConfigurationForMotionGroup(motionGroupModel, options).then((request) => request(axios$
|
|
5317
|
+
return localVarFp.getConfigurationForMotionGroup(motionGroupModel, options).then((request) => request(axios$104, basePath));
|
|
5118
5318
|
},
|
|
5119
5319
|
getMotionGroupCollisionModel(motionGroupModel, options) {
|
|
5120
|
-
return localVarFp.getMotionGroupCollisionModel(motionGroupModel, options).then((request) => request(axios$
|
|
5320
|
+
return localVarFp.getMotionGroupCollisionModel(motionGroupModel, options).then((request) => request(axios$104, basePath));
|
|
5121
5321
|
},
|
|
5122
5322
|
getMotionGroupDynamicModel(motionGroupModel, options) {
|
|
5123
|
-
return localVarFp.getMotionGroupDynamicModel(motionGroupModel, options).then((request) => request(axios$
|
|
5323
|
+
return localVarFp.getMotionGroupDynamicModel(motionGroupModel, options).then((request) => request(axios$104, basePath));
|
|
5124
5324
|
},
|
|
5125
5325
|
getMotionGroupGlbModel(motionGroupModel, options) {
|
|
5126
|
-
return localVarFp.getMotionGroupGlbModel(motionGroupModel, options).then((request) => request(axios$
|
|
5326
|
+
return localVarFp.getMotionGroupGlbModel(motionGroupModel, options).then((request) => request(axios$104, basePath));
|
|
5127
5327
|
},
|
|
5128
5328
|
getMotionGroupHomejoints(motionGroupModel, options) {
|
|
5129
|
-
return localVarFp.getMotionGroupHomejoints(motionGroupModel, options).then((request) => request(axios$
|
|
5329
|
+
return localVarFp.getMotionGroupHomejoints(motionGroupModel, options).then((request) => request(axios$104, basePath));
|
|
5130
5330
|
},
|
|
5131
5331
|
getMotionGroupKinematicModel(motionGroupModel, options) {
|
|
5132
|
-
return localVarFp.getMotionGroupKinematicModel(motionGroupModel, options).then((request) => request(axios$
|
|
5332
|
+
return localVarFp.getMotionGroupKinematicModel(motionGroupModel, options).then((request) => request(axios$104, basePath));
|
|
5133
5333
|
},
|
|
5134
5334
|
getMotionGroupLimitModel(motionGroupModel, options) {
|
|
5135
|
-
return localVarFp.getMotionGroupLimitModel(motionGroupModel, options).then((request) => request(axios$
|
|
5335
|
+
return localVarFp.getMotionGroupLimitModel(motionGroupModel, options).then((request) => request(axios$104, basePath));
|
|
5136
5336
|
},
|
|
5137
5337
|
getMotionGroupModels(options) {
|
|
5138
|
-
return localVarFp.getMotionGroupModels(options).then((request) => request(axios$
|
|
5338
|
+
return localVarFp.getMotionGroupModels(options).then((request) => request(axios$104, basePath));
|
|
5139
5339
|
},
|
|
5140
5340
|
getMotionGroupModelsCatalog(options) {
|
|
5141
|
-
return localVarFp.getMotionGroupModelsCatalog(options).then((request) => request(axios$
|
|
5341
|
+
return localVarFp.getMotionGroupModelsCatalog(options).then((request) => request(axios$104, basePath));
|
|
5142
5342
|
},
|
|
5143
5343
|
getMotionGroupUsdModel(motionGroupModel, options) {
|
|
5144
|
-
return localVarFp.getMotionGroupUsdModel(motionGroupModel, options).then((request) => request(axios$
|
|
5344
|
+
return localVarFp.getMotionGroupUsdModel(motionGroupModel, options).then((request) => request(axios$104, basePath));
|
|
5145
5345
|
},
|
|
5146
5346
|
importMotionGroupModel(body, options) {
|
|
5147
|
-
return localVarFp.importMotionGroupModel(body, options).then((request) => request(axios$
|
|
5347
|
+
return localVarFp.importMotionGroupModel(body, options).then((request) => request(axios$104, basePath));
|
|
5148
5348
|
}
|
|
5149
5349
|
};
|
|
5150
5350
|
};
|
|
@@ -5413,45 +5613,45 @@ const NOVACloudApiFp = function(configuration) {
|
|
|
5413
5613
|
const localVarAxiosArgs = await localVarAxiosParamCreator.connectToNovaCloud(completionTimeout, cloudConnectionRequest, options);
|
|
5414
5614
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5415
5615
|
const localVarOperationServerBasePath = operationServerMap["NOVACloudApi.connectToNovaCloud"]?.[localVarOperationServerIndex]?.url;
|
|
5416
|
-
return (axios$
|
|
5616
|
+
return (axios$105, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$105, localVarOperationServerBasePath || basePath);
|
|
5417
5617
|
},
|
|
5418
5618
|
async disconnectFromNovaCloud(completionTimeout, options) {
|
|
5419
5619
|
const localVarAxiosArgs = await localVarAxiosParamCreator.disconnectFromNovaCloud(completionTimeout, options);
|
|
5420
5620
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5421
5621
|
const localVarOperationServerBasePath = operationServerMap["NOVACloudApi.disconnectFromNovaCloud"]?.[localVarOperationServerIndex]?.url;
|
|
5422
|
-
return (axios$
|
|
5622
|
+
return (axios$106, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$106, localVarOperationServerBasePath || basePath);
|
|
5423
5623
|
},
|
|
5424
5624
|
async getCloudStatus(options) {
|
|
5425
5625
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getCloudStatus(options);
|
|
5426
5626
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5427
5627
|
const localVarOperationServerBasePath = operationServerMap["NOVACloudApi.getCloudStatus"]?.[localVarOperationServerIndex]?.url;
|
|
5428
|
-
return (axios$
|
|
5628
|
+
return (axios$107, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$107, localVarOperationServerBasePath || basePath);
|
|
5429
5629
|
},
|
|
5430
5630
|
async getNovaCloudConfig(options) {
|
|
5431
5631
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getNovaCloudConfig(options);
|
|
5432
5632
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5433
5633
|
const localVarOperationServerBasePath = operationServerMap["NOVACloudApi.getNovaCloudConfig"]?.[localVarOperationServerIndex]?.url;
|
|
5434
|
-
return (axios$
|
|
5634
|
+
return (axios$108, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$108, localVarOperationServerBasePath || basePath);
|
|
5435
5635
|
}
|
|
5436
5636
|
};
|
|
5437
5637
|
};
|
|
5438
5638
|
/**
|
|
5439
5639
|
* NOVACloudApi - factory interface
|
|
5440
5640
|
*/
|
|
5441
|
-
const NOVACloudApiFactory = function(configuration, basePath, axios$
|
|
5641
|
+
const NOVACloudApiFactory = function(configuration, basePath, axios$109) {
|
|
5442
5642
|
const localVarFp = NOVACloudApiFp(configuration);
|
|
5443
5643
|
return {
|
|
5444
5644
|
connectToNovaCloud(completionTimeout, cloudConnectionRequest, options) {
|
|
5445
|
-
return localVarFp.connectToNovaCloud(completionTimeout, cloudConnectionRequest, options).then((request) => request(axios$
|
|
5645
|
+
return localVarFp.connectToNovaCloud(completionTimeout, cloudConnectionRequest, options).then((request) => request(axios$109, basePath));
|
|
5446
5646
|
},
|
|
5447
5647
|
disconnectFromNovaCloud(completionTimeout, options) {
|
|
5448
|
-
return localVarFp.disconnectFromNovaCloud(completionTimeout, options).then((request) => request(axios$
|
|
5648
|
+
return localVarFp.disconnectFromNovaCloud(completionTimeout, options).then((request) => request(axios$109, basePath));
|
|
5449
5649
|
},
|
|
5450
5650
|
getCloudStatus(options) {
|
|
5451
|
-
return localVarFp.getCloudStatus(options).then((request) => request(axios$
|
|
5651
|
+
return localVarFp.getCloudStatus(options).then((request) => request(axios$109, basePath));
|
|
5452
5652
|
},
|
|
5453
5653
|
getNovaCloudConfig(options) {
|
|
5454
|
-
return localVarFp.getNovaCloudConfig(options).then((request) => request(axios$
|
|
5654
|
+
return localVarFp.getNovaCloudConfig(options).then((request) => request(axios$109, basePath));
|
|
5455
5655
|
}
|
|
5456
5656
|
};
|
|
5457
5657
|
};
|
|
@@ -5629,45 +5829,45 @@ const ProgramApiFp = function(configuration) {
|
|
|
5629
5829
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getProgram(cell, program, options);
|
|
5630
5830
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5631
5831
|
const localVarOperationServerBasePath = operationServerMap["ProgramApi.getProgram"]?.[localVarOperationServerIndex]?.url;
|
|
5632
|
-
return (axios$
|
|
5832
|
+
return (axios$110, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$110, localVarOperationServerBasePath || basePath);
|
|
5633
5833
|
},
|
|
5634
5834
|
async listPrograms(cell, options) {
|
|
5635
5835
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listPrograms(cell, options);
|
|
5636
5836
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5637
5837
|
const localVarOperationServerBasePath = operationServerMap["ProgramApi.listPrograms"]?.[localVarOperationServerIndex]?.url;
|
|
5638
|
-
return (axios$
|
|
5838
|
+
return (axios$111, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$111, localVarOperationServerBasePath || basePath);
|
|
5639
5839
|
},
|
|
5640
5840
|
async startProgram(cell, program, programStartRequest, options) {
|
|
5641
5841
|
const localVarAxiosArgs = await localVarAxiosParamCreator.startProgram(cell, program, programStartRequest, options);
|
|
5642
5842
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5643
5843
|
const localVarOperationServerBasePath = operationServerMap["ProgramApi.startProgram"]?.[localVarOperationServerIndex]?.url;
|
|
5644
|
-
return (axios$
|
|
5844
|
+
return (axios$112, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$112, localVarOperationServerBasePath || basePath);
|
|
5645
5845
|
},
|
|
5646
5846
|
async stopProgram(cell, program, options) {
|
|
5647
5847
|
const localVarAxiosArgs = await localVarAxiosParamCreator.stopProgram(cell, program, options);
|
|
5648
5848
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5649
5849
|
const localVarOperationServerBasePath = operationServerMap["ProgramApi.stopProgram"]?.[localVarOperationServerIndex]?.url;
|
|
5650
|
-
return (axios$
|
|
5850
|
+
return (axios$113, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$113, localVarOperationServerBasePath || basePath);
|
|
5651
5851
|
}
|
|
5652
5852
|
};
|
|
5653
5853
|
};
|
|
5654
5854
|
/**
|
|
5655
5855
|
* ProgramApi - factory interface
|
|
5656
5856
|
*/
|
|
5657
|
-
const ProgramApiFactory = function(configuration, basePath, axios$
|
|
5857
|
+
const ProgramApiFactory = function(configuration, basePath, axios$114) {
|
|
5658
5858
|
const localVarFp = ProgramApiFp(configuration);
|
|
5659
5859
|
return {
|
|
5660
5860
|
getProgram(cell, program, options) {
|
|
5661
|
-
return localVarFp.getProgram(cell, program, options).then((request) => request(axios$
|
|
5861
|
+
return localVarFp.getProgram(cell, program, options).then((request) => request(axios$114, basePath));
|
|
5662
5862
|
},
|
|
5663
5863
|
listPrograms(cell, options) {
|
|
5664
|
-
return localVarFp.listPrograms(cell, options).then((request) => request(axios$
|
|
5864
|
+
return localVarFp.listPrograms(cell, options).then((request) => request(axios$114, basePath));
|
|
5665
5865
|
},
|
|
5666
5866
|
startProgram(cell, program, programStartRequest, options) {
|
|
5667
|
-
return localVarFp.startProgram(cell, program, programStartRequest, options).then((request) => request(axios$
|
|
5867
|
+
return localVarFp.startProgram(cell, program, programStartRequest, options).then((request) => request(axios$114, basePath));
|
|
5668
5868
|
},
|
|
5669
5869
|
stopProgram(cell, program, options) {
|
|
5670
|
-
return localVarFp.stopProgram(cell, program, options).then((request) => request(axios$
|
|
5870
|
+
return localVarFp.stopProgram(cell, program, options).then((request) => request(axios$114, basePath));
|
|
5671
5871
|
}
|
|
5672
5872
|
};
|
|
5673
5873
|
};
|
|
@@ -5790,27 +5990,27 @@ const RobotConfigurationsApiFp = function(configuration) {
|
|
|
5790
5990
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getControllerConfigFromArpScan(robotControllerConfigurationRequest, options);
|
|
5791
5991
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5792
5992
|
const localVarOperationServerBasePath = operationServerMap["RobotConfigurationsApi.getControllerConfigFromArpScan"]?.[localVarOperationServerIndex]?.url;
|
|
5793
|
-
return (axios$
|
|
5993
|
+
return (axios$115, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$115, localVarOperationServerBasePath || basePath);
|
|
5794
5994
|
},
|
|
5795
5995
|
async getRobotConfigurations(options) {
|
|
5796
5996
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getRobotConfigurations(options);
|
|
5797
5997
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5798
5998
|
const localVarOperationServerBasePath = operationServerMap["RobotConfigurationsApi.getRobotConfigurations"]?.[localVarOperationServerIndex]?.url;
|
|
5799
|
-
return (axios$
|
|
5999
|
+
return (axios$116, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$116, localVarOperationServerBasePath || basePath);
|
|
5800
6000
|
}
|
|
5801
6001
|
};
|
|
5802
6002
|
};
|
|
5803
6003
|
/**
|
|
5804
6004
|
* RobotConfigurationsApi - factory interface
|
|
5805
6005
|
*/
|
|
5806
|
-
const RobotConfigurationsApiFactory = function(configuration, basePath, axios$
|
|
6006
|
+
const RobotConfigurationsApiFactory = function(configuration, basePath, axios$117) {
|
|
5807
6007
|
const localVarFp = RobotConfigurationsApiFp(configuration);
|
|
5808
6008
|
return {
|
|
5809
6009
|
getControllerConfigFromArpScan(robotControllerConfigurationRequest, options) {
|
|
5810
|
-
return localVarFp.getControllerConfigFromArpScan(robotControllerConfigurationRequest, options).then((request) => request(axios$
|
|
6010
|
+
return localVarFp.getControllerConfigFromArpScan(robotControllerConfigurationRequest, options).then((request) => request(axios$117, basePath));
|
|
5811
6011
|
},
|
|
5812
6012
|
getRobotConfigurations(options) {
|
|
5813
|
-
return localVarFp.getRobotConfigurations(options).then((request) => request(axios$
|
|
6013
|
+
return localVarFp.getRobotConfigurations(options).then((request) => request(axios$117, basePath));
|
|
5814
6014
|
}
|
|
5815
6015
|
};
|
|
5816
6016
|
};
|
|
@@ -5877,16 +6077,16 @@ const SessionApiFp = function(configuration) {
|
|
|
5877
6077
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getSession(options);
|
|
5878
6078
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5879
6079
|
const localVarOperationServerBasePath = operationServerMap["SessionApi.getSession"]?.[localVarOperationServerIndex]?.url;
|
|
5880
|
-
return (axios$
|
|
6080
|
+
return (axios$118, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$118, localVarOperationServerBasePath || basePath);
|
|
5881
6081
|
} };
|
|
5882
6082
|
};
|
|
5883
6083
|
/**
|
|
5884
6084
|
* SessionApi - factory interface
|
|
5885
6085
|
*/
|
|
5886
|
-
const SessionApiFactory = function(configuration, basePath, axios$
|
|
6086
|
+
const SessionApiFactory = function(configuration, basePath, axios$119) {
|
|
5887
6087
|
const localVarFp = SessionApiFp(configuration);
|
|
5888
6088
|
return { getSession(options) {
|
|
5889
|
-
return localVarFp.getSession(options).then((request) => request(axios$
|
|
6089
|
+
return localVarFp.getSession(options).then((request) => request(axios$119, basePath));
|
|
5890
6090
|
} };
|
|
5891
6091
|
};
|
|
5892
6092
|
/**
|
|
@@ -6340,144 +6540,144 @@ const StoreCollisionComponentsApiFp = function(configuration) {
|
|
|
6340
6540
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteStoredCollider(cell, collider, options);
|
|
6341
6541
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6342
6542
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.deleteStoredCollider"]?.[localVarOperationServerIndex]?.url;
|
|
6343
|
-
return (axios$
|
|
6543
|
+
return (axios$120, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$120, localVarOperationServerBasePath || basePath);
|
|
6344
6544
|
},
|
|
6345
6545
|
async deleteStoredCollisionLinkChain(cell, linkChain, options) {
|
|
6346
6546
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteStoredCollisionLinkChain(cell, linkChain, options);
|
|
6347
6547
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6348
6548
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.deleteStoredCollisionLinkChain"]?.[localVarOperationServerIndex]?.url;
|
|
6349
|
-
return (axios$
|
|
6549
|
+
return (axios$121, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$121, localVarOperationServerBasePath || basePath);
|
|
6350
6550
|
},
|
|
6351
6551
|
async deleteStoredCollisionTool(cell, tool, options) {
|
|
6352
6552
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteStoredCollisionTool(cell, tool, options);
|
|
6353
6553
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6354
6554
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.deleteStoredCollisionTool"]?.[localVarOperationServerIndex]?.url;
|
|
6355
|
-
return (axios$
|
|
6555
|
+
return (axios$122, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$122, localVarOperationServerBasePath || basePath);
|
|
6356
6556
|
},
|
|
6357
6557
|
async getStoredCollider(cell, collider, options) {
|
|
6358
6558
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getStoredCollider(cell, collider, options);
|
|
6359
6559
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6360
6560
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.getStoredCollider"]?.[localVarOperationServerIndex]?.url;
|
|
6361
|
-
return (axios$
|
|
6561
|
+
return (axios$123, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$123, localVarOperationServerBasePath || basePath);
|
|
6362
6562
|
},
|
|
6363
6563
|
async getStoredCollisionLinkChain(cell, linkChain, options) {
|
|
6364
6564
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getStoredCollisionLinkChain(cell, linkChain, options);
|
|
6365
6565
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6366
6566
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.getStoredCollisionLinkChain"]?.[localVarOperationServerIndex]?.url;
|
|
6367
|
-
return (axios$
|
|
6567
|
+
return (axios$124, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$124, localVarOperationServerBasePath || basePath);
|
|
6368
6568
|
},
|
|
6369
6569
|
async getStoredCollisionTool(cell, tool, options) {
|
|
6370
6570
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getStoredCollisionTool(cell, tool, options);
|
|
6371
6571
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6372
6572
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.getStoredCollisionTool"]?.[localVarOperationServerIndex]?.url;
|
|
6373
|
-
return (axios$
|
|
6573
|
+
return (axios$125, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$125, localVarOperationServerBasePath || basePath);
|
|
6374
6574
|
},
|
|
6375
6575
|
async listCollisionLinkChains(cell, options) {
|
|
6376
6576
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listCollisionLinkChains(cell, options);
|
|
6377
6577
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6378
6578
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listCollisionLinkChains"]?.[localVarOperationServerIndex]?.url;
|
|
6379
|
-
return (axios$
|
|
6579
|
+
return (axios$126, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$126, localVarOperationServerBasePath || basePath);
|
|
6380
6580
|
},
|
|
6381
6581
|
async listCollisionLinkChainsKeys(cell, options) {
|
|
6382
6582
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listCollisionLinkChainsKeys(cell, options);
|
|
6383
6583
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6384
6584
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listCollisionLinkChainsKeys"]?.[localVarOperationServerIndex]?.url;
|
|
6385
|
-
return (axios$
|
|
6585
|
+
return (axios$127, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$127, localVarOperationServerBasePath || basePath);
|
|
6386
6586
|
},
|
|
6387
6587
|
async listStoredColliders(cell, options) {
|
|
6388
6588
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredColliders(cell, options);
|
|
6389
6589
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6390
6590
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listStoredColliders"]?.[localVarOperationServerIndex]?.url;
|
|
6391
|
-
return (axios$
|
|
6591
|
+
return (axios$128, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$128, localVarOperationServerBasePath || basePath);
|
|
6392
6592
|
},
|
|
6393
6593
|
async listStoredCollidersKeys(cell, options) {
|
|
6394
6594
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredCollidersKeys(cell, options);
|
|
6395
6595
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6396
6596
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listStoredCollidersKeys"]?.[localVarOperationServerIndex]?.url;
|
|
6397
|
-
return (axios$
|
|
6597
|
+
return (axios$129, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$129, localVarOperationServerBasePath || basePath);
|
|
6398
6598
|
},
|
|
6399
6599
|
async listStoredCollisionTools(cell, options) {
|
|
6400
6600
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredCollisionTools(cell, options);
|
|
6401
6601
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6402
6602
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listStoredCollisionTools"]?.[localVarOperationServerIndex]?.url;
|
|
6403
|
-
return (axios$
|
|
6603
|
+
return (axios$130, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$130, localVarOperationServerBasePath || basePath);
|
|
6404
6604
|
},
|
|
6405
6605
|
async listStoredCollisionToolsKeys(cell, options) {
|
|
6406
6606
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredCollisionToolsKeys(cell, options);
|
|
6407
6607
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6408
6608
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listStoredCollisionToolsKeys"]?.[localVarOperationServerIndex]?.url;
|
|
6409
|
-
return (axios$
|
|
6609
|
+
return (axios$131, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$131, localVarOperationServerBasePath || basePath);
|
|
6410
6610
|
},
|
|
6411
6611
|
async storeCollider(cell, collider, collider2, options) {
|
|
6412
6612
|
const localVarAxiosArgs = await localVarAxiosParamCreator.storeCollider(cell, collider, collider2, options);
|
|
6413
6613
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6414
6614
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.storeCollider"]?.[localVarOperationServerIndex]?.url;
|
|
6415
|
-
return (axios$
|
|
6615
|
+
return (axios$132, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$132, localVarOperationServerBasePath || basePath);
|
|
6416
6616
|
},
|
|
6417
6617
|
async storeCollisionLinkChain(cell, linkChain, collider, options) {
|
|
6418
6618
|
const localVarAxiosArgs = await localVarAxiosParamCreator.storeCollisionLinkChain(cell, linkChain, collider, options);
|
|
6419
6619
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6420
6620
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.storeCollisionLinkChain"]?.[localVarOperationServerIndex]?.url;
|
|
6421
|
-
return (axios$
|
|
6621
|
+
return (axios$133, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$133, localVarOperationServerBasePath || basePath);
|
|
6422
6622
|
},
|
|
6423
6623
|
async storeCollisionTool(cell, tool, requestBody, options) {
|
|
6424
6624
|
const localVarAxiosArgs = await localVarAxiosParamCreator.storeCollisionTool(cell, tool, requestBody, options);
|
|
6425
6625
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6426
6626
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.storeCollisionTool"]?.[localVarOperationServerIndex]?.url;
|
|
6427
|
-
return (axios$
|
|
6627
|
+
return (axios$134, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$134, localVarOperationServerBasePath || basePath);
|
|
6428
6628
|
}
|
|
6429
6629
|
};
|
|
6430
6630
|
};
|
|
6431
6631
|
/**
|
|
6432
6632
|
* StoreCollisionComponentsApi - factory interface
|
|
6433
6633
|
*/
|
|
6434
|
-
const StoreCollisionComponentsApiFactory = function(configuration, basePath, axios$
|
|
6634
|
+
const StoreCollisionComponentsApiFactory = function(configuration, basePath, axios$135) {
|
|
6435
6635
|
const localVarFp = StoreCollisionComponentsApiFp(configuration);
|
|
6436
6636
|
return {
|
|
6437
6637
|
deleteStoredCollider(cell, collider, options) {
|
|
6438
|
-
return localVarFp.deleteStoredCollider(cell, collider, options).then((request) => request(axios$
|
|
6638
|
+
return localVarFp.deleteStoredCollider(cell, collider, options).then((request) => request(axios$135, basePath));
|
|
6439
6639
|
},
|
|
6440
6640
|
deleteStoredCollisionLinkChain(cell, linkChain, options) {
|
|
6441
|
-
return localVarFp.deleteStoredCollisionLinkChain(cell, linkChain, options).then((request) => request(axios$
|
|
6641
|
+
return localVarFp.deleteStoredCollisionLinkChain(cell, linkChain, options).then((request) => request(axios$135, basePath));
|
|
6442
6642
|
},
|
|
6443
6643
|
deleteStoredCollisionTool(cell, tool, options) {
|
|
6444
|
-
return localVarFp.deleteStoredCollisionTool(cell, tool, options).then((request) => request(axios$
|
|
6644
|
+
return localVarFp.deleteStoredCollisionTool(cell, tool, options).then((request) => request(axios$135, basePath));
|
|
6445
6645
|
},
|
|
6446
6646
|
getStoredCollider(cell, collider, options) {
|
|
6447
|
-
return localVarFp.getStoredCollider(cell, collider, options).then((request) => request(axios$
|
|
6647
|
+
return localVarFp.getStoredCollider(cell, collider, options).then((request) => request(axios$135, basePath));
|
|
6448
6648
|
},
|
|
6449
6649
|
getStoredCollisionLinkChain(cell, linkChain, options) {
|
|
6450
|
-
return localVarFp.getStoredCollisionLinkChain(cell, linkChain, options).then((request) => request(axios$
|
|
6650
|
+
return localVarFp.getStoredCollisionLinkChain(cell, linkChain, options).then((request) => request(axios$135, basePath));
|
|
6451
6651
|
},
|
|
6452
6652
|
getStoredCollisionTool(cell, tool, options) {
|
|
6453
|
-
return localVarFp.getStoredCollisionTool(cell, tool, options).then((request) => request(axios$
|
|
6653
|
+
return localVarFp.getStoredCollisionTool(cell, tool, options).then((request) => request(axios$135, basePath));
|
|
6454
6654
|
},
|
|
6455
6655
|
listCollisionLinkChains(cell, options) {
|
|
6456
|
-
return localVarFp.listCollisionLinkChains(cell, options).then((request) => request(axios$
|
|
6656
|
+
return localVarFp.listCollisionLinkChains(cell, options).then((request) => request(axios$135, basePath));
|
|
6457
6657
|
},
|
|
6458
6658
|
listCollisionLinkChainsKeys(cell, options) {
|
|
6459
|
-
return localVarFp.listCollisionLinkChainsKeys(cell, options).then((request) => request(axios$
|
|
6659
|
+
return localVarFp.listCollisionLinkChainsKeys(cell, options).then((request) => request(axios$135, basePath));
|
|
6460
6660
|
},
|
|
6461
6661
|
listStoredColliders(cell, options) {
|
|
6462
|
-
return localVarFp.listStoredColliders(cell, options).then((request) => request(axios$
|
|
6662
|
+
return localVarFp.listStoredColliders(cell, options).then((request) => request(axios$135, basePath));
|
|
6463
6663
|
},
|
|
6464
6664
|
listStoredCollidersKeys(cell, options) {
|
|
6465
|
-
return localVarFp.listStoredCollidersKeys(cell, options).then((request) => request(axios$
|
|
6665
|
+
return localVarFp.listStoredCollidersKeys(cell, options).then((request) => request(axios$135, basePath));
|
|
6466
6666
|
},
|
|
6467
6667
|
listStoredCollisionTools(cell, options) {
|
|
6468
|
-
return localVarFp.listStoredCollisionTools(cell, options).then((request) => request(axios$
|
|
6668
|
+
return localVarFp.listStoredCollisionTools(cell, options).then((request) => request(axios$135, basePath));
|
|
6469
6669
|
},
|
|
6470
6670
|
listStoredCollisionToolsKeys(cell, options) {
|
|
6471
|
-
return localVarFp.listStoredCollisionToolsKeys(cell, options).then((request) => request(axios$
|
|
6671
|
+
return localVarFp.listStoredCollisionToolsKeys(cell, options).then((request) => request(axios$135, basePath));
|
|
6472
6672
|
},
|
|
6473
6673
|
storeCollider(cell, collider, collider2, options) {
|
|
6474
|
-
return localVarFp.storeCollider(cell, collider, collider2, options).then((request) => request(axios$
|
|
6674
|
+
return localVarFp.storeCollider(cell, collider, collider2, options).then((request) => request(axios$135, basePath));
|
|
6475
6675
|
},
|
|
6476
6676
|
storeCollisionLinkChain(cell, linkChain, collider, options) {
|
|
6477
|
-
return localVarFp.storeCollisionLinkChain(cell, linkChain, collider, options).then((request) => request(axios$
|
|
6677
|
+
return localVarFp.storeCollisionLinkChain(cell, linkChain, collider, options).then((request) => request(axios$135, basePath));
|
|
6478
6678
|
},
|
|
6479
6679
|
storeCollisionTool(cell, tool, requestBody, options) {
|
|
6480
|
-
return localVarFp.storeCollisionTool(cell, tool, requestBody, options).then((request) => request(axios$
|
|
6680
|
+
return localVarFp.storeCollisionTool(cell, tool, requestBody, options).then((request) => request(axios$135, basePath));
|
|
6481
6681
|
}
|
|
6482
6682
|
};
|
|
6483
6683
|
};
|
|
@@ -6805,54 +7005,54 @@ const StoreCollisionSetupsApiFp = function(configuration) {
|
|
|
6805
7005
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteStoredCollisionSetup(cell, setup, options);
|
|
6806
7006
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6807
7007
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionSetupsApi.deleteStoredCollisionSetup"]?.[localVarOperationServerIndex]?.url;
|
|
6808
|
-
return (axios$
|
|
7008
|
+
return (axios$136, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$136, localVarOperationServerBasePath || basePath);
|
|
6809
7009
|
},
|
|
6810
7010
|
async getStoredCollisionSetup(cell, setup, options) {
|
|
6811
7011
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getStoredCollisionSetup(cell, setup, options);
|
|
6812
7012
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6813
7013
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionSetupsApi.getStoredCollisionSetup"]?.[localVarOperationServerIndex]?.url;
|
|
6814
|
-
return (axios$
|
|
7014
|
+
return (axios$137, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$137, localVarOperationServerBasePath || basePath);
|
|
6815
7015
|
},
|
|
6816
7016
|
async listStoredCollisionSetups(cell, options) {
|
|
6817
7017
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredCollisionSetups(cell, options);
|
|
6818
7018
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6819
7019
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionSetupsApi.listStoredCollisionSetups"]?.[localVarOperationServerIndex]?.url;
|
|
6820
|
-
return (axios$
|
|
7020
|
+
return (axios$138, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$138, localVarOperationServerBasePath || basePath);
|
|
6821
7021
|
},
|
|
6822
7022
|
async listStoredCollisionSetupsKeys(cell, options) {
|
|
6823
7023
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredCollisionSetupsKeys(cell, options);
|
|
6824
7024
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6825
7025
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionSetupsApi.listStoredCollisionSetupsKeys"]?.[localVarOperationServerIndex]?.url;
|
|
6826
|
-
return (axios$
|
|
7026
|
+
return (axios$139, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$139, localVarOperationServerBasePath || basePath);
|
|
6827
7027
|
},
|
|
6828
7028
|
async storeCollisionSetup(cell, setup, collisionSetup, options) {
|
|
6829
7029
|
const localVarAxiosArgs = await localVarAxiosParamCreator.storeCollisionSetup(cell, setup, collisionSetup, options);
|
|
6830
7030
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6831
7031
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionSetupsApi.storeCollisionSetup"]?.[localVarOperationServerIndex]?.url;
|
|
6832
|
-
return (axios$
|
|
7032
|
+
return (axios$140, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$140, localVarOperationServerBasePath || basePath);
|
|
6833
7033
|
}
|
|
6834
7034
|
};
|
|
6835
7035
|
};
|
|
6836
7036
|
/**
|
|
6837
7037
|
* StoreCollisionSetupsApi - factory interface
|
|
6838
7038
|
*/
|
|
6839
|
-
const StoreCollisionSetupsApiFactory = function(configuration, basePath, axios$
|
|
7039
|
+
const StoreCollisionSetupsApiFactory = function(configuration, basePath, axios$141) {
|
|
6840
7040
|
const localVarFp = StoreCollisionSetupsApiFp(configuration);
|
|
6841
7041
|
return {
|
|
6842
7042
|
deleteStoredCollisionSetup(cell, setup, options) {
|
|
6843
|
-
return localVarFp.deleteStoredCollisionSetup(cell, setup, options).then((request) => request(axios$
|
|
7043
|
+
return localVarFp.deleteStoredCollisionSetup(cell, setup, options).then((request) => request(axios$141, basePath));
|
|
6844
7044
|
},
|
|
6845
7045
|
getStoredCollisionSetup(cell, setup, options) {
|
|
6846
|
-
return localVarFp.getStoredCollisionSetup(cell, setup, options).then((request) => request(axios$
|
|
7046
|
+
return localVarFp.getStoredCollisionSetup(cell, setup, options).then((request) => request(axios$141, basePath));
|
|
6847
7047
|
},
|
|
6848
7048
|
listStoredCollisionSetups(cell, options) {
|
|
6849
|
-
return localVarFp.listStoredCollisionSetups(cell, options).then((request) => request(axios$
|
|
7049
|
+
return localVarFp.listStoredCollisionSetups(cell, options).then((request) => request(axios$141, basePath));
|
|
6850
7050
|
},
|
|
6851
7051
|
listStoredCollisionSetupsKeys(cell, options) {
|
|
6852
|
-
return localVarFp.listStoredCollisionSetupsKeys(cell, options).then((request) => request(axios$
|
|
7052
|
+
return localVarFp.listStoredCollisionSetupsKeys(cell, options).then((request) => request(axios$141, basePath));
|
|
6853
7053
|
},
|
|
6854
7054
|
storeCollisionSetup(cell, setup, collisionSetup, options) {
|
|
6855
|
-
return localVarFp.storeCollisionSetup(cell, setup, collisionSetup, options).then((request) => request(axios$
|
|
7055
|
+
return localVarFp.storeCollisionSetup(cell, setup, collisionSetup, options).then((request) => request(axios$141, basePath));
|
|
6856
7056
|
}
|
|
6857
7057
|
};
|
|
6858
7058
|
};
|
|
@@ -7102,63 +7302,63 @@ const StoreObjectApiFp = function(configuration) {
|
|
|
7102
7302
|
const localVarAxiosArgs = await localVarAxiosParamCreator.clearAllObjects(cell, options);
|
|
7103
7303
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7104
7304
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.clearAllObjects"]?.[localVarOperationServerIndex]?.url;
|
|
7105
|
-
return (axios$
|
|
7305
|
+
return (axios$142, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$142, localVarOperationServerBasePath || basePath);
|
|
7106
7306
|
},
|
|
7107
7307
|
async deleteObject(cell, key, options) {
|
|
7108
7308
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteObject(cell, key, options);
|
|
7109
7309
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7110
7310
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.deleteObject"]?.[localVarOperationServerIndex]?.url;
|
|
7111
|
-
return (axios$
|
|
7311
|
+
return (axios$143, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$143, localVarOperationServerBasePath || basePath);
|
|
7112
7312
|
},
|
|
7113
7313
|
async getObject(cell, key, options) {
|
|
7114
7314
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getObject(cell, key, options);
|
|
7115
7315
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7116
7316
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.getObject"]?.[localVarOperationServerIndex]?.url;
|
|
7117
|
-
return (axios$
|
|
7317
|
+
return (axios$144, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$144, localVarOperationServerBasePath || basePath);
|
|
7118
7318
|
},
|
|
7119
7319
|
async getObjectMetadata(cell, key, options) {
|
|
7120
7320
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getObjectMetadata(cell, key, options);
|
|
7121
7321
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7122
7322
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.getObjectMetadata"]?.[localVarOperationServerIndex]?.url;
|
|
7123
|
-
return (axios$
|
|
7323
|
+
return (axios$145, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$145, localVarOperationServerBasePath || basePath);
|
|
7124
7324
|
},
|
|
7125
7325
|
async listAllObjectKeys(cell, options) {
|
|
7126
7326
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listAllObjectKeys(cell, options);
|
|
7127
7327
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7128
7328
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.listAllObjectKeys"]?.[localVarOperationServerIndex]?.url;
|
|
7129
|
-
return (axios$
|
|
7329
|
+
return (axios$146, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$146, localVarOperationServerBasePath || basePath);
|
|
7130
7330
|
},
|
|
7131
7331
|
async storeObject(cell, key, xMetadata, anyValue, options) {
|
|
7132
7332
|
const localVarAxiosArgs = await localVarAxiosParamCreator.storeObject(cell, key, xMetadata, anyValue, options);
|
|
7133
7333
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7134
7334
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.storeObject"]?.[localVarOperationServerIndex]?.url;
|
|
7135
|
-
return (axios$
|
|
7335
|
+
return (axios$147, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$147, localVarOperationServerBasePath || basePath);
|
|
7136
7336
|
}
|
|
7137
7337
|
};
|
|
7138
7338
|
};
|
|
7139
7339
|
/**
|
|
7140
7340
|
* StoreObjectApi - factory interface
|
|
7141
7341
|
*/
|
|
7142
|
-
const StoreObjectApiFactory = function(configuration, basePath, axios$
|
|
7342
|
+
const StoreObjectApiFactory = function(configuration, basePath, axios$148) {
|
|
7143
7343
|
const localVarFp = StoreObjectApiFp(configuration);
|
|
7144
7344
|
return {
|
|
7145
7345
|
clearAllObjects(cell, options) {
|
|
7146
|
-
return localVarFp.clearAllObjects(cell, options).then((request) => request(axios$
|
|
7346
|
+
return localVarFp.clearAllObjects(cell, options).then((request) => request(axios$148, basePath));
|
|
7147
7347
|
},
|
|
7148
7348
|
deleteObject(cell, key, options) {
|
|
7149
|
-
return localVarFp.deleteObject(cell, key, options).then((request) => request(axios$
|
|
7349
|
+
return localVarFp.deleteObject(cell, key, options).then((request) => request(axios$148, basePath));
|
|
7150
7350
|
},
|
|
7151
7351
|
getObject(cell, key, options) {
|
|
7152
|
-
return localVarFp.getObject(cell, key, options).then((request) => request(axios$
|
|
7352
|
+
return localVarFp.getObject(cell, key, options).then((request) => request(axios$148, basePath));
|
|
7153
7353
|
},
|
|
7154
7354
|
getObjectMetadata(cell, key, options) {
|
|
7155
|
-
return localVarFp.getObjectMetadata(cell, key, options).then((request) => request(axios$
|
|
7355
|
+
return localVarFp.getObjectMetadata(cell, key, options).then((request) => request(axios$148, basePath));
|
|
7156
7356
|
},
|
|
7157
7357
|
listAllObjectKeys(cell, options) {
|
|
7158
|
-
return localVarFp.listAllObjectKeys(cell, options).then((request) => request(axios$
|
|
7358
|
+
return localVarFp.listAllObjectKeys(cell, options).then((request) => request(axios$148, basePath));
|
|
7159
7359
|
},
|
|
7160
7360
|
storeObject(cell, key, xMetadata, anyValue, options) {
|
|
7161
|
-
return localVarFp.storeObject(cell, key, xMetadata, anyValue, options).then((request) => request(axios$
|
|
7361
|
+
return localVarFp.storeObject(cell, key, xMetadata, anyValue, options).then((request) => request(axios$148, basePath));
|
|
7162
7362
|
}
|
|
7163
7363
|
};
|
|
7164
7364
|
};
|
|
@@ -7567,117 +7767,117 @@ const SystemApiFp = function(configuration) {
|
|
|
7567
7767
|
const localVarAxiosArgs = await localVarAxiosParamCreator.backupConfiguration(resources, metadata, options);
|
|
7568
7768
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7569
7769
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.backupConfiguration"]?.[localVarOperationServerIndex]?.url;
|
|
7570
|
-
return (axios$
|
|
7770
|
+
return (axios$149, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$149, localVarOperationServerBasePath || basePath);
|
|
7571
7771
|
},
|
|
7572
7772
|
async checkNovaVersionUpdate(channel, options) {
|
|
7573
7773
|
const localVarAxiosArgs = await localVarAxiosParamCreator.checkNovaVersionUpdate(channel, options);
|
|
7574
7774
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7575
7775
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.checkNovaVersionUpdate"]?.[localVarOperationServerIndex]?.url;
|
|
7576
|
-
return (axios$
|
|
7776
|
+
return (axios$150, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$150, localVarOperationServerBasePath || basePath);
|
|
7577
7777
|
},
|
|
7578
7778
|
async getArpScan(_interface, cidr, timeout, options) {
|
|
7579
7779
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getArpScan(_interface, cidr, timeout, options);
|
|
7580
7780
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7581
7781
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getArpScan"]?.[localVarOperationServerIndex]?.url;
|
|
7582
|
-
return (axios$
|
|
7782
|
+
return (axios$151, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$151, localVarOperationServerBasePath || basePath);
|
|
7583
7783
|
},
|
|
7584
7784
|
async getConfigurationBackupStatus(operationId, options) {
|
|
7585
7785
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getConfigurationBackupStatus(operationId, options);
|
|
7586
7786
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7587
7787
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getConfigurationBackupStatus"]?.[localVarOperationServerIndex]?.url;
|
|
7588
|
-
return (axios$
|
|
7788
|
+
return (axios$152, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$152, localVarOperationServerBasePath || basePath);
|
|
7589
7789
|
},
|
|
7590
7790
|
async getDiagnosePackage(options) {
|
|
7591
7791
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getDiagnosePackage(options);
|
|
7592
7792
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7593
7793
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getDiagnosePackage"]?.[localVarOperationServerIndex]?.url;
|
|
7594
|
-
return (axios$
|
|
7794
|
+
return (axios$153, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$153, localVarOperationServerBasePath || basePath);
|
|
7595
7795
|
},
|
|
7596
7796
|
async getNetworkInterfaces(options) {
|
|
7597
7797
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getNetworkInterfaces(options);
|
|
7598
7798
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7599
7799
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getNetworkInterfaces"]?.[localVarOperationServerIndex]?.url;
|
|
7600
|
-
return (axios$
|
|
7800
|
+
return (axios$154, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$154, localVarOperationServerBasePath || basePath);
|
|
7601
7801
|
},
|
|
7602
7802
|
async getNetworkState(options) {
|
|
7603
7803
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getNetworkState(options);
|
|
7604
7804
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7605
7805
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getNetworkState"]?.[localVarOperationServerIndex]?.url;
|
|
7606
|
-
return (axios$
|
|
7806
|
+
return (axios$155, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$155, localVarOperationServerBasePath || basePath);
|
|
7607
7807
|
},
|
|
7608
7808
|
async getSystemStatus(options) {
|
|
7609
7809
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getSystemStatus(options);
|
|
7610
7810
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7611
7811
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getSystemStatus"]?.[localVarOperationServerIndex]?.url;
|
|
7612
|
-
return (axios$
|
|
7812
|
+
return (axios$156, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$156, localVarOperationServerBasePath || basePath);
|
|
7613
7813
|
},
|
|
7614
7814
|
async getSystemVersion(options) {
|
|
7615
7815
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getSystemVersion(options);
|
|
7616
7816
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7617
7817
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getSystemVersion"]?.[localVarOperationServerIndex]?.url;
|
|
7618
|
-
return (axios$
|
|
7818
|
+
return (axios$157, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$157, localVarOperationServerBasePath || basePath);
|
|
7619
7819
|
},
|
|
7620
7820
|
async listConfigurationResources(options) {
|
|
7621
7821
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listConfigurationResources(options);
|
|
7622
7822
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7623
7823
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.listConfigurationResources"]?.[localVarOperationServerIndex]?.url;
|
|
7624
|
-
return (axios$
|
|
7824
|
+
return (axios$158, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$158, localVarOperationServerBasePath || basePath);
|
|
7625
7825
|
},
|
|
7626
7826
|
async restoreConfiguration(body, resources, options) {
|
|
7627
7827
|
const localVarAxiosArgs = await localVarAxiosParamCreator.restoreConfiguration(body, resources, options);
|
|
7628
7828
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7629
7829
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.restoreConfiguration"]?.[localVarOperationServerIndex]?.url;
|
|
7630
|
-
return (axios$
|
|
7830
|
+
return (axios$159, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$159, localVarOperationServerBasePath || basePath);
|
|
7631
7831
|
},
|
|
7632
7832
|
async updateNovaVersion(updateNovaVersionRequest, options) {
|
|
7633
7833
|
const localVarAxiosArgs = await localVarAxiosParamCreator.updateNovaVersion(updateNovaVersionRequest, options);
|
|
7634
7834
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7635
7835
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.updateNovaVersion"]?.[localVarOperationServerIndex]?.url;
|
|
7636
|
-
return (axios$
|
|
7836
|
+
return (axios$160, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$160, localVarOperationServerBasePath || basePath);
|
|
7637
7837
|
}
|
|
7638
7838
|
};
|
|
7639
7839
|
};
|
|
7640
7840
|
/**
|
|
7641
7841
|
* SystemApi - factory interface
|
|
7642
7842
|
*/
|
|
7643
|
-
const SystemApiFactory = function(configuration, basePath, axios$
|
|
7843
|
+
const SystemApiFactory = function(configuration, basePath, axios$161) {
|
|
7644
7844
|
const localVarFp = SystemApiFp(configuration);
|
|
7645
7845
|
return {
|
|
7646
7846
|
backupConfiguration(resources, metadata, options) {
|
|
7647
|
-
return localVarFp.backupConfiguration(resources, metadata, options).then((request) => request(axios$
|
|
7847
|
+
return localVarFp.backupConfiguration(resources, metadata, options).then((request) => request(axios$161, basePath));
|
|
7648
7848
|
},
|
|
7649
7849
|
checkNovaVersionUpdate(channel, options) {
|
|
7650
|
-
return localVarFp.checkNovaVersionUpdate(channel, options).then((request) => request(axios$
|
|
7850
|
+
return localVarFp.checkNovaVersionUpdate(channel, options).then((request) => request(axios$161, basePath));
|
|
7651
7851
|
},
|
|
7652
7852
|
getArpScan(_interface, cidr, timeout, options) {
|
|
7653
|
-
return localVarFp.getArpScan(_interface, cidr, timeout, options).then((request) => request(axios$
|
|
7853
|
+
return localVarFp.getArpScan(_interface, cidr, timeout, options).then((request) => request(axios$161, basePath));
|
|
7654
7854
|
},
|
|
7655
7855
|
getConfigurationBackupStatus(operationId, options) {
|
|
7656
|
-
return localVarFp.getConfigurationBackupStatus(operationId, options).then((request) => request(axios$
|
|
7856
|
+
return localVarFp.getConfigurationBackupStatus(operationId, options).then((request) => request(axios$161, basePath));
|
|
7657
7857
|
},
|
|
7658
7858
|
getDiagnosePackage(options) {
|
|
7659
|
-
return localVarFp.getDiagnosePackage(options).then((request) => request(axios$
|
|
7859
|
+
return localVarFp.getDiagnosePackage(options).then((request) => request(axios$161, basePath));
|
|
7660
7860
|
},
|
|
7661
7861
|
getNetworkInterfaces(options) {
|
|
7662
|
-
return localVarFp.getNetworkInterfaces(options).then((request) => request(axios$
|
|
7862
|
+
return localVarFp.getNetworkInterfaces(options).then((request) => request(axios$161, basePath));
|
|
7663
7863
|
},
|
|
7664
7864
|
getNetworkState(options) {
|
|
7665
|
-
return localVarFp.getNetworkState(options).then((request) => request(axios$
|
|
7865
|
+
return localVarFp.getNetworkState(options).then((request) => request(axios$161, basePath));
|
|
7666
7866
|
},
|
|
7667
7867
|
getSystemStatus(options) {
|
|
7668
|
-
return localVarFp.getSystemStatus(options).then((request) => request(axios$
|
|
7868
|
+
return localVarFp.getSystemStatus(options).then((request) => request(axios$161, basePath));
|
|
7669
7869
|
},
|
|
7670
7870
|
getSystemVersion(options) {
|
|
7671
|
-
return localVarFp.getSystemVersion(options).then((request) => request(axios$
|
|
7871
|
+
return localVarFp.getSystemVersion(options).then((request) => request(axios$161, basePath));
|
|
7672
7872
|
},
|
|
7673
7873
|
listConfigurationResources(options) {
|
|
7674
|
-
return localVarFp.listConfigurationResources(options).then((request) => request(axios$
|
|
7874
|
+
return localVarFp.listConfigurationResources(options).then((request) => request(axios$161, basePath));
|
|
7675
7875
|
},
|
|
7676
7876
|
restoreConfiguration(body, resources, options) {
|
|
7677
|
-
return localVarFp.restoreConfiguration(body, resources, options).then((request) => request(axios$
|
|
7877
|
+
return localVarFp.restoreConfiguration(body, resources, options).then((request) => request(axios$161, basePath));
|
|
7678
7878
|
},
|
|
7679
7879
|
updateNovaVersion(updateNovaVersionRequest, options) {
|
|
7680
|
-
return localVarFp.updateNovaVersion(updateNovaVersionRequest, options).then((request) => request(axios$
|
|
7880
|
+
return localVarFp.updateNovaVersion(updateNovaVersionRequest, options).then((request) => request(axios$161, basePath));
|
|
7681
7881
|
}
|
|
7682
7882
|
};
|
|
7683
7883
|
};
|
|
@@ -7805,234 +8005,6 @@ var SystemApi = class extends BaseAPI {
|
|
|
7805
8005
|
}
|
|
7806
8006
|
};
|
|
7807
8007
|
/**
|
|
7808
|
-
* TeachingApi - axios parameter creator
|
|
7809
|
-
*/
|
|
7810
|
-
const TeachingApiAxiosParamCreator = function(configuration) {
|
|
7811
|
-
return {
|
|
7812
|
-
createDataset: async (cell, createDatasetRequest, options = {}) => {
|
|
7813
|
-
assertParamExists("createDataset", "cell", cell);
|
|
7814
|
-
assertParamExists("createDataset", "createDatasetRequest", createDatasetRequest);
|
|
7815
|
-
const localVarPath = `/experimental/cells/{cell}/teaching/datasets`.replace("{cell}", encodeURIComponent(String(cell)));
|
|
7816
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
7817
|
-
let baseOptions;
|
|
7818
|
-
if (configuration) baseOptions = configuration.baseOptions;
|
|
7819
|
-
const localVarRequestOptions = {
|
|
7820
|
-
method: "POST",
|
|
7821
|
-
...baseOptions,
|
|
7822
|
-
...options
|
|
7823
|
-
};
|
|
7824
|
-
const localVarHeaderParameter = {};
|
|
7825
|
-
const localVarQueryParameter = {};
|
|
7826
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
7827
|
-
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
7828
|
-
localVarHeaderParameter["Accept"] = "application/json";
|
|
7829
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
7830
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
7831
|
-
localVarRequestOptions.headers = {
|
|
7832
|
-
...localVarHeaderParameter,
|
|
7833
|
-
...headersFromBaseOptions,
|
|
7834
|
-
...options.headers
|
|
7835
|
-
};
|
|
7836
|
-
localVarRequestOptions.data = serializeDataIfNeeded(createDatasetRequest, localVarRequestOptions, configuration);
|
|
7837
|
-
return {
|
|
7838
|
-
url: toPathString(localVarUrlObj),
|
|
7839
|
-
options: localVarRequestOptions
|
|
7840
|
-
};
|
|
7841
|
-
},
|
|
7842
|
-
deleteDataset: async (cell, dataset, revision, options = {}) => {
|
|
7843
|
-
assertParamExists("deleteDataset", "cell", cell);
|
|
7844
|
-
assertParamExists("deleteDataset", "dataset", dataset);
|
|
7845
|
-
const localVarPath = `/experimental/cells/{cell}/teaching/datasets/{dataset}`.replace("{cell}", encodeURIComponent(String(cell))).replace("{dataset}", encodeURIComponent(String(dataset)));
|
|
7846
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
7847
|
-
let baseOptions;
|
|
7848
|
-
if (configuration) baseOptions = configuration.baseOptions;
|
|
7849
|
-
const localVarRequestOptions = {
|
|
7850
|
-
method: "DELETE",
|
|
7851
|
-
...baseOptions,
|
|
7852
|
-
...options
|
|
7853
|
-
};
|
|
7854
|
-
const localVarHeaderParameter = {};
|
|
7855
|
-
const localVarQueryParameter = {};
|
|
7856
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
7857
|
-
if (revision !== void 0) localVarQueryParameter["revision"] = revision;
|
|
7858
|
-
localVarHeaderParameter["Accept"] = "application/json";
|
|
7859
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
7860
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
7861
|
-
localVarRequestOptions.headers = {
|
|
7862
|
-
...localVarHeaderParameter,
|
|
7863
|
-
...headersFromBaseOptions,
|
|
7864
|
-
...options.headers
|
|
7865
|
-
};
|
|
7866
|
-
return {
|
|
7867
|
-
url: toPathString(localVarUrlObj),
|
|
7868
|
-
options: localVarRequestOptions
|
|
7869
|
-
};
|
|
7870
|
-
},
|
|
7871
|
-
getDataset: async (cell, dataset, revision, options = {}) => {
|
|
7872
|
-
assertParamExists("getDataset", "cell", cell);
|
|
7873
|
-
assertParamExists("getDataset", "dataset", dataset);
|
|
7874
|
-
const localVarPath = `/experimental/cells/{cell}/teaching/datasets/{dataset}`.replace("{cell}", encodeURIComponent(String(cell))).replace("{dataset}", encodeURIComponent(String(dataset)));
|
|
7875
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
7876
|
-
let baseOptions;
|
|
7877
|
-
if (configuration) baseOptions = configuration.baseOptions;
|
|
7878
|
-
const localVarRequestOptions = {
|
|
7879
|
-
method: "GET",
|
|
7880
|
-
...baseOptions,
|
|
7881
|
-
...options
|
|
7882
|
-
};
|
|
7883
|
-
const localVarHeaderParameter = {};
|
|
7884
|
-
const localVarQueryParameter = {};
|
|
7885
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
7886
|
-
if (revision !== void 0) localVarQueryParameter["revision"] = revision;
|
|
7887
|
-
localVarHeaderParameter["Accept"] = "application/json";
|
|
7888
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
7889
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
7890
|
-
localVarRequestOptions.headers = {
|
|
7891
|
-
...localVarHeaderParameter,
|
|
7892
|
-
...headersFromBaseOptions,
|
|
7893
|
-
...options.headers
|
|
7894
|
-
};
|
|
7895
|
-
return {
|
|
7896
|
-
url: toPathString(localVarUrlObj),
|
|
7897
|
-
options: localVarRequestOptions
|
|
7898
|
-
};
|
|
7899
|
-
},
|
|
7900
|
-
getDatasets: async (cell, dataset, latestOnly, options = {}) => {
|
|
7901
|
-
assertParamExists("getDatasets", "cell", cell);
|
|
7902
|
-
const localVarPath = `/experimental/cells/{cell}/teaching/datasets`.replace("{cell}", encodeURIComponent(String(cell)));
|
|
7903
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
7904
|
-
let baseOptions;
|
|
7905
|
-
if (configuration) baseOptions = configuration.baseOptions;
|
|
7906
|
-
const localVarRequestOptions = {
|
|
7907
|
-
method: "GET",
|
|
7908
|
-
...baseOptions,
|
|
7909
|
-
...options
|
|
7910
|
-
};
|
|
7911
|
-
const localVarHeaderParameter = {};
|
|
7912
|
-
const localVarQueryParameter = {};
|
|
7913
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
7914
|
-
if (dataset !== void 0) localVarQueryParameter["dataset"] = dataset;
|
|
7915
|
-
if (latestOnly !== void 0) localVarQueryParameter["latest_only"] = latestOnly;
|
|
7916
|
-
localVarHeaderParameter["Accept"] = "application/json";
|
|
7917
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
7918
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
7919
|
-
localVarRequestOptions.headers = {
|
|
7920
|
-
...localVarHeaderParameter,
|
|
7921
|
-
...headersFromBaseOptions,
|
|
7922
|
-
...options.headers
|
|
7923
|
-
};
|
|
7924
|
-
return {
|
|
7925
|
-
url: toPathString(localVarUrlObj),
|
|
7926
|
-
options: localVarRequestOptions
|
|
7927
|
-
};
|
|
7928
|
-
}
|
|
7929
|
-
};
|
|
7930
|
-
};
|
|
7931
|
-
/**
|
|
7932
|
-
* TeachingApi - functional programming interface
|
|
7933
|
-
*/
|
|
7934
|
-
const TeachingApiFp = function(configuration) {
|
|
7935
|
-
const localVarAxiosParamCreator = TeachingApiAxiosParamCreator(configuration);
|
|
7936
|
-
return {
|
|
7937
|
-
async createDataset(cell, createDatasetRequest, options) {
|
|
7938
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.createDataset(cell, createDatasetRequest, options);
|
|
7939
|
-
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7940
|
-
const localVarOperationServerBasePath = operationServerMap["TeachingApi.createDataset"]?.[localVarOperationServerIndex]?.url;
|
|
7941
|
-
return (axios$158, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$158, localVarOperationServerBasePath || basePath);
|
|
7942
|
-
},
|
|
7943
|
-
async deleteDataset(cell, dataset, revision, options) {
|
|
7944
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteDataset(cell, dataset, revision, options);
|
|
7945
|
-
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7946
|
-
const localVarOperationServerBasePath = operationServerMap["TeachingApi.deleteDataset"]?.[localVarOperationServerIndex]?.url;
|
|
7947
|
-
return (axios$159, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$159, localVarOperationServerBasePath || basePath);
|
|
7948
|
-
},
|
|
7949
|
-
async getDataset(cell, dataset, revision, options) {
|
|
7950
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getDataset(cell, dataset, revision, options);
|
|
7951
|
-
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7952
|
-
const localVarOperationServerBasePath = operationServerMap["TeachingApi.getDataset"]?.[localVarOperationServerIndex]?.url;
|
|
7953
|
-
return (axios$160, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$160, localVarOperationServerBasePath || basePath);
|
|
7954
|
-
},
|
|
7955
|
-
async getDatasets(cell, dataset, latestOnly, options) {
|
|
7956
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getDatasets(cell, dataset, latestOnly, options);
|
|
7957
|
-
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7958
|
-
const localVarOperationServerBasePath = operationServerMap["TeachingApi.getDatasets"]?.[localVarOperationServerIndex]?.url;
|
|
7959
|
-
return (axios$161, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$161, localVarOperationServerBasePath || basePath);
|
|
7960
|
-
}
|
|
7961
|
-
};
|
|
7962
|
-
};
|
|
7963
|
-
/**
|
|
7964
|
-
* TeachingApi - factory interface
|
|
7965
|
-
*/
|
|
7966
|
-
const TeachingApiFactory = function(configuration, basePath, axios$162) {
|
|
7967
|
-
const localVarFp = TeachingApiFp(configuration);
|
|
7968
|
-
return {
|
|
7969
|
-
createDataset(cell, createDatasetRequest, options) {
|
|
7970
|
-
return localVarFp.createDataset(cell, createDatasetRequest, options).then((request) => request(axios$162, basePath));
|
|
7971
|
-
},
|
|
7972
|
-
deleteDataset(cell, dataset, revision, options) {
|
|
7973
|
-
return localVarFp.deleteDataset(cell, dataset, revision, options).then((request) => request(axios$162, basePath));
|
|
7974
|
-
},
|
|
7975
|
-
getDataset(cell, dataset, revision, options) {
|
|
7976
|
-
return localVarFp.getDataset(cell, dataset, revision, options).then((request) => request(axios$162, basePath));
|
|
7977
|
-
},
|
|
7978
|
-
getDatasets(cell, dataset, latestOnly, options) {
|
|
7979
|
-
return localVarFp.getDatasets(cell, dataset, latestOnly, options).then((request) => request(axios$162, basePath));
|
|
7980
|
-
}
|
|
7981
|
-
};
|
|
7982
|
-
};
|
|
7983
|
-
/**
|
|
7984
|
-
* TeachingApi - object-oriented interface
|
|
7985
|
-
*/
|
|
7986
|
-
var TeachingApi = class extends BaseAPI {
|
|
7987
|
-
/**
|
|
7988
|
-
* Creates a new teaching dataset together with its poses and command routines.
|
|
7989
|
-
* @summary Create Dataset
|
|
7990
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7991
|
-
* @param {CreateDatasetRequest} createDatasetRequest
|
|
7992
|
-
* @param {*} [options] Override http request option.
|
|
7993
|
-
* @throws {RequiredError}
|
|
7994
|
-
*/
|
|
7995
|
-
createDataset(cell, createDatasetRequest, options) {
|
|
7996
|
-
return TeachingApiFp(this.configuration).createDataset(cell, createDatasetRequest, options).then((request) => request(this.axios, this.basePath));
|
|
7997
|
-
}
|
|
7998
|
-
/**
|
|
7999
|
-
* Deletes a teaching dataset together with its persisted poses and command routines. Deletes the requested revision when the `revision` query parameter is set; otherwise deletes the latest revision. <!-- theme: danger --> > This will delete persistently stored data.
|
|
8000
|
-
* @summary Delete Dataset
|
|
8001
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8002
|
-
* @param {string} dataset Specifies the dataset identifier.
|
|
8003
|
-
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
8004
|
-
* @param {*} [options] Override http request option.
|
|
8005
|
-
* @throws {RequiredError}
|
|
8006
|
-
*/
|
|
8007
|
-
deleteDataset(cell, dataset, revision, options) {
|
|
8008
|
-
return TeachingApiFp(this.configuration).deleteDataset(cell, dataset, revision, options).then((request) => request(this.axios, this.basePath));
|
|
8009
|
-
}
|
|
8010
|
-
/**
|
|
8011
|
-
* Returns a teaching dataset together with its persisted poses and command routines. Returns the requested revision when the `revision` query parameter is set; otherwise returns the latest revision.
|
|
8012
|
-
* @summary Get Dataset
|
|
8013
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8014
|
-
* @param {string} dataset Specifies the dataset identifier.
|
|
8015
|
-
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
8016
|
-
* @param {*} [options] Override http request option.
|
|
8017
|
-
* @throws {RequiredError}
|
|
8018
|
-
*/
|
|
8019
|
-
getDataset(cell, dataset, revision, options) {
|
|
8020
|
-
return TeachingApiFp(this.configuration).getDataset(cell, dataset, revision, options).then((request) => request(this.axios, this.basePath));
|
|
8021
|
-
}
|
|
8022
|
-
/**
|
|
8023
|
-
* Returns the list of available teaching datasets. Without query parameters, all datasets across all revisions are returned. Use `dataset` to return all revisions of a single dataset. Use `latest_only` to return only the latest revision of each dataset.
|
|
8024
|
-
* @summary List Datasets
|
|
8025
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8026
|
-
* @param {string} [dataset] Restricts the result to all revisions of the given dataset.
|
|
8027
|
-
* @param {boolean} [latestOnly] When `true`, returns only the latest revision of each dataset.
|
|
8028
|
-
* @param {*} [options] Override http request option.
|
|
8029
|
-
* @throws {RequiredError}
|
|
8030
|
-
*/
|
|
8031
|
-
getDatasets(cell, dataset, latestOnly, options) {
|
|
8032
|
-
return TeachingApiFp(this.configuration).getDatasets(cell, dataset, latestOnly, options).then((request) => request(this.axios, this.basePath));
|
|
8033
|
-
}
|
|
8034
|
-
};
|
|
8035
|
-
/**
|
|
8036
8008
|
* TrajectoryCachingApi - axios parameter creator
|
|
8037
8009
|
*/
|
|
8038
8010
|
const TrajectoryCachingApiAxiosParamCreator = function(configuration) {
|
|
@@ -8194,54 +8166,54 @@ const TrajectoryCachingApiFp = function(configuration) {
|
|
|
8194
8166
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addTrajectory(cell, controller, addTrajectoryRequest, options);
|
|
8195
8167
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8196
8168
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryCachingApi.addTrajectory"]?.[localVarOperationServerIndex]?.url;
|
|
8197
|
-
return (axios$
|
|
8169
|
+
return (axios$162, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$162, localVarOperationServerBasePath || basePath);
|
|
8198
8170
|
},
|
|
8199
8171
|
async clearTrajectories(cell, controller, options) {
|
|
8200
8172
|
const localVarAxiosArgs = await localVarAxiosParamCreator.clearTrajectories(cell, controller, options);
|
|
8201
8173
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8202
8174
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryCachingApi.clearTrajectories"]?.[localVarOperationServerIndex]?.url;
|
|
8203
|
-
return (axios$
|
|
8175
|
+
return (axios$163, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$163, localVarOperationServerBasePath || basePath);
|
|
8204
8176
|
},
|
|
8205
8177
|
async deleteTrajectory(cell, controller, trajectory, options) {
|
|
8206
8178
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteTrajectory(cell, controller, trajectory, options);
|
|
8207
8179
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8208
8180
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryCachingApi.deleteTrajectory"]?.[localVarOperationServerIndex]?.url;
|
|
8209
|
-
return (axios$
|
|
8181
|
+
return (axios$164, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$164, localVarOperationServerBasePath || basePath);
|
|
8210
8182
|
},
|
|
8211
8183
|
async getTrajectory(cell, controller, trajectory, options) {
|
|
8212
8184
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getTrajectory(cell, controller, trajectory, options);
|
|
8213
8185
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8214
8186
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryCachingApi.getTrajectory"]?.[localVarOperationServerIndex]?.url;
|
|
8215
|
-
return (axios$
|
|
8187
|
+
return (axios$165, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$165, localVarOperationServerBasePath || basePath);
|
|
8216
8188
|
},
|
|
8217
8189
|
async listTrajectories(cell, controller, options) {
|
|
8218
8190
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listTrajectories(cell, controller, options);
|
|
8219
8191
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8220
8192
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryCachingApi.listTrajectories"]?.[localVarOperationServerIndex]?.url;
|
|
8221
|
-
return (axios$
|
|
8193
|
+
return (axios$166, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$166, localVarOperationServerBasePath || basePath);
|
|
8222
8194
|
}
|
|
8223
8195
|
};
|
|
8224
8196
|
};
|
|
8225
8197
|
/**
|
|
8226
8198
|
* TrajectoryCachingApi - factory interface
|
|
8227
8199
|
*/
|
|
8228
|
-
const TrajectoryCachingApiFactory = function(configuration, basePath, axios$
|
|
8200
|
+
const TrajectoryCachingApiFactory = function(configuration, basePath, axios$167) {
|
|
8229
8201
|
const localVarFp = TrajectoryCachingApiFp(configuration);
|
|
8230
8202
|
return {
|
|
8231
8203
|
addTrajectory(cell, controller, addTrajectoryRequest, options) {
|
|
8232
|
-
return localVarFp.addTrajectory(cell, controller, addTrajectoryRequest, options).then((request) => request(axios$
|
|
8204
|
+
return localVarFp.addTrajectory(cell, controller, addTrajectoryRequest, options).then((request) => request(axios$167, basePath));
|
|
8233
8205
|
},
|
|
8234
8206
|
clearTrajectories(cell, controller, options) {
|
|
8235
|
-
return localVarFp.clearTrajectories(cell, controller, options).then((request) => request(axios$
|
|
8207
|
+
return localVarFp.clearTrajectories(cell, controller, options).then((request) => request(axios$167, basePath));
|
|
8236
8208
|
},
|
|
8237
8209
|
deleteTrajectory(cell, controller, trajectory, options) {
|
|
8238
|
-
return localVarFp.deleteTrajectory(cell, controller, trajectory, options).then((request) => request(axios$
|
|
8210
|
+
return localVarFp.deleteTrajectory(cell, controller, trajectory, options).then((request) => request(axios$167, basePath));
|
|
8239
8211
|
},
|
|
8240
8212
|
getTrajectory(cell, controller, trajectory, options) {
|
|
8241
|
-
return localVarFp.getTrajectory(cell, controller, trajectory, options).then((request) => request(axios$
|
|
8213
|
+
return localVarFp.getTrajectory(cell, controller, trajectory, options).then((request) => request(axios$167, basePath));
|
|
8242
8214
|
},
|
|
8243
8215
|
listTrajectories(cell, controller, options) {
|
|
8244
|
-
return localVarFp.listTrajectories(cell, controller, options).then((request) => request(axios$
|
|
8216
|
+
return localVarFp.listTrajectories(cell, controller, options).then((request) => request(axios$167, basePath));
|
|
8245
8217
|
}
|
|
8246
8218
|
};
|
|
8247
8219
|
};
|
|
@@ -8353,16 +8325,16 @@ const TrajectoryExecutionApiFp = function(configuration) {
|
|
|
8353
8325
|
const localVarAxiosArgs = await localVarAxiosParamCreator.executeTrajectory(cell, controller, executeTrajectoryRequest, options);
|
|
8354
8326
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8355
8327
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryExecutionApi.executeTrajectory"]?.[localVarOperationServerIndex]?.url;
|
|
8356
|
-
return (axios$
|
|
8328
|
+
return (axios$168, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$168, localVarOperationServerBasePath || basePath);
|
|
8357
8329
|
} };
|
|
8358
8330
|
};
|
|
8359
8331
|
/**
|
|
8360
8332
|
* TrajectoryExecutionApi - factory interface
|
|
8361
8333
|
*/
|
|
8362
|
-
const TrajectoryExecutionApiFactory = function(configuration, basePath, axios$
|
|
8334
|
+
const TrajectoryExecutionApiFactory = function(configuration, basePath, axios$169) {
|
|
8363
8335
|
const localVarFp = TrajectoryExecutionApiFp(configuration);
|
|
8364
8336
|
return { executeTrajectory(cell, controller, executeTrajectoryRequest, options) {
|
|
8365
|
-
return localVarFp.executeTrajectory(cell, controller, executeTrajectoryRequest, options).then((request) => request(axios$
|
|
8337
|
+
return localVarFp.executeTrajectory(cell, controller, executeTrajectoryRequest, options).then((request) => request(axios$169, basePath));
|
|
8366
8338
|
} };
|
|
8367
8339
|
};
|
|
8368
8340
|
/**
|
|
@@ -8579,63 +8551,63 @@ const TrajectoryPlanningApiFp = function(configuration) {
|
|
|
8579
8551
|
const localVarAxiosArgs = await localVarAxiosParamCreator.configureRerunLogging(cell, rerunLoggingConfigurationRequest, options);
|
|
8580
8552
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8581
8553
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryPlanningApi.configureRerunLogging"]?.[localVarOperationServerIndex]?.url;
|
|
8582
|
-
return (axios$
|
|
8554
|
+
return (axios$170, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$170, localVarOperationServerBasePath || basePath);
|
|
8583
8555
|
},
|
|
8584
8556
|
async mergeTrajectories(cell, mergeTrajectoriesRequest, options) {
|
|
8585
8557
|
const localVarAxiosArgs = await localVarAxiosParamCreator.mergeTrajectories(cell, mergeTrajectoriesRequest, options);
|
|
8586
8558
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8587
8559
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryPlanningApi.mergeTrajectories"]?.[localVarOperationServerIndex]?.url;
|
|
8588
|
-
return (axios$
|
|
8560
|
+
return (axios$171, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$171, localVarOperationServerBasePath || basePath);
|
|
8589
8561
|
},
|
|
8590
8562
|
async optimizeMotionCommands(cell, optimizeMotionCommandsRequest, options) {
|
|
8591
8563
|
const localVarAxiosArgs = await localVarAxiosParamCreator.optimizeMotionCommands(cell, optimizeMotionCommandsRequest, options);
|
|
8592
8564
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8593
8565
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryPlanningApi.optimizeMotionCommands"]?.[localVarOperationServerIndex]?.url;
|
|
8594
|
-
return (axios$
|
|
8566
|
+
return (axios$172, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$172, localVarOperationServerBasePath || basePath);
|
|
8595
8567
|
},
|
|
8596
8568
|
async planCollisionFree(cell, planCollisionFreeRequest, options) {
|
|
8597
8569
|
const localVarAxiosArgs = await localVarAxiosParamCreator.planCollisionFree(cell, planCollisionFreeRequest, options);
|
|
8598
8570
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8599
8571
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryPlanningApi.planCollisionFree"]?.[localVarOperationServerIndex]?.url;
|
|
8600
|
-
return (axios$
|
|
8572
|
+
return (axios$173, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$173, localVarOperationServerBasePath || basePath);
|
|
8601
8573
|
},
|
|
8602
8574
|
async planTrajectory(cell, planTrajectoryRequest, options) {
|
|
8603
8575
|
const localVarAxiosArgs = await localVarAxiosParamCreator.planTrajectory(cell, planTrajectoryRequest, options);
|
|
8604
8576
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8605
8577
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryPlanningApi.planTrajectory"]?.[localVarOperationServerIndex]?.url;
|
|
8606
|
-
return (axios$
|
|
8578
|
+
return (axios$174, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$174, localVarOperationServerBasePath || basePath);
|
|
8607
8579
|
},
|
|
8608
8580
|
async searchCollisionFreeMultiMotionGroup(cell, multiSearchCollisionFreeRequest, options) {
|
|
8609
8581
|
const localVarAxiosArgs = await localVarAxiosParamCreator.searchCollisionFreeMultiMotionGroup(cell, multiSearchCollisionFreeRequest, options);
|
|
8610
8582
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8611
8583
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryPlanningApi.searchCollisionFreeMultiMotionGroup"]?.[localVarOperationServerIndex]?.url;
|
|
8612
|
-
return (axios$
|
|
8584
|
+
return (axios$175, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$175, localVarOperationServerBasePath || basePath);
|
|
8613
8585
|
}
|
|
8614
8586
|
};
|
|
8615
8587
|
};
|
|
8616
8588
|
/**
|
|
8617
8589
|
* TrajectoryPlanningApi - factory interface
|
|
8618
8590
|
*/
|
|
8619
|
-
const TrajectoryPlanningApiFactory = function(configuration, basePath, axios$
|
|
8591
|
+
const TrajectoryPlanningApiFactory = function(configuration, basePath, axios$176) {
|
|
8620
8592
|
const localVarFp = TrajectoryPlanningApiFp(configuration);
|
|
8621
8593
|
return {
|
|
8622
8594
|
configureRerunLogging(cell, rerunLoggingConfigurationRequest, options) {
|
|
8623
|
-
return localVarFp.configureRerunLogging(cell, rerunLoggingConfigurationRequest, options).then((request) => request(axios$
|
|
8595
|
+
return localVarFp.configureRerunLogging(cell, rerunLoggingConfigurationRequest, options).then((request) => request(axios$176, basePath));
|
|
8624
8596
|
},
|
|
8625
8597
|
mergeTrajectories(cell, mergeTrajectoriesRequest, options) {
|
|
8626
|
-
return localVarFp.mergeTrajectories(cell, mergeTrajectoriesRequest, options).then((request) => request(axios$
|
|
8598
|
+
return localVarFp.mergeTrajectories(cell, mergeTrajectoriesRequest, options).then((request) => request(axios$176, basePath));
|
|
8627
8599
|
},
|
|
8628
8600
|
optimizeMotionCommands(cell, optimizeMotionCommandsRequest, options) {
|
|
8629
|
-
return localVarFp.optimizeMotionCommands(cell, optimizeMotionCommandsRequest, options).then((request) => request(axios$
|
|
8601
|
+
return localVarFp.optimizeMotionCommands(cell, optimizeMotionCommandsRequest, options).then((request) => request(axios$176, basePath));
|
|
8630
8602
|
},
|
|
8631
8603
|
planCollisionFree(cell, planCollisionFreeRequest, options) {
|
|
8632
|
-
return localVarFp.planCollisionFree(cell, planCollisionFreeRequest, options).then((request) => request(axios$
|
|
8604
|
+
return localVarFp.planCollisionFree(cell, planCollisionFreeRequest, options).then((request) => request(axios$176, basePath));
|
|
8633
8605
|
},
|
|
8634
8606
|
planTrajectory(cell, planTrajectoryRequest, options) {
|
|
8635
|
-
return localVarFp.planTrajectory(cell, planTrajectoryRequest, options).then((request) => request(axios$
|
|
8607
|
+
return localVarFp.planTrajectory(cell, planTrajectoryRequest, options).then((request) => request(axios$176, basePath));
|
|
8636
8608
|
},
|
|
8637
8609
|
searchCollisionFreeMultiMotionGroup(cell, multiSearchCollisionFreeRequest, options) {
|
|
8638
|
-
return localVarFp.searchCollisionFreeMultiMotionGroup(cell, multiSearchCollisionFreeRequest, options).then((request) => request(axios$
|
|
8610
|
+
return localVarFp.searchCollisionFreeMultiMotionGroup(cell, multiSearchCollisionFreeRequest, options).then((request) => request(axios$176, basePath));
|
|
8639
8611
|
}
|
|
8640
8612
|
};
|
|
8641
8613
|
};
|
|
@@ -8749,16 +8721,16 @@ const VersionApiFp = function(configuration) {
|
|
|
8749
8721
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getApiVersion(options);
|
|
8750
8722
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8751
8723
|
const localVarOperationServerBasePath = operationServerMap["VersionApi.getApiVersion"]?.[localVarOperationServerIndex]?.url;
|
|
8752
|
-
return (axios$
|
|
8724
|
+
return (axios$177, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$177, localVarOperationServerBasePath || basePath);
|
|
8753
8725
|
} };
|
|
8754
8726
|
};
|
|
8755
8727
|
/**
|
|
8756
8728
|
* VersionApi - factory interface
|
|
8757
8729
|
*/
|
|
8758
|
-
const VersionApiFactory = function(configuration, basePath, axios$
|
|
8730
|
+
const VersionApiFactory = function(configuration, basePath, axios$178) {
|
|
8759
8731
|
const localVarFp = VersionApiFp(configuration);
|
|
8760
8732
|
return { getApiVersion(options) {
|
|
8761
|
-
return localVarFp.getApiVersion(options).then((request) => request(axios$
|
|
8733
|
+
return localVarFp.getApiVersion(options).then((request) => request(axios$178, basePath));
|
|
8762
8734
|
} };
|
|
8763
8735
|
};
|
|
8764
8736
|
/**
|
|
@@ -9387,189 +9359,189 @@ const VirtualControllerApiFp = function(configuration) {
|
|
|
9387
9359
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options);
|
|
9388
9360
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9389
9361
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.addVirtualControllerCoordinateSystem"]?.[localVarOperationServerIndex]?.url;
|
|
9390
|
-
return (axios$
|
|
9362
|
+
return (axios$179, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$179, localVarOperationServerBasePath || basePath);
|
|
9391
9363
|
},
|
|
9392
9364
|
async addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options) {
|
|
9393
9365
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options);
|
|
9394
9366
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9395
9367
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.addVirtualControllerMotionGroup"]?.[localVarOperationServerIndex]?.url;
|
|
9396
|
-
return (axios$
|
|
9368
|
+
return (axios$180, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$180, localVarOperationServerBasePath || basePath);
|
|
9397
9369
|
},
|
|
9398
9370
|
async addVirtualControllerSafetyZone(cell, controller, safetyZone, options) {
|
|
9399
9371
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualControllerSafetyZone(cell, controller, safetyZone, options);
|
|
9400
9372
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9401
9373
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.addVirtualControllerSafetyZone"]?.[localVarOperationServerIndex]?.url;
|
|
9402
|
-
return (axios$
|
|
9374
|
+
return (axios$181, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$181, localVarOperationServerBasePath || basePath);
|
|
9403
9375
|
},
|
|
9404
9376
|
async addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options) {
|
|
9405
9377
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options);
|
|
9406
9378
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9407
9379
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.addVirtualControllerTcp"]?.[localVarOperationServerIndex]?.url;
|
|
9408
|
-
return (axios$
|
|
9380
|
+
return (axios$182, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$182, localVarOperationServerBasePath || basePath);
|
|
9409
9381
|
},
|
|
9410
9382
|
async deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options) {
|
|
9411
9383
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options);
|
|
9412
9384
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9413
9385
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.deleteVirtualControllerCoordinateSystem"]?.[localVarOperationServerIndex]?.url;
|
|
9414
|
-
return (axios$
|
|
9386
|
+
return (axios$183, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$183, localVarOperationServerBasePath || basePath);
|
|
9415
9387
|
},
|
|
9416
9388
|
async deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options) {
|
|
9417
9389
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options);
|
|
9418
9390
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9419
9391
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.deleteVirtualControllerMotionGroup"]?.[localVarOperationServerIndex]?.url;
|
|
9420
|
-
return (axios$
|
|
9392
|
+
return (axios$184, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$184, localVarOperationServerBasePath || basePath);
|
|
9421
9393
|
},
|
|
9422
9394
|
async deleteVirtualControllerSafetyZone(cell, controller, id, options) {
|
|
9423
9395
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualControllerSafetyZone(cell, controller, id, options);
|
|
9424
9396
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9425
9397
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.deleteVirtualControllerSafetyZone"]?.[localVarOperationServerIndex]?.url;
|
|
9426
|
-
return (axios$
|
|
9398
|
+
return (axios$185, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$185, localVarOperationServerBasePath || basePath);
|
|
9427
9399
|
},
|
|
9428
9400
|
async deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options) {
|
|
9429
9401
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options);
|
|
9430
9402
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9431
9403
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.deleteVirtualControllerTcp"]?.[localVarOperationServerIndex]?.url;
|
|
9432
|
-
return (axios$
|
|
9404
|
+
return (axios$186, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$186, localVarOperationServerBasePath || basePath);
|
|
9433
9405
|
},
|
|
9434
9406
|
async getEmergencyStop(cell, controller, options) {
|
|
9435
9407
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getEmergencyStop(cell, controller, options);
|
|
9436
9408
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9437
9409
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getEmergencyStop"]?.[localVarOperationServerIndex]?.url;
|
|
9438
|
-
return (axios$
|
|
9410
|
+
return (axios$187, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$187, localVarOperationServerBasePath || basePath);
|
|
9439
9411
|
},
|
|
9440
9412
|
async getMotionGroupState(cell, controller, motionGroup, options) {
|
|
9441
9413
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupState(cell, controller, motionGroup, options);
|
|
9442
9414
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9443
9415
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getMotionGroupState"]?.[localVarOperationServerIndex]?.url;
|
|
9444
|
-
return (axios$
|
|
9416
|
+
return (axios$188, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$188, localVarOperationServerBasePath || basePath);
|
|
9445
9417
|
},
|
|
9446
9418
|
async getMotionGroups(cell, controller, options) {
|
|
9447
9419
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroups(cell, controller, options);
|
|
9448
9420
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9449
9421
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getMotionGroups"]?.[localVarOperationServerIndex]?.url;
|
|
9450
|
-
return (axios$
|
|
9422
|
+
return (axios$189, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$189, localVarOperationServerBasePath || basePath);
|
|
9451
9423
|
},
|
|
9452
9424
|
async getOperationMode(cell, controller, options) {
|
|
9453
9425
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getOperationMode(cell, controller, options);
|
|
9454
9426
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9455
9427
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getOperationMode"]?.[localVarOperationServerIndex]?.url;
|
|
9456
|
-
return (axios$
|
|
9428
|
+
return (axios$190, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$190, localVarOperationServerBasePath || basePath);
|
|
9457
9429
|
},
|
|
9458
9430
|
async getVirtualControllerMounting(cell, controller, motionGroup, options) {
|
|
9459
9431
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getVirtualControllerMounting(cell, controller, motionGroup, options);
|
|
9460
9432
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9461
9433
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getVirtualControllerMounting"]?.[localVarOperationServerIndex]?.url;
|
|
9462
|
-
return (axios$
|
|
9434
|
+
return (axios$191, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$191, localVarOperationServerBasePath || basePath);
|
|
9463
9435
|
},
|
|
9464
9436
|
async getVirtualControllerSafetyZones(cell, controller, options) {
|
|
9465
9437
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getVirtualControllerSafetyZones(cell, controller, options);
|
|
9466
9438
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9467
9439
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getVirtualControllerSafetyZones"]?.[localVarOperationServerIndex]?.url;
|
|
9468
|
-
return (axios$
|
|
9440
|
+
return (axios$192, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$192, localVarOperationServerBasePath || basePath);
|
|
9469
9441
|
},
|
|
9470
9442
|
async listVirtualControllerCoordinateSystems(cell, controller, options) {
|
|
9471
9443
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listVirtualControllerCoordinateSystems(cell, controller, options);
|
|
9472
9444
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9473
9445
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.listVirtualControllerCoordinateSystems"]?.[localVarOperationServerIndex]?.url;
|
|
9474
|
-
return (axios$
|
|
9446
|
+
return (axios$193, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$193, localVarOperationServerBasePath || basePath);
|
|
9475
9447
|
},
|
|
9476
9448
|
async listVirtualControllerTcps(cell, controller, motionGroup, options) {
|
|
9477
9449
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listVirtualControllerTcps(cell, controller, motionGroup, options);
|
|
9478
9450
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9479
9451
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.listVirtualControllerTcps"]?.[localVarOperationServerIndex]?.url;
|
|
9480
|
-
return (axios$
|
|
9452
|
+
return (axios$194, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$194, localVarOperationServerBasePath || basePath);
|
|
9481
9453
|
},
|
|
9482
9454
|
async setEmergencyStop(cell, controller, active, options) {
|
|
9483
9455
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setEmergencyStop(cell, controller, active, options);
|
|
9484
9456
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9485
9457
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.setEmergencyStop"]?.[localVarOperationServerIndex]?.url;
|
|
9486
|
-
return (axios$
|
|
9458
|
+
return (axios$195, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$195, localVarOperationServerBasePath || basePath);
|
|
9487
9459
|
},
|
|
9488
9460
|
async setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options) {
|
|
9489
9461
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options);
|
|
9490
9462
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9491
9463
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.setMotionGroupState"]?.[localVarOperationServerIndex]?.url;
|
|
9492
|
-
return (axios$
|
|
9464
|
+
return (axios$196, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$196, localVarOperationServerBasePath || basePath);
|
|
9493
9465
|
},
|
|
9494
9466
|
async setOperationMode(cell, controller, mode, options) {
|
|
9495
9467
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setOperationMode(cell, controller, mode, options);
|
|
9496
9468
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9497
9469
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.setOperationMode"]?.[localVarOperationServerIndex]?.url;
|
|
9498
|
-
return (axios$
|
|
9470
|
+
return (axios$197, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$197, localVarOperationServerBasePath || basePath);
|
|
9499
9471
|
},
|
|
9500
9472
|
async setVirtualControllerMounting(cell, controller, motionGroup, coordinateSystem, options) {
|
|
9501
9473
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setVirtualControllerMounting(cell, controller, motionGroup, coordinateSystem, options);
|
|
9502
9474
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9503
9475
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.setVirtualControllerMounting"]?.[localVarOperationServerIndex]?.url;
|
|
9504
|
-
return (axios$
|
|
9476
|
+
return (axios$198, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$198, localVarOperationServerBasePath || basePath);
|
|
9505
9477
|
}
|
|
9506
9478
|
};
|
|
9507
9479
|
};
|
|
9508
9480
|
/**
|
|
9509
9481
|
* VirtualControllerApi - factory interface
|
|
9510
9482
|
*/
|
|
9511
|
-
const VirtualControllerApiFactory = function(configuration, basePath, axios$
|
|
9483
|
+
const VirtualControllerApiFactory = function(configuration, basePath, axios$199) {
|
|
9512
9484
|
const localVarFp = VirtualControllerApiFp(configuration);
|
|
9513
9485
|
return {
|
|
9514
9486
|
addVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options) {
|
|
9515
|
-
return localVarFp.addVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options).then((request) => request(axios$
|
|
9487
|
+
return localVarFp.addVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options).then((request) => request(axios$199, basePath));
|
|
9516
9488
|
},
|
|
9517
9489
|
addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options) {
|
|
9518
|
-
return localVarFp.addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options).then((request) => request(axios$
|
|
9490
|
+
return localVarFp.addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options).then((request) => request(axios$199, basePath));
|
|
9519
9491
|
},
|
|
9520
9492
|
addVirtualControllerSafetyZone(cell, controller, safetyZone, options) {
|
|
9521
|
-
return localVarFp.addVirtualControllerSafetyZone(cell, controller, safetyZone, options).then((request) => request(axios$
|
|
9493
|
+
return localVarFp.addVirtualControllerSafetyZone(cell, controller, safetyZone, options).then((request) => request(axios$199, basePath));
|
|
9522
9494
|
},
|
|
9523
9495
|
addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options) {
|
|
9524
|
-
return localVarFp.addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options).then((request) => request(axios$
|
|
9496
|
+
return localVarFp.addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options).then((request) => request(axios$199, basePath));
|
|
9525
9497
|
},
|
|
9526
9498
|
deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options) {
|
|
9527
|
-
return localVarFp.deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options).then((request) => request(axios$
|
|
9499
|
+
return localVarFp.deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options).then((request) => request(axios$199, basePath));
|
|
9528
9500
|
},
|
|
9529
9501
|
deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options) {
|
|
9530
|
-
return localVarFp.deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options).then((request) => request(axios$
|
|
9502
|
+
return localVarFp.deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options).then((request) => request(axios$199, basePath));
|
|
9531
9503
|
},
|
|
9532
9504
|
deleteVirtualControllerSafetyZone(cell, controller, id, options) {
|
|
9533
|
-
return localVarFp.deleteVirtualControllerSafetyZone(cell, controller, id, options).then((request) => request(axios$
|
|
9505
|
+
return localVarFp.deleteVirtualControllerSafetyZone(cell, controller, id, options).then((request) => request(axios$199, basePath));
|
|
9534
9506
|
},
|
|
9535
9507
|
deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options) {
|
|
9536
|
-
return localVarFp.deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options).then((request) => request(axios$
|
|
9508
|
+
return localVarFp.deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options).then((request) => request(axios$199, basePath));
|
|
9537
9509
|
},
|
|
9538
9510
|
getEmergencyStop(cell, controller, options) {
|
|
9539
|
-
return localVarFp.getEmergencyStop(cell, controller, options).then((request) => request(axios$
|
|
9511
|
+
return localVarFp.getEmergencyStop(cell, controller, options).then((request) => request(axios$199, basePath));
|
|
9540
9512
|
},
|
|
9541
9513
|
getMotionGroupState(cell, controller, motionGroup, options) {
|
|
9542
|
-
return localVarFp.getMotionGroupState(cell, controller, motionGroup, options).then((request) => request(axios$
|
|
9514
|
+
return localVarFp.getMotionGroupState(cell, controller, motionGroup, options).then((request) => request(axios$199, basePath));
|
|
9543
9515
|
},
|
|
9544
9516
|
getMotionGroups(cell, controller, options) {
|
|
9545
|
-
return localVarFp.getMotionGroups(cell, controller, options).then((request) => request(axios$
|
|
9517
|
+
return localVarFp.getMotionGroups(cell, controller, options).then((request) => request(axios$199, basePath));
|
|
9546
9518
|
},
|
|
9547
9519
|
getOperationMode(cell, controller, options) {
|
|
9548
|
-
return localVarFp.getOperationMode(cell, controller, options).then((request) => request(axios$
|
|
9520
|
+
return localVarFp.getOperationMode(cell, controller, options).then((request) => request(axios$199, basePath));
|
|
9549
9521
|
},
|
|
9550
9522
|
getVirtualControllerMounting(cell, controller, motionGroup, options) {
|
|
9551
|
-
return localVarFp.getVirtualControllerMounting(cell, controller, motionGroup, options).then((request) => request(axios$
|
|
9523
|
+
return localVarFp.getVirtualControllerMounting(cell, controller, motionGroup, options).then((request) => request(axios$199, basePath));
|
|
9552
9524
|
},
|
|
9553
9525
|
getVirtualControllerSafetyZones(cell, controller, options) {
|
|
9554
|
-
return localVarFp.getVirtualControllerSafetyZones(cell, controller, options).then((request) => request(axios$
|
|
9526
|
+
return localVarFp.getVirtualControllerSafetyZones(cell, controller, options).then((request) => request(axios$199, basePath));
|
|
9555
9527
|
},
|
|
9556
9528
|
listVirtualControllerCoordinateSystems(cell, controller, options) {
|
|
9557
|
-
return localVarFp.listVirtualControllerCoordinateSystems(cell, controller, options).then((request) => request(axios$
|
|
9529
|
+
return localVarFp.listVirtualControllerCoordinateSystems(cell, controller, options).then((request) => request(axios$199, basePath));
|
|
9558
9530
|
},
|
|
9559
9531
|
listVirtualControllerTcps(cell, controller, motionGroup, options) {
|
|
9560
|
-
return localVarFp.listVirtualControllerTcps(cell, controller, motionGroup, options).then((request) => request(axios$
|
|
9532
|
+
return localVarFp.listVirtualControllerTcps(cell, controller, motionGroup, options).then((request) => request(axios$199, basePath));
|
|
9561
9533
|
},
|
|
9562
9534
|
setEmergencyStop(cell, controller, active, options) {
|
|
9563
|
-
return localVarFp.setEmergencyStop(cell, controller, active, options).then((request) => request(axios$
|
|
9535
|
+
return localVarFp.setEmergencyStop(cell, controller, active, options).then((request) => request(axios$199, basePath));
|
|
9564
9536
|
},
|
|
9565
9537
|
setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options) {
|
|
9566
|
-
return localVarFp.setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options).then((request) => request(axios$
|
|
9538
|
+
return localVarFp.setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options).then((request) => request(axios$199, basePath));
|
|
9567
9539
|
},
|
|
9568
9540
|
setOperationMode(cell, controller, mode, options) {
|
|
9569
|
-
return localVarFp.setOperationMode(cell, controller, mode, options).then((request) => request(axios$
|
|
9541
|
+
return localVarFp.setOperationMode(cell, controller, mode, options).then((request) => request(axios$199, basePath));
|
|
9570
9542
|
},
|
|
9571
9543
|
setVirtualControllerMounting(cell, controller, motionGroup, coordinateSystem, options) {
|
|
9572
|
-
return localVarFp.setVirtualControllerMounting(cell, controller, motionGroup, coordinateSystem, options).then((request) => request(axios$
|
|
9544
|
+
return localVarFp.setVirtualControllerMounting(cell, controller, motionGroup, coordinateSystem, options).then((request) => request(axios$199, basePath));
|
|
9573
9545
|
}
|
|
9574
9546
|
};
|
|
9575
9547
|
};
|
|
@@ -9953,45 +9925,45 @@ const VirtualControllerBehaviorApiFp = function(configuration) {
|
|
|
9953
9925
|
const localVarAxiosArgs = await localVarAxiosParamCreator.externalJointsStream(cell, controller, externalJointStreamRequest, options);
|
|
9954
9926
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9955
9927
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerBehaviorApi.externalJointsStream"]?.[localVarOperationServerIndex]?.url;
|
|
9956
|
-
return (axios$
|
|
9928
|
+
return (axios$200, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$200, localVarOperationServerBasePath || basePath);
|
|
9957
9929
|
},
|
|
9958
9930
|
async getCycleTime(cell, controller, options) {
|
|
9959
9931
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getCycleTime(cell, controller, options);
|
|
9960
9932
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9961
9933
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerBehaviorApi.getCycleTime"]?.[localVarOperationServerIndex]?.url;
|
|
9962
|
-
return (axios$
|
|
9934
|
+
return (axios$201, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$201, localVarOperationServerBasePath || basePath);
|
|
9963
9935
|
},
|
|
9964
9936
|
async getVirtualControllerBehavior(cell, controller, options) {
|
|
9965
9937
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getVirtualControllerBehavior(cell, controller, options);
|
|
9966
9938
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9967
9939
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerBehaviorApi.getVirtualControllerBehavior"]?.[localVarOperationServerIndex]?.url;
|
|
9968
|
-
return (axios$
|
|
9940
|
+
return (axios$202, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$202, localVarOperationServerBasePath || basePath);
|
|
9969
9941
|
},
|
|
9970
9942
|
async setVirtualControllerBehavior(cell, controller, behavior, options) {
|
|
9971
9943
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setVirtualControllerBehavior(cell, controller, behavior, options);
|
|
9972
9944
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9973
9945
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerBehaviorApi.setVirtualControllerBehavior"]?.[localVarOperationServerIndex]?.url;
|
|
9974
|
-
return (axios$
|
|
9946
|
+
return (axios$203, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$203, localVarOperationServerBasePath || basePath);
|
|
9975
9947
|
}
|
|
9976
9948
|
};
|
|
9977
9949
|
};
|
|
9978
9950
|
/**
|
|
9979
9951
|
* VirtualControllerBehaviorApi - factory interface
|
|
9980
9952
|
*/
|
|
9981
|
-
const VirtualControllerBehaviorApiFactory = function(configuration, basePath, axios$
|
|
9953
|
+
const VirtualControllerBehaviorApiFactory = function(configuration, basePath, axios$204) {
|
|
9982
9954
|
const localVarFp = VirtualControllerBehaviorApiFp(configuration);
|
|
9983
9955
|
return {
|
|
9984
9956
|
externalJointsStream(cell, controller, externalJointStreamRequest, options) {
|
|
9985
|
-
return localVarFp.externalJointsStream(cell, controller, externalJointStreamRequest, options).then((request) => request(axios$
|
|
9957
|
+
return localVarFp.externalJointsStream(cell, controller, externalJointStreamRequest, options).then((request) => request(axios$204, basePath));
|
|
9986
9958
|
},
|
|
9987
9959
|
getCycleTime(cell, controller, options) {
|
|
9988
|
-
return localVarFp.getCycleTime(cell, controller, options).then((request) => request(axios$
|
|
9960
|
+
return localVarFp.getCycleTime(cell, controller, options).then((request) => request(axios$204, basePath));
|
|
9989
9961
|
},
|
|
9990
9962
|
getVirtualControllerBehavior(cell, controller, options) {
|
|
9991
|
-
return localVarFp.getVirtualControllerBehavior(cell, controller, options).then((request) => request(axios$
|
|
9963
|
+
return localVarFp.getVirtualControllerBehavior(cell, controller, options).then((request) => request(axios$204, basePath));
|
|
9992
9964
|
},
|
|
9993
9965
|
setVirtualControllerBehavior(cell, controller, behavior, options) {
|
|
9994
|
-
return localVarFp.setVirtualControllerBehavior(cell, controller, behavior, options).then((request) => request(axios$
|
|
9966
|
+
return localVarFp.setVirtualControllerBehavior(cell, controller, behavior, options).then((request) => request(axios$204, basePath));
|
|
9995
9967
|
}
|
|
9996
9968
|
};
|
|
9997
9969
|
};
|
|
@@ -10156,36 +10128,36 @@ const VirtualControllerInputsOutputsApiFp = function(configuration) {
|
|
|
10156
10128
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listIOs(cell, controller, ios, options);
|
|
10157
10129
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
10158
10130
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerInputsOutputsApi.listIOs"]?.[localVarOperationServerIndex]?.url;
|
|
10159
|
-
return (axios$
|
|
10131
|
+
return (axios$205, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$205, localVarOperationServerBasePath || basePath);
|
|
10160
10132
|
},
|
|
10161
10133
|
async listVirtualControllerIODescriptions(cell, controller, ios, direction, valueType, group, options) {
|
|
10162
10134
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listVirtualControllerIODescriptions(cell, controller, ios, direction, valueType, group, options);
|
|
10163
10135
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
10164
10136
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerInputsOutputsApi.listVirtualControllerIODescriptions"]?.[localVarOperationServerIndex]?.url;
|
|
10165
|
-
return (axios$
|
|
10137
|
+
return (axios$206, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$206, localVarOperationServerBasePath || basePath);
|
|
10166
10138
|
},
|
|
10167
10139
|
async setIOValues(cell, controller, iOValue, options) {
|
|
10168
10140
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setIOValues(cell, controller, iOValue, options);
|
|
10169
10141
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
10170
10142
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerInputsOutputsApi.setIOValues"]?.[localVarOperationServerIndex]?.url;
|
|
10171
|
-
return (axios$
|
|
10143
|
+
return (axios$207, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$207, localVarOperationServerBasePath || basePath);
|
|
10172
10144
|
}
|
|
10173
10145
|
};
|
|
10174
10146
|
};
|
|
10175
10147
|
/**
|
|
10176
10148
|
* VirtualControllerInputsOutputsApi - factory interface
|
|
10177
10149
|
*/
|
|
10178
|
-
const VirtualControllerInputsOutputsApiFactory = function(configuration, basePath, axios$
|
|
10150
|
+
const VirtualControllerInputsOutputsApiFactory = function(configuration, basePath, axios$208) {
|
|
10179
10151
|
const localVarFp = VirtualControllerInputsOutputsApiFp(configuration);
|
|
10180
10152
|
return {
|
|
10181
10153
|
listIOs(cell, controller, ios, options) {
|
|
10182
|
-
return localVarFp.listIOs(cell, controller, ios, options).then((request) => request(axios$
|
|
10154
|
+
return localVarFp.listIOs(cell, controller, ios, options).then((request) => request(axios$208, basePath));
|
|
10183
10155
|
},
|
|
10184
10156
|
listVirtualControllerIODescriptions(cell, controller, ios, direction, valueType, group, options) {
|
|
10185
|
-
return localVarFp.listVirtualControllerIODescriptions(cell, controller, ios, direction, valueType, group, options).then((request) => request(axios$
|
|
10157
|
+
return localVarFp.listVirtualControllerIODescriptions(cell, controller, ios, direction, valueType, group, options).then((request) => request(axios$208, basePath));
|
|
10186
10158
|
},
|
|
10187
10159
|
setIOValues(cell, controller, iOValue, options) {
|
|
10188
|
-
return localVarFp.setIOValues(cell, controller, iOValue, options).then((request) => request(axios$
|
|
10160
|
+
return localVarFp.setIOValues(cell, controller, iOValue, options).then((request) => request(axios$208, basePath));
|
|
10189
10161
|
}
|
|
10190
10162
|
};
|
|
10191
10163
|
};
|
|
@@ -10620,10 +10592,6 @@ exports.SystemApiFp = SystemApiFp;
|
|
|
10620
10592
|
exports.TcpRequiredErrorKindEnum = TcpRequiredErrorKindEnum;
|
|
10621
10593
|
exports.TcpVelocityRequestMessageTypeEnum = TcpVelocityRequestMessageTypeEnum;
|
|
10622
10594
|
exports.TcpVelocityResponseKindEnum = TcpVelocityResponseKindEnum;
|
|
10623
|
-
exports.TeachingApi = TeachingApi;
|
|
10624
|
-
exports.TeachingApiAxiosParamCreator = TeachingApiAxiosParamCreator;
|
|
10625
|
-
exports.TeachingApiFactory = TeachingApiFactory;
|
|
10626
|
-
exports.TeachingApiFp = TeachingApiFp;
|
|
10627
10595
|
exports.TechmanControllerKindEnum = TechmanControllerKindEnum;
|
|
10628
10596
|
exports.TimeTriggerTypeEnum = TimeTriggerTypeEnum;
|
|
10629
10597
|
exports.ToolValueSourceEnum = ToolValueSourceEnum;
|