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