@wandelbots/nova-api 26.6.0-dev.6 → 26.6.0-dev.60
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 +399 -236
- package/dist/v2/index.d.cts +321 -36
- package/dist/v2/index.d.ts +321 -36
- package/dist/v2/index.js +152 -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$197 = axios.default) {
|
|
15
74
|
this.basePath = basePath;
|
|
16
|
-
this.axios = axios$
|
|
17
|
-
|
|
75
|
+
this.axios = axios$197;
|
|
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
|
};
|
|
@@ -540,6 +603,13 @@ const UnitType = {
|
|
|
540
603
|
UnitNewtonMeter: "UNIT_NEWTON_METER",
|
|
541
604
|
UnitMeter: "UNIT_METER"
|
|
542
605
|
};
|
|
606
|
+
const UnitreeControllerKindEnum = { UnitreeController: "UnitreeController" };
|
|
607
|
+
const UnitreeControllerRobotTypeEnum = {
|
|
608
|
+
Go2: "go2",
|
|
609
|
+
G1: "g1",
|
|
610
|
+
B2: "b2",
|
|
611
|
+
H1: "h1"
|
|
612
|
+
};
|
|
543
613
|
const UniversalrobotsControllerKindEnum = { UniversalrobotsController: "UniversalrobotsController" };
|
|
544
614
|
const VirtualControllerKindEnum = { VirtualController: "VirtualController" };
|
|
545
615
|
const YaskawaControllerKindEnum = { YaskawaController: "YaskawaController" };
|
|
@@ -1306,7 +1376,7 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
|
|
|
1306
1376
|
options: localVarRequestOptions
|
|
1307
1377
|
};
|
|
1308
1378
|
},
|
|
1309
|
-
getProfinetIOsFromFile: async (cell, inputOffset, outputOffset, options = {}) => {
|
|
1379
|
+
getProfinetIOsFromFile: async (cell, offsets, inputOffset, outputOffset, options = {}) => {
|
|
1310
1380
|
assertParamExists("getProfinetIOsFromFile", "cell", cell);
|
|
1311
1381
|
const localVarPath = `/cells/{cell}/bus-ios/profinet/iofile`.replace(`{cell}`, encodeURIComponent(String(cell)));
|
|
1312
1382
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -1320,6 +1390,7 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
|
|
|
1320
1390
|
const localVarHeaderParameter = {};
|
|
1321
1391
|
const localVarQueryParameter = {};
|
|
1322
1392
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1393
|
+
if (offsets) localVarQueryParameter["offsets"] = offsets.join(COLLECTION_FORMATS.csv);
|
|
1323
1394
|
if (inputOffset !== void 0) localVarQueryParameter["input_offset"] = inputOffset;
|
|
1324
1395
|
if (outputOffset !== void 0) localVarQueryParameter["output_offset"] = outputOffset;
|
|
1325
1396
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -1600,8 +1671,8 @@ const BUSInputsOutputsApiFp = function(configuration) {
|
|
|
1600
1671
|
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.getProfinetGSDML"]?.[localVarOperationServerIndex]?.url;
|
|
1601
1672
|
return (axios$23, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$23, localVarOperationServerBasePath || basePath);
|
|
1602
1673
|
},
|
|
1603
|
-
async getProfinetIOsFromFile(cell, inputOffset, outputOffset, options) {
|
|
1604
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getProfinetIOsFromFile(cell, inputOffset, outputOffset, options);
|
|
1674
|
+
async getProfinetIOsFromFile(cell, offsets, inputOffset, outputOffset, options) {
|
|
1675
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getProfinetIOsFromFile(cell, offsets, inputOffset, outputOffset, options);
|
|
1605
1676
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1606
1677
|
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.getProfinetIOsFromFile"]?.[localVarOperationServerIndex]?.url;
|
|
1607
1678
|
return (axios$24, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$24, localVarOperationServerBasePath || basePath);
|
|
@@ -1698,8 +1769,8 @@ const BUSInputsOutputsApiFactory = function(configuration, basePath, axios$31) {
|
|
|
1698
1769
|
getProfinetGSDML(cell, options) {
|
|
1699
1770
|
return localVarFp.getProfinetGSDML(cell, options).then((request) => request(axios$31, basePath));
|
|
1700
1771
|
},
|
|
1701
|
-
getProfinetIOsFromFile(cell, inputOffset, outputOffset, options) {
|
|
1702
|
-
return localVarFp.getProfinetIOsFromFile(cell, inputOffset, outputOffset, options).then((request) => request(axios$31, basePath));
|
|
1772
|
+
getProfinetIOsFromFile(cell, offsets, inputOffset, outputOffset, options) {
|
|
1773
|
+
return localVarFp.getProfinetIOsFromFile(cell, offsets, inputOffset, outputOffset, options).then((request) => request(axios$31, basePath));
|
|
1703
1774
|
},
|
|
1704
1775
|
listBusIODescriptions(cell, options) {
|
|
1705
1776
|
return localVarFp.listBusIODescriptions(cell, options).then((request) => request(axios$31, basePath));
|
|
@@ -1899,16 +1970,17 @@ var BUSInputsOutputsApi = class extends BaseAPI {
|
|
|
1899
1970
|
return BUSInputsOutputsApiFp(this.configuration).getProfinetGSDML(cell, options).then((request) => request(this.axios, this.basePath));
|
|
1900
1971
|
}
|
|
1901
1972
|
/**
|
|
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
|
|
1973
|
+
* **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
1974
|
* @summary PROFINET Inputs/Outputs to File
|
|
1904
1975
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
1976
|
+
* @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
1977
|
* @param {number} [inputOffset]
|
|
1906
1978
|
* @param {number} [outputOffset]
|
|
1907
1979
|
* @param {*} [options] Override http request option.
|
|
1908
1980
|
* @throws {RequiredError}
|
|
1909
1981
|
*/
|
|
1910
|
-
getProfinetIOsFromFile(cell, inputOffset, outputOffset, options) {
|
|
1911
|
-
return BUSInputsOutputsApiFp(this.configuration).getProfinetIOsFromFile(cell, inputOffset, outputOffset, options).then((request) => request(this.axios, this.basePath));
|
|
1982
|
+
getProfinetIOsFromFile(cell, offsets, inputOffset, outputOffset, options) {
|
|
1983
|
+
return BUSInputsOutputsApiFp(this.configuration).getProfinetIOsFromFile(cell, offsets, inputOffset, outputOffset, options).then((request) => request(this.axios, this.basePath));
|
|
1912
1984
|
}
|
|
1913
1985
|
/**
|
|
1914
1986
|
* **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 +2433,7 @@ var CellApi = class extends BaseAPI {
|
|
|
2361
2433
|
return CellApiFp(this.configuration).deployCell(cell, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
2362
2434
|
}
|
|
2363
2435
|
/**
|
|
2364
|
-
* **Required permissions:** `
|
|
2436
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ List all cell resources.
|
|
2365
2437
|
* @summary Configuration
|
|
2366
2438
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
2367
2439
|
* @param {*} [options] Override http request option.
|
|
@@ -4210,7 +4282,7 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
|
|
|
4210
4282
|
copyMotionGroupModel: async (motionGroupModel, copyMotionGroupModelRequest, options = {}) => {
|
|
4211
4283
|
assertParamExists("copyMotionGroupModel", "motionGroupModel", motionGroupModel);
|
|
4212
4284
|
assertParamExists("copyMotionGroupModel", "copyMotionGroupModelRequest", copyMotionGroupModelRequest);
|
|
4213
|
-
const localVarPath = `/experimental/motion-group-models/{motion-group-model}`.replace(`{motion-group-model}`, encodeURIComponent(String(motionGroupModel)));
|
|
4285
|
+
const localVarPath = `/experimental/motion-group-models/{motion-group-model}/archive`.replace(`{motion-group-model}`, encodeURIComponent(String(motionGroupModel)));
|
|
4214
4286
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4215
4287
|
let baseOptions;
|
|
4216
4288
|
if (configuration) baseOptions = configuration.baseOptions;
|
|
@@ -4238,7 +4310,7 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
|
|
|
4238
4310
|
},
|
|
4239
4311
|
deleteExperimentalMotionGroupModel: async (motionGroupModel, options = {}) => {
|
|
4240
4312
|
assertParamExists("deleteExperimentalMotionGroupModel", "motionGroupModel", motionGroupModel);
|
|
4241
|
-
const localVarPath = `/experimental/motion-group-models/{motion-group-model}`.replace(`{motion-group-model}`, encodeURIComponent(String(motionGroupModel)));
|
|
4313
|
+
const localVarPath = `/experimental/motion-group-models/{motion-group-model}/archive`.replace(`{motion-group-model}`, encodeURIComponent(String(motionGroupModel)));
|
|
4242
4314
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4243
4315
|
let baseOptions;
|
|
4244
4316
|
if (configuration) baseOptions = configuration.baseOptions;
|
|
@@ -4264,7 +4336,33 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
|
|
|
4264
4336
|
},
|
|
4265
4337
|
exportMotionGroupModel: async (motionGroupModel, options = {}) => {
|
|
4266
4338
|
assertParamExists("exportMotionGroupModel", "motionGroupModel", motionGroupModel);
|
|
4267
|
-
const localVarPath = `/experimental/motion-group-models/{motion-group-model}`.replace(`{motion-group-model}`, encodeURIComponent(String(motionGroupModel)));
|
|
4339
|
+
const localVarPath = `/experimental/motion-group-models/{motion-group-model}/archive`.replace(`{motion-group-model}`, encodeURIComponent(String(motionGroupModel)));
|
|
4340
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4341
|
+
let baseOptions;
|
|
4342
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
4343
|
+
const localVarRequestOptions = {
|
|
4344
|
+
method: "GET",
|
|
4345
|
+
...baseOptions,
|
|
4346
|
+
...options
|
|
4347
|
+
};
|
|
4348
|
+
const localVarHeaderParameter = {};
|
|
4349
|
+
const localVarQueryParameter = {};
|
|
4350
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
4351
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4352
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4353
|
+
localVarRequestOptions.headers = {
|
|
4354
|
+
...localVarHeaderParameter,
|
|
4355
|
+
...headersFromBaseOptions,
|
|
4356
|
+
...options.headers
|
|
4357
|
+
};
|
|
4358
|
+
return {
|
|
4359
|
+
url: toPathString(localVarUrlObj),
|
|
4360
|
+
options: localVarRequestOptions
|
|
4361
|
+
};
|
|
4362
|
+
},
|
|
4363
|
+
getConfigurationForMotionGroup: async (motionGroupModel, options = {}) => {
|
|
4364
|
+
assertParamExists("getConfigurationForMotionGroup", "motionGroupModel", motionGroupModel);
|
|
4365
|
+
const localVarPath = `/motion-group-models/{motion-group-model}/configuration`.replace(`{motion-group-model}`, encodeURIComponent(String(motionGroupModel)));
|
|
4268
4366
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4269
4367
|
let baseOptions;
|
|
4270
4368
|
if (configuration) baseOptions = configuration.baseOptions;
|
|
@@ -4547,103 +4645,112 @@ const MotionGroupModelsApiFp = function(configuration) {
|
|
|
4547
4645
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.exportMotionGroupModel"]?.[localVarOperationServerIndex]?.url;
|
|
4548
4646
|
return (axios$83, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$83, localVarOperationServerBasePath || basePath);
|
|
4549
4647
|
},
|
|
4648
|
+
async getConfigurationForMotionGroup(motionGroupModel, options) {
|
|
4649
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getConfigurationForMotionGroup(motionGroupModel, options);
|
|
4650
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4651
|
+
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getConfigurationForMotionGroup"]?.[localVarOperationServerIndex]?.url;
|
|
4652
|
+
return (axios$84, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$84, localVarOperationServerBasePath || basePath);
|
|
4653
|
+
},
|
|
4550
4654
|
async getMotionGroupCollisionModel(motionGroupModel, options) {
|
|
4551
4655
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupCollisionModel(motionGroupModel, options);
|
|
4552
4656
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4553
4657
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupCollisionModel"]?.[localVarOperationServerIndex]?.url;
|
|
4554
|
-
return (axios$
|
|
4658
|
+
return (axios$85, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$85, localVarOperationServerBasePath || basePath);
|
|
4555
4659
|
},
|
|
4556
4660
|
async getMotionGroupDynamicModel(motionGroupModel, options) {
|
|
4557
4661
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupDynamicModel(motionGroupModel, options);
|
|
4558
4662
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4559
4663
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupDynamicModel"]?.[localVarOperationServerIndex]?.url;
|
|
4560
|
-
return (axios$
|
|
4664
|
+
return (axios$86, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$86, localVarOperationServerBasePath || basePath);
|
|
4561
4665
|
},
|
|
4562
4666
|
async getMotionGroupGlbModel(motionGroupModel, options) {
|
|
4563
4667
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupGlbModel(motionGroupModel, options);
|
|
4564
4668
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4565
4669
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupGlbModel"]?.[localVarOperationServerIndex]?.url;
|
|
4566
|
-
return (axios$
|
|
4670
|
+
return (axios$87, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$87, localVarOperationServerBasePath || basePath);
|
|
4567
4671
|
},
|
|
4568
4672
|
async getMotionGroupHomejoints(motionGroupModel, options) {
|
|
4569
4673
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupHomejoints(motionGroupModel, options);
|
|
4570
4674
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4571
4675
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupHomejoints"]?.[localVarOperationServerIndex]?.url;
|
|
4572
|
-
return (axios$
|
|
4676
|
+
return (axios$88, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$88, localVarOperationServerBasePath || basePath);
|
|
4573
4677
|
},
|
|
4574
4678
|
async getMotionGroupKinematicModel(motionGroupModel, options) {
|
|
4575
4679
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupKinematicModel(motionGroupModel, options);
|
|
4576
4680
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4577
4681
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupKinematicModel"]?.[localVarOperationServerIndex]?.url;
|
|
4578
|
-
return (axios$
|
|
4682
|
+
return (axios$89, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$89, localVarOperationServerBasePath || basePath);
|
|
4579
4683
|
},
|
|
4580
4684
|
async getMotionGroupLimitModel(motionGroupModel, options) {
|
|
4581
4685
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupLimitModel(motionGroupModel, options);
|
|
4582
4686
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4583
4687
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupLimitModel"]?.[localVarOperationServerIndex]?.url;
|
|
4584
|
-
return (axios$
|
|
4688
|
+
return (axios$90, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$90, localVarOperationServerBasePath || basePath);
|
|
4585
4689
|
},
|
|
4586
4690
|
async getMotionGroupModels(options) {
|
|
4587
4691
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupModels(options);
|
|
4588
4692
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4589
4693
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupModels"]?.[localVarOperationServerIndex]?.url;
|
|
4590
|
-
return (axios$
|
|
4694
|
+
return (axios$91, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$91, localVarOperationServerBasePath || basePath);
|
|
4591
4695
|
},
|
|
4592
4696
|
async getMotionGroupUsdModel(motionGroupModel, options) {
|
|
4593
4697
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupUsdModel(motionGroupModel, options);
|
|
4594
4698
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4595
4699
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupUsdModel"]?.[localVarOperationServerIndex]?.url;
|
|
4596
|
-
return (axios$
|
|
4700
|
+
return (axios$92, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$92, localVarOperationServerBasePath || basePath);
|
|
4597
4701
|
},
|
|
4598
4702
|
async importMotionGroupModel(body, options) {
|
|
4599
4703
|
const localVarAxiosArgs = await localVarAxiosParamCreator.importMotionGroupModel(body, options);
|
|
4600
4704
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4601
4705
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.importMotionGroupModel"]?.[localVarOperationServerIndex]?.url;
|
|
4602
|
-
return (axios$
|
|
4706
|
+
return (axios$93, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$93, localVarOperationServerBasePath || basePath);
|
|
4603
4707
|
}
|
|
4604
4708
|
};
|
|
4605
4709
|
};
|
|
4606
4710
|
/**
|
|
4607
4711
|
* MotionGroupModelsApi - factory interface
|
|
4608
4712
|
*/
|
|
4609
|
-
const MotionGroupModelsApiFactory = function(configuration, basePath, axios$
|
|
4713
|
+
const MotionGroupModelsApiFactory = function(configuration, basePath, axios$94) {
|
|
4610
4714
|
const localVarFp = MotionGroupModelsApiFp(configuration);
|
|
4611
4715
|
return {
|
|
4612
4716
|
copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options) {
|
|
4613
|
-
return localVarFp.copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options).then((request) => request(axios$
|
|
4717
|
+
return localVarFp.copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options).then((request) => request(axios$94, basePath));
|
|
4614
4718
|
},
|
|
4615
4719
|
deleteExperimentalMotionGroupModel(motionGroupModel, options) {
|
|
4616
|
-
return localVarFp.deleteExperimentalMotionGroupModel(motionGroupModel, options).then((request) => request(axios$
|
|
4720
|
+
return localVarFp.deleteExperimentalMotionGroupModel(motionGroupModel, options).then((request) => request(axios$94, basePath));
|
|
4617
4721
|
},
|
|
4618
4722
|
exportMotionGroupModel(motionGroupModel, options) {
|
|
4619
|
-
return localVarFp.exportMotionGroupModel(motionGroupModel, options).then((request) => request(axios$
|
|
4723
|
+
return localVarFp.exportMotionGroupModel(motionGroupModel, options).then((request) => request(axios$94, basePath));
|
|
4724
|
+
},
|
|
4725
|
+
getConfigurationForMotionGroup(motionGroupModel, options) {
|
|
4726
|
+
return localVarFp.getConfigurationForMotionGroup(motionGroupModel, options).then((request) => request(axios$94, basePath));
|
|
4620
4727
|
},
|
|
4621
4728
|
getMotionGroupCollisionModel(motionGroupModel, options) {
|
|
4622
|
-
return localVarFp.getMotionGroupCollisionModel(motionGroupModel, options).then((request) => request(axios$
|
|
4729
|
+
return localVarFp.getMotionGroupCollisionModel(motionGroupModel, options).then((request) => request(axios$94, basePath));
|
|
4623
4730
|
},
|
|
4624
4731
|
getMotionGroupDynamicModel(motionGroupModel, options) {
|
|
4625
|
-
return localVarFp.getMotionGroupDynamicModel(motionGroupModel, options).then((request) => request(axios$
|
|
4732
|
+
return localVarFp.getMotionGroupDynamicModel(motionGroupModel, options).then((request) => request(axios$94, basePath));
|
|
4626
4733
|
},
|
|
4627
4734
|
getMotionGroupGlbModel(motionGroupModel, options) {
|
|
4628
|
-
return localVarFp.getMotionGroupGlbModel(motionGroupModel, options).then((request) => request(axios$
|
|
4735
|
+
return localVarFp.getMotionGroupGlbModel(motionGroupModel, options).then((request) => request(axios$94, basePath));
|
|
4629
4736
|
},
|
|
4630
4737
|
getMotionGroupHomejoints(motionGroupModel, options) {
|
|
4631
|
-
return localVarFp.getMotionGroupHomejoints(motionGroupModel, options).then((request) => request(axios$
|
|
4738
|
+
return localVarFp.getMotionGroupHomejoints(motionGroupModel, options).then((request) => request(axios$94, basePath));
|
|
4632
4739
|
},
|
|
4633
4740
|
getMotionGroupKinematicModel(motionGroupModel, options) {
|
|
4634
|
-
return localVarFp.getMotionGroupKinematicModel(motionGroupModel, options).then((request) => request(axios$
|
|
4741
|
+
return localVarFp.getMotionGroupKinematicModel(motionGroupModel, options).then((request) => request(axios$94, basePath));
|
|
4635
4742
|
},
|
|
4636
4743
|
getMotionGroupLimitModel(motionGroupModel, options) {
|
|
4637
|
-
return localVarFp.getMotionGroupLimitModel(motionGroupModel, options).then((request) => request(axios$
|
|
4744
|
+
return localVarFp.getMotionGroupLimitModel(motionGroupModel, options).then((request) => request(axios$94, basePath));
|
|
4638
4745
|
},
|
|
4639
4746
|
getMotionGroupModels(options) {
|
|
4640
|
-
return localVarFp.getMotionGroupModels(options).then((request) => request(axios$
|
|
4747
|
+
return localVarFp.getMotionGroupModels(options).then((request) => request(axios$94, basePath));
|
|
4641
4748
|
},
|
|
4642
4749
|
getMotionGroupUsdModel(motionGroupModel, options) {
|
|
4643
|
-
return localVarFp.getMotionGroupUsdModel(motionGroupModel, options).then((request) => request(axios$
|
|
4750
|
+
return localVarFp.getMotionGroupUsdModel(motionGroupModel, options).then((request) => request(axios$94, basePath));
|
|
4644
4751
|
},
|
|
4645
4752
|
importMotionGroupModel(body, options) {
|
|
4646
|
-
return localVarFp.importMotionGroupModel(body, options).then((request) => request(axios$
|
|
4753
|
+
return localVarFp.importMotionGroupModel(body, options).then((request) => request(axios$94, basePath));
|
|
4647
4754
|
}
|
|
4648
4755
|
};
|
|
4649
4756
|
};
|
|
@@ -4663,7 +4770,7 @@ var MotionGroupModelsApi = class extends BaseAPI {
|
|
|
4663
4770
|
return MotionGroupModelsApiFp(this.configuration).copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options).then((request) => request(this.axios, this.basePath));
|
|
4664
4771
|
}
|
|
4665
4772
|
/**
|
|
4666
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models
|
|
4773
|
+
* **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
4774
|
* @summary Delete Motion Group Model
|
|
4668
4775
|
* @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
4776
|
* @param {*} [options] Override http request option.
|
|
@@ -4683,6 +4790,16 @@ var MotionGroupModelsApi = class extends BaseAPI {
|
|
|
4683
4790
|
return MotionGroupModelsApiFp(this.configuration).exportMotionGroupModel(motionGroupModel, options).then((request) => request(this.axios, this.basePath));
|
|
4684
4791
|
}
|
|
4685
4792
|
/**
|
|
4793
|
+
* **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.
|
|
4794
|
+
* @summary Get Configuration for Motion Group
|
|
4795
|
+
* @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).
|
|
4796
|
+
* @param {*} [options] Override http request option.
|
|
4797
|
+
* @throws {RequiredError}
|
|
4798
|
+
*/
|
|
4799
|
+
getConfigurationForMotionGroup(motionGroupModel, options) {
|
|
4800
|
+
return MotionGroupModelsApiFp(this.configuration).getConfigurationForMotionGroup(motionGroupModel, options).then((request) => request(this.axios, this.basePath));
|
|
4801
|
+
}
|
|
4802
|
+
/**
|
|
4686
4803
|
* **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
4804
|
* @summary Get Collision Model
|
|
4688
4805
|
* @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 +4946,30 @@ const NOVACloudApiAxiosParamCreator = function(configuration) {
|
|
|
4829
4946
|
options: localVarRequestOptions
|
|
4830
4947
|
};
|
|
4831
4948
|
},
|
|
4949
|
+
getCloudStatus: async (options = {}) => {
|
|
4950
|
+
const localVarUrlObj = new URL(`/experimental/cloud/status`, DUMMY_BASE_URL);
|
|
4951
|
+
let baseOptions;
|
|
4952
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
4953
|
+
const localVarRequestOptions = {
|
|
4954
|
+
method: "GET",
|
|
4955
|
+
...baseOptions,
|
|
4956
|
+
...options
|
|
4957
|
+
};
|
|
4958
|
+
const localVarHeaderParameter = {};
|
|
4959
|
+
const localVarQueryParameter = {};
|
|
4960
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
4961
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4962
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4963
|
+
localVarRequestOptions.headers = {
|
|
4964
|
+
...localVarHeaderParameter,
|
|
4965
|
+
...headersFromBaseOptions,
|
|
4966
|
+
...options.headers
|
|
4967
|
+
};
|
|
4968
|
+
return {
|
|
4969
|
+
url: toPathString(localVarUrlObj),
|
|
4970
|
+
options: localVarRequestOptions
|
|
4971
|
+
};
|
|
4972
|
+
},
|
|
4832
4973
|
getNovaCloudConfig: async (options = {}) => {
|
|
4833
4974
|
const localVarUrlObj = new URL(`/experimental/cloud/config`, DUMMY_BASE_URL);
|
|
4834
4975
|
let baseOptions;
|
|
@@ -4865,36 +5006,45 @@ const NOVACloudApiFp = function(configuration) {
|
|
|
4865
5006
|
const localVarAxiosArgs = await localVarAxiosParamCreator.connectToNovaCloud(completionTimeout, cloudConnectionRequest, options);
|
|
4866
5007
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4867
5008
|
const localVarOperationServerBasePath = operationServerMap["NOVACloudApi.connectToNovaCloud"]?.[localVarOperationServerIndex]?.url;
|
|
4868
|
-
return (axios$
|
|
5009
|
+
return (axios$95, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$95, localVarOperationServerBasePath || basePath);
|
|
4869
5010
|
},
|
|
4870
5011
|
async disconnectFromNovaCloud(completionTimeout, options) {
|
|
4871
5012
|
const localVarAxiosArgs = await localVarAxiosParamCreator.disconnectFromNovaCloud(completionTimeout, options);
|
|
4872
5013
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4873
5014
|
const localVarOperationServerBasePath = operationServerMap["NOVACloudApi.disconnectFromNovaCloud"]?.[localVarOperationServerIndex]?.url;
|
|
4874
|
-
return (axios$
|
|
5015
|
+
return (axios$96, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$96, localVarOperationServerBasePath || basePath);
|
|
5016
|
+
},
|
|
5017
|
+
async getCloudStatus(options) {
|
|
5018
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getCloudStatus(options);
|
|
5019
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5020
|
+
const localVarOperationServerBasePath = operationServerMap["NOVACloudApi.getCloudStatus"]?.[localVarOperationServerIndex]?.url;
|
|
5021
|
+
return (axios$97, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$97, localVarOperationServerBasePath || basePath);
|
|
4875
5022
|
},
|
|
4876
5023
|
async getNovaCloudConfig(options) {
|
|
4877
5024
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getNovaCloudConfig(options);
|
|
4878
5025
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4879
5026
|
const localVarOperationServerBasePath = operationServerMap["NOVACloudApi.getNovaCloudConfig"]?.[localVarOperationServerIndex]?.url;
|
|
4880
|
-
return (axios$
|
|
5027
|
+
return (axios$98, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$98, localVarOperationServerBasePath || basePath);
|
|
4881
5028
|
}
|
|
4882
5029
|
};
|
|
4883
5030
|
};
|
|
4884
5031
|
/**
|
|
4885
5032
|
* NOVACloudApi - factory interface
|
|
4886
5033
|
*/
|
|
4887
|
-
const NOVACloudApiFactory = function(configuration, basePath, axios$
|
|
5034
|
+
const NOVACloudApiFactory = function(configuration, basePath, axios$99) {
|
|
4888
5035
|
const localVarFp = NOVACloudApiFp(configuration);
|
|
4889
5036
|
return {
|
|
4890
5037
|
connectToNovaCloud(completionTimeout, cloudConnectionRequest, options) {
|
|
4891
|
-
return localVarFp.connectToNovaCloud(completionTimeout, cloudConnectionRequest, options).then((request) => request(axios$
|
|
5038
|
+
return localVarFp.connectToNovaCloud(completionTimeout, cloudConnectionRequest, options).then((request) => request(axios$99, basePath));
|
|
4892
5039
|
},
|
|
4893
5040
|
disconnectFromNovaCloud(completionTimeout, options) {
|
|
4894
|
-
return localVarFp.disconnectFromNovaCloud(completionTimeout, options).then((request) => request(axios$
|
|
5041
|
+
return localVarFp.disconnectFromNovaCloud(completionTimeout, options).then((request) => request(axios$99, basePath));
|
|
5042
|
+
},
|
|
5043
|
+
getCloudStatus(options) {
|
|
5044
|
+
return localVarFp.getCloudStatus(options).then((request) => request(axios$99, basePath));
|
|
4895
5045
|
},
|
|
4896
5046
|
getNovaCloudConfig(options) {
|
|
4897
|
-
return localVarFp.getNovaCloudConfig(options).then((request) => request(axios$
|
|
5047
|
+
return localVarFp.getNovaCloudConfig(options).then((request) => request(axios$99, basePath));
|
|
4898
5048
|
}
|
|
4899
5049
|
};
|
|
4900
5050
|
};
|
|
@@ -4924,6 +5074,15 @@ var NOVACloudApi = class extends BaseAPI {
|
|
|
4924
5074
|
return NOVACloudApiFp(this.configuration).disconnectFromNovaCloud(completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
4925
5075
|
}
|
|
4926
5076
|
/**
|
|
5077
|
+
* **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.
|
|
5078
|
+
* @summary Get Connection Status
|
|
5079
|
+
* @param {*} [options] Override http request option.
|
|
5080
|
+
* @throws {RequiredError}
|
|
5081
|
+
*/
|
|
5082
|
+
getCloudStatus(options) {
|
|
5083
|
+
return NOVACloudApiFp(this.configuration).getCloudStatus(options).then((request) => request(this.axios, this.basePath));
|
|
5084
|
+
}
|
|
5085
|
+
/**
|
|
4927
5086
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection config for this instance.
|
|
4928
5087
|
* @summary Get Connection Config
|
|
4929
5088
|
* @param {*} [options] Override http request option.
|
|
@@ -5060,45 +5219,45 @@ const ProgramApiFp = function(configuration) {
|
|
|
5060
5219
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getProgram(cell, program, options);
|
|
5061
5220
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5062
5221
|
const localVarOperationServerBasePath = operationServerMap["ProgramApi.getProgram"]?.[localVarOperationServerIndex]?.url;
|
|
5063
|
-
return (axios$
|
|
5222
|
+
return (axios$100, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$100, localVarOperationServerBasePath || basePath);
|
|
5064
5223
|
},
|
|
5065
5224
|
async listPrograms(cell, options) {
|
|
5066
5225
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listPrograms(cell, options);
|
|
5067
5226
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5068
5227
|
const localVarOperationServerBasePath = operationServerMap["ProgramApi.listPrograms"]?.[localVarOperationServerIndex]?.url;
|
|
5069
|
-
return (axios$
|
|
5228
|
+
return (axios$101, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$101, localVarOperationServerBasePath || basePath);
|
|
5070
5229
|
},
|
|
5071
5230
|
async startProgram(cell, program, programStartRequest, options) {
|
|
5072
5231
|
const localVarAxiosArgs = await localVarAxiosParamCreator.startProgram(cell, program, programStartRequest, options);
|
|
5073
5232
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5074
5233
|
const localVarOperationServerBasePath = operationServerMap["ProgramApi.startProgram"]?.[localVarOperationServerIndex]?.url;
|
|
5075
|
-
return (axios$
|
|
5234
|
+
return (axios$102, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$102, localVarOperationServerBasePath || basePath);
|
|
5076
5235
|
},
|
|
5077
5236
|
async stopProgram(cell, program, options) {
|
|
5078
5237
|
const localVarAxiosArgs = await localVarAxiosParamCreator.stopProgram(cell, program, options);
|
|
5079
5238
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5080
5239
|
const localVarOperationServerBasePath = operationServerMap["ProgramApi.stopProgram"]?.[localVarOperationServerIndex]?.url;
|
|
5081
|
-
return (axios$
|
|
5240
|
+
return (axios$103, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$103, localVarOperationServerBasePath || basePath);
|
|
5082
5241
|
}
|
|
5083
5242
|
};
|
|
5084
5243
|
};
|
|
5085
5244
|
/**
|
|
5086
5245
|
* ProgramApi - factory interface
|
|
5087
5246
|
*/
|
|
5088
|
-
const ProgramApiFactory = function(configuration, basePath, axios$
|
|
5247
|
+
const ProgramApiFactory = function(configuration, basePath, axios$104) {
|
|
5089
5248
|
const localVarFp = ProgramApiFp(configuration);
|
|
5090
5249
|
return {
|
|
5091
5250
|
getProgram(cell, program, options) {
|
|
5092
|
-
return localVarFp.getProgram(cell, program, options).then((request) => request(axios$
|
|
5251
|
+
return localVarFp.getProgram(cell, program, options).then((request) => request(axios$104, basePath));
|
|
5093
5252
|
},
|
|
5094
5253
|
listPrograms(cell, options) {
|
|
5095
|
-
return localVarFp.listPrograms(cell, options).then((request) => request(axios$
|
|
5254
|
+
return localVarFp.listPrograms(cell, options).then((request) => request(axios$104, basePath));
|
|
5096
5255
|
},
|
|
5097
5256
|
startProgram(cell, program, programStartRequest, options) {
|
|
5098
|
-
return localVarFp.startProgram(cell, program, programStartRequest, options).then((request) => request(axios$
|
|
5257
|
+
return localVarFp.startProgram(cell, program, programStartRequest, options).then((request) => request(axios$104, basePath));
|
|
5099
5258
|
},
|
|
5100
5259
|
stopProgram(cell, program, options) {
|
|
5101
|
-
return localVarFp.stopProgram(cell, program, options).then((request) => request(axios$
|
|
5260
|
+
return localVarFp.stopProgram(cell, program, options).then((request) => request(axios$104, basePath));
|
|
5102
5261
|
}
|
|
5103
5262
|
};
|
|
5104
5263
|
};
|
|
@@ -5219,27 +5378,27 @@ const RobotConfigurationsApiFp = function(configuration) {
|
|
|
5219
5378
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getControllerConfigFromArpScan(robotControllerConfigurationRequest, options);
|
|
5220
5379
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5221
5380
|
const localVarOperationServerBasePath = operationServerMap["RobotConfigurationsApi.getControllerConfigFromArpScan"]?.[localVarOperationServerIndex]?.url;
|
|
5222
|
-
return (axios$
|
|
5381
|
+
return (axios$105, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$105, localVarOperationServerBasePath || basePath);
|
|
5223
5382
|
},
|
|
5224
5383
|
async getRobotConfigurations(options) {
|
|
5225
5384
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getRobotConfigurations(options);
|
|
5226
5385
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5227
5386
|
const localVarOperationServerBasePath = operationServerMap["RobotConfigurationsApi.getRobotConfigurations"]?.[localVarOperationServerIndex]?.url;
|
|
5228
|
-
return (axios$
|
|
5387
|
+
return (axios$106, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$106, localVarOperationServerBasePath || basePath);
|
|
5229
5388
|
}
|
|
5230
5389
|
};
|
|
5231
5390
|
};
|
|
5232
5391
|
/**
|
|
5233
5392
|
* RobotConfigurationsApi - factory interface
|
|
5234
5393
|
*/
|
|
5235
|
-
const RobotConfigurationsApiFactory = function(configuration, basePath, axios$
|
|
5394
|
+
const RobotConfigurationsApiFactory = function(configuration, basePath, axios$107) {
|
|
5236
5395
|
const localVarFp = RobotConfigurationsApiFp(configuration);
|
|
5237
5396
|
return {
|
|
5238
5397
|
getControllerConfigFromArpScan(robotControllerConfigurationRequest, options) {
|
|
5239
|
-
return localVarFp.getControllerConfigFromArpScan(robotControllerConfigurationRequest, options).then((request) => request(axios$
|
|
5398
|
+
return localVarFp.getControllerConfigFromArpScan(robotControllerConfigurationRequest, options).then((request) => request(axios$107, basePath));
|
|
5240
5399
|
},
|
|
5241
5400
|
getRobotConfigurations(options) {
|
|
5242
|
-
return localVarFp.getRobotConfigurations(options).then((request) => request(axios$
|
|
5401
|
+
return localVarFp.getRobotConfigurations(options).then((request) => request(axios$107, basePath));
|
|
5243
5402
|
}
|
|
5244
5403
|
};
|
|
5245
5404
|
};
|
|
@@ -5305,16 +5464,16 @@ const SessionApiFp = function(configuration) {
|
|
|
5305
5464
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getSession(options);
|
|
5306
5465
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5307
5466
|
const localVarOperationServerBasePath = operationServerMap["SessionApi.getSession"]?.[localVarOperationServerIndex]?.url;
|
|
5308
|
-
return (axios$
|
|
5467
|
+
return (axios$108, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$108, localVarOperationServerBasePath || basePath);
|
|
5309
5468
|
} };
|
|
5310
5469
|
};
|
|
5311
5470
|
/**
|
|
5312
5471
|
* SessionApi - factory interface
|
|
5313
5472
|
*/
|
|
5314
|
-
const SessionApiFactory = function(configuration, basePath, axios$
|
|
5473
|
+
const SessionApiFactory = function(configuration, basePath, axios$109) {
|
|
5315
5474
|
const localVarFp = SessionApiFp(configuration);
|
|
5316
5475
|
return { getSession(options) {
|
|
5317
|
-
return localVarFp.getSession(options).then((request) => request(axios$
|
|
5476
|
+
return localVarFp.getSession(options).then((request) => request(axios$109, basePath));
|
|
5318
5477
|
} };
|
|
5319
5478
|
};
|
|
5320
5479
|
/**
|
|
@@ -5756,144 +5915,144 @@ const StoreCollisionComponentsApiFp = function(configuration) {
|
|
|
5756
5915
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteStoredCollider(cell, collider, options);
|
|
5757
5916
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5758
5917
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.deleteStoredCollider"]?.[localVarOperationServerIndex]?.url;
|
|
5759
|
-
return (axios$
|
|
5918
|
+
return (axios$110, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$110, localVarOperationServerBasePath || basePath);
|
|
5760
5919
|
},
|
|
5761
5920
|
async deleteStoredCollisionLinkChain(cell, linkChain, options) {
|
|
5762
5921
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteStoredCollisionLinkChain(cell, linkChain, options);
|
|
5763
5922
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5764
5923
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.deleteStoredCollisionLinkChain"]?.[localVarOperationServerIndex]?.url;
|
|
5765
|
-
return (axios$
|
|
5924
|
+
return (axios$111, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$111, localVarOperationServerBasePath || basePath);
|
|
5766
5925
|
},
|
|
5767
5926
|
async deleteStoredCollisionTool(cell, tool, options) {
|
|
5768
5927
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteStoredCollisionTool(cell, tool, options);
|
|
5769
5928
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5770
5929
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.deleteStoredCollisionTool"]?.[localVarOperationServerIndex]?.url;
|
|
5771
|
-
return (axios$
|
|
5930
|
+
return (axios$112, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$112, localVarOperationServerBasePath || basePath);
|
|
5772
5931
|
},
|
|
5773
5932
|
async getStoredCollider(cell, collider, options) {
|
|
5774
5933
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getStoredCollider(cell, collider, options);
|
|
5775
5934
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5776
5935
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.getStoredCollider"]?.[localVarOperationServerIndex]?.url;
|
|
5777
|
-
return (axios$
|
|
5936
|
+
return (axios$113, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$113, localVarOperationServerBasePath || basePath);
|
|
5778
5937
|
},
|
|
5779
5938
|
async getStoredCollisionLinkChain(cell, linkChain, options) {
|
|
5780
5939
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getStoredCollisionLinkChain(cell, linkChain, options);
|
|
5781
5940
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5782
5941
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.getStoredCollisionLinkChain"]?.[localVarOperationServerIndex]?.url;
|
|
5783
|
-
return (axios$
|
|
5942
|
+
return (axios$114, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$114, localVarOperationServerBasePath || basePath);
|
|
5784
5943
|
},
|
|
5785
5944
|
async getStoredCollisionTool(cell, tool, options) {
|
|
5786
5945
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getStoredCollisionTool(cell, tool, options);
|
|
5787
5946
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5788
5947
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.getStoredCollisionTool"]?.[localVarOperationServerIndex]?.url;
|
|
5789
|
-
return (axios$
|
|
5948
|
+
return (axios$115, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$115, localVarOperationServerBasePath || basePath);
|
|
5790
5949
|
},
|
|
5791
5950
|
async listCollisionLinkChains(cell, options) {
|
|
5792
5951
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listCollisionLinkChains(cell, options);
|
|
5793
5952
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5794
5953
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listCollisionLinkChains"]?.[localVarOperationServerIndex]?.url;
|
|
5795
|
-
return (axios$
|
|
5954
|
+
return (axios$116, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$116, localVarOperationServerBasePath || basePath);
|
|
5796
5955
|
},
|
|
5797
5956
|
async listCollisionLinkChainsKeys(cell, options) {
|
|
5798
5957
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listCollisionLinkChainsKeys(cell, options);
|
|
5799
5958
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5800
5959
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listCollisionLinkChainsKeys"]?.[localVarOperationServerIndex]?.url;
|
|
5801
|
-
return (axios$
|
|
5960
|
+
return (axios$117, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$117, localVarOperationServerBasePath || basePath);
|
|
5802
5961
|
},
|
|
5803
5962
|
async listStoredColliders(cell, options) {
|
|
5804
5963
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredColliders(cell, options);
|
|
5805
5964
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5806
5965
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listStoredColliders"]?.[localVarOperationServerIndex]?.url;
|
|
5807
|
-
return (axios$
|
|
5966
|
+
return (axios$118, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$118, localVarOperationServerBasePath || basePath);
|
|
5808
5967
|
},
|
|
5809
5968
|
async listStoredCollidersKeys(cell, options) {
|
|
5810
5969
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredCollidersKeys(cell, options);
|
|
5811
5970
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5812
5971
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listStoredCollidersKeys"]?.[localVarOperationServerIndex]?.url;
|
|
5813
|
-
return (axios$
|
|
5972
|
+
return (axios$119, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$119, localVarOperationServerBasePath || basePath);
|
|
5814
5973
|
},
|
|
5815
5974
|
async listStoredCollisionTools(cell, options) {
|
|
5816
5975
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredCollisionTools(cell, options);
|
|
5817
5976
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5818
5977
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listStoredCollisionTools"]?.[localVarOperationServerIndex]?.url;
|
|
5819
|
-
return (axios$
|
|
5978
|
+
return (axios$120, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$120, localVarOperationServerBasePath || basePath);
|
|
5820
5979
|
},
|
|
5821
5980
|
async listStoredCollisionToolsKeys(cell, options) {
|
|
5822
5981
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredCollisionToolsKeys(cell, options);
|
|
5823
5982
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5824
5983
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listStoredCollisionToolsKeys"]?.[localVarOperationServerIndex]?.url;
|
|
5825
|
-
return (axios$
|
|
5984
|
+
return (axios$121, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$121, localVarOperationServerBasePath || basePath);
|
|
5826
5985
|
},
|
|
5827
5986
|
async storeCollider(cell, collider, collider2, options) {
|
|
5828
5987
|
const localVarAxiosArgs = await localVarAxiosParamCreator.storeCollider(cell, collider, collider2, options);
|
|
5829
5988
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5830
5989
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.storeCollider"]?.[localVarOperationServerIndex]?.url;
|
|
5831
|
-
return (axios$
|
|
5990
|
+
return (axios$122, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$122, localVarOperationServerBasePath || basePath);
|
|
5832
5991
|
},
|
|
5833
5992
|
async storeCollisionLinkChain(cell, linkChain, collider, options) {
|
|
5834
5993
|
const localVarAxiosArgs = await localVarAxiosParamCreator.storeCollisionLinkChain(cell, linkChain, collider, options);
|
|
5835
5994
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5836
5995
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.storeCollisionLinkChain"]?.[localVarOperationServerIndex]?.url;
|
|
5837
|
-
return (axios$
|
|
5996
|
+
return (axios$123, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$123, localVarOperationServerBasePath || basePath);
|
|
5838
5997
|
},
|
|
5839
5998
|
async storeCollisionTool(cell, tool, requestBody, options) {
|
|
5840
5999
|
const localVarAxiosArgs = await localVarAxiosParamCreator.storeCollisionTool(cell, tool, requestBody, options);
|
|
5841
6000
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5842
6001
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.storeCollisionTool"]?.[localVarOperationServerIndex]?.url;
|
|
5843
|
-
return (axios$
|
|
6002
|
+
return (axios$124, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$124, localVarOperationServerBasePath || basePath);
|
|
5844
6003
|
}
|
|
5845
6004
|
};
|
|
5846
6005
|
};
|
|
5847
6006
|
/**
|
|
5848
6007
|
* StoreCollisionComponentsApi - factory interface
|
|
5849
6008
|
*/
|
|
5850
|
-
const StoreCollisionComponentsApiFactory = function(configuration, basePath, axios$
|
|
6009
|
+
const StoreCollisionComponentsApiFactory = function(configuration, basePath, axios$125) {
|
|
5851
6010
|
const localVarFp = StoreCollisionComponentsApiFp(configuration);
|
|
5852
6011
|
return {
|
|
5853
6012
|
deleteStoredCollider(cell, collider, options) {
|
|
5854
|
-
return localVarFp.deleteStoredCollider(cell, collider, options).then((request) => request(axios$
|
|
6013
|
+
return localVarFp.deleteStoredCollider(cell, collider, options).then((request) => request(axios$125, basePath));
|
|
5855
6014
|
},
|
|
5856
6015
|
deleteStoredCollisionLinkChain(cell, linkChain, options) {
|
|
5857
|
-
return localVarFp.deleteStoredCollisionLinkChain(cell, linkChain, options).then((request) => request(axios$
|
|
6016
|
+
return localVarFp.deleteStoredCollisionLinkChain(cell, linkChain, options).then((request) => request(axios$125, basePath));
|
|
5858
6017
|
},
|
|
5859
6018
|
deleteStoredCollisionTool(cell, tool, options) {
|
|
5860
|
-
return localVarFp.deleteStoredCollisionTool(cell, tool, options).then((request) => request(axios$
|
|
6019
|
+
return localVarFp.deleteStoredCollisionTool(cell, tool, options).then((request) => request(axios$125, basePath));
|
|
5861
6020
|
},
|
|
5862
6021
|
getStoredCollider(cell, collider, options) {
|
|
5863
|
-
return localVarFp.getStoredCollider(cell, collider, options).then((request) => request(axios$
|
|
6022
|
+
return localVarFp.getStoredCollider(cell, collider, options).then((request) => request(axios$125, basePath));
|
|
5864
6023
|
},
|
|
5865
6024
|
getStoredCollisionLinkChain(cell, linkChain, options) {
|
|
5866
|
-
return localVarFp.getStoredCollisionLinkChain(cell, linkChain, options).then((request) => request(axios$
|
|
6025
|
+
return localVarFp.getStoredCollisionLinkChain(cell, linkChain, options).then((request) => request(axios$125, basePath));
|
|
5867
6026
|
},
|
|
5868
6027
|
getStoredCollisionTool(cell, tool, options) {
|
|
5869
|
-
return localVarFp.getStoredCollisionTool(cell, tool, options).then((request) => request(axios$
|
|
6028
|
+
return localVarFp.getStoredCollisionTool(cell, tool, options).then((request) => request(axios$125, basePath));
|
|
5870
6029
|
},
|
|
5871
6030
|
listCollisionLinkChains(cell, options) {
|
|
5872
|
-
return localVarFp.listCollisionLinkChains(cell, options).then((request) => request(axios$
|
|
6031
|
+
return localVarFp.listCollisionLinkChains(cell, options).then((request) => request(axios$125, basePath));
|
|
5873
6032
|
},
|
|
5874
6033
|
listCollisionLinkChainsKeys(cell, options) {
|
|
5875
|
-
return localVarFp.listCollisionLinkChainsKeys(cell, options).then((request) => request(axios$
|
|
6034
|
+
return localVarFp.listCollisionLinkChainsKeys(cell, options).then((request) => request(axios$125, basePath));
|
|
5876
6035
|
},
|
|
5877
6036
|
listStoredColliders(cell, options) {
|
|
5878
|
-
return localVarFp.listStoredColliders(cell, options).then((request) => request(axios$
|
|
6037
|
+
return localVarFp.listStoredColliders(cell, options).then((request) => request(axios$125, basePath));
|
|
5879
6038
|
},
|
|
5880
6039
|
listStoredCollidersKeys(cell, options) {
|
|
5881
|
-
return localVarFp.listStoredCollidersKeys(cell, options).then((request) => request(axios$
|
|
6040
|
+
return localVarFp.listStoredCollidersKeys(cell, options).then((request) => request(axios$125, basePath));
|
|
5882
6041
|
},
|
|
5883
6042
|
listStoredCollisionTools(cell, options) {
|
|
5884
|
-
return localVarFp.listStoredCollisionTools(cell, options).then((request) => request(axios$
|
|
6043
|
+
return localVarFp.listStoredCollisionTools(cell, options).then((request) => request(axios$125, basePath));
|
|
5885
6044
|
},
|
|
5886
6045
|
listStoredCollisionToolsKeys(cell, options) {
|
|
5887
|
-
return localVarFp.listStoredCollisionToolsKeys(cell, options).then((request) => request(axios$
|
|
6046
|
+
return localVarFp.listStoredCollisionToolsKeys(cell, options).then((request) => request(axios$125, basePath));
|
|
5888
6047
|
},
|
|
5889
6048
|
storeCollider(cell, collider, collider2, options) {
|
|
5890
|
-
return localVarFp.storeCollider(cell, collider, collider2, options).then((request) => request(axios$
|
|
6049
|
+
return localVarFp.storeCollider(cell, collider, collider2, options).then((request) => request(axios$125, basePath));
|
|
5891
6050
|
},
|
|
5892
6051
|
storeCollisionLinkChain(cell, linkChain, collider, options) {
|
|
5893
|
-
return localVarFp.storeCollisionLinkChain(cell, linkChain, collider, options).then((request) => request(axios$
|
|
6052
|
+
return localVarFp.storeCollisionLinkChain(cell, linkChain, collider, options).then((request) => request(axios$125, basePath));
|
|
5894
6053
|
},
|
|
5895
6054
|
storeCollisionTool(cell, tool, requestBody, options) {
|
|
5896
|
-
return localVarFp.storeCollisionTool(cell, tool, requestBody, options).then((request) => request(axios$
|
|
6055
|
+
return localVarFp.storeCollisionTool(cell, tool, requestBody, options).then((request) => request(axios$125, basePath));
|
|
5897
6056
|
}
|
|
5898
6057
|
};
|
|
5899
6058
|
};
|
|
@@ -6217,54 +6376,54 @@ const StoreCollisionSetupsApiFp = function(configuration) {
|
|
|
6217
6376
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteStoredCollisionSetup(cell, setup, options);
|
|
6218
6377
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6219
6378
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionSetupsApi.deleteStoredCollisionSetup"]?.[localVarOperationServerIndex]?.url;
|
|
6220
|
-
return (axios$
|
|
6379
|
+
return (axios$126, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$126, localVarOperationServerBasePath || basePath);
|
|
6221
6380
|
},
|
|
6222
6381
|
async getStoredCollisionSetup(cell, setup, options) {
|
|
6223
6382
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getStoredCollisionSetup(cell, setup, options);
|
|
6224
6383
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6225
6384
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionSetupsApi.getStoredCollisionSetup"]?.[localVarOperationServerIndex]?.url;
|
|
6226
|
-
return (axios$
|
|
6385
|
+
return (axios$127, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$127, localVarOperationServerBasePath || basePath);
|
|
6227
6386
|
},
|
|
6228
6387
|
async listStoredCollisionSetups(cell, options) {
|
|
6229
6388
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredCollisionSetups(cell, options);
|
|
6230
6389
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6231
6390
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionSetupsApi.listStoredCollisionSetups"]?.[localVarOperationServerIndex]?.url;
|
|
6232
|
-
return (axios$
|
|
6391
|
+
return (axios$128, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$128, localVarOperationServerBasePath || basePath);
|
|
6233
6392
|
},
|
|
6234
6393
|
async listStoredCollisionSetupsKeys(cell, options) {
|
|
6235
6394
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredCollisionSetupsKeys(cell, options);
|
|
6236
6395
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6237
6396
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionSetupsApi.listStoredCollisionSetupsKeys"]?.[localVarOperationServerIndex]?.url;
|
|
6238
|
-
return (axios$
|
|
6397
|
+
return (axios$129, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$129, localVarOperationServerBasePath || basePath);
|
|
6239
6398
|
},
|
|
6240
6399
|
async storeCollisionSetup(cell, setup, collisionSetup, options) {
|
|
6241
6400
|
const localVarAxiosArgs = await localVarAxiosParamCreator.storeCollisionSetup(cell, setup, collisionSetup, options);
|
|
6242
6401
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6243
6402
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionSetupsApi.storeCollisionSetup"]?.[localVarOperationServerIndex]?.url;
|
|
6244
|
-
return (axios$
|
|
6403
|
+
return (axios$130, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$130, localVarOperationServerBasePath || basePath);
|
|
6245
6404
|
}
|
|
6246
6405
|
};
|
|
6247
6406
|
};
|
|
6248
6407
|
/**
|
|
6249
6408
|
* StoreCollisionSetupsApi - factory interface
|
|
6250
6409
|
*/
|
|
6251
|
-
const StoreCollisionSetupsApiFactory = function(configuration, basePath, axios$
|
|
6410
|
+
const StoreCollisionSetupsApiFactory = function(configuration, basePath, axios$131) {
|
|
6252
6411
|
const localVarFp = StoreCollisionSetupsApiFp(configuration);
|
|
6253
6412
|
return {
|
|
6254
6413
|
deleteStoredCollisionSetup(cell, setup, options) {
|
|
6255
|
-
return localVarFp.deleteStoredCollisionSetup(cell, setup, options).then((request) => request(axios$
|
|
6414
|
+
return localVarFp.deleteStoredCollisionSetup(cell, setup, options).then((request) => request(axios$131, basePath));
|
|
6256
6415
|
},
|
|
6257
6416
|
getStoredCollisionSetup(cell, setup, options) {
|
|
6258
|
-
return localVarFp.getStoredCollisionSetup(cell, setup, options).then((request) => request(axios$
|
|
6417
|
+
return localVarFp.getStoredCollisionSetup(cell, setup, options).then((request) => request(axios$131, basePath));
|
|
6259
6418
|
},
|
|
6260
6419
|
listStoredCollisionSetups(cell, options) {
|
|
6261
|
-
return localVarFp.listStoredCollisionSetups(cell, options).then((request) => request(axios$
|
|
6420
|
+
return localVarFp.listStoredCollisionSetups(cell, options).then((request) => request(axios$131, basePath));
|
|
6262
6421
|
},
|
|
6263
6422
|
listStoredCollisionSetupsKeys(cell, options) {
|
|
6264
|
-
return localVarFp.listStoredCollisionSetupsKeys(cell, options).then((request) => request(axios$
|
|
6423
|
+
return localVarFp.listStoredCollisionSetupsKeys(cell, options).then((request) => request(axios$131, basePath));
|
|
6265
6424
|
},
|
|
6266
6425
|
storeCollisionSetup(cell, setup, collisionSetup, options) {
|
|
6267
|
-
return localVarFp.storeCollisionSetup(cell, setup, collisionSetup, options).then((request) => request(axios$
|
|
6426
|
+
return localVarFp.storeCollisionSetup(cell, setup, collisionSetup, options).then((request) => request(axios$131, basePath));
|
|
6268
6427
|
}
|
|
6269
6428
|
};
|
|
6270
6429
|
};
|
|
@@ -6509,63 +6668,63 @@ const StoreObjectApiFp = function(configuration) {
|
|
|
6509
6668
|
const localVarAxiosArgs = await localVarAxiosParamCreator.clearAllObjects(cell, options);
|
|
6510
6669
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6511
6670
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.clearAllObjects"]?.[localVarOperationServerIndex]?.url;
|
|
6512
|
-
return (axios$
|
|
6671
|
+
return (axios$132, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$132, localVarOperationServerBasePath || basePath);
|
|
6513
6672
|
},
|
|
6514
6673
|
async deleteObject(cell, key, options) {
|
|
6515
6674
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteObject(cell, key, options);
|
|
6516
6675
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6517
6676
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.deleteObject"]?.[localVarOperationServerIndex]?.url;
|
|
6518
|
-
return (axios$
|
|
6677
|
+
return (axios$133, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$133, localVarOperationServerBasePath || basePath);
|
|
6519
6678
|
},
|
|
6520
6679
|
async getObject(cell, key, options) {
|
|
6521
6680
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getObject(cell, key, options);
|
|
6522
6681
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6523
6682
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.getObject"]?.[localVarOperationServerIndex]?.url;
|
|
6524
|
-
return (axios$
|
|
6683
|
+
return (axios$134, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$134, localVarOperationServerBasePath || basePath);
|
|
6525
6684
|
},
|
|
6526
6685
|
async getObjectMetadata(cell, key, options) {
|
|
6527
6686
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getObjectMetadata(cell, key, options);
|
|
6528
6687
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6529
6688
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.getObjectMetadata"]?.[localVarOperationServerIndex]?.url;
|
|
6530
|
-
return (axios$
|
|
6689
|
+
return (axios$135, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$135, localVarOperationServerBasePath || basePath);
|
|
6531
6690
|
},
|
|
6532
6691
|
async listAllObjectKeys(cell, options) {
|
|
6533
6692
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listAllObjectKeys(cell, options);
|
|
6534
6693
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6535
6694
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.listAllObjectKeys"]?.[localVarOperationServerIndex]?.url;
|
|
6536
|
-
return (axios$
|
|
6695
|
+
return (axios$136, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$136, localVarOperationServerBasePath || basePath);
|
|
6537
6696
|
},
|
|
6538
6697
|
async storeObject(cell, key, xMetadata, anyValue, options) {
|
|
6539
6698
|
const localVarAxiosArgs = await localVarAxiosParamCreator.storeObject(cell, key, xMetadata, anyValue, options);
|
|
6540
6699
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6541
6700
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.storeObject"]?.[localVarOperationServerIndex]?.url;
|
|
6542
|
-
return (axios$
|
|
6701
|
+
return (axios$137, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$137, localVarOperationServerBasePath || basePath);
|
|
6543
6702
|
}
|
|
6544
6703
|
};
|
|
6545
6704
|
};
|
|
6546
6705
|
/**
|
|
6547
6706
|
* StoreObjectApi - factory interface
|
|
6548
6707
|
*/
|
|
6549
|
-
const StoreObjectApiFactory = function(configuration, basePath, axios$
|
|
6708
|
+
const StoreObjectApiFactory = function(configuration, basePath, axios$138) {
|
|
6550
6709
|
const localVarFp = StoreObjectApiFp(configuration);
|
|
6551
6710
|
return {
|
|
6552
6711
|
clearAllObjects(cell, options) {
|
|
6553
|
-
return localVarFp.clearAllObjects(cell, options).then((request) => request(axios$
|
|
6712
|
+
return localVarFp.clearAllObjects(cell, options).then((request) => request(axios$138, basePath));
|
|
6554
6713
|
},
|
|
6555
6714
|
deleteObject(cell, key, options) {
|
|
6556
|
-
return localVarFp.deleteObject(cell, key, options).then((request) => request(axios$
|
|
6715
|
+
return localVarFp.deleteObject(cell, key, options).then((request) => request(axios$138, basePath));
|
|
6557
6716
|
},
|
|
6558
6717
|
getObject(cell, key, options) {
|
|
6559
|
-
return localVarFp.getObject(cell, key, options).then((request) => request(axios$
|
|
6718
|
+
return localVarFp.getObject(cell, key, options).then((request) => request(axios$138, basePath));
|
|
6560
6719
|
},
|
|
6561
6720
|
getObjectMetadata(cell, key, options) {
|
|
6562
|
-
return localVarFp.getObjectMetadata(cell, key, options).then((request) => request(axios$
|
|
6721
|
+
return localVarFp.getObjectMetadata(cell, key, options).then((request) => request(axios$138, basePath));
|
|
6563
6722
|
},
|
|
6564
6723
|
listAllObjectKeys(cell, options) {
|
|
6565
|
-
return localVarFp.listAllObjectKeys(cell, options).then((request) => request(axios$
|
|
6724
|
+
return localVarFp.listAllObjectKeys(cell, options).then((request) => request(axios$138, basePath));
|
|
6566
6725
|
},
|
|
6567
6726
|
storeObject(cell, key, xMetadata, anyValue, options) {
|
|
6568
|
-
return localVarFp.storeObject(cell, key, xMetadata, anyValue, options).then((request) => request(axios$
|
|
6727
|
+
return localVarFp.storeObject(cell, key, xMetadata, anyValue, options).then((request) => request(axios$138, basePath));
|
|
6569
6728
|
}
|
|
6570
6729
|
};
|
|
6571
6730
|
};
|
|
@@ -6961,117 +7120,117 @@ const SystemApiFp = function(configuration) {
|
|
|
6961
7120
|
const localVarAxiosArgs = await localVarAxiosParamCreator.backupConfiguration(resources, metadata, options);
|
|
6962
7121
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6963
7122
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.backupConfiguration"]?.[localVarOperationServerIndex]?.url;
|
|
6964
|
-
return (axios$
|
|
7123
|
+
return (axios$139, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$139, localVarOperationServerBasePath || basePath);
|
|
6965
7124
|
},
|
|
6966
7125
|
async checkNovaVersionUpdate(channel, options) {
|
|
6967
7126
|
const localVarAxiosArgs = await localVarAxiosParamCreator.checkNovaVersionUpdate(channel, options);
|
|
6968
7127
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6969
7128
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.checkNovaVersionUpdate"]?.[localVarOperationServerIndex]?.url;
|
|
6970
|
-
return (axios$
|
|
7129
|
+
return (axios$140, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$140, localVarOperationServerBasePath || basePath);
|
|
6971
7130
|
},
|
|
6972
7131
|
async getArpScan(_interface, cidr, timeout, options) {
|
|
6973
7132
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getArpScan(_interface, cidr, timeout, options);
|
|
6974
7133
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6975
7134
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getArpScan"]?.[localVarOperationServerIndex]?.url;
|
|
6976
|
-
return (axios$
|
|
7135
|
+
return (axios$141, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$141, localVarOperationServerBasePath || basePath);
|
|
6977
7136
|
},
|
|
6978
7137
|
async getConfigurationBackupStatus(operationId, options) {
|
|
6979
7138
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getConfigurationBackupStatus(operationId, options);
|
|
6980
7139
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6981
7140
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getConfigurationBackupStatus"]?.[localVarOperationServerIndex]?.url;
|
|
6982
|
-
return (axios$
|
|
7141
|
+
return (axios$142, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$142, localVarOperationServerBasePath || basePath);
|
|
6983
7142
|
},
|
|
6984
7143
|
async getDiagnosePackage(options) {
|
|
6985
7144
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getDiagnosePackage(options);
|
|
6986
7145
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6987
7146
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getDiagnosePackage"]?.[localVarOperationServerIndex]?.url;
|
|
6988
|
-
return (axios$
|
|
7147
|
+
return (axios$143, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$143, localVarOperationServerBasePath || basePath);
|
|
6989
7148
|
},
|
|
6990
7149
|
async getNetworkInterfaces(options) {
|
|
6991
7150
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getNetworkInterfaces(options);
|
|
6992
7151
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6993
7152
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getNetworkInterfaces"]?.[localVarOperationServerIndex]?.url;
|
|
6994
|
-
return (axios$
|
|
7153
|
+
return (axios$144, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$144, localVarOperationServerBasePath || basePath);
|
|
6995
7154
|
},
|
|
6996
7155
|
async getNetworkState(options) {
|
|
6997
7156
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getNetworkState(options);
|
|
6998
7157
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6999
7158
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getNetworkState"]?.[localVarOperationServerIndex]?.url;
|
|
7000
|
-
return (axios$
|
|
7159
|
+
return (axios$145, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$145, localVarOperationServerBasePath || basePath);
|
|
7001
7160
|
},
|
|
7002
7161
|
async getSystemStatus(options) {
|
|
7003
7162
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getSystemStatus(options);
|
|
7004
7163
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7005
7164
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getSystemStatus"]?.[localVarOperationServerIndex]?.url;
|
|
7006
|
-
return (axios$
|
|
7165
|
+
return (axios$146, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$146, localVarOperationServerBasePath || basePath);
|
|
7007
7166
|
},
|
|
7008
7167
|
async getSystemVersion(options) {
|
|
7009
7168
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getSystemVersion(options);
|
|
7010
7169
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7011
7170
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getSystemVersion"]?.[localVarOperationServerIndex]?.url;
|
|
7012
|
-
return (axios$
|
|
7171
|
+
return (axios$147, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$147, localVarOperationServerBasePath || basePath);
|
|
7013
7172
|
},
|
|
7014
7173
|
async listConfigurationResources(options) {
|
|
7015
7174
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listConfigurationResources(options);
|
|
7016
7175
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7017
7176
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.listConfigurationResources"]?.[localVarOperationServerIndex]?.url;
|
|
7018
|
-
return (axios$
|
|
7177
|
+
return (axios$148, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$148, localVarOperationServerBasePath || basePath);
|
|
7019
7178
|
},
|
|
7020
7179
|
async restoreConfiguration(body, resources, options) {
|
|
7021
7180
|
const localVarAxiosArgs = await localVarAxiosParamCreator.restoreConfiguration(body, resources, options);
|
|
7022
7181
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7023
7182
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.restoreConfiguration"]?.[localVarOperationServerIndex]?.url;
|
|
7024
|
-
return (axios$
|
|
7183
|
+
return (axios$149, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$149, localVarOperationServerBasePath || basePath);
|
|
7025
7184
|
},
|
|
7026
7185
|
async updateNovaVersion(updateNovaVersionRequest, options) {
|
|
7027
7186
|
const localVarAxiosArgs = await localVarAxiosParamCreator.updateNovaVersion(updateNovaVersionRequest, options);
|
|
7028
7187
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7029
7188
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.updateNovaVersion"]?.[localVarOperationServerIndex]?.url;
|
|
7030
|
-
return (axios$
|
|
7189
|
+
return (axios$150, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$150, localVarOperationServerBasePath || basePath);
|
|
7031
7190
|
}
|
|
7032
7191
|
};
|
|
7033
7192
|
};
|
|
7034
7193
|
/**
|
|
7035
7194
|
* SystemApi - factory interface
|
|
7036
7195
|
*/
|
|
7037
|
-
const SystemApiFactory = function(configuration, basePath, axios$
|
|
7196
|
+
const SystemApiFactory = function(configuration, basePath, axios$151) {
|
|
7038
7197
|
const localVarFp = SystemApiFp(configuration);
|
|
7039
7198
|
return {
|
|
7040
7199
|
backupConfiguration(resources, metadata, options) {
|
|
7041
|
-
return localVarFp.backupConfiguration(resources, metadata, options).then((request) => request(axios$
|
|
7200
|
+
return localVarFp.backupConfiguration(resources, metadata, options).then((request) => request(axios$151, basePath));
|
|
7042
7201
|
},
|
|
7043
7202
|
checkNovaVersionUpdate(channel, options) {
|
|
7044
|
-
return localVarFp.checkNovaVersionUpdate(channel, options).then((request) => request(axios$
|
|
7203
|
+
return localVarFp.checkNovaVersionUpdate(channel, options).then((request) => request(axios$151, basePath));
|
|
7045
7204
|
},
|
|
7046
7205
|
getArpScan(_interface, cidr, timeout, options) {
|
|
7047
|
-
return localVarFp.getArpScan(_interface, cidr, timeout, options).then((request) => request(axios$
|
|
7206
|
+
return localVarFp.getArpScan(_interface, cidr, timeout, options).then((request) => request(axios$151, basePath));
|
|
7048
7207
|
},
|
|
7049
7208
|
getConfigurationBackupStatus(operationId, options) {
|
|
7050
|
-
return localVarFp.getConfigurationBackupStatus(operationId, options).then((request) => request(axios$
|
|
7209
|
+
return localVarFp.getConfigurationBackupStatus(operationId, options).then((request) => request(axios$151, basePath));
|
|
7051
7210
|
},
|
|
7052
7211
|
getDiagnosePackage(options) {
|
|
7053
|
-
return localVarFp.getDiagnosePackage(options).then((request) => request(axios$
|
|
7212
|
+
return localVarFp.getDiagnosePackage(options).then((request) => request(axios$151, basePath));
|
|
7054
7213
|
},
|
|
7055
7214
|
getNetworkInterfaces(options) {
|
|
7056
|
-
return localVarFp.getNetworkInterfaces(options).then((request) => request(axios$
|
|
7215
|
+
return localVarFp.getNetworkInterfaces(options).then((request) => request(axios$151, basePath));
|
|
7057
7216
|
},
|
|
7058
7217
|
getNetworkState(options) {
|
|
7059
|
-
return localVarFp.getNetworkState(options).then((request) => request(axios$
|
|
7218
|
+
return localVarFp.getNetworkState(options).then((request) => request(axios$151, basePath));
|
|
7060
7219
|
},
|
|
7061
7220
|
getSystemStatus(options) {
|
|
7062
|
-
return localVarFp.getSystemStatus(options).then((request) => request(axios$
|
|
7221
|
+
return localVarFp.getSystemStatus(options).then((request) => request(axios$151, basePath));
|
|
7063
7222
|
},
|
|
7064
7223
|
getSystemVersion(options) {
|
|
7065
|
-
return localVarFp.getSystemVersion(options).then((request) => request(axios$
|
|
7224
|
+
return localVarFp.getSystemVersion(options).then((request) => request(axios$151, basePath));
|
|
7066
7225
|
},
|
|
7067
7226
|
listConfigurationResources(options) {
|
|
7068
|
-
return localVarFp.listConfigurationResources(options).then((request) => request(axios$
|
|
7227
|
+
return localVarFp.listConfigurationResources(options).then((request) => request(axios$151, basePath));
|
|
7069
7228
|
},
|
|
7070
7229
|
restoreConfiguration(body, resources, options) {
|
|
7071
|
-
return localVarFp.restoreConfiguration(body, resources, options).then((request) => request(axios$
|
|
7230
|
+
return localVarFp.restoreConfiguration(body, resources, options).then((request) => request(axios$151, basePath));
|
|
7072
7231
|
},
|
|
7073
7232
|
updateNovaVersion(updateNovaVersionRequest, options) {
|
|
7074
|
-
return localVarFp.updateNovaVersion(updateNovaVersionRequest, options).then((request) => request(axios$
|
|
7233
|
+
return localVarFp.updateNovaVersion(updateNovaVersionRequest, options).then((request) => request(axios$151, basePath));
|
|
7075
7234
|
}
|
|
7076
7235
|
};
|
|
7077
7236
|
};
|
|
@@ -7355,54 +7514,54 @@ const TrajectoryCachingApiFp = function(configuration) {
|
|
|
7355
7514
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addTrajectory(cell, controller, addTrajectoryRequest, options);
|
|
7356
7515
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7357
7516
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryCachingApi.addTrajectory"]?.[localVarOperationServerIndex]?.url;
|
|
7358
|
-
return (axios$
|
|
7517
|
+
return (axios$152, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$152, localVarOperationServerBasePath || basePath);
|
|
7359
7518
|
},
|
|
7360
7519
|
async clearTrajectories(cell, controller, options) {
|
|
7361
7520
|
const localVarAxiosArgs = await localVarAxiosParamCreator.clearTrajectories(cell, controller, options);
|
|
7362
7521
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7363
7522
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryCachingApi.clearTrajectories"]?.[localVarOperationServerIndex]?.url;
|
|
7364
|
-
return (axios$
|
|
7523
|
+
return (axios$153, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$153, localVarOperationServerBasePath || basePath);
|
|
7365
7524
|
},
|
|
7366
7525
|
async deleteTrajectory(cell, controller, trajectory, options) {
|
|
7367
7526
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteTrajectory(cell, controller, trajectory, options);
|
|
7368
7527
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7369
7528
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryCachingApi.deleteTrajectory"]?.[localVarOperationServerIndex]?.url;
|
|
7370
|
-
return (axios$
|
|
7529
|
+
return (axios$154, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$154, localVarOperationServerBasePath || basePath);
|
|
7371
7530
|
},
|
|
7372
7531
|
async getTrajectory(cell, controller, trajectory, options) {
|
|
7373
7532
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getTrajectory(cell, controller, trajectory, options);
|
|
7374
7533
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7375
7534
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryCachingApi.getTrajectory"]?.[localVarOperationServerIndex]?.url;
|
|
7376
|
-
return (axios$
|
|
7535
|
+
return (axios$155, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$155, localVarOperationServerBasePath || basePath);
|
|
7377
7536
|
},
|
|
7378
7537
|
async listTrajectories(cell, controller, options) {
|
|
7379
7538
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listTrajectories(cell, controller, options);
|
|
7380
7539
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7381
7540
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryCachingApi.listTrajectories"]?.[localVarOperationServerIndex]?.url;
|
|
7382
|
-
return (axios$
|
|
7541
|
+
return (axios$156, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$156, localVarOperationServerBasePath || basePath);
|
|
7383
7542
|
}
|
|
7384
7543
|
};
|
|
7385
7544
|
};
|
|
7386
7545
|
/**
|
|
7387
7546
|
* TrajectoryCachingApi - factory interface
|
|
7388
7547
|
*/
|
|
7389
|
-
const TrajectoryCachingApiFactory = function(configuration, basePath, axios$
|
|
7548
|
+
const TrajectoryCachingApiFactory = function(configuration, basePath, axios$157) {
|
|
7390
7549
|
const localVarFp = TrajectoryCachingApiFp(configuration);
|
|
7391
7550
|
return {
|
|
7392
7551
|
addTrajectory(cell, controller, addTrajectoryRequest, options) {
|
|
7393
|
-
return localVarFp.addTrajectory(cell, controller, addTrajectoryRequest, options).then((request) => request(axios$
|
|
7552
|
+
return localVarFp.addTrajectory(cell, controller, addTrajectoryRequest, options).then((request) => request(axios$157, basePath));
|
|
7394
7553
|
},
|
|
7395
7554
|
clearTrajectories(cell, controller, options) {
|
|
7396
|
-
return localVarFp.clearTrajectories(cell, controller, options).then((request) => request(axios$
|
|
7555
|
+
return localVarFp.clearTrajectories(cell, controller, options).then((request) => request(axios$157, basePath));
|
|
7397
7556
|
},
|
|
7398
7557
|
deleteTrajectory(cell, controller, trajectory, options) {
|
|
7399
|
-
return localVarFp.deleteTrajectory(cell, controller, trajectory, options).then((request) => request(axios$
|
|
7558
|
+
return localVarFp.deleteTrajectory(cell, controller, trajectory, options).then((request) => request(axios$157, basePath));
|
|
7400
7559
|
},
|
|
7401
7560
|
getTrajectory(cell, controller, trajectory, options) {
|
|
7402
|
-
return localVarFp.getTrajectory(cell, controller, trajectory, options).then((request) => request(axios$
|
|
7561
|
+
return localVarFp.getTrajectory(cell, controller, trajectory, options).then((request) => request(axios$157, basePath));
|
|
7403
7562
|
},
|
|
7404
7563
|
listTrajectories(cell, controller, options) {
|
|
7405
|
-
return localVarFp.listTrajectories(cell, controller, options).then((request) => request(axios$
|
|
7564
|
+
return localVarFp.listTrajectories(cell, controller, options).then((request) => request(axios$157, basePath));
|
|
7406
7565
|
}
|
|
7407
7566
|
};
|
|
7408
7567
|
};
|
|
@@ -7513,16 +7672,16 @@ const TrajectoryExecutionApiFp = function(configuration) {
|
|
|
7513
7672
|
const localVarAxiosArgs = await localVarAxiosParamCreator.executeTrajectory(cell, controller, executeTrajectoryRequest, options);
|
|
7514
7673
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7515
7674
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryExecutionApi.executeTrajectory"]?.[localVarOperationServerIndex]?.url;
|
|
7516
|
-
return (axios$
|
|
7675
|
+
return (axios$158, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$158, localVarOperationServerBasePath || basePath);
|
|
7517
7676
|
} };
|
|
7518
7677
|
};
|
|
7519
7678
|
/**
|
|
7520
7679
|
* TrajectoryExecutionApi - factory interface
|
|
7521
7680
|
*/
|
|
7522
|
-
const TrajectoryExecutionApiFactory = function(configuration, basePath, axios$
|
|
7681
|
+
const TrajectoryExecutionApiFactory = function(configuration, basePath, axios$159) {
|
|
7523
7682
|
const localVarFp = TrajectoryExecutionApiFp(configuration);
|
|
7524
7683
|
return { executeTrajectory(cell, controller, executeTrajectoryRequest, options) {
|
|
7525
|
-
return localVarFp.executeTrajectory(cell, controller, executeTrajectoryRequest, options).then((request) => request(axios$
|
|
7684
|
+
return localVarFp.executeTrajectory(cell, controller, executeTrajectoryRequest, options).then((request) => request(axios$159, basePath));
|
|
7526
7685
|
} };
|
|
7527
7686
|
};
|
|
7528
7687
|
/**
|
|
@@ -7675,45 +7834,45 @@ const TrajectoryPlanningApiFp = function(configuration) {
|
|
|
7675
7834
|
const localVarAxiosArgs = await localVarAxiosParamCreator.mergeTrajectories(cell, mergeTrajectoriesRequest, options);
|
|
7676
7835
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7677
7836
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryPlanningApi.mergeTrajectories"]?.[localVarOperationServerIndex]?.url;
|
|
7678
|
-
return (axios$
|
|
7837
|
+
return (axios$160, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$160, localVarOperationServerBasePath || basePath);
|
|
7679
7838
|
},
|
|
7680
7839
|
async planCollisionFree(cell, planCollisionFreeRequest, options) {
|
|
7681
7840
|
const localVarAxiosArgs = await localVarAxiosParamCreator.planCollisionFree(cell, planCollisionFreeRequest, options);
|
|
7682
7841
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7683
7842
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryPlanningApi.planCollisionFree"]?.[localVarOperationServerIndex]?.url;
|
|
7684
|
-
return (axios$
|
|
7843
|
+
return (axios$161, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$161, localVarOperationServerBasePath || basePath);
|
|
7685
7844
|
},
|
|
7686
7845
|
async planTrajectory(cell, planTrajectoryRequest, options) {
|
|
7687
7846
|
const localVarAxiosArgs = await localVarAxiosParamCreator.planTrajectory(cell, planTrajectoryRequest, options);
|
|
7688
7847
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7689
7848
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryPlanningApi.planTrajectory"]?.[localVarOperationServerIndex]?.url;
|
|
7690
|
-
return (axios$
|
|
7849
|
+
return (axios$162, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$162, localVarOperationServerBasePath || basePath);
|
|
7691
7850
|
},
|
|
7692
7851
|
async searchCollisionFreeMultiMotionGroup(cell, multiSearchCollisionFreeRequest, options) {
|
|
7693
7852
|
const localVarAxiosArgs = await localVarAxiosParamCreator.searchCollisionFreeMultiMotionGroup(cell, multiSearchCollisionFreeRequest, options);
|
|
7694
7853
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7695
7854
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryPlanningApi.searchCollisionFreeMultiMotionGroup"]?.[localVarOperationServerIndex]?.url;
|
|
7696
|
-
return (axios$
|
|
7855
|
+
return (axios$163, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$163, localVarOperationServerBasePath || basePath);
|
|
7697
7856
|
}
|
|
7698
7857
|
};
|
|
7699
7858
|
};
|
|
7700
7859
|
/**
|
|
7701
7860
|
* TrajectoryPlanningApi - factory interface
|
|
7702
7861
|
*/
|
|
7703
|
-
const TrajectoryPlanningApiFactory = function(configuration, basePath, axios$
|
|
7862
|
+
const TrajectoryPlanningApiFactory = function(configuration, basePath, axios$164) {
|
|
7704
7863
|
const localVarFp = TrajectoryPlanningApiFp(configuration);
|
|
7705
7864
|
return {
|
|
7706
7865
|
mergeTrajectories(cell, mergeTrajectoriesRequest, options) {
|
|
7707
|
-
return localVarFp.mergeTrajectories(cell, mergeTrajectoriesRequest, options).then((request) => request(axios$
|
|
7866
|
+
return localVarFp.mergeTrajectories(cell, mergeTrajectoriesRequest, options).then((request) => request(axios$164, basePath));
|
|
7708
7867
|
},
|
|
7709
7868
|
planCollisionFree(cell, planCollisionFreeRequest, options) {
|
|
7710
|
-
return localVarFp.planCollisionFree(cell, planCollisionFreeRequest, options).then((request) => request(axios$
|
|
7869
|
+
return localVarFp.planCollisionFree(cell, planCollisionFreeRequest, options).then((request) => request(axios$164, basePath));
|
|
7711
7870
|
},
|
|
7712
7871
|
planTrajectory(cell, planTrajectoryRequest, options) {
|
|
7713
|
-
return localVarFp.planTrajectory(cell, planTrajectoryRequest, options).then((request) => request(axios$
|
|
7872
|
+
return localVarFp.planTrajectory(cell, planTrajectoryRequest, options).then((request) => request(axios$164, basePath));
|
|
7714
7873
|
},
|
|
7715
7874
|
searchCollisionFreeMultiMotionGroup(cell, multiSearchCollisionFreeRequest, options) {
|
|
7716
|
-
return localVarFp.searchCollisionFreeMultiMotionGroup(cell, multiSearchCollisionFreeRequest, options).then((request) => request(axios$
|
|
7875
|
+
return localVarFp.searchCollisionFreeMultiMotionGroup(cell, multiSearchCollisionFreeRequest, options).then((request) => request(axios$164, basePath));
|
|
7717
7876
|
}
|
|
7718
7877
|
};
|
|
7719
7878
|
};
|
|
@@ -7804,16 +7963,16 @@ const VersionApiFp = function(configuration) {
|
|
|
7804
7963
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getApiVersion(options);
|
|
7805
7964
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7806
7965
|
const localVarOperationServerBasePath = operationServerMap["VersionApi.getApiVersion"]?.[localVarOperationServerIndex]?.url;
|
|
7807
|
-
return (axios$
|
|
7966
|
+
return (axios$165, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$165, localVarOperationServerBasePath || basePath);
|
|
7808
7967
|
} };
|
|
7809
7968
|
};
|
|
7810
7969
|
/**
|
|
7811
7970
|
* VersionApi - factory interface
|
|
7812
7971
|
*/
|
|
7813
|
-
const VersionApiFactory = function(configuration, basePath, axios$
|
|
7972
|
+
const VersionApiFactory = function(configuration, basePath, axios$166) {
|
|
7814
7973
|
const localVarFp = VersionApiFp(configuration);
|
|
7815
7974
|
return { getApiVersion(options) {
|
|
7816
|
-
return localVarFp.getApiVersion(options).then((request) => request(axios$
|
|
7975
|
+
return localVarFp.getApiVersion(options).then((request) => request(axios$166, basePath));
|
|
7817
7976
|
} };
|
|
7818
7977
|
};
|
|
7819
7978
|
/**
|
|
@@ -8422,189 +8581,189 @@ const VirtualControllerApiFp = function(configuration) {
|
|
|
8422
8581
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options);
|
|
8423
8582
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8424
8583
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.addVirtualControllerCoordinateSystem"]?.[localVarOperationServerIndex]?.url;
|
|
8425
|
-
return (axios$
|
|
8584
|
+
return (axios$167, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$167, localVarOperationServerBasePath || basePath);
|
|
8426
8585
|
},
|
|
8427
8586
|
async addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options) {
|
|
8428
8587
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options);
|
|
8429
8588
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8430
8589
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.addVirtualControllerMotionGroup"]?.[localVarOperationServerIndex]?.url;
|
|
8431
|
-
return (axios$
|
|
8590
|
+
return (axios$168, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$168, localVarOperationServerBasePath || basePath);
|
|
8432
8591
|
},
|
|
8433
8592
|
async addVirtualControllerSafetyZone(cell, controller, safetyZone, options) {
|
|
8434
8593
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualControllerSafetyZone(cell, controller, safetyZone, options);
|
|
8435
8594
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8436
8595
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.addVirtualControllerSafetyZone"]?.[localVarOperationServerIndex]?.url;
|
|
8437
|
-
return (axios$
|
|
8596
|
+
return (axios$169, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$169, localVarOperationServerBasePath || basePath);
|
|
8438
8597
|
},
|
|
8439
8598
|
async addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options) {
|
|
8440
8599
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options);
|
|
8441
8600
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8442
8601
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.addVirtualControllerTcp"]?.[localVarOperationServerIndex]?.url;
|
|
8443
|
-
return (axios$
|
|
8602
|
+
return (axios$170, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$170, localVarOperationServerBasePath || basePath);
|
|
8444
8603
|
},
|
|
8445
8604
|
async deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options) {
|
|
8446
8605
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options);
|
|
8447
8606
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8448
8607
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.deleteVirtualControllerCoordinateSystem"]?.[localVarOperationServerIndex]?.url;
|
|
8449
|
-
return (axios$
|
|
8608
|
+
return (axios$171, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$171, localVarOperationServerBasePath || basePath);
|
|
8450
8609
|
},
|
|
8451
8610
|
async deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options) {
|
|
8452
8611
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options);
|
|
8453
8612
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8454
8613
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.deleteVirtualControllerMotionGroup"]?.[localVarOperationServerIndex]?.url;
|
|
8455
|
-
return (axios$
|
|
8614
|
+
return (axios$172, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$172, localVarOperationServerBasePath || basePath);
|
|
8456
8615
|
},
|
|
8457
8616
|
async deleteVirtualControllerSafetyZone(cell, controller, id, options) {
|
|
8458
8617
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualControllerSafetyZone(cell, controller, id, options);
|
|
8459
8618
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8460
8619
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.deleteVirtualControllerSafetyZone"]?.[localVarOperationServerIndex]?.url;
|
|
8461
|
-
return (axios$
|
|
8620
|
+
return (axios$173, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$173, localVarOperationServerBasePath || basePath);
|
|
8462
8621
|
},
|
|
8463
8622
|
async deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options) {
|
|
8464
8623
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options);
|
|
8465
8624
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8466
8625
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.deleteVirtualControllerTcp"]?.[localVarOperationServerIndex]?.url;
|
|
8467
|
-
return (axios$
|
|
8626
|
+
return (axios$174, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$174, localVarOperationServerBasePath || basePath);
|
|
8468
8627
|
},
|
|
8469
8628
|
async getEmergencyStop(cell, controller, options) {
|
|
8470
8629
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getEmergencyStop(cell, controller, options);
|
|
8471
8630
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8472
8631
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getEmergencyStop"]?.[localVarOperationServerIndex]?.url;
|
|
8473
|
-
return (axios$
|
|
8632
|
+
return (axios$175, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$175, localVarOperationServerBasePath || basePath);
|
|
8474
8633
|
},
|
|
8475
8634
|
async getMotionGroupState(cell, controller, motionGroup, options) {
|
|
8476
8635
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupState(cell, controller, motionGroup, options);
|
|
8477
8636
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8478
8637
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getMotionGroupState"]?.[localVarOperationServerIndex]?.url;
|
|
8479
|
-
return (axios$
|
|
8638
|
+
return (axios$176, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$176, localVarOperationServerBasePath || basePath);
|
|
8480
8639
|
},
|
|
8481
8640
|
async getMotionGroups(cell, controller, options) {
|
|
8482
8641
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroups(cell, controller, options);
|
|
8483
8642
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8484
8643
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getMotionGroups"]?.[localVarOperationServerIndex]?.url;
|
|
8485
|
-
return (axios$
|
|
8644
|
+
return (axios$177, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$177, localVarOperationServerBasePath || basePath);
|
|
8486
8645
|
},
|
|
8487
8646
|
async getOperationMode(cell, controller, options) {
|
|
8488
8647
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getOperationMode(cell, controller, options);
|
|
8489
8648
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8490
8649
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getOperationMode"]?.[localVarOperationServerIndex]?.url;
|
|
8491
|
-
return (axios$
|
|
8650
|
+
return (axios$178, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$178, localVarOperationServerBasePath || basePath);
|
|
8492
8651
|
},
|
|
8493
8652
|
async getVirtualControllerMounting(cell, controller, motionGroup, options) {
|
|
8494
8653
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getVirtualControllerMounting(cell, controller, motionGroup, options);
|
|
8495
8654
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8496
8655
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getVirtualControllerMounting"]?.[localVarOperationServerIndex]?.url;
|
|
8497
|
-
return (axios$
|
|
8656
|
+
return (axios$179, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$179, localVarOperationServerBasePath || basePath);
|
|
8498
8657
|
},
|
|
8499
8658
|
async getVirtualControllerSafetyZones(cell, controller, options) {
|
|
8500
8659
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getVirtualControllerSafetyZones(cell, controller, options);
|
|
8501
8660
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8502
8661
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getVirtualControllerSafetyZones"]?.[localVarOperationServerIndex]?.url;
|
|
8503
|
-
return (axios$
|
|
8662
|
+
return (axios$180, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$180, localVarOperationServerBasePath || basePath);
|
|
8504
8663
|
},
|
|
8505
8664
|
async listVirtualControllerCoordinateSystems(cell, controller, options) {
|
|
8506
8665
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listVirtualControllerCoordinateSystems(cell, controller, options);
|
|
8507
8666
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8508
8667
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.listVirtualControllerCoordinateSystems"]?.[localVarOperationServerIndex]?.url;
|
|
8509
|
-
return (axios$
|
|
8668
|
+
return (axios$181, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$181, localVarOperationServerBasePath || basePath);
|
|
8510
8669
|
},
|
|
8511
8670
|
async listVirtualControllerTcps(cell, controller, motionGroup, options) {
|
|
8512
8671
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listVirtualControllerTcps(cell, controller, motionGroup, options);
|
|
8513
8672
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8514
8673
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.listVirtualControllerTcps"]?.[localVarOperationServerIndex]?.url;
|
|
8515
|
-
return (axios$
|
|
8674
|
+
return (axios$182, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$182, localVarOperationServerBasePath || basePath);
|
|
8516
8675
|
},
|
|
8517
8676
|
async setEmergencyStop(cell, controller, active, options) {
|
|
8518
8677
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setEmergencyStop(cell, controller, active, options);
|
|
8519
8678
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8520
8679
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.setEmergencyStop"]?.[localVarOperationServerIndex]?.url;
|
|
8521
|
-
return (axios$
|
|
8680
|
+
return (axios$183, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$183, localVarOperationServerBasePath || basePath);
|
|
8522
8681
|
},
|
|
8523
8682
|
async setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options) {
|
|
8524
8683
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options);
|
|
8525
8684
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8526
8685
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.setMotionGroupState"]?.[localVarOperationServerIndex]?.url;
|
|
8527
|
-
return (axios$
|
|
8686
|
+
return (axios$184, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$184, localVarOperationServerBasePath || basePath);
|
|
8528
8687
|
},
|
|
8529
8688
|
async setOperationMode(cell, controller, mode, options) {
|
|
8530
8689
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setOperationMode(cell, controller, mode, options);
|
|
8531
8690
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8532
8691
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.setOperationMode"]?.[localVarOperationServerIndex]?.url;
|
|
8533
|
-
return (axios$
|
|
8692
|
+
return (axios$185, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$185, localVarOperationServerBasePath || basePath);
|
|
8534
8693
|
},
|
|
8535
8694
|
async setVirtualControllerMounting(cell, controller, motionGroup, coordinateSystem, options) {
|
|
8536
8695
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setVirtualControllerMounting(cell, controller, motionGroup, coordinateSystem, options);
|
|
8537
8696
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8538
8697
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.setVirtualControllerMounting"]?.[localVarOperationServerIndex]?.url;
|
|
8539
|
-
return (axios$
|
|
8698
|
+
return (axios$186, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$186, localVarOperationServerBasePath || basePath);
|
|
8540
8699
|
}
|
|
8541
8700
|
};
|
|
8542
8701
|
};
|
|
8543
8702
|
/**
|
|
8544
8703
|
* VirtualControllerApi - factory interface
|
|
8545
8704
|
*/
|
|
8546
|
-
const VirtualControllerApiFactory = function(configuration, basePath, axios$
|
|
8705
|
+
const VirtualControllerApiFactory = function(configuration, basePath, axios$187) {
|
|
8547
8706
|
const localVarFp = VirtualControllerApiFp(configuration);
|
|
8548
8707
|
return {
|
|
8549
8708
|
addVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options) {
|
|
8550
|
-
return localVarFp.addVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options).then((request) => request(axios$
|
|
8709
|
+
return localVarFp.addVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options).then((request) => request(axios$187, basePath));
|
|
8551
8710
|
},
|
|
8552
8711
|
addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options) {
|
|
8553
|
-
return localVarFp.addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options).then((request) => request(axios$
|
|
8712
|
+
return localVarFp.addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options).then((request) => request(axios$187, basePath));
|
|
8554
8713
|
},
|
|
8555
8714
|
addVirtualControllerSafetyZone(cell, controller, safetyZone, options) {
|
|
8556
|
-
return localVarFp.addVirtualControllerSafetyZone(cell, controller, safetyZone, options).then((request) => request(axios$
|
|
8715
|
+
return localVarFp.addVirtualControllerSafetyZone(cell, controller, safetyZone, options).then((request) => request(axios$187, basePath));
|
|
8557
8716
|
},
|
|
8558
8717
|
addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options) {
|
|
8559
|
-
return localVarFp.addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options).then((request) => request(axios$
|
|
8718
|
+
return localVarFp.addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options).then((request) => request(axios$187, basePath));
|
|
8560
8719
|
},
|
|
8561
8720
|
deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options) {
|
|
8562
|
-
return localVarFp.deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options).then((request) => request(axios$
|
|
8721
|
+
return localVarFp.deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options).then((request) => request(axios$187, basePath));
|
|
8563
8722
|
},
|
|
8564
8723
|
deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options) {
|
|
8565
|
-
return localVarFp.deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options).then((request) => request(axios$
|
|
8724
|
+
return localVarFp.deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options).then((request) => request(axios$187, basePath));
|
|
8566
8725
|
},
|
|
8567
8726
|
deleteVirtualControllerSafetyZone(cell, controller, id, options) {
|
|
8568
|
-
return localVarFp.deleteVirtualControllerSafetyZone(cell, controller, id, options).then((request) => request(axios$
|
|
8727
|
+
return localVarFp.deleteVirtualControllerSafetyZone(cell, controller, id, options).then((request) => request(axios$187, basePath));
|
|
8569
8728
|
},
|
|
8570
8729
|
deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options) {
|
|
8571
|
-
return localVarFp.deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options).then((request) => request(axios$
|
|
8730
|
+
return localVarFp.deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options).then((request) => request(axios$187, basePath));
|
|
8572
8731
|
},
|
|
8573
8732
|
getEmergencyStop(cell, controller, options) {
|
|
8574
|
-
return localVarFp.getEmergencyStop(cell, controller, options).then((request) => request(axios$
|
|
8733
|
+
return localVarFp.getEmergencyStop(cell, controller, options).then((request) => request(axios$187, basePath));
|
|
8575
8734
|
},
|
|
8576
8735
|
getMotionGroupState(cell, controller, motionGroup, options) {
|
|
8577
|
-
return localVarFp.getMotionGroupState(cell, controller, motionGroup, options).then((request) => request(axios$
|
|
8736
|
+
return localVarFp.getMotionGroupState(cell, controller, motionGroup, options).then((request) => request(axios$187, basePath));
|
|
8578
8737
|
},
|
|
8579
8738
|
getMotionGroups(cell, controller, options) {
|
|
8580
|
-
return localVarFp.getMotionGroups(cell, controller, options).then((request) => request(axios$
|
|
8739
|
+
return localVarFp.getMotionGroups(cell, controller, options).then((request) => request(axios$187, basePath));
|
|
8581
8740
|
},
|
|
8582
8741
|
getOperationMode(cell, controller, options) {
|
|
8583
|
-
return localVarFp.getOperationMode(cell, controller, options).then((request) => request(axios$
|
|
8742
|
+
return localVarFp.getOperationMode(cell, controller, options).then((request) => request(axios$187, basePath));
|
|
8584
8743
|
},
|
|
8585
8744
|
getVirtualControllerMounting(cell, controller, motionGroup, options) {
|
|
8586
|
-
return localVarFp.getVirtualControllerMounting(cell, controller, motionGroup, options).then((request) => request(axios$
|
|
8745
|
+
return localVarFp.getVirtualControllerMounting(cell, controller, motionGroup, options).then((request) => request(axios$187, basePath));
|
|
8587
8746
|
},
|
|
8588
8747
|
getVirtualControllerSafetyZones(cell, controller, options) {
|
|
8589
|
-
return localVarFp.getVirtualControllerSafetyZones(cell, controller, options).then((request) => request(axios$
|
|
8748
|
+
return localVarFp.getVirtualControllerSafetyZones(cell, controller, options).then((request) => request(axios$187, basePath));
|
|
8590
8749
|
},
|
|
8591
8750
|
listVirtualControllerCoordinateSystems(cell, controller, options) {
|
|
8592
|
-
return localVarFp.listVirtualControllerCoordinateSystems(cell, controller, options).then((request) => request(axios$
|
|
8751
|
+
return localVarFp.listVirtualControllerCoordinateSystems(cell, controller, options).then((request) => request(axios$187, basePath));
|
|
8593
8752
|
},
|
|
8594
8753
|
listVirtualControllerTcps(cell, controller, motionGroup, options) {
|
|
8595
|
-
return localVarFp.listVirtualControllerTcps(cell, controller, motionGroup, options).then((request) => request(axios$
|
|
8754
|
+
return localVarFp.listVirtualControllerTcps(cell, controller, motionGroup, options).then((request) => request(axios$187, basePath));
|
|
8596
8755
|
},
|
|
8597
8756
|
setEmergencyStop(cell, controller, active, options) {
|
|
8598
|
-
return localVarFp.setEmergencyStop(cell, controller, active, options).then((request) => request(axios$
|
|
8757
|
+
return localVarFp.setEmergencyStop(cell, controller, active, options).then((request) => request(axios$187, basePath));
|
|
8599
8758
|
},
|
|
8600
8759
|
setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options) {
|
|
8601
|
-
return localVarFp.setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options).then((request) => request(axios$
|
|
8760
|
+
return localVarFp.setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options).then((request) => request(axios$187, basePath));
|
|
8602
8761
|
},
|
|
8603
8762
|
setOperationMode(cell, controller, mode, options) {
|
|
8604
|
-
return localVarFp.setOperationMode(cell, controller, mode, options).then((request) => request(axios$
|
|
8763
|
+
return localVarFp.setOperationMode(cell, controller, mode, options).then((request) => request(axios$187, basePath));
|
|
8605
8764
|
},
|
|
8606
8765
|
setVirtualControllerMounting(cell, controller, motionGroup, coordinateSystem, options) {
|
|
8607
|
-
return localVarFp.setVirtualControllerMounting(cell, controller, motionGroup, coordinateSystem, options).then((request) => request(axios$
|
|
8766
|
+
return localVarFp.setVirtualControllerMounting(cell, controller, motionGroup, coordinateSystem, options).then((request) => request(axios$187, basePath));
|
|
8608
8767
|
}
|
|
8609
8768
|
};
|
|
8610
8769
|
};
|
|
@@ -8984,45 +9143,45 @@ const VirtualControllerBehaviorApiFp = function(configuration) {
|
|
|
8984
9143
|
const localVarAxiosArgs = await localVarAxiosParamCreator.externalJointsStream(cell, controller, externalJointStreamRequest, options);
|
|
8985
9144
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8986
9145
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerBehaviorApi.externalJointsStream"]?.[localVarOperationServerIndex]?.url;
|
|
8987
|
-
return (axios$
|
|
9146
|
+
return (axios$188, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$188, localVarOperationServerBasePath || basePath);
|
|
8988
9147
|
},
|
|
8989
9148
|
async getCycleTime(cell, controller, options) {
|
|
8990
9149
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getCycleTime(cell, controller, options);
|
|
8991
9150
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8992
9151
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerBehaviorApi.getCycleTime"]?.[localVarOperationServerIndex]?.url;
|
|
8993
|
-
return (axios$
|
|
9152
|
+
return (axios$189, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$189, localVarOperationServerBasePath || basePath);
|
|
8994
9153
|
},
|
|
8995
9154
|
async getVirtualControllerBehavior(cell, controller, options) {
|
|
8996
9155
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getVirtualControllerBehavior(cell, controller, options);
|
|
8997
9156
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8998
9157
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerBehaviorApi.getVirtualControllerBehavior"]?.[localVarOperationServerIndex]?.url;
|
|
8999
|
-
return (axios$
|
|
9158
|
+
return (axios$190, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$190, localVarOperationServerBasePath || basePath);
|
|
9000
9159
|
},
|
|
9001
9160
|
async setVirtualControllerBehavior(cell, controller, behavior, options) {
|
|
9002
9161
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setVirtualControllerBehavior(cell, controller, behavior, options);
|
|
9003
9162
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9004
9163
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerBehaviorApi.setVirtualControllerBehavior"]?.[localVarOperationServerIndex]?.url;
|
|
9005
|
-
return (axios$
|
|
9164
|
+
return (axios$191, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$191, localVarOperationServerBasePath || basePath);
|
|
9006
9165
|
}
|
|
9007
9166
|
};
|
|
9008
9167
|
};
|
|
9009
9168
|
/**
|
|
9010
9169
|
* VirtualControllerBehaviorApi - factory interface
|
|
9011
9170
|
*/
|
|
9012
|
-
const VirtualControllerBehaviorApiFactory = function(configuration, basePath, axios$
|
|
9171
|
+
const VirtualControllerBehaviorApiFactory = function(configuration, basePath, axios$192) {
|
|
9013
9172
|
const localVarFp = VirtualControllerBehaviorApiFp(configuration);
|
|
9014
9173
|
return {
|
|
9015
9174
|
externalJointsStream(cell, controller, externalJointStreamRequest, options) {
|
|
9016
|
-
return localVarFp.externalJointsStream(cell, controller, externalJointStreamRequest, options).then((request) => request(axios$
|
|
9175
|
+
return localVarFp.externalJointsStream(cell, controller, externalJointStreamRequest, options).then((request) => request(axios$192, basePath));
|
|
9017
9176
|
},
|
|
9018
9177
|
getCycleTime(cell, controller, options) {
|
|
9019
|
-
return localVarFp.getCycleTime(cell, controller, options).then((request) => request(axios$
|
|
9178
|
+
return localVarFp.getCycleTime(cell, controller, options).then((request) => request(axios$192, basePath));
|
|
9020
9179
|
},
|
|
9021
9180
|
getVirtualControllerBehavior(cell, controller, options) {
|
|
9022
|
-
return localVarFp.getVirtualControllerBehavior(cell, controller, options).then((request) => request(axios$
|
|
9181
|
+
return localVarFp.getVirtualControllerBehavior(cell, controller, options).then((request) => request(axios$192, basePath));
|
|
9023
9182
|
},
|
|
9024
9183
|
setVirtualControllerBehavior(cell, controller, behavior, options) {
|
|
9025
|
-
return localVarFp.setVirtualControllerBehavior(cell, controller, behavior, options).then((request) => request(axios$
|
|
9184
|
+
return localVarFp.setVirtualControllerBehavior(cell, controller, behavior, options).then((request) => request(axios$192, basePath));
|
|
9026
9185
|
}
|
|
9027
9186
|
};
|
|
9028
9187
|
};
|
|
@@ -9184,36 +9343,36 @@ const VirtualControllerInputsOutputsApiFp = function(configuration) {
|
|
|
9184
9343
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listIOs(cell, controller, ios, options);
|
|
9185
9344
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9186
9345
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerInputsOutputsApi.listIOs"]?.[localVarOperationServerIndex]?.url;
|
|
9187
|
-
return (axios$
|
|
9346
|
+
return (axios$193, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$193, localVarOperationServerBasePath || basePath);
|
|
9188
9347
|
},
|
|
9189
9348
|
async listVirtualControllerIODescriptions(cell, controller, ios, direction, valueType, group, options) {
|
|
9190
9349
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listVirtualControllerIODescriptions(cell, controller, ios, direction, valueType, group, options);
|
|
9191
9350
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9192
9351
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerInputsOutputsApi.listVirtualControllerIODescriptions"]?.[localVarOperationServerIndex]?.url;
|
|
9193
|
-
return (axios$
|
|
9352
|
+
return (axios$194, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$194, localVarOperationServerBasePath || basePath);
|
|
9194
9353
|
},
|
|
9195
9354
|
async setIOValues(cell, controller, iOValue, options) {
|
|
9196
9355
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setIOValues(cell, controller, iOValue, options);
|
|
9197
9356
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9198
9357
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerInputsOutputsApi.setIOValues"]?.[localVarOperationServerIndex]?.url;
|
|
9199
|
-
return (axios$
|
|
9358
|
+
return (axios$195, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$195, localVarOperationServerBasePath || basePath);
|
|
9200
9359
|
}
|
|
9201
9360
|
};
|
|
9202
9361
|
};
|
|
9203
9362
|
/**
|
|
9204
9363
|
* VirtualControllerInputsOutputsApi - factory interface
|
|
9205
9364
|
*/
|
|
9206
|
-
const VirtualControllerInputsOutputsApiFactory = function(configuration, basePath, axios$
|
|
9365
|
+
const VirtualControllerInputsOutputsApiFactory = function(configuration, basePath, axios$196) {
|
|
9207
9366
|
const localVarFp = VirtualControllerInputsOutputsApiFp(configuration);
|
|
9208
9367
|
return {
|
|
9209
9368
|
listIOs(cell, controller, ios, options) {
|
|
9210
|
-
return localVarFp.listIOs(cell, controller, ios, options).then((request) => request(axios$
|
|
9369
|
+
return localVarFp.listIOs(cell, controller, ios, options).then((request) => request(axios$196, basePath));
|
|
9211
9370
|
},
|
|
9212
9371
|
listVirtualControllerIODescriptions(cell, controller, ios, direction, valueType, group, options) {
|
|
9213
|
-
return localVarFp.listVirtualControllerIODescriptions(cell, controller, ios, direction, valueType, group, options).then((request) => request(axios$
|
|
9372
|
+
return localVarFp.listVirtualControllerIODescriptions(cell, controller, ios, direction, valueType, group, options).then((request) => request(axios$196, basePath));
|
|
9214
9373
|
},
|
|
9215
9374
|
setIOValues(cell, controller, iOValue, options) {
|
|
9216
|
-
return localVarFp.setIOValues(cell, controller, iOValue, options).then((request) => request(axios$
|
|
9375
|
+
return localVarFp.setIOValues(cell, controller, iOValue, options).then((request) => request(axios$196, basePath));
|
|
9217
9376
|
}
|
|
9218
9377
|
};
|
|
9219
9378
|
};
|
|
@@ -9265,7 +9424,7 @@ var VirtualControllerInputsOutputsApi = class extends BaseAPI {
|
|
|
9265
9424
|
//#region v2/configuration.ts
|
|
9266
9425
|
var Configuration = class {
|
|
9267
9426
|
constructor(param = {}) {
|
|
9268
|
-
|
|
9427
|
+
_defineProperty(
|
|
9269
9428
|
this,
|
|
9270
9429
|
/**
|
|
9271
9430
|
* parameter for apiKey security
|
|
@@ -9274,7 +9433,7 @@ var Configuration = class {
|
|
|
9274
9433
|
"apiKey",
|
|
9275
9434
|
void 0
|
|
9276
9435
|
);
|
|
9277
|
-
|
|
9436
|
+
_defineProperty(
|
|
9278
9437
|
this,
|
|
9279
9438
|
/**
|
|
9280
9439
|
* parameter for basic security
|
|
@@ -9282,7 +9441,7 @@ var Configuration = class {
|
|
|
9282
9441
|
"username",
|
|
9283
9442
|
void 0
|
|
9284
9443
|
);
|
|
9285
|
-
|
|
9444
|
+
_defineProperty(
|
|
9286
9445
|
this,
|
|
9287
9446
|
/**
|
|
9288
9447
|
* parameter for basic security
|
|
@@ -9290,7 +9449,7 @@ var Configuration = class {
|
|
|
9290
9449
|
"password",
|
|
9291
9450
|
void 0
|
|
9292
9451
|
);
|
|
9293
|
-
|
|
9452
|
+
_defineProperty(
|
|
9294
9453
|
this,
|
|
9295
9454
|
/**
|
|
9296
9455
|
* parameter for oauth2 security
|
|
@@ -9300,7 +9459,7 @@ var Configuration = class {
|
|
|
9300
9459
|
"accessToken",
|
|
9301
9460
|
void 0
|
|
9302
9461
|
);
|
|
9303
|
-
|
|
9462
|
+
_defineProperty(
|
|
9304
9463
|
this,
|
|
9305
9464
|
/**
|
|
9306
9465
|
* parameter for aws4 signature security
|
|
@@ -9315,7 +9474,7 @@ var Configuration = class {
|
|
|
9315
9474
|
"awsv4",
|
|
9316
9475
|
void 0
|
|
9317
9476
|
);
|
|
9318
|
-
|
|
9477
|
+
_defineProperty(
|
|
9319
9478
|
this,
|
|
9320
9479
|
/**
|
|
9321
9480
|
* override base path
|
|
@@ -9323,7 +9482,7 @@ var Configuration = class {
|
|
|
9323
9482
|
"basePath",
|
|
9324
9483
|
void 0
|
|
9325
9484
|
);
|
|
9326
|
-
|
|
9485
|
+
_defineProperty(
|
|
9327
9486
|
this,
|
|
9328
9487
|
/**
|
|
9329
9488
|
* override server index
|
|
@@ -9331,7 +9490,7 @@ var Configuration = class {
|
|
|
9331
9490
|
"serverIndex",
|
|
9332
9491
|
void 0
|
|
9333
9492
|
);
|
|
9334
|
-
|
|
9493
|
+
_defineProperty(
|
|
9335
9494
|
this,
|
|
9336
9495
|
/**
|
|
9337
9496
|
* base options for axios calls
|
|
@@ -9339,7 +9498,7 @@ var Configuration = class {
|
|
|
9339
9498
|
"baseOptions",
|
|
9340
9499
|
void 0
|
|
9341
9500
|
);
|
|
9342
|
-
|
|
9501
|
+
_defineProperty(
|
|
9343
9502
|
this,
|
|
9344
9503
|
/**
|
|
9345
9504
|
* The FormData constructor that will be used to create multipart form data
|
|
@@ -9395,6 +9554,8 @@ exports.BlendingAutoBlendingNameEnum = BlendingAutoBlendingNameEnum;
|
|
|
9395
9554
|
exports.BlendingPositionBlendingNameEnum = BlendingPositionBlendingNameEnum;
|
|
9396
9555
|
exports.BlendingSpace = BlendingSpace;
|
|
9397
9556
|
exports.BooleanValueValueTypeEnum = BooleanValueValueTypeEnum;
|
|
9557
|
+
exports.BostondynamicsControllerKindEnum = BostondynamicsControllerKindEnum;
|
|
9558
|
+
exports.BostondynamicsControllerRobotTypeEnum = BostondynamicsControllerRobotTypeEnum;
|
|
9398
9559
|
exports.BoxBoxTypeEnum = BoxBoxTypeEnum;
|
|
9399
9560
|
exports.BoxShapeTypeEnum = BoxShapeTypeEnum;
|
|
9400
9561
|
exports.BusIOModbusClientBusTypeEnum = BusIOModbusClientBusTypeEnum;
|
|
@@ -9627,6 +9788,8 @@ exports.TrajectoryPlanningApiFp = TrajectoryPlanningApiFp;
|
|
|
9627
9788
|
exports.TrajectoryRunningKindEnum = TrajectoryRunningKindEnum;
|
|
9628
9789
|
exports.TrajectoryWaitForIOKindEnum = TrajectoryWaitForIOKindEnum;
|
|
9629
9790
|
exports.UnitType = UnitType;
|
|
9791
|
+
exports.UnitreeControllerKindEnum = UnitreeControllerKindEnum;
|
|
9792
|
+
exports.UnitreeControllerRobotTypeEnum = UnitreeControllerRobotTypeEnum;
|
|
9630
9793
|
exports.UniversalrobotsControllerKindEnum = UniversalrobotsControllerKindEnum;
|
|
9631
9794
|
exports.VersionApi = VersionApi;
|
|
9632
9795
|
exports.VersionApiAxiosParamCreator = VersionApiAxiosParamCreator;
|