@wandelbots/nova-api 26.6.0-dev.9 → 26.6.0-dev.90
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 +526 -263
- package/dist/v2/index.d.cts +458 -39
- package/dist/v2/index.d.ts +458 -39
- package/dist/v2/index.js +251 -15
- package/package.json +1 -6
- package/dist/defineProperty-6Ts4XR6h.js +0 -39
- package/dist/defineProperty-D0JvJyYC.cjs +0 -72
- package/dist/v1/index.cjs +0 -10324
- package/dist/v1/index.d.cts +0 -11386
- package/dist/v1/index.d.ts +0 -11386
- package/dist/v1/index.js +0 -10135
package/dist/v2/index.cjs
CHANGED
|
@@ -1,7 +1,66 @@
|
|
|
1
1
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
2
|
-
|
|
2
|
+
//#region \0rolldown/runtime.js
|
|
3
|
+
var __create = Object.create;
|
|
4
|
+
var __defProp = Object.defineProperty;
|
|
5
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
6
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
7
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
8
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
9
|
+
var __copyProps = (to, from, except, desc) => {
|
|
10
|
+
if (from && typeof from === "object" || typeof from === "function") for (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) {
|
|
11
|
+
key = keys[i];
|
|
12
|
+
if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
|
|
13
|
+
get: ((k) => from[k]).bind(null, key),
|
|
14
|
+
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
15
|
+
});
|
|
16
|
+
}
|
|
17
|
+
return to;
|
|
18
|
+
};
|
|
19
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
|
|
20
|
+
value: mod,
|
|
21
|
+
enumerable: true
|
|
22
|
+
}) : target, mod));
|
|
23
|
+
//#endregion
|
|
3
24
|
let axios = require("axios");
|
|
4
|
-
axios =
|
|
25
|
+
axios = __toESM(axios, 1);
|
|
26
|
+
//#region \0@oxc-project+runtime@0.126.0/helpers/typeof.js
|
|
27
|
+
function _typeof(o) {
|
|
28
|
+
"@babel/helpers - typeof";
|
|
29
|
+
return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(o) {
|
|
30
|
+
return typeof o;
|
|
31
|
+
} : function(o) {
|
|
32
|
+
return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o;
|
|
33
|
+
}, _typeof(o);
|
|
34
|
+
}
|
|
35
|
+
//#endregion
|
|
36
|
+
//#region \0@oxc-project+runtime@0.126.0/helpers/toPrimitive.js
|
|
37
|
+
function toPrimitive(t, r) {
|
|
38
|
+
if ("object" != _typeof(t) || !t) return t;
|
|
39
|
+
var e = t[Symbol.toPrimitive];
|
|
40
|
+
if (void 0 !== e) {
|
|
41
|
+
var i = e.call(t, r || "default");
|
|
42
|
+
if ("object" != _typeof(i)) return i;
|
|
43
|
+
throw new TypeError("@@toPrimitive must return a primitive value.");
|
|
44
|
+
}
|
|
45
|
+
return ("string" === r ? String : Number)(t);
|
|
46
|
+
}
|
|
47
|
+
//#endregion
|
|
48
|
+
//#region \0@oxc-project+runtime@0.126.0/helpers/toPropertyKey.js
|
|
49
|
+
function toPropertyKey(t) {
|
|
50
|
+
var i = toPrimitive(t, "string");
|
|
51
|
+
return "symbol" == _typeof(i) ? i : i + "";
|
|
52
|
+
}
|
|
53
|
+
//#endregion
|
|
54
|
+
//#region \0@oxc-project+runtime@0.126.0/helpers/defineProperty.js
|
|
55
|
+
function _defineProperty(e, r, t) {
|
|
56
|
+
return (r = toPropertyKey(r)) in e ? Object.defineProperty(e, r, {
|
|
57
|
+
value: t,
|
|
58
|
+
enumerable: !0,
|
|
59
|
+
configurable: !0,
|
|
60
|
+
writable: !0
|
|
61
|
+
}) : e[r] = t, e;
|
|
62
|
+
}
|
|
63
|
+
//#endregion
|
|
5
64
|
//#region v2/base.ts
|
|
6
65
|
const BASE_PATH = "/api/v2".replace(/\/+$/, "");
|
|
7
66
|
const COLLECTION_FORMATS = {
|
|
@@ -11,10 +70,10 @@ const COLLECTION_FORMATS = {
|
|
|
11
70
|
pipes: "|"
|
|
12
71
|
};
|
|
13
72
|
var BaseAPI = class {
|
|
14
|
-
constructor(configuration, basePath = BASE_PATH, axios$
|
|
73
|
+
constructor(configuration, basePath = BASE_PATH, axios$199 = axios.default) {
|
|
15
74
|
this.basePath = basePath;
|
|
16
|
-
this.axios = axios$
|
|
17
|
-
|
|
75
|
+
this.axios = axios$199;
|
|
76
|
+
_defineProperty(this, "configuration", void 0);
|
|
18
77
|
if (configuration) {
|
|
19
78
|
this.configuration = configuration;
|
|
20
79
|
this.basePath = configuration.basePath ?? basePath;
|
|
@@ -91,6 +150,8 @@ const BlendingSpace = {
|
|
|
91
150
|
Cartesian: "CARTESIAN"
|
|
92
151
|
};
|
|
93
152
|
const BooleanValueValueTypeEnum = { Boolean: "boolean" };
|
|
153
|
+
const BostondynamicsControllerKindEnum = { BostondynamicsController: "BostondynamicsController" };
|
|
154
|
+
const BostondynamicsControllerRobotTypeEnum = { Spot: "spot" };
|
|
94
155
|
const BoxShapeTypeEnum = { Box: "box" };
|
|
95
156
|
const BoxBoxTypeEnum = {
|
|
96
157
|
Hollow: "HOLLOW",
|
|
@@ -248,9 +309,11 @@ const LicenseStatusEnum = {
|
|
|
248
309
|
const LinkChainValueSourceEnum = { Value: "value" };
|
|
249
310
|
const Manufacturer = {
|
|
250
311
|
Abb: "abb",
|
|
312
|
+
Bostondynamics: "bostondynamics",
|
|
251
313
|
Fanuc: "fanuc",
|
|
252
314
|
Kuka: "kuka",
|
|
253
315
|
Staubli: "staubli",
|
|
316
|
+
Unitree: "unitree",
|
|
254
317
|
Universalrobots: "universalrobots",
|
|
255
318
|
Yaskawa: "yaskawa"
|
|
256
319
|
};
|
|
@@ -472,6 +535,14 @@ const SettableRobotSystemMode = {
|
|
|
472
535
|
RobotSystemModeControl: "ROBOT_SYSTEM_MODE_CONTROL",
|
|
473
536
|
ModeControl: "MODE_CONTROL"
|
|
474
537
|
};
|
|
538
|
+
/**
|
|
539
|
+
* <!-- theme: danger --> > > **Experimental** Strategy used to deal with wrist singularities along a cartesian path. > > - `NONE`: No special handling; a singularity ends the path. > - `PALLETIZING_WRIST`: When performing a palletizing motion, attempt to bridge a wrist singularity by flipping the wrist branch. > A palletizing motion is a motion where the flange axis of rotation is alway parallel to the base axis of rotation. > This flag is supported for all robots except FANUC CRX and ABB GoFa. > - `ADAPTIVE_SAMPLING`: Alternative cartesian solver that re-samples the path in proximity to a singularity.
|
|
540
|
+
*/
|
|
541
|
+
const SingularityHandling = {
|
|
542
|
+
None: "NONE",
|
|
543
|
+
PalletizingWrist: "PALLETIZING_WRIST",
|
|
544
|
+
AdaptiveSampling: "ADAPTIVE_SAMPLING"
|
|
545
|
+
};
|
|
475
546
|
const SingularityTypeEnum = {
|
|
476
547
|
Wrist: "WRIST",
|
|
477
548
|
Elbow: "ELBOW",
|
|
@@ -540,6 +611,13 @@ const UnitType = {
|
|
|
540
611
|
UnitNewtonMeter: "UNIT_NEWTON_METER",
|
|
541
612
|
UnitMeter: "UNIT_METER"
|
|
542
613
|
};
|
|
614
|
+
const UnitreeControllerKindEnum = { UnitreeController: "UnitreeController" };
|
|
615
|
+
const UnitreeControllerRobotTypeEnum = {
|
|
616
|
+
Go2: "go2",
|
|
617
|
+
G1: "g1",
|
|
618
|
+
B2: "b2",
|
|
619
|
+
H1: "h1"
|
|
620
|
+
};
|
|
543
621
|
const UniversalrobotsControllerKindEnum = { UniversalrobotsController: "UniversalrobotsController" };
|
|
544
622
|
const VirtualControllerKindEnum = { VirtualController: "VirtualController" };
|
|
545
623
|
const YaskawaControllerKindEnum = { YaskawaController: "YaskawaController" };
|
|
@@ -1306,7 +1384,7 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
|
|
|
1306
1384
|
options: localVarRequestOptions
|
|
1307
1385
|
};
|
|
1308
1386
|
},
|
|
1309
|
-
getProfinetIOsFromFile: async (cell, inputOffset, outputOffset, options = {}) => {
|
|
1387
|
+
getProfinetIOsFromFile: async (cell, offsets, inputOffset, outputOffset, options = {}) => {
|
|
1310
1388
|
assertParamExists("getProfinetIOsFromFile", "cell", cell);
|
|
1311
1389
|
const localVarPath = `/cells/{cell}/bus-ios/profinet/iofile`.replace(`{cell}`, encodeURIComponent(String(cell)));
|
|
1312
1390
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -1320,6 +1398,7 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
|
|
|
1320
1398
|
const localVarHeaderParameter = {};
|
|
1321
1399
|
const localVarQueryParameter = {};
|
|
1322
1400
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1401
|
+
if (offsets) localVarQueryParameter["offsets"] = offsets.join(COLLECTION_FORMATS.csv);
|
|
1323
1402
|
if (inputOffset !== void 0) localVarQueryParameter["input_offset"] = inputOffset;
|
|
1324
1403
|
if (outputOffset !== void 0) localVarQueryParameter["output_offset"] = outputOffset;
|
|
1325
1404
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -1600,8 +1679,8 @@ const BUSInputsOutputsApiFp = function(configuration) {
|
|
|
1600
1679
|
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.getProfinetGSDML"]?.[localVarOperationServerIndex]?.url;
|
|
1601
1680
|
return (axios$23, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$23, localVarOperationServerBasePath || basePath);
|
|
1602
1681
|
},
|
|
1603
|
-
async getProfinetIOsFromFile(cell, inputOffset, outputOffset, options) {
|
|
1604
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getProfinetIOsFromFile(cell, inputOffset, outputOffset, options);
|
|
1682
|
+
async getProfinetIOsFromFile(cell, offsets, inputOffset, outputOffset, options) {
|
|
1683
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getProfinetIOsFromFile(cell, offsets, inputOffset, outputOffset, options);
|
|
1605
1684
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1606
1685
|
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.getProfinetIOsFromFile"]?.[localVarOperationServerIndex]?.url;
|
|
1607
1686
|
return (axios$24, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$24, localVarOperationServerBasePath || basePath);
|
|
@@ -1698,8 +1777,8 @@ const BUSInputsOutputsApiFactory = function(configuration, basePath, axios$31) {
|
|
|
1698
1777
|
getProfinetGSDML(cell, options) {
|
|
1699
1778
|
return localVarFp.getProfinetGSDML(cell, options).then((request) => request(axios$31, basePath));
|
|
1700
1779
|
},
|
|
1701
|
-
getProfinetIOsFromFile(cell, inputOffset, outputOffset, options) {
|
|
1702
|
-
return localVarFp.getProfinetIOsFromFile(cell, inputOffset, outputOffset, options).then((request) => request(axios$31, basePath));
|
|
1780
|
+
getProfinetIOsFromFile(cell, offsets, inputOffset, outputOffset, options) {
|
|
1781
|
+
return localVarFp.getProfinetIOsFromFile(cell, offsets, inputOffset, outputOffset, options).then((request) => request(axios$31, basePath));
|
|
1703
1782
|
},
|
|
1704
1783
|
listBusIODescriptions(cell, options) {
|
|
1705
1784
|
return localVarFp.listBusIODescriptions(cell, options).then((request) => request(axios$31, basePath));
|
|
@@ -1899,16 +1978,17 @@ var BUSInputsOutputsApi = class extends BaseAPI {
|
|
|
1899
1978
|
return BUSInputsOutputsApiFp(this.configuration).getProfinetGSDML(cell, options).then((request) => request(this.axios, this.basePath));
|
|
1900
1979
|
}
|
|
1901
1980
|
/**
|
|
1902
|
-
* **Required permissions:** `can_operate_bus_ios` - Read and write BUS IO values ___ Get input/output variable configuration of the PROFINET device, e.g., NOVA\'s PROFINET service as file. You can specify byte offsets for
|
|
1981
|
+
* **Required permissions:** `can_operate_bus_ios` - Read and write BUS IO values ___ Get input/output variable configuration of the PROFINET device, e.g., NOVA\'s PROFINET service as file. You can specify per-slot byte offsets for input and output variable addresses to get an XML tag map that is ready for pasting to third party software, e.g., TIA portal. For backward compatibility, the legacy `input_offset` and `output_offset` query parameters remain available, but deprecated.
|
|
1903
1982
|
* @summary PROFINET Inputs/Outputs to File
|
|
1904
1983
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
1984
|
+
* @param {Array<ProfinetSlotOffset>} [offsets] Per-slot offsets used to convert device-local byte addresses to controller byte addresses for export. If this parameter is provided, it is preferred over the deprecated `input_offset` and `output_offset` query parameters.
|
|
1905
1985
|
* @param {number} [inputOffset]
|
|
1906
1986
|
* @param {number} [outputOffset]
|
|
1907
1987
|
* @param {*} [options] Override http request option.
|
|
1908
1988
|
* @throws {RequiredError}
|
|
1909
1989
|
*/
|
|
1910
|
-
getProfinetIOsFromFile(cell, inputOffset, outputOffset, options) {
|
|
1911
|
-
return BUSInputsOutputsApiFp(this.configuration).getProfinetIOsFromFile(cell, inputOffset, outputOffset, options).then((request) => request(this.axios, this.basePath));
|
|
1990
|
+
getProfinetIOsFromFile(cell, offsets, inputOffset, outputOffset, options) {
|
|
1991
|
+
return BUSInputsOutputsApiFp(this.configuration).getProfinetIOsFromFile(cell, offsets, inputOffset, outputOffset, options).then((request) => request(this.axios, this.basePath));
|
|
1912
1992
|
}
|
|
1913
1993
|
/**
|
|
1914
1994
|
* **Required permissions:** `can_operate_bus_ios` - Read and write BUS IO values ___ List all input/output descriptions for configured BUS services. The input/output descriptions contain information like name, type and unit. The input/output direction is given in perspective of the BUS service.
|
|
@@ -2361,7 +2441,7 @@ var CellApi = class extends BaseAPI {
|
|
|
2361
2441
|
return CellApiFp(this.configuration).deployCell(cell, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
2362
2442
|
}
|
|
2363
2443
|
/**
|
|
2364
|
-
* **Required permissions:** `
|
|
2444
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ List all cell resources.
|
|
2365
2445
|
* @summary Configuration
|
|
2366
2446
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
2367
2447
|
* @param {*} [options] Override http request option.
|
|
@@ -3640,6 +3720,35 @@ const KinematicsApiAxiosParamCreator = function(configuration) {
|
|
|
3640
3720
|
options: localVarRequestOptions
|
|
3641
3721
|
};
|
|
3642
3722
|
},
|
|
3723
|
+
getKinematicConfiguration: async (cell, getKinematicConfigurationRequest, options = {}) => {
|
|
3724
|
+
assertParamExists("getKinematicConfiguration", "cell", cell);
|
|
3725
|
+
assertParamExists("getKinematicConfiguration", "getKinematicConfigurationRequest", getKinematicConfigurationRequest);
|
|
3726
|
+
const localVarPath = `/experimental/cells/{cell}/kinematic/get-kinematic-configuration`.replace(`{cell}`, encodeURIComponent(String(cell)));
|
|
3727
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3728
|
+
let baseOptions;
|
|
3729
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
3730
|
+
const localVarRequestOptions = {
|
|
3731
|
+
method: "POST",
|
|
3732
|
+
...baseOptions,
|
|
3733
|
+
...options
|
|
3734
|
+
};
|
|
3735
|
+
const localVarHeaderParameter = {};
|
|
3736
|
+
const localVarQueryParameter = {};
|
|
3737
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3738
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
3739
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3740
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3741
|
+
localVarRequestOptions.headers = {
|
|
3742
|
+
...localVarHeaderParameter,
|
|
3743
|
+
...headersFromBaseOptions,
|
|
3744
|
+
...options.headers
|
|
3745
|
+
};
|
|
3746
|
+
localVarRequestOptions.data = serializeDataIfNeeded(getKinematicConfigurationRequest, localVarRequestOptions, configuration);
|
|
3747
|
+
return {
|
|
3748
|
+
url: toPathString(localVarUrlObj),
|
|
3749
|
+
options: localVarRequestOptions
|
|
3750
|
+
};
|
|
3751
|
+
},
|
|
3643
3752
|
inverseKinematics: async (cell, inverseKinematicsRequest, options = {}) => {
|
|
3644
3753
|
assertParamExists("inverseKinematics", "cell", cell);
|
|
3645
3754
|
assertParamExists("inverseKinematics", "inverseKinematicsRequest", inverseKinematicsRequest);
|
|
@@ -3724,40 +3833,49 @@ const KinematicsApiFp = function(configuration) {
|
|
|
3724
3833
|
const localVarOperationServerBasePath = operationServerMap["KinematicsApi.forwardKinematics"]?.[localVarOperationServerIndex]?.url;
|
|
3725
3834
|
return (axios$68, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$68, localVarOperationServerBasePath || basePath);
|
|
3726
3835
|
},
|
|
3836
|
+
async getKinematicConfiguration(cell, getKinematicConfigurationRequest, options) {
|
|
3837
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getKinematicConfiguration(cell, getKinematicConfigurationRequest, options);
|
|
3838
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3839
|
+
const localVarOperationServerBasePath = operationServerMap["KinematicsApi.getKinematicConfiguration"]?.[localVarOperationServerIndex]?.url;
|
|
3840
|
+
return (axios$69, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$69, localVarOperationServerBasePath || basePath);
|
|
3841
|
+
},
|
|
3727
3842
|
async inverseKinematics(cell, inverseKinematicsRequest, options) {
|
|
3728
3843
|
const localVarAxiosArgs = await localVarAxiosParamCreator.inverseKinematics(cell, inverseKinematicsRequest, options);
|
|
3729
3844
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3730
3845
|
const localVarOperationServerBasePath = operationServerMap["KinematicsApi.inverseKinematics"]?.[localVarOperationServerIndex]?.url;
|
|
3731
|
-
return (axios$
|
|
3846
|
+
return (axios$70, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$70, localVarOperationServerBasePath || basePath);
|
|
3732
3847
|
},
|
|
3733
3848
|
async projectJointPositionDirectionConstraint(cell, projectJointPositionDirectionConstraintRequest, options) {
|
|
3734
3849
|
const localVarAxiosArgs = await localVarAxiosParamCreator.projectJointPositionDirectionConstraint(cell, projectJointPositionDirectionConstraintRequest, options);
|
|
3735
3850
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3736
3851
|
const localVarOperationServerBasePath = operationServerMap["KinematicsApi.projectJointPositionDirectionConstraint"]?.[localVarOperationServerIndex]?.url;
|
|
3737
|
-
return (axios$
|
|
3852
|
+
return (axios$71, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$71, localVarOperationServerBasePath || basePath);
|
|
3738
3853
|
}
|
|
3739
3854
|
};
|
|
3740
3855
|
};
|
|
3741
3856
|
/**
|
|
3742
3857
|
* KinematicsApi - factory interface
|
|
3743
3858
|
*/
|
|
3744
|
-
const KinematicsApiFactory = function(configuration, basePath, axios$
|
|
3859
|
+
const KinematicsApiFactory = function(configuration, basePath, axios$72) {
|
|
3745
3860
|
const localVarFp = KinematicsApiFp(configuration);
|
|
3746
3861
|
return {
|
|
3747
3862
|
configuredPoseInverse(cell, configuredPoseInverseRequest, options) {
|
|
3748
|
-
return localVarFp.configuredPoseInverse(cell, configuredPoseInverseRequest, options).then((request) => request(axios$
|
|
3863
|
+
return localVarFp.configuredPoseInverse(cell, configuredPoseInverseRequest, options).then((request) => request(axios$72, basePath));
|
|
3749
3864
|
},
|
|
3750
3865
|
convertVendorConfiguredPose(cell, convertVendorConfiguredPoseRequest, options) {
|
|
3751
|
-
return localVarFp.convertVendorConfiguredPose(cell, convertVendorConfiguredPoseRequest, options).then((request) => request(axios$
|
|
3866
|
+
return localVarFp.convertVendorConfiguredPose(cell, convertVendorConfiguredPoseRequest, options).then((request) => request(axios$72, basePath));
|
|
3752
3867
|
},
|
|
3753
3868
|
forwardKinematics(cell, forwardKinematicsRequest, options) {
|
|
3754
|
-
return localVarFp.forwardKinematics(cell, forwardKinematicsRequest, options).then((request) => request(axios$
|
|
3869
|
+
return localVarFp.forwardKinematics(cell, forwardKinematicsRequest, options).then((request) => request(axios$72, basePath));
|
|
3870
|
+
},
|
|
3871
|
+
getKinematicConfiguration(cell, getKinematicConfigurationRequest, options) {
|
|
3872
|
+
return localVarFp.getKinematicConfiguration(cell, getKinematicConfigurationRequest, options).then((request) => request(axios$72, basePath));
|
|
3755
3873
|
},
|
|
3756
3874
|
inverseKinematics(cell, inverseKinematicsRequest, options) {
|
|
3757
|
-
return localVarFp.inverseKinematics(cell, inverseKinematicsRequest, options).then((request) => request(axios$
|
|
3875
|
+
return localVarFp.inverseKinematics(cell, inverseKinematicsRequest, options).then((request) => request(axios$72, basePath));
|
|
3758
3876
|
},
|
|
3759
3877
|
projectJointPositionDirectionConstraint(cell, projectJointPositionDirectionConstraintRequest, options) {
|
|
3760
|
-
return localVarFp.projectJointPositionDirectionConstraint(cell, projectJointPositionDirectionConstraintRequest, options).then((request) => request(axios$
|
|
3878
|
+
return localVarFp.projectJointPositionDirectionConstraint(cell, projectJointPositionDirectionConstraintRequest, options).then((request) => request(axios$72, basePath));
|
|
3761
3879
|
}
|
|
3762
3880
|
};
|
|
3763
3881
|
};
|
|
@@ -3799,6 +3917,17 @@ var KinematicsApi = class extends BaseAPI {
|
|
|
3799
3917
|
return KinematicsApiFp(this.configuration).forwardKinematics(cell, forwardKinematicsRequest, options).then((request) => request(this.axios, this.basePath));
|
|
3800
3918
|
}
|
|
3801
3919
|
/**
|
|
3920
|
+
* **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the kinematic configuration for each given joint position including branch and axis ranges. Supported for 6-DOF robots with spherical or offset wrist that implement kinematic branch calculation. Returns 422 with `ErrorUnsupportedOperation` for motion groups that do not support kinematic branch calculation.
|
|
3921
|
+
* @summary Get kinematic configuration
|
|
3922
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
3923
|
+
* @param {GetKinematicConfigurationRequest} getKinematicConfigurationRequest
|
|
3924
|
+
* @param {*} [options] Override http request option.
|
|
3925
|
+
* @throws {RequiredError}
|
|
3926
|
+
*/
|
|
3927
|
+
getKinematicConfiguration(cell, getKinematicConfigurationRequest, options) {
|
|
3928
|
+
return KinematicsApiFp(this.configuration).getKinematicConfiguration(cell, getKinematicConfigurationRequest, options).then((request) => request(this.axios, this.basePath));
|
|
3929
|
+
}
|
|
3930
|
+
/**
|
|
3802
3931
|
* **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the reachable joint positions for a list of given poses.
|
|
3803
3932
|
* @summary Inverse kinematics
|
|
3804
3933
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
@@ -3937,45 +4066,45 @@ const LicenseApiFp = function(configuration) {
|
|
|
3937
4066
|
const localVarAxiosArgs = await localVarAxiosParamCreator.activateLicense(activateLicenseRequest, options);
|
|
3938
4067
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3939
4068
|
const localVarOperationServerBasePath = operationServerMap["LicenseApi.activateLicense"]?.[localVarOperationServerIndex]?.url;
|
|
3940
|
-
return (axios$
|
|
4069
|
+
return (axios$73, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$73, localVarOperationServerBasePath || basePath);
|
|
3941
4070
|
},
|
|
3942
4071
|
async deactivateLicense(options) {
|
|
3943
4072
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deactivateLicense(options);
|
|
3944
4073
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3945
4074
|
const localVarOperationServerBasePath = operationServerMap["LicenseApi.deactivateLicense"]?.[localVarOperationServerIndex]?.url;
|
|
3946
|
-
return (axios$
|
|
4075
|
+
return (axios$74, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$74, localVarOperationServerBasePath || basePath);
|
|
3947
4076
|
},
|
|
3948
4077
|
async getLicense(options) {
|
|
3949
4078
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getLicense(options);
|
|
3950
4079
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3951
4080
|
const localVarOperationServerBasePath = operationServerMap["LicenseApi.getLicense"]?.[localVarOperationServerIndex]?.url;
|
|
3952
|
-
return (axios$
|
|
4081
|
+
return (axios$75, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$75, localVarOperationServerBasePath || basePath);
|
|
3953
4082
|
},
|
|
3954
4083
|
async getLicenseStatus(options) {
|
|
3955
4084
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getLicenseStatus(options);
|
|
3956
4085
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3957
4086
|
const localVarOperationServerBasePath = operationServerMap["LicenseApi.getLicenseStatus"]?.[localVarOperationServerIndex]?.url;
|
|
3958
|
-
return (axios$
|
|
4087
|
+
return (axios$76, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$76, localVarOperationServerBasePath || basePath);
|
|
3959
4088
|
}
|
|
3960
4089
|
};
|
|
3961
4090
|
};
|
|
3962
4091
|
/**
|
|
3963
4092
|
* LicenseApi - factory interface
|
|
3964
4093
|
*/
|
|
3965
|
-
const LicenseApiFactory = function(configuration, basePath, axios$
|
|
4094
|
+
const LicenseApiFactory = function(configuration, basePath, axios$77) {
|
|
3966
4095
|
const localVarFp = LicenseApiFp(configuration);
|
|
3967
4096
|
return {
|
|
3968
4097
|
activateLicense(activateLicenseRequest, options) {
|
|
3969
|
-
return localVarFp.activateLicense(activateLicenseRequest, options).then((request) => request(axios$
|
|
4098
|
+
return localVarFp.activateLicense(activateLicenseRequest, options).then((request) => request(axios$77, basePath));
|
|
3970
4099
|
},
|
|
3971
4100
|
deactivateLicense(options) {
|
|
3972
|
-
return localVarFp.deactivateLicense(options).then((request) => request(axios$
|
|
4101
|
+
return localVarFp.deactivateLicense(options).then((request) => request(axios$77, basePath));
|
|
3973
4102
|
},
|
|
3974
4103
|
getLicense(options) {
|
|
3975
|
-
return localVarFp.getLicense(options).then((request) => request(axios$
|
|
4104
|
+
return localVarFp.getLicense(options).then((request) => request(axios$77, basePath));
|
|
3976
4105
|
},
|
|
3977
4106
|
getLicenseStatus(options) {
|
|
3978
|
-
return localVarFp.getLicenseStatus(options).then((request) => request(axios$
|
|
4107
|
+
return localVarFp.getLicenseStatus(options).then((request) => request(axios$77, basePath));
|
|
3979
4108
|
}
|
|
3980
4109
|
};
|
|
3981
4110
|
};
|
|
@@ -4125,36 +4254,36 @@ const MotionGroupApiFp = function(configuration) {
|
|
|
4125
4254
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getCurrentMotionGroupState(cell, controller, motionGroup, responseCoordinateSystem, options);
|
|
4126
4255
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4127
4256
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupApi.getCurrentMotionGroupState"]?.[localVarOperationServerIndex]?.url;
|
|
4128
|
-
return (axios$
|
|
4257
|
+
return (axios$78, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$78, localVarOperationServerBasePath || basePath);
|
|
4129
4258
|
},
|
|
4130
4259
|
async getMotionGroupDescription(cell, controller, motionGroup, options) {
|
|
4131
4260
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupDescription(cell, controller, motionGroup, options);
|
|
4132
4261
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4133
4262
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupApi.getMotionGroupDescription"]?.[localVarOperationServerIndex]?.url;
|
|
4134
|
-
return (axios$
|
|
4263
|
+
return (axios$79, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$79, localVarOperationServerBasePath || basePath);
|
|
4135
4264
|
},
|
|
4136
4265
|
async streamMotionGroupState(cell, controller, motionGroup, responseRate, responseCoordinateSystem, options) {
|
|
4137
4266
|
const localVarAxiosArgs = await localVarAxiosParamCreator.streamMotionGroupState(cell, controller, motionGroup, responseRate, responseCoordinateSystem, options);
|
|
4138
4267
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4139
4268
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupApi.streamMotionGroupState"]?.[localVarOperationServerIndex]?.url;
|
|
4140
|
-
return (axios$
|
|
4269
|
+
return (axios$80, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$80, localVarOperationServerBasePath || basePath);
|
|
4141
4270
|
}
|
|
4142
4271
|
};
|
|
4143
4272
|
};
|
|
4144
4273
|
/**
|
|
4145
4274
|
* MotionGroupApi - factory interface
|
|
4146
4275
|
*/
|
|
4147
|
-
const MotionGroupApiFactory = function(configuration, basePath, axios$
|
|
4276
|
+
const MotionGroupApiFactory = function(configuration, basePath, axios$81) {
|
|
4148
4277
|
const localVarFp = MotionGroupApiFp(configuration);
|
|
4149
4278
|
return {
|
|
4150
4279
|
getCurrentMotionGroupState(cell, controller, motionGroup, responseCoordinateSystem, options) {
|
|
4151
|
-
return localVarFp.getCurrentMotionGroupState(cell, controller, motionGroup, responseCoordinateSystem, options).then((request) => request(axios$
|
|
4280
|
+
return localVarFp.getCurrentMotionGroupState(cell, controller, motionGroup, responseCoordinateSystem, options).then((request) => request(axios$81, basePath));
|
|
4152
4281
|
},
|
|
4153
4282
|
getMotionGroupDescription(cell, controller, motionGroup, options) {
|
|
4154
|
-
return localVarFp.getMotionGroupDescription(cell, controller, motionGroup, options).then((request) => request(axios$
|
|
4283
|
+
return localVarFp.getMotionGroupDescription(cell, controller, motionGroup, options).then((request) => request(axios$81, basePath));
|
|
4155
4284
|
},
|
|
4156
4285
|
streamMotionGroupState(cell, controller, motionGroup, responseRate, responseCoordinateSystem, options) {
|
|
4157
|
-
return localVarFp.streamMotionGroupState(cell, controller, motionGroup, responseRate, responseCoordinateSystem, options).then((request) => request(axios$
|
|
4286
|
+
return localVarFp.streamMotionGroupState(cell, controller, motionGroup, responseRate, responseCoordinateSystem, options).then((request) => request(axios$81, basePath));
|
|
4158
4287
|
}
|
|
4159
4288
|
};
|
|
4160
4289
|
};
|
|
@@ -4210,7 +4339,7 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
|
|
|
4210
4339
|
copyMotionGroupModel: async (motionGroupModel, copyMotionGroupModelRequest, options = {}) => {
|
|
4211
4340
|
assertParamExists("copyMotionGroupModel", "motionGroupModel", motionGroupModel);
|
|
4212
4341
|
assertParamExists("copyMotionGroupModel", "copyMotionGroupModelRequest", copyMotionGroupModelRequest);
|
|
4213
|
-
const localVarPath = `/experimental/motion-group-models/{motion-group-model}`.replace(`{motion-group-model}`, encodeURIComponent(String(motionGroupModel)));
|
|
4342
|
+
const localVarPath = `/experimental/motion-group-models/{motion-group-model}/archive`.replace(`{motion-group-model}`, encodeURIComponent(String(motionGroupModel)));
|
|
4214
4343
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4215
4344
|
let baseOptions;
|
|
4216
4345
|
if (configuration) baseOptions = configuration.baseOptions;
|
|
@@ -4238,7 +4367,7 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
|
|
|
4238
4367
|
},
|
|
4239
4368
|
deleteExperimentalMotionGroupModel: async (motionGroupModel, options = {}) => {
|
|
4240
4369
|
assertParamExists("deleteExperimentalMotionGroupModel", "motionGroupModel", motionGroupModel);
|
|
4241
|
-
const localVarPath = `/experimental/motion-group-models/{motion-group-model}`.replace(`{motion-group-model}`, encodeURIComponent(String(motionGroupModel)));
|
|
4370
|
+
const localVarPath = `/experimental/motion-group-models/{motion-group-model}/archive`.replace(`{motion-group-model}`, encodeURIComponent(String(motionGroupModel)));
|
|
4242
4371
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4243
4372
|
let baseOptions;
|
|
4244
4373
|
if (configuration) baseOptions = configuration.baseOptions;
|
|
@@ -4264,7 +4393,33 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
|
|
|
4264
4393
|
},
|
|
4265
4394
|
exportMotionGroupModel: async (motionGroupModel, options = {}) => {
|
|
4266
4395
|
assertParamExists("exportMotionGroupModel", "motionGroupModel", motionGroupModel);
|
|
4267
|
-
const localVarPath = `/experimental/motion-group-models/{motion-group-model}`.replace(`{motion-group-model}`, encodeURIComponent(String(motionGroupModel)));
|
|
4396
|
+
const localVarPath = `/experimental/motion-group-models/{motion-group-model}/archive`.replace(`{motion-group-model}`, encodeURIComponent(String(motionGroupModel)));
|
|
4397
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4398
|
+
let baseOptions;
|
|
4399
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
4400
|
+
const localVarRequestOptions = {
|
|
4401
|
+
method: "GET",
|
|
4402
|
+
...baseOptions,
|
|
4403
|
+
...options
|
|
4404
|
+
};
|
|
4405
|
+
const localVarHeaderParameter = {};
|
|
4406
|
+
const localVarQueryParameter = {};
|
|
4407
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
4408
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4409
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4410
|
+
localVarRequestOptions.headers = {
|
|
4411
|
+
...localVarHeaderParameter,
|
|
4412
|
+
...headersFromBaseOptions,
|
|
4413
|
+
...options.headers
|
|
4414
|
+
};
|
|
4415
|
+
return {
|
|
4416
|
+
url: toPathString(localVarUrlObj),
|
|
4417
|
+
options: localVarRequestOptions
|
|
4418
|
+
};
|
|
4419
|
+
},
|
|
4420
|
+
getConfigurationForMotionGroup: async (motionGroupModel, options = {}) => {
|
|
4421
|
+
assertParamExists("getConfigurationForMotionGroup", "motionGroupModel", motionGroupModel);
|
|
4422
|
+
const localVarPath = `/motion-group-models/{motion-group-model}/configuration`.replace(`{motion-group-model}`, encodeURIComponent(String(motionGroupModel)));
|
|
4268
4423
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4269
4424
|
let baseOptions;
|
|
4270
4425
|
if (configuration) baseOptions = configuration.baseOptions;
|
|
@@ -4468,6 +4623,30 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
|
|
|
4468
4623
|
options: localVarRequestOptions
|
|
4469
4624
|
};
|
|
4470
4625
|
},
|
|
4626
|
+
getMotionGroupModelsCatalog: async (options = {}) => {
|
|
4627
|
+
const localVarUrlObj = new URL(`/experimental/motion-group-models/catalog`, DUMMY_BASE_URL);
|
|
4628
|
+
let baseOptions;
|
|
4629
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
4630
|
+
const localVarRequestOptions = {
|
|
4631
|
+
method: "GET",
|
|
4632
|
+
...baseOptions,
|
|
4633
|
+
...options
|
|
4634
|
+
};
|
|
4635
|
+
const localVarHeaderParameter = {};
|
|
4636
|
+
const localVarQueryParameter = {};
|
|
4637
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
4638
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4639
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4640
|
+
localVarRequestOptions.headers = {
|
|
4641
|
+
...localVarHeaderParameter,
|
|
4642
|
+
...headersFromBaseOptions,
|
|
4643
|
+
...options.headers
|
|
4644
|
+
};
|
|
4645
|
+
return {
|
|
4646
|
+
url: toPathString(localVarUrlObj),
|
|
4647
|
+
options: localVarRequestOptions
|
|
4648
|
+
};
|
|
4649
|
+
},
|
|
4471
4650
|
getMotionGroupUsdModel: async (motionGroupModel, options = {}) => {
|
|
4472
4651
|
assertParamExists("getMotionGroupUsdModel", "motionGroupModel", motionGroupModel);
|
|
4473
4652
|
const localVarPath = `/motion-group-models/{motion-group-model}/usd`.replace(`{motion-group-model}`, encodeURIComponent(String(motionGroupModel)));
|
|
@@ -4533,117 +4712,135 @@ const MotionGroupModelsApiFp = function(configuration) {
|
|
|
4533
4712
|
const localVarAxiosArgs = await localVarAxiosParamCreator.copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options);
|
|
4534
4713
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4535
4714
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.copyMotionGroupModel"]?.[localVarOperationServerIndex]?.url;
|
|
4536
|
-
return (axios$
|
|
4715
|
+
return (axios$82, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$82, localVarOperationServerBasePath || basePath);
|
|
4537
4716
|
},
|
|
4538
4717
|
async deleteExperimentalMotionGroupModel(motionGroupModel, options) {
|
|
4539
4718
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteExperimentalMotionGroupModel(motionGroupModel, options);
|
|
4540
4719
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4541
4720
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.deleteExperimentalMotionGroupModel"]?.[localVarOperationServerIndex]?.url;
|
|
4542
|
-
return (axios$
|
|
4721
|
+
return (axios$83, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$83, localVarOperationServerBasePath || basePath);
|
|
4543
4722
|
},
|
|
4544
4723
|
async exportMotionGroupModel(motionGroupModel, options) {
|
|
4545
4724
|
const localVarAxiosArgs = await localVarAxiosParamCreator.exportMotionGroupModel(motionGroupModel, options);
|
|
4546
4725
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4547
4726
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.exportMotionGroupModel"]?.[localVarOperationServerIndex]?.url;
|
|
4548
|
-
return (axios$
|
|
4727
|
+
return (axios$84, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$84, localVarOperationServerBasePath || basePath);
|
|
4728
|
+
},
|
|
4729
|
+
async getConfigurationForMotionGroup(motionGroupModel, options) {
|
|
4730
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getConfigurationForMotionGroup(motionGroupModel, options);
|
|
4731
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4732
|
+
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getConfigurationForMotionGroup"]?.[localVarOperationServerIndex]?.url;
|
|
4733
|
+
return (axios$85, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$85, localVarOperationServerBasePath || basePath);
|
|
4549
4734
|
},
|
|
4550
4735
|
async getMotionGroupCollisionModel(motionGroupModel, options) {
|
|
4551
4736
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupCollisionModel(motionGroupModel, options);
|
|
4552
4737
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4553
4738
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupCollisionModel"]?.[localVarOperationServerIndex]?.url;
|
|
4554
|
-
return (axios$
|
|
4739
|
+
return (axios$86, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$86, localVarOperationServerBasePath || basePath);
|
|
4555
4740
|
},
|
|
4556
4741
|
async getMotionGroupDynamicModel(motionGroupModel, options) {
|
|
4557
4742
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupDynamicModel(motionGroupModel, options);
|
|
4558
4743
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4559
4744
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupDynamicModel"]?.[localVarOperationServerIndex]?.url;
|
|
4560
|
-
return (axios$
|
|
4745
|
+
return (axios$87, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$87, localVarOperationServerBasePath || basePath);
|
|
4561
4746
|
},
|
|
4562
4747
|
async getMotionGroupGlbModel(motionGroupModel, options) {
|
|
4563
4748
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupGlbModel(motionGroupModel, options);
|
|
4564
4749
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4565
4750
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupGlbModel"]?.[localVarOperationServerIndex]?.url;
|
|
4566
|
-
return (axios$
|
|
4751
|
+
return (axios$88, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$88, localVarOperationServerBasePath || basePath);
|
|
4567
4752
|
},
|
|
4568
4753
|
async getMotionGroupHomejoints(motionGroupModel, options) {
|
|
4569
4754
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupHomejoints(motionGroupModel, options);
|
|
4570
4755
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4571
4756
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupHomejoints"]?.[localVarOperationServerIndex]?.url;
|
|
4572
|
-
return (axios$
|
|
4757
|
+
return (axios$89, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$89, localVarOperationServerBasePath || basePath);
|
|
4573
4758
|
},
|
|
4574
4759
|
async getMotionGroupKinematicModel(motionGroupModel, options) {
|
|
4575
4760
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupKinematicModel(motionGroupModel, options);
|
|
4576
4761
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4577
4762
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupKinematicModel"]?.[localVarOperationServerIndex]?.url;
|
|
4578
|
-
return (axios$
|
|
4763
|
+
return (axios$90, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$90, localVarOperationServerBasePath || basePath);
|
|
4579
4764
|
},
|
|
4580
4765
|
async getMotionGroupLimitModel(motionGroupModel, options) {
|
|
4581
4766
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupLimitModel(motionGroupModel, options);
|
|
4582
4767
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4583
4768
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupLimitModel"]?.[localVarOperationServerIndex]?.url;
|
|
4584
|
-
return (axios$
|
|
4769
|
+
return (axios$91, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$91, localVarOperationServerBasePath || basePath);
|
|
4585
4770
|
},
|
|
4586
4771
|
async getMotionGroupModels(options) {
|
|
4587
4772
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupModels(options);
|
|
4588
4773
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4589
4774
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupModels"]?.[localVarOperationServerIndex]?.url;
|
|
4590
|
-
return (axios$
|
|
4775
|
+
return (axios$92, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$92, localVarOperationServerBasePath || basePath);
|
|
4776
|
+
},
|
|
4777
|
+
async getMotionGroupModelsCatalog(options) {
|
|
4778
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupModelsCatalog(options);
|
|
4779
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4780
|
+
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupModelsCatalog"]?.[localVarOperationServerIndex]?.url;
|
|
4781
|
+
return (axios$93, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$93, localVarOperationServerBasePath || basePath);
|
|
4591
4782
|
},
|
|
4592
4783
|
async getMotionGroupUsdModel(motionGroupModel, options) {
|
|
4593
4784
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupUsdModel(motionGroupModel, options);
|
|
4594
4785
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4595
4786
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupUsdModel"]?.[localVarOperationServerIndex]?.url;
|
|
4596
|
-
return (axios$
|
|
4787
|
+
return (axios$94, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$94, localVarOperationServerBasePath || basePath);
|
|
4597
4788
|
},
|
|
4598
4789
|
async importMotionGroupModel(body, options) {
|
|
4599
4790
|
const localVarAxiosArgs = await localVarAxiosParamCreator.importMotionGroupModel(body, options);
|
|
4600
4791
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4601
4792
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.importMotionGroupModel"]?.[localVarOperationServerIndex]?.url;
|
|
4602
|
-
return (axios$
|
|
4793
|
+
return (axios$95, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$95, localVarOperationServerBasePath || basePath);
|
|
4603
4794
|
}
|
|
4604
4795
|
};
|
|
4605
4796
|
};
|
|
4606
4797
|
/**
|
|
4607
4798
|
* MotionGroupModelsApi - factory interface
|
|
4608
4799
|
*/
|
|
4609
|
-
const MotionGroupModelsApiFactory = function(configuration, basePath, axios$
|
|
4800
|
+
const MotionGroupModelsApiFactory = function(configuration, basePath, axios$96) {
|
|
4610
4801
|
const localVarFp = MotionGroupModelsApiFp(configuration);
|
|
4611
4802
|
return {
|
|
4612
4803
|
copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options) {
|
|
4613
|
-
return localVarFp.copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options).then((request) => request(axios$
|
|
4804
|
+
return localVarFp.copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options).then((request) => request(axios$96, basePath));
|
|
4614
4805
|
},
|
|
4615
4806
|
deleteExperimentalMotionGroupModel(motionGroupModel, options) {
|
|
4616
|
-
return localVarFp.deleteExperimentalMotionGroupModel(motionGroupModel, options).then((request) => request(axios$
|
|
4807
|
+
return localVarFp.deleteExperimentalMotionGroupModel(motionGroupModel, options).then((request) => request(axios$96, basePath));
|
|
4617
4808
|
},
|
|
4618
4809
|
exportMotionGroupModel(motionGroupModel, options) {
|
|
4619
|
-
return localVarFp.exportMotionGroupModel(motionGroupModel, options).then((request) => request(axios$
|
|
4810
|
+
return localVarFp.exportMotionGroupModel(motionGroupModel, options).then((request) => request(axios$96, basePath));
|
|
4811
|
+
},
|
|
4812
|
+
getConfigurationForMotionGroup(motionGroupModel, options) {
|
|
4813
|
+
return localVarFp.getConfigurationForMotionGroup(motionGroupModel, options).then((request) => request(axios$96, basePath));
|
|
4620
4814
|
},
|
|
4621
4815
|
getMotionGroupCollisionModel(motionGroupModel, options) {
|
|
4622
|
-
return localVarFp.getMotionGroupCollisionModel(motionGroupModel, options).then((request) => request(axios$
|
|
4816
|
+
return localVarFp.getMotionGroupCollisionModel(motionGroupModel, options).then((request) => request(axios$96, basePath));
|
|
4623
4817
|
},
|
|
4624
4818
|
getMotionGroupDynamicModel(motionGroupModel, options) {
|
|
4625
|
-
return localVarFp.getMotionGroupDynamicModel(motionGroupModel, options).then((request) => request(axios$
|
|
4819
|
+
return localVarFp.getMotionGroupDynamicModel(motionGroupModel, options).then((request) => request(axios$96, basePath));
|
|
4626
4820
|
},
|
|
4627
4821
|
getMotionGroupGlbModel(motionGroupModel, options) {
|
|
4628
|
-
return localVarFp.getMotionGroupGlbModel(motionGroupModel, options).then((request) => request(axios$
|
|
4822
|
+
return localVarFp.getMotionGroupGlbModel(motionGroupModel, options).then((request) => request(axios$96, basePath));
|
|
4629
4823
|
},
|
|
4630
4824
|
getMotionGroupHomejoints(motionGroupModel, options) {
|
|
4631
|
-
return localVarFp.getMotionGroupHomejoints(motionGroupModel, options).then((request) => request(axios$
|
|
4825
|
+
return localVarFp.getMotionGroupHomejoints(motionGroupModel, options).then((request) => request(axios$96, basePath));
|
|
4632
4826
|
},
|
|
4633
4827
|
getMotionGroupKinematicModel(motionGroupModel, options) {
|
|
4634
|
-
return localVarFp.getMotionGroupKinematicModel(motionGroupModel, options).then((request) => request(axios$
|
|
4828
|
+
return localVarFp.getMotionGroupKinematicModel(motionGroupModel, options).then((request) => request(axios$96, basePath));
|
|
4635
4829
|
},
|
|
4636
4830
|
getMotionGroupLimitModel(motionGroupModel, options) {
|
|
4637
|
-
return localVarFp.getMotionGroupLimitModel(motionGroupModel, options).then((request) => request(axios$
|
|
4831
|
+
return localVarFp.getMotionGroupLimitModel(motionGroupModel, options).then((request) => request(axios$96, basePath));
|
|
4638
4832
|
},
|
|
4639
4833
|
getMotionGroupModels(options) {
|
|
4640
|
-
return localVarFp.getMotionGroupModels(options).then((request) => request(axios$
|
|
4834
|
+
return localVarFp.getMotionGroupModels(options).then((request) => request(axios$96, basePath));
|
|
4835
|
+
},
|
|
4836
|
+
getMotionGroupModelsCatalog(options) {
|
|
4837
|
+
return localVarFp.getMotionGroupModelsCatalog(options).then((request) => request(axios$96, basePath));
|
|
4641
4838
|
},
|
|
4642
4839
|
getMotionGroupUsdModel(motionGroupModel, options) {
|
|
4643
|
-
return localVarFp.getMotionGroupUsdModel(motionGroupModel, options).then((request) => request(axios$
|
|
4840
|
+
return localVarFp.getMotionGroupUsdModel(motionGroupModel, options).then((request) => request(axios$96, basePath));
|
|
4644
4841
|
},
|
|
4645
4842
|
importMotionGroupModel(body, options) {
|
|
4646
|
-
return localVarFp.importMotionGroupModel(body, options).then((request) => request(axios$
|
|
4843
|
+
return localVarFp.importMotionGroupModel(body, options).then((request) => request(axios$96, basePath));
|
|
4647
4844
|
}
|
|
4648
4845
|
};
|
|
4649
4846
|
};
|
|
@@ -4663,7 +4860,7 @@ var MotionGroupModelsApi = class extends BaseAPI {
|
|
|
4663
4860
|
return MotionGroupModelsApiFp(this.configuration).copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options).then((request) => request(this.axios, this.basePath));
|
|
4664
4861
|
}
|
|
4665
4862
|
/**
|
|
4666
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models
|
|
4863
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models, where `is_custom` is `true`, can be deleted. Built-in base models cannot be removed.
|
|
4667
4864
|
* @summary Delete Motion Group Model
|
|
4668
4865
|
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
|
|
4669
4866
|
* @param {*} [options] Override http request option.
|
|
@@ -4683,6 +4880,16 @@ var MotionGroupModelsApi = class extends BaseAPI {
|
|
|
4683
4880
|
return MotionGroupModelsApiFp(this.configuration).exportMotionGroupModel(motionGroupModel, options).then((request) => request(this.axios, this.basePath));
|
|
4684
4881
|
}
|
|
4685
4882
|
/**
|
|
4883
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Get a robot configuration containing the specified motion group model. This endpoint is designed for Virtual Robot to dynamically add motion groups by model name without needing to know the robot configuration name. Returns the full GCI transcript along with the motion group UID that corresponds to the requested motion group model.
|
|
4884
|
+
* @summary Get Configuration for Motion Group
|
|
4885
|
+
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
|
|
4886
|
+
* @param {*} [options] Override http request option.
|
|
4887
|
+
* @throws {RequiredError}
|
|
4888
|
+
*/
|
|
4889
|
+
getConfigurationForMotionGroup(motionGroupModel, options) {
|
|
4890
|
+
return MotionGroupModelsApiFp(this.configuration).getConfigurationForMotionGroup(motionGroupModel, options).then((request) => request(this.axios, this.basePath));
|
|
4891
|
+
}
|
|
4892
|
+
/**
|
|
4686
4893
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the default collision link chain for a given motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported motion group models. The default link chain is derived from 3D models and optimized for collision detection within NOVA. The default link chain includes link shapes only. It does not include any attached components like wire feeders or sensors. Attach additional shapes to the link reference frames by extending the link dictionaries before further use. Additional shapes may overlap each other per link and may also overlap the respective link\'s default shape.
|
|
4687
4894
|
* @summary Get Collision Model
|
|
4688
4895
|
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
|
|
@@ -4752,6 +4959,15 @@ var MotionGroupModelsApi = class extends BaseAPI {
|
|
|
4752
4959
|
return MotionGroupModelsApiFp(this.configuration).getMotionGroupModels(options).then((request) => request(this.axios, this.basePath));
|
|
4753
4960
|
}
|
|
4754
4961
|
/**
|
|
4962
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the catalog of all motion groups with their motion group names and readable names.
|
|
4963
|
+
* @summary Motion Group Model Catalog
|
|
4964
|
+
* @param {*} [options] Override http request option.
|
|
4965
|
+
* @throws {RequiredError}
|
|
4966
|
+
*/
|
|
4967
|
+
getMotionGroupModelsCatalog(options) {
|
|
4968
|
+
return MotionGroupModelsApiFp(this.configuration).getMotionGroupModelsCatalog(options).then((request) => request(this.axios, this.basePath));
|
|
4969
|
+
}
|
|
4970
|
+
/**
|
|
4755
4971
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the USD scene model for the specified motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported identifiers.
|
|
4756
4972
|
* @summary Download USD Model
|
|
4757
4973
|
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
|
|
@@ -4829,6 +5045,30 @@ const NOVACloudApiAxiosParamCreator = function(configuration) {
|
|
|
4829
5045
|
options: localVarRequestOptions
|
|
4830
5046
|
};
|
|
4831
5047
|
},
|
|
5048
|
+
getCloudStatus: async (options = {}) => {
|
|
5049
|
+
const localVarUrlObj = new URL(`/experimental/cloud/status`, DUMMY_BASE_URL);
|
|
5050
|
+
let baseOptions;
|
|
5051
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
5052
|
+
const localVarRequestOptions = {
|
|
5053
|
+
method: "GET",
|
|
5054
|
+
...baseOptions,
|
|
5055
|
+
...options
|
|
5056
|
+
};
|
|
5057
|
+
const localVarHeaderParameter = {};
|
|
5058
|
+
const localVarQueryParameter = {};
|
|
5059
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
5060
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5061
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5062
|
+
localVarRequestOptions.headers = {
|
|
5063
|
+
...localVarHeaderParameter,
|
|
5064
|
+
...headersFromBaseOptions,
|
|
5065
|
+
...options.headers
|
|
5066
|
+
};
|
|
5067
|
+
return {
|
|
5068
|
+
url: toPathString(localVarUrlObj),
|
|
5069
|
+
options: localVarRequestOptions
|
|
5070
|
+
};
|
|
5071
|
+
},
|
|
4832
5072
|
getNovaCloudConfig: async (options = {}) => {
|
|
4833
5073
|
const localVarUrlObj = new URL(`/experimental/cloud/config`, DUMMY_BASE_URL);
|
|
4834
5074
|
let baseOptions;
|
|
@@ -4865,36 +5105,45 @@ const NOVACloudApiFp = function(configuration) {
|
|
|
4865
5105
|
const localVarAxiosArgs = await localVarAxiosParamCreator.connectToNovaCloud(completionTimeout, cloudConnectionRequest, options);
|
|
4866
5106
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4867
5107
|
const localVarOperationServerBasePath = operationServerMap["NOVACloudApi.connectToNovaCloud"]?.[localVarOperationServerIndex]?.url;
|
|
4868
|
-
return (axios$
|
|
5108
|
+
return (axios$97, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$97, localVarOperationServerBasePath || basePath);
|
|
4869
5109
|
},
|
|
4870
5110
|
async disconnectFromNovaCloud(completionTimeout, options) {
|
|
4871
5111
|
const localVarAxiosArgs = await localVarAxiosParamCreator.disconnectFromNovaCloud(completionTimeout, options);
|
|
4872
5112
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4873
5113
|
const localVarOperationServerBasePath = operationServerMap["NOVACloudApi.disconnectFromNovaCloud"]?.[localVarOperationServerIndex]?.url;
|
|
4874
|
-
return (axios$
|
|
5114
|
+
return (axios$98, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$98, localVarOperationServerBasePath || basePath);
|
|
5115
|
+
},
|
|
5116
|
+
async getCloudStatus(options) {
|
|
5117
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getCloudStatus(options);
|
|
5118
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5119
|
+
const localVarOperationServerBasePath = operationServerMap["NOVACloudApi.getCloudStatus"]?.[localVarOperationServerIndex]?.url;
|
|
5120
|
+
return (axios$99, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$99, localVarOperationServerBasePath || basePath);
|
|
4875
5121
|
},
|
|
4876
5122
|
async getNovaCloudConfig(options) {
|
|
4877
5123
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getNovaCloudConfig(options);
|
|
4878
5124
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4879
5125
|
const localVarOperationServerBasePath = operationServerMap["NOVACloudApi.getNovaCloudConfig"]?.[localVarOperationServerIndex]?.url;
|
|
4880
|
-
return (axios$
|
|
5126
|
+
return (axios$100, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$100, localVarOperationServerBasePath || basePath);
|
|
4881
5127
|
}
|
|
4882
5128
|
};
|
|
4883
5129
|
};
|
|
4884
5130
|
/**
|
|
4885
5131
|
* NOVACloudApi - factory interface
|
|
4886
5132
|
*/
|
|
4887
|
-
const NOVACloudApiFactory = function(configuration, basePath, axios$
|
|
5133
|
+
const NOVACloudApiFactory = function(configuration, basePath, axios$101) {
|
|
4888
5134
|
const localVarFp = NOVACloudApiFp(configuration);
|
|
4889
5135
|
return {
|
|
4890
5136
|
connectToNovaCloud(completionTimeout, cloudConnectionRequest, options) {
|
|
4891
|
-
return localVarFp.connectToNovaCloud(completionTimeout, cloudConnectionRequest, options).then((request) => request(axios$
|
|
5137
|
+
return localVarFp.connectToNovaCloud(completionTimeout, cloudConnectionRequest, options).then((request) => request(axios$101, basePath));
|
|
4892
5138
|
},
|
|
4893
5139
|
disconnectFromNovaCloud(completionTimeout, options) {
|
|
4894
|
-
return localVarFp.disconnectFromNovaCloud(completionTimeout, options).then((request) => request(axios$
|
|
5140
|
+
return localVarFp.disconnectFromNovaCloud(completionTimeout, options).then((request) => request(axios$101, basePath));
|
|
5141
|
+
},
|
|
5142
|
+
getCloudStatus(options) {
|
|
5143
|
+
return localVarFp.getCloudStatus(options).then((request) => request(axios$101, basePath));
|
|
4895
5144
|
},
|
|
4896
5145
|
getNovaCloudConfig(options) {
|
|
4897
|
-
return localVarFp.getNovaCloudConfig(options).then((request) => request(axios$
|
|
5146
|
+
return localVarFp.getNovaCloudConfig(options).then((request) => request(axios$101, basePath));
|
|
4898
5147
|
}
|
|
4899
5148
|
};
|
|
4900
5149
|
};
|
|
@@ -4924,6 +5173,15 @@ var NOVACloudApi = class extends BaseAPI {
|
|
|
4924
5173
|
return NOVACloudApiFp(this.configuration).disconnectFromNovaCloud(completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
4925
5174
|
}
|
|
4926
5175
|
/**
|
|
5176
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection status for this instance, including whether the configured cloud deployment is currently reachable.
|
|
5177
|
+
* @summary Get Connection Status
|
|
5178
|
+
* @param {*} [options] Override http request option.
|
|
5179
|
+
* @throws {RequiredError}
|
|
5180
|
+
*/
|
|
5181
|
+
getCloudStatus(options) {
|
|
5182
|
+
return NOVACloudApiFp(this.configuration).getCloudStatus(options).then((request) => request(this.axios, this.basePath));
|
|
5183
|
+
}
|
|
5184
|
+
/**
|
|
4927
5185
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection config for this instance.
|
|
4928
5186
|
* @summary Get Connection Config
|
|
4929
5187
|
* @param {*} [options] Override http request option.
|
|
@@ -5060,45 +5318,45 @@ const ProgramApiFp = function(configuration) {
|
|
|
5060
5318
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getProgram(cell, program, options);
|
|
5061
5319
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5062
5320
|
const localVarOperationServerBasePath = operationServerMap["ProgramApi.getProgram"]?.[localVarOperationServerIndex]?.url;
|
|
5063
|
-
return (axios$
|
|
5321
|
+
return (axios$102, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$102, localVarOperationServerBasePath || basePath);
|
|
5064
5322
|
},
|
|
5065
5323
|
async listPrograms(cell, options) {
|
|
5066
5324
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listPrograms(cell, options);
|
|
5067
5325
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5068
5326
|
const localVarOperationServerBasePath = operationServerMap["ProgramApi.listPrograms"]?.[localVarOperationServerIndex]?.url;
|
|
5069
|
-
return (axios$
|
|
5327
|
+
return (axios$103, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$103, localVarOperationServerBasePath || basePath);
|
|
5070
5328
|
},
|
|
5071
5329
|
async startProgram(cell, program, programStartRequest, options) {
|
|
5072
5330
|
const localVarAxiosArgs = await localVarAxiosParamCreator.startProgram(cell, program, programStartRequest, options);
|
|
5073
5331
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5074
5332
|
const localVarOperationServerBasePath = operationServerMap["ProgramApi.startProgram"]?.[localVarOperationServerIndex]?.url;
|
|
5075
|
-
return (axios$
|
|
5333
|
+
return (axios$104, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$104, localVarOperationServerBasePath || basePath);
|
|
5076
5334
|
},
|
|
5077
5335
|
async stopProgram(cell, program, options) {
|
|
5078
5336
|
const localVarAxiosArgs = await localVarAxiosParamCreator.stopProgram(cell, program, options);
|
|
5079
5337
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5080
5338
|
const localVarOperationServerBasePath = operationServerMap["ProgramApi.stopProgram"]?.[localVarOperationServerIndex]?.url;
|
|
5081
|
-
return (axios$
|
|
5339
|
+
return (axios$105, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$105, localVarOperationServerBasePath || basePath);
|
|
5082
5340
|
}
|
|
5083
5341
|
};
|
|
5084
5342
|
};
|
|
5085
5343
|
/**
|
|
5086
5344
|
* ProgramApi - factory interface
|
|
5087
5345
|
*/
|
|
5088
|
-
const ProgramApiFactory = function(configuration, basePath, axios$
|
|
5346
|
+
const ProgramApiFactory = function(configuration, basePath, axios$106) {
|
|
5089
5347
|
const localVarFp = ProgramApiFp(configuration);
|
|
5090
5348
|
return {
|
|
5091
5349
|
getProgram(cell, program, options) {
|
|
5092
|
-
return localVarFp.getProgram(cell, program, options).then((request) => request(axios$
|
|
5350
|
+
return localVarFp.getProgram(cell, program, options).then((request) => request(axios$106, basePath));
|
|
5093
5351
|
},
|
|
5094
5352
|
listPrograms(cell, options) {
|
|
5095
|
-
return localVarFp.listPrograms(cell, options).then((request) => request(axios$
|
|
5353
|
+
return localVarFp.listPrograms(cell, options).then((request) => request(axios$106, basePath));
|
|
5096
5354
|
},
|
|
5097
5355
|
startProgram(cell, program, programStartRequest, options) {
|
|
5098
|
-
return localVarFp.startProgram(cell, program, programStartRequest, options).then((request) => request(axios$
|
|
5356
|
+
return localVarFp.startProgram(cell, program, programStartRequest, options).then((request) => request(axios$106, basePath));
|
|
5099
5357
|
},
|
|
5100
5358
|
stopProgram(cell, program, options) {
|
|
5101
|
-
return localVarFp.stopProgram(cell, program, options).then((request) => request(axios$
|
|
5359
|
+
return localVarFp.stopProgram(cell, program, options).then((request) => request(axios$106, basePath));
|
|
5102
5360
|
}
|
|
5103
5361
|
};
|
|
5104
5362
|
};
|
|
@@ -5219,27 +5477,27 @@ const RobotConfigurationsApiFp = function(configuration) {
|
|
|
5219
5477
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getControllerConfigFromArpScan(robotControllerConfigurationRequest, options);
|
|
5220
5478
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5221
5479
|
const localVarOperationServerBasePath = operationServerMap["RobotConfigurationsApi.getControllerConfigFromArpScan"]?.[localVarOperationServerIndex]?.url;
|
|
5222
|
-
return (axios$
|
|
5480
|
+
return (axios$107, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$107, localVarOperationServerBasePath || basePath);
|
|
5223
5481
|
},
|
|
5224
5482
|
async getRobotConfigurations(options) {
|
|
5225
5483
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getRobotConfigurations(options);
|
|
5226
5484
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5227
5485
|
const localVarOperationServerBasePath = operationServerMap["RobotConfigurationsApi.getRobotConfigurations"]?.[localVarOperationServerIndex]?.url;
|
|
5228
|
-
return (axios$
|
|
5486
|
+
return (axios$108, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$108, localVarOperationServerBasePath || basePath);
|
|
5229
5487
|
}
|
|
5230
5488
|
};
|
|
5231
5489
|
};
|
|
5232
5490
|
/**
|
|
5233
5491
|
* RobotConfigurationsApi - factory interface
|
|
5234
5492
|
*/
|
|
5235
|
-
const RobotConfigurationsApiFactory = function(configuration, basePath, axios$
|
|
5493
|
+
const RobotConfigurationsApiFactory = function(configuration, basePath, axios$109) {
|
|
5236
5494
|
const localVarFp = RobotConfigurationsApiFp(configuration);
|
|
5237
5495
|
return {
|
|
5238
5496
|
getControllerConfigFromArpScan(robotControllerConfigurationRequest, options) {
|
|
5239
|
-
return localVarFp.getControllerConfigFromArpScan(robotControllerConfigurationRequest, options).then((request) => request(axios$
|
|
5497
|
+
return localVarFp.getControllerConfigFromArpScan(robotControllerConfigurationRequest, options).then((request) => request(axios$109, basePath));
|
|
5240
5498
|
},
|
|
5241
5499
|
getRobotConfigurations(options) {
|
|
5242
|
-
return localVarFp.getRobotConfigurations(options).then((request) => request(axios$
|
|
5500
|
+
return localVarFp.getRobotConfigurations(options).then((request) => request(axios$109, basePath));
|
|
5243
5501
|
}
|
|
5244
5502
|
};
|
|
5245
5503
|
};
|
|
@@ -5305,16 +5563,16 @@ const SessionApiFp = function(configuration) {
|
|
|
5305
5563
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getSession(options);
|
|
5306
5564
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5307
5565
|
const localVarOperationServerBasePath = operationServerMap["SessionApi.getSession"]?.[localVarOperationServerIndex]?.url;
|
|
5308
|
-
return (axios$
|
|
5566
|
+
return (axios$110, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$110, localVarOperationServerBasePath || basePath);
|
|
5309
5567
|
} };
|
|
5310
5568
|
};
|
|
5311
5569
|
/**
|
|
5312
5570
|
* SessionApi - factory interface
|
|
5313
5571
|
*/
|
|
5314
|
-
const SessionApiFactory = function(configuration, basePath, axios$
|
|
5572
|
+
const SessionApiFactory = function(configuration, basePath, axios$111) {
|
|
5315
5573
|
const localVarFp = SessionApiFp(configuration);
|
|
5316
5574
|
return { getSession(options) {
|
|
5317
|
-
return localVarFp.getSession(options).then((request) => request(axios$
|
|
5575
|
+
return localVarFp.getSession(options).then((request) => request(axios$111, basePath));
|
|
5318
5576
|
} };
|
|
5319
5577
|
};
|
|
5320
5578
|
/**
|
|
@@ -5756,144 +6014,144 @@ const StoreCollisionComponentsApiFp = function(configuration) {
|
|
|
5756
6014
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteStoredCollider(cell, collider, options);
|
|
5757
6015
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5758
6016
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.deleteStoredCollider"]?.[localVarOperationServerIndex]?.url;
|
|
5759
|
-
return (axios$
|
|
6017
|
+
return (axios$112, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$112, localVarOperationServerBasePath || basePath);
|
|
5760
6018
|
},
|
|
5761
6019
|
async deleteStoredCollisionLinkChain(cell, linkChain, options) {
|
|
5762
6020
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteStoredCollisionLinkChain(cell, linkChain, options);
|
|
5763
6021
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5764
6022
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.deleteStoredCollisionLinkChain"]?.[localVarOperationServerIndex]?.url;
|
|
5765
|
-
return (axios$
|
|
6023
|
+
return (axios$113, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$113, localVarOperationServerBasePath || basePath);
|
|
5766
6024
|
},
|
|
5767
6025
|
async deleteStoredCollisionTool(cell, tool, options) {
|
|
5768
6026
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteStoredCollisionTool(cell, tool, options);
|
|
5769
6027
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5770
6028
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.deleteStoredCollisionTool"]?.[localVarOperationServerIndex]?.url;
|
|
5771
|
-
return (axios$
|
|
6029
|
+
return (axios$114, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$114, localVarOperationServerBasePath || basePath);
|
|
5772
6030
|
},
|
|
5773
6031
|
async getStoredCollider(cell, collider, options) {
|
|
5774
6032
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getStoredCollider(cell, collider, options);
|
|
5775
6033
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5776
6034
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.getStoredCollider"]?.[localVarOperationServerIndex]?.url;
|
|
5777
|
-
return (axios$
|
|
6035
|
+
return (axios$115, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$115, localVarOperationServerBasePath || basePath);
|
|
5778
6036
|
},
|
|
5779
6037
|
async getStoredCollisionLinkChain(cell, linkChain, options) {
|
|
5780
6038
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getStoredCollisionLinkChain(cell, linkChain, options);
|
|
5781
6039
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5782
6040
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.getStoredCollisionLinkChain"]?.[localVarOperationServerIndex]?.url;
|
|
5783
|
-
return (axios$
|
|
6041
|
+
return (axios$116, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$116, localVarOperationServerBasePath || basePath);
|
|
5784
6042
|
},
|
|
5785
6043
|
async getStoredCollisionTool(cell, tool, options) {
|
|
5786
6044
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getStoredCollisionTool(cell, tool, options);
|
|
5787
6045
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5788
6046
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.getStoredCollisionTool"]?.[localVarOperationServerIndex]?.url;
|
|
5789
|
-
return (axios$
|
|
6047
|
+
return (axios$117, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$117, localVarOperationServerBasePath || basePath);
|
|
5790
6048
|
},
|
|
5791
6049
|
async listCollisionLinkChains(cell, options) {
|
|
5792
6050
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listCollisionLinkChains(cell, options);
|
|
5793
6051
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5794
6052
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listCollisionLinkChains"]?.[localVarOperationServerIndex]?.url;
|
|
5795
|
-
return (axios$
|
|
6053
|
+
return (axios$118, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$118, localVarOperationServerBasePath || basePath);
|
|
5796
6054
|
},
|
|
5797
6055
|
async listCollisionLinkChainsKeys(cell, options) {
|
|
5798
6056
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listCollisionLinkChainsKeys(cell, options);
|
|
5799
6057
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5800
6058
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listCollisionLinkChainsKeys"]?.[localVarOperationServerIndex]?.url;
|
|
5801
|
-
return (axios$
|
|
6059
|
+
return (axios$119, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$119, localVarOperationServerBasePath || basePath);
|
|
5802
6060
|
},
|
|
5803
6061
|
async listStoredColliders(cell, options) {
|
|
5804
6062
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredColliders(cell, options);
|
|
5805
6063
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5806
6064
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listStoredColliders"]?.[localVarOperationServerIndex]?.url;
|
|
5807
|
-
return (axios$
|
|
6065
|
+
return (axios$120, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$120, localVarOperationServerBasePath || basePath);
|
|
5808
6066
|
},
|
|
5809
6067
|
async listStoredCollidersKeys(cell, options) {
|
|
5810
6068
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredCollidersKeys(cell, options);
|
|
5811
6069
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5812
6070
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listStoredCollidersKeys"]?.[localVarOperationServerIndex]?.url;
|
|
5813
|
-
return (axios$
|
|
6071
|
+
return (axios$121, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$121, localVarOperationServerBasePath || basePath);
|
|
5814
6072
|
},
|
|
5815
6073
|
async listStoredCollisionTools(cell, options) {
|
|
5816
6074
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredCollisionTools(cell, options);
|
|
5817
6075
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5818
6076
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listStoredCollisionTools"]?.[localVarOperationServerIndex]?.url;
|
|
5819
|
-
return (axios$
|
|
6077
|
+
return (axios$122, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$122, localVarOperationServerBasePath || basePath);
|
|
5820
6078
|
},
|
|
5821
6079
|
async listStoredCollisionToolsKeys(cell, options) {
|
|
5822
6080
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredCollisionToolsKeys(cell, options);
|
|
5823
6081
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5824
6082
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listStoredCollisionToolsKeys"]?.[localVarOperationServerIndex]?.url;
|
|
5825
|
-
return (axios$
|
|
6083
|
+
return (axios$123, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$123, localVarOperationServerBasePath || basePath);
|
|
5826
6084
|
},
|
|
5827
6085
|
async storeCollider(cell, collider, collider2, options) {
|
|
5828
6086
|
const localVarAxiosArgs = await localVarAxiosParamCreator.storeCollider(cell, collider, collider2, options);
|
|
5829
6087
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5830
6088
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.storeCollider"]?.[localVarOperationServerIndex]?.url;
|
|
5831
|
-
return (axios$
|
|
6089
|
+
return (axios$124, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$124, localVarOperationServerBasePath || basePath);
|
|
5832
6090
|
},
|
|
5833
6091
|
async storeCollisionLinkChain(cell, linkChain, collider, options) {
|
|
5834
6092
|
const localVarAxiosArgs = await localVarAxiosParamCreator.storeCollisionLinkChain(cell, linkChain, collider, options);
|
|
5835
6093
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5836
6094
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.storeCollisionLinkChain"]?.[localVarOperationServerIndex]?.url;
|
|
5837
|
-
return (axios$
|
|
6095
|
+
return (axios$125, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$125, localVarOperationServerBasePath || basePath);
|
|
5838
6096
|
},
|
|
5839
6097
|
async storeCollisionTool(cell, tool, requestBody, options) {
|
|
5840
6098
|
const localVarAxiosArgs = await localVarAxiosParamCreator.storeCollisionTool(cell, tool, requestBody, options);
|
|
5841
6099
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5842
6100
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.storeCollisionTool"]?.[localVarOperationServerIndex]?.url;
|
|
5843
|
-
return (axios$
|
|
6101
|
+
return (axios$126, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$126, localVarOperationServerBasePath || basePath);
|
|
5844
6102
|
}
|
|
5845
6103
|
};
|
|
5846
6104
|
};
|
|
5847
6105
|
/**
|
|
5848
6106
|
* StoreCollisionComponentsApi - factory interface
|
|
5849
6107
|
*/
|
|
5850
|
-
const StoreCollisionComponentsApiFactory = function(configuration, basePath, axios$
|
|
6108
|
+
const StoreCollisionComponentsApiFactory = function(configuration, basePath, axios$127) {
|
|
5851
6109
|
const localVarFp = StoreCollisionComponentsApiFp(configuration);
|
|
5852
6110
|
return {
|
|
5853
6111
|
deleteStoredCollider(cell, collider, options) {
|
|
5854
|
-
return localVarFp.deleteStoredCollider(cell, collider, options).then((request) => request(axios$
|
|
6112
|
+
return localVarFp.deleteStoredCollider(cell, collider, options).then((request) => request(axios$127, basePath));
|
|
5855
6113
|
},
|
|
5856
6114
|
deleteStoredCollisionLinkChain(cell, linkChain, options) {
|
|
5857
|
-
return localVarFp.deleteStoredCollisionLinkChain(cell, linkChain, options).then((request) => request(axios$
|
|
6115
|
+
return localVarFp.deleteStoredCollisionLinkChain(cell, linkChain, options).then((request) => request(axios$127, basePath));
|
|
5858
6116
|
},
|
|
5859
6117
|
deleteStoredCollisionTool(cell, tool, options) {
|
|
5860
|
-
return localVarFp.deleteStoredCollisionTool(cell, tool, options).then((request) => request(axios$
|
|
6118
|
+
return localVarFp.deleteStoredCollisionTool(cell, tool, options).then((request) => request(axios$127, basePath));
|
|
5861
6119
|
},
|
|
5862
6120
|
getStoredCollider(cell, collider, options) {
|
|
5863
|
-
return localVarFp.getStoredCollider(cell, collider, options).then((request) => request(axios$
|
|
6121
|
+
return localVarFp.getStoredCollider(cell, collider, options).then((request) => request(axios$127, basePath));
|
|
5864
6122
|
},
|
|
5865
6123
|
getStoredCollisionLinkChain(cell, linkChain, options) {
|
|
5866
|
-
return localVarFp.getStoredCollisionLinkChain(cell, linkChain, options).then((request) => request(axios$
|
|
6124
|
+
return localVarFp.getStoredCollisionLinkChain(cell, linkChain, options).then((request) => request(axios$127, basePath));
|
|
5867
6125
|
},
|
|
5868
6126
|
getStoredCollisionTool(cell, tool, options) {
|
|
5869
|
-
return localVarFp.getStoredCollisionTool(cell, tool, options).then((request) => request(axios$
|
|
6127
|
+
return localVarFp.getStoredCollisionTool(cell, tool, options).then((request) => request(axios$127, basePath));
|
|
5870
6128
|
},
|
|
5871
6129
|
listCollisionLinkChains(cell, options) {
|
|
5872
|
-
return localVarFp.listCollisionLinkChains(cell, options).then((request) => request(axios$
|
|
6130
|
+
return localVarFp.listCollisionLinkChains(cell, options).then((request) => request(axios$127, basePath));
|
|
5873
6131
|
},
|
|
5874
6132
|
listCollisionLinkChainsKeys(cell, options) {
|
|
5875
|
-
return localVarFp.listCollisionLinkChainsKeys(cell, options).then((request) => request(axios$
|
|
6133
|
+
return localVarFp.listCollisionLinkChainsKeys(cell, options).then((request) => request(axios$127, basePath));
|
|
5876
6134
|
},
|
|
5877
6135
|
listStoredColliders(cell, options) {
|
|
5878
|
-
return localVarFp.listStoredColliders(cell, options).then((request) => request(axios$
|
|
6136
|
+
return localVarFp.listStoredColliders(cell, options).then((request) => request(axios$127, basePath));
|
|
5879
6137
|
},
|
|
5880
6138
|
listStoredCollidersKeys(cell, options) {
|
|
5881
|
-
return localVarFp.listStoredCollidersKeys(cell, options).then((request) => request(axios$
|
|
6139
|
+
return localVarFp.listStoredCollidersKeys(cell, options).then((request) => request(axios$127, basePath));
|
|
5882
6140
|
},
|
|
5883
6141
|
listStoredCollisionTools(cell, options) {
|
|
5884
|
-
return localVarFp.listStoredCollisionTools(cell, options).then((request) => request(axios$
|
|
6142
|
+
return localVarFp.listStoredCollisionTools(cell, options).then((request) => request(axios$127, basePath));
|
|
5885
6143
|
},
|
|
5886
6144
|
listStoredCollisionToolsKeys(cell, options) {
|
|
5887
|
-
return localVarFp.listStoredCollisionToolsKeys(cell, options).then((request) => request(axios$
|
|
6145
|
+
return localVarFp.listStoredCollisionToolsKeys(cell, options).then((request) => request(axios$127, basePath));
|
|
5888
6146
|
},
|
|
5889
6147
|
storeCollider(cell, collider, collider2, options) {
|
|
5890
|
-
return localVarFp.storeCollider(cell, collider, collider2, options).then((request) => request(axios$
|
|
6148
|
+
return localVarFp.storeCollider(cell, collider, collider2, options).then((request) => request(axios$127, basePath));
|
|
5891
6149
|
},
|
|
5892
6150
|
storeCollisionLinkChain(cell, linkChain, collider, options) {
|
|
5893
|
-
return localVarFp.storeCollisionLinkChain(cell, linkChain, collider, options).then((request) => request(axios$
|
|
6151
|
+
return localVarFp.storeCollisionLinkChain(cell, linkChain, collider, options).then((request) => request(axios$127, basePath));
|
|
5894
6152
|
},
|
|
5895
6153
|
storeCollisionTool(cell, tool, requestBody, options) {
|
|
5896
|
-
return localVarFp.storeCollisionTool(cell, tool, requestBody, options).then((request) => request(axios$
|
|
6154
|
+
return localVarFp.storeCollisionTool(cell, tool, requestBody, options).then((request) => request(axios$127, basePath));
|
|
5897
6155
|
}
|
|
5898
6156
|
};
|
|
5899
6157
|
};
|
|
@@ -6217,54 +6475,54 @@ const StoreCollisionSetupsApiFp = function(configuration) {
|
|
|
6217
6475
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteStoredCollisionSetup(cell, setup, options);
|
|
6218
6476
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6219
6477
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionSetupsApi.deleteStoredCollisionSetup"]?.[localVarOperationServerIndex]?.url;
|
|
6220
|
-
return (axios$
|
|
6478
|
+
return (axios$128, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$128, localVarOperationServerBasePath || basePath);
|
|
6221
6479
|
},
|
|
6222
6480
|
async getStoredCollisionSetup(cell, setup, options) {
|
|
6223
6481
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getStoredCollisionSetup(cell, setup, options);
|
|
6224
6482
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6225
6483
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionSetupsApi.getStoredCollisionSetup"]?.[localVarOperationServerIndex]?.url;
|
|
6226
|
-
return (axios$
|
|
6484
|
+
return (axios$129, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$129, localVarOperationServerBasePath || basePath);
|
|
6227
6485
|
},
|
|
6228
6486
|
async listStoredCollisionSetups(cell, options) {
|
|
6229
6487
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredCollisionSetups(cell, options);
|
|
6230
6488
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6231
6489
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionSetupsApi.listStoredCollisionSetups"]?.[localVarOperationServerIndex]?.url;
|
|
6232
|
-
return (axios$
|
|
6490
|
+
return (axios$130, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$130, localVarOperationServerBasePath || basePath);
|
|
6233
6491
|
},
|
|
6234
6492
|
async listStoredCollisionSetupsKeys(cell, options) {
|
|
6235
6493
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredCollisionSetupsKeys(cell, options);
|
|
6236
6494
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6237
6495
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionSetupsApi.listStoredCollisionSetupsKeys"]?.[localVarOperationServerIndex]?.url;
|
|
6238
|
-
return (axios$
|
|
6496
|
+
return (axios$131, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$131, localVarOperationServerBasePath || basePath);
|
|
6239
6497
|
},
|
|
6240
6498
|
async storeCollisionSetup(cell, setup, collisionSetup, options) {
|
|
6241
6499
|
const localVarAxiosArgs = await localVarAxiosParamCreator.storeCollisionSetup(cell, setup, collisionSetup, options);
|
|
6242
6500
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6243
6501
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionSetupsApi.storeCollisionSetup"]?.[localVarOperationServerIndex]?.url;
|
|
6244
|
-
return (axios$
|
|
6502
|
+
return (axios$132, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$132, localVarOperationServerBasePath || basePath);
|
|
6245
6503
|
}
|
|
6246
6504
|
};
|
|
6247
6505
|
};
|
|
6248
6506
|
/**
|
|
6249
6507
|
* StoreCollisionSetupsApi - factory interface
|
|
6250
6508
|
*/
|
|
6251
|
-
const StoreCollisionSetupsApiFactory = function(configuration, basePath, axios$
|
|
6509
|
+
const StoreCollisionSetupsApiFactory = function(configuration, basePath, axios$133) {
|
|
6252
6510
|
const localVarFp = StoreCollisionSetupsApiFp(configuration);
|
|
6253
6511
|
return {
|
|
6254
6512
|
deleteStoredCollisionSetup(cell, setup, options) {
|
|
6255
|
-
return localVarFp.deleteStoredCollisionSetup(cell, setup, options).then((request) => request(axios$
|
|
6513
|
+
return localVarFp.deleteStoredCollisionSetup(cell, setup, options).then((request) => request(axios$133, basePath));
|
|
6256
6514
|
},
|
|
6257
6515
|
getStoredCollisionSetup(cell, setup, options) {
|
|
6258
|
-
return localVarFp.getStoredCollisionSetup(cell, setup, options).then((request) => request(axios$
|
|
6516
|
+
return localVarFp.getStoredCollisionSetup(cell, setup, options).then((request) => request(axios$133, basePath));
|
|
6259
6517
|
},
|
|
6260
6518
|
listStoredCollisionSetups(cell, options) {
|
|
6261
|
-
return localVarFp.listStoredCollisionSetups(cell, options).then((request) => request(axios$
|
|
6519
|
+
return localVarFp.listStoredCollisionSetups(cell, options).then((request) => request(axios$133, basePath));
|
|
6262
6520
|
},
|
|
6263
6521
|
listStoredCollisionSetupsKeys(cell, options) {
|
|
6264
|
-
return localVarFp.listStoredCollisionSetupsKeys(cell, options).then((request) => request(axios$
|
|
6522
|
+
return localVarFp.listStoredCollisionSetupsKeys(cell, options).then((request) => request(axios$133, basePath));
|
|
6265
6523
|
},
|
|
6266
6524
|
storeCollisionSetup(cell, setup, collisionSetup, options) {
|
|
6267
|
-
return localVarFp.storeCollisionSetup(cell, setup, collisionSetup, options).then((request) => request(axios$
|
|
6525
|
+
return localVarFp.storeCollisionSetup(cell, setup, collisionSetup, options).then((request) => request(axios$133, basePath));
|
|
6268
6526
|
}
|
|
6269
6527
|
};
|
|
6270
6528
|
};
|
|
@@ -6509,63 +6767,63 @@ const StoreObjectApiFp = function(configuration) {
|
|
|
6509
6767
|
const localVarAxiosArgs = await localVarAxiosParamCreator.clearAllObjects(cell, options);
|
|
6510
6768
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6511
6769
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.clearAllObjects"]?.[localVarOperationServerIndex]?.url;
|
|
6512
|
-
return (axios$
|
|
6770
|
+
return (axios$134, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$134, localVarOperationServerBasePath || basePath);
|
|
6513
6771
|
},
|
|
6514
6772
|
async deleteObject(cell, key, options) {
|
|
6515
6773
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteObject(cell, key, options);
|
|
6516
6774
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6517
6775
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.deleteObject"]?.[localVarOperationServerIndex]?.url;
|
|
6518
|
-
return (axios$
|
|
6776
|
+
return (axios$135, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$135, localVarOperationServerBasePath || basePath);
|
|
6519
6777
|
},
|
|
6520
6778
|
async getObject(cell, key, options) {
|
|
6521
6779
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getObject(cell, key, options);
|
|
6522
6780
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6523
6781
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.getObject"]?.[localVarOperationServerIndex]?.url;
|
|
6524
|
-
return (axios$
|
|
6782
|
+
return (axios$136, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$136, localVarOperationServerBasePath || basePath);
|
|
6525
6783
|
},
|
|
6526
6784
|
async getObjectMetadata(cell, key, options) {
|
|
6527
6785
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getObjectMetadata(cell, key, options);
|
|
6528
6786
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6529
6787
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.getObjectMetadata"]?.[localVarOperationServerIndex]?.url;
|
|
6530
|
-
return (axios$
|
|
6788
|
+
return (axios$137, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$137, localVarOperationServerBasePath || basePath);
|
|
6531
6789
|
},
|
|
6532
6790
|
async listAllObjectKeys(cell, options) {
|
|
6533
6791
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listAllObjectKeys(cell, options);
|
|
6534
6792
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6535
6793
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.listAllObjectKeys"]?.[localVarOperationServerIndex]?.url;
|
|
6536
|
-
return (axios$
|
|
6794
|
+
return (axios$138, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$138, localVarOperationServerBasePath || basePath);
|
|
6537
6795
|
},
|
|
6538
6796
|
async storeObject(cell, key, xMetadata, anyValue, options) {
|
|
6539
6797
|
const localVarAxiosArgs = await localVarAxiosParamCreator.storeObject(cell, key, xMetadata, anyValue, options);
|
|
6540
6798
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6541
6799
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.storeObject"]?.[localVarOperationServerIndex]?.url;
|
|
6542
|
-
return (axios$
|
|
6800
|
+
return (axios$139, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$139, localVarOperationServerBasePath || basePath);
|
|
6543
6801
|
}
|
|
6544
6802
|
};
|
|
6545
6803
|
};
|
|
6546
6804
|
/**
|
|
6547
6805
|
* StoreObjectApi - factory interface
|
|
6548
6806
|
*/
|
|
6549
|
-
const StoreObjectApiFactory = function(configuration, basePath, axios$
|
|
6807
|
+
const StoreObjectApiFactory = function(configuration, basePath, axios$140) {
|
|
6550
6808
|
const localVarFp = StoreObjectApiFp(configuration);
|
|
6551
6809
|
return {
|
|
6552
6810
|
clearAllObjects(cell, options) {
|
|
6553
|
-
return localVarFp.clearAllObjects(cell, options).then((request) => request(axios$
|
|
6811
|
+
return localVarFp.clearAllObjects(cell, options).then((request) => request(axios$140, basePath));
|
|
6554
6812
|
},
|
|
6555
6813
|
deleteObject(cell, key, options) {
|
|
6556
|
-
return localVarFp.deleteObject(cell, key, options).then((request) => request(axios$
|
|
6814
|
+
return localVarFp.deleteObject(cell, key, options).then((request) => request(axios$140, basePath));
|
|
6557
6815
|
},
|
|
6558
6816
|
getObject(cell, key, options) {
|
|
6559
|
-
return localVarFp.getObject(cell, key, options).then((request) => request(axios$
|
|
6817
|
+
return localVarFp.getObject(cell, key, options).then((request) => request(axios$140, basePath));
|
|
6560
6818
|
},
|
|
6561
6819
|
getObjectMetadata(cell, key, options) {
|
|
6562
|
-
return localVarFp.getObjectMetadata(cell, key, options).then((request) => request(axios$
|
|
6820
|
+
return localVarFp.getObjectMetadata(cell, key, options).then((request) => request(axios$140, basePath));
|
|
6563
6821
|
},
|
|
6564
6822
|
listAllObjectKeys(cell, options) {
|
|
6565
|
-
return localVarFp.listAllObjectKeys(cell, options).then((request) => request(axios$
|
|
6823
|
+
return localVarFp.listAllObjectKeys(cell, options).then((request) => request(axios$140, basePath));
|
|
6566
6824
|
},
|
|
6567
6825
|
storeObject(cell, key, xMetadata, anyValue, options) {
|
|
6568
|
-
return localVarFp.storeObject(cell, key, xMetadata, anyValue, options).then((request) => request(axios$
|
|
6826
|
+
return localVarFp.storeObject(cell, key, xMetadata, anyValue, options).then((request) => request(axios$140, basePath));
|
|
6569
6827
|
}
|
|
6570
6828
|
};
|
|
6571
6829
|
};
|
|
@@ -6961,117 +7219,117 @@ const SystemApiFp = function(configuration) {
|
|
|
6961
7219
|
const localVarAxiosArgs = await localVarAxiosParamCreator.backupConfiguration(resources, metadata, options);
|
|
6962
7220
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6963
7221
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.backupConfiguration"]?.[localVarOperationServerIndex]?.url;
|
|
6964
|
-
return (axios$
|
|
7222
|
+
return (axios$141, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$141, localVarOperationServerBasePath || basePath);
|
|
6965
7223
|
},
|
|
6966
7224
|
async checkNovaVersionUpdate(channel, options) {
|
|
6967
7225
|
const localVarAxiosArgs = await localVarAxiosParamCreator.checkNovaVersionUpdate(channel, options);
|
|
6968
7226
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6969
7227
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.checkNovaVersionUpdate"]?.[localVarOperationServerIndex]?.url;
|
|
6970
|
-
return (axios$
|
|
7228
|
+
return (axios$142, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$142, localVarOperationServerBasePath || basePath);
|
|
6971
7229
|
},
|
|
6972
7230
|
async getArpScan(_interface, cidr, timeout, options) {
|
|
6973
7231
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getArpScan(_interface, cidr, timeout, options);
|
|
6974
7232
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6975
7233
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getArpScan"]?.[localVarOperationServerIndex]?.url;
|
|
6976
|
-
return (axios$
|
|
7234
|
+
return (axios$143, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$143, localVarOperationServerBasePath || basePath);
|
|
6977
7235
|
},
|
|
6978
7236
|
async getConfigurationBackupStatus(operationId, options) {
|
|
6979
7237
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getConfigurationBackupStatus(operationId, options);
|
|
6980
7238
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6981
7239
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getConfigurationBackupStatus"]?.[localVarOperationServerIndex]?.url;
|
|
6982
|
-
return (axios$
|
|
7240
|
+
return (axios$144, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$144, localVarOperationServerBasePath || basePath);
|
|
6983
7241
|
},
|
|
6984
7242
|
async getDiagnosePackage(options) {
|
|
6985
7243
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getDiagnosePackage(options);
|
|
6986
7244
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6987
7245
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getDiagnosePackage"]?.[localVarOperationServerIndex]?.url;
|
|
6988
|
-
return (axios$
|
|
7246
|
+
return (axios$145, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$145, localVarOperationServerBasePath || basePath);
|
|
6989
7247
|
},
|
|
6990
7248
|
async getNetworkInterfaces(options) {
|
|
6991
7249
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getNetworkInterfaces(options);
|
|
6992
7250
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6993
7251
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getNetworkInterfaces"]?.[localVarOperationServerIndex]?.url;
|
|
6994
|
-
return (axios$
|
|
7252
|
+
return (axios$146, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$146, localVarOperationServerBasePath || basePath);
|
|
6995
7253
|
},
|
|
6996
7254
|
async getNetworkState(options) {
|
|
6997
7255
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getNetworkState(options);
|
|
6998
7256
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6999
7257
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getNetworkState"]?.[localVarOperationServerIndex]?.url;
|
|
7000
|
-
return (axios$
|
|
7258
|
+
return (axios$147, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$147, localVarOperationServerBasePath || basePath);
|
|
7001
7259
|
},
|
|
7002
7260
|
async getSystemStatus(options) {
|
|
7003
7261
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getSystemStatus(options);
|
|
7004
7262
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7005
7263
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getSystemStatus"]?.[localVarOperationServerIndex]?.url;
|
|
7006
|
-
return (axios$
|
|
7264
|
+
return (axios$148, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$148, localVarOperationServerBasePath || basePath);
|
|
7007
7265
|
},
|
|
7008
7266
|
async getSystemVersion(options) {
|
|
7009
7267
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getSystemVersion(options);
|
|
7010
7268
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7011
7269
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getSystemVersion"]?.[localVarOperationServerIndex]?.url;
|
|
7012
|
-
return (axios$
|
|
7270
|
+
return (axios$149, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$149, localVarOperationServerBasePath || basePath);
|
|
7013
7271
|
},
|
|
7014
7272
|
async listConfigurationResources(options) {
|
|
7015
7273
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listConfigurationResources(options);
|
|
7016
7274
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7017
7275
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.listConfigurationResources"]?.[localVarOperationServerIndex]?.url;
|
|
7018
|
-
return (axios$
|
|
7276
|
+
return (axios$150, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$150, localVarOperationServerBasePath || basePath);
|
|
7019
7277
|
},
|
|
7020
7278
|
async restoreConfiguration(body, resources, options) {
|
|
7021
7279
|
const localVarAxiosArgs = await localVarAxiosParamCreator.restoreConfiguration(body, resources, options);
|
|
7022
7280
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7023
7281
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.restoreConfiguration"]?.[localVarOperationServerIndex]?.url;
|
|
7024
|
-
return (axios$
|
|
7282
|
+
return (axios$151, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$151, localVarOperationServerBasePath || basePath);
|
|
7025
7283
|
},
|
|
7026
7284
|
async updateNovaVersion(updateNovaVersionRequest, options) {
|
|
7027
7285
|
const localVarAxiosArgs = await localVarAxiosParamCreator.updateNovaVersion(updateNovaVersionRequest, options);
|
|
7028
7286
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7029
7287
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.updateNovaVersion"]?.[localVarOperationServerIndex]?.url;
|
|
7030
|
-
return (axios$
|
|
7288
|
+
return (axios$152, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$152, localVarOperationServerBasePath || basePath);
|
|
7031
7289
|
}
|
|
7032
7290
|
};
|
|
7033
7291
|
};
|
|
7034
7292
|
/**
|
|
7035
7293
|
* SystemApi - factory interface
|
|
7036
7294
|
*/
|
|
7037
|
-
const SystemApiFactory = function(configuration, basePath, axios$
|
|
7295
|
+
const SystemApiFactory = function(configuration, basePath, axios$153) {
|
|
7038
7296
|
const localVarFp = SystemApiFp(configuration);
|
|
7039
7297
|
return {
|
|
7040
7298
|
backupConfiguration(resources, metadata, options) {
|
|
7041
|
-
return localVarFp.backupConfiguration(resources, metadata, options).then((request) => request(axios$
|
|
7299
|
+
return localVarFp.backupConfiguration(resources, metadata, options).then((request) => request(axios$153, basePath));
|
|
7042
7300
|
},
|
|
7043
7301
|
checkNovaVersionUpdate(channel, options) {
|
|
7044
|
-
return localVarFp.checkNovaVersionUpdate(channel, options).then((request) => request(axios$
|
|
7302
|
+
return localVarFp.checkNovaVersionUpdate(channel, options).then((request) => request(axios$153, basePath));
|
|
7045
7303
|
},
|
|
7046
7304
|
getArpScan(_interface, cidr, timeout, options) {
|
|
7047
|
-
return localVarFp.getArpScan(_interface, cidr, timeout, options).then((request) => request(axios$
|
|
7305
|
+
return localVarFp.getArpScan(_interface, cidr, timeout, options).then((request) => request(axios$153, basePath));
|
|
7048
7306
|
},
|
|
7049
7307
|
getConfigurationBackupStatus(operationId, options) {
|
|
7050
|
-
return localVarFp.getConfigurationBackupStatus(operationId, options).then((request) => request(axios$
|
|
7308
|
+
return localVarFp.getConfigurationBackupStatus(operationId, options).then((request) => request(axios$153, basePath));
|
|
7051
7309
|
},
|
|
7052
7310
|
getDiagnosePackage(options) {
|
|
7053
|
-
return localVarFp.getDiagnosePackage(options).then((request) => request(axios$
|
|
7311
|
+
return localVarFp.getDiagnosePackage(options).then((request) => request(axios$153, basePath));
|
|
7054
7312
|
},
|
|
7055
7313
|
getNetworkInterfaces(options) {
|
|
7056
|
-
return localVarFp.getNetworkInterfaces(options).then((request) => request(axios$
|
|
7314
|
+
return localVarFp.getNetworkInterfaces(options).then((request) => request(axios$153, basePath));
|
|
7057
7315
|
},
|
|
7058
7316
|
getNetworkState(options) {
|
|
7059
|
-
return localVarFp.getNetworkState(options).then((request) => request(axios$
|
|
7317
|
+
return localVarFp.getNetworkState(options).then((request) => request(axios$153, basePath));
|
|
7060
7318
|
},
|
|
7061
7319
|
getSystemStatus(options) {
|
|
7062
|
-
return localVarFp.getSystemStatus(options).then((request) => request(axios$
|
|
7320
|
+
return localVarFp.getSystemStatus(options).then((request) => request(axios$153, basePath));
|
|
7063
7321
|
},
|
|
7064
7322
|
getSystemVersion(options) {
|
|
7065
|
-
return localVarFp.getSystemVersion(options).then((request) => request(axios$
|
|
7323
|
+
return localVarFp.getSystemVersion(options).then((request) => request(axios$153, basePath));
|
|
7066
7324
|
},
|
|
7067
7325
|
listConfigurationResources(options) {
|
|
7068
|
-
return localVarFp.listConfigurationResources(options).then((request) => request(axios$
|
|
7326
|
+
return localVarFp.listConfigurationResources(options).then((request) => request(axios$153, basePath));
|
|
7069
7327
|
},
|
|
7070
7328
|
restoreConfiguration(body, resources, options) {
|
|
7071
|
-
return localVarFp.restoreConfiguration(body, resources, options).then((request) => request(axios$
|
|
7329
|
+
return localVarFp.restoreConfiguration(body, resources, options).then((request) => request(axios$153, basePath));
|
|
7072
7330
|
},
|
|
7073
7331
|
updateNovaVersion(updateNovaVersionRequest, options) {
|
|
7074
|
-
return localVarFp.updateNovaVersion(updateNovaVersionRequest, options).then((request) => request(axios$
|
|
7332
|
+
return localVarFp.updateNovaVersion(updateNovaVersionRequest, options).then((request) => request(axios$153, basePath));
|
|
7075
7333
|
}
|
|
7076
7334
|
};
|
|
7077
7335
|
};
|
|
@@ -7355,54 +7613,54 @@ const TrajectoryCachingApiFp = function(configuration) {
|
|
|
7355
7613
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addTrajectory(cell, controller, addTrajectoryRequest, options);
|
|
7356
7614
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7357
7615
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryCachingApi.addTrajectory"]?.[localVarOperationServerIndex]?.url;
|
|
7358
|
-
return (axios$
|
|
7616
|
+
return (axios$154, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$154, localVarOperationServerBasePath || basePath);
|
|
7359
7617
|
},
|
|
7360
7618
|
async clearTrajectories(cell, controller, options) {
|
|
7361
7619
|
const localVarAxiosArgs = await localVarAxiosParamCreator.clearTrajectories(cell, controller, options);
|
|
7362
7620
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7363
7621
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryCachingApi.clearTrajectories"]?.[localVarOperationServerIndex]?.url;
|
|
7364
|
-
return (axios$
|
|
7622
|
+
return (axios$155, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$155, localVarOperationServerBasePath || basePath);
|
|
7365
7623
|
},
|
|
7366
7624
|
async deleteTrajectory(cell, controller, trajectory, options) {
|
|
7367
7625
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteTrajectory(cell, controller, trajectory, options);
|
|
7368
7626
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7369
7627
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryCachingApi.deleteTrajectory"]?.[localVarOperationServerIndex]?.url;
|
|
7370
|
-
return (axios$
|
|
7628
|
+
return (axios$156, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$156, localVarOperationServerBasePath || basePath);
|
|
7371
7629
|
},
|
|
7372
7630
|
async getTrajectory(cell, controller, trajectory, options) {
|
|
7373
7631
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getTrajectory(cell, controller, trajectory, options);
|
|
7374
7632
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7375
7633
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryCachingApi.getTrajectory"]?.[localVarOperationServerIndex]?.url;
|
|
7376
|
-
return (axios$
|
|
7634
|
+
return (axios$157, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$157, localVarOperationServerBasePath || basePath);
|
|
7377
7635
|
},
|
|
7378
7636
|
async listTrajectories(cell, controller, options) {
|
|
7379
7637
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listTrajectories(cell, controller, options);
|
|
7380
7638
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7381
7639
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryCachingApi.listTrajectories"]?.[localVarOperationServerIndex]?.url;
|
|
7382
|
-
return (axios$
|
|
7640
|
+
return (axios$158, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$158, localVarOperationServerBasePath || basePath);
|
|
7383
7641
|
}
|
|
7384
7642
|
};
|
|
7385
7643
|
};
|
|
7386
7644
|
/**
|
|
7387
7645
|
* TrajectoryCachingApi - factory interface
|
|
7388
7646
|
*/
|
|
7389
|
-
const TrajectoryCachingApiFactory = function(configuration, basePath, axios$
|
|
7647
|
+
const TrajectoryCachingApiFactory = function(configuration, basePath, axios$159) {
|
|
7390
7648
|
const localVarFp = TrajectoryCachingApiFp(configuration);
|
|
7391
7649
|
return {
|
|
7392
7650
|
addTrajectory(cell, controller, addTrajectoryRequest, options) {
|
|
7393
|
-
return localVarFp.addTrajectory(cell, controller, addTrajectoryRequest, options).then((request) => request(axios$
|
|
7651
|
+
return localVarFp.addTrajectory(cell, controller, addTrajectoryRequest, options).then((request) => request(axios$159, basePath));
|
|
7394
7652
|
},
|
|
7395
7653
|
clearTrajectories(cell, controller, options) {
|
|
7396
|
-
return localVarFp.clearTrajectories(cell, controller, options).then((request) => request(axios$
|
|
7654
|
+
return localVarFp.clearTrajectories(cell, controller, options).then((request) => request(axios$159, basePath));
|
|
7397
7655
|
},
|
|
7398
7656
|
deleteTrajectory(cell, controller, trajectory, options) {
|
|
7399
|
-
return localVarFp.deleteTrajectory(cell, controller, trajectory, options).then((request) => request(axios$
|
|
7657
|
+
return localVarFp.deleteTrajectory(cell, controller, trajectory, options).then((request) => request(axios$159, basePath));
|
|
7400
7658
|
},
|
|
7401
7659
|
getTrajectory(cell, controller, trajectory, options) {
|
|
7402
|
-
return localVarFp.getTrajectory(cell, controller, trajectory, options).then((request) => request(axios$
|
|
7660
|
+
return localVarFp.getTrajectory(cell, controller, trajectory, options).then((request) => request(axios$159, basePath));
|
|
7403
7661
|
},
|
|
7404
7662
|
listTrajectories(cell, controller, options) {
|
|
7405
|
-
return localVarFp.listTrajectories(cell, controller, options).then((request) => request(axios$
|
|
7663
|
+
return localVarFp.listTrajectories(cell, controller, options).then((request) => request(axios$159, basePath));
|
|
7406
7664
|
}
|
|
7407
7665
|
};
|
|
7408
7666
|
};
|
|
@@ -7513,16 +7771,16 @@ const TrajectoryExecutionApiFp = function(configuration) {
|
|
|
7513
7771
|
const localVarAxiosArgs = await localVarAxiosParamCreator.executeTrajectory(cell, controller, executeTrajectoryRequest, options);
|
|
7514
7772
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7515
7773
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryExecutionApi.executeTrajectory"]?.[localVarOperationServerIndex]?.url;
|
|
7516
|
-
return (axios$
|
|
7774
|
+
return (axios$160, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$160, localVarOperationServerBasePath || basePath);
|
|
7517
7775
|
} };
|
|
7518
7776
|
};
|
|
7519
7777
|
/**
|
|
7520
7778
|
* TrajectoryExecutionApi - factory interface
|
|
7521
7779
|
*/
|
|
7522
|
-
const TrajectoryExecutionApiFactory = function(configuration, basePath, axios$
|
|
7780
|
+
const TrajectoryExecutionApiFactory = function(configuration, basePath, axios$161) {
|
|
7523
7781
|
const localVarFp = TrajectoryExecutionApiFp(configuration);
|
|
7524
7782
|
return { executeTrajectory(cell, controller, executeTrajectoryRequest, options) {
|
|
7525
|
-
return localVarFp.executeTrajectory(cell, controller, executeTrajectoryRequest, options).then((request) => request(axios$
|
|
7783
|
+
return localVarFp.executeTrajectory(cell, controller, executeTrajectoryRequest, options).then((request) => request(axios$161, basePath));
|
|
7526
7784
|
} };
|
|
7527
7785
|
};
|
|
7528
7786
|
/**
|
|
@@ -7675,45 +7933,45 @@ const TrajectoryPlanningApiFp = function(configuration) {
|
|
|
7675
7933
|
const localVarAxiosArgs = await localVarAxiosParamCreator.mergeTrajectories(cell, mergeTrajectoriesRequest, options);
|
|
7676
7934
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7677
7935
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryPlanningApi.mergeTrajectories"]?.[localVarOperationServerIndex]?.url;
|
|
7678
|
-
return (axios$
|
|
7936
|
+
return (axios$162, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$162, localVarOperationServerBasePath || basePath);
|
|
7679
7937
|
},
|
|
7680
7938
|
async planCollisionFree(cell, planCollisionFreeRequest, options) {
|
|
7681
7939
|
const localVarAxiosArgs = await localVarAxiosParamCreator.planCollisionFree(cell, planCollisionFreeRequest, options);
|
|
7682
7940
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7683
7941
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryPlanningApi.planCollisionFree"]?.[localVarOperationServerIndex]?.url;
|
|
7684
|
-
return (axios$
|
|
7942
|
+
return (axios$163, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$163, localVarOperationServerBasePath || basePath);
|
|
7685
7943
|
},
|
|
7686
7944
|
async planTrajectory(cell, planTrajectoryRequest, options) {
|
|
7687
7945
|
const localVarAxiosArgs = await localVarAxiosParamCreator.planTrajectory(cell, planTrajectoryRequest, options);
|
|
7688
7946
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7689
7947
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryPlanningApi.planTrajectory"]?.[localVarOperationServerIndex]?.url;
|
|
7690
|
-
return (axios$
|
|
7948
|
+
return (axios$164, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$164, localVarOperationServerBasePath || basePath);
|
|
7691
7949
|
},
|
|
7692
7950
|
async searchCollisionFreeMultiMotionGroup(cell, multiSearchCollisionFreeRequest, options) {
|
|
7693
7951
|
const localVarAxiosArgs = await localVarAxiosParamCreator.searchCollisionFreeMultiMotionGroup(cell, multiSearchCollisionFreeRequest, options);
|
|
7694
7952
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7695
7953
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryPlanningApi.searchCollisionFreeMultiMotionGroup"]?.[localVarOperationServerIndex]?.url;
|
|
7696
|
-
return (axios$
|
|
7954
|
+
return (axios$165, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$165, localVarOperationServerBasePath || basePath);
|
|
7697
7955
|
}
|
|
7698
7956
|
};
|
|
7699
7957
|
};
|
|
7700
7958
|
/**
|
|
7701
7959
|
* TrajectoryPlanningApi - factory interface
|
|
7702
7960
|
*/
|
|
7703
|
-
const TrajectoryPlanningApiFactory = function(configuration, basePath, axios$
|
|
7961
|
+
const TrajectoryPlanningApiFactory = function(configuration, basePath, axios$166) {
|
|
7704
7962
|
const localVarFp = TrajectoryPlanningApiFp(configuration);
|
|
7705
7963
|
return {
|
|
7706
7964
|
mergeTrajectories(cell, mergeTrajectoriesRequest, options) {
|
|
7707
|
-
return localVarFp.mergeTrajectories(cell, mergeTrajectoriesRequest, options).then((request) => request(axios$
|
|
7965
|
+
return localVarFp.mergeTrajectories(cell, mergeTrajectoriesRequest, options).then((request) => request(axios$166, basePath));
|
|
7708
7966
|
},
|
|
7709
7967
|
planCollisionFree(cell, planCollisionFreeRequest, options) {
|
|
7710
|
-
return localVarFp.planCollisionFree(cell, planCollisionFreeRequest, options).then((request) => request(axios$
|
|
7968
|
+
return localVarFp.planCollisionFree(cell, planCollisionFreeRequest, options).then((request) => request(axios$166, basePath));
|
|
7711
7969
|
},
|
|
7712
7970
|
planTrajectory(cell, planTrajectoryRequest, options) {
|
|
7713
|
-
return localVarFp.planTrajectory(cell, planTrajectoryRequest, options).then((request) => request(axios$
|
|
7971
|
+
return localVarFp.planTrajectory(cell, planTrajectoryRequest, options).then((request) => request(axios$166, basePath));
|
|
7714
7972
|
},
|
|
7715
7973
|
searchCollisionFreeMultiMotionGroup(cell, multiSearchCollisionFreeRequest, options) {
|
|
7716
|
-
return localVarFp.searchCollisionFreeMultiMotionGroup(cell, multiSearchCollisionFreeRequest, options).then((request) => request(axios$
|
|
7974
|
+
return localVarFp.searchCollisionFreeMultiMotionGroup(cell, multiSearchCollisionFreeRequest, options).then((request) => request(axios$166, basePath));
|
|
7717
7975
|
}
|
|
7718
7976
|
};
|
|
7719
7977
|
};
|
|
@@ -7804,16 +8062,16 @@ const VersionApiFp = function(configuration) {
|
|
|
7804
8062
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getApiVersion(options);
|
|
7805
8063
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7806
8064
|
const localVarOperationServerBasePath = operationServerMap["VersionApi.getApiVersion"]?.[localVarOperationServerIndex]?.url;
|
|
7807
|
-
return (axios$
|
|
8065
|
+
return (axios$167, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$167, localVarOperationServerBasePath || basePath);
|
|
7808
8066
|
} };
|
|
7809
8067
|
};
|
|
7810
8068
|
/**
|
|
7811
8069
|
* VersionApi - factory interface
|
|
7812
8070
|
*/
|
|
7813
|
-
const VersionApiFactory = function(configuration, basePath, axios$
|
|
8071
|
+
const VersionApiFactory = function(configuration, basePath, axios$168) {
|
|
7814
8072
|
const localVarFp = VersionApiFp(configuration);
|
|
7815
8073
|
return { getApiVersion(options) {
|
|
7816
|
-
return localVarFp.getApiVersion(options).then((request) => request(axios$
|
|
8074
|
+
return localVarFp.getApiVersion(options).then((request) => request(axios$168, basePath));
|
|
7817
8075
|
} };
|
|
7818
8076
|
};
|
|
7819
8077
|
/**
|
|
@@ -8422,189 +8680,189 @@ const VirtualControllerApiFp = function(configuration) {
|
|
|
8422
8680
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options);
|
|
8423
8681
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8424
8682
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.addVirtualControllerCoordinateSystem"]?.[localVarOperationServerIndex]?.url;
|
|
8425
|
-
return (axios$
|
|
8683
|
+
return (axios$169, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$169, localVarOperationServerBasePath || basePath);
|
|
8426
8684
|
},
|
|
8427
8685
|
async addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options) {
|
|
8428
8686
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options);
|
|
8429
8687
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8430
8688
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.addVirtualControllerMotionGroup"]?.[localVarOperationServerIndex]?.url;
|
|
8431
|
-
return (axios$
|
|
8689
|
+
return (axios$170, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$170, localVarOperationServerBasePath || basePath);
|
|
8432
8690
|
},
|
|
8433
8691
|
async addVirtualControllerSafetyZone(cell, controller, safetyZone, options) {
|
|
8434
8692
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualControllerSafetyZone(cell, controller, safetyZone, options);
|
|
8435
8693
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8436
8694
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.addVirtualControllerSafetyZone"]?.[localVarOperationServerIndex]?.url;
|
|
8437
|
-
return (axios$
|
|
8695
|
+
return (axios$171, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$171, localVarOperationServerBasePath || basePath);
|
|
8438
8696
|
},
|
|
8439
8697
|
async addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options) {
|
|
8440
8698
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options);
|
|
8441
8699
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8442
8700
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.addVirtualControllerTcp"]?.[localVarOperationServerIndex]?.url;
|
|
8443
|
-
return (axios$
|
|
8701
|
+
return (axios$172, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$172, localVarOperationServerBasePath || basePath);
|
|
8444
8702
|
},
|
|
8445
8703
|
async deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options) {
|
|
8446
8704
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options);
|
|
8447
8705
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8448
8706
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.deleteVirtualControllerCoordinateSystem"]?.[localVarOperationServerIndex]?.url;
|
|
8449
|
-
return (axios$
|
|
8707
|
+
return (axios$173, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$173, localVarOperationServerBasePath || basePath);
|
|
8450
8708
|
},
|
|
8451
8709
|
async deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options) {
|
|
8452
8710
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options);
|
|
8453
8711
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8454
8712
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.deleteVirtualControllerMotionGroup"]?.[localVarOperationServerIndex]?.url;
|
|
8455
|
-
return (axios$
|
|
8713
|
+
return (axios$174, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$174, localVarOperationServerBasePath || basePath);
|
|
8456
8714
|
},
|
|
8457
8715
|
async deleteVirtualControllerSafetyZone(cell, controller, id, options) {
|
|
8458
8716
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualControllerSafetyZone(cell, controller, id, options);
|
|
8459
8717
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8460
8718
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.deleteVirtualControllerSafetyZone"]?.[localVarOperationServerIndex]?.url;
|
|
8461
|
-
return (axios$
|
|
8719
|
+
return (axios$175, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$175, localVarOperationServerBasePath || basePath);
|
|
8462
8720
|
},
|
|
8463
8721
|
async deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options) {
|
|
8464
8722
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options);
|
|
8465
8723
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8466
8724
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.deleteVirtualControllerTcp"]?.[localVarOperationServerIndex]?.url;
|
|
8467
|
-
return (axios$
|
|
8725
|
+
return (axios$176, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$176, localVarOperationServerBasePath || basePath);
|
|
8468
8726
|
},
|
|
8469
8727
|
async getEmergencyStop(cell, controller, options) {
|
|
8470
8728
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getEmergencyStop(cell, controller, options);
|
|
8471
8729
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8472
8730
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getEmergencyStop"]?.[localVarOperationServerIndex]?.url;
|
|
8473
|
-
return (axios$
|
|
8731
|
+
return (axios$177, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$177, localVarOperationServerBasePath || basePath);
|
|
8474
8732
|
},
|
|
8475
8733
|
async getMotionGroupState(cell, controller, motionGroup, options) {
|
|
8476
8734
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupState(cell, controller, motionGroup, options);
|
|
8477
8735
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8478
8736
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getMotionGroupState"]?.[localVarOperationServerIndex]?.url;
|
|
8479
|
-
return (axios$
|
|
8737
|
+
return (axios$178, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$178, localVarOperationServerBasePath || basePath);
|
|
8480
8738
|
},
|
|
8481
8739
|
async getMotionGroups(cell, controller, options) {
|
|
8482
8740
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroups(cell, controller, options);
|
|
8483
8741
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8484
8742
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getMotionGroups"]?.[localVarOperationServerIndex]?.url;
|
|
8485
|
-
return (axios$
|
|
8743
|
+
return (axios$179, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$179, localVarOperationServerBasePath || basePath);
|
|
8486
8744
|
},
|
|
8487
8745
|
async getOperationMode(cell, controller, options) {
|
|
8488
8746
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getOperationMode(cell, controller, options);
|
|
8489
8747
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8490
8748
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getOperationMode"]?.[localVarOperationServerIndex]?.url;
|
|
8491
|
-
return (axios$
|
|
8749
|
+
return (axios$180, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$180, localVarOperationServerBasePath || basePath);
|
|
8492
8750
|
},
|
|
8493
8751
|
async getVirtualControllerMounting(cell, controller, motionGroup, options) {
|
|
8494
8752
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getVirtualControllerMounting(cell, controller, motionGroup, options);
|
|
8495
8753
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8496
8754
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getVirtualControllerMounting"]?.[localVarOperationServerIndex]?.url;
|
|
8497
|
-
return (axios$
|
|
8755
|
+
return (axios$181, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$181, localVarOperationServerBasePath || basePath);
|
|
8498
8756
|
},
|
|
8499
8757
|
async getVirtualControllerSafetyZones(cell, controller, options) {
|
|
8500
8758
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getVirtualControllerSafetyZones(cell, controller, options);
|
|
8501
8759
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8502
8760
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getVirtualControllerSafetyZones"]?.[localVarOperationServerIndex]?.url;
|
|
8503
|
-
return (axios$
|
|
8761
|
+
return (axios$182, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$182, localVarOperationServerBasePath || basePath);
|
|
8504
8762
|
},
|
|
8505
8763
|
async listVirtualControllerCoordinateSystems(cell, controller, options) {
|
|
8506
8764
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listVirtualControllerCoordinateSystems(cell, controller, options);
|
|
8507
8765
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8508
8766
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.listVirtualControllerCoordinateSystems"]?.[localVarOperationServerIndex]?.url;
|
|
8509
|
-
return (axios$
|
|
8767
|
+
return (axios$183, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$183, localVarOperationServerBasePath || basePath);
|
|
8510
8768
|
},
|
|
8511
8769
|
async listVirtualControllerTcps(cell, controller, motionGroup, options) {
|
|
8512
8770
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listVirtualControllerTcps(cell, controller, motionGroup, options);
|
|
8513
8771
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8514
8772
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.listVirtualControllerTcps"]?.[localVarOperationServerIndex]?.url;
|
|
8515
|
-
return (axios$
|
|
8773
|
+
return (axios$184, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$184, localVarOperationServerBasePath || basePath);
|
|
8516
8774
|
},
|
|
8517
8775
|
async setEmergencyStop(cell, controller, active, options) {
|
|
8518
8776
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setEmergencyStop(cell, controller, active, options);
|
|
8519
8777
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8520
8778
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.setEmergencyStop"]?.[localVarOperationServerIndex]?.url;
|
|
8521
|
-
return (axios$
|
|
8779
|
+
return (axios$185, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$185, localVarOperationServerBasePath || basePath);
|
|
8522
8780
|
},
|
|
8523
8781
|
async setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options) {
|
|
8524
8782
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options);
|
|
8525
8783
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8526
8784
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.setMotionGroupState"]?.[localVarOperationServerIndex]?.url;
|
|
8527
|
-
return (axios$
|
|
8785
|
+
return (axios$186, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$186, localVarOperationServerBasePath || basePath);
|
|
8528
8786
|
},
|
|
8529
8787
|
async setOperationMode(cell, controller, mode, options) {
|
|
8530
8788
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setOperationMode(cell, controller, mode, options);
|
|
8531
8789
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8532
8790
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.setOperationMode"]?.[localVarOperationServerIndex]?.url;
|
|
8533
|
-
return (axios$
|
|
8791
|
+
return (axios$187, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$187, localVarOperationServerBasePath || basePath);
|
|
8534
8792
|
},
|
|
8535
8793
|
async setVirtualControllerMounting(cell, controller, motionGroup, coordinateSystem, options) {
|
|
8536
8794
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setVirtualControllerMounting(cell, controller, motionGroup, coordinateSystem, options);
|
|
8537
8795
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8538
8796
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.setVirtualControllerMounting"]?.[localVarOperationServerIndex]?.url;
|
|
8539
|
-
return (axios$
|
|
8797
|
+
return (axios$188, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$188, localVarOperationServerBasePath || basePath);
|
|
8540
8798
|
}
|
|
8541
8799
|
};
|
|
8542
8800
|
};
|
|
8543
8801
|
/**
|
|
8544
8802
|
* VirtualControllerApi - factory interface
|
|
8545
8803
|
*/
|
|
8546
|
-
const VirtualControllerApiFactory = function(configuration, basePath, axios$
|
|
8804
|
+
const VirtualControllerApiFactory = function(configuration, basePath, axios$189) {
|
|
8547
8805
|
const localVarFp = VirtualControllerApiFp(configuration);
|
|
8548
8806
|
return {
|
|
8549
8807
|
addVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options) {
|
|
8550
|
-
return localVarFp.addVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options).then((request) => request(axios$
|
|
8808
|
+
return localVarFp.addVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options).then((request) => request(axios$189, basePath));
|
|
8551
8809
|
},
|
|
8552
8810
|
addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options) {
|
|
8553
|
-
return localVarFp.addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options).then((request) => request(axios$
|
|
8811
|
+
return localVarFp.addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options).then((request) => request(axios$189, basePath));
|
|
8554
8812
|
},
|
|
8555
8813
|
addVirtualControllerSafetyZone(cell, controller, safetyZone, options) {
|
|
8556
|
-
return localVarFp.addVirtualControllerSafetyZone(cell, controller, safetyZone, options).then((request) => request(axios$
|
|
8814
|
+
return localVarFp.addVirtualControllerSafetyZone(cell, controller, safetyZone, options).then((request) => request(axios$189, basePath));
|
|
8557
8815
|
},
|
|
8558
8816
|
addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options) {
|
|
8559
|
-
return localVarFp.addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options).then((request) => request(axios$
|
|
8817
|
+
return localVarFp.addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options).then((request) => request(axios$189, basePath));
|
|
8560
8818
|
},
|
|
8561
8819
|
deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options) {
|
|
8562
|
-
return localVarFp.deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options).then((request) => request(axios$
|
|
8820
|
+
return localVarFp.deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options).then((request) => request(axios$189, basePath));
|
|
8563
8821
|
},
|
|
8564
8822
|
deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options) {
|
|
8565
|
-
return localVarFp.deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options).then((request) => request(axios$
|
|
8823
|
+
return localVarFp.deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options).then((request) => request(axios$189, basePath));
|
|
8566
8824
|
},
|
|
8567
8825
|
deleteVirtualControllerSafetyZone(cell, controller, id, options) {
|
|
8568
|
-
return localVarFp.deleteVirtualControllerSafetyZone(cell, controller, id, options).then((request) => request(axios$
|
|
8826
|
+
return localVarFp.deleteVirtualControllerSafetyZone(cell, controller, id, options).then((request) => request(axios$189, basePath));
|
|
8569
8827
|
},
|
|
8570
8828
|
deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options) {
|
|
8571
|
-
return localVarFp.deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options).then((request) => request(axios$
|
|
8829
|
+
return localVarFp.deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options).then((request) => request(axios$189, basePath));
|
|
8572
8830
|
},
|
|
8573
8831
|
getEmergencyStop(cell, controller, options) {
|
|
8574
|
-
return localVarFp.getEmergencyStop(cell, controller, options).then((request) => request(axios$
|
|
8832
|
+
return localVarFp.getEmergencyStop(cell, controller, options).then((request) => request(axios$189, basePath));
|
|
8575
8833
|
},
|
|
8576
8834
|
getMotionGroupState(cell, controller, motionGroup, options) {
|
|
8577
|
-
return localVarFp.getMotionGroupState(cell, controller, motionGroup, options).then((request) => request(axios$
|
|
8835
|
+
return localVarFp.getMotionGroupState(cell, controller, motionGroup, options).then((request) => request(axios$189, basePath));
|
|
8578
8836
|
},
|
|
8579
8837
|
getMotionGroups(cell, controller, options) {
|
|
8580
|
-
return localVarFp.getMotionGroups(cell, controller, options).then((request) => request(axios$
|
|
8838
|
+
return localVarFp.getMotionGroups(cell, controller, options).then((request) => request(axios$189, basePath));
|
|
8581
8839
|
},
|
|
8582
8840
|
getOperationMode(cell, controller, options) {
|
|
8583
|
-
return localVarFp.getOperationMode(cell, controller, options).then((request) => request(axios$
|
|
8841
|
+
return localVarFp.getOperationMode(cell, controller, options).then((request) => request(axios$189, basePath));
|
|
8584
8842
|
},
|
|
8585
8843
|
getVirtualControllerMounting(cell, controller, motionGroup, options) {
|
|
8586
|
-
return localVarFp.getVirtualControllerMounting(cell, controller, motionGroup, options).then((request) => request(axios$
|
|
8844
|
+
return localVarFp.getVirtualControllerMounting(cell, controller, motionGroup, options).then((request) => request(axios$189, basePath));
|
|
8587
8845
|
},
|
|
8588
8846
|
getVirtualControllerSafetyZones(cell, controller, options) {
|
|
8589
|
-
return localVarFp.getVirtualControllerSafetyZones(cell, controller, options).then((request) => request(axios$
|
|
8847
|
+
return localVarFp.getVirtualControllerSafetyZones(cell, controller, options).then((request) => request(axios$189, basePath));
|
|
8590
8848
|
},
|
|
8591
8849
|
listVirtualControllerCoordinateSystems(cell, controller, options) {
|
|
8592
|
-
return localVarFp.listVirtualControllerCoordinateSystems(cell, controller, options).then((request) => request(axios$
|
|
8850
|
+
return localVarFp.listVirtualControllerCoordinateSystems(cell, controller, options).then((request) => request(axios$189, basePath));
|
|
8593
8851
|
},
|
|
8594
8852
|
listVirtualControllerTcps(cell, controller, motionGroup, options) {
|
|
8595
|
-
return localVarFp.listVirtualControllerTcps(cell, controller, motionGroup, options).then((request) => request(axios$
|
|
8853
|
+
return localVarFp.listVirtualControllerTcps(cell, controller, motionGroup, options).then((request) => request(axios$189, basePath));
|
|
8596
8854
|
},
|
|
8597
8855
|
setEmergencyStop(cell, controller, active, options) {
|
|
8598
|
-
return localVarFp.setEmergencyStop(cell, controller, active, options).then((request) => request(axios$
|
|
8856
|
+
return localVarFp.setEmergencyStop(cell, controller, active, options).then((request) => request(axios$189, basePath));
|
|
8599
8857
|
},
|
|
8600
8858
|
setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options) {
|
|
8601
|
-
return localVarFp.setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options).then((request) => request(axios$
|
|
8859
|
+
return localVarFp.setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options).then((request) => request(axios$189, basePath));
|
|
8602
8860
|
},
|
|
8603
8861
|
setOperationMode(cell, controller, mode, options) {
|
|
8604
|
-
return localVarFp.setOperationMode(cell, controller, mode, options).then((request) => request(axios$
|
|
8862
|
+
return localVarFp.setOperationMode(cell, controller, mode, options).then((request) => request(axios$189, basePath));
|
|
8605
8863
|
},
|
|
8606
8864
|
setVirtualControllerMounting(cell, controller, motionGroup, coordinateSystem, options) {
|
|
8607
|
-
return localVarFp.setVirtualControllerMounting(cell, controller, motionGroup, coordinateSystem, options).then((request) => request(axios$
|
|
8865
|
+
return localVarFp.setVirtualControllerMounting(cell, controller, motionGroup, coordinateSystem, options).then((request) => request(axios$189, basePath));
|
|
8608
8866
|
}
|
|
8609
8867
|
};
|
|
8610
8868
|
};
|
|
@@ -8984,45 +9242,45 @@ const VirtualControllerBehaviorApiFp = function(configuration) {
|
|
|
8984
9242
|
const localVarAxiosArgs = await localVarAxiosParamCreator.externalJointsStream(cell, controller, externalJointStreamRequest, options);
|
|
8985
9243
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8986
9244
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerBehaviorApi.externalJointsStream"]?.[localVarOperationServerIndex]?.url;
|
|
8987
|
-
return (axios$
|
|
9245
|
+
return (axios$190, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$190, localVarOperationServerBasePath || basePath);
|
|
8988
9246
|
},
|
|
8989
9247
|
async getCycleTime(cell, controller, options) {
|
|
8990
9248
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getCycleTime(cell, controller, options);
|
|
8991
9249
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8992
9250
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerBehaviorApi.getCycleTime"]?.[localVarOperationServerIndex]?.url;
|
|
8993
|
-
return (axios$
|
|
9251
|
+
return (axios$191, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$191, localVarOperationServerBasePath || basePath);
|
|
8994
9252
|
},
|
|
8995
9253
|
async getVirtualControllerBehavior(cell, controller, options) {
|
|
8996
9254
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getVirtualControllerBehavior(cell, controller, options);
|
|
8997
9255
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8998
9256
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerBehaviorApi.getVirtualControllerBehavior"]?.[localVarOperationServerIndex]?.url;
|
|
8999
|
-
return (axios$
|
|
9257
|
+
return (axios$192, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$192, localVarOperationServerBasePath || basePath);
|
|
9000
9258
|
},
|
|
9001
9259
|
async setVirtualControllerBehavior(cell, controller, behavior, options) {
|
|
9002
9260
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setVirtualControllerBehavior(cell, controller, behavior, options);
|
|
9003
9261
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9004
9262
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerBehaviorApi.setVirtualControllerBehavior"]?.[localVarOperationServerIndex]?.url;
|
|
9005
|
-
return (axios$
|
|
9263
|
+
return (axios$193, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$193, localVarOperationServerBasePath || basePath);
|
|
9006
9264
|
}
|
|
9007
9265
|
};
|
|
9008
9266
|
};
|
|
9009
9267
|
/**
|
|
9010
9268
|
* VirtualControllerBehaviorApi - factory interface
|
|
9011
9269
|
*/
|
|
9012
|
-
const VirtualControllerBehaviorApiFactory = function(configuration, basePath, axios$
|
|
9270
|
+
const VirtualControllerBehaviorApiFactory = function(configuration, basePath, axios$194) {
|
|
9013
9271
|
const localVarFp = VirtualControllerBehaviorApiFp(configuration);
|
|
9014
9272
|
return {
|
|
9015
9273
|
externalJointsStream(cell, controller, externalJointStreamRequest, options) {
|
|
9016
|
-
return localVarFp.externalJointsStream(cell, controller, externalJointStreamRequest, options).then((request) => request(axios$
|
|
9274
|
+
return localVarFp.externalJointsStream(cell, controller, externalJointStreamRequest, options).then((request) => request(axios$194, basePath));
|
|
9017
9275
|
},
|
|
9018
9276
|
getCycleTime(cell, controller, options) {
|
|
9019
|
-
return localVarFp.getCycleTime(cell, controller, options).then((request) => request(axios$
|
|
9277
|
+
return localVarFp.getCycleTime(cell, controller, options).then((request) => request(axios$194, basePath));
|
|
9020
9278
|
},
|
|
9021
9279
|
getVirtualControllerBehavior(cell, controller, options) {
|
|
9022
|
-
return localVarFp.getVirtualControllerBehavior(cell, controller, options).then((request) => request(axios$
|
|
9280
|
+
return localVarFp.getVirtualControllerBehavior(cell, controller, options).then((request) => request(axios$194, basePath));
|
|
9023
9281
|
},
|
|
9024
9282
|
setVirtualControllerBehavior(cell, controller, behavior, options) {
|
|
9025
|
-
return localVarFp.setVirtualControllerBehavior(cell, controller, behavior, options).then((request) => request(axios$
|
|
9283
|
+
return localVarFp.setVirtualControllerBehavior(cell, controller, behavior, options).then((request) => request(axios$194, basePath));
|
|
9026
9284
|
}
|
|
9027
9285
|
};
|
|
9028
9286
|
};
|
|
@@ -9184,36 +9442,36 @@ const VirtualControllerInputsOutputsApiFp = function(configuration) {
|
|
|
9184
9442
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listIOs(cell, controller, ios, options);
|
|
9185
9443
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9186
9444
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerInputsOutputsApi.listIOs"]?.[localVarOperationServerIndex]?.url;
|
|
9187
|
-
return (axios$
|
|
9445
|
+
return (axios$195, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$195, localVarOperationServerBasePath || basePath);
|
|
9188
9446
|
},
|
|
9189
9447
|
async listVirtualControllerIODescriptions(cell, controller, ios, direction, valueType, group, options) {
|
|
9190
9448
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listVirtualControllerIODescriptions(cell, controller, ios, direction, valueType, group, options);
|
|
9191
9449
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9192
9450
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerInputsOutputsApi.listVirtualControllerIODescriptions"]?.[localVarOperationServerIndex]?.url;
|
|
9193
|
-
return (axios$
|
|
9451
|
+
return (axios$196, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$196, localVarOperationServerBasePath || basePath);
|
|
9194
9452
|
},
|
|
9195
9453
|
async setIOValues(cell, controller, iOValue, options) {
|
|
9196
9454
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setIOValues(cell, controller, iOValue, options);
|
|
9197
9455
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9198
9456
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerInputsOutputsApi.setIOValues"]?.[localVarOperationServerIndex]?.url;
|
|
9199
|
-
return (axios$
|
|
9457
|
+
return (axios$197, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$197, localVarOperationServerBasePath || basePath);
|
|
9200
9458
|
}
|
|
9201
9459
|
};
|
|
9202
9460
|
};
|
|
9203
9461
|
/**
|
|
9204
9462
|
* VirtualControllerInputsOutputsApi - factory interface
|
|
9205
9463
|
*/
|
|
9206
|
-
const VirtualControllerInputsOutputsApiFactory = function(configuration, basePath, axios$
|
|
9464
|
+
const VirtualControllerInputsOutputsApiFactory = function(configuration, basePath, axios$198) {
|
|
9207
9465
|
const localVarFp = VirtualControllerInputsOutputsApiFp(configuration);
|
|
9208
9466
|
return {
|
|
9209
9467
|
listIOs(cell, controller, ios, options) {
|
|
9210
|
-
return localVarFp.listIOs(cell, controller, ios, options).then((request) => request(axios$
|
|
9468
|
+
return localVarFp.listIOs(cell, controller, ios, options).then((request) => request(axios$198, basePath));
|
|
9211
9469
|
},
|
|
9212
9470
|
listVirtualControllerIODescriptions(cell, controller, ios, direction, valueType, group, options) {
|
|
9213
|
-
return localVarFp.listVirtualControllerIODescriptions(cell, controller, ios, direction, valueType, group, options).then((request) => request(axios$
|
|
9471
|
+
return localVarFp.listVirtualControllerIODescriptions(cell, controller, ios, direction, valueType, group, options).then((request) => request(axios$198, basePath));
|
|
9214
9472
|
},
|
|
9215
9473
|
setIOValues(cell, controller, iOValue, options) {
|
|
9216
|
-
return localVarFp.setIOValues(cell, controller, iOValue, options).then((request) => request(axios$
|
|
9474
|
+
return localVarFp.setIOValues(cell, controller, iOValue, options).then((request) => request(axios$198, basePath));
|
|
9217
9475
|
}
|
|
9218
9476
|
};
|
|
9219
9477
|
};
|
|
@@ -9265,7 +9523,7 @@ var VirtualControllerInputsOutputsApi = class extends BaseAPI {
|
|
|
9265
9523
|
//#region v2/configuration.ts
|
|
9266
9524
|
var Configuration = class {
|
|
9267
9525
|
constructor(param = {}) {
|
|
9268
|
-
|
|
9526
|
+
_defineProperty(
|
|
9269
9527
|
this,
|
|
9270
9528
|
/**
|
|
9271
9529
|
* parameter for apiKey security
|
|
@@ -9274,7 +9532,7 @@ var Configuration = class {
|
|
|
9274
9532
|
"apiKey",
|
|
9275
9533
|
void 0
|
|
9276
9534
|
);
|
|
9277
|
-
|
|
9535
|
+
_defineProperty(
|
|
9278
9536
|
this,
|
|
9279
9537
|
/**
|
|
9280
9538
|
* parameter for basic security
|
|
@@ -9282,7 +9540,7 @@ var Configuration = class {
|
|
|
9282
9540
|
"username",
|
|
9283
9541
|
void 0
|
|
9284
9542
|
);
|
|
9285
|
-
|
|
9543
|
+
_defineProperty(
|
|
9286
9544
|
this,
|
|
9287
9545
|
/**
|
|
9288
9546
|
* parameter for basic security
|
|
@@ -9290,7 +9548,7 @@ var Configuration = class {
|
|
|
9290
9548
|
"password",
|
|
9291
9549
|
void 0
|
|
9292
9550
|
);
|
|
9293
|
-
|
|
9551
|
+
_defineProperty(
|
|
9294
9552
|
this,
|
|
9295
9553
|
/**
|
|
9296
9554
|
* parameter for oauth2 security
|
|
@@ -9300,7 +9558,7 @@ var Configuration = class {
|
|
|
9300
9558
|
"accessToken",
|
|
9301
9559
|
void 0
|
|
9302
9560
|
);
|
|
9303
|
-
|
|
9561
|
+
_defineProperty(
|
|
9304
9562
|
this,
|
|
9305
9563
|
/**
|
|
9306
9564
|
* parameter for aws4 signature security
|
|
@@ -9315,7 +9573,7 @@ var Configuration = class {
|
|
|
9315
9573
|
"awsv4",
|
|
9316
9574
|
void 0
|
|
9317
9575
|
);
|
|
9318
|
-
|
|
9576
|
+
_defineProperty(
|
|
9319
9577
|
this,
|
|
9320
9578
|
/**
|
|
9321
9579
|
* override base path
|
|
@@ -9323,7 +9581,7 @@ var Configuration = class {
|
|
|
9323
9581
|
"basePath",
|
|
9324
9582
|
void 0
|
|
9325
9583
|
);
|
|
9326
|
-
|
|
9584
|
+
_defineProperty(
|
|
9327
9585
|
this,
|
|
9328
9586
|
/**
|
|
9329
9587
|
* override server index
|
|
@@ -9331,7 +9589,7 @@ var Configuration = class {
|
|
|
9331
9589
|
"serverIndex",
|
|
9332
9590
|
void 0
|
|
9333
9591
|
);
|
|
9334
|
-
|
|
9592
|
+
_defineProperty(
|
|
9335
9593
|
this,
|
|
9336
9594
|
/**
|
|
9337
9595
|
* base options for axios calls
|
|
@@ -9339,7 +9597,7 @@ var Configuration = class {
|
|
|
9339
9597
|
"baseOptions",
|
|
9340
9598
|
void 0
|
|
9341
9599
|
);
|
|
9342
|
-
|
|
9600
|
+
_defineProperty(
|
|
9343
9601
|
this,
|
|
9344
9602
|
/**
|
|
9345
9603
|
* The FormData constructor that will be used to create multipart form data
|
|
@@ -9395,6 +9653,8 @@ exports.BlendingAutoBlendingNameEnum = BlendingAutoBlendingNameEnum;
|
|
|
9395
9653
|
exports.BlendingPositionBlendingNameEnum = BlendingPositionBlendingNameEnum;
|
|
9396
9654
|
exports.BlendingSpace = BlendingSpace;
|
|
9397
9655
|
exports.BooleanValueValueTypeEnum = BooleanValueValueTypeEnum;
|
|
9656
|
+
exports.BostondynamicsControllerKindEnum = BostondynamicsControllerKindEnum;
|
|
9657
|
+
exports.BostondynamicsControllerRobotTypeEnum = BostondynamicsControllerRobotTypeEnum;
|
|
9398
9658
|
exports.BoxBoxTypeEnum = BoxBoxTypeEnum;
|
|
9399
9659
|
exports.BoxShapeTypeEnum = BoxShapeTypeEnum;
|
|
9400
9660
|
exports.BusIOModbusClientBusTypeEnum = BusIOModbusClientBusTypeEnum;
|
|
@@ -9577,6 +9837,7 @@ exports.SessionApiAxiosParamCreator = SessionApiAxiosParamCreator;
|
|
|
9577
9837
|
exports.SessionApiFactory = SessionApiFactory;
|
|
9578
9838
|
exports.SessionApiFp = SessionApiFp;
|
|
9579
9839
|
exports.SettableRobotSystemMode = SettableRobotSystemMode;
|
|
9840
|
+
exports.SingularityHandling = SingularityHandling;
|
|
9580
9841
|
exports.SingularityTypeEnum = SingularityTypeEnum;
|
|
9581
9842
|
exports.Snap7IOArea = Snap7IOArea;
|
|
9582
9843
|
exports.Snap7IODirection = Snap7IODirection;
|
|
@@ -9627,6 +9888,8 @@ exports.TrajectoryPlanningApiFp = TrajectoryPlanningApiFp;
|
|
|
9627
9888
|
exports.TrajectoryRunningKindEnum = TrajectoryRunningKindEnum;
|
|
9628
9889
|
exports.TrajectoryWaitForIOKindEnum = TrajectoryWaitForIOKindEnum;
|
|
9629
9890
|
exports.UnitType = UnitType;
|
|
9891
|
+
exports.UnitreeControllerKindEnum = UnitreeControllerKindEnum;
|
|
9892
|
+
exports.UnitreeControllerRobotTypeEnum = UnitreeControllerRobotTypeEnum;
|
|
9630
9893
|
exports.UniversalrobotsControllerKindEnum = UniversalrobotsControllerKindEnum;
|
|
9631
9894
|
exports.VersionApi = VersionApi;
|
|
9632
9895
|
exports.VersionApiAxiosParamCreator = VersionApiAxiosParamCreator;
|