@wandelbots/nova-api 26.6.0-dev.7 → 26.6.0-dev.71
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 +450 -236
- package/dist/v2/index.d.cts +377 -38
- package/dist/v2/index.d.ts +377 -38
- package/dist/v2/index.js +202 -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
|
};
|
|
@@ -472,6 +535,14 @@ const SettableRobotSystemMode = {
|
|
|
472
535
|
RobotSystemModeControl: "ROBOT_SYSTEM_MODE_CONTROL",
|
|
473
536
|
ModeControl: "MODE_CONTROL"
|
|
474
537
|
};
|
|
538
|
+
/**
|
|
539
|
+
* <!-- theme: danger --> > > **Experimental** Strategy used to deal with wrist singularities along a cartesian path. > > - `NONE`: No special handling; a singularity ends the path. > - `PALLETIZING_WRIST`: When performing a palletizing motion, attempt to bridge a wrist singularity by flipping the wrist branch. > A palletizing motion is a motion where the flange axis of rotation is alway parallel to the base axis of rotation. > This flag is supported for all robots except FANUC CRX and ABB GoFa. > - `ADAPTIVE_SAMPLING`: Alternative cartesian solver that re-samples the path in proximity to a singularity.
|
|
540
|
+
*/
|
|
541
|
+
const SingularityHandling = {
|
|
542
|
+
None: "NONE",
|
|
543
|
+
PalletizingWrist: "PALLETIZING_WRIST",
|
|
544
|
+
AdaptiveSampling: "ADAPTIVE_SAMPLING"
|
|
545
|
+
};
|
|
475
546
|
const SingularityTypeEnum = {
|
|
476
547
|
Wrist: "WRIST",
|
|
477
548
|
Elbow: "ELBOW",
|
|
@@ -540,6 +611,13 @@ const UnitType = {
|
|
|
540
611
|
UnitNewtonMeter: "UNIT_NEWTON_METER",
|
|
541
612
|
UnitMeter: "UNIT_METER"
|
|
542
613
|
};
|
|
614
|
+
const UnitreeControllerKindEnum = { UnitreeController: "UnitreeController" };
|
|
615
|
+
const UnitreeControllerRobotTypeEnum = {
|
|
616
|
+
Go2: "go2",
|
|
617
|
+
G1: "g1",
|
|
618
|
+
B2: "b2",
|
|
619
|
+
H1: "h1"
|
|
620
|
+
};
|
|
543
621
|
const UniversalrobotsControllerKindEnum = { UniversalrobotsController: "UniversalrobotsController" };
|
|
544
622
|
const VirtualControllerKindEnum = { VirtualController: "VirtualController" };
|
|
545
623
|
const YaskawaControllerKindEnum = { YaskawaController: "YaskawaController" };
|
|
@@ -1306,7 +1384,7 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
|
|
|
1306
1384
|
options: localVarRequestOptions
|
|
1307
1385
|
};
|
|
1308
1386
|
},
|
|
1309
|
-
getProfinetIOsFromFile: async (cell, inputOffset, outputOffset, options = {}) => {
|
|
1387
|
+
getProfinetIOsFromFile: async (cell, offsets, inputOffset, outputOffset, options = {}) => {
|
|
1310
1388
|
assertParamExists("getProfinetIOsFromFile", "cell", cell);
|
|
1311
1389
|
const localVarPath = `/cells/{cell}/bus-ios/profinet/iofile`.replace(`{cell}`, encodeURIComponent(String(cell)));
|
|
1312
1390
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -1320,6 +1398,7 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
|
|
|
1320
1398
|
const localVarHeaderParameter = {};
|
|
1321
1399
|
const localVarQueryParameter = {};
|
|
1322
1400
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1401
|
+
if (offsets) localVarQueryParameter["offsets"] = offsets.join(COLLECTION_FORMATS.csv);
|
|
1323
1402
|
if (inputOffset !== void 0) localVarQueryParameter["input_offset"] = inputOffset;
|
|
1324
1403
|
if (outputOffset !== void 0) localVarQueryParameter["output_offset"] = outputOffset;
|
|
1325
1404
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -1600,8 +1679,8 @@ const BUSInputsOutputsApiFp = function(configuration) {
|
|
|
1600
1679
|
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.getProfinetGSDML"]?.[localVarOperationServerIndex]?.url;
|
|
1601
1680
|
return (axios$23, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$23, localVarOperationServerBasePath || basePath);
|
|
1602
1681
|
},
|
|
1603
|
-
async getProfinetIOsFromFile(cell, inputOffset, outputOffset, options) {
|
|
1604
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getProfinetIOsFromFile(cell, inputOffset, outputOffset, options);
|
|
1682
|
+
async getProfinetIOsFromFile(cell, offsets, inputOffset, outputOffset, options) {
|
|
1683
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getProfinetIOsFromFile(cell, offsets, inputOffset, outputOffset, options);
|
|
1605
1684
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1606
1685
|
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.getProfinetIOsFromFile"]?.[localVarOperationServerIndex]?.url;
|
|
1607
1686
|
return (axios$24, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$24, localVarOperationServerBasePath || basePath);
|
|
@@ -1698,8 +1777,8 @@ const BUSInputsOutputsApiFactory = function(configuration, basePath, axios$31) {
|
|
|
1698
1777
|
getProfinetGSDML(cell, options) {
|
|
1699
1778
|
return localVarFp.getProfinetGSDML(cell, options).then((request) => request(axios$31, basePath));
|
|
1700
1779
|
},
|
|
1701
|
-
getProfinetIOsFromFile(cell, inputOffset, outputOffset, options) {
|
|
1702
|
-
return localVarFp.getProfinetIOsFromFile(cell, inputOffset, outputOffset, options).then((request) => request(axios$31, basePath));
|
|
1780
|
+
getProfinetIOsFromFile(cell, offsets, inputOffset, outputOffset, options) {
|
|
1781
|
+
return localVarFp.getProfinetIOsFromFile(cell, offsets, inputOffset, outputOffset, options).then((request) => request(axios$31, basePath));
|
|
1703
1782
|
},
|
|
1704
1783
|
listBusIODescriptions(cell, options) {
|
|
1705
1784
|
return localVarFp.listBusIODescriptions(cell, options).then((request) => request(axios$31, basePath));
|
|
@@ -1899,16 +1978,17 @@ var BUSInputsOutputsApi = class extends BaseAPI {
|
|
|
1899
1978
|
return BUSInputsOutputsApiFp(this.configuration).getProfinetGSDML(cell, options).then((request) => request(this.axios, this.basePath));
|
|
1900
1979
|
}
|
|
1901
1980
|
/**
|
|
1902
|
-
* **Required permissions:** `can_operate_bus_ios` - Read and write BUS IO values ___ Get input/output variable configuration of the PROFINET device, e.g., NOVA\'s PROFINET service as file. You can specify byte offsets for
|
|
1981
|
+
* **Required permissions:** `can_operate_bus_ios` - Read and write BUS IO values ___ Get input/output variable configuration of the PROFINET device, e.g., NOVA\'s PROFINET service as file. You can specify per-slot byte offsets for input and output variable addresses to get an XML tag map that is ready for pasting to third party software, e.g., TIA portal. For backward compatibility, the legacy `input_offset` and `output_offset` query parameters remain available, but deprecated.
|
|
1903
1982
|
* @summary PROFINET Inputs/Outputs to File
|
|
1904
1983
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
1984
|
+
* @param {Array<ProfinetSlotOffset>} [offsets] Per-slot offsets used to convert device-local byte addresses to controller byte addresses for export. If this parameter is provided, it is preferred over the deprecated `input_offset` and `output_offset` query parameters.
|
|
1905
1985
|
* @param {number} [inputOffset]
|
|
1906
1986
|
* @param {number} [outputOffset]
|
|
1907
1987
|
* @param {*} [options] Override http request option.
|
|
1908
1988
|
* @throws {RequiredError}
|
|
1909
1989
|
*/
|
|
1910
|
-
getProfinetIOsFromFile(cell, inputOffset, outputOffset, options) {
|
|
1911
|
-
return BUSInputsOutputsApiFp(this.configuration).getProfinetIOsFromFile(cell, inputOffset, outputOffset, options).then((request) => request(this.axios, this.basePath));
|
|
1990
|
+
getProfinetIOsFromFile(cell, offsets, inputOffset, outputOffset, options) {
|
|
1991
|
+
return BUSInputsOutputsApiFp(this.configuration).getProfinetIOsFromFile(cell, offsets, inputOffset, outputOffset, options).then((request) => request(this.axios, this.basePath));
|
|
1912
1992
|
}
|
|
1913
1993
|
/**
|
|
1914
1994
|
* **Required permissions:** `can_operate_bus_ios` - Read and write BUS IO values ___ List all input/output descriptions for configured BUS services. The input/output descriptions contain information like name, type and unit. The input/output direction is given in perspective of the BUS service.
|
|
@@ -2361,7 +2441,7 @@ var CellApi = class extends BaseAPI {
|
|
|
2361
2441
|
return CellApiFp(this.configuration).deployCell(cell, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
2362
2442
|
}
|
|
2363
2443
|
/**
|
|
2364
|
-
* **Required permissions:** `
|
|
2444
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ List all cell resources.
|
|
2365
2445
|
* @summary Configuration
|
|
2366
2446
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
2367
2447
|
* @param {*} [options] Override http request option.
|
|
@@ -4210,7 +4290,7 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
|
|
|
4210
4290
|
copyMotionGroupModel: async (motionGroupModel, copyMotionGroupModelRequest, options = {}) => {
|
|
4211
4291
|
assertParamExists("copyMotionGroupModel", "motionGroupModel", motionGroupModel);
|
|
4212
4292
|
assertParamExists("copyMotionGroupModel", "copyMotionGroupModelRequest", copyMotionGroupModelRequest);
|
|
4213
|
-
const localVarPath = `/experimental/motion-group-models/{motion-group-model}`.replace(`{motion-group-model}`, encodeURIComponent(String(motionGroupModel)));
|
|
4293
|
+
const localVarPath = `/experimental/motion-group-models/{motion-group-model}/archive`.replace(`{motion-group-model}`, encodeURIComponent(String(motionGroupModel)));
|
|
4214
4294
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4215
4295
|
let baseOptions;
|
|
4216
4296
|
if (configuration) baseOptions = configuration.baseOptions;
|
|
@@ -4238,7 +4318,7 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
|
|
|
4238
4318
|
},
|
|
4239
4319
|
deleteExperimentalMotionGroupModel: async (motionGroupModel, options = {}) => {
|
|
4240
4320
|
assertParamExists("deleteExperimentalMotionGroupModel", "motionGroupModel", motionGroupModel);
|
|
4241
|
-
const localVarPath = `/experimental/motion-group-models/{motion-group-model}`.replace(`{motion-group-model}`, encodeURIComponent(String(motionGroupModel)));
|
|
4321
|
+
const localVarPath = `/experimental/motion-group-models/{motion-group-model}/archive`.replace(`{motion-group-model}`, encodeURIComponent(String(motionGroupModel)));
|
|
4242
4322
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4243
4323
|
let baseOptions;
|
|
4244
4324
|
if (configuration) baseOptions = configuration.baseOptions;
|
|
@@ -4264,7 +4344,33 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
|
|
|
4264
4344
|
},
|
|
4265
4345
|
exportMotionGroupModel: async (motionGroupModel, options = {}) => {
|
|
4266
4346
|
assertParamExists("exportMotionGroupModel", "motionGroupModel", motionGroupModel);
|
|
4267
|
-
const localVarPath = `/experimental/motion-group-models/{motion-group-model}`.replace(`{motion-group-model}`, encodeURIComponent(String(motionGroupModel)));
|
|
4347
|
+
const localVarPath = `/experimental/motion-group-models/{motion-group-model}/archive`.replace(`{motion-group-model}`, encodeURIComponent(String(motionGroupModel)));
|
|
4348
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4349
|
+
let baseOptions;
|
|
4350
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
4351
|
+
const localVarRequestOptions = {
|
|
4352
|
+
method: "GET",
|
|
4353
|
+
...baseOptions,
|
|
4354
|
+
...options
|
|
4355
|
+
};
|
|
4356
|
+
const localVarHeaderParameter = {};
|
|
4357
|
+
const localVarQueryParameter = {};
|
|
4358
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
4359
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4360
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4361
|
+
localVarRequestOptions.headers = {
|
|
4362
|
+
...localVarHeaderParameter,
|
|
4363
|
+
...headersFromBaseOptions,
|
|
4364
|
+
...options.headers
|
|
4365
|
+
};
|
|
4366
|
+
return {
|
|
4367
|
+
url: toPathString(localVarUrlObj),
|
|
4368
|
+
options: localVarRequestOptions
|
|
4369
|
+
};
|
|
4370
|
+
},
|
|
4371
|
+
getConfigurationForMotionGroup: async (motionGroupModel, options = {}) => {
|
|
4372
|
+
assertParamExists("getConfigurationForMotionGroup", "motionGroupModel", motionGroupModel);
|
|
4373
|
+
const localVarPath = `/motion-group-models/{motion-group-model}/configuration`.replace(`{motion-group-model}`, encodeURIComponent(String(motionGroupModel)));
|
|
4268
4374
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4269
4375
|
let baseOptions;
|
|
4270
4376
|
if (configuration) baseOptions = configuration.baseOptions;
|
|
@@ -4468,6 +4574,30 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
|
|
|
4468
4574
|
options: localVarRequestOptions
|
|
4469
4575
|
};
|
|
4470
4576
|
},
|
|
4577
|
+
getMotionGroupModelsCatalog: async (options = {}) => {
|
|
4578
|
+
const localVarUrlObj = new URL(`/experimental/motion-group-models/catalog`, DUMMY_BASE_URL);
|
|
4579
|
+
let baseOptions;
|
|
4580
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
4581
|
+
const localVarRequestOptions = {
|
|
4582
|
+
method: "GET",
|
|
4583
|
+
...baseOptions,
|
|
4584
|
+
...options
|
|
4585
|
+
};
|
|
4586
|
+
const localVarHeaderParameter = {};
|
|
4587
|
+
const localVarQueryParameter = {};
|
|
4588
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
4589
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4590
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4591
|
+
localVarRequestOptions.headers = {
|
|
4592
|
+
...localVarHeaderParameter,
|
|
4593
|
+
...headersFromBaseOptions,
|
|
4594
|
+
...options.headers
|
|
4595
|
+
};
|
|
4596
|
+
return {
|
|
4597
|
+
url: toPathString(localVarUrlObj),
|
|
4598
|
+
options: localVarRequestOptions
|
|
4599
|
+
};
|
|
4600
|
+
},
|
|
4471
4601
|
getMotionGroupUsdModel: async (motionGroupModel, options = {}) => {
|
|
4472
4602
|
assertParamExists("getMotionGroupUsdModel", "motionGroupModel", motionGroupModel);
|
|
4473
4603
|
const localVarPath = `/motion-group-models/{motion-group-model}/usd`.replace(`{motion-group-model}`, encodeURIComponent(String(motionGroupModel)));
|
|
@@ -4547,103 +4677,121 @@ const MotionGroupModelsApiFp = function(configuration) {
|
|
|
4547
4677
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.exportMotionGroupModel"]?.[localVarOperationServerIndex]?.url;
|
|
4548
4678
|
return (axios$83, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$83, localVarOperationServerBasePath || basePath);
|
|
4549
4679
|
},
|
|
4680
|
+
async getConfigurationForMotionGroup(motionGroupModel, options) {
|
|
4681
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getConfigurationForMotionGroup(motionGroupModel, options);
|
|
4682
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4683
|
+
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getConfigurationForMotionGroup"]?.[localVarOperationServerIndex]?.url;
|
|
4684
|
+
return (axios$84, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$84, localVarOperationServerBasePath || basePath);
|
|
4685
|
+
},
|
|
4550
4686
|
async getMotionGroupCollisionModel(motionGroupModel, options) {
|
|
4551
4687
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupCollisionModel(motionGroupModel, options);
|
|
4552
4688
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4553
4689
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupCollisionModel"]?.[localVarOperationServerIndex]?.url;
|
|
4554
|
-
return (axios$
|
|
4690
|
+
return (axios$85, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$85, localVarOperationServerBasePath || basePath);
|
|
4555
4691
|
},
|
|
4556
4692
|
async getMotionGroupDynamicModel(motionGroupModel, options) {
|
|
4557
4693
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupDynamicModel(motionGroupModel, options);
|
|
4558
4694
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4559
4695
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupDynamicModel"]?.[localVarOperationServerIndex]?.url;
|
|
4560
|
-
return (axios$
|
|
4696
|
+
return (axios$86, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$86, localVarOperationServerBasePath || basePath);
|
|
4561
4697
|
},
|
|
4562
4698
|
async getMotionGroupGlbModel(motionGroupModel, options) {
|
|
4563
4699
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupGlbModel(motionGroupModel, options);
|
|
4564
4700
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4565
4701
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupGlbModel"]?.[localVarOperationServerIndex]?.url;
|
|
4566
|
-
return (axios$
|
|
4702
|
+
return (axios$87, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$87, localVarOperationServerBasePath || basePath);
|
|
4567
4703
|
},
|
|
4568
4704
|
async getMotionGroupHomejoints(motionGroupModel, options) {
|
|
4569
4705
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupHomejoints(motionGroupModel, options);
|
|
4570
4706
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4571
4707
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupHomejoints"]?.[localVarOperationServerIndex]?.url;
|
|
4572
|
-
return (axios$
|
|
4708
|
+
return (axios$88, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$88, localVarOperationServerBasePath || basePath);
|
|
4573
4709
|
},
|
|
4574
4710
|
async getMotionGroupKinematicModel(motionGroupModel, options) {
|
|
4575
4711
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupKinematicModel(motionGroupModel, options);
|
|
4576
4712
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4577
4713
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupKinematicModel"]?.[localVarOperationServerIndex]?.url;
|
|
4578
|
-
return (axios$
|
|
4714
|
+
return (axios$89, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$89, localVarOperationServerBasePath || basePath);
|
|
4579
4715
|
},
|
|
4580
4716
|
async getMotionGroupLimitModel(motionGroupModel, options) {
|
|
4581
4717
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupLimitModel(motionGroupModel, options);
|
|
4582
4718
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4583
4719
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupLimitModel"]?.[localVarOperationServerIndex]?.url;
|
|
4584
|
-
return (axios$
|
|
4720
|
+
return (axios$90, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$90, localVarOperationServerBasePath || basePath);
|
|
4585
4721
|
},
|
|
4586
4722
|
async getMotionGroupModels(options) {
|
|
4587
4723
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupModels(options);
|
|
4588
4724
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4589
4725
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupModels"]?.[localVarOperationServerIndex]?.url;
|
|
4590
|
-
return (axios$
|
|
4726
|
+
return (axios$91, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$91, localVarOperationServerBasePath || basePath);
|
|
4727
|
+
},
|
|
4728
|
+
async getMotionGroupModelsCatalog(options) {
|
|
4729
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupModelsCatalog(options);
|
|
4730
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4731
|
+
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupModelsCatalog"]?.[localVarOperationServerIndex]?.url;
|
|
4732
|
+
return (axios$92, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$92, localVarOperationServerBasePath || basePath);
|
|
4591
4733
|
},
|
|
4592
4734
|
async getMotionGroupUsdModel(motionGroupModel, options) {
|
|
4593
4735
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupUsdModel(motionGroupModel, options);
|
|
4594
4736
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4595
4737
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupUsdModel"]?.[localVarOperationServerIndex]?.url;
|
|
4596
|
-
return (axios$
|
|
4738
|
+
return (axios$93, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$93, localVarOperationServerBasePath || basePath);
|
|
4597
4739
|
},
|
|
4598
4740
|
async importMotionGroupModel(body, options) {
|
|
4599
4741
|
const localVarAxiosArgs = await localVarAxiosParamCreator.importMotionGroupModel(body, options);
|
|
4600
4742
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4601
4743
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.importMotionGroupModel"]?.[localVarOperationServerIndex]?.url;
|
|
4602
|
-
return (axios$
|
|
4744
|
+
return (axios$94, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$94, localVarOperationServerBasePath || basePath);
|
|
4603
4745
|
}
|
|
4604
4746
|
};
|
|
4605
4747
|
};
|
|
4606
4748
|
/**
|
|
4607
4749
|
* MotionGroupModelsApi - factory interface
|
|
4608
4750
|
*/
|
|
4609
|
-
const MotionGroupModelsApiFactory = function(configuration, basePath, axios$
|
|
4751
|
+
const MotionGroupModelsApiFactory = function(configuration, basePath, axios$95) {
|
|
4610
4752
|
const localVarFp = MotionGroupModelsApiFp(configuration);
|
|
4611
4753
|
return {
|
|
4612
4754
|
copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options) {
|
|
4613
|
-
return localVarFp.copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options).then((request) => request(axios$
|
|
4755
|
+
return localVarFp.copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options).then((request) => request(axios$95, basePath));
|
|
4614
4756
|
},
|
|
4615
4757
|
deleteExperimentalMotionGroupModel(motionGroupModel, options) {
|
|
4616
|
-
return localVarFp.deleteExperimentalMotionGroupModel(motionGroupModel, options).then((request) => request(axios$
|
|
4758
|
+
return localVarFp.deleteExperimentalMotionGroupModel(motionGroupModel, options).then((request) => request(axios$95, basePath));
|
|
4617
4759
|
},
|
|
4618
4760
|
exportMotionGroupModel(motionGroupModel, options) {
|
|
4619
|
-
return localVarFp.exportMotionGroupModel(motionGroupModel, options).then((request) => request(axios$
|
|
4761
|
+
return localVarFp.exportMotionGroupModel(motionGroupModel, options).then((request) => request(axios$95, basePath));
|
|
4762
|
+
},
|
|
4763
|
+
getConfigurationForMotionGroup(motionGroupModel, options) {
|
|
4764
|
+
return localVarFp.getConfigurationForMotionGroup(motionGroupModel, options).then((request) => request(axios$95, basePath));
|
|
4620
4765
|
},
|
|
4621
4766
|
getMotionGroupCollisionModel(motionGroupModel, options) {
|
|
4622
|
-
return localVarFp.getMotionGroupCollisionModel(motionGroupModel, options).then((request) => request(axios$
|
|
4767
|
+
return localVarFp.getMotionGroupCollisionModel(motionGroupModel, options).then((request) => request(axios$95, basePath));
|
|
4623
4768
|
},
|
|
4624
4769
|
getMotionGroupDynamicModel(motionGroupModel, options) {
|
|
4625
|
-
return localVarFp.getMotionGroupDynamicModel(motionGroupModel, options).then((request) => request(axios$
|
|
4770
|
+
return localVarFp.getMotionGroupDynamicModel(motionGroupModel, options).then((request) => request(axios$95, basePath));
|
|
4626
4771
|
},
|
|
4627
4772
|
getMotionGroupGlbModel(motionGroupModel, options) {
|
|
4628
|
-
return localVarFp.getMotionGroupGlbModel(motionGroupModel, options).then((request) => request(axios$
|
|
4773
|
+
return localVarFp.getMotionGroupGlbModel(motionGroupModel, options).then((request) => request(axios$95, basePath));
|
|
4629
4774
|
},
|
|
4630
4775
|
getMotionGroupHomejoints(motionGroupModel, options) {
|
|
4631
|
-
return localVarFp.getMotionGroupHomejoints(motionGroupModel, options).then((request) => request(axios$
|
|
4776
|
+
return localVarFp.getMotionGroupHomejoints(motionGroupModel, options).then((request) => request(axios$95, basePath));
|
|
4632
4777
|
},
|
|
4633
4778
|
getMotionGroupKinematicModel(motionGroupModel, options) {
|
|
4634
|
-
return localVarFp.getMotionGroupKinematicModel(motionGroupModel, options).then((request) => request(axios$
|
|
4779
|
+
return localVarFp.getMotionGroupKinematicModel(motionGroupModel, options).then((request) => request(axios$95, basePath));
|
|
4635
4780
|
},
|
|
4636
4781
|
getMotionGroupLimitModel(motionGroupModel, options) {
|
|
4637
|
-
return localVarFp.getMotionGroupLimitModel(motionGroupModel, options).then((request) => request(axios$
|
|
4782
|
+
return localVarFp.getMotionGroupLimitModel(motionGroupModel, options).then((request) => request(axios$95, basePath));
|
|
4638
4783
|
},
|
|
4639
4784
|
getMotionGroupModels(options) {
|
|
4640
|
-
return localVarFp.getMotionGroupModels(options).then((request) => request(axios$
|
|
4785
|
+
return localVarFp.getMotionGroupModels(options).then((request) => request(axios$95, basePath));
|
|
4786
|
+
},
|
|
4787
|
+
getMotionGroupModelsCatalog(options) {
|
|
4788
|
+
return localVarFp.getMotionGroupModelsCatalog(options).then((request) => request(axios$95, basePath));
|
|
4641
4789
|
},
|
|
4642
4790
|
getMotionGroupUsdModel(motionGroupModel, options) {
|
|
4643
|
-
return localVarFp.getMotionGroupUsdModel(motionGroupModel, options).then((request) => request(axios$
|
|
4791
|
+
return localVarFp.getMotionGroupUsdModel(motionGroupModel, options).then((request) => request(axios$95, basePath));
|
|
4644
4792
|
},
|
|
4645
4793
|
importMotionGroupModel(body, options) {
|
|
4646
|
-
return localVarFp.importMotionGroupModel(body, options).then((request) => request(axios$
|
|
4794
|
+
return localVarFp.importMotionGroupModel(body, options).then((request) => request(axios$95, basePath));
|
|
4647
4795
|
}
|
|
4648
4796
|
};
|
|
4649
4797
|
};
|
|
@@ -4663,7 +4811,7 @@ var MotionGroupModelsApi = class extends BaseAPI {
|
|
|
4663
4811
|
return MotionGroupModelsApiFp(this.configuration).copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options).then((request) => request(this.axios, this.basePath));
|
|
4664
4812
|
}
|
|
4665
4813
|
/**
|
|
4666
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models
|
|
4814
|
+
* **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
4815
|
* @summary Delete Motion Group Model
|
|
4668
4816
|
* @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
4817
|
* @param {*} [options] Override http request option.
|
|
@@ -4683,6 +4831,16 @@ var MotionGroupModelsApi = class extends BaseAPI {
|
|
|
4683
4831
|
return MotionGroupModelsApiFp(this.configuration).exportMotionGroupModel(motionGroupModel, options).then((request) => request(this.axios, this.basePath));
|
|
4684
4832
|
}
|
|
4685
4833
|
/**
|
|
4834
|
+
* **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.
|
|
4835
|
+
* @summary Get Configuration for Motion Group
|
|
4836
|
+
* @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).
|
|
4837
|
+
* @param {*} [options] Override http request option.
|
|
4838
|
+
* @throws {RequiredError}
|
|
4839
|
+
*/
|
|
4840
|
+
getConfigurationForMotionGroup(motionGroupModel, options) {
|
|
4841
|
+
return MotionGroupModelsApiFp(this.configuration).getConfigurationForMotionGroup(motionGroupModel, options).then((request) => request(this.axios, this.basePath));
|
|
4842
|
+
}
|
|
4843
|
+
/**
|
|
4686
4844
|
* **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
4845
|
* @summary Get Collision Model
|
|
4688
4846
|
* @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 +4910,15 @@ var MotionGroupModelsApi = class extends BaseAPI {
|
|
|
4752
4910
|
return MotionGroupModelsApiFp(this.configuration).getMotionGroupModels(options).then((request) => request(this.axios, this.basePath));
|
|
4753
4911
|
}
|
|
4754
4912
|
/**
|
|
4913
|
+
* **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.
|
|
4914
|
+
* @summary Motion Group Model Catalog
|
|
4915
|
+
* @param {*} [options] Override http request option.
|
|
4916
|
+
* @throws {RequiredError}
|
|
4917
|
+
*/
|
|
4918
|
+
getMotionGroupModelsCatalog(options) {
|
|
4919
|
+
return MotionGroupModelsApiFp(this.configuration).getMotionGroupModelsCatalog(options).then((request) => request(this.axios, this.basePath));
|
|
4920
|
+
}
|
|
4921
|
+
/**
|
|
4755
4922
|
* **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
4923
|
* @summary Download USD Model
|
|
4757
4924
|
* @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 +4996,30 @@ const NOVACloudApiAxiosParamCreator = function(configuration) {
|
|
|
4829
4996
|
options: localVarRequestOptions
|
|
4830
4997
|
};
|
|
4831
4998
|
},
|
|
4999
|
+
getCloudStatus: async (options = {}) => {
|
|
5000
|
+
const localVarUrlObj = new URL(`/experimental/cloud/status`, DUMMY_BASE_URL);
|
|
5001
|
+
let baseOptions;
|
|
5002
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
5003
|
+
const localVarRequestOptions = {
|
|
5004
|
+
method: "GET",
|
|
5005
|
+
...baseOptions,
|
|
5006
|
+
...options
|
|
5007
|
+
};
|
|
5008
|
+
const localVarHeaderParameter = {};
|
|
5009
|
+
const localVarQueryParameter = {};
|
|
5010
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
5011
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5012
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5013
|
+
localVarRequestOptions.headers = {
|
|
5014
|
+
...localVarHeaderParameter,
|
|
5015
|
+
...headersFromBaseOptions,
|
|
5016
|
+
...options.headers
|
|
5017
|
+
};
|
|
5018
|
+
return {
|
|
5019
|
+
url: toPathString(localVarUrlObj),
|
|
5020
|
+
options: localVarRequestOptions
|
|
5021
|
+
};
|
|
5022
|
+
},
|
|
4832
5023
|
getNovaCloudConfig: async (options = {}) => {
|
|
4833
5024
|
const localVarUrlObj = new URL(`/experimental/cloud/config`, DUMMY_BASE_URL);
|
|
4834
5025
|
let baseOptions;
|
|
@@ -4865,36 +5056,45 @@ const NOVACloudApiFp = function(configuration) {
|
|
|
4865
5056
|
const localVarAxiosArgs = await localVarAxiosParamCreator.connectToNovaCloud(completionTimeout, cloudConnectionRequest, options);
|
|
4866
5057
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4867
5058
|
const localVarOperationServerBasePath = operationServerMap["NOVACloudApi.connectToNovaCloud"]?.[localVarOperationServerIndex]?.url;
|
|
4868
|
-
return (axios$
|
|
5059
|
+
return (axios$96, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$96, localVarOperationServerBasePath || basePath);
|
|
4869
5060
|
},
|
|
4870
5061
|
async disconnectFromNovaCloud(completionTimeout, options) {
|
|
4871
5062
|
const localVarAxiosArgs = await localVarAxiosParamCreator.disconnectFromNovaCloud(completionTimeout, options);
|
|
4872
5063
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4873
5064
|
const localVarOperationServerBasePath = operationServerMap["NOVACloudApi.disconnectFromNovaCloud"]?.[localVarOperationServerIndex]?.url;
|
|
4874
|
-
return (axios$
|
|
5065
|
+
return (axios$97, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$97, localVarOperationServerBasePath || basePath);
|
|
5066
|
+
},
|
|
5067
|
+
async getCloudStatus(options) {
|
|
5068
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getCloudStatus(options);
|
|
5069
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5070
|
+
const localVarOperationServerBasePath = operationServerMap["NOVACloudApi.getCloudStatus"]?.[localVarOperationServerIndex]?.url;
|
|
5071
|
+
return (axios$98, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$98, localVarOperationServerBasePath || basePath);
|
|
4875
5072
|
},
|
|
4876
5073
|
async getNovaCloudConfig(options) {
|
|
4877
5074
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getNovaCloudConfig(options);
|
|
4878
5075
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4879
5076
|
const localVarOperationServerBasePath = operationServerMap["NOVACloudApi.getNovaCloudConfig"]?.[localVarOperationServerIndex]?.url;
|
|
4880
|
-
return (axios$
|
|
5077
|
+
return (axios$99, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$99, localVarOperationServerBasePath || basePath);
|
|
4881
5078
|
}
|
|
4882
5079
|
};
|
|
4883
5080
|
};
|
|
4884
5081
|
/**
|
|
4885
5082
|
* NOVACloudApi - factory interface
|
|
4886
5083
|
*/
|
|
4887
|
-
const NOVACloudApiFactory = function(configuration, basePath, axios$
|
|
5084
|
+
const NOVACloudApiFactory = function(configuration, basePath, axios$100) {
|
|
4888
5085
|
const localVarFp = NOVACloudApiFp(configuration);
|
|
4889
5086
|
return {
|
|
4890
5087
|
connectToNovaCloud(completionTimeout, cloudConnectionRequest, options) {
|
|
4891
|
-
return localVarFp.connectToNovaCloud(completionTimeout, cloudConnectionRequest, options).then((request) => request(axios$
|
|
5088
|
+
return localVarFp.connectToNovaCloud(completionTimeout, cloudConnectionRequest, options).then((request) => request(axios$100, basePath));
|
|
4892
5089
|
},
|
|
4893
5090
|
disconnectFromNovaCloud(completionTimeout, options) {
|
|
4894
|
-
return localVarFp.disconnectFromNovaCloud(completionTimeout, options).then((request) => request(axios$
|
|
5091
|
+
return localVarFp.disconnectFromNovaCloud(completionTimeout, options).then((request) => request(axios$100, basePath));
|
|
5092
|
+
},
|
|
5093
|
+
getCloudStatus(options) {
|
|
5094
|
+
return localVarFp.getCloudStatus(options).then((request) => request(axios$100, basePath));
|
|
4895
5095
|
},
|
|
4896
5096
|
getNovaCloudConfig(options) {
|
|
4897
|
-
return localVarFp.getNovaCloudConfig(options).then((request) => request(axios$
|
|
5097
|
+
return localVarFp.getNovaCloudConfig(options).then((request) => request(axios$100, basePath));
|
|
4898
5098
|
}
|
|
4899
5099
|
};
|
|
4900
5100
|
};
|
|
@@ -4924,6 +5124,15 @@ var NOVACloudApi = class extends BaseAPI {
|
|
|
4924
5124
|
return NOVACloudApiFp(this.configuration).disconnectFromNovaCloud(completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
4925
5125
|
}
|
|
4926
5126
|
/**
|
|
5127
|
+
* **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.
|
|
5128
|
+
* @summary Get Connection Status
|
|
5129
|
+
* @param {*} [options] Override http request option.
|
|
5130
|
+
* @throws {RequiredError}
|
|
5131
|
+
*/
|
|
5132
|
+
getCloudStatus(options) {
|
|
5133
|
+
return NOVACloudApiFp(this.configuration).getCloudStatus(options).then((request) => request(this.axios, this.basePath));
|
|
5134
|
+
}
|
|
5135
|
+
/**
|
|
4927
5136
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection config for this instance.
|
|
4928
5137
|
* @summary Get Connection Config
|
|
4929
5138
|
* @param {*} [options] Override http request option.
|
|
@@ -5060,45 +5269,45 @@ const ProgramApiFp = function(configuration) {
|
|
|
5060
5269
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getProgram(cell, program, options);
|
|
5061
5270
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5062
5271
|
const localVarOperationServerBasePath = operationServerMap["ProgramApi.getProgram"]?.[localVarOperationServerIndex]?.url;
|
|
5063
|
-
return (axios$
|
|
5272
|
+
return (axios$101, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$101, localVarOperationServerBasePath || basePath);
|
|
5064
5273
|
},
|
|
5065
5274
|
async listPrograms(cell, options) {
|
|
5066
5275
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listPrograms(cell, options);
|
|
5067
5276
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5068
5277
|
const localVarOperationServerBasePath = operationServerMap["ProgramApi.listPrograms"]?.[localVarOperationServerIndex]?.url;
|
|
5069
|
-
return (axios$
|
|
5278
|
+
return (axios$102, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$102, localVarOperationServerBasePath || basePath);
|
|
5070
5279
|
},
|
|
5071
5280
|
async startProgram(cell, program, programStartRequest, options) {
|
|
5072
5281
|
const localVarAxiosArgs = await localVarAxiosParamCreator.startProgram(cell, program, programStartRequest, options);
|
|
5073
5282
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5074
5283
|
const localVarOperationServerBasePath = operationServerMap["ProgramApi.startProgram"]?.[localVarOperationServerIndex]?.url;
|
|
5075
|
-
return (axios$
|
|
5284
|
+
return (axios$103, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$103, localVarOperationServerBasePath || basePath);
|
|
5076
5285
|
},
|
|
5077
5286
|
async stopProgram(cell, program, options) {
|
|
5078
5287
|
const localVarAxiosArgs = await localVarAxiosParamCreator.stopProgram(cell, program, options);
|
|
5079
5288
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5080
5289
|
const localVarOperationServerBasePath = operationServerMap["ProgramApi.stopProgram"]?.[localVarOperationServerIndex]?.url;
|
|
5081
|
-
return (axios$
|
|
5290
|
+
return (axios$104, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$104, localVarOperationServerBasePath || basePath);
|
|
5082
5291
|
}
|
|
5083
5292
|
};
|
|
5084
5293
|
};
|
|
5085
5294
|
/**
|
|
5086
5295
|
* ProgramApi - factory interface
|
|
5087
5296
|
*/
|
|
5088
|
-
const ProgramApiFactory = function(configuration, basePath, axios$
|
|
5297
|
+
const ProgramApiFactory = function(configuration, basePath, axios$105) {
|
|
5089
5298
|
const localVarFp = ProgramApiFp(configuration);
|
|
5090
5299
|
return {
|
|
5091
5300
|
getProgram(cell, program, options) {
|
|
5092
|
-
return localVarFp.getProgram(cell, program, options).then((request) => request(axios$
|
|
5301
|
+
return localVarFp.getProgram(cell, program, options).then((request) => request(axios$105, basePath));
|
|
5093
5302
|
},
|
|
5094
5303
|
listPrograms(cell, options) {
|
|
5095
|
-
return localVarFp.listPrograms(cell, options).then((request) => request(axios$
|
|
5304
|
+
return localVarFp.listPrograms(cell, options).then((request) => request(axios$105, basePath));
|
|
5096
5305
|
},
|
|
5097
5306
|
startProgram(cell, program, programStartRequest, options) {
|
|
5098
|
-
return localVarFp.startProgram(cell, program, programStartRequest, options).then((request) => request(axios$
|
|
5307
|
+
return localVarFp.startProgram(cell, program, programStartRequest, options).then((request) => request(axios$105, basePath));
|
|
5099
5308
|
},
|
|
5100
5309
|
stopProgram(cell, program, options) {
|
|
5101
|
-
return localVarFp.stopProgram(cell, program, options).then((request) => request(axios$
|
|
5310
|
+
return localVarFp.stopProgram(cell, program, options).then((request) => request(axios$105, basePath));
|
|
5102
5311
|
}
|
|
5103
5312
|
};
|
|
5104
5313
|
};
|
|
@@ -5219,27 +5428,27 @@ const RobotConfigurationsApiFp = function(configuration) {
|
|
|
5219
5428
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getControllerConfigFromArpScan(robotControllerConfigurationRequest, options);
|
|
5220
5429
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5221
5430
|
const localVarOperationServerBasePath = operationServerMap["RobotConfigurationsApi.getControllerConfigFromArpScan"]?.[localVarOperationServerIndex]?.url;
|
|
5222
|
-
return (axios$
|
|
5431
|
+
return (axios$106, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$106, localVarOperationServerBasePath || basePath);
|
|
5223
5432
|
},
|
|
5224
5433
|
async getRobotConfigurations(options) {
|
|
5225
5434
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getRobotConfigurations(options);
|
|
5226
5435
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5227
5436
|
const localVarOperationServerBasePath = operationServerMap["RobotConfigurationsApi.getRobotConfigurations"]?.[localVarOperationServerIndex]?.url;
|
|
5228
|
-
return (axios$
|
|
5437
|
+
return (axios$107, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$107, localVarOperationServerBasePath || basePath);
|
|
5229
5438
|
}
|
|
5230
5439
|
};
|
|
5231
5440
|
};
|
|
5232
5441
|
/**
|
|
5233
5442
|
* RobotConfigurationsApi - factory interface
|
|
5234
5443
|
*/
|
|
5235
|
-
const RobotConfigurationsApiFactory = function(configuration, basePath, axios$
|
|
5444
|
+
const RobotConfigurationsApiFactory = function(configuration, basePath, axios$108) {
|
|
5236
5445
|
const localVarFp = RobotConfigurationsApiFp(configuration);
|
|
5237
5446
|
return {
|
|
5238
5447
|
getControllerConfigFromArpScan(robotControllerConfigurationRequest, options) {
|
|
5239
|
-
return localVarFp.getControllerConfigFromArpScan(robotControllerConfigurationRequest, options).then((request) => request(axios$
|
|
5448
|
+
return localVarFp.getControllerConfigFromArpScan(robotControllerConfigurationRequest, options).then((request) => request(axios$108, basePath));
|
|
5240
5449
|
},
|
|
5241
5450
|
getRobotConfigurations(options) {
|
|
5242
|
-
return localVarFp.getRobotConfigurations(options).then((request) => request(axios$
|
|
5451
|
+
return localVarFp.getRobotConfigurations(options).then((request) => request(axios$108, basePath));
|
|
5243
5452
|
}
|
|
5244
5453
|
};
|
|
5245
5454
|
};
|
|
@@ -5305,16 +5514,16 @@ const SessionApiFp = function(configuration) {
|
|
|
5305
5514
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getSession(options);
|
|
5306
5515
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5307
5516
|
const localVarOperationServerBasePath = operationServerMap["SessionApi.getSession"]?.[localVarOperationServerIndex]?.url;
|
|
5308
|
-
return (axios$
|
|
5517
|
+
return (axios$109, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$109, localVarOperationServerBasePath || basePath);
|
|
5309
5518
|
} };
|
|
5310
5519
|
};
|
|
5311
5520
|
/**
|
|
5312
5521
|
* SessionApi - factory interface
|
|
5313
5522
|
*/
|
|
5314
|
-
const SessionApiFactory = function(configuration, basePath, axios$
|
|
5523
|
+
const SessionApiFactory = function(configuration, basePath, axios$110) {
|
|
5315
5524
|
const localVarFp = SessionApiFp(configuration);
|
|
5316
5525
|
return { getSession(options) {
|
|
5317
|
-
return localVarFp.getSession(options).then((request) => request(axios$
|
|
5526
|
+
return localVarFp.getSession(options).then((request) => request(axios$110, basePath));
|
|
5318
5527
|
} };
|
|
5319
5528
|
};
|
|
5320
5529
|
/**
|
|
@@ -5756,144 +5965,144 @@ const StoreCollisionComponentsApiFp = function(configuration) {
|
|
|
5756
5965
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteStoredCollider(cell, collider, options);
|
|
5757
5966
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5758
5967
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.deleteStoredCollider"]?.[localVarOperationServerIndex]?.url;
|
|
5759
|
-
return (axios$
|
|
5968
|
+
return (axios$111, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$111, localVarOperationServerBasePath || basePath);
|
|
5760
5969
|
},
|
|
5761
5970
|
async deleteStoredCollisionLinkChain(cell, linkChain, options) {
|
|
5762
5971
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteStoredCollisionLinkChain(cell, linkChain, options);
|
|
5763
5972
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5764
5973
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.deleteStoredCollisionLinkChain"]?.[localVarOperationServerIndex]?.url;
|
|
5765
|
-
return (axios$
|
|
5974
|
+
return (axios$112, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$112, localVarOperationServerBasePath || basePath);
|
|
5766
5975
|
},
|
|
5767
5976
|
async deleteStoredCollisionTool(cell, tool, options) {
|
|
5768
5977
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteStoredCollisionTool(cell, tool, options);
|
|
5769
5978
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5770
5979
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.deleteStoredCollisionTool"]?.[localVarOperationServerIndex]?.url;
|
|
5771
|
-
return (axios$
|
|
5980
|
+
return (axios$113, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$113, localVarOperationServerBasePath || basePath);
|
|
5772
5981
|
},
|
|
5773
5982
|
async getStoredCollider(cell, collider, options) {
|
|
5774
5983
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getStoredCollider(cell, collider, options);
|
|
5775
5984
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5776
5985
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.getStoredCollider"]?.[localVarOperationServerIndex]?.url;
|
|
5777
|
-
return (axios$
|
|
5986
|
+
return (axios$114, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$114, localVarOperationServerBasePath || basePath);
|
|
5778
5987
|
},
|
|
5779
5988
|
async getStoredCollisionLinkChain(cell, linkChain, options) {
|
|
5780
5989
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getStoredCollisionLinkChain(cell, linkChain, options);
|
|
5781
5990
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5782
5991
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.getStoredCollisionLinkChain"]?.[localVarOperationServerIndex]?.url;
|
|
5783
|
-
return (axios$
|
|
5992
|
+
return (axios$115, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$115, localVarOperationServerBasePath || basePath);
|
|
5784
5993
|
},
|
|
5785
5994
|
async getStoredCollisionTool(cell, tool, options) {
|
|
5786
5995
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getStoredCollisionTool(cell, tool, options);
|
|
5787
5996
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5788
5997
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.getStoredCollisionTool"]?.[localVarOperationServerIndex]?.url;
|
|
5789
|
-
return (axios$
|
|
5998
|
+
return (axios$116, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$116, localVarOperationServerBasePath || basePath);
|
|
5790
5999
|
},
|
|
5791
6000
|
async listCollisionLinkChains(cell, options) {
|
|
5792
6001
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listCollisionLinkChains(cell, options);
|
|
5793
6002
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5794
6003
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listCollisionLinkChains"]?.[localVarOperationServerIndex]?.url;
|
|
5795
|
-
return (axios$
|
|
6004
|
+
return (axios$117, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$117, localVarOperationServerBasePath || basePath);
|
|
5796
6005
|
},
|
|
5797
6006
|
async listCollisionLinkChainsKeys(cell, options) {
|
|
5798
6007
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listCollisionLinkChainsKeys(cell, options);
|
|
5799
6008
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5800
6009
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listCollisionLinkChainsKeys"]?.[localVarOperationServerIndex]?.url;
|
|
5801
|
-
return (axios$
|
|
6010
|
+
return (axios$118, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$118, localVarOperationServerBasePath || basePath);
|
|
5802
6011
|
},
|
|
5803
6012
|
async listStoredColliders(cell, options) {
|
|
5804
6013
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredColliders(cell, options);
|
|
5805
6014
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5806
6015
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listStoredColliders"]?.[localVarOperationServerIndex]?.url;
|
|
5807
|
-
return (axios$
|
|
6016
|
+
return (axios$119, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$119, localVarOperationServerBasePath || basePath);
|
|
5808
6017
|
},
|
|
5809
6018
|
async listStoredCollidersKeys(cell, options) {
|
|
5810
6019
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredCollidersKeys(cell, options);
|
|
5811
6020
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5812
6021
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listStoredCollidersKeys"]?.[localVarOperationServerIndex]?.url;
|
|
5813
|
-
return (axios$
|
|
6022
|
+
return (axios$120, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$120, localVarOperationServerBasePath || basePath);
|
|
5814
6023
|
},
|
|
5815
6024
|
async listStoredCollisionTools(cell, options) {
|
|
5816
6025
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredCollisionTools(cell, options);
|
|
5817
6026
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5818
6027
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listStoredCollisionTools"]?.[localVarOperationServerIndex]?.url;
|
|
5819
|
-
return (axios$
|
|
6028
|
+
return (axios$121, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$121, localVarOperationServerBasePath || basePath);
|
|
5820
6029
|
},
|
|
5821
6030
|
async listStoredCollisionToolsKeys(cell, options) {
|
|
5822
6031
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredCollisionToolsKeys(cell, options);
|
|
5823
6032
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5824
6033
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listStoredCollisionToolsKeys"]?.[localVarOperationServerIndex]?.url;
|
|
5825
|
-
return (axios$
|
|
6034
|
+
return (axios$122, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$122, localVarOperationServerBasePath || basePath);
|
|
5826
6035
|
},
|
|
5827
6036
|
async storeCollider(cell, collider, collider2, options) {
|
|
5828
6037
|
const localVarAxiosArgs = await localVarAxiosParamCreator.storeCollider(cell, collider, collider2, options);
|
|
5829
6038
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5830
6039
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.storeCollider"]?.[localVarOperationServerIndex]?.url;
|
|
5831
|
-
return (axios$
|
|
6040
|
+
return (axios$123, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$123, localVarOperationServerBasePath || basePath);
|
|
5832
6041
|
},
|
|
5833
6042
|
async storeCollisionLinkChain(cell, linkChain, collider, options) {
|
|
5834
6043
|
const localVarAxiosArgs = await localVarAxiosParamCreator.storeCollisionLinkChain(cell, linkChain, collider, options);
|
|
5835
6044
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5836
6045
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.storeCollisionLinkChain"]?.[localVarOperationServerIndex]?.url;
|
|
5837
|
-
return (axios$
|
|
6046
|
+
return (axios$124, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$124, localVarOperationServerBasePath || basePath);
|
|
5838
6047
|
},
|
|
5839
6048
|
async storeCollisionTool(cell, tool, requestBody, options) {
|
|
5840
6049
|
const localVarAxiosArgs = await localVarAxiosParamCreator.storeCollisionTool(cell, tool, requestBody, options);
|
|
5841
6050
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5842
6051
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.storeCollisionTool"]?.[localVarOperationServerIndex]?.url;
|
|
5843
|
-
return (axios$
|
|
6052
|
+
return (axios$125, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$125, localVarOperationServerBasePath || basePath);
|
|
5844
6053
|
}
|
|
5845
6054
|
};
|
|
5846
6055
|
};
|
|
5847
6056
|
/**
|
|
5848
6057
|
* StoreCollisionComponentsApi - factory interface
|
|
5849
6058
|
*/
|
|
5850
|
-
const StoreCollisionComponentsApiFactory = function(configuration, basePath, axios$
|
|
6059
|
+
const StoreCollisionComponentsApiFactory = function(configuration, basePath, axios$126) {
|
|
5851
6060
|
const localVarFp = StoreCollisionComponentsApiFp(configuration);
|
|
5852
6061
|
return {
|
|
5853
6062
|
deleteStoredCollider(cell, collider, options) {
|
|
5854
|
-
return localVarFp.deleteStoredCollider(cell, collider, options).then((request) => request(axios$
|
|
6063
|
+
return localVarFp.deleteStoredCollider(cell, collider, options).then((request) => request(axios$126, basePath));
|
|
5855
6064
|
},
|
|
5856
6065
|
deleteStoredCollisionLinkChain(cell, linkChain, options) {
|
|
5857
|
-
return localVarFp.deleteStoredCollisionLinkChain(cell, linkChain, options).then((request) => request(axios$
|
|
6066
|
+
return localVarFp.deleteStoredCollisionLinkChain(cell, linkChain, options).then((request) => request(axios$126, basePath));
|
|
5858
6067
|
},
|
|
5859
6068
|
deleteStoredCollisionTool(cell, tool, options) {
|
|
5860
|
-
return localVarFp.deleteStoredCollisionTool(cell, tool, options).then((request) => request(axios$
|
|
6069
|
+
return localVarFp.deleteStoredCollisionTool(cell, tool, options).then((request) => request(axios$126, basePath));
|
|
5861
6070
|
},
|
|
5862
6071
|
getStoredCollider(cell, collider, options) {
|
|
5863
|
-
return localVarFp.getStoredCollider(cell, collider, options).then((request) => request(axios$
|
|
6072
|
+
return localVarFp.getStoredCollider(cell, collider, options).then((request) => request(axios$126, basePath));
|
|
5864
6073
|
},
|
|
5865
6074
|
getStoredCollisionLinkChain(cell, linkChain, options) {
|
|
5866
|
-
return localVarFp.getStoredCollisionLinkChain(cell, linkChain, options).then((request) => request(axios$
|
|
6075
|
+
return localVarFp.getStoredCollisionLinkChain(cell, linkChain, options).then((request) => request(axios$126, basePath));
|
|
5867
6076
|
},
|
|
5868
6077
|
getStoredCollisionTool(cell, tool, options) {
|
|
5869
|
-
return localVarFp.getStoredCollisionTool(cell, tool, options).then((request) => request(axios$
|
|
6078
|
+
return localVarFp.getStoredCollisionTool(cell, tool, options).then((request) => request(axios$126, basePath));
|
|
5870
6079
|
},
|
|
5871
6080
|
listCollisionLinkChains(cell, options) {
|
|
5872
|
-
return localVarFp.listCollisionLinkChains(cell, options).then((request) => request(axios$
|
|
6081
|
+
return localVarFp.listCollisionLinkChains(cell, options).then((request) => request(axios$126, basePath));
|
|
5873
6082
|
},
|
|
5874
6083
|
listCollisionLinkChainsKeys(cell, options) {
|
|
5875
|
-
return localVarFp.listCollisionLinkChainsKeys(cell, options).then((request) => request(axios$
|
|
6084
|
+
return localVarFp.listCollisionLinkChainsKeys(cell, options).then((request) => request(axios$126, basePath));
|
|
5876
6085
|
},
|
|
5877
6086
|
listStoredColliders(cell, options) {
|
|
5878
|
-
return localVarFp.listStoredColliders(cell, options).then((request) => request(axios$
|
|
6087
|
+
return localVarFp.listStoredColliders(cell, options).then((request) => request(axios$126, basePath));
|
|
5879
6088
|
},
|
|
5880
6089
|
listStoredCollidersKeys(cell, options) {
|
|
5881
|
-
return localVarFp.listStoredCollidersKeys(cell, options).then((request) => request(axios$
|
|
6090
|
+
return localVarFp.listStoredCollidersKeys(cell, options).then((request) => request(axios$126, basePath));
|
|
5882
6091
|
},
|
|
5883
6092
|
listStoredCollisionTools(cell, options) {
|
|
5884
|
-
return localVarFp.listStoredCollisionTools(cell, options).then((request) => request(axios$
|
|
6093
|
+
return localVarFp.listStoredCollisionTools(cell, options).then((request) => request(axios$126, basePath));
|
|
5885
6094
|
},
|
|
5886
6095
|
listStoredCollisionToolsKeys(cell, options) {
|
|
5887
|
-
return localVarFp.listStoredCollisionToolsKeys(cell, options).then((request) => request(axios$
|
|
6096
|
+
return localVarFp.listStoredCollisionToolsKeys(cell, options).then((request) => request(axios$126, basePath));
|
|
5888
6097
|
},
|
|
5889
6098
|
storeCollider(cell, collider, collider2, options) {
|
|
5890
|
-
return localVarFp.storeCollider(cell, collider, collider2, options).then((request) => request(axios$
|
|
6099
|
+
return localVarFp.storeCollider(cell, collider, collider2, options).then((request) => request(axios$126, basePath));
|
|
5891
6100
|
},
|
|
5892
6101
|
storeCollisionLinkChain(cell, linkChain, collider, options) {
|
|
5893
|
-
return localVarFp.storeCollisionLinkChain(cell, linkChain, collider, options).then((request) => request(axios$
|
|
6102
|
+
return localVarFp.storeCollisionLinkChain(cell, linkChain, collider, options).then((request) => request(axios$126, basePath));
|
|
5894
6103
|
},
|
|
5895
6104
|
storeCollisionTool(cell, tool, requestBody, options) {
|
|
5896
|
-
return localVarFp.storeCollisionTool(cell, tool, requestBody, options).then((request) => request(axios$
|
|
6105
|
+
return localVarFp.storeCollisionTool(cell, tool, requestBody, options).then((request) => request(axios$126, basePath));
|
|
5897
6106
|
}
|
|
5898
6107
|
};
|
|
5899
6108
|
};
|
|
@@ -6217,54 +6426,54 @@ const StoreCollisionSetupsApiFp = function(configuration) {
|
|
|
6217
6426
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteStoredCollisionSetup(cell, setup, options);
|
|
6218
6427
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6219
6428
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionSetupsApi.deleteStoredCollisionSetup"]?.[localVarOperationServerIndex]?.url;
|
|
6220
|
-
return (axios$
|
|
6429
|
+
return (axios$127, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$127, localVarOperationServerBasePath || basePath);
|
|
6221
6430
|
},
|
|
6222
6431
|
async getStoredCollisionSetup(cell, setup, options) {
|
|
6223
6432
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getStoredCollisionSetup(cell, setup, options);
|
|
6224
6433
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6225
6434
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionSetupsApi.getStoredCollisionSetup"]?.[localVarOperationServerIndex]?.url;
|
|
6226
|
-
return (axios$
|
|
6435
|
+
return (axios$128, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$128, localVarOperationServerBasePath || basePath);
|
|
6227
6436
|
},
|
|
6228
6437
|
async listStoredCollisionSetups(cell, options) {
|
|
6229
6438
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredCollisionSetups(cell, options);
|
|
6230
6439
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6231
6440
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionSetupsApi.listStoredCollisionSetups"]?.[localVarOperationServerIndex]?.url;
|
|
6232
|
-
return (axios$
|
|
6441
|
+
return (axios$129, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$129, localVarOperationServerBasePath || basePath);
|
|
6233
6442
|
},
|
|
6234
6443
|
async listStoredCollisionSetupsKeys(cell, options) {
|
|
6235
6444
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredCollisionSetupsKeys(cell, options);
|
|
6236
6445
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6237
6446
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionSetupsApi.listStoredCollisionSetupsKeys"]?.[localVarOperationServerIndex]?.url;
|
|
6238
|
-
return (axios$
|
|
6447
|
+
return (axios$130, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$130, localVarOperationServerBasePath || basePath);
|
|
6239
6448
|
},
|
|
6240
6449
|
async storeCollisionSetup(cell, setup, collisionSetup, options) {
|
|
6241
6450
|
const localVarAxiosArgs = await localVarAxiosParamCreator.storeCollisionSetup(cell, setup, collisionSetup, options);
|
|
6242
6451
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6243
6452
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionSetupsApi.storeCollisionSetup"]?.[localVarOperationServerIndex]?.url;
|
|
6244
|
-
return (axios$
|
|
6453
|
+
return (axios$131, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$131, localVarOperationServerBasePath || basePath);
|
|
6245
6454
|
}
|
|
6246
6455
|
};
|
|
6247
6456
|
};
|
|
6248
6457
|
/**
|
|
6249
6458
|
* StoreCollisionSetupsApi - factory interface
|
|
6250
6459
|
*/
|
|
6251
|
-
const StoreCollisionSetupsApiFactory = function(configuration, basePath, axios$
|
|
6460
|
+
const StoreCollisionSetupsApiFactory = function(configuration, basePath, axios$132) {
|
|
6252
6461
|
const localVarFp = StoreCollisionSetupsApiFp(configuration);
|
|
6253
6462
|
return {
|
|
6254
6463
|
deleteStoredCollisionSetup(cell, setup, options) {
|
|
6255
|
-
return localVarFp.deleteStoredCollisionSetup(cell, setup, options).then((request) => request(axios$
|
|
6464
|
+
return localVarFp.deleteStoredCollisionSetup(cell, setup, options).then((request) => request(axios$132, basePath));
|
|
6256
6465
|
},
|
|
6257
6466
|
getStoredCollisionSetup(cell, setup, options) {
|
|
6258
|
-
return localVarFp.getStoredCollisionSetup(cell, setup, options).then((request) => request(axios$
|
|
6467
|
+
return localVarFp.getStoredCollisionSetup(cell, setup, options).then((request) => request(axios$132, basePath));
|
|
6259
6468
|
},
|
|
6260
6469
|
listStoredCollisionSetups(cell, options) {
|
|
6261
|
-
return localVarFp.listStoredCollisionSetups(cell, options).then((request) => request(axios$
|
|
6470
|
+
return localVarFp.listStoredCollisionSetups(cell, options).then((request) => request(axios$132, basePath));
|
|
6262
6471
|
},
|
|
6263
6472
|
listStoredCollisionSetupsKeys(cell, options) {
|
|
6264
|
-
return localVarFp.listStoredCollisionSetupsKeys(cell, options).then((request) => request(axios$
|
|
6473
|
+
return localVarFp.listStoredCollisionSetupsKeys(cell, options).then((request) => request(axios$132, basePath));
|
|
6265
6474
|
},
|
|
6266
6475
|
storeCollisionSetup(cell, setup, collisionSetup, options) {
|
|
6267
|
-
return localVarFp.storeCollisionSetup(cell, setup, collisionSetup, options).then((request) => request(axios$
|
|
6476
|
+
return localVarFp.storeCollisionSetup(cell, setup, collisionSetup, options).then((request) => request(axios$132, basePath));
|
|
6268
6477
|
}
|
|
6269
6478
|
};
|
|
6270
6479
|
};
|
|
@@ -6509,63 +6718,63 @@ const StoreObjectApiFp = function(configuration) {
|
|
|
6509
6718
|
const localVarAxiosArgs = await localVarAxiosParamCreator.clearAllObjects(cell, options);
|
|
6510
6719
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6511
6720
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.clearAllObjects"]?.[localVarOperationServerIndex]?.url;
|
|
6512
|
-
return (axios$
|
|
6721
|
+
return (axios$133, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$133, localVarOperationServerBasePath || basePath);
|
|
6513
6722
|
},
|
|
6514
6723
|
async deleteObject(cell, key, options) {
|
|
6515
6724
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteObject(cell, key, options);
|
|
6516
6725
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6517
6726
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.deleteObject"]?.[localVarOperationServerIndex]?.url;
|
|
6518
|
-
return (axios$
|
|
6727
|
+
return (axios$134, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$134, localVarOperationServerBasePath || basePath);
|
|
6519
6728
|
},
|
|
6520
6729
|
async getObject(cell, key, options) {
|
|
6521
6730
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getObject(cell, key, options);
|
|
6522
6731
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6523
6732
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.getObject"]?.[localVarOperationServerIndex]?.url;
|
|
6524
|
-
return (axios$
|
|
6733
|
+
return (axios$135, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$135, localVarOperationServerBasePath || basePath);
|
|
6525
6734
|
},
|
|
6526
6735
|
async getObjectMetadata(cell, key, options) {
|
|
6527
6736
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getObjectMetadata(cell, key, options);
|
|
6528
6737
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6529
6738
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.getObjectMetadata"]?.[localVarOperationServerIndex]?.url;
|
|
6530
|
-
return (axios$
|
|
6739
|
+
return (axios$136, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$136, localVarOperationServerBasePath || basePath);
|
|
6531
6740
|
},
|
|
6532
6741
|
async listAllObjectKeys(cell, options) {
|
|
6533
6742
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listAllObjectKeys(cell, options);
|
|
6534
6743
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6535
6744
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.listAllObjectKeys"]?.[localVarOperationServerIndex]?.url;
|
|
6536
|
-
return (axios$
|
|
6745
|
+
return (axios$137, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$137, localVarOperationServerBasePath || basePath);
|
|
6537
6746
|
},
|
|
6538
6747
|
async storeObject(cell, key, xMetadata, anyValue, options) {
|
|
6539
6748
|
const localVarAxiosArgs = await localVarAxiosParamCreator.storeObject(cell, key, xMetadata, anyValue, options);
|
|
6540
6749
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6541
6750
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.storeObject"]?.[localVarOperationServerIndex]?.url;
|
|
6542
|
-
return (axios$
|
|
6751
|
+
return (axios$138, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$138, localVarOperationServerBasePath || basePath);
|
|
6543
6752
|
}
|
|
6544
6753
|
};
|
|
6545
6754
|
};
|
|
6546
6755
|
/**
|
|
6547
6756
|
* StoreObjectApi - factory interface
|
|
6548
6757
|
*/
|
|
6549
|
-
const StoreObjectApiFactory = function(configuration, basePath, axios$
|
|
6758
|
+
const StoreObjectApiFactory = function(configuration, basePath, axios$139) {
|
|
6550
6759
|
const localVarFp = StoreObjectApiFp(configuration);
|
|
6551
6760
|
return {
|
|
6552
6761
|
clearAllObjects(cell, options) {
|
|
6553
|
-
return localVarFp.clearAllObjects(cell, options).then((request) => request(axios$
|
|
6762
|
+
return localVarFp.clearAllObjects(cell, options).then((request) => request(axios$139, basePath));
|
|
6554
6763
|
},
|
|
6555
6764
|
deleteObject(cell, key, options) {
|
|
6556
|
-
return localVarFp.deleteObject(cell, key, options).then((request) => request(axios$
|
|
6765
|
+
return localVarFp.deleteObject(cell, key, options).then((request) => request(axios$139, basePath));
|
|
6557
6766
|
},
|
|
6558
6767
|
getObject(cell, key, options) {
|
|
6559
|
-
return localVarFp.getObject(cell, key, options).then((request) => request(axios$
|
|
6768
|
+
return localVarFp.getObject(cell, key, options).then((request) => request(axios$139, basePath));
|
|
6560
6769
|
},
|
|
6561
6770
|
getObjectMetadata(cell, key, options) {
|
|
6562
|
-
return localVarFp.getObjectMetadata(cell, key, options).then((request) => request(axios$
|
|
6771
|
+
return localVarFp.getObjectMetadata(cell, key, options).then((request) => request(axios$139, basePath));
|
|
6563
6772
|
},
|
|
6564
6773
|
listAllObjectKeys(cell, options) {
|
|
6565
|
-
return localVarFp.listAllObjectKeys(cell, options).then((request) => request(axios$
|
|
6774
|
+
return localVarFp.listAllObjectKeys(cell, options).then((request) => request(axios$139, basePath));
|
|
6566
6775
|
},
|
|
6567
6776
|
storeObject(cell, key, xMetadata, anyValue, options) {
|
|
6568
|
-
return localVarFp.storeObject(cell, key, xMetadata, anyValue, options).then((request) => request(axios$
|
|
6777
|
+
return localVarFp.storeObject(cell, key, xMetadata, anyValue, options).then((request) => request(axios$139, basePath));
|
|
6569
6778
|
}
|
|
6570
6779
|
};
|
|
6571
6780
|
};
|
|
@@ -6961,117 +7170,117 @@ const SystemApiFp = function(configuration) {
|
|
|
6961
7170
|
const localVarAxiosArgs = await localVarAxiosParamCreator.backupConfiguration(resources, metadata, options);
|
|
6962
7171
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6963
7172
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.backupConfiguration"]?.[localVarOperationServerIndex]?.url;
|
|
6964
|
-
return (axios$
|
|
7173
|
+
return (axios$140, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$140, localVarOperationServerBasePath || basePath);
|
|
6965
7174
|
},
|
|
6966
7175
|
async checkNovaVersionUpdate(channel, options) {
|
|
6967
7176
|
const localVarAxiosArgs = await localVarAxiosParamCreator.checkNovaVersionUpdate(channel, options);
|
|
6968
7177
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6969
7178
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.checkNovaVersionUpdate"]?.[localVarOperationServerIndex]?.url;
|
|
6970
|
-
return (axios$
|
|
7179
|
+
return (axios$141, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$141, localVarOperationServerBasePath || basePath);
|
|
6971
7180
|
},
|
|
6972
7181
|
async getArpScan(_interface, cidr, timeout, options) {
|
|
6973
7182
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getArpScan(_interface, cidr, timeout, options);
|
|
6974
7183
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6975
7184
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getArpScan"]?.[localVarOperationServerIndex]?.url;
|
|
6976
|
-
return (axios$
|
|
7185
|
+
return (axios$142, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$142, localVarOperationServerBasePath || basePath);
|
|
6977
7186
|
},
|
|
6978
7187
|
async getConfigurationBackupStatus(operationId, options) {
|
|
6979
7188
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getConfigurationBackupStatus(operationId, options);
|
|
6980
7189
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6981
7190
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getConfigurationBackupStatus"]?.[localVarOperationServerIndex]?.url;
|
|
6982
|
-
return (axios$
|
|
7191
|
+
return (axios$143, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$143, localVarOperationServerBasePath || basePath);
|
|
6983
7192
|
},
|
|
6984
7193
|
async getDiagnosePackage(options) {
|
|
6985
7194
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getDiagnosePackage(options);
|
|
6986
7195
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6987
7196
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getDiagnosePackage"]?.[localVarOperationServerIndex]?.url;
|
|
6988
|
-
return (axios$
|
|
7197
|
+
return (axios$144, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$144, localVarOperationServerBasePath || basePath);
|
|
6989
7198
|
},
|
|
6990
7199
|
async getNetworkInterfaces(options) {
|
|
6991
7200
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getNetworkInterfaces(options);
|
|
6992
7201
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6993
7202
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getNetworkInterfaces"]?.[localVarOperationServerIndex]?.url;
|
|
6994
|
-
return (axios$
|
|
7203
|
+
return (axios$145, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$145, localVarOperationServerBasePath || basePath);
|
|
6995
7204
|
},
|
|
6996
7205
|
async getNetworkState(options) {
|
|
6997
7206
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getNetworkState(options);
|
|
6998
7207
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6999
7208
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getNetworkState"]?.[localVarOperationServerIndex]?.url;
|
|
7000
|
-
return (axios$
|
|
7209
|
+
return (axios$146, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$146, localVarOperationServerBasePath || basePath);
|
|
7001
7210
|
},
|
|
7002
7211
|
async getSystemStatus(options) {
|
|
7003
7212
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getSystemStatus(options);
|
|
7004
7213
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7005
7214
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getSystemStatus"]?.[localVarOperationServerIndex]?.url;
|
|
7006
|
-
return (axios$
|
|
7215
|
+
return (axios$147, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$147, localVarOperationServerBasePath || basePath);
|
|
7007
7216
|
},
|
|
7008
7217
|
async getSystemVersion(options) {
|
|
7009
7218
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getSystemVersion(options);
|
|
7010
7219
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7011
7220
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getSystemVersion"]?.[localVarOperationServerIndex]?.url;
|
|
7012
|
-
return (axios$
|
|
7221
|
+
return (axios$148, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$148, localVarOperationServerBasePath || basePath);
|
|
7013
7222
|
},
|
|
7014
7223
|
async listConfigurationResources(options) {
|
|
7015
7224
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listConfigurationResources(options);
|
|
7016
7225
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7017
7226
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.listConfigurationResources"]?.[localVarOperationServerIndex]?.url;
|
|
7018
|
-
return (axios$
|
|
7227
|
+
return (axios$149, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$149, localVarOperationServerBasePath || basePath);
|
|
7019
7228
|
},
|
|
7020
7229
|
async restoreConfiguration(body, resources, options) {
|
|
7021
7230
|
const localVarAxiosArgs = await localVarAxiosParamCreator.restoreConfiguration(body, resources, options);
|
|
7022
7231
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7023
7232
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.restoreConfiguration"]?.[localVarOperationServerIndex]?.url;
|
|
7024
|
-
return (axios$
|
|
7233
|
+
return (axios$150, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$150, localVarOperationServerBasePath || basePath);
|
|
7025
7234
|
},
|
|
7026
7235
|
async updateNovaVersion(updateNovaVersionRequest, options) {
|
|
7027
7236
|
const localVarAxiosArgs = await localVarAxiosParamCreator.updateNovaVersion(updateNovaVersionRequest, options);
|
|
7028
7237
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7029
7238
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.updateNovaVersion"]?.[localVarOperationServerIndex]?.url;
|
|
7030
|
-
return (axios$
|
|
7239
|
+
return (axios$151, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$151, localVarOperationServerBasePath || basePath);
|
|
7031
7240
|
}
|
|
7032
7241
|
};
|
|
7033
7242
|
};
|
|
7034
7243
|
/**
|
|
7035
7244
|
* SystemApi - factory interface
|
|
7036
7245
|
*/
|
|
7037
|
-
const SystemApiFactory = function(configuration, basePath, axios$
|
|
7246
|
+
const SystemApiFactory = function(configuration, basePath, axios$152) {
|
|
7038
7247
|
const localVarFp = SystemApiFp(configuration);
|
|
7039
7248
|
return {
|
|
7040
7249
|
backupConfiguration(resources, metadata, options) {
|
|
7041
|
-
return localVarFp.backupConfiguration(resources, metadata, options).then((request) => request(axios$
|
|
7250
|
+
return localVarFp.backupConfiguration(resources, metadata, options).then((request) => request(axios$152, basePath));
|
|
7042
7251
|
},
|
|
7043
7252
|
checkNovaVersionUpdate(channel, options) {
|
|
7044
|
-
return localVarFp.checkNovaVersionUpdate(channel, options).then((request) => request(axios$
|
|
7253
|
+
return localVarFp.checkNovaVersionUpdate(channel, options).then((request) => request(axios$152, basePath));
|
|
7045
7254
|
},
|
|
7046
7255
|
getArpScan(_interface, cidr, timeout, options) {
|
|
7047
|
-
return localVarFp.getArpScan(_interface, cidr, timeout, options).then((request) => request(axios$
|
|
7256
|
+
return localVarFp.getArpScan(_interface, cidr, timeout, options).then((request) => request(axios$152, basePath));
|
|
7048
7257
|
},
|
|
7049
7258
|
getConfigurationBackupStatus(operationId, options) {
|
|
7050
|
-
return localVarFp.getConfigurationBackupStatus(operationId, options).then((request) => request(axios$
|
|
7259
|
+
return localVarFp.getConfigurationBackupStatus(operationId, options).then((request) => request(axios$152, basePath));
|
|
7051
7260
|
},
|
|
7052
7261
|
getDiagnosePackage(options) {
|
|
7053
|
-
return localVarFp.getDiagnosePackage(options).then((request) => request(axios$
|
|
7262
|
+
return localVarFp.getDiagnosePackage(options).then((request) => request(axios$152, basePath));
|
|
7054
7263
|
},
|
|
7055
7264
|
getNetworkInterfaces(options) {
|
|
7056
|
-
return localVarFp.getNetworkInterfaces(options).then((request) => request(axios$
|
|
7265
|
+
return localVarFp.getNetworkInterfaces(options).then((request) => request(axios$152, basePath));
|
|
7057
7266
|
},
|
|
7058
7267
|
getNetworkState(options) {
|
|
7059
|
-
return localVarFp.getNetworkState(options).then((request) => request(axios$
|
|
7268
|
+
return localVarFp.getNetworkState(options).then((request) => request(axios$152, basePath));
|
|
7060
7269
|
},
|
|
7061
7270
|
getSystemStatus(options) {
|
|
7062
|
-
return localVarFp.getSystemStatus(options).then((request) => request(axios$
|
|
7271
|
+
return localVarFp.getSystemStatus(options).then((request) => request(axios$152, basePath));
|
|
7063
7272
|
},
|
|
7064
7273
|
getSystemVersion(options) {
|
|
7065
|
-
return localVarFp.getSystemVersion(options).then((request) => request(axios$
|
|
7274
|
+
return localVarFp.getSystemVersion(options).then((request) => request(axios$152, basePath));
|
|
7066
7275
|
},
|
|
7067
7276
|
listConfigurationResources(options) {
|
|
7068
|
-
return localVarFp.listConfigurationResources(options).then((request) => request(axios$
|
|
7277
|
+
return localVarFp.listConfigurationResources(options).then((request) => request(axios$152, basePath));
|
|
7069
7278
|
},
|
|
7070
7279
|
restoreConfiguration(body, resources, options) {
|
|
7071
|
-
return localVarFp.restoreConfiguration(body, resources, options).then((request) => request(axios$
|
|
7280
|
+
return localVarFp.restoreConfiguration(body, resources, options).then((request) => request(axios$152, basePath));
|
|
7072
7281
|
},
|
|
7073
7282
|
updateNovaVersion(updateNovaVersionRequest, options) {
|
|
7074
|
-
return localVarFp.updateNovaVersion(updateNovaVersionRequest, options).then((request) => request(axios$
|
|
7283
|
+
return localVarFp.updateNovaVersion(updateNovaVersionRequest, options).then((request) => request(axios$152, basePath));
|
|
7075
7284
|
}
|
|
7076
7285
|
};
|
|
7077
7286
|
};
|
|
@@ -7355,54 +7564,54 @@ const TrajectoryCachingApiFp = function(configuration) {
|
|
|
7355
7564
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addTrajectory(cell, controller, addTrajectoryRequest, options);
|
|
7356
7565
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7357
7566
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryCachingApi.addTrajectory"]?.[localVarOperationServerIndex]?.url;
|
|
7358
|
-
return (axios$
|
|
7567
|
+
return (axios$153, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$153, localVarOperationServerBasePath || basePath);
|
|
7359
7568
|
},
|
|
7360
7569
|
async clearTrajectories(cell, controller, options) {
|
|
7361
7570
|
const localVarAxiosArgs = await localVarAxiosParamCreator.clearTrajectories(cell, controller, options);
|
|
7362
7571
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7363
7572
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryCachingApi.clearTrajectories"]?.[localVarOperationServerIndex]?.url;
|
|
7364
|
-
return (axios$
|
|
7573
|
+
return (axios$154, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$154, localVarOperationServerBasePath || basePath);
|
|
7365
7574
|
},
|
|
7366
7575
|
async deleteTrajectory(cell, controller, trajectory, options) {
|
|
7367
7576
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteTrajectory(cell, controller, trajectory, options);
|
|
7368
7577
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7369
7578
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryCachingApi.deleteTrajectory"]?.[localVarOperationServerIndex]?.url;
|
|
7370
|
-
return (axios$
|
|
7579
|
+
return (axios$155, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$155, localVarOperationServerBasePath || basePath);
|
|
7371
7580
|
},
|
|
7372
7581
|
async getTrajectory(cell, controller, trajectory, options) {
|
|
7373
7582
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getTrajectory(cell, controller, trajectory, options);
|
|
7374
7583
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7375
7584
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryCachingApi.getTrajectory"]?.[localVarOperationServerIndex]?.url;
|
|
7376
|
-
return (axios$
|
|
7585
|
+
return (axios$156, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$156, localVarOperationServerBasePath || basePath);
|
|
7377
7586
|
},
|
|
7378
7587
|
async listTrajectories(cell, controller, options) {
|
|
7379
7588
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listTrajectories(cell, controller, options);
|
|
7380
7589
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7381
7590
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryCachingApi.listTrajectories"]?.[localVarOperationServerIndex]?.url;
|
|
7382
|
-
return (axios$
|
|
7591
|
+
return (axios$157, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$157, localVarOperationServerBasePath || basePath);
|
|
7383
7592
|
}
|
|
7384
7593
|
};
|
|
7385
7594
|
};
|
|
7386
7595
|
/**
|
|
7387
7596
|
* TrajectoryCachingApi - factory interface
|
|
7388
7597
|
*/
|
|
7389
|
-
const TrajectoryCachingApiFactory = function(configuration, basePath, axios$
|
|
7598
|
+
const TrajectoryCachingApiFactory = function(configuration, basePath, axios$158) {
|
|
7390
7599
|
const localVarFp = TrajectoryCachingApiFp(configuration);
|
|
7391
7600
|
return {
|
|
7392
7601
|
addTrajectory(cell, controller, addTrajectoryRequest, options) {
|
|
7393
|
-
return localVarFp.addTrajectory(cell, controller, addTrajectoryRequest, options).then((request) => request(axios$
|
|
7602
|
+
return localVarFp.addTrajectory(cell, controller, addTrajectoryRequest, options).then((request) => request(axios$158, basePath));
|
|
7394
7603
|
},
|
|
7395
7604
|
clearTrajectories(cell, controller, options) {
|
|
7396
|
-
return localVarFp.clearTrajectories(cell, controller, options).then((request) => request(axios$
|
|
7605
|
+
return localVarFp.clearTrajectories(cell, controller, options).then((request) => request(axios$158, basePath));
|
|
7397
7606
|
},
|
|
7398
7607
|
deleteTrajectory(cell, controller, trajectory, options) {
|
|
7399
|
-
return localVarFp.deleteTrajectory(cell, controller, trajectory, options).then((request) => request(axios$
|
|
7608
|
+
return localVarFp.deleteTrajectory(cell, controller, trajectory, options).then((request) => request(axios$158, basePath));
|
|
7400
7609
|
},
|
|
7401
7610
|
getTrajectory(cell, controller, trajectory, options) {
|
|
7402
|
-
return localVarFp.getTrajectory(cell, controller, trajectory, options).then((request) => request(axios$
|
|
7611
|
+
return localVarFp.getTrajectory(cell, controller, trajectory, options).then((request) => request(axios$158, basePath));
|
|
7403
7612
|
},
|
|
7404
7613
|
listTrajectories(cell, controller, options) {
|
|
7405
|
-
return localVarFp.listTrajectories(cell, controller, options).then((request) => request(axios$
|
|
7614
|
+
return localVarFp.listTrajectories(cell, controller, options).then((request) => request(axios$158, basePath));
|
|
7406
7615
|
}
|
|
7407
7616
|
};
|
|
7408
7617
|
};
|
|
@@ -7513,16 +7722,16 @@ const TrajectoryExecutionApiFp = function(configuration) {
|
|
|
7513
7722
|
const localVarAxiosArgs = await localVarAxiosParamCreator.executeTrajectory(cell, controller, executeTrajectoryRequest, options);
|
|
7514
7723
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7515
7724
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryExecutionApi.executeTrajectory"]?.[localVarOperationServerIndex]?.url;
|
|
7516
|
-
return (axios$
|
|
7725
|
+
return (axios$159, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$159, localVarOperationServerBasePath || basePath);
|
|
7517
7726
|
} };
|
|
7518
7727
|
};
|
|
7519
7728
|
/**
|
|
7520
7729
|
* TrajectoryExecutionApi - factory interface
|
|
7521
7730
|
*/
|
|
7522
|
-
const TrajectoryExecutionApiFactory = function(configuration, basePath, axios$
|
|
7731
|
+
const TrajectoryExecutionApiFactory = function(configuration, basePath, axios$160) {
|
|
7523
7732
|
const localVarFp = TrajectoryExecutionApiFp(configuration);
|
|
7524
7733
|
return { executeTrajectory(cell, controller, executeTrajectoryRequest, options) {
|
|
7525
|
-
return localVarFp.executeTrajectory(cell, controller, executeTrajectoryRequest, options).then((request) => request(axios$
|
|
7734
|
+
return localVarFp.executeTrajectory(cell, controller, executeTrajectoryRequest, options).then((request) => request(axios$160, basePath));
|
|
7526
7735
|
} };
|
|
7527
7736
|
};
|
|
7528
7737
|
/**
|
|
@@ -7675,45 +7884,45 @@ const TrajectoryPlanningApiFp = function(configuration) {
|
|
|
7675
7884
|
const localVarAxiosArgs = await localVarAxiosParamCreator.mergeTrajectories(cell, mergeTrajectoriesRequest, options);
|
|
7676
7885
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7677
7886
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryPlanningApi.mergeTrajectories"]?.[localVarOperationServerIndex]?.url;
|
|
7678
|
-
return (axios$
|
|
7887
|
+
return (axios$161, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$161, localVarOperationServerBasePath || basePath);
|
|
7679
7888
|
},
|
|
7680
7889
|
async planCollisionFree(cell, planCollisionFreeRequest, options) {
|
|
7681
7890
|
const localVarAxiosArgs = await localVarAxiosParamCreator.planCollisionFree(cell, planCollisionFreeRequest, options);
|
|
7682
7891
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7683
7892
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryPlanningApi.planCollisionFree"]?.[localVarOperationServerIndex]?.url;
|
|
7684
|
-
return (axios$
|
|
7893
|
+
return (axios$162, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$162, localVarOperationServerBasePath || basePath);
|
|
7685
7894
|
},
|
|
7686
7895
|
async planTrajectory(cell, planTrajectoryRequest, options) {
|
|
7687
7896
|
const localVarAxiosArgs = await localVarAxiosParamCreator.planTrajectory(cell, planTrajectoryRequest, options);
|
|
7688
7897
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7689
7898
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryPlanningApi.planTrajectory"]?.[localVarOperationServerIndex]?.url;
|
|
7690
|
-
return (axios$
|
|
7899
|
+
return (axios$163, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$163, localVarOperationServerBasePath || basePath);
|
|
7691
7900
|
},
|
|
7692
7901
|
async searchCollisionFreeMultiMotionGroup(cell, multiSearchCollisionFreeRequest, options) {
|
|
7693
7902
|
const localVarAxiosArgs = await localVarAxiosParamCreator.searchCollisionFreeMultiMotionGroup(cell, multiSearchCollisionFreeRequest, options);
|
|
7694
7903
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7695
7904
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryPlanningApi.searchCollisionFreeMultiMotionGroup"]?.[localVarOperationServerIndex]?.url;
|
|
7696
|
-
return (axios$
|
|
7905
|
+
return (axios$164, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$164, localVarOperationServerBasePath || basePath);
|
|
7697
7906
|
}
|
|
7698
7907
|
};
|
|
7699
7908
|
};
|
|
7700
7909
|
/**
|
|
7701
7910
|
* TrajectoryPlanningApi - factory interface
|
|
7702
7911
|
*/
|
|
7703
|
-
const TrajectoryPlanningApiFactory = function(configuration, basePath, axios$
|
|
7912
|
+
const TrajectoryPlanningApiFactory = function(configuration, basePath, axios$165) {
|
|
7704
7913
|
const localVarFp = TrajectoryPlanningApiFp(configuration);
|
|
7705
7914
|
return {
|
|
7706
7915
|
mergeTrajectories(cell, mergeTrajectoriesRequest, options) {
|
|
7707
|
-
return localVarFp.mergeTrajectories(cell, mergeTrajectoriesRequest, options).then((request) => request(axios$
|
|
7916
|
+
return localVarFp.mergeTrajectories(cell, mergeTrajectoriesRequest, options).then((request) => request(axios$165, basePath));
|
|
7708
7917
|
},
|
|
7709
7918
|
planCollisionFree(cell, planCollisionFreeRequest, options) {
|
|
7710
|
-
return localVarFp.planCollisionFree(cell, planCollisionFreeRequest, options).then((request) => request(axios$
|
|
7919
|
+
return localVarFp.planCollisionFree(cell, planCollisionFreeRequest, options).then((request) => request(axios$165, basePath));
|
|
7711
7920
|
},
|
|
7712
7921
|
planTrajectory(cell, planTrajectoryRequest, options) {
|
|
7713
|
-
return localVarFp.planTrajectory(cell, planTrajectoryRequest, options).then((request) => request(axios$
|
|
7922
|
+
return localVarFp.planTrajectory(cell, planTrajectoryRequest, options).then((request) => request(axios$165, basePath));
|
|
7714
7923
|
},
|
|
7715
7924
|
searchCollisionFreeMultiMotionGroup(cell, multiSearchCollisionFreeRequest, options) {
|
|
7716
|
-
return localVarFp.searchCollisionFreeMultiMotionGroup(cell, multiSearchCollisionFreeRequest, options).then((request) => request(axios$
|
|
7925
|
+
return localVarFp.searchCollisionFreeMultiMotionGroup(cell, multiSearchCollisionFreeRequest, options).then((request) => request(axios$165, basePath));
|
|
7717
7926
|
}
|
|
7718
7927
|
};
|
|
7719
7928
|
};
|
|
@@ -7804,16 +8013,16 @@ const VersionApiFp = function(configuration) {
|
|
|
7804
8013
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getApiVersion(options);
|
|
7805
8014
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7806
8015
|
const localVarOperationServerBasePath = operationServerMap["VersionApi.getApiVersion"]?.[localVarOperationServerIndex]?.url;
|
|
7807
|
-
return (axios$
|
|
8016
|
+
return (axios$166, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$166, localVarOperationServerBasePath || basePath);
|
|
7808
8017
|
} };
|
|
7809
8018
|
};
|
|
7810
8019
|
/**
|
|
7811
8020
|
* VersionApi - factory interface
|
|
7812
8021
|
*/
|
|
7813
|
-
const VersionApiFactory = function(configuration, basePath, axios$
|
|
8022
|
+
const VersionApiFactory = function(configuration, basePath, axios$167) {
|
|
7814
8023
|
const localVarFp = VersionApiFp(configuration);
|
|
7815
8024
|
return { getApiVersion(options) {
|
|
7816
|
-
return localVarFp.getApiVersion(options).then((request) => request(axios$
|
|
8025
|
+
return localVarFp.getApiVersion(options).then((request) => request(axios$167, basePath));
|
|
7817
8026
|
} };
|
|
7818
8027
|
};
|
|
7819
8028
|
/**
|
|
@@ -8422,189 +8631,189 @@ const VirtualControllerApiFp = function(configuration) {
|
|
|
8422
8631
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options);
|
|
8423
8632
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8424
8633
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.addVirtualControllerCoordinateSystem"]?.[localVarOperationServerIndex]?.url;
|
|
8425
|
-
return (axios$
|
|
8634
|
+
return (axios$168, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$168, localVarOperationServerBasePath || basePath);
|
|
8426
8635
|
},
|
|
8427
8636
|
async addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options) {
|
|
8428
8637
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options);
|
|
8429
8638
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8430
8639
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.addVirtualControllerMotionGroup"]?.[localVarOperationServerIndex]?.url;
|
|
8431
|
-
return (axios$
|
|
8640
|
+
return (axios$169, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$169, localVarOperationServerBasePath || basePath);
|
|
8432
8641
|
},
|
|
8433
8642
|
async addVirtualControllerSafetyZone(cell, controller, safetyZone, options) {
|
|
8434
8643
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualControllerSafetyZone(cell, controller, safetyZone, options);
|
|
8435
8644
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8436
8645
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.addVirtualControllerSafetyZone"]?.[localVarOperationServerIndex]?.url;
|
|
8437
|
-
return (axios$
|
|
8646
|
+
return (axios$170, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$170, localVarOperationServerBasePath || basePath);
|
|
8438
8647
|
},
|
|
8439
8648
|
async addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options) {
|
|
8440
8649
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options);
|
|
8441
8650
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8442
8651
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.addVirtualControllerTcp"]?.[localVarOperationServerIndex]?.url;
|
|
8443
|
-
return (axios$
|
|
8652
|
+
return (axios$171, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$171, localVarOperationServerBasePath || basePath);
|
|
8444
8653
|
},
|
|
8445
8654
|
async deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options) {
|
|
8446
8655
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options);
|
|
8447
8656
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8448
8657
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.deleteVirtualControllerCoordinateSystem"]?.[localVarOperationServerIndex]?.url;
|
|
8449
|
-
return (axios$
|
|
8658
|
+
return (axios$172, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$172, localVarOperationServerBasePath || basePath);
|
|
8450
8659
|
},
|
|
8451
8660
|
async deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options) {
|
|
8452
8661
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options);
|
|
8453
8662
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8454
8663
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.deleteVirtualControllerMotionGroup"]?.[localVarOperationServerIndex]?.url;
|
|
8455
|
-
return (axios$
|
|
8664
|
+
return (axios$173, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$173, localVarOperationServerBasePath || basePath);
|
|
8456
8665
|
},
|
|
8457
8666
|
async deleteVirtualControllerSafetyZone(cell, controller, id, options) {
|
|
8458
8667
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualControllerSafetyZone(cell, controller, id, options);
|
|
8459
8668
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8460
8669
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.deleteVirtualControllerSafetyZone"]?.[localVarOperationServerIndex]?.url;
|
|
8461
|
-
return (axios$
|
|
8670
|
+
return (axios$174, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$174, localVarOperationServerBasePath || basePath);
|
|
8462
8671
|
},
|
|
8463
8672
|
async deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options) {
|
|
8464
8673
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options);
|
|
8465
8674
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8466
8675
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.deleteVirtualControllerTcp"]?.[localVarOperationServerIndex]?.url;
|
|
8467
|
-
return (axios$
|
|
8676
|
+
return (axios$175, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$175, localVarOperationServerBasePath || basePath);
|
|
8468
8677
|
},
|
|
8469
8678
|
async getEmergencyStop(cell, controller, options) {
|
|
8470
8679
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getEmergencyStop(cell, controller, options);
|
|
8471
8680
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8472
8681
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getEmergencyStop"]?.[localVarOperationServerIndex]?.url;
|
|
8473
|
-
return (axios$
|
|
8682
|
+
return (axios$176, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$176, localVarOperationServerBasePath || basePath);
|
|
8474
8683
|
},
|
|
8475
8684
|
async getMotionGroupState(cell, controller, motionGroup, options) {
|
|
8476
8685
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupState(cell, controller, motionGroup, options);
|
|
8477
8686
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8478
8687
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getMotionGroupState"]?.[localVarOperationServerIndex]?.url;
|
|
8479
|
-
return (axios$
|
|
8688
|
+
return (axios$177, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$177, localVarOperationServerBasePath || basePath);
|
|
8480
8689
|
},
|
|
8481
8690
|
async getMotionGroups(cell, controller, options) {
|
|
8482
8691
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroups(cell, controller, options);
|
|
8483
8692
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8484
8693
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getMotionGroups"]?.[localVarOperationServerIndex]?.url;
|
|
8485
|
-
return (axios$
|
|
8694
|
+
return (axios$178, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$178, localVarOperationServerBasePath || basePath);
|
|
8486
8695
|
},
|
|
8487
8696
|
async getOperationMode(cell, controller, options) {
|
|
8488
8697
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getOperationMode(cell, controller, options);
|
|
8489
8698
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8490
8699
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getOperationMode"]?.[localVarOperationServerIndex]?.url;
|
|
8491
|
-
return (axios$
|
|
8700
|
+
return (axios$179, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$179, localVarOperationServerBasePath || basePath);
|
|
8492
8701
|
},
|
|
8493
8702
|
async getVirtualControllerMounting(cell, controller, motionGroup, options) {
|
|
8494
8703
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getVirtualControllerMounting(cell, controller, motionGroup, options);
|
|
8495
8704
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8496
8705
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getVirtualControllerMounting"]?.[localVarOperationServerIndex]?.url;
|
|
8497
|
-
return (axios$
|
|
8706
|
+
return (axios$180, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$180, localVarOperationServerBasePath || basePath);
|
|
8498
8707
|
},
|
|
8499
8708
|
async getVirtualControllerSafetyZones(cell, controller, options) {
|
|
8500
8709
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getVirtualControllerSafetyZones(cell, controller, options);
|
|
8501
8710
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8502
8711
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getVirtualControllerSafetyZones"]?.[localVarOperationServerIndex]?.url;
|
|
8503
|
-
return (axios$
|
|
8712
|
+
return (axios$181, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$181, localVarOperationServerBasePath || basePath);
|
|
8504
8713
|
},
|
|
8505
8714
|
async listVirtualControllerCoordinateSystems(cell, controller, options) {
|
|
8506
8715
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listVirtualControllerCoordinateSystems(cell, controller, options);
|
|
8507
8716
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8508
8717
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.listVirtualControllerCoordinateSystems"]?.[localVarOperationServerIndex]?.url;
|
|
8509
|
-
return (axios$
|
|
8718
|
+
return (axios$182, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$182, localVarOperationServerBasePath || basePath);
|
|
8510
8719
|
},
|
|
8511
8720
|
async listVirtualControllerTcps(cell, controller, motionGroup, options) {
|
|
8512
8721
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listVirtualControllerTcps(cell, controller, motionGroup, options);
|
|
8513
8722
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8514
8723
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.listVirtualControllerTcps"]?.[localVarOperationServerIndex]?.url;
|
|
8515
|
-
return (axios$
|
|
8724
|
+
return (axios$183, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$183, localVarOperationServerBasePath || basePath);
|
|
8516
8725
|
},
|
|
8517
8726
|
async setEmergencyStop(cell, controller, active, options) {
|
|
8518
8727
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setEmergencyStop(cell, controller, active, options);
|
|
8519
8728
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8520
8729
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.setEmergencyStop"]?.[localVarOperationServerIndex]?.url;
|
|
8521
|
-
return (axios$
|
|
8730
|
+
return (axios$184, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$184, localVarOperationServerBasePath || basePath);
|
|
8522
8731
|
},
|
|
8523
8732
|
async setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options) {
|
|
8524
8733
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options);
|
|
8525
8734
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8526
8735
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.setMotionGroupState"]?.[localVarOperationServerIndex]?.url;
|
|
8527
|
-
return (axios$
|
|
8736
|
+
return (axios$185, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$185, localVarOperationServerBasePath || basePath);
|
|
8528
8737
|
},
|
|
8529
8738
|
async setOperationMode(cell, controller, mode, options) {
|
|
8530
8739
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setOperationMode(cell, controller, mode, options);
|
|
8531
8740
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8532
8741
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.setOperationMode"]?.[localVarOperationServerIndex]?.url;
|
|
8533
|
-
return (axios$
|
|
8742
|
+
return (axios$186, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$186, localVarOperationServerBasePath || basePath);
|
|
8534
8743
|
},
|
|
8535
8744
|
async setVirtualControllerMounting(cell, controller, motionGroup, coordinateSystem, options) {
|
|
8536
8745
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setVirtualControllerMounting(cell, controller, motionGroup, coordinateSystem, options);
|
|
8537
8746
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8538
8747
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.setVirtualControllerMounting"]?.[localVarOperationServerIndex]?.url;
|
|
8539
|
-
return (axios$
|
|
8748
|
+
return (axios$187, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$187, localVarOperationServerBasePath || basePath);
|
|
8540
8749
|
}
|
|
8541
8750
|
};
|
|
8542
8751
|
};
|
|
8543
8752
|
/**
|
|
8544
8753
|
* VirtualControllerApi - factory interface
|
|
8545
8754
|
*/
|
|
8546
|
-
const VirtualControllerApiFactory = function(configuration, basePath, axios$
|
|
8755
|
+
const VirtualControllerApiFactory = function(configuration, basePath, axios$188) {
|
|
8547
8756
|
const localVarFp = VirtualControllerApiFp(configuration);
|
|
8548
8757
|
return {
|
|
8549
8758
|
addVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options) {
|
|
8550
|
-
return localVarFp.addVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options).then((request) => request(axios$
|
|
8759
|
+
return localVarFp.addVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options).then((request) => request(axios$188, basePath));
|
|
8551
8760
|
},
|
|
8552
8761
|
addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options) {
|
|
8553
|
-
return localVarFp.addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options).then((request) => request(axios$
|
|
8762
|
+
return localVarFp.addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options).then((request) => request(axios$188, basePath));
|
|
8554
8763
|
},
|
|
8555
8764
|
addVirtualControllerSafetyZone(cell, controller, safetyZone, options) {
|
|
8556
|
-
return localVarFp.addVirtualControllerSafetyZone(cell, controller, safetyZone, options).then((request) => request(axios$
|
|
8765
|
+
return localVarFp.addVirtualControllerSafetyZone(cell, controller, safetyZone, options).then((request) => request(axios$188, basePath));
|
|
8557
8766
|
},
|
|
8558
8767
|
addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options) {
|
|
8559
|
-
return localVarFp.addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options).then((request) => request(axios$
|
|
8768
|
+
return localVarFp.addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options).then((request) => request(axios$188, basePath));
|
|
8560
8769
|
},
|
|
8561
8770
|
deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options) {
|
|
8562
|
-
return localVarFp.deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options).then((request) => request(axios$
|
|
8771
|
+
return localVarFp.deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options).then((request) => request(axios$188, basePath));
|
|
8563
8772
|
},
|
|
8564
8773
|
deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options) {
|
|
8565
|
-
return localVarFp.deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options).then((request) => request(axios$
|
|
8774
|
+
return localVarFp.deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options).then((request) => request(axios$188, basePath));
|
|
8566
8775
|
},
|
|
8567
8776
|
deleteVirtualControllerSafetyZone(cell, controller, id, options) {
|
|
8568
|
-
return localVarFp.deleteVirtualControllerSafetyZone(cell, controller, id, options).then((request) => request(axios$
|
|
8777
|
+
return localVarFp.deleteVirtualControllerSafetyZone(cell, controller, id, options).then((request) => request(axios$188, basePath));
|
|
8569
8778
|
},
|
|
8570
8779
|
deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options) {
|
|
8571
|
-
return localVarFp.deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options).then((request) => request(axios$
|
|
8780
|
+
return localVarFp.deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options).then((request) => request(axios$188, basePath));
|
|
8572
8781
|
},
|
|
8573
8782
|
getEmergencyStop(cell, controller, options) {
|
|
8574
|
-
return localVarFp.getEmergencyStop(cell, controller, options).then((request) => request(axios$
|
|
8783
|
+
return localVarFp.getEmergencyStop(cell, controller, options).then((request) => request(axios$188, basePath));
|
|
8575
8784
|
},
|
|
8576
8785
|
getMotionGroupState(cell, controller, motionGroup, options) {
|
|
8577
|
-
return localVarFp.getMotionGroupState(cell, controller, motionGroup, options).then((request) => request(axios$
|
|
8786
|
+
return localVarFp.getMotionGroupState(cell, controller, motionGroup, options).then((request) => request(axios$188, basePath));
|
|
8578
8787
|
},
|
|
8579
8788
|
getMotionGroups(cell, controller, options) {
|
|
8580
|
-
return localVarFp.getMotionGroups(cell, controller, options).then((request) => request(axios$
|
|
8789
|
+
return localVarFp.getMotionGroups(cell, controller, options).then((request) => request(axios$188, basePath));
|
|
8581
8790
|
},
|
|
8582
8791
|
getOperationMode(cell, controller, options) {
|
|
8583
|
-
return localVarFp.getOperationMode(cell, controller, options).then((request) => request(axios$
|
|
8792
|
+
return localVarFp.getOperationMode(cell, controller, options).then((request) => request(axios$188, basePath));
|
|
8584
8793
|
},
|
|
8585
8794
|
getVirtualControllerMounting(cell, controller, motionGroup, options) {
|
|
8586
|
-
return localVarFp.getVirtualControllerMounting(cell, controller, motionGroup, options).then((request) => request(axios$
|
|
8795
|
+
return localVarFp.getVirtualControllerMounting(cell, controller, motionGroup, options).then((request) => request(axios$188, basePath));
|
|
8587
8796
|
},
|
|
8588
8797
|
getVirtualControllerSafetyZones(cell, controller, options) {
|
|
8589
|
-
return localVarFp.getVirtualControllerSafetyZones(cell, controller, options).then((request) => request(axios$
|
|
8798
|
+
return localVarFp.getVirtualControllerSafetyZones(cell, controller, options).then((request) => request(axios$188, basePath));
|
|
8590
8799
|
},
|
|
8591
8800
|
listVirtualControllerCoordinateSystems(cell, controller, options) {
|
|
8592
|
-
return localVarFp.listVirtualControllerCoordinateSystems(cell, controller, options).then((request) => request(axios$
|
|
8801
|
+
return localVarFp.listVirtualControllerCoordinateSystems(cell, controller, options).then((request) => request(axios$188, basePath));
|
|
8593
8802
|
},
|
|
8594
8803
|
listVirtualControllerTcps(cell, controller, motionGroup, options) {
|
|
8595
|
-
return localVarFp.listVirtualControllerTcps(cell, controller, motionGroup, options).then((request) => request(axios$
|
|
8804
|
+
return localVarFp.listVirtualControllerTcps(cell, controller, motionGroup, options).then((request) => request(axios$188, basePath));
|
|
8596
8805
|
},
|
|
8597
8806
|
setEmergencyStop(cell, controller, active, options) {
|
|
8598
|
-
return localVarFp.setEmergencyStop(cell, controller, active, options).then((request) => request(axios$
|
|
8807
|
+
return localVarFp.setEmergencyStop(cell, controller, active, options).then((request) => request(axios$188, basePath));
|
|
8599
8808
|
},
|
|
8600
8809
|
setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options) {
|
|
8601
|
-
return localVarFp.setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options).then((request) => request(axios$
|
|
8810
|
+
return localVarFp.setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options).then((request) => request(axios$188, basePath));
|
|
8602
8811
|
},
|
|
8603
8812
|
setOperationMode(cell, controller, mode, options) {
|
|
8604
|
-
return localVarFp.setOperationMode(cell, controller, mode, options).then((request) => request(axios$
|
|
8813
|
+
return localVarFp.setOperationMode(cell, controller, mode, options).then((request) => request(axios$188, basePath));
|
|
8605
8814
|
},
|
|
8606
8815
|
setVirtualControllerMounting(cell, controller, motionGroup, coordinateSystem, options) {
|
|
8607
|
-
return localVarFp.setVirtualControllerMounting(cell, controller, motionGroup, coordinateSystem, options).then((request) => request(axios$
|
|
8816
|
+
return localVarFp.setVirtualControllerMounting(cell, controller, motionGroup, coordinateSystem, options).then((request) => request(axios$188, basePath));
|
|
8608
8817
|
}
|
|
8609
8818
|
};
|
|
8610
8819
|
};
|
|
@@ -8984,45 +9193,45 @@ const VirtualControllerBehaviorApiFp = function(configuration) {
|
|
|
8984
9193
|
const localVarAxiosArgs = await localVarAxiosParamCreator.externalJointsStream(cell, controller, externalJointStreamRequest, options);
|
|
8985
9194
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8986
9195
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerBehaviorApi.externalJointsStream"]?.[localVarOperationServerIndex]?.url;
|
|
8987
|
-
return (axios$
|
|
9196
|
+
return (axios$189, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$189, localVarOperationServerBasePath || basePath);
|
|
8988
9197
|
},
|
|
8989
9198
|
async getCycleTime(cell, controller, options) {
|
|
8990
9199
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getCycleTime(cell, controller, options);
|
|
8991
9200
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8992
9201
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerBehaviorApi.getCycleTime"]?.[localVarOperationServerIndex]?.url;
|
|
8993
|
-
return (axios$
|
|
9202
|
+
return (axios$190, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$190, localVarOperationServerBasePath || basePath);
|
|
8994
9203
|
},
|
|
8995
9204
|
async getVirtualControllerBehavior(cell, controller, options) {
|
|
8996
9205
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getVirtualControllerBehavior(cell, controller, options);
|
|
8997
9206
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8998
9207
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerBehaviorApi.getVirtualControllerBehavior"]?.[localVarOperationServerIndex]?.url;
|
|
8999
|
-
return (axios$
|
|
9208
|
+
return (axios$191, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$191, localVarOperationServerBasePath || basePath);
|
|
9000
9209
|
},
|
|
9001
9210
|
async setVirtualControllerBehavior(cell, controller, behavior, options) {
|
|
9002
9211
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setVirtualControllerBehavior(cell, controller, behavior, options);
|
|
9003
9212
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9004
9213
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerBehaviorApi.setVirtualControllerBehavior"]?.[localVarOperationServerIndex]?.url;
|
|
9005
|
-
return (axios$
|
|
9214
|
+
return (axios$192, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$192, localVarOperationServerBasePath || basePath);
|
|
9006
9215
|
}
|
|
9007
9216
|
};
|
|
9008
9217
|
};
|
|
9009
9218
|
/**
|
|
9010
9219
|
* VirtualControllerBehaviorApi - factory interface
|
|
9011
9220
|
*/
|
|
9012
|
-
const VirtualControllerBehaviorApiFactory = function(configuration, basePath, axios$
|
|
9221
|
+
const VirtualControllerBehaviorApiFactory = function(configuration, basePath, axios$193) {
|
|
9013
9222
|
const localVarFp = VirtualControllerBehaviorApiFp(configuration);
|
|
9014
9223
|
return {
|
|
9015
9224
|
externalJointsStream(cell, controller, externalJointStreamRequest, options) {
|
|
9016
|
-
return localVarFp.externalJointsStream(cell, controller, externalJointStreamRequest, options).then((request) => request(axios$
|
|
9225
|
+
return localVarFp.externalJointsStream(cell, controller, externalJointStreamRequest, options).then((request) => request(axios$193, basePath));
|
|
9017
9226
|
},
|
|
9018
9227
|
getCycleTime(cell, controller, options) {
|
|
9019
|
-
return localVarFp.getCycleTime(cell, controller, options).then((request) => request(axios$
|
|
9228
|
+
return localVarFp.getCycleTime(cell, controller, options).then((request) => request(axios$193, basePath));
|
|
9020
9229
|
},
|
|
9021
9230
|
getVirtualControllerBehavior(cell, controller, options) {
|
|
9022
|
-
return localVarFp.getVirtualControllerBehavior(cell, controller, options).then((request) => request(axios$
|
|
9231
|
+
return localVarFp.getVirtualControllerBehavior(cell, controller, options).then((request) => request(axios$193, basePath));
|
|
9023
9232
|
},
|
|
9024
9233
|
setVirtualControllerBehavior(cell, controller, behavior, options) {
|
|
9025
|
-
return localVarFp.setVirtualControllerBehavior(cell, controller, behavior, options).then((request) => request(axios$
|
|
9234
|
+
return localVarFp.setVirtualControllerBehavior(cell, controller, behavior, options).then((request) => request(axios$193, basePath));
|
|
9026
9235
|
}
|
|
9027
9236
|
};
|
|
9028
9237
|
};
|
|
@@ -9184,36 +9393,36 @@ const VirtualControllerInputsOutputsApiFp = function(configuration) {
|
|
|
9184
9393
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listIOs(cell, controller, ios, options);
|
|
9185
9394
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9186
9395
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerInputsOutputsApi.listIOs"]?.[localVarOperationServerIndex]?.url;
|
|
9187
|
-
return (axios$
|
|
9396
|
+
return (axios$194, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$194, localVarOperationServerBasePath || basePath);
|
|
9188
9397
|
},
|
|
9189
9398
|
async listVirtualControllerIODescriptions(cell, controller, ios, direction, valueType, group, options) {
|
|
9190
9399
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listVirtualControllerIODescriptions(cell, controller, ios, direction, valueType, group, options);
|
|
9191
9400
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9192
9401
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerInputsOutputsApi.listVirtualControllerIODescriptions"]?.[localVarOperationServerIndex]?.url;
|
|
9193
|
-
return (axios$
|
|
9402
|
+
return (axios$195, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$195, localVarOperationServerBasePath || basePath);
|
|
9194
9403
|
},
|
|
9195
9404
|
async setIOValues(cell, controller, iOValue, options) {
|
|
9196
9405
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setIOValues(cell, controller, iOValue, options);
|
|
9197
9406
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9198
9407
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerInputsOutputsApi.setIOValues"]?.[localVarOperationServerIndex]?.url;
|
|
9199
|
-
return (axios$
|
|
9408
|
+
return (axios$196, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$196, localVarOperationServerBasePath || basePath);
|
|
9200
9409
|
}
|
|
9201
9410
|
};
|
|
9202
9411
|
};
|
|
9203
9412
|
/**
|
|
9204
9413
|
* VirtualControllerInputsOutputsApi - factory interface
|
|
9205
9414
|
*/
|
|
9206
|
-
const VirtualControllerInputsOutputsApiFactory = function(configuration, basePath, axios$
|
|
9415
|
+
const VirtualControllerInputsOutputsApiFactory = function(configuration, basePath, axios$197) {
|
|
9207
9416
|
const localVarFp = VirtualControllerInputsOutputsApiFp(configuration);
|
|
9208
9417
|
return {
|
|
9209
9418
|
listIOs(cell, controller, ios, options) {
|
|
9210
|
-
return localVarFp.listIOs(cell, controller, ios, options).then((request) => request(axios$
|
|
9419
|
+
return localVarFp.listIOs(cell, controller, ios, options).then((request) => request(axios$197, basePath));
|
|
9211
9420
|
},
|
|
9212
9421
|
listVirtualControllerIODescriptions(cell, controller, ios, direction, valueType, group, options) {
|
|
9213
|
-
return localVarFp.listVirtualControllerIODescriptions(cell, controller, ios, direction, valueType, group, options).then((request) => request(axios$
|
|
9422
|
+
return localVarFp.listVirtualControllerIODescriptions(cell, controller, ios, direction, valueType, group, options).then((request) => request(axios$197, basePath));
|
|
9214
9423
|
},
|
|
9215
9424
|
setIOValues(cell, controller, iOValue, options) {
|
|
9216
|
-
return localVarFp.setIOValues(cell, controller, iOValue, options).then((request) => request(axios$
|
|
9425
|
+
return localVarFp.setIOValues(cell, controller, iOValue, options).then((request) => request(axios$197, basePath));
|
|
9217
9426
|
}
|
|
9218
9427
|
};
|
|
9219
9428
|
};
|
|
@@ -9265,7 +9474,7 @@ var VirtualControllerInputsOutputsApi = class extends BaseAPI {
|
|
|
9265
9474
|
//#region v2/configuration.ts
|
|
9266
9475
|
var Configuration = class {
|
|
9267
9476
|
constructor(param = {}) {
|
|
9268
|
-
|
|
9477
|
+
_defineProperty(
|
|
9269
9478
|
this,
|
|
9270
9479
|
/**
|
|
9271
9480
|
* parameter for apiKey security
|
|
@@ -9274,7 +9483,7 @@ var Configuration = class {
|
|
|
9274
9483
|
"apiKey",
|
|
9275
9484
|
void 0
|
|
9276
9485
|
);
|
|
9277
|
-
|
|
9486
|
+
_defineProperty(
|
|
9278
9487
|
this,
|
|
9279
9488
|
/**
|
|
9280
9489
|
* parameter for basic security
|
|
@@ -9282,7 +9491,7 @@ var Configuration = class {
|
|
|
9282
9491
|
"username",
|
|
9283
9492
|
void 0
|
|
9284
9493
|
);
|
|
9285
|
-
|
|
9494
|
+
_defineProperty(
|
|
9286
9495
|
this,
|
|
9287
9496
|
/**
|
|
9288
9497
|
* parameter for basic security
|
|
@@ -9290,7 +9499,7 @@ var Configuration = class {
|
|
|
9290
9499
|
"password",
|
|
9291
9500
|
void 0
|
|
9292
9501
|
);
|
|
9293
|
-
|
|
9502
|
+
_defineProperty(
|
|
9294
9503
|
this,
|
|
9295
9504
|
/**
|
|
9296
9505
|
* parameter for oauth2 security
|
|
@@ -9300,7 +9509,7 @@ var Configuration = class {
|
|
|
9300
9509
|
"accessToken",
|
|
9301
9510
|
void 0
|
|
9302
9511
|
);
|
|
9303
|
-
|
|
9512
|
+
_defineProperty(
|
|
9304
9513
|
this,
|
|
9305
9514
|
/**
|
|
9306
9515
|
* parameter for aws4 signature security
|
|
@@ -9315,7 +9524,7 @@ var Configuration = class {
|
|
|
9315
9524
|
"awsv4",
|
|
9316
9525
|
void 0
|
|
9317
9526
|
);
|
|
9318
|
-
|
|
9527
|
+
_defineProperty(
|
|
9319
9528
|
this,
|
|
9320
9529
|
/**
|
|
9321
9530
|
* override base path
|
|
@@ -9323,7 +9532,7 @@ var Configuration = class {
|
|
|
9323
9532
|
"basePath",
|
|
9324
9533
|
void 0
|
|
9325
9534
|
);
|
|
9326
|
-
|
|
9535
|
+
_defineProperty(
|
|
9327
9536
|
this,
|
|
9328
9537
|
/**
|
|
9329
9538
|
* override server index
|
|
@@ -9331,7 +9540,7 @@ var Configuration = class {
|
|
|
9331
9540
|
"serverIndex",
|
|
9332
9541
|
void 0
|
|
9333
9542
|
);
|
|
9334
|
-
|
|
9543
|
+
_defineProperty(
|
|
9335
9544
|
this,
|
|
9336
9545
|
/**
|
|
9337
9546
|
* base options for axios calls
|
|
@@ -9339,7 +9548,7 @@ var Configuration = class {
|
|
|
9339
9548
|
"baseOptions",
|
|
9340
9549
|
void 0
|
|
9341
9550
|
);
|
|
9342
|
-
|
|
9551
|
+
_defineProperty(
|
|
9343
9552
|
this,
|
|
9344
9553
|
/**
|
|
9345
9554
|
* The FormData constructor that will be used to create multipart form data
|
|
@@ -9395,6 +9604,8 @@ exports.BlendingAutoBlendingNameEnum = BlendingAutoBlendingNameEnum;
|
|
|
9395
9604
|
exports.BlendingPositionBlendingNameEnum = BlendingPositionBlendingNameEnum;
|
|
9396
9605
|
exports.BlendingSpace = BlendingSpace;
|
|
9397
9606
|
exports.BooleanValueValueTypeEnum = BooleanValueValueTypeEnum;
|
|
9607
|
+
exports.BostondynamicsControllerKindEnum = BostondynamicsControllerKindEnum;
|
|
9608
|
+
exports.BostondynamicsControllerRobotTypeEnum = BostondynamicsControllerRobotTypeEnum;
|
|
9398
9609
|
exports.BoxBoxTypeEnum = BoxBoxTypeEnum;
|
|
9399
9610
|
exports.BoxShapeTypeEnum = BoxShapeTypeEnum;
|
|
9400
9611
|
exports.BusIOModbusClientBusTypeEnum = BusIOModbusClientBusTypeEnum;
|
|
@@ -9577,6 +9788,7 @@ exports.SessionApiAxiosParamCreator = SessionApiAxiosParamCreator;
|
|
|
9577
9788
|
exports.SessionApiFactory = SessionApiFactory;
|
|
9578
9789
|
exports.SessionApiFp = SessionApiFp;
|
|
9579
9790
|
exports.SettableRobotSystemMode = SettableRobotSystemMode;
|
|
9791
|
+
exports.SingularityHandling = SingularityHandling;
|
|
9580
9792
|
exports.SingularityTypeEnum = SingularityTypeEnum;
|
|
9581
9793
|
exports.Snap7IOArea = Snap7IOArea;
|
|
9582
9794
|
exports.Snap7IODirection = Snap7IODirection;
|
|
@@ -9627,6 +9839,8 @@ exports.TrajectoryPlanningApiFp = TrajectoryPlanningApiFp;
|
|
|
9627
9839
|
exports.TrajectoryRunningKindEnum = TrajectoryRunningKindEnum;
|
|
9628
9840
|
exports.TrajectoryWaitForIOKindEnum = TrajectoryWaitForIOKindEnum;
|
|
9629
9841
|
exports.UnitType = UnitType;
|
|
9842
|
+
exports.UnitreeControllerKindEnum = UnitreeControllerKindEnum;
|
|
9843
|
+
exports.UnitreeControllerRobotTypeEnum = UnitreeControllerRobotTypeEnum;
|
|
9630
9844
|
exports.UniversalrobotsControllerKindEnum = UniversalrobotsControllerKindEnum;
|
|
9631
9845
|
exports.VersionApi = VersionApi;
|
|
9632
9846
|
exports.VersionApiAxiosParamCreator = VersionApiAxiosParamCreator;
|