@wandelbots/nova-api 26.4.0-dev.4 → 26.4.0-dev.41
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/{defineProperty-CQ_RnIQg.js → defineProperty-6Ts4XR6h.js} +9 -13
- package/dist/defineProperty-D0JvJyYC.cjs +72 -0
- package/dist/v1/index.cjs +405 -411
- package/dist/v1/index.d.cts +193 -194
- package/dist/v1/index.d.ts +193 -194
- package/dist/v1/index.js +10 -15
- package/dist/v2/index.cjs +468 -357
- package/dist/v2/index.d.cts +377 -174
- package/dist/v2/index.d.ts +377 -174
- package/dist/v2/index.js +119 -11
- package/package.json +4 -4
- package/dist/defineProperty-CWzmgFYR.cjs +0 -97
package/dist/v2/index.cjs
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
|
|
1
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
2
|
+
const require_defineProperty = require("../defineProperty-D0JvJyYC.cjs");
|
|
2
3
|
let axios = require("axios");
|
|
3
|
-
axios = require_defineProperty
|
|
4
|
-
|
|
4
|
+
axios = require_defineProperty.__toESM(axios, 1);
|
|
5
5
|
//#region v2/base.ts
|
|
6
|
-
var import_defineProperty$1 = /* @__PURE__ */ require_defineProperty$1.__toESM(require_defineProperty$1.require_defineProperty(), 1);
|
|
7
6
|
const BASE_PATH = "/api/v2".replace(/\/+$/, "");
|
|
8
7
|
const COLLECTION_FORMATS = {
|
|
9
8
|
csv: ",",
|
|
@@ -12,10 +11,10 @@ const COLLECTION_FORMATS = {
|
|
|
12
11
|
pipes: "|"
|
|
13
12
|
};
|
|
14
13
|
var BaseAPI = class {
|
|
15
|
-
constructor(configuration, basePath = BASE_PATH, axios$
|
|
14
|
+
constructor(configuration, basePath = BASE_PATH, axios$181 = axios.default) {
|
|
16
15
|
this.basePath = basePath;
|
|
17
|
-
this.axios = axios$
|
|
18
|
-
|
|
16
|
+
this.axios = axios$181;
|
|
17
|
+
require_defineProperty._defineProperty(this, "configuration", void 0);
|
|
19
18
|
if (configuration) {
|
|
20
19
|
this.configuration = configuration;
|
|
21
20
|
this.basePath = configuration.basePath ?? basePath;
|
|
@@ -30,7 +29,6 @@ var RequiredError = class extends Error {
|
|
|
30
29
|
}
|
|
31
30
|
};
|
|
32
31
|
const operationServerMap = {};
|
|
33
|
-
|
|
34
32
|
//#endregion
|
|
35
33
|
//#region v2/common.ts
|
|
36
34
|
const DUMMY_BASE_URL = "https://example.com";
|
|
@@ -63,16 +61,15 @@ const serializeDataIfNeeded = function(value, requestOptions, configuration) {
|
|
|
63
61
|
const toPathString = function(url) {
|
|
64
62
|
return url.pathname + url.search + url.hash;
|
|
65
63
|
};
|
|
66
|
-
const createRequestFunction = function(axiosArgs, globalAxios
|
|
67
|
-
return (axios
|
|
64
|
+
const createRequestFunction = function(axiosArgs, globalAxios, BASE_PATH, configuration) {
|
|
65
|
+
return (axios = globalAxios, basePath = BASE_PATH) => {
|
|
68
66
|
const axiosRequestArgs = {
|
|
69
67
|
...axiosArgs.options,
|
|
70
|
-
url: (axios
|
|
68
|
+
url: (axios.defaults.baseURL ? "" : configuration?.basePath ?? basePath) + axiosArgs.url
|
|
71
69
|
};
|
|
72
|
-
return axios
|
|
70
|
+
return axios.request(axiosRequestArgs);
|
|
73
71
|
};
|
|
74
72
|
};
|
|
75
|
-
|
|
76
73
|
//#endregion
|
|
77
74
|
//#region v2/api.ts
|
|
78
75
|
const AbbControllerKindEnum = { AbbController: "AbbController" };
|
|
@@ -684,57 +681,57 @@ const ApplicationApiFp = function(configuration) {
|
|
|
684
681
|
const localVarAxiosArgs = await localVarAxiosParamCreator.clearApps(cell, completionTimeout, options);
|
|
685
682
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
686
683
|
const localVarOperationServerBasePath = operationServerMap["ApplicationApi.clearApps"]?.[localVarOperationServerIndex]?.url;
|
|
687
|
-
return (axios$
|
|
684
|
+
return (axios$2, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$2, localVarOperationServerBasePath || basePath);
|
|
688
685
|
},
|
|
689
686
|
async deleteApp(cell, app, completionTimeout, options) {
|
|
690
687
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteApp(cell, app, completionTimeout, options);
|
|
691
688
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
692
689
|
const localVarOperationServerBasePath = operationServerMap["ApplicationApi.deleteApp"]?.[localVarOperationServerIndex]?.url;
|
|
693
|
-
return (axios$
|
|
690
|
+
return (axios$3, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$3, localVarOperationServerBasePath || basePath);
|
|
694
691
|
},
|
|
695
692
|
async getApp(cell, app, options) {
|
|
696
693
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getApp(cell, app, options);
|
|
697
694
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
698
695
|
const localVarOperationServerBasePath = operationServerMap["ApplicationApi.getApp"]?.[localVarOperationServerIndex]?.url;
|
|
699
|
-
return (axios$
|
|
696
|
+
return (axios$4, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$4, localVarOperationServerBasePath || basePath);
|
|
700
697
|
},
|
|
701
698
|
async listApps(cell, options) {
|
|
702
699
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listApps(cell, options);
|
|
703
700
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
704
701
|
const localVarOperationServerBasePath = operationServerMap["ApplicationApi.listApps"]?.[localVarOperationServerIndex]?.url;
|
|
705
|
-
return (axios$
|
|
702
|
+
return (axios$5, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$5, localVarOperationServerBasePath || basePath);
|
|
706
703
|
},
|
|
707
704
|
async updateApp(cell, app, app2, completionTimeout, options) {
|
|
708
705
|
const localVarAxiosArgs = await localVarAxiosParamCreator.updateApp(cell, app, app2, completionTimeout, options);
|
|
709
706
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
710
707
|
const localVarOperationServerBasePath = operationServerMap["ApplicationApi.updateApp"]?.[localVarOperationServerIndex]?.url;
|
|
711
|
-
return (axios$
|
|
708
|
+
return (axios$6, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$6, localVarOperationServerBasePath || basePath);
|
|
712
709
|
}
|
|
713
710
|
};
|
|
714
711
|
};
|
|
715
712
|
/**
|
|
716
713
|
* ApplicationApi - factory interface
|
|
717
714
|
*/
|
|
718
|
-
const ApplicationApiFactory = function(configuration, basePath, axios$
|
|
715
|
+
const ApplicationApiFactory = function(configuration, basePath, axios$7) {
|
|
719
716
|
const localVarFp = ApplicationApiFp(configuration);
|
|
720
717
|
return {
|
|
721
718
|
addApp(cell, app, completionTimeout, options) {
|
|
722
|
-
return localVarFp.addApp(cell, app, completionTimeout, options).then((request) => request(axios$
|
|
719
|
+
return localVarFp.addApp(cell, app, completionTimeout, options).then((request) => request(axios$7, basePath));
|
|
723
720
|
},
|
|
724
721
|
clearApps(cell, completionTimeout, options) {
|
|
725
|
-
return localVarFp.clearApps(cell, completionTimeout, options).then((request) => request(axios$
|
|
722
|
+
return localVarFp.clearApps(cell, completionTimeout, options).then((request) => request(axios$7, basePath));
|
|
726
723
|
},
|
|
727
724
|
deleteApp(cell, app, completionTimeout, options) {
|
|
728
|
-
return localVarFp.deleteApp(cell, app, completionTimeout, options).then((request) => request(axios$
|
|
725
|
+
return localVarFp.deleteApp(cell, app, completionTimeout, options).then((request) => request(axios$7, basePath));
|
|
729
726
|
},
|
|
730
727
|
getApp(cell, app, options) {
|
|
731
|
-
return localVarFp.getApp(cell, app, options).then((request) => request(axios$
|
|
728
|
+
return localVarFp.getApp(cell, app, options).then((request) => request(axios$7, basePath));
|
|
732
729
|
},
|
|
733
730
|
listApps(cell, options) {
|
|
734
|
-
return localVarFp.listApps(cell, options).then((request) => request(axios$
|
|
731
|
+
return localVarFp.listApps(cell, options).then((request) => request(axios$7, basePath));
|
|
735
732
|
},
|
|
736
733
|
updateApp(cell, app, app2, completionTimeout, options) {
|
|
737
|
-
return localVarFp.updateApp(cell, app, app2, completionTimeout, options).then((request) => request(axios$
|
|
734
|
+
return localVarFp.updateApp(cell, app, app2, completionTimeout, options).then((request) => request(axios$7, basePath));
|
|
738
735
|
}
|
|
739
736
|
};
|
|
740
737
|
};
|
|
@@ -1347,180 +1344,180 @@ const BUSInputsOutputsApiFp = function(configuration) {
|
|
|
1347
1344
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addBusIOService(cell, busIOType, completionTimeout, options);
|
|
1348
1345
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1349
1346
|
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.addBusIOService"]?.[localVarOperationServerIndex]?.url;
|
|
1350
|
-
return (axios$
|
|
1347
|
+
return (axios$8, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$8, localVarOperationServerBasePath || basePath);
|
|
1351
1348
|
},
|
|
1352
1349
|
async addModbusIO(cell, io, modbusIOData, options) {
|
|
1353
1350
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addModbusIO(cell, io, modbusIOData, options);
|
|
1354
1351
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1355
1352
|
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.addModbusIO"]?.[localVarOperationServerIndex]?.url;
|
|
1356
|
-
return (axios$
|
|
1353
|
+
return (axios$9, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$9, localVarOperationServerBasePath || basePath);
|
|
1357
1354
|
},
|
|
1358
1355
|
async addProfinetIO(cell, io, profinetIOData, options) {
|
|
1359
1356
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addProfinetIO(cell, io, profinetIOData, options);
|
|
1360
1357
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1361
1358
|
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.addProfinetIO"]?.[localVarOperationServerIndex]?.url;
|
|
1362
|
-
return (axios$
|
|
1359
|
+
return (axios$10, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$10, localVarOperationServerBasePath || basePath);
|
|
1363
1360
|
},
|
|
1364
1361
|
async clearBusIOService(cell, completionTimeout, options) {
|
|
1365
1362
|
const localVarAxiosArgs = await localVarAxiosParamCreator.clearBusIOService(cell, completionTimeout, options);
|
|
1366
1363
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1367
1364
|
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.clearBusIOService"]?.[localVarOperationServerIndex]?.url;
|
|
1368
|
-
return (axios$
|
|
1365
|
+
return (axios$11, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$11, localVarOperationServerBasePath || basePath);
|
|
1369
1366
|
},
|
|
1370
1367
|
async deleteAllModbusIOs(cell, options) {
|
|
1371
1368
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteAllModbusIOs(cell, options);
|
|
1372
1369
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1373
1370
|
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.deleteAllModbusIOs"]?.[localVarOperationServerIndex]?.url;
|
|
1374
|
-
return (axios$
|
|
1371
|
+
return (axios$12, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$12, localVarOperationServerBasePath || basePath);
|
|
1375
1372
|
},
|
|
1376
1373
|
async deleteAllProfinetIOs(cell, options) {
|
|
1377
1374
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteAllProfinetIOs(cell, options);
|
|
1378
1375
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1379
1376
|
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.deleteAllProfinetIOs"]?.[localVarOperationServerIndex]?.url;
|
|
1380
|
-
return (axios$
|
|
1377
|
+
return (axios$13, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$13, localVarOperationServerBasePath || basePath);
|
|
1381
1378
|
},
|
|
1382
1379
|
async deleteModbusIO(cell, io, options) {
|
|
1383
1380
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteModbusIO(cell, io, options);
|
|
1384
1381
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1385
1382
|
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.deleteModbusIO"]?.[localVarOperationServerIndex]?.url;
|
|
1386
|
-
return (axios$
|
|
1383
|
+
return (axios$14, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$14, localVarOperationServerBasePath || basePath);
|
|
1387
1384
|
},
|
|
1388
1385
|
async deleteProfinetIO(cell, io, options) {
|
|
1389
1386
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteProfinetIO(cell, io, options);
|
|
1390
1387
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1391
1388
|
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.deleteProfinetIO"]?.[localVarOperationServerIndex]?.url;
|
|
1392
|
-
return (axios$
|
|
1389
|
+
return (axios$15, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$15, localVarOperationServerBasePath || basePath);
|
|
1393
1390
|
},
|
|
1394
1391
|
async getBusIOService(cell, options) {
|
|
1395
1392
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getBusIOService(cell, options);
|
|
1396
1393
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1397
1394
|
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.getBusIOService"]?.[localVarOperationServerIndex]?.url;
|
|
1398
|
-
return (axios$
|
|
1395
|
+
return (axios$16, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$16, localVarOperationServerBasePath || basePath);
|
|
1399
1396
|
},
|
|
1400
1397
|
async getBusIOState(cell, options) {
|
|
1401
1398
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getBusIOState(cell, options);
|
|
1402
1399
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1403
1400
|
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.getBusIOState"]?.[localVarOperationServerIndex]?.url;
|
|
1404
|
-
return (axios$
|
|
1401
|
+
return (axios$17, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$17, localVarOperationServerBasePath || basePath);
|
|
1405
1402
|
},
|
|
1406
1403
|
async getBusIOValues(cell, ios, options) {
|
|
1407
1404
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getBusIOValues(cell, ios, options);
|
|
1408
1405
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1409
1406
|
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.getBusIOValues"]?.[localVarOperationServerIndex]?.url;
|
|
1410
|
-
return (axios$
|
|
1407
|
+
return (axios$18, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$18, localVarOperationServerBasePath || basePath);
|
|
1411
1408
|
},
|
|
1412
1409
|
async getProfinetDescription(cell, options) {
|
|
1413
1410
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getProfinetDescription(cell, options);
|
|
1414
1411
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1415
1412
|
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.getProfinetDescription"]?.[localVarOperationServerIndex]?.url;
|
|
1416
|
-
return (axios$
|
|
1413
|
+
return (axios$19, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$19, localVarOperationServerBasePath || basePath);
|
|
1417
1414
|
},
|
|
1418
1415
|
async getProfinetGSDML(cell, options) {
|
|
1419
1416
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getProfinetGSDML(cell, options);
|
|
1420
1417
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1421
1418
|
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.getProfinetGSDML"]?.[localVarOperationServerIndex]?.url;
|
|
1422
|
-
return (axios$
|
|
1419
|
+
return (axios$20, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$20, localVarOperationServerBasePath || basePath);
|
|
1423
1420
|
},
|
|
1424
1421
|
async getProfinetIOsFromFile(cell, inputOffset, outputOffset, options) {
|
|
1425
1422
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getProfinetIOsFromFile(cell, inputOffset, outputOffset, options);
|
|
1426
1423
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1427
1424
|
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.getProfinetIOsFromFile"]?.[localVarOperationServerIndex]?.url;
|
|
1428
|
-
return (axios$
|
|
1425
|
+
return (axios$21, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$21, localVarOperationServerBasePath || basePath);
|
|
1429
1426
|
},
|
|
1430
1427
|
async listBusIODescriptions(cell, options) {
|
|
1431
1428
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listBusIODescriptions(cell, options);
|
|
1432
1429
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1433
1430
|
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.listBusIODescriptions"]?.[localVarOperationServerIndex]?.url;
|
|
1434
|
-
return (axios$
|
|
1431
|
+
return (axios$22, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$22, localVarOperationServerBasePath || basePath);
|
|
1435
1432
|
},
|
|
1436
1433
|
async listModbusIOs(cell, options) {
|
|
1437
1434
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listModbusIOs(cell, options);
|
|
1438
1435
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1439
1436
|
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.listModbusIOs"]?.[localVarOperationServerIndex]?.url;
|
|
1440
|
-
return (axios$
|
|
1437
|
+
return (axios$23, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$23, localVarOperationServerBasePath || basePath);
|
|
1441
1438
|
},
|
|
1442
1439
|
async listProfinetIOs(cell, options) {
|
|
1443
1440
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listProfinetIOs(cell, options);
|
|
1444
1441
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1445
1442
|
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.listProfinetIOs"]?.[localVarOperationServerIndex]?.url;
|
|
1446
|
-
return (axios$
|
|
1443
|
+
return (axios$24, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$24, localVarOperationServerBasePath || basePath);
|
|
1447
1444
|
},
|
|
1448
1445
|
async setBusIOValues(cell, iOValue, options) {
|
|
1449
1446
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setBusIOValues(cell, iOValue, options);
|
|
1450
1447
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1451
1448
|
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.setBusIOValues"]?.[localVarOperationServerIndex]?.url;
|
|
1452
|
-
return (axios$
|
|
1449
|
+
return (axios$25, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$25, localVarOperationServerBasePath || basePath);
|
|
1453
1450
|
},
|
|
1454
1451
|
async setProfinetIOsFromFile(cell, profinetInputOutputConfig, options) {
|
|
1455
1452
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setProfinetIOsFromFile(cell, profinetInputOutputConfig, options);
|
|
1456
1453
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1457
1454
|
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.setProfinetIOsFromFile"]?.[localVarOperationServerIndex]?.url;
|
|
1458
|
-
return (axios$
|
|
1455
|
+
return (axios$26, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$26, localVarOperationServerBasePath || basePath);
|
|
1459
1456
|
}
|
|
1460
1457
|
};
|
|
1461
1458
|
};
|
|
1462
1459
|
/**
|
|
1463
1460
|
* BUSInputsOutputsApi - factory interface
|
|
1464
1461
|
*/
|
|
1465
|
-
const BUSInputsOutputsApiFactory = function(configuration, basePath, axios$
|
|
1462
|
+
const BUSInputsOutputsApiFactory = function(configuration, basePath, axios$27) {
|
|
1466
1463
|
const localVarFp = BUSInputsOutputsApiFp(configuration);
|
|
1467
1464
|
return {
|
|
1468
1465
|
addBusIOService(cell, busIOType, completionTimeout, options) {
|
|
1469
|
-
return localVarFp.addBusIOService(cell, busIOType, completionTimeout, options).then((request) => request(axios$
|
|
1466
|
+
return localVarFp.addBusIOService(cell, busIOType, completionTimeout, options).then((request) => request(axios$27, basePath));
|
|
1470
1467
|
},
|
|
1471
1468
|
addModbusIO(cell, io, modbusIOData, options) {
|
|
1472
|
-
return localVarFp.addModbusIO(cell, io, modbusIOData, options).then((request) => request(axios$
|
|
1469
|
+
return localVarFp.addModbusIO(cell, io, modbusIOData, options).then((request) => request(axios$27, basePath));
|
|
1473
1470
|
},
|
|
1474
1471
|
addProfinetIO(cell, io, profinetIOData, options) {
|
|
1475
|
-
return localVarFp.addProfinetIO(cell, io, profinetIOData, options).then((request) => request(axios$
|
|
1472
|
+
return localVarFp.addProfinetIO(cell, io, profinetIOData, options).then((request) => request(axios$27, basePath));
|
|
1476
1473
|
},
|
|
1477
1474
|
clearBusIOService(cell, completionTimeout, options) {
|
|
1478
|
-
return localVarFp.clearBusIOService(cell, completionTimeout, options).then((request) => request(axios$
|
|
1475
|
+
return localVarFp.clearBusIOService(cell, completionTimeout, options).then((request) => request(axios$27, basePath));
|
|
1479
1476
|
},
|
|
1480
1477
|
deleteAllModbusIOs(cell, options) {
|
|
1481
|
-
return localVarFp.deleteAllModbusIOs(cell, options).then((request) => request(axios$
|
|
1478
|
+
return localVarFp.deleteAllModbusIOs(cell, options).then((request) => request(axios$27, basePath));
|
|
1482
1479
|
},
|
|
1483
1480
|
deleteAllProfinetIOs(cell, options) {
|
|
1484
|
-
return localVarFp.deleteAllProfinetIOs(cell, options).then((request) => request(axios$
|
|
1481
|
+
return localVarFp.deleteAllProfinetIOs(cell, options).then((request) => request(axios$27, basePath));
|
|
1485
1482
|
},
|
|
1486
1483
|
deleteModbusIO(cell, io, options) {
|
|
1487
|
-
return localVarFp.deleteModbusIO(cell, io, options).then((request) => request(axios$
|
|
1484
|
+
return localVarFp.deleteModbusIO(cell, io, options).then((request) => request(axios$27, basePath));
|
|
1488
1485
|
},
|
|
1489
1486
|
deleteProfinetIO(cell, io, options) {
|
|
1490
|
-
return localVarFp.deleteProfinetIO(cell, io, options).then((request) => request(axios$
|
|
1487
|
+
return localVarFp.deleteProfinetIO(cell, io, options).then((request) => request(axios$27, basePath));
|
|
1491
1488
|
},
|
|
1492
1489
|
getBusIOService(cell, options) {
|
|
1493
|
-
return localVarFp.getBusIOService(cell, options).then((request) => request(axios$
|
|
1490
|
+
return localVarFp.getBusIOService(cell, options).then((request) => request(axios$27, basePath));
|
|
1494
1491
|
},
|
|
1495
1492
|
getBusIOState(cell, options) {
|
|
1496
|
-
return localVarFp.getBusIOState(cell, options).then((request) => request(axios$
|
|
1493
|
+
return localVarFp.getBusIOState(cell, options).then((request) => request(axios$27, basePath));
|
|
1497
1494
|
},
|
|
1498
1495
|
getBusIOValues(cell, ios, options) {
|
|
1499
|
-
return localVarFp.getBusIOValues(cell, ios, options).then((request) => request(axios$
|
|
1496
|
+
return localVarFp.getBusIOValues(cell, ios, options).then((request) => request(axios$27, basePath));
|
|
1500
1497
|
},
|
|
1501
1498
|
getProfinetDescription(cell, options) {
|
|
1502
|
-
return localVarFp.getProfinetDescription(cell, options).then((request) => request(axios$
|
|
1499
|
+
return localVarFp.getProfinetDescription(cell, options).then((request) => request(axios$27, basePath));
|
|
1503
1500
|
},
|
|
1504
1501
|
getProfinetGSDML(cell, options) {
|
|
1505
|
-
return localVarFp.getProfinetGSDML(cell, options).then((request) => request(axios$
|
|
1502
|
+
return localVarFp.getProfinetGSDML(cell, options).then((request) => request(axios$27, basePath));
|
|
1506
1503
|
},
|
|
1507
1504
|
getProfinetIOsFromFile(cell, inputOffset, outputOffset, options) {
|
|
1508
|
-
return localVarFp.getProfinetIOsFromFile(cell, inputOffset, outputOffset, options).then((request) => request(axios$
|
|
1505
|
+
return localVarFp.getProfinetIOsFromFile(cell, inputOffset, outputOffset, options).then((request) => request(axios$27, basePath));
|
|
1509
1506
|
},
|
|
1510
1507
|
listBusIODescriptions(cell, options) {
|
|
1511
|
-
return localVarFp.listBusIODescriptions(cell, options).then((request) => request(axios$
|
|
1508
|
+
return localVarFp.listBusIODescriptions(cell, options).then((request) => request(axios$27, basePath));
|
|
1512
1509
|
},
|
|
1513
1510
|
listModbusIOs(cell, options) {
|
|
1514
|
-
return localVarFp.listModbusIOs(cell, options).then((request) => request(axios$
|
|
1511
|
+
return localVarFp.listModbusIOs(cell, options).then((request) => request(axios$27, basePath));
|
|
1515
1512
|
},
|
|
1516
1513
|
listProfinetIOs(cell, options) {
|
|
1517
|
-
return localVarFp.listProfinetIOs(cell, options).then((request) => request(axios$
|
|
1514
|
+
return localVarFp.listProfinetIOs(cell, options).then((request) => request(axios$27, basePath));
|
|
1518
1515
|
},
|
|
1519
1516
|
setBusIOValues(cell, iOValue, options) {
|
|
1520
|
-
return localVarFp.setBusIOValues(cell, iOValue, options).then((request) => request(axios$
|
|
1517
|
+
return localVarFp.setBusIOValues(cell, iOValue, options).then((request) => request(axios$27, basePath));
|
|
1521
1518
|
},
|
|
1522
1519
|
setProfinetIOsFromFile(cell, profinetInputOutputConfig, options) {
|
|
1523
|
-
return localVarFp.setProfinetIOsFromFile(cell, profinetInputOutputConfig, options).then((request) => request(axios$
|
|
1520
|
+
return localVarFp.setProfinetIOsFromFile(cell, profinetInputOutputConfig, options).then((request) => request(axios$27, basePath));
|
|
1524
1521
|
}
|
|
1525
1522
|
};
|
|
1526
1523
|
};
|
|
@@ -1996,90 +1993,90 @@ const CellApiFp = function(configuration) {
|
|
|
1996
1993
|
const localVarAxiosArgs = await localVarAxiosParamCreator.checkCellVersionUpdate(cell, channel, options);
|
|
1997
1994
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1998
1995
|
const localVarOperationServerBasePath = operationServerMap["CellApi.checkCellVersionUpdate"]?.[localVarOperationServerIndex]?.url;
|
|
1999
|
-
return (axios$
|
|
1996
|
+
return (axios$28, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$28, localVarOperationServerBasePath || basePath);
|
|
2000
1997
|
},
|
|
2001
1998
|
async deleteCell(cell, completionTimeout, options) {
|
|
2002
1999
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteCell(cell, completionTimeout, options);
|
|
2003
2000
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2004
2001
|
const localVarOperationServerBasePath = operationServerMap["CellApi.deleteCell"]?.[localVarOperationServerIndex]?.url;
|
|
2005
|
-
return (axios$
|
|
2002
|
+
return (axios$29, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$29, localVarOperationServerBasePath || basePath);
|
|
2006
2003
|
},
|
|
2007
2004
|
async deployCell(cell, completionTimeout, options) {
|
|
2008
2005
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deployCell(cell, completionTimeout, options);
|
|
2009
2006
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2010
2007
|
const localVarOperationServerBasePath = operationServerMap["CellApi.deployCell"]?.[localVarOperationServerIndex]?.url;
|
|
2011
|
-
return (axios$
|
|
2008
|
+
return (axios$30, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$30, localVarOperationServerBasePath || basePath);
|
|
2012
2009
|
},
|
|
2013
2010
|
async getCell(cell, options) {
|
|
2014
2011
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getCell(cell, options);
|
|
2015
2012
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2016
2013
|
const localVarOperationServerBasePath = operationServerMap["CellApi.getCell"]?.[localVarOperationServerIndex]?.url;
|
|
2017
|
-
return (axios$
|
|
2014
|
+
return (axios$31, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$31, localVarOperationServerBasePath || basePath);
|
|
2018
2015
|
},
|
|
2019
2016
|
async getCellStatus(cell, options) {
|
|
2020
2017
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getCellStatus(cell, options);
|
|
2021
2018
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2022
2019
|
const localVarOperationServerBasePath = operationServerMap["CellApi.getCellStatus"]?.[localVarOperationServerIndex]?.url;
|
|
2023
|
-
return (axios$
|
|
2020
|
+
return (axios$32, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$32, localVarOperationServerBasePath || basePath);
|
|
2024
2021
|
},
|
|
2025
2022
|
async listCells(options) {
|
|
2026
2023
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listCells(options);
|
|
2027
2024
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2028
2025
|
const localVarOperationServerBasePath = operationServerMap["CellApi.listCells"]?.[localVarOperationServerIndex]?.url;
|
|
2029
|
-
return (axios$
|
|
2026
|
+
return (axios$33, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$33, localVarOperationServerBasePath || basePath);
|
|
2030
2027
|
},
|
|
2031
2028
|
async setCellStatus(cell, operatingState, options) {
|
|
2032
2029
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setCellStatus(cell, operatingState, options);
|
|
2033
2030
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2034
2031
|
const localVarOperationServerBasePath = operationServerMap["CellApi.setCellStatus"]?.[localVarOperationServerIndex]?.url;
|
|
2035
|
-
return (axios$
|
|
2032
|
+
return (axios$34, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$34, localVarOperationServerBasePath || basePath);
|
|
2036
2033
|
},
|
|
2037
2034
|
async updateCell(cell, cell2, completionTimeout, options) {
|
|
2038
2035
|
const localVarAxiosArgs = await localVarAxiosParamCreator.updateCell(cell, cell2, completionTimeout, options);
|
|
2039
2036
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2040
2037
|
const localVarOperationServerBasePath = operationServerMap["CellApi.updateCell"]?.[localVarOperationServerIndex]?.url;
|
|
2041
|
-
return (axios$
|
|
2038
|
+
return (axios$35, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$35, localVarOperationServerBasePath || basePath);
|
|
2042
2039
|
},
|
|
2043
2040
|
async updateCellVersion(cell, updateCellVersionRequest, options) {
|
|
2044
2041
|
const localVarAxiosArgs = await localVarAxiosParamCreator.updateCellVersion(cell, updateCellVersionRequest, options);
|
|
2045
2042
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2046
2043
|
const localVarOperationServerBasePath = operationServerMap["CellApi.updateCellVersion"]?.[localVarOperationServerIndex]?.url;
|
|
2047
|
-
return (axios$
|
|
2044
|
+
return (axios$36, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$36, localVarOperationServerBasePath || basePath);
|
|
2048
2045
|
}
|
|
2049
2046
|
};
|
|
2050
2047
|
};
|
|
2051
2048
|
/**
|
|
2052
2049
|
* CellApi - factory interface
|
|
2053
2050
|
*/
|
|
2054
|
-
const CellApiFactory = function(configuration, basePath, axios$
|
|
2051
|
+
const CellApiFactory = function(configuration, basePath, axios$37) {
|
|
2055
2052
|
const localVarFp = CellApiFp(configuration);
|
|
2056
2053
|
return {
|
|
2057
2054
|
checkCellVersionUpdate(cell, channel, options) {
|
|
2058
|
-
return localVarFp.checkCellVersionUpdate(cell, channel, options).then((request) => request(axios$
|
|
2055
|
+
return localVarFp.checkCellVersionUpdate(cell, channel, options).then((request) => request(axios$37, basePath));
|
|
2059
2056
|
},
|
|
2060
2057
|
deleteCell(cell, completionTimeout, options) {
|
|
2061
|
-
return localVarFp.deleteCell(cell, completionTimeout, options).then((request) => request(axios$
|
|
2058
|
+
return localVarFp.deleteCell(cell, completionTimeout, options).then((request) => request(axios$37, basePath));
|
|
2062
2059
|
},
|
|
2063
2060
|
deployCell(cell, completionTimeout, options) {
|
|
2064
|
-
return localVarFp.deployCell(cell, completionTimeout, options).then((request) => request(axios$
|
|
2061
|
+
return localVarFp.deployCell(cell, completionTimeout, options).then((request) => request(axios$37, basePath));
|
|
2065
2062
|
},
|
|
2066
2063
|
getCell(cell, options) {
|
|
2067
|
-
return localVarFp.getCell(cell, options).then((request) => request(axios$
|
|
2064
|
+
return localVarFp.getCell(cell, options).then((request) => request(axios$37, basePath));
|
|
2068
2065
|
},
|
|
2069
2066
|
getCellStatus(cell, options) {
|
|
2070
|
-
return localVarFp.getCellStatus(cell, options).then((request) => request(axios$
|
|
2067
|
+
return localVarFp.getCellStatus(cell, options).then((request) => request(axios$37, basePath));
|
|
2071
2068
|
},
|
|
2072
2069
|
listCells(options) {
|
|
2073
|
-
return localVarFp.listCells(options).then((request) => request(axios$
|
|
2070
|
+
return localVarFp.listCells(options).then((request) => request(axios$37, basePath));
|
|
2074
2071
|
},
|
|
2075
2072
|
setCellStatus(cell, operatingState, options) {
|
|
2076
|
-
return localVarFp.setCellStatus(cell, operatingState, options).then((request) => request(axios$
|
|
2073
|
+
return localVarFp.setCellStatus(cell, operatingState, options).then((request) => request(axios$37, basePath));
|
|
2077
2074
|
},
|
|
2078
2075
|
updateCell(cell, cell2, completionTimeout, options) {
|
|
2079
|
-
return localVarFp.updateCell(cell, cell2, completionTimeout, options).then((request) => request(axios$
|
|
2076
|
+
return localVarFp.updateCell(cell, cell2, completionTimeout, options).then((request) => request(axios$37, basePath));
|
|
2080
2077
|
},
|
|
2081
2078
|
updateCellVersion(cell, updateCellVersionRequest, options) {
|
|
2082
|
-
return localVarFp.updateCellVersion(cell, updateCellVersionRequest, options).then((request) => request(axios$
|
|
2079
|
+
return localVarFp.updateCellVersion(cell, updateCellVersionRequest, options).then((request) => request(axios$37, basePath));
|
|
2083
2080
|
}
|
|
2084
2081
|
};
|
|
2085
2082
|
};
|
|
@@ -2141,7 +2138,7 @@ var CellApi = class extends BaseAPI {
|
|
|
2141
2138
|
return CellApiFp(this.configuration).getCellStatus(cell, options).then((request) => request(this.axios, this.basePath));
|
|
2142
2139
|
}
|
|
2143
2140
|
/**
|
|
2144
|
-
* **Required permissions:** `
|
|
2141
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ List all deployed cell names. If no cells are deployed, an empty list is returned.
|
|
2145
2142
|
* @summary List Cells
|
|
2146
2143
|
* @param {*} [options] Override http request option.
|
|
2147
2144
|
* @throws {RequiredError}
|
|
@@ -2594,135 +2591,135 @@ const ControllerApiFp = function(configuration) {
|
|
|
2594
2591
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addRobotController(cell, robotController, completionTimeout, options);
|
|
2595
2592
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2596
2593
|
const localVarOperationServerBasePath = operationServerMap["ControllerApi.addRobotController"]?.[localVarOperationServerIndex]?.url;
|
|
2597
|
-
return (axios$
|
|
2594
|
+
return (axios$38, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$38, localVarOperationServerBasePath || basePath);
|
|
2598
2595
|
},
|
|
2599
2596
|
async clearRobotControllers(cell, completionTimeout, options) {
|
|
2600
2597
|
const localVarAxiosArgs = await localVarAxiosParamCreator.clearRobotControllers(cell, completionTimeout, options);
|
|
2601
2598
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2602
2599
|
const localVarOperationServerBasePath = operationServerMap["ControllerApi.clearRobotControllers"]?.[localVarOperationServerIndex]?.url;
|
|
2603
|
-
return (axios$
|
|
2600
|
+
return (axios$39, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$39, localVarOperationServerBasePath || basePath);
|
|
2604
2601
|
},
|
|
2605
2602
|
async deleteRobotController(cell, controller, completionTimeout, options) {
|
|
2606
2603
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteRobotController(cell, controller, completionTimeout, options);
|
|
2607
2604
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2608
2605
|
const localVarOperationServerBasePath = operationServerMap["ControllerApi.deleteRobotController"]?.[localVarOperationServerIndex]?.url;
|
|
2609
|
-
return (axios$
|
|
2606
|
+
return (axios$40, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$40, localVarOperationServerBasePath || basePath);
|
|
2610
2607
|
},
|
|
2611
2608
|
async getControllerDescription(cell, controller, options) {
|
|
2612
2609
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getControllerDescription(cell, controller, options);
|
|
2613
2610
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2614
2611
|
const localVarOperationServerBasePath = operationServerMap["ControllerApi.getControllerDescription"]?.[localVarOperationServerIndex]?.url;
|
|
2615
|
-
return (axios$
|
|
2612
|
+
return (axios$41, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$41, localVarOperationServerBasePath || basePath);
|
|
2616
2613
|
},
|
|
2617
2614
|
async getCoordinateSystem(cell, controller, coordinateSystem, orientationType, options) {
|
|
2618
2615
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getCoordinateSystem(cell, controller, coordinateSystem, orientationType, options);
|
|
2619
2616
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2620
2617
|
const localVarOperationServerBasePath = operationServerMap["ControllerApi.getCoordinateSystem"]?.[localVarOperationServerIndex]?.url;
|
|
2621
|
-
return (axios$
|
|
2618
|
+
return (axios$42, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$42, localVarOperationServerBasePath || basePath);
|
|
2622
2619
|
},
|
|
2623
2620
|
async getCurrentRobotControllerState(cell, controller, options) {
|
|
2624
2621
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getCurrentRobotControllerState(cell, controller, options);
|
|
2625
2622
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2626
2623
|
const localVarOperationServerBasePath = operationServerMap["ControllerApi.getCurrentRobotControllerState"]?.[localVarOperationServerIndex]?.url;
|
|
2627
|
-
return (axios$
|
|
2624
|
+
return (axios$43, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$43, localVarOperationServerBasePath || basePath);
|
|
2628
2625
|
},
|
|
2629
2626
|
async getRobotController(cell, controller, options) {
|
|
2630
2627
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getRobotController(cell, controller, options);
|
|
2631
2628
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2632
2629
|
const localVarOperationServerBasePath = operationServerMap["ControllerApi.getRobotController"]?.[localVarOperationServerIndex]?.url;
|
|
2633
|
-
return (axios$
|
|
2630
|
+
return (axios$44, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$44, localVarOperationServerBasePath || basePath);
|
|
2634
2631
|
},
|
|
2635
2632
|
async getVirtualControllerConfiguration(cell, controller, options) {
|
|
2636
2633
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getVirtualControllerConfiguration(cell, controller, options);
|
|
2637
2634
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2638
2635
|
const localVarOperationServerBasePath = operationServerMap["ControllerApi.getVirtualControllerConfiguration"]?.[localVarOperationServerIndex]?.url;
|
|
2639
|
-
return (axios$
|
|
2636
|
+
return (axios$45, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$45, localVarOperationServerBasePath || basePath);
|
|
2640
2637
|
},
|
|
2641
2638
|
async listCoordinateSystems(cell, controller, orientationType, options) {
|
|
2642
2639
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listCoordinateSystems(cell, controller, orientationType, options);
|
|
2643
2640
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2644
2641
|
const localVarOperationServerBasePath = operationServerMap["ControllerApi.listCoordinateSystems"]?.[localVarOperationServerIndex]?.url;
|
|
2645
|
-
return (axios$
|
|
2642
|
+
return (axios$46, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$46, localVarOperationServerBasePath || basePath);
|
|
2646
2643
|
},
|
|
2647
2644
|
async listRobotControllers(cell, options) {
|
|
2648
2645
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listRobotControllers(cell, options);
|
|
2649
2646
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2650
2647
|
const localVarOperationServerBasePath = operationServerMap["ControllerApi.listRobotControllers"]?.[localVarOperationServerIndex]?.url;
|
|
2651
|
-
return (axios$
|
|
2648
|
+
return (axios$47, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$47, localVarOperationServerBasePath || basePath);
|
|
2652
2649
|
},
|
|
2653
2650
|
async setDefaultMode(cell, controller, mode, options) {
|
|
2654
2651
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setDefaultMode(cell, controller, mode, options);
|
|
2655
2652
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2656
2653
|
const localVarOperationServerBasePath = operationServerMap["ControllerApi.setDefaultMode"]?.[localVarOperationServerIndex]?.url;
|
|
2657
|
-
return (axios$
|
|
2654
|
+
return (axios$48, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$48, localVarOperationServerBasePath || basePath);
|
|
2658
2655
|
},
|
|
2659
2656
|
async streamFreeDrive(cell, controller, responseRate, options) {
|
|
2660
2657
|
const localVarAxiosArgs = await localVarAxiosParamCreator.streamFreeDrive(cell, controller, responseRate, options);
|
|
2661
2658
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2662
2659
|
const localVarOperationServerBasePath = operationServerMap["ControllerApi.streamFreeDrive"]?.[localVarOperationServerIndex]?.url;
|
|
2663
|
-
return (axios$
|
|
2660
|
+
return (axios$49, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$49, localVarOperationServerBasePath || basePath);
|
|
2664
2661
|
},
|
|
2665
2662
|
async streamRobotControllerState(cell, controller, responseRate, addControllerTimeout, options) {
|
|
2666
2663
|
const localVarAxiosArgs = await localVarAxiosParamCreator.streamRobotControllerState(cell, controller, responseRate, addControllerTimeout, options);
|
|
2667
2664
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2668
2665
|
const localVarOperationServerBasePath = operationServerMap["ControllerApi.streamRobotControllerState"]?.[localVarOperationServerIndex]?.url;
|
|
2669
|
-
return (axios$
|
|
2666
|
+
return (axios$50, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$50, localVarOperationServerBasePath || basePath);
|
|
2670
2667
|
},
|
|
2671
2668
|
async updateRobotController(cell, controller, robotController, completionTimeout, options) {
|
|
2672
2669
|
const localVarAxiosArgs = await localVarAxiosParamCreator.updateRobotController(cell, controller, robotController, completionTimeout, options);
|
|
2673
2670
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2674
2671
|
const localVarOperationServerBasePath = operationServerMap["ControllerApi.updateRobotController"]?.[localVarOperationServerIndex]?.url;
|
|
2675
|
-
return (axios$
|
|
2672
|
+
return (axios$51, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$51, localVarOperationServerBasePath || basePath);
|
|
2676
2673
|
}
|
|
2677
2674
|
};
|
|
2678
2675
|
};
|
|
2679
2676
|
/**
|
|
2680
2677
|
* ControllerApi - factory interface
|
|
2681
2678
|
*/
|
|
2682
|
-
const ControllerApiFactory = function(configuration, basePath, axios$
|
|
2679
|
+
const ControllerApiFactory = function(configuration, basePath, axios$52) {
|
|
2683
2680
|
const localVarFp = ControllerApiFp(configuration);
|
|
2684
2681
|
return {
|
|
2685
2682
|
addRobotController(cell, robotController, completionTimeout, options) {
|
|
2686
|
-
return localVarFp.addRobotController(cell, robotController, completionTimeout, options).then((request) => request(axios$
|
|
2683
|
+
return localVarFp.addRobotController(cell, robotController, completionTimeout, options).then((request) => request(axios$52, basePath));
|
|
2687
2684
|
},
|
|
2688
2685
|
clearRobotControllers(cell, completionTimeout, options) {
|
|
2689
|
-
return localVarFp.clearRobotControllers(cell, completionTimeout, options).then((request) => request(axios$
|
|
2686
|
+
return localVarFp.clearRobotControllers(cell, completionTimeout, options).then((request) => request(axios$52, basePath));
|
|
2690
2687
|
},
|
|
2691
2688
|
deleteRobotController(cell, controller, completionTimeout, options) {
|
|
2692
|
-
return localVarFp.deleteRobotController(cell, controller, completionTimeout, options).then((request) => request(axios$
|
|
2689
|
+
return localVarFp.deleteRobotController(cell, controller, completionTimeout, options).then((request) => request(axios$52, basePath));
|
|
2693
2690
|
},
|
|
2694
2691
|
getControllerDescription(cell, controller, options) {
|
|
2695
|
-
return localVarFp.getControllerDescription(cell, controller, options).then((request) => request(axios$
|
|
2692
|
+
return localVarFp.getControllerDescription(cell, controller, options).then((request) => request(axios$52, basePath));
|
|
2696
2693
|
},
|
|
2697
2694
|
getCoordinateSystem(cell, controller, coordinateSystem, orientationType, options) {
|
|
2698
|
-
return localVarFp.getCoordinateSystem(cell, controller, coordinateSystem, orientationType, options).then((request) => request(axios$
|
|
2695
|
+
return localVarFp.getCoordinateSystem(cell, controller, coordinateSystem, orientationType, options).then((request) => request(axios$52, basePath));
|
|
2699
2696
|
},
|
|
2700
2697
|
getCurrentRobotControllerState(cell, controller, options) {
|
|
2701
|
-
return localVarFp.getCurrentRobotControllerState(cell, controller, options).then((request) => request(axios$
|
|
2698
|
+
return localVarFp.getCurrentRobotControllerState(cell, controller, options).then((request) => request(axios$52, basePath));
|
|
2702
2699
|
},
|
|
2703
2700
|
getRobotController(cell, controller, options) {
|
|
2704
|
-
return localVarFp.getRobotController(cell, controller, options).then((request) => request(axios$
|
|
2701
|
+
return localVarFp.getRobotController(cell, controller, options).then((request) => request(axios$52, basePath));
|
|
2705
2702
|
},
|
|
2706
2703
|
getVirtualControllerConfiguration(cell, controller, options) {
|
|
2707
|
-
return localVarFp.getVirtualControllerConfiguration(cell, controller, options).then((request) => request(axios$
|
|
2704
|
+
return localVarFp.getVirtualControllerConfiguration(cell, controller, options).then((request) => request(axios$52, basePath));
|
|
2708
2705
|
},
|
|
2709
2706
|
listCoordinateSystems(cell, controller, orientationType, options) {
|
|
2710
|
-
return localVarFp.listCoordinateSystems(cell, controller, orientationType, options).then((request) => request(axios$
|
|
2707
|
+
return localVarFp.listCoordinateSystems(cell, controller, orientationType, options).then((request) => request(axios$52, basePath));
|
|
2711
2708
|
},
|
|
2712
2709
|
listRobotControllers(cell, options) {
|
|
2713
|
-
return localVarFp.listRobotControllers(cell, options).then((request) => request(axios$
|
|
2710
|
+
return localVarFp.listRobotControllers(cell, options).then((request) => request(axios$52, basePath));
|
|
2714
2711
|
},
|
|
2715
2712
|
setDefaultMode(cell, controller, mode, options) {
|
|
2716
|
-
return localVarFp.setDefaultMode(cell, controller, mode, options).then((request) => request(axios$
|
|
2713
|
+
return localVarFp.setDefaultMode(cell, controller, mode, options).then((request) => request(axios$52, basePath));
|
|
2717
2714
|
},
|
|
2718
2715
|
streamFreeDrive(cell, controller, responseRate, options) {
|
|
2719
|
-
return localVarFp.streamFreeDrive(cell, controller, responseRate, options).then((request) => request(axios$
|
|
2716
|
+
return localVarFp.streamFreeDrive(cell, controller, responseRate, options).then((request) => request(axios$52, basePath));
|
|
2720
2717
|
},
|
|
2721
2718
|
streamRobotControllerState(cell, controller, responseRate, addControllerTimeout, options) {
|
|
2722
|
-
return localVarFp.streamRobotControllerState(cell, controller, responseRate, addControllerTimeout, options).then((request) => request(axios$
|
|
2719
|
+
return localVarFp.streamRobotControllerState(cell, controller, responseRate, addControllerTimeout, options).then((request) => request(axios$52, basePath));
|
|
2723
2720
|
},
|
|
2724
2721
|
updateRobotController(cell, controller, robotController, completionTimeout, options) {
|
|
2725
|
-
return localVarFp.updateRobotController(cell, controller, robotController, completionTimeout, options).then((request) => request(axios$
|
|
2722
|
+
return localVarFp.updateRobotController(cell, controller, robotController, completionTimeout, options).then((request) => request(axios$52, basePath));
|
|
2726
2723
|
}
|
|
2727
2724
|
};
|
|
2728
2725
|
};
|
|
@@ -3059,54 +3056,54 @@ const ControllerInputsOutputsApiFp = function(configuration) {
|
|
|
3059
3056
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listIODescriptions(cell, controller, ios, direction, valueType, group, options);
|
|
3060
3057
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3061
3058
|
const localVarOperationServerBasePath = operationServerMap["ControllerInputsOutputsApi.listIODescriptions"]?.[localVarOperationServerIndex]?.url;
|
|
3062
|
-
return (axios$
|
|
3059
|
+
return (axios$53, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$53, localVarOperationServerBasePath || basePath);
|
|
3063
3060
|
},
|
|
3064
3061
|
async listIOValues(cell, controller, ios, options) {
|
|
3065
3062
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listIOValues(cell, controller, ios, options);
|
|
3066
3063
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3067
3064
|
const localVarOperationServerBasePath = operationServerMap["ControllerInputsOutputsApi.listIOValues"]?.[localVarOperationServerIndex]?.url;
|
|
3068
|
-
return (axios$
|
|
3065
|
+
return (axios$54, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$54, localVarOperationServerBasePath || basePath);
|
|
3069
3066
|
},
|
|
3070
3067
|
async setOutputValues(cell, controller, iOValue, options) {
|
|
3071
3068
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setOutputValues(cell, controller, iOValue, options);
|
|
3072
3069
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3073
3070
|
const localVarOperationServerBasePath = operationServerMap["ControllerInputsOutputsApi.setOutputValues"]?.[localVarOperationServerIndex]?.url;
|
|
3074
|
-
return (axios$
|
|
3071
|
+
return (axios$55, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$55, localVarOperationServerBasePath || basePath);
|
|
3075
3072
|
},
|
|
3076
3073
|
async streamIOValues(cell, controller, ios, options) {
|
|
3077
3074
|
const localVarAxiosArgs = await localVarAxiosParamCreator.streamIOValues(cell, controller, ios, options);
|
|
3078
3075
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3079
3076
|
const localVarOperationServerBasePath = operationServerMap["ControllerInputsOutputsApi.streamIOValues"]?.[localVarOperationServerIndex]?.url;
|
|
3080
|
-
return (axios$
|
|
3077
|
+
return (axios$56, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$56, localVarOperationServerBasePath || basePath);
|
|
3081
3078
|
},
|
|
3082
3079
|
async waitForIOEvent(cell, controller, waitForIOEventRequest, options) {
|
|
3083
3080
|
const localVarAxiosArgs = await localVarAxiosParamCreator.waitForIOEvent(cell, controller, waitForIOEventRequest, options);
|
|
3084
3081
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3085
3082
|
const localVarOperationServerBasePath = operationServerMap["ControllerInputsOutputsApi.waitForIOEvent"]?.[localVarOperationServerIndex]?.url;
|
|
3086
|
-
return (axios$
|
|
3083
|
+
return (axios$57, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$57, localVarOperationServerBasePath || basePath);
|
|
3087
3084
|
}
|
|
3088
3085
|
};
|
|
3089
3086
|
};
|
|
3090
3087
|
/**
|
|
3091
3088
|
* ControllerInputsOutputsApi - factory interface
|
|
3092
3089
|
*/
|
|
3093
|
-
const ControllerInputsOutputsApiFactory = function(configuration, basePath, axios$
|
|
3090
|
+
const ControllerInputsOutputsApiFactory = function(configuration, basePath, axios$58) {
|
|
3094
3091
|
const localVarFp = ControllerInputsOutputsApiFp(configuration);
|
|
3095
3092
|
return {
|
|
3096
3093
|
listIODescriptions(cell, controller, ios, direction, valueType, group, options) {
|
|
3097
|
-
return localVarFp.listIODescriptions(cell, controller, ios, direction, valueType, group, options).then((request) => request(axios$
|
|
3094
|
+
return localVarFp.listIODescriptions(cell, controller, ios, direction, valueType, group, options).then((request) => request(axios$58, basePath));
|
|
3098
3095
|
},
|
|
3099
3096
|
listIOValues(cell, controller, ios, options) {
|
|
3100
|
-
return localVarFp.listIOValues(cell, controller, ios, options).then((request) => request(axios$
|
|
3097
|
+
return localVarFp.listIOValues(cell, controller, ios, options).then((request) => request(axios$58, basePath));
|
|
3101
3098
|
},
|
|
3102
3099
|
setOutputValues(cell, controller, iOValue, options) {
|
|
3103
|
-
return localVarFp.setOutputValues(cell, controller, iOValue, options).then((request) => request(axios$
|
|
3100
|
+
return localVarFp.setOutputValues(cell, controller, iOValue, options).then((request) => request(axios$58, basePath));
|
|
3104
3101
|
},
|
|
3105
3102
|
streamIOValues(cell, controller, ios, options) {
|
|
3106
|
-
return localVarFp.streamIOValues(cell, controller, ios, options).then((request) => request(axios$
|
|
3103
|
+
return localVarFp.streamIOValues(cell, controller, ios, options).then((request) => request(axios$58, basePath));
|
|
3107
3104
|
},
|
|
3108
3105
|
waitForIOEvent(cell, controller, waitForIOEventRequest, options) {
|
|
3109
|
-
return localVarFp.waitForIOEvent(cell, controller, waitForIOEventRequest, options).then((request) => request(axios$
|
|
3106
|
+
return localVarFp.waitForIOEvent(cell, controller, waitForIOEventRequest, options).then((request) => request(axios$58, basePath));
|
|
3110
3107
|
}
|
|
3111
3108
|
};
|
|
3112
3109
|
};
|
|
@@ -3222,16 +3219,16 @@ const JoggingApiFp = function(configuration) {
|
|
|
3222
3219
|
const localVarAxiosArgs = await localVarAxiosParamCreator.executeJogging(cell, controller, executeJoggingRequest, options);
|
|
3223
3220
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3224
3221
|
const localVarOperationServerBasePath = operationServerMap["JoggingApi.executeJogging"]?.[localVarOperationServerIndex]?.url;
|
|
3225
|
-
return (axios$
|
|
3222
|
+
return (axios$59, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$59, localVarOperationServerBasePath || basePath);
|
|
3226
3223
|
} };
|
|
3227
3224
|
};
|
|
3228
3225
|
/**
|
|
3229
3226
|
* JoggingApi - factory interface
|
|
3230
3227
|
*/
|
|
3231
|
-
const JoggingApiFactory = function(configuration, basePath, axios$
|
|
3228
|
+
const JoggingApiFactory = function(configuration, basePath, axios$60) {
|
|
3232
3229
|
const localVarFp = JoggingApiFp(configuration);
|
|
3233
3230
|
return { executeJogging(cell, controller, executeJoggingRequest, options) {
|
|
3234
|
-
return localVarFp.executeJogging(cell, controller, executeJoggingRequest, options).then((request) => request(axios$
|
|
3231
|
+
return localVarFp.executeJogging(cell, controller, executeJoggingRequest, options).then((request) => request(axios$60, basePath));
|
|
3235
3232
|
} };
|
|
3236
3233
|
};
|
|
3237
3234
|
/**
|
|
@@ -3313,6 +3310,35 @@ const KinematicsApiAxiosParamCreator = function(configuration) {
|
|
|
3313
3310
|
url: toPathString(localVarUrlObj),
|
|
3314
3311
|
options: localVarRequestOptions
|
|
3315
3312
|
};
|
|
3313
|
+
},
|
|
3314
|
+
projectJointPositionDirectionConstraint: async (cell, projectJointPositionDirectionConstraintRequest, options = {}) => {
|
|
3315
|
+
assertParamExists("projectJointPositionDirectionConstraint", "cell", cell);
|
|
3316
|
+
assertParamExists("projectJointPositionDirectionConstraint", "projectJointPositionDirectionConstraintRequest", projectJointPositionDirectionConstraintRequest);
|
|
3317
|
+
const localVarPath = `/experimental/cells/{cell}/kinematic/project-joint-position-direction-constraint`.replace(`{cell}`, encodeURIComponent(String(cell)));
|
|
3318
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3319
|
+
let baseOptions;
|
|
3320
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
3321
|
+
const localVarRequestOptions = {
|
|
3322
|
+
method: "POST",
|
|
3323
|
+
...baseOptions,
|
|
3324
|
+
...options
|
|
3325
|
+
};
|
|
3326
|
+
const localVarHeaderParameter = {};
|
|
3327
|
+
const localVarQueryParameter = {};
|
|
3328
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3329
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
3330
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3331
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3332
|
+
localVarRequestOptions.headers = {
|
|
3333
|
+
...localVarHeaderParameter,
|
|
3334
|
+
...headersFromBaseOptions,
|
|
3335
|
+
...options.headers
|
|
3336
|
+
};
|
|
3337
|
+
localVarRequestOptions.data = serializeDataIfNeeded(projectJointPositionDirectionConstraintRequest, localVarRequestOptions, configuration);
|
|
3338
|
+
return {
|
|
3339
|
+
url: toPathString(localVarUrlObj),
|
|
3340
|
+
options: localVarRequestOptions
|
|
3341
|
+
};
|
|
3316
3342
|
}
|
|
3317
3343
|
};
|
|
3318
3344
|
};
|
|
@@ -3326,27 +3352,36 @@ const KinematicsApiFp = function(configuration) {
|
|
|
3326
3352
|
const localVarAxiosArgs = await localVarAxiosParamCreator.forwardKinematics(cell, forwardKinematicsRequest, options);
|
|
3327
3353
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3328
3354
|
const localVarOperationServerBasePath = operationServerMap["KinematicsApi.forwardKinematics"]?.[localVarOperationServerIndex]?.url;
|
|
3329
|
-
return (axios$
|
|
3355
|
+
return (axios$61, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$61, localVarOperationServerBasePath || basePath);
|
|
3330
3356
|
},
|
|
3331
3357
|
async inverseKinematics(cell, inverseKinematicsRequest, options) {
|
|
3332
3358
|
const localVarAxiosArgs = await localVarAxiosParamCreator.inverseKinematics(cell, inverseKinematicsRequest, options);
|
|
3333
3359
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3334
3360
|
const localVarOperationServerBasePath = operationServerMap["KinematicsApi.inverseKinematics"]?.[localVarOperationServerIndex]?.url;
|
|
3335
|
-
return (axios$
|
|
3361
|
+
return (axios$62, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$62, localVarOperationServerBasePath || basePath);
|
|
3362
|
+
},
|
|
3363
|
+
async projectJointPositionDirectionConstraint(cell, projectJointPositionDirectionConstraintRequest, options) {
|
|
3364
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.projectJointPositionDirectionConstraint(cell, projectJointPositionDirectionConstraintRequest, options);
|
|
3365
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3366
|
+
const localVarOperationServerBasePath = operationServerMap["KinematicsApi.projectJointPositionDirectionConstraint"]?.[localVarOperationServerIndex]?.url;
|
|
3367
|
+
return (axios$63, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$63, localVarOperationServerBasePath || basePath);
|
|
3336
3368
|
}
|
|
3337
3369
|
};
|
|
3338
3370
|
};
|
|
3339
3371
|
/**
|
|
3340
3372
|
* KinematicsApi - factory interface
|
|
3341
3373
|
*/
|
|
3342
|
-
const KinematicsApiFactory = function(configuration, basePath, axios$
|
|
3374
|
+
const KinematicsApiFactory = function(configuration, basePath, axios$64) {
|
|
3343
3375
|
const localVarFp = KinematicsApiFp(configuration);
|
|
3344
3376
|
return {
|
|
3345
3377
|
forwardKinematics(cell, forwardKinematicsRequest, options) {
|
|
3346
|
-
return localVarFp.forwardKinematics(cell, forwardKinematicsRequest, options).then((request) => request(axios$
|
|
3378
|
+
return localVarFp.forwardKinematics(cell, forwardKinematicsRequest, options).then((request) => request(axios$64, basePath));
|
|
3347
3379
|
},
|
|
3348
3380
|
inverseKinematics(cell, inverseKinematicsRequest, options) {
|
|
3349
|
-
return localVarFp.inverseKinematics(cell, inverseKinematicsRequest, options).then((request) => request(axios$
|
|
3381
|
+
return localVarFp.inverseKinematics(cell, inverseKinematicsRequest, options).then((request) => request(axios$64, basePath));
|
|
3382
|
+
},
|
|
3383
|
+
projectJointPositionDirectionConstraint(cell, projectJointPositionDirectionConstraintRequest, options) {
|
|
3384
|
+
return localVarFp.projectJointPositionDirectionConstraint(cell, projectJointPositionDirectionConstraintRequest, options).then((request) => request(axios$64, basePath));
|
|
3350
3385
|
}
|
|
3351
3386
|
};
|
|
3352
3387
|
};
|
|
@@ -3376,6 +3411,17 @@ var KinematicsApi = class extends BaseAPI {
|
|
|
3376
3411
|
inverseKinematics(cell, inverseKinematicsRequest, options) {
|
|
3377
3412
|
return KinematicsApiFp(this.configuration).inverseKinematics(cell, inverseKinematicsRequest, options).then((request) => request(this.axios, this.basePath));
|
|
3378
3413
|
}
|
|
3414
|
+
/**
|
|
3415
|
+
* **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ <!-- theme: danger --> > **Experimental** Returns the projected joint position that satisfies the direction constraint for a given target joint position. This may alter the TCP pose. To project the cartesian pose instead, use the following code snippet: ```python import numpy as np from scipy.spatial.transform import Rotation as R def project_cartesian_pose_direction_constraint(T_world_tcp: models.Pose, constraint: models.DirectionConstraint) -> models.Pose: constraint_tcp = np.array(constraint.tcp) target_constraint_world = np.array(constraint.world) R_world_tcp = R.from_rotvec(T_world_tcp.orientation.root) current_constraint_world = R_world_tcp.apply(constraint_tcp) R_corr, _ = R.align_vectors([target_constraint_world], [current_constraint_world]) R_world_tcp_new = R_corr * R_world_tcp return models.Pose(position=T_world_tcp.position, orientation=R_world_tcp_new.as_rotvec()) ```
|
|
3416
|
+
* @summary Project joint position to direction constraint
|
|
3417
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
3418
|
+
* @param {ProjectJointPositionDirectionConstraintRequest} projectJointPositionDirectionConstraintRequest
|
|
3419
|
+
* @param {*} [options] Override http request option.
|
|
3420
|
+
* @throws {RequiredError}
|
|
3421
|
+
*/
|
|
3422
|
+
projectJointPositionDirectionConstraint(cell, projectJointPositionDirectionConstraintRequest, options) {
|
|
3423
|
+
return KinematicsApiFp(this.configuration).projectJointPositionDirectionConstraint(cell, projectJointPositionDirectionConstraintRequest, options).then((request) => request(this.axios, this.basePath));
|
|
3424
|
+
}
|
|
3379
3425
|
};
|
|
3380
3426
|
/**
|
|
3381
3427
|
* LicenseApi - axios parameter creator
|
|
@@ -3493,45 +3539,45 @@ const LicenseApiFp = function(configuration) {
|
|
|
3493
3539
|
const localVarAxiosArgs = await localVarAxiosParamCreator.activateLicense(activateLicenseRequest, options);
|
|
3494
3540
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3495
3541
|
const localVarOperationServerBasePath = operationServerMap["LicenseApi.activateLicense"]?.[localVarOperationServerIndex]?.url;
|
|
3496
|
-
return (axios$
|
|
3542
|
+
return (axios$65, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$65, localVarOperationServerBasePath || basePath);
|
|
3497
3543
|
},
|
|
3498
3544
|
async deactivateLicense(options) {
|
|
3499
3545
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deactivateLicense(options);
|
|
3500
3546
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3501
3547
|
const localVarOperationServerBasePath = operationServerMap["LicenseApi.deactivateLicense"]?.[localVarOperationServerIndex]?.url;
|
|
3502
|
-
return (axios$
|
|
3548
|
+
return (axios$66, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$66, localVarOperationServerBasePath || basePath);
|
|
3503
3549
|
},
|
|
3504
3550
|
async getLicense(options) {
|
|
3505
3551
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getLicense(options);
|
|
3506
3552
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3507
3553
|
const localVarOperationServerBasePath = operationServerMap["LicenseApi.getLicense"]?.[localVarOperationServerIndex]?.url;
|
|
3508
|
-
return (axios$
|
|
3554
|
+
return (axios$67, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$67, localVarOperationServerBasePath || basePath);
|
|
3509
3555
|
},
|
|
3510
3556
|
async getLicenseStatus(options) {
|
|
3511
3557
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getLicenseStatus(options);
|
|
3512
3558
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3513
3559
|
const localVarOperationServerBasePath = operationServerMap["LicenseApi.getLicenseStatus"]?.[localVarOperationServerIndex]?.url;
|
|
3514
|
-
return (axios$
|
|
3560
|
+
return (axios$68, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$68, localVarOperationServerBasePath || basePath);
|
|
3515
3561
|
}
|
|
3516
3562
|
};
|
|
3517
3563
|
};
|
|
3518
3564
|
/**
|
|
3519
3565
|
* LicenseApi - factory interface
|
|
3520
3566
|
*/
|
|
3521
|
-
const LicenseApiFactory = function(configuration, basePath, axios$
|
|
3567
|
+
const LicenseApiFactory = function(configuration, basePath, axios$69) {
|
|
3522
3568
|
const localVarFp = LicenseApiFp(configuration);
|
|
3523
3569
|
return {
|
|
3524
3570
|
activateLicense(activateLicenseRequest, options) {
|
|
3525
|
-
return localVarFp.activateLicense(activateLicenseRequest, options).then((request) => request(axios$
|
|
3571
|
+
return localVarFp.activateLicense(activateLicenseRequest, options).then((request) => request(axios$69, basePath));
|
|
3526
3572
|
},
|
|
3527
3573
|
deactivateLicense(options) {
|
|
3528
|
-
return localVarFp.deactivateLicense(options).then((request) => request(axios$
|
|
3574
|
+
return localVarFp.deactivateLicense(options).then((request) => request(axios$69, basePath));
|
|
3529
3575
|
},
|
|
3530
3576
|
getLicense(options) {
|
|
3531
|
-
return localVarFp.getLicense(options).then((request) => request(axios$
|
|
3577
|
+
return localVarFp.getLicense(options).then((request) => request(axios$69, basePath));
|
|
3532
3578
|
},
|
|
3533
3579
|
getLicenseStatus(options) {
|
|
3534
|
-
return localVarFp.getLicenseStatus(options).then((request) => request(axios$
|
|
3580
|
+
return localVarFp.getLicenseStatus(options).then((request) => request(axios$69, basePath));
|
|
3535
3581
|
}
|
|
3536
3582
|
};
|
|
3537
3583
|
};
|
|
@@ -3681,36 +3727,36 @@ const MotionGroupApiFp = function(configuration) {
|
|
|
3681
3727
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getCurrentMotionGroupState(cell, controller, motionGroup, responseCoordinateSystem, options);
|
|
3682
3728
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3683
3729
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupApi.getCurrentMotionGroupState"]?.[localVarOperationServerIndex]?.url;
|
|
3684
|
-
return (axios$
|
|
3730
|
+
return (axios$70, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$70, localVarOperationServerBasePath || basePath);
|
|
3685
3731
|
},
|
|
3686
3732
|
async getMotionGroupDescription(cell, controller, motionGroup, options) {
|
|
3687
3733
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupDescription(cell, controller, motionGroup, options);
|
|
3688
3734
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3689
3735
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupApi.getMotionGroupDescription"]?.[localVarOperationServerIndex]?.url;
|
|
3690
|
-
return (axios$
|
|
3736
|
+
return (axios$71, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$71, localVarOperationServerBasePath || basePath);
|
|
3691
3737
|
},
|
|
3692
3738
|
async streamMotionGroupState(cell, controller, motionGroup, responseRate, responseCoordinateSystem, options) {
|
|
3693
3739
|
const localVarAxiosArgs = await localVarAxiosParamCreator.streamMotionGroupState(cell, controller, motionGroup, responseRate, responseCoordinateSystem, options);
|
|
3694
3740
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3695
3741
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupApi.streamMotionGroupState"]?.[localVarOperationServerIndex]?.url;
|
|
3696
|
-
return (axios$
|
|
3742
|
+
return (axios$72, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$72, localVarOperationServerBasePath || basePath);
|
|
3697
3743
|
}
|
|
3698
3744
|
};
|
|
3699
3745
|
};
|
|
3700
3746
|
/**
|
|
3701
3747
|
* MotionGroupApi - factory interface
|
|
3702
3748
|
*/
|
|
3703
|
-
const MotionGroupApiFactory = function(configuration, basePath, axios$
|
|
3749
|
+
const MotionGroupApiFactory = function(configuration, basePath, axios$73) {
|
|
3704
3750
|
const localVarFp = MotionGroupApiFp(configuration);
|
|
3705
3751
|
return {
|
|
3706
3752
|
getCurrentMotionGroupState(cell, controller, motionGroup, responseCoordinateSystem, options) {
|
|
3707
|
-
return localVarFp.getCurrentMotionGroupState(cell, controller, motionGroup, responseCoordinateSystem, options).then((request) => request(axios$
|
|
3753
|
+
return localVarFp.getCurrentMotionGroupState(cell, controller, motionGroup, responseCoordinateSystem, options).then((request) => request(axios$73, basePath));
|
|
3708
3754
|
},
|
|
3709
3755
|
getMotionGroupDescription(cell, controller, motionGroup, options) {
|
|
3710
|
-
return localVarFp.getMotionGroupDescription(cell, controller, motionGroup, options).then((request) => request(axios$
|
|
3756
|
+
return localVarFp.getMotionGroupDescription(cell, controller, motionGroup, options).then((request) => request(axios$73, basePath));
|
|
3711
3757
|
},
|
|
3712
3758
|
streamMotionGroupState(cell, controller, motionGroup, responseRate, responseCoordinateSystem, options) {
|
|
3713
|
-
return localVarFp.streamMotionGroupState(cell, controller, motionGroup, responseRate, responseCoordinateSystem, options).then((request) => request(axios$
|
|
3759
|
+
return localVarFp.streamMotionGroupState(cell, controller, motionGroup, responseRate, responseCoordinateSystem, options).then((request) => request(axios$73, basePath));
|
|
3714
3760
|
}
|
|
3715
3761
|
};
|
|
3716
3762
|
};
|
|
@@ -3903,54 +3949,54 @@ const MotionGroupModelsApiFp = function(configuration) {
|
|
|
3903
3949
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupCollisionModel(motionGroupModel, options);
|
|
3904
3950
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3905
3951
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupCollisionModel"]?.[localVarOperationServerIndex]?.url;
|
|
3906
|
-
return (axios$
|
|
3952
|
+
return (axios$74, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$74, localVarOperationServerBasePath || basePath);
|
|
3907
3953
|
},
|
|
3908
3954
|
async getMotionGroupGlbModel(motionGroupModel, options) {
|
|
3909
3955
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupGlbModel(motionGroupModel, options);
|
|
3910
3956
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3911
3957
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupGlbModel"]?.[localVarOperationServerIndex]?.url;
|
|
3912
|
-
return (axios$
|
|
3958
|
+
return (axios$75, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$75, localVarOperationServerBasePath || basePath);
|
|
3913
3959
|
},
|
|
3914
3960
|
async getMotionGroupKinematicModel(motionGroupModel, options) {
|
|
3915
3961
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupKinematicModel(motionGroupModel, options);
|
|
3916
3962
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3917
3963
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupKinematicModel"]?.[localVarOperationServerIndex]?.url;
|
|
3918
|
-
return (axios$
|
|
3964
|
+
return (axios$76, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$76, localVarOperationServerBasePath || basePath);
|
|
3919
3965
|
},
|
|
3920
3966
|
async getMotionGroupModels(options) {
|
|
3921
3967
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupModels(options);
|
|
3922
3968
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3923
3969
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupModels"]?.[localVarOperationServerIndex]?.url;
|
|
3924
|
-
return (axios$
|
|
3970
|
+
return (axios$77, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$77, localVarOperationServerBasePath || basePath);
|
|
3925
3971
|
},
|
|
3926
3972
|
async getMotionGroupUsdModel(motionGroupModel, options) {
|
|
3927
3973
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupUsdModel(motionGroupModel, options);
|
|
3928
3974
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3929
3975
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupUsdModel"]?.[localVarOperationServerIndex]?.url;
|
|
3930
|
-
return (axios$
|
|
3976
|
+
return (axios$78, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$78, localVarOperationServerBasePath || basePath);
|
|
3931
3977
|
}
|
|
3932
3978
|
};
|
|
3933
3979
|
};
|
|
3934
3980
|
/**
|
|
3935
3981
|
* MotionGroupModelsApi - factory interface
|
|
3936
3982
|
*/
|
|
3937
|
-
const MotionGroupModelsApiFactory = function(configuration, basePath, axios$
|
|
3983
|
+
const MotionGroupModelsApiFactory = function(configuration, basePath, axios$79) {
|
|
3938
3984
|
const localVarFp = MotionGroupModelsApiFp(configuration);
|
|
3939
3985
|
return {
|
|
3940
3986
|
getMotionGroupCollisionModel(motionGroupModel, options) {
|
|
3941
|
-
return localVarFp.getMotionGroupCollisionModel(motionGroupModel, options).then((request) => request(axios$
|
|
3987
|
+
return localVarFp.getMotionGroupCollisionModel(motionGroupModel, options).then((request) => request(axios$79, basePath));
|
|
3942
3988
|
},
|
|
3943
3989
|
getMotionGroupGlbModel(motionGroupModel, options) {
|
|
3944
|
-
return localVarFp.getMotionGroupGlbModel(motionGroupModel, options).then((request) => request(axios$
|
|
3990
|
+
return localVarFp.getMotionGroupGlbModel(motionGroupModel, options).then((request) => request(axios$79, basePath));
|
|
3945
3991
|
},
|
|
3946
3992
|
getMotionGroupKinematicModel(motionGroupModel, options) {
|
|
3947
|
-
return localVarFp.getMotionGroupKinematicModel(motionGroupModel, options).then((request) => request(axios$
|
|
3993
|
+
return localVarFp.getMotionGroupKinematicModel(motionGroupModel, options).then((request) => request(axios$79, basePath));
|
|
3948
3994
|
},
|
|
3949
3995
|
getMotionGroupModels(options) {
|
|
3950
|
-
return localVarFp.getMotionGroupModels(options).then((request) => request(axios$
|
|
3996
|
+
return localVarFp.getMotionGroupModels(options).then((request) => request(axios$79, basePath));
|
|
3951
3997
|
},
|
|
3952
3998
|
getMotionGroupUsdModel(motionGroupModel, options) {
|
|
3953
|
-
return localVarFp.getMotionGroupUsdModel(motionGroupModel, options).then((request) => request(axios$
|
|
3999
|
+
return localVarFp.getMotionGroupUsdModel(motionGroupModel, options).then((request) => request(axios$79, basePath));
|
|
3954
4000
|
}
|
|
3955
4001
|
};
|
|
3956
4002
|
};
|
|
@@ -4101,36 +4147,36 @@ const NOVACloudApiFp = function(configuration) {
|
|
|
4101
4147
|
const localVarAxiosArgs = await localVarAxiosParamCreator.connectToNovaCloud(completionTimeout, cloudConnectionRequest, options);
|
|
4102
4148
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4103
4149
|
const localVarOperationServerBasePath = operationServerMap["NOVACloudApi.connectToNovaCloud"]?.[localVarOperationServerIndex]?.url;
|
|
4104
|
-
return (axios$
|
|
4150
|
+
return (axios$80, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$80, localVarOperationServerBasePath || basePath);
|
|
4105
4151
|
},
|
|
4106
4152
|
async disconnectFromNovaCloud(completionTimeout, options) {
|
|
4107
4153
|
const localVarAxiosArgs = await localVarAxiosParamCreator.disconnectFromNovaCloud(completionTimeout, options);
|
|
4108
4154
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4109
4155
|
const localVarOperationServerBasePath = operationServerMap["NOVACloudApi.disconnectFromNovaCloud"]?.[localVarOperationServerIndex]?.url;
|
|
4110
|
-
return (axios$
|
|
4156
|
+
return (axios$81, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$81, localVarOperationServerBasePath || basePath);
|
|
4111
4157
|
},
|
|
4112
4158
|
async getNovaCloudConfig(options) {
|
|
4113
4159
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getNovaCloudConfig(options);
|
|
4114
4160
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4115
4161
|
const localVarOperationServerBasePath = operationServerMap["NOVACloudApi.getNovaCloudConfig"]?.[localVarOperationServerIndex]?.url;
|
|
4116
|
-
return (axios$
|
|
4162
|
+
return (axios$82, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$82, localVarOperationServerBasePath || basePath);
|
|
4117
4163
|
}
|
|
4118
4164
|
};
|
|
4119
4165
|
};
|
|
4120
4166
|
/**
|
|
4121
4167
|
* NOVACloudApi - factory interface
|
|
4122
4168
|
*/
|
|
4123
|
-
const NOVACloudApiFactory = function(configuration, basePath, axios$
|
|
4169
|
+
const NOVACloudApiFactory = function(configuration, basePath, axios$83) {
|
|
4124
4170
|
const localVarFp = NOVACloudApiFp(configuration);
|
|
4125
4171
|
return {
|
|
4126
4172
|
connectToNovaCloud(completionTimeout, cloudConnectionRequest, options) {
|
|
4127
|
-
return localVarFp.connectToNovaCloud(completionTimeout, cloudConnectionRequest, options).then((request) => request(axios$
|
|
4173
|
+
return localVarFp.connectToNovaCloud(completionTimeout, cloudConnectionRequest, options).then((request) => request(axios$83, basePath));
|
|
4128
4174
|
},
|
|
4129
4175
|
disconnectFromNovaCloud(completionTimeout, options) {
|
|
4130
|
-
return localVarFp.disconnectFromNovaCloud(completionTimeout, options).then((request) => request(axios$
|
|
4176
|
+
return localVarFp.disconnectFromNovaCloud(completionTimeout, options).then((request) => request(axios$83, basePath));
|
|
4131
4177
|
},
|
|
4132
4178
|
getNovaCloudConfig(options) {
|
|
4133
|
-
return localVarFp.getNovaCloudConfig(options).then((request) => request(axios$
|
|
4179
|
+
return localVarFp.getNovaCloudConfig(options).then((request) => request(axios$83, basePath));
|
|
4134
4180
|
}
|
|
4135
4181
|
};
|
|
4136
4182
|
};
|
|
@@ -4296,45 +4342,45 @@ const ProgramApiFp = function(configuration) {
|
|
|
4296
4342
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getProgram(cell, program, options);
|
|
4297
4343
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4298
4344
|
const localVarOperationServerBasePath = operationServerMap["ProgramApi.getProgram"]?.[localVarOperationServerIndex]?.url;
|
|
4299
|
-
return (axios$
|
|
4345
|
+
return (axios$84, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$84, localVarOperationServerBasePath || basePath);
|
|
4300
4346
|
},
|
|
4301
4347
|
async listPrograms(cell, options) {
|
|
4302
4348
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listPrograms(cell, options);
|
|
4303
4349
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4304
4350
|
const localVarOperationServerBasePath = operationServerMap["ProgramApi.listPrograms"]?.[localVarOperationServerIndex]?.url;
|
|
4305
|
-
return (axios$
|
|
4351
|
+
return (axios$85, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$85, localVarOperationServerBasePath || basePath);
|
|
4306
4352
|
},
|
|
4307
4353
|
async startProgram(cell, program, programStartRequest, options) {
|
|
4308
4354
|
const localVarAxiosArgs = await localVarAxiosParamCreator.startProgram(cell, program, programStartRequest, options);
|
|
4309
4355
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4310
4356
|
const localVarOperationServerBasePath = operationServerMap["ProgramApi.startProgram"]?.[localVarOperationServerIndex]?.url;
|
|
4311
|
-
return (axios$
|
|
4357
|
+
return (axios$86, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$86, localVarOperationServerBasePath || basePath);
|
|
4312
4358
|
},
|
|
4313
4359
|
async stopProgram(cell, program, options) {
|
|
4314
4360
|
const localVarAxiosArgs = await localVarAxiosParamCreator.stopProgram(cell, program, options);
|
|
4315
4361
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4316
4362
|
const localVarOperationServerBasePath = operationServerMap["ProgramApi.stopProgram"]?.[localVarOperationServerIndex]?.url;
|
|
4317
|
-
return (axios$
|
|
4363
|
+
return (axios$87, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$87, localVarOperationServerBasePath || basePath);
|
|
4318
4364
|
}
|
|
4319
4365
|
};
|
|
4320
4366
|
};
|
|
4321
4367
|
/**
|
|
4322
4368
|
* ProgramApi - factory interface
|
|
4323
4369
|
*/
|
|
4324
|
-
const ProgramApiFactory = function(configuration, basePath, axios$
|
|
4370
|
+
const ProgramApiFactory = function(configuration, basePath, axios$88) {
|
|
4325
4371
|
const localVarFp = ProgramApiFp(configuration);
|
|
4326
4372
|
return {
|
|
4327
4373
|
getProgram(cell, program, options) {
|
|
4328
|
-
return localVarFp.getProgram(cell, program, options).then((request) => request(axios$
|
|
4374
|
+
return localVarFp.getProgram(cell, program, options).then((request) => request(axios$88, basePath));
|
|
4329
4375
|
},
|
|
4330
4376
|
listPrograms(cell, options) {
|
|
4331
|
-
return localVarFp.listPrograms(cell, options).then((request) => request(axios$
|
|
4377
|
+
return localVarFp.listPrograms(cell, options).then((request) => request(axios$88, basePath));
|
|
4332
4378
|
},
|
|
4333
4379
|
startProgram(cell, program, programStartRequest, options) {
|
|
4334
|
-
return localVarFp.startProgram(cell, program, programStartRequest, options).then((request) => request(axios$
|
|
4380
|
+
return localVarFp.startProgram(cell, program, programStartRequest, options).then((request) => request(axios$88, basePath));
|
|
4335
4381
|
},
|
|
4336
4382
|
stopProgram(cell, program, options) {
|
|
4337
|
-
return localVarFp.stopProgram(cell, program, options).then((request) => request(axios$
|
|
4383
|
+
return localVarFp.stopProgram(cell, program, options).then((request) => request(axios$88, basePath));
|
|
4338
4384
|
}
|
|
4339
4385
|
};
|
|
4340
4386
|
};
|
|
@@ -4455,27 +4501,27 @@ const RobotConfigurationsApiFp = function(configuration) {
|
|
|
4455
4501
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getControllerConfigFromArpScan(robotControllerConfigurationRequest, options);
|
|
4456
4502
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4457
4503
|
const localVarOperationServerBasePath = operationServerMap["RobotConfigurationsApi.getControllerConfigFromArpScan"]?.[localVarOperationServerIndex]?.url;
|
|
4458
|
-
return (axios$
|
|
4504
|
+
return (axios$89, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$89, localVarOperationServerBasePath || basePath);
|
|
4459
4505
|
},
|
|
4460
4506
|
async getRobotConfigurations(options) {
|
|
4461
4507
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getRobotConfigurations(options);
|
|
4462
4508
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4463
4509
|
const localVarOperationServerBasePath = operationServerMap["RobotConfigurationsApi.getRobotConfigurations"]?.[localVarOperationServerIndex]?.url;
|
|
4464
|
-
return (axios$
|
|
4510
|
+
return (axios$90, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$90, localVarOperationServerBasePath || basePath);
|
|
4465
4511
|
}
|
|
4466
4512
|
};
|
|
4467
4513
|
};
|
|
4468
4514
|
/**
|
|
4469
4515
|
* RobotConfigurationsApi - factory interface
|
|
4470
4516
|
*/
|
|
4471
|
-
const RobotConfigurationsApiFactory = function(configuration, basePath, axios$
|
|
4517
|
+
const RobotConfigurationsApiFactory = function(configuration, basePath, axios$91) {
|
|
4472
4518
|
const localVarFp = RobotConfigurationsApiFp(configuration);
|
|
4473
4519
|
return {
|
|
4474
4520
|
getControllerConfigFromArpScan(robotControllerConfigurationRequest, options) {
|
|
4475
|
-
return localVarFp.getControllerConfigFromArpScan(robotControllerConfigurationRequest, options).then((request) => request(axios$
|
|
4521
|
+
return localVarFp.getControllerConfigFromArpScan(robotControllerConfigurationRequest, options).then((request) => request(axios$91, basePath));
|
|
4476
4522
|
},
|
|
4477
4523
|
getRobotConfigurations(options) {
|
|
4478
|
-
return localVarFp.getRobotConfigurations(options).then((request) => request(axios$
|
|
4524
|
+
return localVarFp.getRobotConfigurations(options).then((request) => request(axios$91, basePath));
|
|
4479
4525
|
}
|
|
4480
4526
|
};
|
|
4481
4527
|
};
|
|
@@ -4504,6 +4550,70 @@ var RobotConfigurationsApi = class extends BaseAPI {
|
|
|
4504
4550
|
}
|
|
4505
4551
|
};
|
|
4506
4552
|
/**
|
|
4553
|
+
* SessionApi - axios parameter creator
|
|
4554
|
+
*/
|
|
4555
|
+
const SessionApiAxiosParamCreator = function(configuration) {
|
|
4556
|
+
return { getSession: async (options = {}) => {
|
|
4557
|
+
const localVarUrlObj = new URL(`/session`, DUMMY_BASE_URL);
|
|
4558
|
+
let baseOptions;
|
|
4559
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
4560
|
+
const localVarRequestOptions = {
|
|
4561
|
+
method: "GET",
|
|
4562
|
+
...baseOptions,
|
|
4563
|
+
...options
|
|
4564
|
+
};
|
|
4565
|
+
const localVarHeaderParameter = {};
|
|
4566
|
+
const localVarQueryParameter = {};
|
|
4567
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
4568
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4569
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4570
|
+
localVarRequestOptions.headers = {
|
|
4571
|
+
...localVarHeaderParameter,
|
|
4572
|
+
...headersFromBaseOptions,
|
|
4573
|
+
...options.headers
|
|
4574
|
+
};
|
|
4575
|
+
return {
|
|
4576
|
+
url: toPathString(localVarUrlObj),
|
|
4577
|
+
options: localVarRequestOptions
|
|
4578
|
+
};
|
|
4579
|
+
} };
|
|
4580
|
+
};
|
|
4581
|
+
/**
|
|
4582
|
+
* SessionApi - functional programming interface
|
|
4583
|
+
*/
|
|
4584
|
+
const SessionApiFp = function(configuration) {
|
|
4585
|
+
const localVarAxiosParamCreator = SessionApiAxiosParamCreator(configuration);
|
|
4586
|
+
return { async getSession(options) {
|
|
4587
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getSession(options);
|
|
4588
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4589
|
+
const localVarOperationServerBasePath = operationServerMap["SessionApi.getSession"]?.[localVarOperationServerIndex]?.url;
|
|
4590
|
+
return (axios$92, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$92, localVarOperationServerBasePath || basePath);
|
|
4591
|
+
} };
|
|
4592
|
+
};
|
|
4593
|
+
/**
|
|
4594
|
+
* SessionApi - factory interface
|
|
4595
|
+
*/
|
|
4596
|
+
const SessionApiFactory = function(configuration, basePath, axios$93) {
|
|
4597
|
+
const localVarFp = SessionApiFp(configuration);
|
|
4598
|
+
return { getSession(options) {
|
|
4599
|
+
return localVarFp.getSession(options).then((request) => request(axios$93, basePath));
|
|
4600
|
+
} };
|
|
4601
|
+
};
|
|
4602
|
+
/**
|
|
4603
|
+
* SessionApi - object-oriented interface
|
|
4604
|
+
*/
|
|
4605
|
+
var SessionApi = class extends BaseAPI {
|
|
4606
|
+
/**
|
|
4607
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns - session metadata, - user identity, - capabilities, and - token lifetime. When authentication and authorization are configured, the response reflects the currently authenticated user. On unmanaged instances (no authentication and authorization is configured), a default anonymous session is returned with empty user fields, no capabilities, and zero-value timestamps.
|
|
4608
|
+
* @summary Get current user session information
|
|
4609
|
+
* @param {*} [options] Override http request option.
|
|
4610
|
+
* @throws {RequiredError}
|
|
4611
|
+
*/
|
|
4612
|
+
getSession(options) {
|
|
4613
|
+
return SessionApiFp(this.configuration).getSession(options).then((request) => request(this.axios, this.basePath));
|
|
4614
|
+
}
|
|
4615
|
+
};
|
|
4616
|
+
/**
|
|
4507
4617
|
* StoreCollisionComponentsApi - axios parameter creator
|
|
4508
4618
|
*/
|
|
4509
4619
|
const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
|
|
@@ -4928,144 +5038,144 @@ const StoreCollisionComponentsApiFp = function(configuration) {
|
|
|
4928
5038
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteStoredCollider(cell, collider, options);
|
|
4929
5039
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4930
5040
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.deleteStoredCollider"]?.[localVarOperationServerIndex]?.url;
|
|
4931
|
-
return (axios$
|
|
5041
|
+
return (axios$94, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$94, localVarOperationServerBasePath || basePath);
|
|
4932
5042
|
},
|
|
4933
5043
|
async deleteStoredCollisionLinkChain(cell, linkChain, options) {
|
|
4934
5044
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteStoredCollisionLinkChain(cell, linkChain, options);
|
|
4935
5045
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4936
5046
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.deleteStoredCollisionLinkChain"]?.[localVarOperationServerIndex]?.url;
|
|
4937
|
-
return (axios$
|
|
5047
|
+
return (axios$95, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$95, localVarOperationServerBasePath || basePath);
|
|
4938
5048
|
},
|
|
4939
5049
|
async deleteStoredCollisionTool(cell, tool, options) {
|
|
4940
5050
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteStoredCollisionTool(cell, tool, options);
|
|
4941
5051
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4942
5052
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.deleteStoredCollisionTool"]?.[localVarOperationServerIndex]?.url;
|
|
4943
|
-
return (axios$
|
|
5053
|
+
return (axios$96, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$96, localVarOperationServerBasePath || basePath);
|
|
4944
5054
|
},
|
|
4945
5055
|
async getStoredCollider(cell, collider, options) {
|
|
4946
5056
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getStoredCollider(cell, collider, options);
|
|
4947
5057
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4948
5058
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.getStoredCollider"]?.[localVarOperationServerIndex]?.url;
|
|
4949
|
-
return (axios$
|
|
5059
|
+
return (axios$97, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$97, localVarOperationServerBasePath || basePath);
|
|
4950
5060
|
},
|
|
4951
5061
|
async getStoredCollisionLinkChain(cell, linkChain, options) {
|
|
4952
5062
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getStoredCollisionLinkChain(cell, linkChain, options);
|
|
4953
5063
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4954
5064
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.getStoredCollisionLinkChain"]?.[localVarOperationServerIndex]?.url;
|
|
4955
|
-
return (axios$
|
|
5065
|
+
return (axios$98, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$98, localVarOperationServerBasePath || basePath);
|
|
4956
5066
|
},
|
|
4957
5067
|
async getStoredCollisionTool(cell, tool, options) {
|
|
4958
5068
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getStoredCollisionTool(cell, tool, options);
|
|
4959
5069
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4960
5070
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.getStoredCollisionTool"]?.[localVarOperationServerIndex]?.url;
|
|
4961
|
-
return (axios$
|
|
5071
|
+
return (axios$99, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$99, localVarOperationServerBasePath || basePath);
|
|
4962
5072
|
},
|
|
4963
5073
|
async listCollisionLinkChains(cell, options) {
|
|
4964
5074
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listCollisionLinkChains(cell, options);
|
|
4965
5075
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4966
5076
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listCollisionLinkChains"]?.[localVarOperationServerIndex]?.url;
|
|
4967
|
-
return (axios$
|
|
5077
|
+
return (axios$100, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$100, localVarOperationServerBasePath || basePath);
|
|
4968
5078
|
},
|
|
4969
5079
|
async listCollisionLinkChainsKeys(cell, options) {
|
|
4970
5080
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listCollisionLinkChainsKeys(cell, options);
|
|
4971
5081
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4972
5082
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listCollisionLinkChainsKeys"]?.[localVarOperationServerIndex]?.url;
|
|
4973
|
-
return (axios$
|
|
5083
|
+
return (axios$101, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$101, localVarOperationServerBasePath || basePath);
|
|
4974
5084
|
},
|
|
4975
5085
|
async listStoredColliders(cell, options) {
|
|
4976
5086
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredColliders(cell, options);
|
|
4977
5087
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4978
5088
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listStoredColliders"]?.[localVarOperationServerIndex]?.url;
|
|
4979
|
-
return (axios$
|
|
5089
|
+
return (axios$102, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$102, localVarOperationServerBasePath || basePath);
|
|
4980
5090
|
},
|
|
4981
5091
|
async listStoredCollidersKeys(cell, options) {
|
|
4982
5092
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredCollidersKeys(cell, options);
|
|
4983
5093
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4984
5094
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listStoredCollidersKeys"]?.[localVarOperationServerIndex]?.url;
|
|
4985
|
-
return (axios$
|
|
5095
|
+
return (axios$103, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$103, localVarOperationServerBasePath || basePath);
|
|
4986
5096
|
},
|
|
4987
5097
|
async listStoredCollisionTools(cell, options) {
|
|
4988
5098
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredCollisionTools(cell, options);
|
|
4989
5099
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4990
5100
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listStoredCollisionTools"]?.[localVarOperationServerIndex]?.url;
|
|
4991
|
-
return (axios$
|
|
5101
|
+
return (axios$104, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$104, localVarOperationServerBasePath || basePath);
|
|
4992
5102
|
},
|
|
4993
5103
|
async listStoredCollisionToolsKeys(cell, options) {
|
|
4994
5104
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredCollisionToolsKeys(cell, options);
|
|
4995
5105
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4996
5106
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listStoredCollisionToolsKeys"]?.[localVarOperationServerIndex]?.url;
|
|
4997
|
-
return (axios$
|
|
5107
|
+
return (axios$105, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$105, localVarOperationServerBasePath || basePath);
|
|
4998
5108
|
},
|
|
4999
5109
|
async storeCollider(cell, collider, collider2, options) {
|
|
5000
5110
|
const localVarAxiosArgs = await localVarAxiosParamCreator.storeCollider(cell, collider, collider2, options);
|
|
5001
5111
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5002
5112
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.storeCollider"]?.[localVarOperationServerIndex]?.url;
|
|
5003
|
-
return (axios$
|
|
5113
|
+
return (axios$106, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$106, localVarOperationServerBasePath || basePath);
|
|
5004
5114
|
},
|
|
5005
5115
|
async storeCollisionLinkChain(cell, linkChain, collider, options) {
|
|
5006
5116
|
const localVarAxiosArgs = await localVarAxiosParamCreator.storeCollisionLinkChain(cell, linkChain, collider, options);
|
|
5007
5117
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5008
5118
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.storeCollisionLinkChain"]?.[localVarOperationServerIndex]?.url;
|
|
5009
|
-
return (axios$
|
|
5119
|
+
return (axios$107, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$107, localVarOperationServerBasePath || basePath);
|
|
5010
5120
|
},
|
|
5011
5121
|
async storeCollisionTool(cell, tool, requestBody, options) {
|
|
5012
5122
|
const localVarAxiosArgs = await localVarAxiosParamCreator.storeCollisionTool(cell, tool, requestBody, options);
|
|
5013
5123
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5014
5124
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.storeCollisionTool"]?.[localVarOperationServerIndex]?.url;
|
|
5015
|
-
return (axios$
|
|
5125
|
+
return (axios$108, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$108, localVarOperationServerBasePath || basePath);
|
|
5016
5126
|
}
|
|
5017
5127
|
};
|
|
5018
5128
|
};
|
|
5019
5129
|
/**
|
|
5020
5130
|
* StoreCollisionComponentsApi - factory interface
|
|
5021
5131
|
*/
|
|
5022
|
-
const StoreCollisionComponentsApiFactory = function(configuration, basePath, axios$
|
|
5132
|
+
const StoreCollisionComponentsApiFactory = function(configuration, basePath, axios$109) {
|
|
5023
5133
|
const localVarFp = StoreCollisionComponentsApiFp(configuration);
|
|
5024
5134
|
return {
|
|
5025
5135
|
deleteStoredCollider(cell, collider, options) {
|
|
5026
|
-
return localVarFp.deleteStoredCollider(cell, collider, options).then((request) => request(axios$
|
|
5136
|
+
return localVarFp.deleteStoredCollider(cell, collider, options).then((request) => request(axios$109, basePath));
|
|
5027
5137
|
},
|
|
5028
5138
|
deleteStoredCollisionLinkChain(cell, linkChain, options) {
|
|
5029
|
-
return localVarFp.deleteStoredCollisionLinkChain(cell, linkChain, options).then((request) => request(axios$
|
|
5139
|
+
return localVarFp.deleteStoredCollisionLinkChain(cell, linkChain, options).then((request) => request(axios$109, basePath));
|
|
5030
5140
|
},
|
|
5031
5141
|
deleteStoredCollisionTool(cell, tool, options) {
|
|
5032
|
-
return localVarFp.deleteStoredCollisionTool(cell, tool, options).then((request) => request(axios$
|
|
5142
|
+
return localVarFp.deleteStoredCollisionTool(cell, tool, options).then((request) => request(axios$109, basePath));
|
|
5033
5143
|
},
|
|
5034
5144
|
getStoredCollider(cell, collider, options) {
|
|
5035
|
-
return localVarFp.getStoredCollider(cell, collider, options).then((request) => request(axios$
|
|
5145
|
+
return localVarFp.getStoredCollider(cell, collider, options).then((request) => request(axios$109, basePath));
|
|
5036
5146
|
},
|
|
5037
5147
|
getStoredCollisionLinkChain(cell, linkChain, options) {
|
|
5038
|
-
return localVarFp.getStoredCollisionLinkChain(cell, linkChain, options).then((request) => request(axios$
|
|
5148
|
+
return localVarFp.getStoredCollisionLinkChain(cell, linkChain, options).then((request) => request(axios$109, basePath));
|
|
5039
5149
|
},
|
|
5040
5150
|
getStoredCollisionTool(cell, tool, options) {
|
|
5041
|
-
return localVarFp.getStoredCollisionTool(cell, tool, options).then((request) => request(axios$
|
|
5151
|
+
return localVarFp.getStoredCollisionTool(cell, tool, options).then((request) => request(axios$109, basePath));
|
|
5042
5152
|
},
|
|
5043
5153
|
listCollisionLinkChains(cell, options) {
|
|
5044
|
-
return localVarFp.listCollisionLinkChains(cell, options).then((request) => request(axios$
|
|
5154
|
+
return localVarFp.listCollisionLinkChains(cell, options).then((request) => request(axios$109, basePath));
|
|
5045
5155
|
},
|
|
5046
5156
|
listCollisionLinkChainsKeys(cell, options) {
|
|
5047
|
-
return localVarFp.listCollisionLinkChainsKeys(cell, options).then((request) => request(axios$
|
|
5157
|
+
return localVarFp.listCollisionLinkChainsKeys(cell, options).then((request) => request(axios$109, basePath));
|
|
5048
5158
|
},
|
|
5049
5159
|
listStoredColliders(cell, options) {
|
|
5050
|
-
return localVarFp.listStoredColliders(cell, options).then((request) => request(axios$
|
|
5160
|
+
return localVarFp.listStoredColliders(cell, options).then((request) => request(axios$109, basePath));
|
|
5051
5161
|
},
|
|
5052
5162
|
listStoredCollidersKeys(cell, options) {
|
|
5053
|
-
return localVarFp.listStoredCollidersKeys(cell, options).then((request) => request(axios$
|
|
5163
|
+
return localVarFp.listStoredCollidersKeys(cell, options).then((request) => request(axios$109, basePath));
|
|
5054
5164
|
},
|
|
5055
5165
|
listStoredCollisionTools(cell, options) {
|
|
5056
|
-
return localVarFp.listStoredCollisionTools(cell, options).then((request) => request(axios$
|
|
5166
|
+
return localVarFp.listStoredCollisionTools(cell, options).then((request) => request(axios$109, basePath));
|
|
5057
5167
|
},
|
|
5058
5168
|
listStoredCollisionToolsKeys(cell, options) {
|
|
5059
|
-
return localVarFp.listStoredCollisionToolsKeys(cell, options).then((request) => request(axios$
|
|
5169
|
+
return localVarFp.listStoredCollisionToolsKeys(cell, options).then((request) => request(axios$109, basePath));
|
|
5060
5170
|
},
|
|
5061
5171
|
storeCollider(cell, collider, collider2, options) {
|
|
5062
|
-
return localVarFp.storeCollider(cell, collider, collider2, options).then((request) => request(axios$
|
|
5172
|
+
return localVarFp.storeCollider(cell, collider, collider2, options).then((request) => request(axios$109, basePath));
|
|
5063
5173
|
},
|
|
5064
5174
|
storeCollisionLinkChain(cell, linkChain, collider, options) {
|
|
5065
|
-
return localVarFp.storeCollisionLinkChain(cell, linkChain, collider, options).then((request) => request(axios$
|
|
5175
|
+
return localVarFp.storeCollisionLinkChain(cell, linkChain, collider, options).then((request) => request(axios$109, basePath));
|
|
5066
5176
|
},
|
|
5067
5177
|
storeCollisionTool(cell, tool, requestBody, options) {
|
|
5068
|
-
return localVarFp.storeCollisionTool(cell, tool, requestBody, options).then((request) => request(axios$
|
|
5178
|
+
return localVarFp.storeCollisionTool(cell, tool, requestBody, options).then((request) => request(axios$109, basePath));
|
|
5069
5179
|
}
|
|
5070
5180
|
};
|
|
5071
5181
|
};
|
|
@@ -5389,54 +5499,54 @@ const StoreCollisionSetupsApiFp = function(configuration) {
|
|
|
5389
5499
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteStoredCollisionSetup(cell, setup, options);
|
|
5390
5500
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5391
5501
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionSetupsApi.deleteStoredCollisionSetup"]?.[localVarOperationServerIndex]?.url;
|
|
5392
|
-
return (axios$
|
|
5502
|
+
return (axios$110, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$110, localVarOperationServerBasePath || basePath);
|
|
5393
5503
|
},
|
|
5394
5504
|
async getStoredCollisionSetup(cell, setup, options) {
|
|
5395
5505
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getStoredCollisionSetup(cell, setup, options);
|
|
5396
5506
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5397
5507
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionSetupsApi.getStoredCollisionSetup"]?.[localVarOperationServerIndex]?.url;
|
|
5398
|
-
return (axios$
|
|
5508
|
+
return (axios$111, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$111, localVarOperationServerBasePath || basePath);
|
|
5399
5509
|
},
|
|
5400
5510
|
async listStoredCollisionSetups(cell, options) {
|
|
5401
5511
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredCollisionSetups(cell, options);
|
|
5402
5512
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5403
5513
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionSetupsApi.listStoredCollisionSetups"]?.[localVarOperationServerIndex]?.url;
|
|
5404
|
-
return (axios$
|
|
5514
|
+
return (axios$112, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$112, localVarOperationServerBasePath || basePath);
|
|
5405
5515
|
},
|
|
5406
5516
|
async listStoredCollisionSetupsKeys(cell, options) {
|
|
5407
5517
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredCollisionSetupsKeys(cell, options);
|
|
5408
5518
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5409
5519
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionSetupsApi.listStoredCollisionSetupsKeys"]?.[localVarOperationServerIndex]?.url;
|
|
5410
|
-
return (axios$
|
|
5520
|
+
return (axios$113, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$113, localVarOperationServerBasePath || basePath);
|
|
5411
5521
|
},
|
|
5412
5522
|
async storeCollisionSetup(cell, setup, collisionSetup, options) {
|
|
5413
5523
|
const localVarAxiosArgs = await localVarAxiosParamCreator.storeCollisionSetup(cell, setup, collisionSetup, options);
|
|
5414
5524
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5415
5525
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionSetupsApi.storeCollisionSetup"]?.[localVarOperationServerIndex]?.url;
|
|
5416
|
-
return (axios$
|
|
5526
|
+
return (axios$114, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$114, localVarOperationServerBasePath || basePath);
|
|
5417
5527
|
}
|
|
5418
5528
|
};
|
|
5419
5529
|
};
|
|
5420
5530
|
/**
|
|
5421
5531
|
* StoreCollisionSetupsApi - factory interface
|
|
5422
5532
|
*/
|
|
5423
|
-
const StoreCollisionSetupsApiFactory = function(configuration, basePath, axios$
|
|
5533
|
+
const StoreCollisionSetupsApiFactory = function(configuration, basePath, axios$115) {
|
|
5424
5534
|
const localVarFp = StoreCollisionSetupsApiFp(configuration);
|
|
5425
5535
|
return {
|
|
5426
5536
|
deleteStoredCollisionSetup(cell, setup, options) {
|
|
5427
|
-
return localVarFp.deleteStoredCollisionSetup(cell, setup, options).then((request) => request(axios$
|
|
5537
|
+
return localVarFp.deleteStoredCollisionSetup(cell, setup, options).then((request) => request(axios$115, basePath));
|
|
5428
5538
|
},
|
|
5429
5539
|
getStoredCollisionSetup(cell, setup, options) {
|
|
5430
|
-
return localVarFp.getStoredCollisionSetup(cell, setup, options).then((request) => request(axios$
|
|
5540
|
+
return localVarFp.getStoredCollisionSetup(cell, setup, options).then((request) => request(axios$115, basePath));
|
|
5431
5541
|
},
|
|
5432
5542
|
listStoredCollisionSetups(cell, options) {
|
|
5433
|
-
return localVarFp.listStoredCollisionSetups(cell, options).then((request) => request(axios$
|
|
5543
|
+
return localVarFp.listStoredCollisionSetups(cell, options).then((request) => request(axios$115, basePath));
|
|
5434
5544
|
},
|
|
5435
5545
|
listStoredCollisionSetupsKeys(cell, options) {
|
|
5436
|
-
return localVarFp.listStoredCollisionSetupsKeys(cell, options).then((request) => request(axios$
|
|
5546
|
+
return localVarFp.listStoredCollisionSetupsKeys(cell, options).then((request) => request(axios$115, basePath));
|
|
5437
5547
|
},
|
|
5438
5548
|
storeCollisionSetup(cell, setup, collisionSetup, options) {
|
|
5439
|
-
return localVarFp.storeCollisionSetup(cell, setup, collisionSetup, options).then((request) => request(axios$
|
|
5549
|
+
return localVarFp.storeCollisionSetup(cell, setup, collisionSetup, options).then((request) => request(axios$115, basePath));
|
|
5440
5550
|
}
|
|
5441
5551
|
};
|
|
5442
5552
|
};
|
|
@@ -5681,63 +5791,63 @@ const StoreObjectApiFp = function(configuration) {
|
|
|
5681
5791
|
const localVarAxiosArgs = await localVarAxiosParamCreator.clearAllObjects(cell, options);
|
|
5682
5792
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5683
5793
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.clearAllObjects"]?.[localVarOperationServerIndex]?.url;
|
|
5684
|
-
return (axios$
|
|
5794
|
+
return (axios$116, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$116, localVarOperationServerBasePath || basePath);
|
|
5685
5795
|
},
|
|
5686
5796
|
async deleteObject(cell, key, options) {
|
|
5687
5797
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteObject(cell, key, options);
|
|
5688
5798
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5689
5799
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.deleteObject"]?.[localVarOperationServerIndex]?.url;
|
|
5690
|
-
return (axios$
|
|
5800
|
+
return (axios$117, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$117, localVarOperationServerBasePath || basePath);
|
|
5691
5801
|
},
|
|
5692
5802
|
async getObject(cell, key, options) {
|
|
5693
5803
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getObject(cell, key, options);
|
|
5694
5804
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5695
5805
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.getObject"]?.[localVarOperationServerIndex]?.url;
|
|
5696
|
-
return (axios$
|
|
5806
|
+
return (axios$118, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$118, localVarOperationServerBasePath || basePath);
|
|
5697
5807
|
},
|
|
5698
5808
|
async getObjectMetadata(cell, key, options) {
|
|
5699
5809
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getObjectMetadata(cell, key, options);
|
|
5700
5810
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5701
5811
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.getObjectMetadata"]?.[localVarOperationServerIndex]?.url;
|
|
5702
|
-
return (axios$
|
|
5812
|
+
return (axios$119, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$119, localVarOperationServerBasePath || basePath);
|
|
5703
5813
|
},
|
|
5704
5814
|
async listAllObjectKeys(cell, options) {
|
|
5705
5815
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listAllObjectKeys(cell, options);
|
|
5706
5816
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5707
5817
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.listAllObjectKeys"]?.[localVarOperationServerIndex]?.url;
|
|
5708
|
-
return (axios$
|
|
5818
|
+
return (axios$120, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$120, localVarOperationServerBasePath || basePath);
|
|
5709
5819
|
},
|
|
5710
5820
|
async storeObject(cell, key, xMetadata, anyValue, options) {
|
|
5711
5821
|
const localVarAxiosArgs = await localVarAxiosParamCreator.storeObject(cell, key, xMetadata, anyValue, options);
|
|
5712
5822
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5713
5823
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.storeObject"]?.[localVarOperationServerIndex]?.url;
|
|
5714
|
-
return (axios$
|
|
5824
|
+
return (axios$121, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$121, localVarOperationServerBasePath || basePath);
|
|
5715
5825
|
}
|
|
5716
5826
|
};
|
|
5717
5827
|
};
|
|
5718
5828
|
/**
|
|
5719
5829
|
* StoreObjectApi - factory interface
|
|
5720
5830
|
*/
|
|
5721
|
-
const StoreObjectApiFactory = function(configuration, basePath, axios$
|
|
5831
|
+
const StoreObjectApiFactory = function(configuration, basePath, axios$122) {
|
|
5722
5832
|
const localVarFp = StoreObjectApiFp(configuration);
|
|
5723
5833
|
return {
|
|
5724
5834
|
clearAllObjects(cell, options) {
|
|
5725
|
-
return localVarFp.clearAllObjects(cell, options).then((request) => request(axios$
|
|
5835
|
+
return localVarFp.clearAllObjects(cell, options).then((request) => request(axios$122, basePath));
|
|
5726
5836
|
},
|
|
5727
5837
|
deleteObject(cell, key, options) {
|
|
5728
|
-
return localVarFp.deleteObject(cell, key, options).then((request) => request(axios$
|
|
5838
|
+
return localVarFp.deleteObject(cell, key, options).then((request) => request(axios$122, basePath));
|
|
5729
5839
|
},
|
|
5730
5840
|
getObject(cell, key, options) {
|
|
5731
|
-
return localVarFp.getObject(cell, key, options).then((request) => request(axios$
|
|
5841
|
+
return localVarFp.getObject(cell, key, options).then((request) => request(axios$122, basePath));
|
|
5732
5842
|
},
|
|
5733
5843
|
getObjectMetadata(cell, key, options) {
|
|
5734
|
-
return localVarFp.getObjectMetadata(cell, key, options).then((request) => request(axios$
|
|
5844
|
+
return localVarFp.getObjectMetadata(cell, key, options).then((request) => request(axios$122, basePath));
|
|
5735
5845
|
},
|
|
5736
5846
|
listAllObjectKeys(cell, options) {
|
|
5737
|
-
return localVarFp.listAllObjectKeys(cell, options).then((request) => request(axios$
|
|
5847
|
+
return localVarFp.listAllObjectKeys(cell, options).then((request) => request(axios$122, basePath));
|
|
5738
5848
|
},
|
|
5739
5849
|
storeObject(cell, key, xMetadata, anyValue, options) {
|
|
5740
|
-
return localVarFp.storeObject(cell, key, xMetadata, anyValue, options).then((request) => request(axios$
|
|
5850
|
+
return localVarFp.storeObject(cell, key, xMetadata, anyValue, options).then((request) => request(axios$122, basePath));
|
|
5741
5851
|
}
|
|
5742
5852
|
};
|
|
5743
5853
|
};
|
|
@@ -6133,117 +6243,117 @@ const SystemApiFp = function(configuration) {
|
|
|
6133
6243
|
const localVarAxiosArgs = await localVarAxiosParamCreator.backupConfiguration(resources, metadata, options);
|
|
6134
6244
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6135
6245
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.backupConfiguration"]?.[localVarOperationServerIndex]?.url;
|
|
6136
|
-
return (axios$
|
|
6246
|
+
return (axios$123, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$123, localVarOperationServerBasePath || basePath);
|
|
6137
6247
|
},
|
|
6138
6248
|
async checkNovaVersionUpdate(channel, options) {
|
|
6139
6249
|
const localVarAxiosArgs = await localVarAxiosParamCreator.checkNovaVersionUpdate(channel, options);
|
|
6140
6250
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6141
6251
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.checkNovaVersionUpdate"]?.[localVarOperationServerIndex]?.url;
|
|
6142
|
-
return (axios$
|
|
6252
|
+
return (axios$124, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$124, localVarOperationServerBasePath || basePath);
|
|
6143
6253
|
},
|
|
6144
6254
|
async getArpScan(_interface, cidr, timeout, options) {
|
|
6145
6255
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getArpScan(_interface, cidr, timeout, options);
|
|
6146
6256
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6147
6257
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getArpScan"]?.[localVarOperationServerIndex]?.url;
|
|
6148
|
-
return (axios$
|
|
6258
|
+
return (axios$125, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$125, localVarOperationServerBasePath || basePath);
|
|
6149
6259
|
},
|
|
6150
6260
|
async getConfigurationBackupStatus(operationId, options) {
|
|
6151
6261
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getConfigurationBackupStatus(operationId, options);
|
|
6152
6262
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6153
6263
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getConfigurationBackupStatus"]?.[localVarOperationServerIndex]?.url;
|
|
6154
|
-
return (axios$
|
|
6264
|
+
return (axios$126, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$126, localVarOperationServerBasePath || basePath);
|
|
6155
6265
|
},
|
|
6156
6266
|
async getDiagnosePackage(options) {
|
|
6157
6267
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getDiagnosePackage(options);
|
|
6158
6268
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6159
6269
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getDiagnosePackage"]?.[localVarOperationServerIndex]?.url;
|
|
6160
|
-
return (axios$
|
|
6270
|
+
return (axios$127, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$127, localVarOperationServerBasePath || basePath);
|
|
6161
6271
|
},
|
|
6162
6272
|
async getNetworkInterfaces(options) {
|
|
6163
6273
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getNetworkInterfaces(options);
|
|
6164
6274
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6165
6275
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getNetworkInterfaces"]?.[localVarOperationServerIndex]?.url;
|
|
6166
|
-
return (axios$
|
|
6276
|
+
return (axios$128, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$128, localVarOperationServerBasePath || basePath);
|
|
6167
6277
|
},
|
|
6168
6278
|
async getNetworkState(options) {
|
|
6169
6279
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getNetworkState(options);
|
|
6170
6280
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6171
6281
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getNetworkState"]?.[localVarOperationServerIndex]?.url;
|
|
6172
|
-
return (axios$
|
|
6282
|
+
return (axios$129, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$129, localVarOperationServerBasePath || basePath);
|
|
6173
6283
|
},
|
|
6174
6284
|
async getSystemStatus(options) {
|
|
6175
6285
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getSystemStatus(options);
|
|
6176
6286
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6177
6287
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getSystemStatus"]?.[localVarOperationServerIndex]?.url;
|
|
6178
|
-
return (axios$
|
|
6288
|
+
return (axios$130, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$130, localVarOperationServerBasePath || basePath);
|
|
6179
6289
|
},
|
|
6180
6290
|
async getSystemVersion(options) {
|
|
6181
6291
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getSystemVersion(options);
|
|
6182
6292
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6183
6293
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getSystemVersion"]?.[localVarOperationServerIndex]?.url;
|
|
6184
|
-
return (axios$
|
|
6294
|
+
return (axios$131, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$131, localVarOperationServerBasePath || basePath);
|
|
6185
6295
|
},
|
|
6186
6296
|
async listConfigurationResources(options) {
|
|
6187
6297
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listConfigurationResources(options);
|
|
6188
6298
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6189
6299
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.listConfigurationResources"]?.[localVarOperationServerIndex]?.url;
|
|
6190
|
-
return (axios$
|
|
6300
|
+
return (axios$132, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$132, localVarOperationServerBasePath || basePath);
|
|
6191
6301
|
},
|
|
6192
6302
|
async restoreConfiguration(body, resources, options) {
|
|
6193
6303
|
const localVarAxiosArgs = await localVarAxiosParamCreator.restoreConfiguration(body, resources, options);
|
|
6194
6304
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6195
6305
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.restoreConfiguration"]?.[localVarOperationServerIndex]?.url;
|
|
6196
|
-
return (axios$
|
|
6306
|
+
return (axios$133, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$133, localVarOperationServerBasePath || basePath);
|
|
6197
6307
|
},
|
|
6198
6308
|
async updateNovaVersion(updateNovaVersionRequest, options) {
|
|
6199
6309
|
const localVarAxiosArgs = await localVarAxiosParamCreator.updateNovaVersion(updateNovaVersionRequest, options);
|
|
6200
6310
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6201
6311
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.updateNovaVersion"]?.[localVarOperationServerIndex]?.url;
|
|
6202
|
-
return (axios$
|
|
6312
|
+
return (axios$134, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$134, localVarOperationServerBasePath || basePath);
|
|
6203
6313
|
}
|
|
6204
6314
|
};
|
|
6205
6315
|
};
|
|
6206
6316
|
/**
|
|
6207
6317
|
* SystemApi - factory interface
|
|
6208
6318
|
*/
|
|
6209
|
-
const SystemApiFactory = function(configuration, basePath, axios$
|
|
6319
|
+
const SystemApiFactory = function(configuration, basePath, axios$135) {
|
|
6210
6320
|
const localVarFp = SystemApiFp(configuration);
|
|
6211
6321
|
return {
|
|
6212
6322
|
backupConfiguration(resources, metadata, options) {
|
|
6213
|
-
return localVarFp.backupConfiguration(resources, metadata, options).then((request) => request(axios$
|
|
6323
|
+
return localVarFp.backupConfiguration(resources, metadata, options).then((request) => request(axios$135, basePath));
|
|
6214
6324
|
},
|
|
6215
6325
|
checkNovaVersionUpdate(channel, options) {
|
|
6216
|
-
return localVarFp.checkNovaVersionUpdate(channel, options).then((request) => request(axios$
|
|
6326
|
+
return localVarFp.checkNovaVersionUpdate(channel, options).then((request) => request(axios$135, basePath));
|
|
6217
6327
|
},
|
|
6218
6328
|
getArpScan(_interface, cidr, timeout, options) {
|
|
6219
|
-
return localVarFp.getArpScan(_interface, cidr, timeout, options).then((request) => request(axios$
|
|
6329
|
+
return localVarFp.getArpScan(_interface, cidr, timeout, options).then((request) => request(axios$135, basePath));
|
|
6220
6330
|
},
|
|
6221
6331
|
getConfigurationBackupStatus(operationId, options) {
|
|
6222
|
-
return localVarFp.getConfigurationBackupStatus(operationId, options).then((request) => request(axios$
|
|
6332
|
+
return localVarFp.getConfigurationBackupStatus(operationId, options).then((request) => request(axios$135, basePath));
|
|
6223
6333
|
},
|
|
6224
6334
|
getDiagnosePackage(options) {
|
|
6225
|
-
return localVarFp.getDiagnosePackage(options).then((request) => request(axios$
|
|
6335
|
+
return localVarFp.getDiagnosePackage(options).then((request) => request(axios$135, basePath));
|
|
6226
6336
|
},
|
|
6227
6337
|
getNetworkInterfaces(options) {
|
|
6228
|
-
return localVarFp.getNetworkInterfaces(options).then((request) => request(axios$
|
|
6338
|
+
return localVarFp.getNetworkInterfaces(options).then((request) => request(axios$135, basePath));
|
|
6229
6339
|
},
|
|
6230
6340
|
getNetworkState(options) {
|
|
6231
|
-
return localVarFp.getNetworkState(options).then((request) => request(axios$
|
|
6341
|
+
return localVarFp.getNetworkState(options).then((request) => request(axios$135, basePath));
|
|
6232
6342
|
},
|
|
6233
6343
|
getSystemStatus(options) {
|
|
6234
|
-
return localVarFp.getSystemStatus(options).then((request) => request(axios$
|
|
6344
|
+
return localVarFp.getSystemStatus(options).then((request) => request(axios$135, basePath));
|
|
6235
6345
|
},
|
|
6236
6346
|
getSystemVersion(options) {
|
|
6237
|
-
return localVarFp.getSystemVersion(options).then((request) => request(axios$
|
|
6347
|
+
return localVarFp.getSystemVersion(options).then((request) => request(axios$135, basePath));
|
|
6238
6348
|
},
|
|
6239
6349
|
listConfigurationResources(options) {
|
|
6240
|
-
return localVarFp.listConfigurationResources(options).then((request) => request(axios$
|
|
6350
|
+
return localVarFp.listConfigurationResources(options).then((request) => request(axios$135, basePath));
|
|
6241
6351
|
},
|
|
6242
6352
|
restoreConfiguration(body, resources, options) {
|
|
6243
|
-
return localVarFp.restoreConfiguration(body, resources, options).then((request) => request(axios$
|
|
6353
|
+
return localVarFp.restoreConfiguration(body, resources, options).then((request) => request(axios$135, basePath));
|
|
6244
6354
|
},
|
|
6245
6355
|
updateNovaVersion(updateNovaVersionRequest, options) {
|
|
6246
|
-
return localVarFp.updateNovaVersion(updateNovaVersionRequest, options).then((request) => request(axios$
|
|
6356
|
+
return localVarFp.updateNovaVersion(updateNovaVersionRequest, options).then((request) => request(axios$135, basePath));
|
|
6247
6357
|
}
|
|
6248
6358
|
};
|
|
6249
6359
|
};
|
|
@@ -6527,54 +6637,54 @@ const TrajectoryCachingApiFp = function(configuration) {
|
|
|
6527
6637
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addTrajectory(cell, controller, addTrajectoryRequest, options);
|
|
6528
6638
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6529
6639
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryCachingApi.addTrajectory"]?.[localVarOperationServerIndex]?.url;
|
|
6530
|
-
return (axios$
|
|
6640
|
+
return (axios$136, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$136, localVarOperationServerBasePath || basePath);
|
|
6531
6641
|
},
|
|
6532
6642
|
async clearTrajectories(cell, controller, options) {
|
|
6533
6643
|
const localVarAxiosArgs = await localVarAxiosParamCreator.clearTrajectories(cell, controller, options);
|
|
6534
6644
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6535
6645
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryCachingApi.clearTrajectories"]?.[localVarOperationServerIndex]?.url;
|
|
6536
|
-
return (axios$
|
|
6646
|
+
return (axios$137, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$137, localVarOperationServerBasePath || basePath);
|
|
6537
6647
|
},
|
|
6538
6648
|
async deleteTrajectory(cell, controller, trajectory, options) {
|
|
6539
6649
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteTrajectory(cell, controller, trajectory, options);
|
|
6540
6650
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6541
6651
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryCachingApi.deleteTrajectory"]?.[localVarOperationServerIndex]?.url;
|
|
6542
|
-
return (axios$
|
|
6652
|
+
return (axios$138, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$138, localVarOperationServerBasePath || basePath);
|
|
6543
6653
|
},
|
|
6544
6654
|
async getTrajectory(cell, controller, trajectory, options) {
|
|
6545
6655
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getTrajectory(cell, controller, trajectory, options);
|
|
6546
6656
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6547
6657
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryCachingApi.getTrajectory"]?.[localVarOperationServerIndex]?.url;
|
|
6548
|
-
return (axios$
|
|
6658
|
+
return (axios$139, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$139, localVarOperationServerBasePath || basePath);
|
|
6549
6659
|
},
|
|
6550
6660
|
async listTrajectories(cell, controller, options) {
|
|
6551
6661
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listTrajectories(cell, controller, options);
|
|
6552
6662
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6553
6663
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryCachingApi.listTrajectories"]?.[localVarOperationServerIndex]?.url;
|
|
6554
|
-
return (axios$
|
|
6664
|
+
return (axios$140, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$140, localVarOperationServerBasePath || basePath);
|
|
6555
6665
|
}
|
|
6556
6666
|
};
|
|
6557
6667
|
};
|
|
6558
6668
|
/**
|
|
6559
6669
|
* TrajectoryCachingApi - factory interface
|
|
6560
6670
|
*/
|
|
6561
|
-
const TrajectoryCachingApiFactory = function(configuration, basePath, axios$
|
|
6671
|
+
const TrajectoryCachingApiFactory = function(configuration, basePath, axios$141) {
|
|
6562
6672
|
const localVarFp = TrajectoryCachingApiFp(configuration);
|
|
6563
6673
|
return {
|
|
6564
6674
|
addTrajectory(cell, controller, addTrajectoryRequest, options) {
|
|
6565
|
-
return localVarFp.addTrajectory(cell, controller, addTrajectoryRequest, options).then((request) => request(axios$
|
|
6675
|
+
return localVarFp.addTrajectory(cell, controller, addTrajectoryRequest, options).then((request) => request(axios$141, basePath));
|
|
6566
6676
|
},
|
|
6567
6677
|
clearTrajectories(cell, controller, options) {
|
|
6568
|
-
return localVarFp.clearTrajectories(cell, controller, options).then((request) => request(axios$
|
|
6678
|
+
return localVarFp.clearTrajectories(cell, controller, options).then((request) => request(axios$141, basePath));
|
|
6569
6679
|
},
|
|
6570
6680
|
deleteTrajectory(cell, controller, trajectory, options) {
|
|
6571
|
-
return localVarFp.deleteTrajectory(cell, controller, trajectory, options).then((request) => request(axios$
|
|
6681
|
+
return localVarFp.deleteTrajectory(cell, controller, trajectory, options).then((request) => request(axios$141, basePath));
|
|
6572
6682
|
},
|
|
6573
6683
|
getTrajectory(cell, controller, trajectory, options) {
|
|
6574
|
-
return localVarFp.getTrajectory(cell, controller, trajectory, options).then((request) => request(axios$
|
|
6684
|
+
return localVarFp.getTrajectory(cell, controller, trajectory, options).then((request) => request(axios$141, basePath));
|
|
6575
6685
|
},
|
|
6576
6686
|
listTrajectories(cell, controller, options) {
|
|
6577
|
-
return localVarFp.listTrajectories(cell, controller, options).then((request) => request(axios$
|
|
6687
|
+
return localVarFp.listTrajectories(cell, controller, options).then((request) => request(axios$141, basePath));
|
|
6578
6688
|
}
|
|
6579
6689
|
};
|
|
6580
6690
|
};
|
|
@@ -6685,16 +6795,16 @@ const TrajectoryExecutionApiFp = function(configuration) {
|
|
|
6685
6795
|
const localVarAxiosArgs = await localVarAxiosParamCreator.executeTrajectory(cell, controller, executeTrajectoryRequest, options);
|
|
6686
6796
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6687
6797
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryExecutionApi.executeTrajectory"]?.[localVarOperationServerIndex]?.url;
|
|
6688
|
-
return (axios$
|
|
6798
|
+
return (axios$142, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$142, localVarOperationServerBasePath || basePath);
|
|
6689
6799
|
} };
|
|
6690
6800
|
};
|
|
6691
6801
|
/**
|
|
6692
6802
|
* TrajectoryExecutionApi - factory interface
|
|
6693
6803
|
*/
|
|
6694
|
-
const TrajectoryExecutionApiFactory = function(configuration, basePath, axios$
|
|
6804
|
+
const TrajectoryExecutionApiFactory = function(configuration, basePath, axios$143) {
|
|
6695
6805
|
const localVarFp = TrajectoryExecutionApiFp(configuration);
|
|
6696
6806
|
return { executeTrajectory(cell, controller, executeTrajectoryRequest, options) {
|
|
6697
|
-
return localVarFp.executeTrajectory(cell, controller, executeTrajectoryRequest, options).then((request) => request(axios$
|
|
6807
|
+
return localVarFp.executeTrajectory(cell, controller, executeTrajectoryRequest, options).then((request) => request(axios$143, basePath));
|
|
6698
6808
|
} };
|
|
6699
6809
|
};
|
|
6700
6810
|
/**
|
|
@@ -6847,45 +6957,45 @@ const TrajectoryPlanningApiFp = function(configuration) {
|
|
|
6847
6957
|
const localVarAxiosArgs = await localVarAxiosParamCreator.mergeTrajectories(cell, mergeTrajectoriesRequest, options);
|
|
6848
6958
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6849
6959
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryPlanningApi.mergeTrajectories"]?.[localVarOperationServerIndex]?.url;
|
|
6850
|
-
return (axios$
|
|
6960
|
+
return (axios$144, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$144, localVarOperationServerBasePath || basePath);
|
|
6851
6961
|
},
|
|
6852
6962
|
async planCollisionFree(cell, planCollisionFreeRequest, options) {
|
|
6853
6963
|
const localVarAxiosArgs = await localVarAxiosParamCreator.planCollisionFree(cell, planCollisionFreeRequest, options);
|
|
6854
6964
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6855
6965
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryPlanningApi.planCollisionFree"]?.[localVarOperationServerIndex]?.url;
|
|
6856
|
-
return (axios$
|
|
6966
|
+
return (axios$145, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$145, localVarOperationServerBasePath || basePath);
|
|
6857
6967
|
},
|
|
6858
6968
|
async planTrajectory(cell, planTrajectoryRequest, options) {
|
|
6859
6969
|
const localVarAxiosArgs = await localVarAxiosParamCreator.planTrajectory(cell, planTrajectoryRequest, options);
|
|
6860
6970
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6861
6971
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryPlanningApi.planTrajectory"]?.[localVarOperationServerIndex]?.url;
|
|
6862
|
-
return (axios$
|
|
6972
|
+
return (axios$146, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$146, localVarOperationServerBasePath || basePath);
|
|
6863
6973
|
},
|
|
6864
6974
|
async searchCollisionFreeMultiMotionGroup(cell, multiSearchCollisionFreeRequest, options) {
|
|
6865
6975
|
const localVarAxiosArgs = await localVarAxiosParamCreator.searchCollisionFreeMultiMotionGroup(cell, multiSearchCollisionFreeRequest, options);
|
|
6866
6976
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6867
6977
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryPlanningApi.searchCollisionFreeMultiMotionGroup"]?.[localVarOperationServerIndex]?.url;
|
|
6868
|
-
return (axios$
|
|
6978
|
+
return (axios$147, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$147, localVarOperationServerBasePath || basePath);
|
|
6869
6979
|
}
|
|
6870
6980
|
};
|
|
6871
6981
|
};
|
|
6872
6982
|
/**
|
|
6873
6983
|
* TrajectoryPlanningApi - factory interface
|
|
6874
6984
|
*/
|
|
6875
|
-
const TrajectoryPlanningApiFactory = function(configuration, basePath, axios$
|
|
6985
|
+
const TrajectoryPlanningApiFactory = function(configuration, basePath, axios$148) {
|
|
6876
6986
|
const localVarFp = TrajectoryPlanningApiFp(configuration);
|
|
6877
6987
|
return {
|
|
6878
6988
|
mergeTrajectories(cell, mergeTrajectoriesRequest, options) {
|
|
6879
|
-
return localVarFp.mergeTrajectories(cell, mergeTrajectoriesRequest, options).then((request) => request(axios$
|
|
6989
|
+
return localVarFp.mergeTrajectories(cell, mergeTrajectoriesRequest, options).then((request) => request(axios$148, basePath));
|
|
6880
6990
|
},
|
|
6881
6991
|
planCollisionFree(cell, planCollisionFreeRequest, options) {
|
|
6882
|
-
return localVarFp.planCollisionFree(cell, planCollisionFreeRequest, options).then((request) => request(axios$
|
|
6992
|
+
return localVarFp.planCollisionFree(cell, planCollisionFreeRequest, options).then((request) => request(axios$148, basePath));
|
|
6883
6993
|
},
|
|
6884
6994
|
planTrajectory(cell, planTrajectoryRequest, options) {
|
|
6885
|
-
return localVarFp.planTrajectory(cell, planTrajectoryRequest, options).then((request) => request(axios$
|
|
6995
|
+
return localVarFp.planTrajectory(cell, planTrajectoryRequest, options).then((request) => request(axios$148, basePath));
|
|
6886
6996
|
},
|
|
6887
6997
|
searchCollisionFreeMultiMotionGroup(cell, multiSearchCollisionFreeRequest, options) {
|
|
6888
|
-
return localVarFp.searchCollisionFreeMultiMotionGroup(cell, multiSearchCollisionFreeRequest, options).then((request) => request(axios$
|
|
6998
|
+
return localVarFp.searchCollisionFreeMultiMotionGroup(cell, multiSearchCollisionFreeRequest, options).then((request) => request(axios$148, basePath));
|
|
6889
6999
|
}
|
|
6890
7000
|
};
|
|
6891
7001
|
};
|
|
@@ -6976,16 +7086,16 @@ const VersionApiFp = function(configuration) {
|
|
|
6976
7086
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getApiVersion(options);
|
|
6977
7087
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6978
7088
|
const localVarOperationServerBasePath = operationServerMap["VersionApi.getApiVersion"]?.[localVarOperationServerIndex]?.url;
|
|
6979
|
-
return (axios$
|
|
7089
|
+
return (axios$149, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$149, localVarOperationServerBasePath || basePath);
|
|
6980
7090
|
} };
|
|
6981
7091
|
};
|
|
6982
7092
|
/**
|
|
6983
7093
|
* VersionApi - factory interface
|
|
6984
7094
|
*/
|
|
6985
|
-
const VersionApiFactory = function(configuration, basePath, axios$
|
|
7095
|
+
const VersionApiFactory = function(configuration, basePath, axios$150) {
|
|
6986
7096
|
const localVarFp = VersionApiFp(configuration);
|
|
6987
7097
|
return { getApiVersion(options) {
|
|
6988
|
-
return localVarFp.getApiVersion(options).then((request) => request(axios$
|
|
7098
|
+
return localVarFp.getApiVersion(options).then((request) => request(axios$150, basePath));
|
|
6989
7099
|
} };
|
|
6990
7100
|
};
|
|
6991
7101
|
/**
|
|
@@ -7594,189 +7704,189 @@ const VirtualControllerApiFp = function(configuration) {
|
|
|
7594
7704
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options);
|
|
7595
7705
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7596
7706
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.addVirtualControllerCoordinateSystem"]?.[localVarOperationServerIndex]?.url;
|
|
7597
|
-
return (axios$
|
|
7707
|
+
return (axios$151, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$151, localVarOperationServerBasePath || basePath);
|
|
7598
7708
|
},
|
|
7599
7709
|
async addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options) {
|
|
7600
7710
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options);
|
|
7601
7711
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7602
7712
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.addVirtualControllerMotionGroup"]?.[localVarOperationServerIndex]?.url;
|
|
7603
|
-
return (axios$
|
|
7713
|
+
return (axios$152, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$152, localVarOperationServerBasePath || basePath);
|
|
7604
7714
|
},
|
|
7605
7715
|
async addVirtualControllerSafetyZone(cell, controller, safetyZone, options) {
|
|
7606
7716
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualControllerSafetyZone(cell, controller, safetyZone, options);
|
|
7607
7717
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7608
7718
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.addVirtualControllerSafetyZone"]?.[localVarOperationServerIndex]?.url;
|
|
7609
|
-
return (axios$
|
|
7719
|
+
return (axios$153, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$153, localVarOperationServerBasePath || basePath);
|
|
7610
7720
|
},
|
|
7611
7721
|
async addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options) {
|
|
7612
7722
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options);
|
|
7613
7723
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7614
7724
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.addVirtualControllerTcp"]?.[localVarOperationServerIndex]?.url;
|
|
7615
|
-
return (axios$
|
|
7725
|
+
return (axios$154, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$154, localVarOperationServerBasePath || basePath);
|
|
7616
7726
|
},
|
|
7617
7727
|
async deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options) {
|
|
7618
7728
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options);
|
|
7619
7729
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7620
7730
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.deleteVirtualControllerCoordinateSystem"]?.[localVarOperationServerIndex]?.url;
|
|
7621
|
-
return (axios$
|
|
7731
|
+
return (axios$155, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$155, localVarOperationServerBasePath || basePath);
|
|
7622
7732
|
},
|
|
7623
7733
|
async deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options) {
|
|
7624
7734
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options);
|
|
7625
7735
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7626
7736
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.deleteVirtualControllerMotionGroup"]?.[localVarOperationServerIndex]?.url;
|
|
7627
|
-
return (axios$
|
|
7737
|
+
return (axios$156, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$156, localVarOperationServerBasePath || basePath);
|
|
7628
7738
|
},
|
|
7629
7739
|
async deleteVirtualControllerSafetyZone(cell, controller, id, options) {
|
|
7630
7740
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualControllerSafetyZone(cell, controller, id, options);
|
|
7631
7741
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7632
7742
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.deleteVirtualControllerSafetyZone"]?.[localVarOperationServerIndex]?.url;
|
|
7633
|
-
return (axios$
|
|
7743
|
+
return (axios$157, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$157, localVarOperationServerBasePath || basePath);
|
|
7634
7744
|
},
|
|
7635
7745
|
async deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options) {
|
|
7636
7746
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options);
|
|
7637
7747
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7638
7748
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.deleteVirtualControllerTcp"]?.[localVarOperationServerIndex]?.url;
|
|
7639
|
-
return (axios$
|
|
7749
|
+
return (axios$158, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$158, localVarOperationServerBasePath || basePath);
|
|
7640
7750
|
},
|
|
7641
7751
|
async getEmergencyStop(cell, controller, options) {
|
|
7642
7752
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getEmergencyStop(cell, controller, options);
|
|
7643
7753
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7644
7754
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getEmergencyStop"]?.[localVarOperationServerIndex]?.url;
|
|
7645
|
-
return (axios$
|
|
7755
|
+
return (axios$159, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$159, localVarOperationServerBasePath || basePath);
|
|
7646
7756
|
},
|
|
7647
7757
|
async getMotionGroupState(cell, controller, motionGroup, options) {
|
|
7648
7758
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupState(cell, controller, motionGroup, options);
|
|
7649
7759
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7650
7760
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getMotionGroupState"]?.[localVarOperationServerIndex]?.url;
|
|
7651
|
-
return (axios$
|
|
7761
|
+
return (axios$160, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$160, localVarOperationServerBasePath || basePath);
|
|
7652
7762
|
},
|
|
7653
7763
|
async getMotionGroups(cell, controller, options) {
|
|
7654
7764
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroups(cell, controller, options);
|
|
7655
7765
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7656
7766
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getMotionGroups"]?.[localVarOperationServerIndex]?.url;
|
|
7657
|
-
return (axios$
|
|
7767
|
+
return (axios$161, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$161, localVarOperationServerBasePath || basePath);
|
|
7658
7768
|
},
|
|
7659
7769
|
async getOperationMode(cell, controller, options) {
|
|
7660
7770
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getOperationMode(cell, controller, options);
|
|
7661
7771
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7662
7772
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getOperationMode"]?.[localVarOperationServerIndex]?.url;
|
|
7663
|
-
return (axios$
|
|
7773
|
+
return (axios$162, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$162, localVarOperationServerBasePath || basePath);
|
|
7664
7774
|
},
|
|
7665
7775
|
async getVirtualControllerMounting(cell, controller, motionGroup, options) {
|
|
7666
7776
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getVirtualControllerMounting(cell, controller, motionGroup, options);
|
|
7667
7777
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7668
7778
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getVirtualControllerMounting"]?.[localVarOperationServerIndex]?.url;
|
|
7669
|
-
return (axios$
|
|
7779
|
+
return (axios$163, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$163, localVarOperationServerBasePath || basePath);
|
|
7670
7780
|
},
|
|
7671
7781
|
async getVirtualControllerSafetyZones(cell, controller, options) {
|
|
7672
7782
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getVirtualControllerSafetyZones(cell, controller, options);
|
|
7673
7783
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7674
7784
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getVirtualControllerSafetyZones"]?.[localVarOperationServerIndex]?.url;
|
|
7675
|
-
return (axios$
|
|
7785
|
+
return (axios$164, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$164, localVarOperationServerBasePath || basePath);
|
|
7676
7786
|
},
|
|
7677
7787
|
async listVirtualControllerCoordinateSystems(cell, controller, options) {
|
|
7678
7788
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listVirtualControllerCoordinateSystems(cell, controller, options);
|
|
7679
7789
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7680
7790
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.listVirtualControllerCoordinateSystems"]?.[localVarOperationServerIndex]?.url;
|
|
7681
|
-
return (axios$
|
|
7791
|
+
return (axios$165, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$165, localVarOperationServerBasePath || basePath);
|
|
7682
7792
|
},
|
|
7683
7793
|
async listVirtualControllerTcps(cell, controller, motionGroup, options) {
|
|
7684
7794
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listVirtualControllerTcps(cell, controller, motionGroup, options);
|
|
7685
7795
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7686
7796
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.listVirtualControllerTcps"]?.[localVarOperationServerIndex]?.url;
|
|
7687
|
-
return (axios$
|
|
7797
|
+
return (axios$166, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$166, localVarOperationServerBasePath || basePath);
|
|
7688
7798
|
},
|
|
7689
7799
|
async setEmergencyStop(cell, controller, active, options) {
|
|
7690
7800
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setEmergencyStop(cell, controller, active, options);
|
|
7691
7801
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7692
7802
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.setEmergencyStop"]?.[localVarOperationServerIndex]?.url;
|
|
7693
|
-
return (axios$
|
|
7803
|
+
return (axios$167, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$167, localVarOperationServerBasePath || basePath);
|
|
7694
7804
|
},
|
|
7695
7805
|
async setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options) {
|
|
7696
7806
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options);
|
|
7697
7807
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7698
7808
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.setMotionGroupState"]?.[localVarOperationServerIndex]?.url;
|
|
7699
|
-
return (axios$
|
|
7809
|
+
return (axios$168, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$168, localVarOperationServerBasePath || basePath);
|
|
7700
7810
|
},
|
|
7701
7811
|
async setOperationMode(cell, controller, mode, options) {
|
|
7702
7812
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setOperationMode(cell, controller, mode, options);
|
|
7703
7813
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7704
7814
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.setOperationMode"]?.[localVarOperationServerIndex]?.url;
|
|
7705
|
-
return (axios$
|
|
7815
|
+
return (axios$169, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$169, localVarOperationServerBasePath || basePath);
|
|
7706
7816
|
},
|
|
7707
7817
|
async setVirtualControllerMounting(cell, controller, motionGroup, coordinateSystem, options) {
|
|
7708
7818
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setVirtualControllerMounting(cell, controller, motionGroup, coordinateSystem, options);
|
|
7709
7819
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7710
7820
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.setVirtualControllerMounting"]?.[localVarOperationServerIndex]?.url;
|
|
7711
|
-
return (axios$
|
|
7821
|
+
return (axios$170, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$170, localVarOperationServerBasePath || basePath);
|
|
7712
7822
|
}
|
|
7713
7823
|
};
|
|
7714
7824
|
};
|
|
7715
7825
|
/**
|
|
7716
7826
|
* VirtualControllerApi - factory interface
|
|
7717
7827
|
*/
|
|
7718
|
-
const VirtualControllerApiFactory = function(configuration, basePath, axios$
|
|
7828
|
+
const VirtualControllerApiFactory = function(configuration, basePath, axios$171) {
|
|
7719
7829
|
const localVarFp = VirtualControllerApiFp(configuration);
|
|
7720
7830
|
return {
|
|
7721
7831
|
addVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options) {
|
|
7722
|
-
return localVarFp.addVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options).then((request) => request(axios$
|
|
7832
|
+
return localVarFp.addVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options).then((request) => request(axios$171, basePath));
|
|
7723
7833
|
},
|
|
7724
7834
|
addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options) {
|
|
7725
|
-
return localVarFp.addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options).then((request) => request(axios$
|
|
7835
|
+
return localVarFp.addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options).then((request) => request(axios$171, basePath));
|
|
7726
7836
|
},
|
|
7727
7837
|
addVirtualControllerSafetyZone(cell, controller, safetyZone, options) {
|
|
7728
|
-
return localVarFp.addVirtualControllerSafetyZone(cell, controller, safetyZone, options).then((request) => request(axios$
|
|
7838
|
+
return localVarFp.addVirtualControllerSafetyZone(cell, controller, safetyZone, options).then((request) => request(axios$171, basePath));
|
|
7729
7839
|
},
|
|
7730
7840
|
addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options) {
|
|
7731
|
-
return localVarFp.addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options).then((request) => request(axios$
|
|
7841
|
+
return localVarFp.addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options).then((request) => request(axios$171, basePath));
|
|
7732
7842
|
},
|
|
7733
7843
|
deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options) {
|
|
7734
|
-
return localVarFp.deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options).then((request) => request(axios$
|
|
7844
|
+
return localVarFp.deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options).then((request) => request(axios$171, basePath));
|
|
7735
7845
|
},
|
|
7736
7846
|
deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options) {
|
|
7737
|
-
return localVarFp.deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options).then((request) => request(axios$
|
|
7847
|
+
return localVarFp.deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options).then((request) => request(axios$171, basePath));
|
|
7738
7848
|
},
|
|
7739
7849
|
deleteVirtualControllerSafetyZone(cell, controller, id, options) {
|
|
7740
|
-
return localVarFp.deleteVirtualControllerSafetyZone(cell, controller, id, options).then((request) => request(axios$
|
|
7850
|
+
return localVarFp.deleteVirtualControllerSafetyZone(cell, controller, id, options).then((request) => request(axios$171, basePath));
|
|
7741
7851
|
},
|
|
7742
7852
|
deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options) {
|
|
7743
|
-
return localVarFp.deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options).then((request) => request(axios$
|
|
7853
|
+
return localVarFp.deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options).then((request) => request(axios$171, basePath));
|
|
7744
7854
|
},
|
|
7745
7855
|
getEmergencyStop(cell, controller, options) {
|
|
7746
|
-
return localVarFp.getEmergencyStop(cell, controller, options).then((request) => request(axios$
|
|
7856
|
+
return localVarFp.getEmergencyStop(cell, controller, options).then((request) => request(axios$171, basePath));
|
|
7747
7857
|
},
|
|
7748
7858
|
getMotionGroupState(cell, controller, motionGroup, options) {
|
|
7749
|
-
return localVarFp.getMotionGroupState(cell, controller, motionGroup, options).then((request) => request(axios$
|
|
7859
|
+
return localVarFp.getMotionGroupState(cell, controller, motionGroup, options).then((request) => request(axios$171, basePath));
|
|
7750
7860
|
},
|
|
7751
7861
|
getMotionGroups(cell, controller, options) {
|
|
7752
|
-
return localVarFp.getMotionGroups(cell, controller, options).then((request) => request(axios$
|
|
7862
|
+
return localVarFp.getMotionGroups(cell, controller, options).then((request) => request(axios$171, basePath));
|
|
7753
7863
|
},
|
|
7754
7864
|
getOperationMode(cell, controller, options) {
|
|
7755
|
-
return localVarFp.getOperationMode(cell, controller, options).then((request) => request(axios$
|
|
7865
|
+
return localVarFp.getOperationMode(cell, controller, options).then((request) => request(axios$171, basePath));
|
|
7756
7866
|
},
|
|
7757
7867
|
getVirtualControllerMounting(cell, controller, motionGroup, options) {
|
|
7758
|
-
return localVarFp.getVirtualControllerMounting(cell, controller, motionGroup, options).then((request) => request(axios$
|
|
7868
|
+
return localVarFp.getVirtualControllerMounting(cell, controller, motionGroup, options).then((request) => request(axios$171, basePath));
|
|
7759
7869
|
},
|
|
7760
7870
|
getVirtualControllerSafetyZones(cell, controller, options) {
|
|
7761
|
-
return localVarFp.getVirtualControllerSafetyZones(cell, controller, options).then((request) => request(axios$
|
|
7871
|
+
return localVarFp.getVirtualControllerSafetyZones(cell, controller, options).then((request) => request(axios$171, basePath));
|
|
7762
7872
|
},
|
|
7763
7873
|
listVirtualControllerCoordinateSystems(cell, controller, options) {
|
|
7764
|
-
return localVarFp.listVirtualControllerCoordinateSystems(cell, controller, options).then((request) => request(axios$
|
|
7874
|
+
return localVarFp.listVirtualControllerCoordinateSystems(cell, controller, options).then((request) => request(axios$171, basePath));
|
|
7765
7875
|
},
|
|
7766
7876
|
listVirtualControllerTcps(cell, controller, motionGroup, options) {
|
|
7767
|
-
return localVarFp.listVirtualControllerTcps(cell, controller, motionGroup, options).then((request) => request(axios$
|
|
7877
|
+
return localVarFp.listVirtualControllerTcps(cell, controller, motionGroup, options).then((request) => request(axios$171, basePath));
|
|
7768
7878
|
},
|
|
7769
7879
|
setEmergencyStop(cell, controller, active, options) {
|
|
7770
|
-
return localVarFp.setEmergencyStop(cell, controller, active, options).then((request) => request(axios$
|
|
7880
|
+
return localVarFp.setEmergencyStop(cell, controller, active, options).then((request) => request(axios$171, basePath));
|
|
7771
7881
|
},
|
|
7772
7882
|
setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options) {
|
|
7773
|
-
return localVarFp.setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options).then((request) => request(axios$
|
|
7883
|
+
return localVarFp.setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options).then((request) => request(axios$171, basePath));
|
|
7774
7884
|
},
|
|
7775
7885
|
setOperationMode(cell, controller, mode, options) {
|
|
7776
|
-
return localVarFp.setOperationMode(cell, controller, mode, options).then((request) => request(axios$
|
|
7886
|
+
return localVarFp.setOperationMode(cell, controller, mode, options).then((request) => request(axios$171, basePath));
|
|
7777
7887
|
},
|
|
7778
7888
|
setVirtualControllerMounting(cell, controller, motionGroup, coordinateSystem, options) {
|
|
7779
|
-
return localVarFp.setVirtualControllerMounting(cell, controller, motionGroup, coordinateSystem, options).then((request) => request(axios$
|
|
7889
|
+
return localVarFp.setVirtualControllerMounting(cell, controller, motionGroup, coordinateSystem, options).then((request) => request(axios$171, basePath));
|
|
7780
7890
|
}
|
|
7781
7891
|
};
|
|
7782
7892
|
};
|
|
@@ -8156,45 +8266,45 @@ const VirtualControllerBehaviorApiFp = function(configuration) {
|
|
|
8156
8266
|
const localVarAxiosArgs = await localVarAxiosParamCreator.externalJointsStream(cell, controller, externalJointStreamRequest, options);
|
|
8157
8267
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8158
8268
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerBehaviorApi.externalJointsStream"]?.[localVarOperationServerIndex]?.url;
|
|
8159
|
-
return (axios$
|
|
8269
|
+
return (axios$172, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$172, localVarOperationServerBasePath || basePath);
|
|
8160
8270
|
},
|
|
8161
8271
|
async getCycleTime(cell, controller, options) {
|
|
8162
8272
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getCycleTime(cell, controller, options);
|
|
8163
8273
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8164
8274
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerBehaviorApi.getCycleTime"]?.[localVarOperationServerIndex]?.url;
|
|
8165
|
-
return (axios$
|
|
8275
|
+
return (axios$173, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$173, localVarOperationServerBasePath || basePath);
|
|
8166
8276
|
},
|
|
8167
8277
|
async getVirtualControllerBehavior(cell, controller, options) {
|
|
8168
8278
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getVirtualControllerBehavior(cell, controller, options);
|
|
8169
8279
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8170
8280
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerBehaviorApi.getVirtualControllerBehavior"]?.[localVarOperationServerIndex]?.url;
|
|
8171
|
-
return (axios$
|
|
8281
|
+
return (axios$174, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$174, localVarOperationServerBasePath || basePath);
|
|
8172
8282
|
},
|
|
8173
8283
|
async setVirtualControllerBehavior(cell, controller, behavior, options) {
|
|
8174
8284
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setVirtualControllerBehavior(cell, controller, behavior, options);
|
|
8175
8285
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8176
8286
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerBehaviorApi.setVirtualControllerBehavior"]?.[localVarOperationServerIndex]?.url;
|
|
8177
|
-
return (axios$
|
|
8287
|
+
return (axios$175, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$175, localVarOperationServerBasePath || basePath);
|
|
8178
8288
|
}
|
|
8179
8289
|
};
|
|
8180
8290
|
};
|
|
8181
8291
|
/**
|
|
8182
8292
|
* VirtualControllerBehaviorApi - factory interface
|
|
8183
8293
|
*/
|
|
8184
|
-
const VirtualControllerBehaviorApiFactory = function(configuration, basePath, axios$
|
|
8294
|
+
const VirtualControllerBehaviorApiFactory = function(configuration, basePath, axios$176) {
|
|
8185
8295
|
const localVarFp = VirtualControllerBehaviorApiFp(configuration);
|
|
8186
8296
|
return {
|
|
8187
8297
|
externalJointsStream(cell, controller, externalJointStreamRequest, options) {
|
|
8188
|
-
return localVarFp.externalJointsStream(cell, controller, externalJointStreamRequest, options).then((request) => request(axios$
|
|
8298
|
+
return localVarFp.externalJointsStream(cell, controller, externalJointStreamRequest, options).then((request) => request(axios$176, basePath));
|
|
8189
8299
|
},
|
|
8190
8300
|
getCycleTime(cell, controller, options) {
|
|
8191
|
-
return localVarFp.getCycleTime(cell, controller, options).then((request) => request(axios$
|
|
8301
|
+
return localVarFp.getCycleTime(cell, controller, options).then((request) => request(axios$176, basePath));
|
|
8192
8302
|
},
|
|
8193
8303
|
getVirtualControllerBehavior(cell, controller, options) {
|
|
8194
|
-
return localVarFp.getVirtualControllerBehavior(cell, controller, options).then((request) => request(axios$
|
|
8304
|
+
return localVarFp.getVirtualControllerBehavior(cell, controller, options).then((request) => request(axios$176, basePath));
|
|
8195
8305
|
},
|
|
8196
8306
|
setVirtualControllerBehavior(cell, controller, behavior, options) {
|
|
8197
|
-
return localVarFp.setVirtualControllerBehavior(cell, controller, behavior, options).then((request) => request(axios$
|
|
8307
|
+
return localVarFp.setVirtualControllerBehavior(cell, controller, behavior, options).then((request) => request(axios$176, basePath));
|
|
8198
8308
|
}
|
|
8199
8309
|
};
|
|
8200
8310
|
};
|
|
@@ -8356,36 +8466,36 @@ const VirtualControllerInputsOutputsApiFp = function(configuration) {
|
|
|
8356
8466
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listIOs(cell, controller, ios, options);
|
|
8357
8467
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8358
8468
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerInputsOutputsApi.listIOs"]?.[localVarOperationServerIndex]?.url;
|
|
8359
|
-
return (axios$
|
|
8469
|
+
return (axios$177, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$177, localVarOperationServerBasePath || basePath);
|
|
8360
8470
|
},
|
|
8361
8471
|
async listVirtualControllerIODescriptions(cell, controller, ios, direction, valueType, group, options) {
|
|
8362
8472
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listVirtualControllerIODescriptions(cell, controller, ios, direction, valueType, group, options);
|
|
8363
8473
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8364
8474
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerInputsOutputsApi.listVirtualControllerIODescriptions"]?.[localVarOperationServerIndex]?.url;
|
|
8365
|
-
return (axios$
|
|
8475
|
+
return (axios$178, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$178, localVarOperationServerBasePath || basePath);
|
|
8366
8476
|
},
|
|
8367
8477
|
async setIOValues(cell, controller, iOValue, options) {
|
|
8368
8478
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setIOValues(cell, controller, iOValue, options);
|
|
8369
8479
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8370
8480
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerInputsOutputsApi.setIOValues"]?.[localVarOperationServerIndex]?.url;
|
|
8371
|
-
return (axios$
|
|
8481
|
+
return (axios$179, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$179, localVarOperationServerBasePath || basePath);
|
|
8372
8482
|
}
|
|
8373
8483
|
};
|
|
8374
8484
|
};
|
|
8375
8485
|
/**
|
|
8376
8486
|
* VirtualControllerInputsOutputsApi - factory interface
|
|
8377
8487
|
*/
|
|
8378
|
-
const VirtualControllerInputsOutputsApiFactory = function(configuration, basePath, axios$
|
|
8488
|
+
const VirtualControllerInputsOutputsApiFactory = function(configuration, basePath, axios$180) {
|
|
8379
8489
|
const localVarFp = VirtualControllerInputsOutputsApiFp(configuration);
|
|
8380
8490
|
return {
|
|
8381
8491
|
listIOs(cell, controller, ios, options) {
|
|
8382
|
-
return localVarFp.listIOs(cell, controller, ios, options).then((request) => request(axios$
|
|
8492
|
+
return localVarFp.listIOs(cell, controller, ios, options).then((request) => request(axios$180, basePath));
|
|
8383
8493
|
},
|
|
8384
8494
|
listVirtualControllerIODescriptions(cell, controller, ios, direction, valueType, group, options) {
|
|
8385
|
-
return localVarFp.listVirtualControllerIODescriptions(cell, controller, ios, direction, valueType, group, options).then((request) => request(axios$
|
|
8495
|
+
return localVarFp.listVirtualControllerIODescriptions(cell, controller, ios, direction, valueType, group, options).then((request) => request(axios$180, basePath));
|
|
8386
8496
|
},
|
|
8387
8497
|
setIOValues(cell, controller, iOValue, options) {
|
|
8388
|
-
return localVarFp.setIOValues(cell, controller, iOValue, options).then((request) => request(axios$
|
|
8498
|
+
return localVarFp.setIOValues(cell, controller, iOValue, options).then((request) => request(axios$180, basePath));
|
|
8389
8499
|
}
|
|
8390
8500
|
};
|
|
8391
8501
|
};
|
|
@@ -8433,13 +8543,11 @@ var VirtualControllerInputsOutputsApi = class extends BaseAPI {
|
|
|
8433
8543
|
return VirtualControllerInputsOutputsApiFp(this.configuration).setIOValues(cell, controller, iOValue, options).then((request) => request(this.axios, this.basePath));
|
|
8434
8544
|
}
|
|
8435
8545
|
};
|
|
8436
|
-
|
|
8437
8546
|
//#endregion
|
|
8438
8547
|
//#region v2/configuration.ts
|
|
8439
|
-
var import_defineProperty = /* @__PURE__ */ require_defineProperty$1.__toESM(require_defineProperty$1.require_defineProperty(), 1);
|
|
8440
8548
|
var Configuration = class {
|
|
8441
8549
|
constructor(param = {}) {
|
|
8442
|
-
|
|
8550
|
+
require_defineProperty._defineProperty(
|
|
8443
8551
|
this,
|
|
8444
8552
|
/**
|
|
8445
8553
|
* parameter for apiKey security
|
|
@@ -8448,7 +8556,7 @@ var Configuration = class {
|
|
|
8448
8556
|
"apiKey",
|
|
8449
8557
|
void 0
|
|
8450
8558
|
);
|
|
8451
|
-
|
|
8559
|
+
require_defineProperty._defineProperty(
|
|
8452
8560
|
this,
|
|
8453
8561
|
/**
|
|
8454
8562
|
* parameter for basic security
|
|
@@ -8456,7 +8564,7 @@ var Configuration = class {
|
|
|
8456
8564
|
"username",
|
|
8457
8565
|
void 0
|
|
8458
8566
|
);
|
|
8459
|
-
|
|
8567
|
+
require_defineProperty._defineProperty(
|
|
8460
8568
|
this,
|
|
8461
8569
|
/**
|
|
8462
8570
|
* parameter for basic security
|
|
@@ -8464,7 +8572,7 @@ var Configuration = class {
|
|
|
8464
8572
|
"password",
|
|
8465
8573
|
void 0
|
|
8466
8574
|
);
|
|
8467
|
-
|
|
8575
|
+
require_defineProperty._defineProperty(
|
|
8468
8576
|
this,
|
|
8469
8577
|
/**
|
|
8470
8578
|
* parameter for oauth2 security
|
|
@@ -8474,7 +8582,7 @@ var Configuration = class {
|
|
|
8474
8582
|
"accessToken",
|
|
8475
8583
|
void 0
|
|
8476
8584
|
);
|
|
8477
|
-
|
|
8585
|
+
require_defineProperty._defineProperty(
|
|
8478
8586
|
this,
|
|
8479
8587
|
/**
|
|
8480
8588
|
* parameter for aws4 signature security
|
|
@@ -8489,7 +8597,7 @@ var Configuration = class {
|
|
|
8489
8597
|
"awsv4",
|
|
8490
8598
|
void 0
|
|
8491
8599
|
);
|
|
8492
|
-
|
|
8600
|
+
require_defineProperty._defineProperty(
|
|
8493
8601
|
this,
|
|
8494
8602
|
/**
|
|
8495
8603
|
* override base path
|
|
@@ -8497,7 +8605,7 @@ var Configuration = class {
|
|
|
8497
8605
|
"basePath",
|
|
8498
8606
|
void 0
|
|
8499
8607
|
);
|
|
8500
|
-
|
|
8608
|
+
require_defineProperty._defineProperty(
|
|
8501
8609
|
this,
|
|
8502
8610
|
/**
|
|
8503
8611
|
* override server index
|
|
@@ -8505,7 +8613,7 @@ var Configuration = class {
|
|
|
8505
8613
|
"serverIndex",
|
|
8506
8614
|
void 0
|
|
8507
8615
|
);
|
|
8508
|
-
|
|
8616
|
+
require_defineProperty._defineProperty(
|
|
8509
8617
|
this,
|
|
8510
8618
|
/**
|
|
8511
8619
|
* base options for axios calls
|
|
@@ -8513,7 +8621,7 @@ var Configuration = class {
|
|
|
8513
8621
|
"baseOptions",
|
|
8514
8622
|
void 0
|
|
8515
8623
|
);
|
|
8516
|
-
|
|
8624
|
+
require_defineProperty._defineProperty(
|
|
8517
8625
|
this,
|
|
8518
8626
|
/**
|
|
8519
8627
|
* The FormData constructor that will be used to create multipart form data
|
|
@@ -8549,10 +8657,9 @@ var Configuration = class {
|
|
|
8549
8657
|
* @return True if the given MIME is JSON, false otherwise.
|
|
8550
8658
|
*/
|
|
8551
8659
|
isJsonMime(mime) {
|
|
8552
|
-
return mime !== null && (new RegExp("^(application/json|[^;/ ]+/[^;/ ]+[+]json)[ ]*(;.*)?$", "i").test(mime) || mime.toLowerCase() === "application/json-patch+json");
|
|
8660
|
+
return mime !== null && ((/* @__PURE__ */ new RegExp("^(application/json|[^;/ ]+/[^;/ ]+[+]json)[ ]*(;.*)?$", "i")).test(mime) || mime.toLowerCase() === "application/json-patch+json");
|
|
8553
8661
|
}
|
|
8554
8662
|
};
|
|
8555
|
-
|
|
8556
8663
|
//#endregion
|
|
8557
8664
|
exports.AbbControllerKindEnum = AbbControllerKindEnum;
|
|
8558
8665
|
exports.ApplicationApi = ApplicationApi;
|
|
@@ -8735,6 +8842,10 @@ exports.SafetyStateType = SafetyStateType;
|
|
|
8735
8842
|
exports.ServiceGroup = ServiceGroup;
|
|
8736
8843
|
exports.ServiceStatusPhase = ServiceStatusPhase;
|
|
8737
8844
|
exports.ServiceStatusSeverity = ServiceStatusSeverity;
|
|
8845
|
+
exports.SessionApi = SessionApi;
|
|
8846
|
+
exports.SessionApiAxiosParamCreator = SessionApiAxiosParamCreator;
|
|
8847
|
+
exports.SessionApiFactory = SessionApiFactory;
|
|
8848
|
+
exports.SessionApiFp = SessionApiFp;
|
|
8738
8849
|
exports.SettableRobotSystemMode = SettableRobotSystemMode;
|
|
8739
8850
|
exports.SingularityTypeEnum = SingularityTypeEnum;
|
|
8740
8851
|
exports.SphereShapeTypeEnum = SphereShapeTypeEnum;
|
|
@@ -8801,4 +8912,4 @@ exports.VirtualControllerInputsOutputsApiFp = VirtualControllerInputsOutputsApiF
|
|
|
8801
8912
|
exports.VirtualControllerKindEnum = VirtualControllerKindEnum;
|
|
8802
8913
|
exports.YaskawaControllerKindEnum = YaskawaControllerKindEnum;
|
|
8803
8914
|
exports.ZodValidationErrorErrorCodeEnum = ZodValidationErrorErrorCodeEnum;
|
|
8804
|
-
exports.operationServerMap = operationServerMap;
|
|
8915
|
+
exports.operationServerMap = operationServerMap;
|