@wandelbots/nova-api 26.6.0-dev.7 → 26.6.0-dev.70
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 +441 -236
- package/dist/v2/index.d.cts +364 -38
- package/dist/v2/index.d.ts +364 -38
- package/dist/v2/index.js +194 -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$198 = axios.default) {
|
|
15
74
|
this.basePath = basePath;
|
|
16
|
-
this.axios = axios$
|
|
17
|
-
|
|
75
|
+
this.axios = axios$198;
|
|
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;
|
|
@@ -4468,6 +4566,30 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
|
|
|
4468
4566
|
options: localVarRequestOptions
|
|
4469
4567
|
};
|
|
4470
4568
|
},
|
|
4569
|
+
getMotionGroupModelsCatalog: async (options = {}) => {
|
|
4570
|
+
const localVarUrlObj = new URL(`/experimental/motion-group-models/catalog`, DUMMY_BASE_URL);
|
|
4571
|
+
let baseOptions;
|
|
4572
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
4573
|
+
const localVarRequestOptions = {
|
|
4574
|
+
method: "GET",
|
|
4575
|
+
...baseOptions,
|
|
4576
|
+
...options
|
|
4577
|
+
};
|
|
4578
|
+
const localVarHeaderParameter = {};
|
|
4579
|
+
const localVarQueryParameter = {};
|
|
4580
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
4581
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4582
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4583
|
+
localVarRequestOptions.headers = {
|
|
4584
|
+
...localVarHeaderParameter,
|
|
4585
|
+
...headersFromBaseOptions,
|
|
4586
|
+
...options.headers
|
|
4587
|
+
};
|
|
4588
|
+
return {
|
|
4589
|
+
url: toPathString(localVarUrlObj),
|
|
4590
|
+
options: localVarRequestOptions
|
|
4591
|
+
};
|
|
4592
|
+
},
|
|
4471
4593
|
getMotionGroupUsdModel: async (motionGroupModel, options = {}) => {
|
|
4472
4594
|
assertParamExists("getMotionGroupUsdModel", "motionGroupModel", motionGroupModel);
|
|
4473
4595
|
const localVarPath = `/motion-group-models/{motion-group-model}/usd`.replace(`{motion-group-model}`, encodeURIComponent(String(motionGroupModel)));
|
|
@@ -4547,103 +4669,121 @@ const MotionGroupModelsApiFp = function(configuration) {
|
|
|
4547
4669
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.exportMotionGroupModel"]?.[localVarOperationServerIndex]?.url;
|
|
4548
4670
|
return (axios$83, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$83, localVarOperationServerBasePath || basePath);
|
|
4549
4671
|
},
|
|
4672
|
+
async getConfigurationForMotionGroup(motionGroupModel, options) {
|
|
4673
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getConfigurationForMotionGroup(motionGroupModel, options);
|
|
4674
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4675
|
+
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getConfigurationForMotionGroup"]?.[localVarOperationServerIndex]?.url;
|
|
4676
|
+
return (axios$84, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$84, localVarOperationServerBasePath || basePath);
|
|
4677
|
+
},
|
|
4550
4678
|
async getMotionGroupCollisionModel(motionGroupModel, options) {
|
|
4551
4679
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupCollisionModel(motionGroupModel, options);
|
|
4552
4680
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4553
4681
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupCollisionModel"]?.[localVarOperationServerIndex]?.url;
|
|
4554
|
-
return (axios$
|
|
4682
|
+
return (axios$85, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$85, localVarOperationServerBasePath || basePath);
|
|
4555
4683
|
},
|
|
4556
4684
|
async getMotionGroupDynamicModel(motionGroupModel, options) {
|
|
4557
4685
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupDynamicModel(motionGroupModel, options);
|
|
4558
4686
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4559
4687
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupDynamicModel"]?.[localVarOperationServerIndex]?.url;
|
|
4560
|
-
return (axios$
|
|
4688
|
+
return (axios$86, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$86, localVarOperationServerBasePath || basePath);
|
|
4561
4689
|
},
|
|
4562
4690
|
async getMotionGroupGlbModel(motionGroupModel, options) {
|
|
4563
4691
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupGlbModel(motionGroupModel, options);
|
|
4564
4692
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4565
4693
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupGlbModel"]?.[localVarOperationServerIndex]?.url;
|
|
4566
|
-
return (axios$
|
|
4694
|
+
return (axios$87, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$87, localVarOperationServerBasePath || basePath);
|
|
4567
4695
|
},
|
|
4568
4696
|
async getMotionGroupHomejoints(motionGroupModel, options) {
|
|
4569
4697
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupHomejoints(motionGroupModel, options);
|
|
4570
4698
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4571
4699
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupHomejoints"]?.[localVarOperationServerIndex]?.url;
|
|
4572
|
-
return (axios$
|
|
4700
|
+
return (axios$88, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$88, localVarOperationServerBasePath || basePath);
|
|
4573
4701
|
},
|
|
4574
4702
|
async getMotionGroupKinematicModel(motionGroupModel, options) {
|
|
4575
4703
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupKinematicModel(motionGroupModel, options);
|
|
4576
4704
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4577
4705
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupKinematicModel"]?.[localVarOperationServerIndex]?.url;
|
|
4578
|
-
return (axios$
|
|
4706
|
+
return (axios$89, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$89, localVarOperationServerBasePath || basePath);
|
|
4579
4707
|
},
|
|
4580
4708
|
async getMotionGroupLimitModel(motionGroupModel, options) {
|
|
4581
4709
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupLimitModel(motionGroupModel, options);
|
|
4582
4710
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4583
4711
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupLimitModel"]?.[localVarOperationServerIndex]?.url;
|
|
4584
|
-
return (axios$
|
|
4712
|
+
return (axios$90, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$90, localVarOperationServerBasePath || basePath);
|
|
4585
4713
|
},
|
|
4586
4714
|
async getMotionGroupModels(options) {
|
|
4587
4715
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupModels(options);
|
|
4588
4716
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4589
4717
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupModels"]?.[localVarOperationServerIndex]?.url;
|
|
4590
|
-
return (axios$
|
|
4718
|
+
return (axios$91, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$91, localVarOperationServerBasePath || basePath);
|
|
4719
|
+
},
|
|
4720
|
+
async getMotionGroupModelsCatalog(options) {
|
|
4721
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupModelsCatalog(options);
|
|
4722
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4723
|
+
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupModelsCatalog"]?.[localVarOperationServerIndex]?.url;
|
|
4724
|
+
return (axios$92, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$92, localVarOperationServerBasePath || basePath);
|
|
4591
4725
|
},
|
|
4592
4726
|
async getMotionGroupUsdModel(motionGroupModel, options) {
|
|
4593
4727
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupUsdModel(motionGroupModel, options);
|
|
4594
4728
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4595
4729
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupUsdModel"]?.[localVarOperationServerIndex]?.url;
|
|
4596
|
-
return (axios$
|
|
4730
|
+
return (axios$93, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$93, localVarOperationServerBasePath || basePath);
|
|
4597
4731
|
},
|
|
4598
4732
|
async importMotionGroupModel(body, options) {
|
|
4599
4733
|
const localVarAxiosArgs = await localVarAxiosParamCreator.importMotionGroupModel(body, options);
|
|
4600
4734
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4601
4735
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.importMotionGroupModel"]?.[localVarOperationServerIndex]?.url;
|
|
4602
|
-
return (axios$
|
|
4736
|
+
return (axios$94, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$94, localVarOperationServerBasePath || basePath);
|
|
4603
4737
|
}
|
|
4604
4738
|
};
|
|
4605
4739
|
};
|
|
4606
4740
|
/**
|
|
4607
4741
|
* MotionGroupModelsApi - factory interface
|
|
4608
4742
|
*/
|
|
4609
|
-
const MotionGroupModelsApiFactory = function(configuration, basePath, axios$
|
|
4743
|
+
const MotionGroupModelsApiFactory = function(configuration, basePath, axios$95) {
|
|
4610
4744
|
const localVarFp = MotionGroupModelsApiFp(configuration);
|
|
4611
4745
|
return {
|
|
4612
4746
|
copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options) {
|
|
4613
|
-
return localVarFp.copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options).then((request) => request(axios$
|
|
4747
|
+
return localVarFp.copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options).then((request) => request(axios$95, basePath));
|
|
4614
4748
|
},
|
|
4615
4749
|
deleteExperimentalMotionGroupModel(motionGroupModel, options) {
|
|
4616
|
-
return localVarFp.deleteExperimentalMotionGroupModel(motionGroupModel, options).then((request) => request(axios$
|
|
4750
|
+
return localVarFp.deleteExperimentalMotionGroupModel(motionGroupModel, options).then((request) => request(axios$95, basePath));
|
|
4617
4751
|
},
|
|
4618
4752
|
exportMotionGroupModel(motionGroupModel, options) {
|
|
4619
|
-
return localVarFp.exportMotionGroupModel(motionGroupModel, options).then((request) => request(axios$
|
|
4753
|
+
return localVarFp.exportMotionGroupModel(motionGroupModel, options).then((request) => request(axios$95, basePath));
|
|
4754
|
+
},
|
|
4755
|
+
getConfigurationForMotionGroup(motionGroupModel, options) {
|
|
4756
|
+
return localVarFp.getConfigurationForMotionGroup(motionGroupModel, options).then((request) => request(axios$95, basePath));
|
|
4620
4757
|
},
|
|
4621
4758
|
getMotionGroupCollisionModel(motionGroupModel, options) {
|
|
4622
|
-
return localVarFp.getMotionGroupCollisionModel(motionGroupModel, options).then((request) => request(axios$
|
|
4759
|
+
return localVarFp.getMotionGroupCollisionModel(motionGroupModel, options).then((request) => request(axios$95, basePath));
|
|
4623
4760
|
},
|
|
4624
4761
|
getMotionGroupDynamicModel(motionGroupModel, options) {
|
|
4625
|
-
return localVarFp.getMotionGroupDynamicModel(motionGroupModel, options).then((request) => request(axios$
|
|
4762
|
+
return localVarFp.getMotionGroupDynamicModel(motionGroupModel, options).then((request) => request(axios$95, basePath));
|
|
4626
4763
|
},
|
|
4627
4764
|
getMotionGroupGlbModel(motionGroupModel, options) {
|
|
4628
|
-
return localVarFp.getMotionGroupGlbModel(motionGroupModel, options).then((request) => request(axios$
|
|
4765
|
+
return localVarFp.getMotionGroupGlbModel(motionGroupModel, options).then((request) => request(axios$95, basePath));
|
|
4629
4766
|
},
|
|
4630
4767
|
getMotionGroupHomejoints(motionGroupModel, options) {
|
|
4631
|
-
return localVarFp.getMotionGroupHomejoints(motionGroupModel, options).then((request) => request(axios$
|
|
4768
|
+
return localVarFp.getMotionGroupHomejoints(motionGroupModel, options).then((request) => request(axios$95, basePath));
|
|
4632
4769
|
},
|
|
4633
4770
|
getMotionGroupKinematicModel(motionGroupModel, options) {
|
|
4634
|
-
return localVarFp.getMotionGroupKinematicModel(motionGroupModel, options).then((request) => request(axios$
|
|
4771
|
+
return localVarFp.getMotionGroupKinematicModel(motionGroupModel, options).then((request) => request(axios$95, basePath));
|
|
4635
4772
|
},
|
|
4636
4773
|
getMotionGroupLimitModel(motionGroupModel, options) {
|
|
4637
|
-
return localVarFp.getMotionGroupLimitModel(motionGroupModel, options).then((request) => request(axios$
|
|
4774
|
+
return localVarFp.getMotionGroupLimitModel(motionGroupModel, options).then((request) => request(axios$95, basePath));
|
|
4638
4775
|
},
|
|
4639
4776
|
getMotionGroupModels(options) {
|
|
4640
|
-
return localVarFp.getMotionGroupModels(options).then((request) => request(axios$
|
|
4777
|
+
return localVarFp.getMotionGroupModels(options).then((request) => request(axios$95, basePath));
|
|
4778
|
+
},
|
|
4779
|
+
getMotionGroupModelsCatalog(options) {
|
|
4780
|
+
return localVarFp.getMotionGroupModelsCatalog(options).then((request) => request(axios$95, basePath));
|
|
4641
4781
|
},
|
|
4642
4782
|
getMotionGroupUsdModel(motionGroupModel, options) {
|
|
4643
|
-
return localVarFp.getMotionGroupUsdModel(motionGroupModel, options).then((request) => request(axios$
|
|
4783
|
+
return localVarFp.getMotionGroupUsdModel(motionGroupModel, options).then((request) => request(axios$95, basePath));
|
|
4644
4784
|
},
|
|
4645
4785
|
importMotionGroupModel(body, options) {
|
|
4646
|
-
return localVarFp.importMotionGroupModel(body, options).then((request) => request(axios$
|
|
4786
|
+
return localVarFp.importMotionGroupModel(body, options).then((request) => request(axios$95, basePath));
|
|
4647
4787
|
}
|
|
4648
4788
|
};
|
|
4649
4789
|
};
|
|
@@ -4663,7 +4803,7 @@ var MotionGroupModelsApi = class extends BaseAPI {
|
|
|
4663
4803
|
return MotionGroupModelsApiFp(this.configuration).copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options).then((request) => request(this.axios, this.basePath));
|
|
4664
4804
|
}
|
|
4665
4805
|
/**
|
|
4666
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models
|
|
4806
|
+
* **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
4807
|
* @summary Delete Motion Group Model
|
|
4668
4808
|
* @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
4809
|
* @param {*} [options] Override http request option.
|
|
@@ -4683,6 +4823,16 @@ var MotionGroupModelsApi = class extends BaseAPI {
|
|
|
4683
4823
|
return MotionGroupModelsApiFp(this.configuration).exportMotionGroupModel(motionGroupModel, options).then((request) => request(this.axios, this.basePath));
|
|
4684
4824
|
}
|
|
4685
4825
|
/**
|
|
4826
|
+
* **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.
|
|
4827
|
+
* @summary Get Configuration for Motion Group
|
|
4828
|
+
* @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
|
+
* @param {*} [options] Override http request option.
|
|
4830
|
+
* @throws {RequiredError}
|
|
4831
|
+
*/
|
|
4832
|
+
getConfigurationForMotionGroup(motionGroupModel, options) {
|
|
4833
|
+
return MotionGroupModelsApiFp(this.configuration).getConfigurationForMotionGroup(motionGroupModel, options).then((request) => request(this.axios, this.basePath));
|
|
4834
|
+
}
|
|
4835
|
+
/**
|
|
4686
4836
|
* **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
4837
|
* @summary Get Collision Model
|
|
4688
4838
|
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
|
|
@@ -4752,6 +4902,15 @@ var MotionGroupModelsApi = class extends BaseAPI {
|
|
|
4752
4902
|
return MotionGroupModelsApiFp(this.configuration).getMotionGroupModels(options).then((request) => request(this.axios, this.basePath));
|
|
4753
4903
|
}
|
|
4754
4904
|
/**
|
|
4905
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the catalog of all motion groups with their motion group names and readable names.
|
|
4906
|
+
* @summary Motion Group Model Catalog
|
|
4907
|
+
* @param {*} [options] Override http request option.
|
|
4908
|
+
* @throws {RequiredError}
|
|
4909
|
+
*/
|
|
4910
|
+
getMotionGroupModelsCatalog(options) {
|
|
4911
|
+
return MotionGroupModelsApiFp(this.configuration).getMotionGroupModelsCatalog(options).then((request) => request(this.axios, this.basePath));
|
|
4912
|
+
}
|
|
4913
|
+
/**
|
|
4755
4914
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the USD scene model for the specified motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported identifiers.
|
|
4756
4915
|
* @summary Download USD Model
|
|
4757
4916
|
* @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 +4988,30 @@ const NOVACloudApiAxiosParamCreator = function(configuration) {
|
|
|
4829
4988
|
options: localVarRequestOptions
|
|
4830
4989
|
};
|
|
4831
4990
|
},
|
|
4991
|
+
getCloudStatus: async (options = {}) => {
|
|
4992
|
+
const localVarUrlObj = new URL(`/experimental/cloud/status`, DUMMY_BASE_URL);
|
|
4993
|
+
let baseOptions;
|
|
4994
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
4995
|
+
const localVarRequestOptions = {
|
|
4996
|
+
method: "GET",
|
|
4997
|
+
...baseOptions,
|
|
4998
|
+
...options
|
|
4999
|
+
};
|
|
5000
|
+
const localVarHeaderParameter = {};
|
|
5001
|
+
const localVarQueryParameter = {};
|
|
5002
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
5003
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5004
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5005
|
+
localVarRequestOptions.headers = {
|
|
5006
|
+
...localVarHeaderParameter,
|
|
5007
|
+
...headersFromBaseOptions,
|
|
5008
|
+
...options.headers
|
|
5009
|
+
};
|
|
5010
|
+
return {
|
|
5011
|
+
url: toPathString(localVarUrlObj),
|
|
5012
|
+
options: localVarRequestOptions
|
|
5013
|
+
};
|
|
5014
|
+
},
|
|
4832
5015
|
getNovaCloudConfig: async (options = {}) => {
|
|
4833
5016
|
const localVarUrlObj = new URL(`/experimental/cloud/config`, DUMMY_BASE_URL);
|
|
4834
5017
|
let baseOptions;
|
|
@@ -4865,36 +5048,45 @@ const NOVACloudApiFp = function(configuration) {
|
|
|
4865
5048
|
const localVarAxiosArgs = await localVarAxiosParamCreator.connectToNovaCloud(completionTimeout, cloudConnectionRequest, options);
|
|
4866
5049
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4867
5050
|
const localVarOperationServerBasePath = operationServerMap["NOVACloudApi.connectToNovaCloud"]?.[localVarOperationServerIndex]?.url;
|
|
4868
|
-
return (axios$
|
|
5051
|
+
return (axios$96, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$96, localVarOperationServerBasePath || basePath);
|
|
4869
5052
|
},
|
|
4870
5053
|
async disconnectFromNovaCloud(completionTimeout, options) {
|
|
4871
5054
|
const localVarAxiosArgs = await localVarAxiosParamCreator.disconnectFromNovaCloud(completionTimeout, options);
|
|
4872
5055
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4873
5056
|
const localVarOperationServerBasePath = operationServerMap["NOVACloudApi.disconnectFromNovaCloud"]?.[localVarOperationServerIndex]?.url;
|
|
4874
|
-
return (axios$
|
|
5057
|
+
return (axios$97, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$97, localVarOperationServerBasePath || basePath);
|
|
5058
|
+
},
|
|
5059
|
+
async getCloudStatus(options) {
|
|
5060
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getCloudStatus(options);
|
|
5061
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5062
|
+
const localVarOperationServerBasePath = operationServerMap["NOVACloudApi.getCloudStatus"]?.[localVarOperationServerIndex]?.url;
|
|
5063
|
+
return (axios$98, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$98, localVarOperationServerBasePath || basePath);
|
|
4875
5064
|
},
|
|
4876
5065
|
async getNovaCloudConfig(options) {
|
|
4877
5066
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getNovaCloudConfig(options);
|
|
4878
5067
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4879
5068
|
const localVarOperationServerBasePath = operationServerMap["NOVACloudApi.getNovaCloudConfig"]?.[localVarOperationServerIndex]?.url;
|
|
4880
|
-
return (axios$
|
|
5069
|
+
return (axios$99, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$99, localVarOperationServerBasePath || basePath);
|
|
4881
5070
|
}
|
|
4882
5071
|
};
|
|
4883
5072
|
};
|
|
4884
5073
|
/**
|
|
4885
5074
|
* NOVACloudApi - factory interface
|
|
4886
5075
|
*/
|
|
4887
|
-
const NOVACloudApiFactory = function(configuration, basePath, axios$
|
|
5076
|
+
const NOVACloudApiFactory = function(configuration, basePath, axios$100) {
|
|
4888
5077
|
const localVarFp = NOVACloudApiFp(configuration);
|
|
4889
5078
|
return {
|
|
4890
5079
|
connectToNovaCloud(completionTimeout, cloudConnectionRequest, options) {
|
|
4891
|
-
return localVarFp.connectToNovaCloud(completionTimeout, cloudConnectionRequest, options).then((request) => request(axios$
|
|
5080
|
+
return localVarFp.connectToNovaCloud(completionTimeout, cloudConnectionRequest, options).then((request) => request(axios$100, basePath));
|
|
4892
5081
|
},
|
|
4893
5082
|
disconnectFromNovaCloud(completionTimeout, options) {
|
|
4894
|
-
return localVarFp.disconnectFromNovaCloud(completionTimeout, options).then((request) => request(axios$
|
|
5083
|
+
return localVarFp.disconnectFromNovaCloud(completionTimeout, options).then((request) => request(axios$100, basePath));
|
|
5084
|
+
},
|
|
5085
|
+
getCloudStatus(options) {
|
|
5086
|
+
return localVarFp.getCloudStatus(options).then((request) => request(axios$100, basePath));
|
|
4895
5087
|
},
|
|
4896
5088
|
getNovaCloudConfig(options) {
|
|
4897
|
-
return localVarFp.getNovaCloudConfig(options).then((request) => request(axios$
|
|
5089
|
+
return localVarFp.getNovaCloudConfig(options).then((request) => request(axios$100, basePath));
|
|
4898
5090
|
}
|
|
4899
5091
|
};
|
|
4900
5092
|
};
|
|
@@ -4924,6 +5116,15 @@ var NOVACloudApi = class extends BaseAPI {
|
|
|
4924
5116
|
return NOVACloudApiFp(this.configuration).disconnectFromNovaCloud(completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
4925
5117
|
}
|
|
4926
5118
|
/**
|
|
5119
|
+
* **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.
|
|
5120
|
+
* @summary Get Connection Status
|
|
5121
|
+
* @param {*} [options] Override http request option.
|
|
5122
|
+
* @throws {RequiredError}
|
|
5123
|
+
*/
|
|
5124
|
+
getCloudStatus(options) {
|
|
5125
|
+
return NOVACloudApiFp(this.configuration).getCloudStatus(options).then((request) => request(this.axios, this.basePath));
|
|
5126
|
+
}
|
|
5127
|
+
/**
|
|
4927
5128
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection config for this instance.
|
|
4928
5129
|
* @summary Get Connection Config
|
|
4929
5130
|
* @param {*} [options] Override http request option.
|
|
@@ -5060,45 +5261,45 @@ const ProgramApiFp = function(configuration) {
|
|
|
5060
5261
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getProgram(cell, program, options);
|
|
5061
5262
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5062
5263
|
const localVarOperationServerBasePath = operationServerMap["ProgramApi.getProgram"]?.[localVarOperationServerIndex]?.url;
|
|
5063
|
-
return (axios$
|
|
5264
|
+
return (axios$101, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$101, localVarOperationServerBasePath || basePath);
|
|
5064
5265
|
},
|
|
5065
5266
|
async listPrograms(cell, options) {
|
|
5066
5267
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listPrograms(cell, options);
|
|
5067
5268
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5068
5269
|
const localVarOperationServerBasePath = operationServerMap["ProgramApi.listPrograms"]?.[localVarOperationServerIndex]?.url;
|
|
5069
|
-
return (axios$
|
|
5270
|
+
return (axios$102, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$102, localVarOperationServerBasePath || basePath);
|
|
5070
5271
|
},
|
|
5071
5272
|
async startProgram(cell, program, programStartRequest, options) {
|
|
5072
5273
|
const localVarAxiosArgs = await localVarAxiosParamCreator.startProgram(cell, program, programStartRequest, options);
|
|
5073
5274
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5074
5275
|
const localVarOperationServerBasePath = operationServerMap["ProgramApi.startProgram"]?.[localVarOperationServerIndex]?.url;
|
|
5075
|
-
return (axios$
|
|
5276
|
+
return (axios$103, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$103, localVarOperationServerBasePath || basePath);
|
|
5076
5277
|
},
|
|
5077
5278
|
async stopProgram(cell, program, options) {
|
|
5078
5279
|
const localVarAxiosArgs = await localVarAxiosParamCreator.stopProgram(cell, program, options);
|
|
5079
5280
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5080
5281
|
const localVarOperationServerBasePath = operationServerMap["ProgramApi.stopProgram"]?.[localVarOperationServerIndex]?.url;
|
|
5081
|
-
return (axios$
|
|
5282
|
+
return (axios$104, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$104, localVarOperationServerBasePath || basePath);
|
|
5082
5283
|
}
|
|
5083
5284
|
};
|
|
5084
5285
|
};
|
|
5085
5286
|
/**
|
|
5086
5287
|
* ProgramApi - factory interface
|
|
5087
5288
|
*/
|
|
5088
|
-
const ProgramApiFactory = function(configuration, basePath, axios$
|
|
5289
|
+
const ProgramApiFactory = function(configuration, basePath, axios$105) {
|
|
5089
5290
|
const localVarFp = ProgramApiFp(configuration);
|
|
5090
5291
|
return {
|
|
5091
5292
|
getProgram(cell, program, options) {
|
|
5092
|
-
return localVarFp.getProgram(cell, program, options).then((request) => request(axios$
|
|
5293
|
+
return localVarFp.getProgram(cell, program, options).then((request) => request(axios$105, basePath));
|
|
5093
5294
|
},
|
|
5094
5295
|
listPrograms(cell, options) {
|
|
5095
|
-
return localVarFp.listPrograms(cell, options).then((request) => request(axios$
|
|
5296
|
+
return localVarFp.listPrograms(cell, options).then((request) => request(axios$105, basePath));
|
|
5096
5297
|
},
|
|
5097
5298
|
startProgram(cell, program, programStartRequest, options) {
|
|
5098
|
-
return localVarFp.startProgram(cell, program, programStartRequest, options).then((request) => request(axios$
|
|
5299
|
+
return localVarFp.startProgram(cell, program, programStartRequest, options).then((request) => request(axios$105, basePath));
|
|
5099
5300
|
},
|
|
5100
5301
|
stopProgram(cell, program, options) {
|
|
5101
|
-
return localVarFp.stopProgram(cell, program, options).then((request) => request(axios$
|
|
5302
|
+
return localVarFp.stopProgram(cell, program, options).then((request) => request(axios$105, basePath));
|
|
5102
5303
|
}
|
|
5103
5304
|
};
|
|
5104
5305
|
};
|
|
@@ -5219,27 +5420,27 @@ const RobotConfigurationsApiFp = function(configuration) {
|
|
|
5219
5420
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getControllerConfigFromArpScan(robotControllerConfigurationRequest, options);
|
|
5220
5421
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5221
5422
|
const localVarOperationServerBasePath = operationServerMap["RobotConfigurationsApi.getControllerConfigFromArpScan"]?.[localVarOperationServerIndex]?.url;
|
|
5222
|
-
return (axios$
|
|
5423
|
+
return (axios$106, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$106, localVarOperationServerBasePath || basePath);
|
|
5223
5424
|
},
|
|
5224
5425
|
async getRobotConfigurations(options) {
|
|
5225
5426
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getRobotConfigurations(options);
|
|
5226
5427
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5227
5428
|
const localVarOperationServerBasePath = operationServerMap["RobotConfigurationsApi.getRobotConfigurations"]?.[localVarOperationServerIndex]?.url;
|
|
5228
|
-
return (axios$
|
|
5429
|
+
return (axios$107, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$107, localVarOperationServerBasePath || basePath);
|
|
5229
5430
|
}
|
|
5230
5431
|
};
|
|
5231
5432
|
};
|
|
5232
5433
|
/**
|
|
5233
5434
|
* RobotConfigurationsApi - factory interface
|
|
5234
5435
|
*/
|
|
5235
|
-
const RobotConfigurationsApiFactory = function(configuration, basePath, axios$
|
|
5436
|
+
const RobotConfigurationsApiFactory = function(configuration, basePath, axios$108) {
|
|
5236
5437
|
const localVarFp = RobotConfigurationsApiFp(configuration);
|
|
5237
5438
|
return {
|
|
5238
5439
|
getControllerConfigFromArpScan(robotControllerConfigurationRequest, options) {
|
|
5239
|
-
return localVarFp.getControllerConfigFromArpScan(robotControllerConfigurationRequest, options).then((request) => request(axios$
|
|
5440
|
+
return localVarFp.getControllerConfigFromArpScan(robotControllerConfigurationRequest, options).then((request) => request(axios$108, basePath));
|
|
5240
5441
|
},
|
|
5241
5442
|
getRobotConfigurations(options) {
|
|
5242
|
-
return localVarFp.getRobotConfigurations(options).then((request) => request(axios$
|
|
5443
|
+
return localVarFp.getRobotConfigurations(options).then((request) => request(axios$108, basePath));
|
|
5243
5444
|
}
|
|
5244
5445
|
};
|
|
5245
5446
|
};
|
|
@@ -5305,16 +5506,16 @@ const SessionApiFp = function(configuration) {
|
|
|
5305
5506
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getSession(options);
|
|
5306
5507
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5307
5508
|
const localVarOperationServerBasePath = operationServerMap["SessionApi.getSession"]?.[localVarOperationServerIndex]?.url;
|
|
5308
|
-
return (axios$
|
|
5509
|
+
return (axios$109, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$109, localVarOperationServerBasePath || basePath);
|
|
5309
5510
|
} };
|
|
5310
5511
|
};
|
|
5311
5512
|
/**
|
|
5312
5513
|
* SessionApi - factory interface
|
|
5313
5514
|
*/
|
|
5314
|
-
const SessionApiFactory = function(configuration, basePath, axios$
|
|
5515
|
+
const SessionApiFactory = function(configuration, basePath, axios$110) {
|
|
5315
5516
|
const localVarFp = SessionApiFp(configuration);
|
|
5316
5517
|
return { getSession(options) {
|
|
5317
|
-
return localVarFp.getSession(options).then((request) => request(axios$
|
|
5518
|
+
return localVarFp.getSession(options).then((request) => request(axios$110, basePath));
|
|
5318
5519
|
} };
|
|
5319
5520
|
};
|
|
5320
5521
|
/**
|
|
@@ -5756,144 +5957,144 @@ const StoreCollisionComponentsApiFp = function(configuration) {
|
|
|
5756
5957
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteStoredCollider(cell, collider, options);
|
|
5757
5958
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5758
5959
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.deleteStoredCollider"]?.[localVarOperationServerIndex]?.url;
|
|
5759
|
-
return (axios$
|
|
5960
|
+
return (axios$111, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$111, localVarOperationServerBasePath || basePath);
|
|
5760
5961
|
},
|
|
5761
5962
|
async deleteStoredCollisionLinkChain(cell, linkChain, options) {
|
|
5762
5963
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteStoredCollisionLinkChain(cell, linkChain, options);
|
|
5763
5964
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5764
5965
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.deleteStoredCollisionLinkChain"]?.[localVarOperationServerIndex]?.url;
|
|
5765
|
-
return (axios$
|
|
5966
|
+
return (axios$112, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$112, localVarOperationServerBasePath || basePath);
|
|
5766
5967
|
},
|
|
5767
5968
|
async deleteStoredCollisionTool(cell, tool, options) {
|
|
5768
5969
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteStoredCollisionTool(cell, tool, options);
|
|
5769
5970
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5770
5971
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.deleteStoredCollisionTool"]?.[localVarOperationServerIndex]?.url;
|
|
5771
|
-
return (axios$
|
|
5972
|
+
return (axios$113, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$113, localVarOperationServerBasePath || basePath);
|
|
5772
5973
|
},
|
|
5773
5974
|
async getStoredCollider(cell, collider, options) {
|
|
5774
5975
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getStoredCollider(cell, collider, options);
|
|
5775
5976
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5776
5977
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.getStoredCollider"]?.[localVarOperationServerIndex]?.url;
|
|
5777
|
-
return (axios$
|
|
5978
|
+
return (axios$114, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$114, localVarOperationServerBasePath || basePath);
|
|
5778
5979
|
},
|
|
5779
5980
|
async getStoredCollisionLinkChain(cell, linkChain, options) {
|
|
5780
5981
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getStoredCollisionLinkChain(cell, linkChain, options);
|
|
5781
5982
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5782
5983
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.getStoredCollisionLinkChain"]?.[localVarOperationServerIndex]?.url;
|
|
5783
|
-
return (axios$
|
|
5984
|
+
return (axios$115, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$115, localVarOperationServerBasePath || basePath);
|
|
5784
5985
|
},
|
|
5785
5986
|
async getStoredCollisionTool(cell, tool, options) {
|
|
5786
5987
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getStoredCollisionTool(cell, tool, options);
|
|
5787
5988
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5788
5989
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.getStoredCollisionTool"]?.[localVarOperationServerIndex]?.url;
|
|
5789
|
-
return (axios$
|
|
5990
|
+
return (axios$116, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$116, localVarOperationServerBasePath || basePath);
|
|
5790
5991
|
},
|
|
5791
5992
|
async listCollisionLinkChains(cell, options) {
|
|
5792
5993
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listCollisionLinkChains(cell, options);
|
|
5793
5994
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5794
5995
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listCollisionLinkChains"]?.[localVarOperationServerIndex]?.url;
|
|
5795
|
-
return (axios$
|
|
5996
|
+
return (axios$117, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$117, localVarOperationServerBasePath || basePath);
|
|
5796
5997
|
},
|
|
5797
5998
|
async listCollisionLinkChainsKeys(cell, options) {
|
|
5798
5999
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listCollisionLinkChainsKeys(cell, options);
|
|
5799
6000
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5800
6001
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listCollisionLinkChainsKeys"]?.[localVarOperationServerIndex]?.url;
|
|
5801
|
-
return (axios$
|
|
6002
|
+
return (axios$118, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$118, localVarOperationServerBasePath || basePath);
|
|
5802
6003
|
},
|
|
5803
6004
|
async listStoredColliders(cell, options) {
|
|
5804
6005
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredColliders(cell, options);
|
|
5805
6006
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5806
6007
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listStoredColliders"]?.[localVarOperationServerIndex]?.url;
|
|
5807
|
-
return (axios$
|
|
6008
|
+
return (axios$119, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$119, localVarOperationServerBasePath || basePath);
|
|
5808
6009
|
},
|
|
5809
6010
|
async listStoredCollidersKeys(cell, options) {
|
|
5810
6011
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredCollidersKeys(cell, options);
|
|
5811
6012
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5812
6013
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listStoredCollidersKeys"]?.[localVarOperationServerIndex]?.url;
|
|
5813
|
-
return (axios$
|
|
6014
|
+
return (axios$120, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$120, localVarOperationServerBasePath || basePath);
|
|
5814
6015
|
},
|
|
5815
6016
|
async listStoredCollisionTools(cell, options) {
|
|
5816
6017
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredCollisionTools(cell, options);
|
|
5817
6018
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5818
6019
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listStoredCollisionTools"]?.[localVarOperationServerIndex]?.url;
|
|
5819
|
-
return (axios$
|
|
6020
|
+
return (axios$121, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$121, localVarOperationServerBasePath || basePath);
|
|
5820
6021
|
},
|
|
5821
6022
|
async listStoredCollisionToolsKeys(cell, options) {
|
|
5822
6023
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredCollisionToolsKeys(cell, options);
|
|
5823
6024
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5824
6025
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listStoredCollisionToolsKeys"]?.[localVarOperationServerIndex]?.url;
|
|
5825
|
-
return (axios$
|
|
6026
|
+
return (axios$122, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$122, localVarOperationServerBasePath || basePath);
|
|
5826
6027
|
},
|
|
5827
6028
|
async storeCollider(cell, collider, collider2, options) {
|
|
5828
6029
|
const localVarAxiosArgs = await localVarAxiosParamCreator.storeCollider(cell, collider, collider2, options);
|
|
5829
6030
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5830
6031
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.storeCollider"]?.[localVarOperationServerIndex]?.url;
|
|
5831
|
-
return (axios$
|
|
6032
|
+
return (axios$123, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$123, localVarOperationServerBasePath || basePath);
|
|
5832
6033
|
},
|
|
5833
6034
|
async storeCollisionLinkChain(cell, linkChain, collider, options) {
|
|
5834
6035
|
const localVarAxiosArgs = await localVarAxiosParamCreator.storeCollisionLinkChain(cell, linkChain, collider, options);
|
|
5835
6036
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5836
6037
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.storeCollisionLinkChain"]?.[localVarOperationServerIndex]?.url;
|
|
5837
|
-
return (axios$
|
|
6038
|
+
return (axios$124, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$124, localVarOperationServerBasePath || basePath);
|
|
5838
6039
|
},
|
|
5839
6040
|
async storeCollisionTool(cell, tool, requestBody, options) {
|
|
5840
6041
|
const localVarAxiosArgs = await localVarAxiosParamCreator.storeCollisionTool(cell, tool, requestBody, options);
|
|
5841
6042
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5842
6043
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.storeCollisionTool"]?.[localVarOperationServerIndex]?.url;
|
|
5843
|
-
return (axios$
|
|
6044
|
+
return (axios$125, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$125, localVarOperationServerBasePath || basePath);
|
|
5844
6045
|
}
|
|
5845
6046
|
};
|
|
5846
6047
|
};
|
|
5847
6048
|
/**
|
|
5848
6049
|
* StoreCollisionComponentsApi - factory interface
|
|
5849
6050
|
*/
|
|
5850
|
-
const StoreCollisionComponentsApiFactory = function(configuration, basePath, axios$
|
|
6051
|
+
const StoreCollisionComponentsApiFactory = function(configuration, basePath, axios$126) {
|
|
5851
6052
|
const localVarFp = StoreCollisionComponentsApiFp(configuration);
|
|
5852
6053
|
return {
|
|
5853
6054
|
deleteStoredCollider(cell, collider, options) {
|
|
5854
|
-
return localVarFp.deleteStoredCollider(cell, collider, options).then((request) => request(axios$
|
|
6055
|
+
return localVarFp.deleteStoredCollider(cell, collider, options).then((request) => request(axios$126, basePath));
|
|
5855
6056
|
},
|
|
5856
6057
|
deleteStoredCollisionLinkChain(cell, linkChain, options) {
|
|
5857
|
-
return localVarFp.deleteStoredCollisionLinkChain(cell, linkChain, options).then((request) => request(axios$
|
|
6058
|
+
return localVarFp.deleteStoredCollisionLinkChain(cell, linkChain, options).then((request) => request(axios$126, basePath));
|
|
5858
6059
|
},
|
|
5859
6060
|
deleteStoredCollisionTool(cell, tool, options) {
|
|
5860
|
-
return localVarFp.deleteStoredCollisionTool(cell, tool, options).then((request) => request(axios$
|
|
6061
|
+
return localVarFp.deleteStoredCollisionTool(cell, tool, options).then((request) => request(axios$126, basePath));
|
|
5861
6062
|
},
|
|
5862
6063
|
getStoredCollider(cell, collider, options) {
|
|
5863
|
-
return localVarFp.getStoredCollider(cell, collider, options).then((request) => request(axios$
|
|
6064
|
+
return localVarFp.getStoredCollider(cell, collider, options).then((request) => request(axios$126, basePath));
|
|
5864
6065
|
},
|
|
5865
6066
|
getStoredCollisionLinkChain(cell, linkChain, options) {
|
|
5866
|
-
return localVarFp.getStoredCollisionLinkChain(cell, linkChain, options).then((request) => request(axios$
|
|
6067
|
+
return localVarFp.getStoredCollisionLinkChain(cell, linkChain, options).then((request) => request(axios$126, basePath));
|
|
5867
6068
|
},
|
|
5868
6069
|
getStoredCollisionTool(cell, tool, options) {
|
|
5869
|
-
return localVarFp.getStoredCollisionTool(cell, tool, options).then((request) => request(axios$
|
|
6070
|
+
return localVarFp.getStoredCollisionTool(cell, tool, options).then((request) => request(axios$126, basePath));
|
|
5870
6071
|
},
|
|
5871
6072
|
listCollisionLinkChains(cell, options) {
|
|
5872
|
-
return localVarFp.listCollisionLinkChains(cell, options).then((request) => request(axios$
|
|
6073
|
+
return localVarFp.listCollisionLinkChains(cell, options).then((request) => request(axios$126, basePath));
|
|
5873
6074
|
},
|
|
5874
6075
|
listCollisionLinkChainsKeys(cell, options) {
|
|
5875
|
-
return localVarFp.listCollisionLinkChainsKeys(cell, options).then((request) => request(axios$
|
|
6076
|
+
return localVarFp.listCollisionLinkChainsKeys(cell, options).then((request) => request(axios$126, basePath));
|
|
5876
6077
|
},
|
|
5877
6078
|
listStoredColliders(cell, options) {
|
|
5878
|
-
return localVarFp.listStoredColliders(cell, options).then((request) => request(axios$
|
|
6079
|
+
return localVarFp.listStoredColliders(cell, options).then((request) => request(axios$126, basePath));
|
|
5879
6080
|
},
|
|
5880
6081
|
listStoredCollidersKeys(cell, options) {
|
|
5881
|
-
return localVarFp.listStoredCollidersKeys(cell, options).then((request) => request(axios$
|
|
6082
|
+
return localVarFp.listStoredCollidersKeys(cell, options).then((request) => request(axios$126, basePath));
|
|
5882
6083
|
},
|
|
5883
6084
|
listStoredCollisionTools(cell, options) {
|
|
5884
|
-
return localVarFp.listStoredCollisionTools(cell, options).then((request) => request(axios$
|
|
6085
|
+
return localVarFp.listStoredCollisionTools(cell, options).then((request) => request(axios$126, basePath));
|
|
5885
6086
|
},
|
|
5886
6087
|
listStoredCollisionToolsKeys(cell, options) {
|
|
5887
|
-
return localVarFp.listStoredCollisionToolsKeys(cell, options).then((request) => request(axios$
|
|
6088
|
+
return localVarFp.listStoredCollisionToolsKeys(cell, options).then((request) => request(axios$126, basePath));
|
|
5888
6089
|
},
|
|
5889
6090
|
storeCollider(cell, collider, collider2, options) {
|
|
5890
|
-
return localVarFp.storeCollider(cell, collider, collider2, options).then((request) => request(axios$
|
|
6091
|
+
return localVarFp.storeCollider(cell, collider, collider2, options).then((request) => request(axios$126, basePath));
|
|
5891
6092
|
},
|
|
5892
6093
|
storeCollisionLinkChain(cell, linkChain, collider, options) {
|
|
5893
|
-
return localVarFp.storeCollisionLinkChain(cell, linkChain, collider, options).then((request) => request(axios$
|
|
6094
|
+
return localVarFp.storeCollisionLinkChain(cell, linkChain, collider, options).then((request) => request(axios$126, basePath));
|
|
5894
6095
|
},
|
|
5895
6096
|
storeCollisionTool(cell, tool, requestBody, options) {
|
|
5896
|
-
return localVarFp.storeCollisionTool(cell, tool, requestBody, options).then((request) => request(axios$
|
|
6097
|
+
return localVarFp.storeCollisionTool(cell, tool, requestBody, options).then((request) => request(axios$126, basePath));
|
|
5897
6098
|
}
|
|
5898
6099
|
};
|
|
5899
6100
|
};
|
|
@@ -6217,54 +6418,54 @@ const StoreCollisionSetupsApiFp = function(configuration) {
|
|
|
6217
6418
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteStoredCollisionSetup(cell, setup, options);
|
|
6218
6419
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6219
6420
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionSetupsApi.deleteStoredCollisionSetup"]?.[localVarOperationServerIndex]?.url;
|
|
6220
|
-
return (axios$
|
|
6421
|
+
return (axios$127, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$127, localVarOperationServerBasePath || basePath);
|
|
6221
6422
|
},
|
|
6222
6423
|
async getStoredCollisionSetup(cell, setup, options) {
|
|
6223
6424
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getStoredCollisionSetup(cell, setup, options);
|
|
6224
6425
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6225
6426
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionSetupsApi.getStoredCollisionSetup"]?.[localVarOperationServerIndex]?.url;
|
|
6226
|
-
return (axios$
|
|
6427
|
+
return (axios$128, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$128, localVarOperationServerBasePath || basePath);
|
|
6227
6428
|
},
|
|
6228
6429
|
async listStoredCollisionSetups(cell, options) {
|
|
6229
6430
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredCollisionSetups(cell, options);
|
|
6230
6431
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6231
6432
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionSetupsApi.listStoredCollisionSetups"]?.[localVarOperationServerIndex]?.url;
|
|
6232
|
-
return (axios$
|
|
6433
|
+
return (axios$129, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$129, localVarOperationServerBasePath || basePath);
|
|
6233
6434
|
},
|
|
6234
6435
|
async listStoredCollisionSetupsKeys(cell, options) {
|
|
6235
6436
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredCollisionSetupsKeys(cell, options);
|
|
6236
6437
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6237
6438
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionSetupsApi.listStoredCollisionSetupsKeys"]?.[localVarOperationServerIndex]?.url;
|
|
6238
|
-
return (axios$
|
|
6439
|
+
return (axios$130, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$130, localVarOperationServerBasePath || basePath);
|
|
6239
6440
|
},
|
|
6240
6441
|
async storeCollisionSetup(cell, setup, collisionSetup, options) {
|
|
6241
6442
|
const localVarAxiosArgs = await localVarAxiosParamCreator.storeCollisionSetup(cell, setup, collisionSetup, options);
|
|
6242
6443
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6243
6444
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionSetupsApi.storeCollisionSetup"]?.[localVarOperationServerIndex]?.url;
|
|
6244
|
-
return (axios$
|
|
6445
|
+
return (axios$131, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$131, localVarOperationServerBasePath || basePath);
|
|
6245
6446
|
}
|
|
6246
6447
|
};
|
|
6247
6448
|
};
|
|
6248
6449
|
/**
|
|
6249
6450
|
* StoreCollisionSetupsApi - factory interface
|
|
6250
6451
|
*/
|
|
6251
|
-
const StoreCollisionSetupsApiFactory = function(configuration, basePath, axios$
|
|
6452
|
+
const StoreCollisionSetupsApiFactory = function(configuration, basePath, axios$132) {
|
|
6252
6453
|
const localVarFp = StoreCollisionSetupsApiFp(configuration);
|
|
6253
6454
|
return {
|
|
6254
6455
|
deleteStoredCollisionSetup(cell, setup, options) {
|
|
6255
|
-
return localVarFp.deleteStoredCollisionSetup(cell, setup, options).then((request) => request(axios$
|
|
6456
|
+
return localVarFp.deleteStoredCollisionSetup(cell, setup, options).then((request) => request(axios$132, basePath));
|
|
6256
6457
|
},
|
|
6257
6458
|
getStoredCollisionSetup(cell, setup, options) {
|
|
6258
|
-
return localVarFp.getStoredCollisionSetup(cell, setup, options).then((request) => request(axios$
|
|
6459
|
+
return localVarFp.getStoredCollisionSetup(cell, setup, options).then((request) => request(axios$132, basePath));
|
|
6259
6460
|
},
|
|
6260
6461
|
listStoredCollisionSetups(cell, options) {
|
|
6261
|
-
return localVarFp.listStoredCollisionSetups(cell, options).then((request) => request(axios$
|
|
6462
|
+
return localVarFp.listStoredCollisionSetups(cell, options).then((request) => request(axios$132, basePath));
|
|
6262
6463
|
},
|
|
6263
6464
|
listStoredCollisionSetupsKeys(cell, options) {
|
|
6264
|
-
return localVarFp.listStoredCollisionSetupsKeys(cell, options).then((request) => request(axios$
|
|
6465
|
+
return localVarFp.listStoredCollisionSetupsKeys(cell, options).then((request) => request(axios$132, basePath));
|
|
6265
6466
|
},
|
|
6266
6467
|
storeCollisionSetup(cell, setup, collisionSetup, options) {
|
|
6267
|
-
return localVarFp.storeCollisionSetup(cell, setup, collisionSetup, options).then((request) => request(axios$
|
|
6468
|
+
return localVarFp.storeCollisionSetup(cell, setup, collisionSetup, options).then((request) => request(axios$132, basePath));
|
|
6268
6469
|
}
|
|
6269
6470
|
};
|
|
6270
6471
|
};
|
|
@@ -6509,63 +6710,63 @@ const StoreObjectApiFp = function(configuration) {
|
|
|
6509
6710
|
const localVarAxiosArgs = await localVarAxiosParamCreator.clearAllObjects(cell, options);
|
|
6510
6711
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6511
6712
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.clearAllObjects"]?.[localVarOperationServerIndex]?.url;
|
|
6512
|
-
return (axios$
|
|
6713
|
+
return (axios$133, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$133, localVarOperationServerBasePath || basePath);
|
|
6513
6714
|
},
|
|
6514
6715
|
async deleteObject(cell, key, options) {
|
|
6515
6716
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteObject(cell, key, options);
|
|
6516
6717
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6517
6718
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.deleteObject"]?.[localVarOperationServerIndex]?.url;
|
|
6518
|
-
return (axios$
|
|
6719
|
+
return (axios$134, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$134, localVarOperationServerBasePath || basePath);
|
|
6519
6720
|
},
|
|
6520
6721
|
async getObject(cell, key, options) {
|
|
6521
6722
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getObject(cell, key, options);
|
|
6522
6723
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6523
6724
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.getObject"]?.[localVarOperationServerIndex]?.url;
|
|
6524
|
-
return (axios$
|
|
6725
|
+
return (axios$135, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$135, localVarOperationServerBasePath || basePath);
|
|
6525
6726
|
},
|
|
6526
6727
|
async getObjectMetadata(cell, key, options) {
|
|
6527
6728
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getObjectMetadata(cell, key, options);
|
|
6528
6729
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6529
6730
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.getObjectMetadata"]?.[localVarOperationServerIndex]?.url;
|
|
6530
|
-
return (axios$
|
|
6731
|
+
return (axios$136, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$136, localVarOperationServerBasePath || basePath);
|
|
6531
6732
|
},
|
|
6532
6733
|
async listAllObjectKeys(cell, options) {
|
|
6533
6734
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listAllObjectKeys(cell, options);
|
|
6534
6735
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6535
6736
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.listAllObjectKeys"]?.[localVarOperationServerIndex]?.url;
|
|
6536
|
-
return (axios$
|
|
6737
|
+
return (axios$137, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$137, localVarOperationServerBasePath || basePath);
|
|
6537
6738
|
},
|
|
6538
6739
|
async storeObject(cell, key, xMetadata, anyValue, options) {
|
|
6539
6740
|
const localVarAxiosArgs = await localVarAxiosParamCreator.storeObject(cell, key, xMetadata, anyValue, options);
|
|
6540
6741
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6541
6742
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.storeObject"]?.[localVarOperationServerIndex]?.url;
|
|
6542
|
-
return (axios$
|
|
6743
|
+
return (axios$138, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$138, localVarOperationServerBasePath || basePath);
|
|
6543
6744
|
}
|
|
6544
6745
|
};
|
|
6545
6746
|
};
|
|
6546
6747
|
/**
|
|
6547
6748
|
* StoreObjectApi - factory interface
|
|
6548
6749
|
*/
|
|
6549
|
-
const StoreObjectApiFactory = function(configuration, basePath, axios$
|
|
6750
|
+
const StoreObjectApiFactory = function(configuration, basePath, axios$139) {
|
|
6550
6751
|
const localVarFp = StoreObjectApiFp(configuration);
|
|
6551
6752
|
return {
|
|
6552
6753
|
clearAllObjects(cell, options) {
|
|
6553
|
-
return localVarFp.clearAllObjects(cell, options).then((request) => request(axios$
|
|
6754
|
+
return localVarFp.clearAllObjects(cell, options).then((request) => request(axios$139, basePath));
|
|
6554
6755
|
},
|
|
6555
6756
|
deleteObject(cell, key, options) {
|
|
6556
|
-
return localVarFp.deleteObject(cell, key, options).then((request) => request(axios$
|
|
6757
|
+
return localVarFp.deleteObject(cell, key, options).then((request) => request(axios$139, basePath));
|
|
6557
6758
|
},
|
|
6558
6759
|
getObject(cell, key, options) {
|
|
6559
|
-
return localVarFp.getObject(cell, key, options).then((request) => request(axios$
|
|
6760
|
+
return localVarFp.getObject(cell, key, options).then((request) => request(axios$139, basePath));
|
|
6560
6761
|
},
|
|
6561
6762
|
getObjectMetadata(cell, key, options) {
|
|
6562
|
-
return localVarFp.getObjectMetadata(cell, key, options).then((request) => request(axios$
|
|
6763
|
+
return localVarFp.getObjectMetadata(cell, key, options).then((request) => request(axios$139, basePath));
|
|
6563
6764
|
},
|
|
6564
6765
|
listAllObjectKeys(cell, options) {
|
|
6565
|
-
return localVarFp.listAllObjectKeys(cell, options).then((request) => request(axios$
|
|
6766
|
+
return localVarFp.listAllObjectKeys(cell, options).then((request) => request(axios$139, basePath));
|
|
6566
6767
|
},
|
|
6567
6768
|
storeObject(cell, key, xMetadata, anyValue, options) {
|
|
6568
|
-
return localVarFp.storeObject(cell, key, xMetadata, anyValue, options).then((request) => request(axios$
|
|
6769
|
+
return localVarFp.storeObject(cell, key, xMetadata, anyValue, options).then((request) => request(axios$139, basePath));
|
|
6569
6770
|
}
|
|
6570
6771
|
};
|
|
6571
6772
|
};
|
|
@@ -6961,117 +7162,117 @@ const SystemApiFp = function(configuration) {
|
|
|
6961
7162
|
const localVarAxiosArgs = await localVarAxiosParamCreator.backupConfiguration(resources, metadata, options);
|
|
6962
7163
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6963
7164
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.backupConfiguration"]?.[localVarOperationServerIndex]?.url;
|
|
6964
|
-
return (axios$
|
|
7165
|
+
return (axios$140, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$140, localVarOperationServerBasePath || basePath);
|
|
6965
7166
|
},
|
|
6966
7167
|
async checkNovaVersionUpdate(channel, options) {
|
|
6967
7168
|
const localVarAxiosArgs = await localVarAxiosParamCreator.checkNovaVersionUpdate(channel, options);
|
|
6968
7169
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6969
7170
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.checkNovaVersionUpdate"]?.[localVarOperationServerIndex]?.url;
|
|
6970
|
-
return (axios$
|
|
7171
|
+
return (axios$141, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$141, localVarOperationServerBasePath || basePath);
|
|
6971
7172
|
},
|
|
6972
7173
|
async getArpScan(_interface, cidr, timeout, options) {
|
|
6973
7174
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getArpScan(_interface, cidr, timeout, options);
|
|
6974
7175
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6975
7176
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getArpScan"]?.[localVarOperationServerIndex]?.url;
|
|
6976
|
-
return (axios$
|
|
7177
|
+
return (axios$142, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$142, localVarOperationServerBasePath || basePath);
|
|
6977
7178
|
},
|
|
6978
7179
|
async getConfigurationBackupStatus(operationId, options) {
|
|
6979
7180
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getConfigurationBackupStatus(operationId, options);
|
|
6980
7181
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6981
7182
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getConfigurationBackupStatus"]?.[localVarOperationServerIndex]?.url;
|
|
6982
|
-
return (axios$
|
|
7183
|
+
return (axios$143, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$143, localVarOperationServerBasePath || basePath);
|
|
6983
7184
|
},
|
|
6984
7185
|
async getDiagnosePackage(options) {
|
|
6985
7186
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getDiagnosePackage(options);
|
|
6986
7187
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6987
7188
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getDiagnosePackage"]?.[localVarOperationServerIndex]?.url;
|
|
6988
|
-
return (axios$
|
|
7189
|
+
return (axios$144, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$144, localVarOperationServerBasePath || basePath);
|
|
6989
7190
|
},
|
|
6990
7191
|
async getNetworkInterfaces(options) {
|
|
6991
7192
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getNetworkInterfaces(options);
|
|
6992
7193
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6993
7194
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getNetworkInterfaces"]?.[localVarOperationServerIndex]?.url;
|
|
6994
|
-
return (axios$
|
|
7195
|
+
return (axios$145, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$145, localVarOperationServerBasePath || basePath);
|
|
6995
7196
|
},
|
|
6996
7197
|
async getNetworkState(options) {
|
|
6997
7198
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getNetworkState(options);
|
|
6998
7199
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6999
7200
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getNetworkState"]?.[localVarOperationServerIndex]?.url;
|
|
7000
|
-
return (axios$
|
|
7201
|
+
return (axios$146, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$146, localVarOperationServerBasePath || basePath);
|
|
7001
7202
|
},
|
|
7002
7203
|
async getSystemStatus(options) {
|
|
7003
7204
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getSystemStatus(options);
|
|
7004
7205
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7005
7206
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getSystemStatus"]?.[localVarOperationServerIndex]?.url;
|
|
7006
|
-
return (axios$
|
|
7207
|
+
return (axios$147, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$147, localVarOperationServerBasePath || basePath);
|
|
7007
7208
|
},
|
|
7008
7209
|
async getSystemVersion(options) {
|
|
7009
7210
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getSystemVersion(options);
|
|
7010
7211
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7011
7212
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getSystemVersion"]?.[localVarOperationServerIndex]?.url;
|
|
7012
|
-
return (axios$
|
|
7213
|
+
return (axios$148, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$148, localVarOperationServerBasePath || basePath);
|
|
7013
7214
|
},
|
|
7014
7215
|
async listConfigurationResources(options) {
|
|
7015
7216
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listConfigurationResources(options);
|
|
7016
7217
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7017
7218
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.listConfigurationResources"]?.[localVarOperationServerIndex]?.url;
|
|
7018
|
-
return (axios$
|
|
7219
|
+
return (axios$149, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$149, localVarOperationServerBasePath || basePath);
|
|
7019
7220
|
},
|
|
7020
7221
|
async restoreConfiguration(body, resources, options) {
|
|
7021
7222
|
const localVarAxiosArgs = await localVarAxiosParamCreator.restoreConfiguration(body, resources, options);
|
|
7022
7223
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7023
7224
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.restoreConfiguration"]?.[localVarOperationServerIndex]?.url;
|
|
7024
|
-
return (axios$
|
|
7225
|
+
return (axios$150, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$150, localVarOperationServerBasePath || basePath);
|
|
7025
7226
|
},
|
|
7026
7227
|
async updateNovaVersion(updateNovaVersionRequest, options) {
|
|
7027
7228
|
const localVarAxiosArgs = await localVarAxiosParamCreator.updateNovaVersion(updateNovaVersionRequest, options);
|
|
7028
7229
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7029
7230
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.updateNovaVersion"]?.[localVarOperationServerIndex]?.url;
|
|
7030
|
-
return (axios$
|
|
7231
|
+
return (axios$151, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$151, localVarOperationServerBasePath || basePath);
|
|
7031
7232
|
}
|
|
7032
7233
|
};
|
|
7033
7234
|
};
|
|
7034
7235
|
/**
|
|
7035
7236
|
* SystemApi - factory interface
|
|
7036
7237
|
*/
|
|
7037
|
-
const SystemApiFactory = function(configuration, basePath, axios$
|
|
7238
|
+
const SystemApiFactory = function(configuration, basePath, axios$152) {
|
|
7038
7239
|
const localVarFp = SystemApiFp(configuration);
|
|
7039
7240
|
return {
|
|
7040
7241
|
backupConfiguration(resources, metadata, options) {
|
|
7041
|
-
return localVarFp.backupConfiguration(resources, metadata, options).then((request) => request(axios$
|
|
7242
|
+
return localVarFp.backupConfiguration(resources, metadata, options).then((request) => request(axios$152, basePath));
|
|
7042
7243
|
},
|
|
7043
7244
|
checkNovaVersionUpdate(channel, options) {
|
|
7044
|
-
return localVarFp.checkNovaVersionUpdate(channel, options).then((request) => request(axios$
|
|
7245
|
+
return localVarFp.checkNovaVersionUpdate(channel, options).then((request) => request(axios$152, basePath));
|
|
7045
7246
|
},
|
|
7046
7247
|
getArpScan(_interface, cidr, timeout, options) {
|
|
7047
|
-
return localVarFp.getArpScan(_interface, cidr, timeout, options).then((request) => request(axios$
|
|
7248
|
+
return localVarFp.getArpScan(_interface, cidr, timeout, options).then((request) => request(axios$152, basePath));
|
|
7048
7249
|
},
|
|
7049
7250
|
getConfigurationBackupStatus(operationId, options) {
|
|
7050
|
-
return localVarFp.getConfigurationBackupStatus(operationId, options).then((request) => request(axios$
|
|
7251
|
+
return localVarFp.getConfigurationBackupStatus(operationId, options).then((request) => request(axios$152, basePath));
|
|
7051
7252
|
},
|
|
7052
7253
|
getDiagnosePackage(options) {
|
|
7053
|
-
return localVarFp.getDiagnosePackage(options).then((request) => request(axios$
|
|
7254
|
+
return localVarFp.getDiagnosePackage(options).then((request) => request(axios$152, basePath));
|
|
7054
7255
|
},
|
|
7055
7256
|
getNetworkInterfaces(options) {
|
|
7056
|
-
return localVarFp.getNetworkInterfaces(options).then((request) => request(axios$
|
|
7257
|
+
return localVarFp.getNetworkInterfaces(options).then((request) => request(axios$152, basePath));
|
|
7057
7258
|
},
|
|
7058
7259
|
getNetworkState(options) {
|
|
7059
|
-
return localVarFp.getNetworkState(options).then((request) => request(axios$
|
|
7260
|
+
return localVarFp.getNetworkState(options).then((request) => request(axios$152, basePath));
|
|
7060
7261
|
},
|
|
7061
7262
|
getSystemStatus(options) {
|
|
7062
|
-
return localVarFp.getSystemStatus(options).then((request) => request(axios$
|
|
7263
|
+
return localVarFp.getSystemStatus(options).then((request) => request(axios$152, basePath));
|
|
7063
7264
|
},
|
|
7064
7265
|
getSystemVersion(options) {
|
|
7065
|
-
return localVarFp.getSystemVersion(options).then((request) => request(axios$
|
|
7266
|
+
return localVarFp.getSystemVersion(options).then((request) => request(axios$152, basePath));
|
|
7066
7267
|
},
|
|
7067
7268
|
listConfigurationResources(options) {
|
|
7068
|
-
return localVarFp.listConfigurationResources(options).then((request) => request(axios$
|
|
7269
|
+
return localVarFp.listConfigurationResources(options).then((request) => request(axios$152, basePath));
|
|
7069
7270
|
},
|
|
7070
7271
|
restoreConfiguration(body, resources, options) {
|
|
7071
|
-
return localVarFp.restoreConfiguration(body, resources, options).then((request) => request(axios$
|
|
7272
|
+
return localVarFp.restoreConfiguration(body, resources, options).then((request) => request(axios$152, basePath));
|
|
7072
7273
|
},
|
|
7073
7274
|
updateNovaVersion(updateNovaVersionRequest, options) {
|
|
7074
|
-
return localVarFp.updateNovaVersion(updateNovaVersionRequest, options).then((request) => request(axios$
|
|
7275
|
+
return localVarFp.updateNovaVersion(updateNovaVersionRequest, options).then((request) => request(axios$152, basePath));
|
|
7075
7276
|
}
|
|
7076
7277
|
};
|
|
7077
7278
|
};
|
|
@@ -7355,54 +7556,54 @@ const TrajectoryCachingApiFp = function(configuration) {
|
|
|
7355
7556
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addTrajectory(cell, controller, addTrajectoryRequest, options);
|
|
7356
7557
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7357
7558
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryCachingApi.addTrajectory"]?.[localVarOperationServerIndex]?.url;
|
|
7358
|
-
return (axios$
|
|
7559
|
+
return (axios$153, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$153, localVarOperationServerBasePath || basePath);
|
|
7359
7560
|
},
|
|
7360
7561
|
async clearTrajectories(cell, controller, options) {
|
|
7361
7562
|
const localVarAxiosArgs = await localVarAxiosParamCreator.clearTrajectories(cell, controller, options);
|
|
7362
7563
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7363
7564
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryCachingApi.clearTrajectories"]?.[localVarOperationServerIndex]?.url;
|
|
7364
|
-
return (axios$
|
|
7565
|
+
return (axios$154, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$154, localVarOperationServerBasePath || basePath);
|
|
7365
7566
|
},
|
|
7366
7567
|
async deleteTrajectory(cell, controller, trajectory, options) {
|
|
7367
7568
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteTrajectory(cell, controller, trajectory, options);
|
|
7368
7569
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7369
7570
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryCachingApi.deleteTrajectory"]?.[localVarOperationServerIndex]?.url;
|
|
7370
|
-
return (axios$
|
|
7571
|
+
return (axios$155, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$155, localVarOperationServerBasePath || basePath);
|
|
7371
7572
|
},
|
|
7372
7573
|
async getTrajectory(cell, controller, trajectory, options) {
|
|
7373
7574
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getTrajectory(cell, controller, trajectory, options);
|
|
7374
7575
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7375
7576
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryCachingApi.getTrajectory"]?.[localVarOperationServerIndex]?.url;
|
|
7376
|
-
return (axios$
|
|
7577
|
+
return (axios$156, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$156, localVarOperationServerBasePath || basePath);
|
|
7377
7578
|
},
|
|
7378
7579
|
async listTrajectories(cell, controller, options) {
|
|
7379
7580
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listTrajectories(cell, controller, options);
|
|
7380
7581
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7381
7582
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryCachingApi.listTrajectories"]?.[localVarOperationServerIndex]?.url;
|
|
7382
|
-
return (axios$
|
|
7583
|
+
return (axios$157, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$157, localVarOperationServerBasePath || basePath);
|
|
7383
7584
|
}
|
|
7384
7585
|
};
|
|
7385
7586
|
};
|
|
7386
7587
|
/**
|
|
7387
7588
|
* TrajectoryCachingApi - factory interface
|
|
7388
7589
|
*/
|
|
7389
|
-
const TrajectoryCachingApiFactory = function(configuration, basePath, axios$
|
|
7590
|
+
const TrajectoryCachingApiFactory = function(configuration, basePath, axios$158) {
|
|
7390
7591
|
const localVarFp = TrajectoryCachingApiFp(configuration);
|
|
7391
7592
|
return {
|
|
7392
7593
|
addTrajectory(cell, controller, addTrajectoryRequest, options) {
|
|
7393
|
-
return localVarFp.addTrajectory(cell, controller, addTrajectoryRequest, options).then((request) => request(axios$
|
|
7594
|
+
return localVarFp.addTrajectory(cell, controller, addTrajectoryRequest, options).then((request) => request(axios$158, basePath));
|
|
7394
7595
|
},
|
|
7395
7596
|
clearTrajectories(cell, controller, options) {
|
|
7396
|
-
return localVarFp.clearTrajectories(cell, controller, options).then((request) => request(axios$
|
|
7597
|
+
return localVarFp.clearTrajectories(cell, controller, options).then((request) => request(axios$158, basePath));
|
|
7397
7598
|
},
|
|
7398
7599
|
deleteTrajectory(cell, controller, trajectory, options) {
|
|
7399
|
-
return localVarFp.deleteTrajectory(cell, controller, trajectory, options).then((request) => request(axios$
|
|
7600
|
+
return localVarFp.deleteTrajectory(cell, controller, trajectory, options).then((request) => request(axios$158, basePath));
|
|
7400
7601
|
},
|
|
7401
7602
|
getTrajectory(cell, controller, trajectory, options) {
|
|
7402
|
-
return localVarFp.getTrajectory(cell, controller, trajectory, options).then((request) => request(axios$
|
|
7603
|
+
return localVarFp.getTrajectory(cell, controller, trajectory, options).then((request) => request(axios$158, basePath));
|
|
7403
7604
|
},
|
|
7404
7605
|
listTrajectories(cell, controller, options) {
|
|
7405
|
-
return localVarFp.listTrajectories(cell, controller, options).then((request) => request(axios$
|
|
7606
|
+
return localVarFp.listTrajectories(cell, controller, options).then((request) => request(axios$158, basePath));
|
|
7406
7607
|
}
|
|
7407
7608
|
};
|
|
7408
7609
|
};
|
|
@@ -7513,16 +7714,16 @@ const TrajectoryExecutionApiFp = function(configuration) {
|
|
|
7513
7714
|
const localVarAxiosArgs = await localVarAxiosParamCreator.executeTrajectory(cell, controller, executeTrajectoryRequest, options);
|
|
7514
7715
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7515
7716
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryExecutionApi.executeTrajectory"]?.[localVarOperationServerIndex]?.url;
|
|
7516
|
-
return (axios$
|
|
7717
|
+
return (axios$159, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$159, localVarOperationServerBasePath || basePath);
|
|
7517
7718
|
} };
|
|
7518
7719
|
};
|
|
7519
7720
|
/**
|
|
7520
7721
|
* TrajectoryExecutionApi - factory interface
|
|
7521
7722
|
*/
|
|
7522
|
-
const TrajectoryExecutionApiFactory = function(configuration, basePath, axios$
|
|
7723
|
+
const TrajectoryExecutionApiFactory = function(configuration, basePath, axios$160) {
|
|
7523
7724
|
const localVarFp = TrajectoryExecutionApiFp(configuration);
|
|
7524
7725
|
return { executeTrajectory(cell, controller, executeTrajectoryRequest, options) {
|
|
7525
|
-
return localVarFp.executeTrajectory(cell, controller, executeTrajectoryRequest, options).then((request) => request(axios$
|
|
7726
|
+
return localVarFp.executeTrajectory(cell, controller, executeTrajectoryRequest, options).then((request) => request(axios$160, basePath));
|
|
7526
7727
|
} };
|
|
7527
7728
|
};
|
|
7528
7729
|
/**
|
|
@@ -7675,45 +7876,45 @@ const TrajectoryPlanningApiFp = function(configuration) {
|
|
|
7675
7876
|
const localVarAxiosArgs = await localVarAxiosParamCreator.mergeTrajectories(cell, mergeTrajectoriesRequest, options);
|
|
7676
7877
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7677
7878
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryPlanningApi.mergeTrajectories"]?.[localVarOperationServerIndex]?.url;
|
|
7678
|
-
return (axios$
|
|
7879
|
+
return (axios$161, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$161, localVarOperationServerBasePath || basePath);
|
|
7679
7880
|
},
|
|
7680
7881
|
async planCollisionFree(cell, planCollisionFreeRequest, options) {
|
|
7681
7882
|
const localVarAxiosArgs = await localVarAxiosParamCreator.planCollisionFree(cell, planCollisionFreeRequest, options);
|
|
7682
7883
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7683
7884
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryPlanningApi.planCollisionFree"]?.[localVarOperationServerIndex]?.url;
|
|
7684
|
-
return (axios$
|
|
7885
|
+
return (axios$162, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$162, localVarOperationServerBasePath || basePath);
|
|
7685
7886
|
},
|
|
7686
7887
|
async planTrajectory(cell, planTrajectoryRequest, options) {
|
|
7687
7888
|
const localVarAxiosArgs = await localVarAxiosParamCreator.planTrajectory(cell, planTrajectoryRequest, options);
|
|
7688
7889
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7689
7890
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryPlanningApi.planTrajectory"]?.[localVarOperationServerIndex]?.url;
|
|
7690
|
-
return (axios$
|
|
7891
|
+
return (axios$163, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$163, localVarOperationServerBasePath || basePath);
|
|
7691
7892
|
},
|
|
7692
7893
|
async searchCollisionFreeMultiMotionGroup(cell, multiSearchCollisionFreeRequest, options) {
|
|
7693
7894
|
const localVarAxiosArgs = await localVarAxiosParamCreator.searchCollisionFreeMultiMotionGroup(cell, multiSearchCollisionFreeRequest, options);
|
|
7694
7895
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7695
7896
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryPlanningApi.searchCollisionFreeMultiMotionGroup"]?.[localVarOperationServerIndex]?.url;
|
|
7696
|
-
return (axios$
|
|
7897
|
+
return (axios$164, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$164, localVarOperationServerBasePath || basePath);
|
|
7697
7898
|
}
|
|
7698
7899
|
};
|
|
7699
7900
|
};
|
|
7700
7901
|
/**
|
|
7701
7902
|
* TrajectoryPlanningApi - factory interface
|
|
7702
7903
|
*/
|
|
7703
|
-
const TrajectoryPlanningApiFactory = function(configuration, basePath, axios$
|
|
7904
|
+
const TrajectoryPlanningApiFactory = function(configuration, basePath, axios$165) {
|
|
7704
7905
|
const localVarFp = TrajectoryPlanningApiFp(configuration);
|
|
7705
7906
|
return {
|
|
7706
7907
|
mergeTrajectories(cell, mergeTrajectoriesRequest, options) {
|
|
7707
|
-
return localVarFp.mergeTrajectories(cell, mergeTrajectoriesRequest, options).then((request) => request(axios$
|
|
7908
|
+
return localVarFp.mergeTrajectories(cell, mergeTrajectoriesRequest, options).then((request) => request(axios$165, basePath));
|
|
7708
7909
|
},
|
|
7709
7910
|
planCollisionFree(cell, planCollisionFreeRequest, options) {
|
|
7710
|
-
return localVarFp.planCollisionFree(cell, planCollisionFreeRequest, options).then((request) => request(axios$
|
|
7911
|
+
return localVarFp.planCollisionFree(cell, planCollisionFreeRequest, options).then((request) => request(axios$165, basePath));
|
|
7711
7912
|
},
|
|
7712
7913
|
planTrajectory(cell, planTrajectoryRequest, options) {
|
|
7713
|
-
return localVarFp.planTrajectory(cell, planTrajectoryRequest, options).then((request) => request(axios$
|
|
7914
|
+
return localVarFp.planTrajectory(cell, planTrajectoryRequest, options).then((request) => request(axios$165, basePath));
|
|
7714
7915
|
},
|
|
7715
7916
|
searchCollisionFreeMultiMotionGroup(cell, multiSearchCollisionFreeRequest, options) {
|
|
7716
|
-
return localVarFp.searchCollisionFreeMultiMotionGroup(cell, multiSearchCollisionFreeRequest, options).then((request) => request(axios$
|
|
7917
|
+
return localVarFp.searchCollisionFreeMultiMotionGroup(cell, multiSearchCollisionFreeRequest, options).then((request) => request(axios$165, basePath));
|
|
7717
7918
|
}
|
|
7718
7919
|
};
|
|
7719
7920
|
};
|
|
@@ -7804,16 +8005,16 @@ const VersionApiFp = function(configuration) {
|
|
|
7804
8005
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getApiVersion(options);
|
|
7805
8006
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7806
8007
|
const localVarOperationServerBasePath = operationServerMap["VersionApi.getApiVersion"]?.[localVarOperationServerIndex]?.url;
|
|
7807
|
-
return (axios$
|
|
8008
|
+
return (axios$166, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$166, localVarOperationServerBasePath || basePath);
|
|
7808
8009
|
} };
|
|
7809
8010
|
};
|
|
7810
8011
|
/**
|
|
7811
8012
|
* VersionApi - factory interface
|
|
7812
8013
|
*/
|
|
7813
|
-
const VersionApiFactory = function(configuration, basePath, axios$
|
|
8014
|
+
const VersionApiFactory = function(configuration, basePath, axios$167) {
|
|
7814
8015
|
const localVarFp = VersionApiFp(configuration);
|
|
7815
8016
|
return { getApiVersion(options) {
|
|
7816
|
-
return localVarFp.getApiVersion(options).then((request) => request(axios$
|
|
8017
|
+
return localVarFp.getApiVersion(options).then((request) => request(axios$167, basePath));
|
|
7817
8018
|
} };
|
|
7818
8019
|
};
|
|
7819
8020
|
/**
|
|
@@ -8422,189 +8623,189 @@ const VirtualControllerApiFp = function(configuration) {
|
|
|
8422
8623
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options);
|
|
8423
8624
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8424
8625
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.addVirtualControllerCoordinateSystem"]?.[localVarOperationServerIndex]?.url;
|
|
8425
|
-
return (axios$
|
|
8626
|
+
return (axios$168, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$168, localVarOperationServerBasePath || basePath);
|
|
8426
8627
|
},
|
|
8427
8628
|
async addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options) {
|
|
8428
8629
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options);
|
|
8429
8630
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8430
8631
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.addVirtualControllerMotionGroup"]?.[localVarOperationServerIndex]?.url;
|
|
8431
|
-
return (axios$
|
|
8632
|
+
return (axios$169, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$169, localVarOperationServerBasePath || basePath);
|
|
8432
8633
|
},
|
|
8433
8634
|
async addVirtualControllerSafetyZone(cell, controller, safetyZone, options) {
|
|
8434
8635
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualControllerSafetyZone(cell, controller, safetyZone, options);
|
|
8435
8636
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8436
8637
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.addVirtualControllerSafetyZone"]?.[localVarOperationServerIndex]?.url;
|
|
8437
|
-
return (axios$
|
|
8638
|
+
return (axios$170, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$170, localVarOperationServerBasePath || basePath);
|
|
8438
8639
|
},
|
|
8439
8640
|
async addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options) {
|
|
8440
8641
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options);
|
|
8441
8642
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8442
8643
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.addVirtualControllerTcp"]?.[localVarOperationServerIndex]?.url;
|
|
8443
|
-
return (axios$
|
|
8644
|
+
return (axios$171, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$171, localVarOperationServerBasePath || basePath);
|
|
8444
8645
|
},
|
|
8445
8646
|
async deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options) {
|
|
8446
8647
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options);
|
|
8447
8648
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8448
8649
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.deleteVirtualControllerCoordinateSystem"]?.[localVarOperationServerIndex]?.url;
|
|
8449
|
-
return (axios$
|
|
8650
|
+
return (axios$172, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$172, localVarOperationServerBasePath || basePath);
|
|
8450
8651
|
},
|
|
8451
8652
|
async deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options) {
|
|
8452
8653
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options);
|
|
8453
8654
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8454
8655
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.deleteVirtualControllerMotionGroup"]?.[localVarOperationServerIndex]?.url;
|
|
8455
|
-
return (axios$
|
|
8656
|
+
return (axios$173, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$173, localVarOperationServerBasePath || basePath);
|
|
8456
8657
|
},
|
|
8457
8658
|
async deleteVirtualControllerSafetyZone(cell, controller, id, options) {
|
|
8458
8659
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualControllerSafetyZone(cell, controller, id, options);
|
|
8459
8660
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8460
8661
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.deleteVirtualControllerSafetyZone"]?.[localVarOperationServerIndex]?.url;
|
|
8461
|
-
return (axios$
|
|
8662
|
+
return (axios$174, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$174, localVarOperationServerBasePath || basePath);
|
|
8462
8663
|
},
|
|
8463
8664
|
async deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options) {
|
|
8464
8665
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options);
|
|
8465
8666
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8466
8667
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.deleteVirtualControllerTcp"]?.[localVarOperationServerIndex]?.url;
|
|
8467
|
-
return (axios$
|
|
8668
|
+
return (axios$175, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$175, localVarOperationServerBasePath || basePath);
|
|
8468
8669
|
},
|
|
8469
8670
|
async getEmergencyStop(cell, controller, options) {
|
|
8470
8671
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getEmergencyStop(cell, controller, options);
|
|
8471
8672
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8472
8673
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getEmergencyStop"]?.[localVarOperationServerIndex]?.url;
|
|
8473
|
-
return (axios$
|
|
8674
|
+
return (axios$176, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$176, localVarOperationServerBasePath || basePath);
|
|
8474
8675
|
},
|
|
8475
8676
|
async getMotionGroupState(cell, controller, motionGroup, options) {
|
|
8476
8677
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupState(cell, controller, motionGroup, options);
|
|
8477
8678
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8478
8679
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getMotionGroupState"]?.[localVarOperationServerIndex]?.url;
|
|
8479
|
-
return (axios$
|
|
8680
|
+
return (axios$177, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$177, localVarOperationServerBasePath || basePath);
|
|
8480
8681
|
},
|
|
8481
8682
|
async getMotionGroups(cell, controller, options) {
|
|
8482
8683
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroups(cell, controller, options);
|
|
8483
8684
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8484
8685
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getMotionGroups"]?.[localVarOperationServerIndex]?.url;
|
|
8485
|
-
return (axios$
|
|
8686
|
+
return (axios$178, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$178, localVarOperationServerBasePath || basePath);
|
|
8486
8687
|
},
|
|
8487
8688
|
async getOperationMode(cell, controller, options) {
|
|
8488
8689
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getOperationMode(cell, controller, options);
|
|
8489
8690
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8490
8691
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getOperationMode"]?.[localVarOperationServerIndex]?.url;
|
|
8491
|
-
return (axios$
|
|
8692
|
+
return (axios$179, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$179, localVarOperationServerBasePath || basePath);
|
|
8492
8693
|
},
|
|
8493
8694
|
async getVirtualControllerMounting(cell, controller, motionGroup, options) {
|
|
8494
8695
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getVirtualControllerMounting(cell, controller, motionGroup, options);
|
|
8495
8696
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8496
8697
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getVirtualControllerMounting"]?.[localVarOperationServerIndex]?.url;
|
|
8497
|
-
return (axios$
|
|
8698
|
+
return (axios$180, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$180, localVarOperationServerBasePath || basePath);
|
|
8498
8699
|
},
|
|
8499
8700
|
async getVirtualControllerSafetyZones(cell, controller, options) {
|
|
8500
8701
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getVirtualControllerSafetyZones(cell, controller, options);
|
|
8501
8702
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8502
8703
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getVirtualControllerSafetyZones"]?.[localVarOperationServerIndex]?.url;
|
|
8503
|
-
return (axios$
|
|
8704
|
+
return (axios$181, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$181, localVarOperationServerBasePath || basePath);
|
|
8504
8705
|
},
|
|
8505
8706
|
async listVirtualControllerCoordinateSystems(cell, controller, options) {
|
|
8506
8707
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listVirtualControllerCoordinateSystems(cell, controller, options);
|
|
8507
8708
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8508
8709
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.listVirtualControllerCoordinateSystems"]?.[localVarOperationServerIndex]?.url;
|
|
8509
|
-
return (axios$
|
|
8710
|
+
return (axios$182, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$182, localVarOperationServerBasePath || basePath);
|
|
8510
8711
|
},
|
|
8511
8712
|
async listVirtualControllerTcps(cell, controller, motionGroup, options) {
|
|
8512
8713
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listVirtualControllerTcps(cell, controller, motionGroup, options);
|
|
8513
8714
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8514
8715
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.listVirtualControllerTcps"]?.[localVarOperationServerIndex]?.url;
|
|
8515
|
-
return (axios$
|
|
8716
|
+
return (axios$183, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$183, localVarOperationServerBasePath || basePath);
|
|
8516
8717
|
},
|
|
8517
8718
|
async setEmergencyStop(cell, controller, active, options) {
|
|
8518
8719
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setEmergencyStop(cell, controller, active, options);
|
|
8519
8720
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8520
8721
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.setEmergencyStop"]?.[localVarOperationServerIndex]?.url;
|
|
8521
|
-
return (axios$
|
|
8722
|
+
return (axios$184, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$184, localVarOperationServerBasePath || basePath);
|
|
8522
8723
|
},
|
|
8523
8724
|
async setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options) {
|
|
8524
8725
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options);
|
|
8525
8726
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8526
8727
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.setMotionGroupState"]?.[localVarOperationServerIndex]?.url;
|
|
8527
|
-
return (axios$
|
|
8728
|
+
return (axios$185, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$185, localVarOperationServerBasePath || basePath);
|
|
8528
8729
|
},
|
|
8529
8730
|
async setOperationMode(cell, controller, mode, options) {
|
|
8530
8731
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setOperationMode(cell, controller, mode, options);
|
|
8531
8732
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8532
8733
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.setOperationMode"]?.[localVarOperationServerIndex]?.url;
|
|
8533
|
-
return (axios$
|
|
8734
|
+
return (axios$186, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$186, localVarOperationServerBasePath || basePath);
|
|
8534
8735
|
},
|
|
8535
8736
|
async setVirtualControllerMounting(cell, controller, motionGroup, coordinateSystem, options) {
|
|
8536
8737
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setVirtualControllerMounting(cell, controller, motionGroup, coordinateSystem, options);
|
|
8537
8738
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8538
8739
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.setVirtualControllerMounting"]?.[localVarOperationServerIndex]?.url;
|
|
8539
|
-
return (axios$
|
|
8740
|
+
return (axios$187, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$187, localVarOperationServerBasePath || basePath);
|
|
8540
8741
|
}
|
|
8541
8742
|
};
|
|
8542
8743
|
};
|
|
8543
8744
|
/**
|
|
8544
8745
|
* VirtualControllerApi - factory interface
|
|
8545
8746
|
*/
|
|
8546
|
-
const VirtualControllerApiFactory = function(configuration, basePath, axios$
|
|
8747
|
+
const VirtualControllerApiFactory = function(configuration, basePath, axios$188) {
|
|
8547
8748
|
const localVarFp = VirtualControllerApiFp(configuration);
|
|
8548
8749
|
return {
|
|
8549
8750
|
addVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options) {
|
|
8550
|
-
return localVarFp.addVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options).then((request) => request(axios$
|
|
8751
|
+
return localVarFp.addVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options).then((request) => request(axios$188, basePath));
|
|
8551
8752
|
},
|
|
8552
8753
|
addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options) {
|
|
8553
|
-
return localVarFp.addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options).then((request) => request(axios$
|
|
8754
|
+
return localVarFp.addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options).then((request) => request(axios$188, basePath));
|
|
8554
8755
|
},
|
|
8555
8756
|
addVirtualControllerSafetyZone(cell, controller, safetyZone, options) {
|
|
8556
|
-
return localVarFp.addVirtualControllerSafetyZone(cell, controller, safetyZone, options).then((request) => request(axios$
|
|
8757
|
+
return localVarFp.addVirtualControllerSafetyZone(cell, controller, safetyZone, options).then((request) => request(axios$188, basePath));
|
|
8557
8758
|
},
|
|
8558
8759
|
addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options) {
|
|
8559
|
-
return localVarFp.addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options).then((request) => request(axios$
|
|
8760
|
+
return localVarFp.addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options).then((request) => request(axios$188, basePath));
|
|
8560
8761
|
},
|
|
8561
8762
|
deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options) {
|
|
8562
|
-
return localVarFp.deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options).then((request) => request(axios$
|
|
8763
|
+
return localVarFp.deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options).then((request) => request(axios$188, basePath));
|
|
8563
8764
|
},
|
|
8564
8765
|
deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options) {
|
|
8565
|
-
return localVarFp.deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options).then((request) => request(axios$
|
|
8766
|
+
return localVarFp.deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options).then((request) => request(axios$188, basePath));
|
|
8566
8767
|
},
|
|
8567
8768
|
deleteVirtualControllerSafetyZone(cell, controller, id, options) {
|
|
8568
|
-
return localVarFp.deleteVirtualControllerSafetyZone(cell, controller, id, options).then((request) => request(axios$
|
|
8769
|
+
return localVarFp.deleteVirtualControllerSafetyZone(cell, controller, id, options).then((request) => request(axios$188, basePath));
|
|
8569
8770
|
},
|
|
8570
8771
|
deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options) {
|
|
8571
|
-
return localVarFp.deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options).then((request) => request(axios$
|
|
8772
|
+
return localVarFp.deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options).then((request) => request(axios$188, basePath));
|
|
8572
8773
|
},
|
|
8573
8774
|
getEmergencyStop(cell, controller, options) {
|
|
8574
|
-
return localVarFp.getEmergencyStop(cell, controller, options).then((request) => request(axios$
|
|
8775
|
+
return localVarFp.getEmergencyStop(cell, controller, options).then((request) => request(axios$188, basePath));
|
|
8575
8776
|
},
|
|
8576
8777
|
getMotionGroupState(cell, controller, motionGroup, options) {
|
|
8577
|
-
return localVarFp.getMotionGroupState(cell, controller, motionGroup, options).then((request) => request(axios$
|
|
8778
|
+
return localVarFp.getMotionGroupState(cell, controller, motionGroup, options).then((request) => request(axios$188, basePath));
|
|
8578
8779
|
},
|
|
8579
8780
|
getMotionGroups(cell, controller, options) {
|
|
8580
|
-
return localVarFp.getMotionGroups(cell, controller, options).then((request) => request(axios$
|
|
8781
|
+
return localVarFp.getMotionGroups(cell, controller, options).then((request) => request(axios$188, basePath));
|
|
8581
8782
|
},
|
|
8582
8783
|
getOperationMode(cell, controller, options) {
|
|
8583
|
-
return localVarFp.getOperationMode(cell, controller, options).then((request) => request(axios$
|
|
8784
|
+
return localVarFp.getOperationMode(cell, controller, options).then((request) => request(axios$188, basePath));
|
|
8584
8785
|
},
|
|
8585
8786
|
getVirtualControllerMounting(cell, controller, motionGroup, options) {
|
|
8586
|
-
return localVarFp.getVirtualControllerMounting(cell, controller, motionGroup, options).then((request) => request(axios$
|
|
8787
|
+
return localVarFp.getVirtualControllerMounting(cell, controller, motionGroup, options).then((request) => request(axios$188, basePath));
|
|
8587
8788
|
},
|
|
8588
8789
|
getVirtualControllerSafetyZones(cell, controller, options) {
|
|
8589
|
-
return localVarFp.getVirtualControllerSafetyZones(cell, controller, options).then((request) => request(axios$
|
|
8790
|
+
return localVarFp.getVirtualControllerSafetyZones(cell, controller, options).then((request) => request(axios$188, basePath));
|
|
8590
8791
|
},
|
|
8591
8792
|
listVirtualControllerCoordinateSystems(cell, controller, options) {
|
|
8592
|
-
return localVarFp.listVirtualControllerCoordinateSystems(cell, controller, options).then((request) => request(axios$
|
|
8793
|
+
return localVarFp.listVirtualControllerCoordinateSystems(cell, controller, options).then((request) => request(axios$188, basePath));
|
|
8593
8794
|
},
|
|
8594
8795
|
listVirtualControllerTcps(cell, controller, motionGroup, options) {
|
|
8595
|
-
return localVarFp.listVirtualControllerTcps(cell, controller, motionGroup, options).then((request) => request(axios$
|
|
8796
|
+
return localVarFp.listVirtualControllerTcps(cell, controller, motionGroup, options).then((request) => request(axios$188, basePath));
|
|
8596
8797
|
},
|
|
8597
8798
|
setEmergencyStop(cell, controller, active, options) {
|
|
8598
|
-
return localVarFp.setEmergencyStop(cell, controller, active, options).then((request) => request(axios$
|
|
8799
|
+
return localVarFp.setEmergencyStop(cell, controller, active, options).then((request) => request(axios$188, basePath));
|
|
8599
8800
|
},
|
|
8600
8801
|
setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options) {
|
|
8601
|
-
return localVarFp.setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options).then((request) => request(axios$
|
|
8802
|
+
return localVarFp.setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options).then((request) => request(axios$188, basePath));
|
|
8602
8803
|
},
|
|
8603
8804
|
setOperationMode(cell, controller, mode, options) {
|
|
8604
|
-
return localVarFp.setOperationMode(cell, controller, mode, options).then((request) => request(axios$
|
|
8805
|
+
return localVarFp.setOperationMode(cell, controller, mode, options).then((request) => request(axios$188, basePath));
|
|
8605
8806
|
},
|
|
8606
8807
|
setVirtualControllerMounting(cell, controller, motionGroup, coordinateSystem, options) {
|
|
8607
|
-
return localVarFp.setVirtualControllerMounting(cell, controller, motionGroup, coordinateSystem, options).then((request) => request(axios$
|
|
8808
|
+
return localVarFp.setVirtualControllerMounting(cell, controller, motionGroup, coordinateSystem, options).then((request) => request(axios$188, basePath));
|
|
8608
8809
|
}
|
|
8609
8810
|
};
|
|
8610
8811
|
};
|
|
@@ -8984,45 +9185,45 @@ const VirtualControllerBehaviorApiFp = function(configuration) {
|
|
|
8984
9185
|
const localVarAxiosArgs = await localVarAxiosParamCreator.externalJointsStream(cell, controller, externalJointStreamRequest, options);
|
|
8985
9186
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8986
9187
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerBehaviorApi.externalJointsStream"]?.[localVarOperationServerIndex]?.url;
|
|
8987
|
-
return (axios$
|
|
9188
|
+
return (axios$189, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$189, localVarOperationServerBasePath || basePath);
|
|
8988
9189
|
},
|
|
8989
9190
|
async getCycleTime(cell, controller, options) {
|
|
8990
9191
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getCycleTime(cell, controller, options);
|
|
8991
9192
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8992
9193
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerBehaviorApi.getCycleTime"]?.[localVarOperationServerIndex]?.url;
|
|
8993
|
-
return (axios$
|
|
9194
|
+
return (axios$190, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$190, localVarOperationServerBasePath || basePath);
|
|
8994
9195
|
},
|
|
8995
9196
|
async getVirtualControllerBehavior(cell, controller, options) {
|
|
8996
9197
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getVirtualControllerBehavior(cell, controller, options);
|
|
8997
9198
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8998
9199
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerBehaviorApi.getVirtualControllerBehavior"]?.[localVarOperationServerIndex]?.url;
|
|
8999
|
-
return (axios$
|
|
9200
|
+
return (axios$191, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$191, localVarOperationServerBasePath || basePath);
|
|
9000
9201
|
},
|
|
9001
9202
|
async setVirtualControllerBehavior(cell, controller, behavior, options) {
|
|
9002
9203
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setVirtualControllerBehavior(cell, controller, behavior, options);
|
|
9003
9204
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9004
9205
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerBehaviorApi.setVirtualControllerBehavior"]?.[localVarOperationServerIndex]?.url;
|
|
9005
|
-
return (axios$
|
|
9206
|
+
return (axios$192, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$192, localVarOperationServerBasePath || basePath);
|
|
9006
9207
|
}
|
|
9007
9208
|
};
|
|
9008
9209
|
};
|
|
9009
9210
|
/**
|
|
9010
9211
|
* VirtualControllerBehaviorApi - factory interface
|
|
9011
9212
|
*/
|
|
9012
|
-
const VirtualControllerBehaviorApiFactory = function(configuration, basePath, axios$
|
|
9213
|
+
const VirtualControllerBehaviorApiFactory = function(configuration, basePath, axios$193) {
|
|
9013
9214
|
const localVarFp = VirtualControllerBehaviorApiFp(configuration);
|
|
9014
9215
|
return {
|
|
9015
9216
|
externalJointsStream(cell, controller, externalJointStreamRequest, options) {
|
|
9016
|
-
return localVarFp.externalJointsStream(cell, controller, externalJointStreamRequest, options).then((request) => request(axios$
|
|
9217
|
+
return localVarFp.externalJointsStream(cell, controller, externalJointStreamRequest, options).then((request) => request(axios$193, basePath));
|
|
9017
9218
|
},
|
|
9018
9219
|
getCycleTime(cell, controller, options) {
|
|
9019
|
-
return localVarFp.getCycleTime(cell, controller, options).then((request) => request(axios$
|
|
9220
|
+
return localVarFp.getCycleTime(cell, controller, options).then((request) => request(axios$193, basePath));
|
|
9020
9221
|
},
|
|
9021
9222
|
getVirtualControllerBehavior(cell, controller, options) {
|
|
9022
|
-
return localVarFp.getVirtualControllerBehavior(cell, controller, options).then((request) => request(axios$
|
|
9223
|
+
return localVarFp.getVirtualControllerBehavior(cell, controller, options).then((request) => request(axios$193, basePath));
|
|
9023
9224
|
},
|
|
9024
9225
|
setVirtualControllerBehavior(cell, controller, behavior, options) {
|
|
9025
|
-
return localVarFp.setVirtualControllerBehavior(cell, controller, behavior, options).then((request) => request(axios$
|
|
9226
|
+
return localVarFp.setVirtualControllerBehavior(cell, controller, behavior, options).then((request) => request(axios$193, basePath));
|
|
9026
9227
|
}
|
|
9027
9228
|
};
|
|
9028
9229
|
};
|
|
@@ -9184,36 +9385,36 @@ const VirtualControllerInputsOutputsApiFp = function(configuration) {
|
|
|
9184
9385
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listIOs(cell, controller, ios, options);
|
|
9185
9386
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9186
9387
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerInputsOutputsApi.listIOs"]?.[localVarOperationServerIndex]?.url;
|
|
9187
|
-
return (axios$
|
|
9388
|
+
return (axios$194, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$194, localVarOperationServerBasePath || basePath);
|
|
9188
9389
|
},
|
|
9189
9390
|
async listVirtualControllerIODescriptions(cell, controller, ios, direction, valueType, group, options) {
|
|
9190
9391
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listVirtualControllerIODescriptions(cell, controller, ios, direction, valueType, group, options);
|
|
9191
9392
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9192
9393
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerInputsOutputsApi.listVirtualControllerIODescriptions"]?.[localVarOperationServerIndex]?.url;
|
|
9193
|
-
return (axios$
|
|
9394
|
+
return (axios$195, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$195, localVarOperationServerBasePath || basePath);
|
|
9194
9395
|
},
|
|
9195
9396
|
async setIOValues(cell, controller, iOValue, options) {
|
|
9196
9397
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setIOValues(cell, controller, iOValue, options);
|
|
9197
9398
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9198
9399
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerInputsOutputsApi.setIOValues"]?.[localVarOperationServerIndex]?.url;
|
|
9199
|
-
return (axios$
|
|
9400
|
+
return (axios$196, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$196, localVarOperationServerBasePath || basePath);
|
|
9200
9401
|
}
|
|
9201
9402
|
};
|
|
9202
9403
|
};
|
|
9203
9404
|
/**
|
|
9204
9405
|
* VirtualControllerInputsOutputsApi - factory interface
|
|
9205
9406
|
*/
|
|
9206
|
-
const VirtualControllerInputsOutputsApiFactory = function(configuration, basePath, axios$
|
|
9407
|
+
const VirtualControllerInputsOutputsApiFactory = function(configuration, basePath, axios$197) {
|
|
9207
9408
|
const localVarFp = VirtualControllerInputsOutputsApiFp(configuration);
|
|
9208
9409
|
return {
|
|
9209
9410
|
listIOs(cell, controller, ios, options) {
|
|
9210
|
-
return localVarFp.listIOs(cell, controller, ios, options).then((request) => request(axios$
|
|
9411
|
+
return localVarFp.listIOs(cell, controller, ios, options).then((request) => request(axios$197, basePath));
|
|
9211
9412
|
},
|
|
9212
9413
|
listVirtualControllerIODescriptions(cell, controller, ios, direction, valueType, group, options) {
|
|
9213
|
-
return localVarFp.listVirtualControllerIODescriptions(cell, controller, ios, direction, valueType, group, options).then((request) => request(axios$
|
|
9414
|
+
return localVarFp.listVirtualControllerIODescriptions(cell, controller, ios, direction, valueType, group, options).then((request) => request(axios$197, basePath));
|
|
9214
9415
|
},
|
|
9215
9416
|
setIOValues(cell, controller, iOValue, options) {
|
|
9216
|
-
return localVarFp.setIOValues(cell, controller, iOValue, options).then((request) => request(axios$
|
|
9417
|
+
return localVarFp.setIOValues(cell, controller, iOValue, options).then((request) => request(axios$197, basePath));
|
|
9217
9418
|
}
|
|
9218
9419
|
};
|
|
9219
9420
|
};
|
|
@@ -9265,7 +9466,7 @@ var VirtualControllerInputsOutputsApi = class extends BaseAPI {
|
|
|
9265
9466
|
//#region v2/configuration.ts
|
|
9266
9467
|
var Configuration = class {
|
|
9267
9468
|
constructor(param = {}) {
|
|
9268
|
-
|
|
9469
|
+
_defineProperty(
|
|
9269
9470
|
this,
|
|
9270
9471
|
/**
|
|
9271
9472
|
* parameter for apiKey security
|
|
@@ -9274,7 +9475,7 @@ var Configuration = class {
|
|
|
9274
9475
|
"apiKey",
|
|
9275
9476
|
void 0
|
|
9276
9477
|
);
|
|
9277
|
-
|
|
9478
|
+
_defineProperty(
|
|
9278
9479
|
this,
|
|
9279
9480
|
/**
|
|
9280
9481
|
* parameter for basic security
|
|
@@ -9282,7 +9483,7 @@ var Configuration = class {
|
|
|
9282
9483
|
"username",
|
|
9283
9484
|
void 0
|
|
9284
9485
|
);
|
|
9285
|
-
|
|
9486
|
+
_defineProperty(
|
|
9286
9487
|
this,
|
|
9287
9488
|
/**
|
|
9288
9489
|
* parameter for basic security
|
|
@@ -9290,7 +9491,7 @@ var Configuration = class {
|
|
|
9290
9491
|
"password",
|
|
9291
9492
|
void 0
|
|
9292
9493
|
);
|
|
9293
|
-
|
|
9494
|
+
_defineProperty(
|
|
9294
9495
|
this,
|
|
9295
9496
|
/**
|
|
9296
9497
|
* parameter for oauth2 security
|
|
@@ -9300,7 +9501,7 @@ var Configuration = class {
|
|
|
9300
9501
|
"accessToken",
|
|
9301
9502
|
void 0
|
|
9302
9503
|
);
|
|
9303
|
-
|
|
9504
|
+
_defineProperty(
|
|
9304
9505
|
this,
|
|
9305
9506
|
/**
|
|
9306
9507
|
* parameter for aws4 signature security
|
|
@@ -9315,7 +9516,7 @@ var Configuration = class {
|
|
|
9315
9516
|
"awsv4",
|
|
9316
9517
|
void 0
|
|
9317
9518
|
);
|
|
9318
|
-
|
|
9519
|
+
_defineProperty(
|
|
9319
9520
|
this,
|
|
9320
9521
|
/**
|
|
9321
9522
|
* override base path
|
|
@@ -9323,7 +9524,7 @@ var Configuration = class {
|
|
|
9323
9524
|
"basePath",
|
|
9324
9525
|
void 0
|
|
9325
9526
|
);
|
|
9326
|
-
|
|
9527
|
+
_defineProperty(
|
|
9327
9528
|
this,
|
|
9328
9529
|
/**
|
|
9329
9530
|
* override server index
|
|
@@ -9331,7 +9532,7 @@ var Configuration = class {
|
|
|
9331
9532
|
"serverIndex",
|
|
9332
9533
|
void 0
|
|
9333
9534
|
);
|
|
9334
|
-
|
|
9535
|
+
_defineProperty(
|
|
9335
9536
|
this,
|
|
9336
9537
|
/**
|
|
9337
9538
|
* base options for axios calls
|
|
@@ -9339,7 +9540,7 @@ var Configuration = class {
|
|
|
9339
9540
|
"baseOptions",
|
|
9340
9541
|
void 0
|
|
9341
9542
|
);
|
|
9342
|
-
|
|
9543
|
+
_defineProperty(
|
|
9343
9544
|
this,
|
|
9344
9545
|
/**
|
|
9345
9546
|
* The FormData constructor that will be used to create multipart form data
|
|
@@ -9395,6 +9596,8 @@ exports.BlendingAutoBlendingNameEnum = BlendingAutoBlendingNameEnum;
|
|
|
9395
9596
|
exports.BlendingPositionBlendingNameEnum = BlendingPositionBlendingNameEnum;
|
|
9396
9597
|
exports.BlendingSpace = BlendingSpace;
|
|
9397
9598
|
exports.BooleanValueValueTypeEnum = BooleanValueValueTypeEnum;
|
|
9599
|
+
exports.BostondynamicsControllerKindEnum = BostondynamicsControllerKindEnum;
|
|
9600
|
+
exports.BostondynamicsControllerRobotTypeEnum = BostondynamicsControllerRobotTypeEnum;
|
|
9398
9601
|
exports.BoxBoxTypeEnum = BoxBoxTypeEnum;
|
|
9399
9602
|
exports.BoxShapeTypeEnum = BoxShapeTypeEnum;
|
|
9400
9603
|
exports.BusIOModbusClientBusTypeEnum = BusIOModbusClientBusTypeEnum;
|
|
@@ -9627,6 +9830,8 @@ exports.TrajectoryPlanningApiFp = TrajectoryPlanningApiFp;
|
|
|
9627
9830
|
exports.TrajectoryRunningKindEnum = TrajectoryRunningKindEnum;
|
|
9628
9831
|
exports.TrajectoryWaitForIOKindEnum = TrajectoryWaitForIOKindEnum;
|
|
9629
9832
|
exports.UnitType = UnitType;
|
|
9833
|
+
exports.UnitreeControllerKindEnum = UnitreeControllerKindEnum;
|
|
9834
|
+
exports.UnitreeControllerRobotTypeEnum = UnitreeControllerRobotTypeEnum;
|
|
9630
9835
|
exports.UniversalrobotsControllerKindEnum = UniversalrobotsControllerKindEnum;
|
|
9631
9836
|
exports.VersionApi = VersionApi;
|
|
9632
9837
|
exports.VersionApiAxiosParamCreator = VersionApiAxiosParamCreator;
|