@wandelbots/nova-api 26.3.0-rc.2 → 26.4.0-dev.21
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 +421 -359
- package/dist/v2/index.d.cts +273 -170
- package/dist/v2/index.d.ts +273 -170
- package/dist/v2/index.js +70 -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
|
/**
|
|
@@ -3355,36 +3352,36 @@ const KinematicsApiFp = function(configuration) {
|
|
|
3355
3352
|
const localVarAxiosArgs = await localVarAxiosParamCreator.forwardKinematics(cell, forwardKinematicsRequest, options);
|
|
3356
3353
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3357
3354
|
const localVarOperationServerBasePath = operationServerMap["KinematicsApi.forwardKinematics"]?.[localVarOperationServerIndex]?.url;
|
|
3358
|
-
return (axios$
|
|
3355
|
+
return (axios$61, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$61, localVarOperationServerBasePath || basePath);
|
|
3359
3356
|
},
|
|
3360
3357
|
async inverseKinematics(cell, inverseKinematicsRequest, options) {
|
|
3361
3358
|
const localVarAxiosArgs = await localVarAxiosParamCreator.inverseKinematics(cell, inverseKinematicsRequest, options);
|
|
3362
3359
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3363
3360
|
const localVarOperationServerBasePath = operationServerMap["KinematicsApi.inverseKinematics"]?.[localVarOperationServerIndex]?.url;
|
|
3364
|
-
return (axios$
|
|
3361
|
+
return (axios$62, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$62, localVarOperationServerBasePath || basePath);
|
|
3365
3362
|
},
|
|
3366
3363
|
async projectJointPositionDirectionConstraint(cell, projectJointPositionDirectionConstraintRequest, options) {
|
|
3367
3364
|
const localVarAxiosArgs = await localVarAxiosParamCreator.projectJointPositionDirectionConstraint(cell, projectJointPositionDirectionConstraintRequest, options);
|
|
3368
3365
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3369
3366
|
const localVarOperationServerBasePath = operationServerMap["KinematicsApi.projectJointPositionDirectionConstraint"]?.[localVarOperationServerIndex]?.url;
|
|
3370
|
-
return (axios$
|
|
3367
|
+
return (axios$63, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$63, localVarOperationServerBasePath || basePath);
|
|
3371
3368
|
}
|
|
3372
3369
|
};
|
|
3373
3370
|
};
|
|
3374
3371
|
/**
|
|
3375
3372
|
* KinematicsApi - factory interface
|
|
3376
3373
|
*/
|
|
3377
|
-
const KinematicsApiFactory = function(configuration, basePath, axios$
|
|
3374
|
+
const KinematicsApiFactory = function(configuration, basePath, axios$64) {
|
|
3378
3375
|
const localVarFp = KinematicsApiFp(configuration);
|
|
3379
3376
|
return {
|
|
3380
3377
|
forwardKinematics(cell, forwardKinematicsRequest, options) {
|
|
3381
|
-
return localVarFp.forwardKinematics(cell, forwardKinematicsRequest, options).then((request) => request(axios$
|
|
3378
|
+
return localVarFp.forwardKinematics(cell, forwardKinematicsRequest, options).then((request) => request(axios$64, basePath));
|
|
3382
3379
|
},
|
|
3383
3380
|
inverseKinematics(cell, inverseKinematicsRequest, options) {
|
|
3384
|
-
return localVarFp.inverseKinematics(cell, inverseKinematicsRequest, options).then((request) => request(axios$
|
|
3381
|
+
return localVarFp.inverseKinematics(cell, inverseKinematicsRequest, options).then((request) => request(axios$64, basePath));
|
|
3385
3382
|
},
|
|
3386
3383
|
projectJointPositionDirectionConstraint(cell, projectJointPositionDirectionConstraintRequest, options) {
|
|
3387
|
-
return localVarFp.projectJointPositionDirectionConstraint(cell, projectJointPositionDirectionConstraintRequest, options).then((request) => request(axios$
|
|
3384
|
+
return localVarFp.projectJointPositionDirectionConstraint(cell, projectJointPositionDirectionConstraintRequest, options).then((request) => request(axios$64, basePath));
|
|
3388
3385
|
}
|
|
3389
3386
|
};
|
|
3390
3387
|
};
|
|
@@ -3542,45 +3539,45 @@ const LicenseApiFp = function(configuration) {
|
|
|
3542
3539
|
const localVarAxiosArgs = await localVarAxiosParamCreator.activateLicense(activateLicenseRequest, options);
|
|
3543
3540
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3544
3541
|
const localVarOperationServerBasePath = operationServerMap["LicenseApi.activateLicense"]?.[localVarOperationServerIndex]?.url;
|
|
3545
|
-
return (axios$
|
|
3542
|
+
return (axios$65, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$65, localVarOperationServerBasePath || basePath);
|
|
3546
3543
|
},
|
|
3547
3544
|
async deactivateLicense(options) {
|
|
3548
3545
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deactivateLicense(options);
|
|
3549
3546
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3550
3547
|
const localVarOperationServerBasePath = operationServerMap["LicenseApi.deactivateLicense"]?.[localVarOperationServerIndex]?.url;
|
|
3551
|
-
return (axios$
|
|
3548
|
+
return (axios$66, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$66, localVarOperationServerBasePath || basePath);
|
|
3552
3549
|
},
|
|
3553
3550
|
async getLicense(options) {
|
|
3554
3551
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getLicense(options);
|
|
3555
3552
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3556
3553
|
const localVarOperationServerBasePath = operationServerMap["LicenseApi.getLicense"]?.[localVarOperationServerIndex]?.url;
|
|
3557
|
-
return (axios$
|
|
3554
|
+
return (axios$67, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$67, localVarOperationServerBasePath || basePath);
|
|
3558
3555
|
},
|
|
3559
3556
|
async getLicenseStatus(options) {
|
|
3560
3557
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getLicenseStatus(options);
|
|
3561
3558
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3562
3559
|
const localVarOperationServerBasePath = operationServerMap["LicenseApi.getLicenseStatus"]?.[localVarOperationServerIndex]?.url;
|
|
3563
|
-
return (axios$
|
|
3560
|
+
return (axios$68, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$68, localVarOperationServerBasePath || basePath);
|
|
3564
3561
|
}
|
|
3565
3562
|
};
|
|
3566
3563
|
};
|
|
3567
3564
|
/**
|
|
3568
3565
|
* LicenseApi - factory interface
|
|
3569
3566
|
*/
|
|
3570
|
-
const LicenseApiFactory = function(configuration, basePath, axios$
|
|
3567
|
+
const LicenseApiFactory = function(configuration, basePath, axios$69) {
|
|
3571
3568
|
const localVarFp = LicenseApiFp(configuration);
|
|
3572
3569
|
return {
|
|
3573
3570
|
activateLicense(activateLicenseRequest, options) {
|
|
3574
|
-
return localVarFp.activateLicense(activateLicenseRequest, options).then((request) => request(axios$
|
|
3571
|
+
return localVarFp.activateLicense(activateLicenseRequest, options).then((request) => request(axios$69, basePath));
|
|
3575
3572
|
},
|
|
3576
3573
|
deactivateLicense(options) {
|
|
3577
|
-
return localVarFp.deactivateLicense(options).then((request) => request(axios$
|
|
3574
|
+
return localVarFp.deactivateLicense(options).then((request) => request(axios$69, basePath));
|
|
3578
3575
|
},
|
|
3579
3576
|
getLicense(options) {
|
|
3580
|
-
return localVarFp.getLicense(options).then((request) => request(axios$
|
|
3577
|
+
return localVarFp.getLicense(options).then((request) => request(axios$69, basePath));
|
|
3581
3578
|
},
|
|
3582
3579
|
getLicenseStatus(options) {
|
|
3583
|
-
return localVarFp.getLicenseStatus(options).then((request) => request(axios$
|
|
3580
|
+
return localVarFp.getLicenseStatus(options).then((request) => request(axios$69, basePath));
|
|
3584
3581
|
}
|
|
3585
3582
|
};
|
|
3586
3583
|
};
|
|
@@ -3730,36 +3727,36 @@ const MotionGroupApiFp = function(configuration) {
|
|
|
3730
3727
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getCurrentMotionGroupState(cell, controller, motionGroup, responseCoordinateSystem, options);
|
|
3731
3728
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3732
3729
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupApi.getCurrentMotionGroupState"]?.[localVarOperationServerIndex]?.url;
|
|
3733
|
-
return (axios$
|
|
3730
|
+
return (axios$70, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$70, localVarOperationServerBasePath || basePath);
|
|
3734
3731
|
},
|
|
3735
3732
|
async getMotionGroupDescription(cell, controller, motionGroup, options) {
|
|
3736
3733
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupDescription(cell, controller, motionGroup, options);
|
|
3737
3734
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3738
3735
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupApi.getMotionGroupDescription"]?.[localVarOperationServerIndex]?.url;
|
|
3739
|
-
return (axios$
|
|
3736
|
+
return (axios$71, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$71, localVarOperationServerBasePath || basePath);
|
|
3740
3737
|
},
|
|
3741
3738
|
async streamMotionGroupState(cell, controller, motionGroup, responseRate, responseCoordinateSystem, options) {
|
|
3742
3739
|
const localVarAxiosArgs = await localVarAxiosParamCreator.streamMotionGroupState(cell, controller, motionGroup, responseRate, responseCoordinateSystem, options);
|
|
3743
3740
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3744
3741
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupApi.streamMotionGroupState"]?.[localVarOperationServerIndex]?.url;
|
|
3745
|
-
return (axios$
|
|
3742
|
+
return (axios$72, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$72, localVarOperationServerBasePath || basePath);
|
|
3746
3743
|
}
|
|
3747
3744
|
};
|
|
3748
3745
|
};
|
|
3749
3746
|
/**
|
|
3750
3747
|
* MotionGroupApi - factory interface
|
|
3751
3748
|
*/
|
|
3752
|
-
const MotionGroupApiFactory = function(configuration, basePath, axios$
|
|
3749
|
+
const MotionGroupApiFactory = function(configuration, basePath, axios$73) {
|
|
3753
3750
|
const localVarFp = MotionGroupApiFp(configuration);
|
|
3754
3751
|
return {
|
|
3755
3752
|
getCurrentMotionGroupState(cell, controller, motionGroup, responseCoordinateSystem, options) {
|
|
3756
|
-
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));
|
|
3757
3754
|
},
|
|
3758
3755
|
getMotionGroupDescription(cell, controller, motionGroup, options) {
|
|
3759
|
-
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));
|
|
3760
3757
|
},
|
|
3761
3758
|
streamMotionGroupState(cell, controller, motionGroup, responseRate, responseCoordinateSystem, options) {
|
|
3762
|
-
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));
|
|
3763
3760
|
}
|
|
3764
3761
|
};
|
|
3765
3762
|
};
|
|
@@ -3952,54 +3949,54 @@ const MotionGroupModelsApiFp = function(configuration) {
|
|
|
3952
3949
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupCollisionModel(motionGroupModel, options);
|
|
3953
3950
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3954
3951
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupCollisionModel"]?.[localVarOperationServerIndex]?.url;
|
|
3955
|
-
return (axios$
|
|
3952
|
+
return (axios$74, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$74, localVarOperationServerBasePath || basePath);
|
|
3956
3953
|
},
|
|
3957
3954
|
async getMotionGroupGlbModel(motionGroupModel, options) {
|
|
3958
3955
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupGlbModel(motionGroupModel, options);
|
|
3959
3956
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3960
3957
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupGlbModel"]?.[localVarOperationServerIndex]?.url;
|
|
3961
|
-
return (axios$
|
|
3958
|
+
return (axios$75, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$75, localVarOperationServerBasePath || basePath);
|
|
3962
3959
|
},
|
|
3963
3960
|
async getMotionGroupKinematicModel(motionGroupModel, options) {
|
|
3964
3961
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupKinematicModel(motionGroupModel, options);
|
|
3965
3962
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3966
3963
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupKinematicModel"]?.[localVarOperationServerIndex]?.url;
|
|
3967
|
-
return (axios$
|
|
3964
|
+
return (axios$76, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$76, localVarOperationServerBasePath || basePath);
|
|
3968
3965
|
},
|
|
3969
3966
|
async getMotionGroupModels(options) {
|
|
3970
3967
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupModels(options);
|
|
3971
3968
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3972
3969
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupModels"]?.[localVarOperationServerIndex]?.url;
|
|
3973
|
-
return (axios$
|
|
3970
|
+
return (axios$77, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$77, localVarOperationServerBasePath || basePath);
|
|
3974
3971
|
},
|
|
3975
3972
|
async getMotionGroupUsdModel(motionGroupModel, options) {
|
|
3976
3973
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupUsdModel(motionGroupModel, options);
|
|
3977
3974
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3978
3975
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupUsdModel"]?.[localVarOperationServerIndex]?.url;
|
|
3979
|
-
return (axios$
|
|
3976
|
+
return (axios$78, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$78, localVarOperationServerBasePath || basePath);
|
|
3980
3977
|
}
|
|
3981
3978
|
};
|
|
3982
3979
|
};
|
|
3983
3980
|
/**
|
|
3984
3981
|
* MotionGroupModelsApi - factory interface
|
|
3985
3982
|
*/
|
|
3986
|
-
const MotionGroupModelsApiFactory = function(configuration, basePath, axios$
|
|
3983
|
+
const MotionGroupModelsApiFactory = function(configuration, basePath, axios$79) {
|
|
3987
3984
|
const localVarFp = MotionGroupModelsApiFp(configuration);
|
|
3988
3985
|
return {
|
|
3989
3986
|
getMotionGroupCollisionModel(motionGroupModel, options) {
|
|
3990
|
-
return localVarFp.getMotionGroupCollisionModel(motionGroupModel, options).then((request) => request(axios$
|
|
3987
|
+
return localVarFp.getMotionGroupCollisionModel(motionGroupModel, options).then((request) => request(axios$79, basePath));
|
|
3991
3988
|
},
|
|
3992
3989
|
getMotionGroupGlbModel(motionGroupModel, options) {
|
|
3993
|
-
return localVarFp.getMotionGroupGlbModel(motionGroupModel, options).then((request) => request(axios$
|
|
3990
|
+
return localVarFp.getMotionGroupGlbModel(motionGroupModel, options).then((request) => request(axios$79, basePath));
|
|
3994
3991
|
},
|
|
3995
3992
|
getMotionGroupKinematicModel(motionGroupModel, options) {
|
|
3996
|
-
return localVarFp.getMotionGroupKinematicModel(motionGroupModel, options).then((request) => request(axios$
|
|
3993
|
+
return localVarFp.getMotionGroupKinematicModel(motionGroupModel, options).then((request) => request(axios$79, basePath));
|
|
3997
3994
|
},
|
|
3998
3995
|
getMotionGroupModels(options) {
|
|
3999
|
-
return localVarFp.getMotionGroupModels(options).then((request) => request(axios$
|
|
3996
|
+
return localVarFp.getMotionGroupModels(options).then((request) => request(axios$79, basePath));
|
|
4000
3997
|
},
|
|
4001
3998
|
getMotionGroupUsdModel(motionGroupModel, options) {
|
|
4002
|
-
return localVarFp.getMotionGroupUsdModel(motionGroupModel, options).then((request) => request(axios$
|
|
3999
|
+
return localVarFp.getMotionGroupUsdModel(motionGroupModel, options).then((request) => request(axios$79, basePath));
|
|
4003
4000
|
}
|
|
4004
4001
|
};
|
|
4005
4002
|
};
|
|
@@ -4150,36 +4147,36 @@ const NOVACloudApiFp = function(configuration) {
|
|
|
4150
4147
|
const localVarAxiosArgs = await localVarAxiosParamCreator.connectToNovaCloud(completionTimeout, cloudConnectionRequest, options);
|
|
4151
4148
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4152
4149
|
const localVarOperationServerBasePath = operationServerMap["NOVACloudApi.connectToNovaCloud"]?.[localVarOperationServerIndex]?.url;
|
|
4153
|
-
return (axios$
|
|
4150
|
+
return (axios$80, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$80, localVarOperationServerBasePath || basePath);
|
|
4154
4151
|
},
|
|
4155
4152
|
async disconnectFromNovaCloud(completionTimeout, options) {
|
|
4156
4153
|
const localVarAxiosArgs = await localVarAxiosParamCreator.disconnectFromNovaCloud(completionTimeout, options);
|
|
4157
4154
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4158
4155
|
const localVarOperationServerBasePath = operationServerMap["NOVACloudApi.disconnectFromNovaCloud"]?.[localVarOperationServerIndex]?.url;
|
|
4159
|
-
return (axios$
|
|
4156
|
+
return (axios$81, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$81, localVarOperationServerBasePath || basePath);
|
|
4160
4157
|
},
|
|
4161
4158
|
async getNovaCloudConfig(options) {
|
|
4162
4159
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getNovaCloudConfig(options);
|
|
4163
4160
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4164
4161
|
const localVarOperationServerBasePath = operationServerMap["NOVACloudApi.getNovaCloudConfig"]?.[localVarOperationServerIndex]?.url;
|
|
4165
|
-
return (axios$
|
|
4162
|
+
return (axios$82, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$82, localVarOperationServerBasePath || basePath);
|
|
4166
4163
|
}
|
|
4167
4164
|
};
|
|
4168
4165
|
};
|
|
4169
4166
|
/**
|
|
4170
4167
|
* NOVACloudApi - factory interface
|
|
4171
4168
|
*/
|
|
4172
|
-
const NOVACloudApiFactory = function(configuration, basePath, axios$
|
|
4169
|
+
const NOVACloudApiFactory = function(configuration, basePath, axios$83) {
|
|
4173
4170
|
const localVarFp = NOVACloudApiFp(configuration);
|
|
4174
4171
|
return {
|
|
4175
4172
|
connectToNovaCloud(completionTimeout, cloudConnectionRequest, options) {
|
|
4176
|
-
return localVarFp.connectToNovaCloud(completionTimeout, cloudConnectionRequest, options).then((request) => request(axios$
|
|
4173
|
+
return localVarFp.connectToNovaCloud(completionTimeout, cloudConnectionRequest, options).then((request) => request(axios$83, basePath));
|
|
4177
4174
|
},
|
|
4178
4175
|
disconnectFromNovaCloud(completionTimeout, options) {
|
|
4179
|
-
return localVarFp.disconnectFromNovaCloud(completionTimeout, options).then((request) => request(axios$
|
|
4176
|
+
return localVarFp.disconnectFromNovaCloud(completionTimeout, options).then((request) => request(axios$83, basePath));
|
|
4180
4177
|
},
|
|
4181
4178
|
getNovaCloudConfig(options) {
|
|
4182
|
-
return localVarFp.getNovaCloudConfig(options).then((request) => request(axios$
|
|
4179
|
+
return localVarFp.getNovaCloudConfig(options).then((request) => request(axios$83, basePath));
|
|
4183
4180
|
}
|
|
4184
4181
|
};
|
|
4185
4182
|
};
|
|
@@ -4345,45 +4342,45 @@ const ProgramApiFp = function(configuration) {
|
|
|
4345
4342
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getProgram(cell, program, options);
|
|
4346
4343
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4347
4344
|
const localVarOperationServerBasePath = operationServerMap["ProgramApi.getProgram"]?.[localVarOperationServerIndex]?.url;
|
|
4348
|
-
return (axios$
|
|
4345
|
+
return (axios$84, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$84, localVarOperationServerBasePath || basePath);
|
|
4349
4346
|
},
|
|
4350
4347
|
async listPrograms(cell, options) {
|
|
4351
4348
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listPrograms(cell, options);
|
|
4352
4349
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4353
4350
|
const localVarOperationServerBasePath = operationServerMap["ProgramApi.listPrograms"]?.[localVarOperationServerIndex]?.url;
|
|
4354
|
-
return (axios$
|
|
4351
|
+
return (axios$85, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$85, localVarOperationServerBasePath || basePath);
|
|
4355
4352
|
},
|
|
4356
4353
|
async startProgram(cell, program, programStartRequest, options) {
|
|
4357
4354
|
const localVarAxiosArgs = await localVarAxiosParamCreator.startProgram(cell, program, programStartRequest, options);
|
|
4358
4355
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4359
4356
|
const localVarOperationServerBasePath = operationServerMap["ProgramApi.startProgram"]?.[localVarOperationServerIndex]?.url;
|
|
4360
|
-
return (axios$
|
|
4357
|
+
return (axios$86, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$86, localVarOperationServerBasePath || basePath);
|
|
4361
4358
|
},
|
|
4362
4359
|
async stopProgram(cell, program, options) {
|
|
4363
4360
|
const localVarAxiosArgs = await localVarAxiosParamCreator.stopProgram(cell, program, options);
|
|
4364
4361
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4365
4362
|
const localVarOperationServerBasePath = operationServerMap["ProgramApi.stopProgram"]?.[localVarOperationServerIndex]?.url;
|
|
4366
|
-
return (axios$
|
|
4363
|
+
return (axios$87, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$87, localVarOperationServerBasePath || basePath);
|
|
4367
4364
|
}
|
|
4368
4365
|
};
|
|
4369
4366
|
};
|
|
4370
4367
|
/**
|
|
4371
4368
|
* ProgramApi - factory interface
|
|
4372
4369
|
*/
|
|
4373
|
-
const ProgramApiFactory = function(configuration, basePath, axios$
|
|
4370
|
+
const ProgramApiFactory = function(configuration, basePath, axios$88) {
|
|
4374
4371
|
const localVarFp = ProgramApiFp(configuration);
|
|
4375
4372
|
return {
|
|
4376
4373
|
getProgram(cell, program, options) {
|
|
4377
|
-
return localVarFp.getProgram(cell, program, options).then((request) => request(axios$
|
|
4374
|
+
return localVarFp.getProgram(cell, program, options).then((request) => request(axios$88, basePath));
|
|
4378
4375
|
},
|
|
4379
4376
|
listPrograms(cell, options) {
|
|
4380
|
-
return localVarFp.listPrograms(cell, options).then((request) => request(axios$
|
|
4377
|
+
return localVarFp.listPrograms(cell, options).then((request) => request(axios$88, basePath));
|
|
4381
4378
|
},
|
|
4382
4379
|
startProgram(cell, program, programStartRequest, options) {
|
|
4383
|
-
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));
|
|
4384
4381
|
},
|
|
4385
4382
|
stopProgram(cell, program, options) {
|
|
4386
|
-
return localVarFp.stopProgram(cell, program, options).then((request) => request(axios$
|
|
4383
|
+
return localVarFp.stopProgram(cell, program, options).then((request) => request(axios$88, basePath));
|
|
4387
4384
|
}
|
|
4388
4385
|
};
|
|
4389
4386
|
};
|
|
@@ -4504,27 +4501,27 @@ const RobotConfigurationsApiFp = function(configuration) {
|
|
|
4504
4501
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getControllerConfigFromArpScan(robotControllerConfigurationRequest, options);
|
|
4505
4502
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4506
4503
|
const localVarOperationServerBasePath = operationServerMap["RobotConfigurationsApi.getControllerConfigFromArpScan"]?.[localVarOperationServerIndex]?.url;
|
|
4507
|
-
return (axios$
|
|
4504
|
+
return (axios$89, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$89, localVarOperationServerBasePath || basePath);
|
|
4508
4505
|
},
|
|
4509
4506
|
async getRobotConfigurations(options) {
|
|
4510
4507
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getRobotConfigurations(options);
|
|
4511
4508
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4512
4509
|
const localVarOperationServerBasePath = operationServerMap["RobotConfigurationsApi.getRobotConfigurations"]?.[localVarOperationServerIndex]?.url;
|
|
4513
|
-
return (axios$
|
|
4510
|
+
return (axios$90, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$90, localVarOperationServerBasePath || basePath);
|
|
4514
4511
|
}
|
|
4515
4512
|
};
|
|
4516
4513
|
};
|
|
4517
4514
|
/**
|
|
4518
4515
|
* RobotConfigurationsApi - factory interface
|
|
4519
4516
|
*/
|
|
4520
|
-
const RobotConfigurationsApiFactory = function(configuration, basePath, axios$
|
|
4517
|
+
const RobotConfigurationsApiFactory = function(configuration, basePath, axios$91) {
|
|
4521
4518
|
const localVarFp = RobotConfigurationsApiFp(configuration);
|
|
4522
4519
|
return {
|
|
4523
4520
|
getControllerConfigFromArpScan(robotControllerConfigurationRequest, options) {
|
|
4524
|
-
return localVarFp.getControllerConfigFromArpScan(robotControllerConfigurationRequest, options).then((request) => request(axios$
|
|
4521
|
+
return localVarFp.getControllerConfigFromArpScan(robotControllerConfigurationRequest, options).then((request) => request(axios$91, basePath));
|
|
4525
4522
|
},
|
|
4526
4523
|
getRobotConfigurations(options) {
|
|
4527
|
-
return localVarFp.getRobotConfigurations(options).then((request) => request(axios$
|
|
4524
|
+
return localVarFp.getRobotConfigurations(options).then((request) => request(axios$91, basePath));
|
|
4528
4525
|
}
|
|
4529
4526
|
};
|
|
4530
4527
|
};
|
|
@@ -4553,6 +4550,70 @@ var RobotConfigurationsApi = class extends BaseAPI {
|
|
|
4553
4550
|
}
|
|
4554
4551
|
};
|
|
4555
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
|
+
/**
|
|
4556
4617
|
* StoreCollisionComponentsApi - axios parameter creator
|
|
4557
4618
|
*/
|
|
4558
4619
|
const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
|
|
@@ -4977,144 +5038,144 @@ const StoreCollisionComponentsApiFp = function(configuration) {
|
|
|
4977
5038
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteStoredCollider(cell, collider, options);
|
|
4978
5039
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4979
5040
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.deleteStoredCollider"]?.[localVarOperationServerIndex]?.url;
|
|
4980
|
-
return (axios$
|
|
5041
|
+
return (axios$94, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$94, localVarOperationServerBasePath || basePath);
|
|
4981
5042
|
},
|
|
4982
5043
|
async deleteStoredCollisionLinkChain(cell, linkChain, options) {
|
|
4983
5044
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteStoredCollisionLinkChain(cell, linkChain, options);
|
|
4984
5045
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4985
5046
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.deleteStoredCollisionLinkChain"]?.[localVarOperationServerIndex]?.url;
|
|
4986
|
-
return (axios$
|
|
5047
|
+
return (axios$95, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$95, localVarOperationServerBasePath || basePath);
|
|
4987
5048
|
},
|
|
4988
5049
|
async deleteStoredCollisionTool(cell, tool, options) {
|
|
4989
5050
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteStoredCollisionTool(cell, tool, options);
|
|
4990
5051
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4991
5052
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.deleteStoredCollisionTool"]?.[localVarOperationServerIndex]?.url;
|
|
4992
|
-
return (axios$
|
|
5053
|
+
return (axios$96, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$96, localVarOperationServerBasePath || basePath);
|
|
4993
5054
|
},
|
|
4994
5055
|
async getStoredCollider(cell, collider, options) {
|
|
4995
5056
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getStoredCollider(cell, collider, options);
|
|
4996
5057
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4997
5058
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.getStoredCollider"]?.[localVarOperationServerIndex]?.url;
|
|
4998
|
-
return (axios$
|
|
5059
|
+
return (axios$97, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$97, localVarOperationServerBasePath || basePath);
|
|
4999
5060
|
},
|
|
5000
5061
|
async getStoredCollisionLinkChain(cell, linkChain, options) {
|
|
5001
5062
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getStoredCollisionLinkChain(cell, linkChain, options);
|
|
5002
5063
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5003
5064
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.getStoredCollisionLinkChain"]?.[localVarOperationServerIndex]?.url;
|
|
5004
|
-
return (axios$
|
|
5065
|
+
return (axios$98, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$98, localVarOperationServerBasePath || basePath);
|
|
5005
5066
|
},
|
|
5006
5067
|
async getStoredCollisionTool(cell, tool, options) {
|
|
5007
5068
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getStoredCollisionTool(cell, tool, options);
|
|
5008
5069
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5009
5070
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.getStoredCollisionTool"]?.[localVarOperationServerIndex]?.url;
|
|
5010
|
-
return (axios$
|
|
5071
|
+
return (axios$99, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$99, localVarOperationServerBasePath || basePath);
|
|
5011
5072
|
},
|
|
5012
5073
|
async listCollisionLinkChains(cell, options) {
|
|
5013
5074
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listCollisionLinkChains(cell, options);
|
|
5014
5075
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5015
5076
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listCollisionLinkChains"]?.[localVarOperationServerIndex]?.url;
|
|
5016
|
-
return (axios$
|
|
5077
|
+
return (axios$100, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$100, localVarOperationServerBasePath || basePath);
|
|
5017
5078
|
},
|
|
5018
5079
|
async listCollisionLinkChainsKeys(cell, options) {
|
|
5019
5080
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listCollisionLinkChainsKeys(cell, options);
|
|
5020
5081
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5021
5082
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listCollisionLinkChainsKeys"]?.[localVarOperationServerIndex]?.url;
|
|
5022
|
-
return (axios$
|
|
5083
|
+
return (axios$101, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$101, localVarOperationServerBasePath || basePath);
|
|
5023
5084
|
},
|
|
5024
5085
|
async listStoredColliders(cell, options) {
|
|
5025
5086
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredColliders(cell, options);
|
|
5026
5087
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5027
5088
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listStoredColliders"]?.[localVarOperationServerIndex]?.url;
|
|
5028
|
-
return (axios$
|
|
5089
|
+
return (axios$102, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$102, localVarOperationServerBasePath || basePath);
|
|
5029
5090
|
},
|
|
5030
5091
|
async listStoredCollidersKeys(cell, options) {
|
|
5031
5092
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredCollidersKeys(cell, options);
|
|
5032
5093
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5033
5094
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listStoredCollidersKeys"]?.[localVarOperationServerIndex]?.url;
|
|
5034
|
-
return (axios$
|
|
5095
|
+
return (axios$103, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$103, localVarOperationServerBasePath || basePath);
|
|
5035
5096
|
},
|
|
5036
5097
|
async listStoredCollisionTools(cell, options) {
|
|
5037
5098
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredCollisionTools(cell, options);
|
|
5038
5099
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5039
5100
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listStoredCollisionTools"]?.[localVarOperationServerIndex]?.url;
|
|
5040
|
-
return (axios$
|
|
5101
|
+
return (axios$104, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$104, localVarOperationServerBasePath || basePath);
|
|
5041
5102
|
},
|
|
5042
5103
|
async listStoredCollisionToolsKeys(cell, options) {
|
|
5043
5104
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredCollisionToolsKeys(cell, options);
|
|
5044
5105
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5045
5106
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listStoredCollisionToolsKeys"]?.[localVarOperationServerIndex]?.url;
|
|
5046
|
-
return (axios$
|
|
5107
|
+
return (axios$105, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$105, localVarOperationServerBasePath || basePath);
|
|
5047
5108
|
},
|
|
5048
5109
|
async storeCollider(cell, collider, collider2, options) {
|
|
5049
5110
|
const localVarAxiosArgs = await localVarAxiosParamCreator.storeCollider(cell, collider, collider2, options);
|
|
5050
5111
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5051
5112
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.storeCollider"]?.[localVarOperationServerIndex]?.url;
|
|
5052
|
-
return (axios$
|
|
5113
|
+
return (axios$106, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$106, localVarOperationServerBasePath || basePath);
|
|
5053
5114
|
},
|
|
5054
5115
|
async storeCollisionLinkChain(cell, linkChain, collider, options) {
|
|
5055
5116
|
const localVarAxiosArgs = await localVarAxiosParamCreator.storeCollisionLinkChain(cell, linkChain, collider, options);
|
|
5056
5117
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5057
5118
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.storeCollisionLinkChain"]?.[localVarOperationServerIndex]?.url;
|
|
5058
|
-
return (axios$
|
|
5119
|
+
return (axios$107, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$107, localVarOperationServerBasePath || basePath);
|
|
5059
5120
|
},
|
|
5060
5121
|
async storeCollisionTool(cell, tool, requestBody, options) {
|
|
5061
5122
|
const localVarAxiosArgs = await localVarAxiosParamCreator.storeCollisionTool(cell, tool, requestBody, options);
|
|
5062
5123
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5063
5124
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.storeCollisionTool"]?.[localVarOperationServerIndex]?.url;
|
|
5064
|
-
return (axios$
|
|
5125
|
+
return (axios$108, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$108, localVarOperationServerBasePath || basePath);
|
|
5065
5126
|
}
|
|
5066
5127
|
};
|
|
5067
5128
|
};
|
|
5068
5129
|
/**
|
|
5069
5130
|
* StoreCollisionComponentsApi - factory interface
|
|
5070
5131
|
*/
|
|
5071
|
-
const StoreCollisionComponentsApiFactory = function(configuration, basePath, axios$
|
|
5132
|
+
const StoreCollisionComponentsApiFactory = function(configuration, basePath, axios$109) {
|
|
5072
5133
|
const localVarFp = StoreCollisionComponentsApiFp(configuration);
|
|
5073
5134
|
return {
|
|
5074
5135
|
deleteStoredCollider(cell, collider, options) {
|
|
5075
|
-
return localVarFp.deleteStoredCollider(cell, collider, options).then((request) => request(axios$
|
|
5136
|
+
return localVarFp.deleteStoredCollider(cell, collider, options).then((request) => request(axios$109, basePath));
|
|
5076
5137
|
},
|
|
5077
5138
|
deleteStoredCollisionLinkChain(cell, linkChain, options) {
|
|
5078
|
-
return localVarFp.deleteStoredCollisionLinkChain(cell, linkChain, options).then((request) => request(axios$
|
|
5139
|
+
return localVarFp.deleteStoredCollisionLinkChain(cell, linkChain, options).then((request) => request(axios$109, basePath));
|
|
5079
5140
|
},
|
|
5080
5141
|
deleteStoredCollisionTool(cell, tool, options) {
|
|
5081
|
-
return localVarFp.deleteStoredCollisionTool(cell, tool, options).then((request) => request(axios$
|
|
5142
|
+
return localVarFp.deleteStoredCollisionTool(cell, tool, options).then((request) => request(axios$109, basePath));
|
|
5082
5143
|
},
|
|
5083
5144
|
getStoredCollider(cell, collider, options) {
|
|
5084
|
-
return localVarFp.getStoredCollider(cell, collider, options).then((request) => request(axios$
|
|
5145
|
+
return localVarFp.getStoredCollider(cell, collider, options).then((request) => request(axios$109, basePath));
|
|
5085
5146
|
},
|
|
5086
5147
|
getStoredCollisionLinkChain(cell, linkChain, options) {
|
|
5087
|
-
return localVarFp.getStoredCollisionLinkChain(cell, linkChain, options).then((request) => request(axios$
|
|
5148
|
+
return localVarFp.getStoredCollisionLinkChain(cell, linkChain, options).then((request) => request(axios$109, basePath));
|
|
5088
5149
|
},
|
|
5089
5150
|
getStoredCollisionTool(cell, tool, options) {
|
|
5090
|
-
return localVarFp.getStoredCollisionTool(cell, tool, options).then((request) => request(axios$
|
|
5151
|
+
return localVarFp.getStoredCollisionTool(cell, tool, options).then((request) => request(axios$109, basePath));
|
|
5091
5152
|
},
|
|
5092
5153
|
listCollisionLinkChains(cell, options) {
|
|
5093
|
-
return localVarFp.listCollisionLinkChains(cell, options).then((request) => request(axios$
|
|
5154
|
+
return localVarFp.listCollisionLinkChains(cell, options).then((request) => request(axios$109, basePath));
|
|
5094
5155
|
},
|
|
5095
5156
|
listCollisionLinkChainsKeys(cell, options) {
|
|
5096
|
-
return localVarFp.listCollisionLinkChainsKeys(cell, options).then((request) => request(axios$
|
|
5157
|
+
return localVarFp.listCollisionLinkChainsKeys(cell, options).then((request) => request(axios$109, basePath));
|
|
5097
5158
|
},
|
|
5098
5159
|
listStoredColliders(cell, options) {
|
|
5099
|
-
return localVarFp.listStoredColliders(cell, options).then((request) => request(axios$
|
|
5160
|
+
return localVarFp.listStoredColliders(cell, options).then((request) => request(axios$109, basePath));
|
|
5100
5161
|
},
|
|
5101
5162
|
listStoredCollidersKeys(cell, options) {
|
|
5102
|
-
return localVarFp.listStoredCollidersKeys(cell, options).then((request) => request(axios$
|
|
5163
|
+
return localVarFp.listStoredCollidersKeys(cell, options).then((request) => request(axios$109, basePath));
|
|
5103
5164
|
},
|
|
5104
5165
|
listStoredCollisionTools(cell, options) {
|
|
5105
|
-
return localVarFp.listStoredCollisionTools(cell, options).then((request) => request(axios$
|
|
5166
|
+
return localVarFp.listStoredCollisionTools(cell, options).then((request) => request(axios$109, basePath));
|
|
5106
5167
|
},
|
|
5107
5168
|
listStoredCollisionToolsKeys(cell, options) {
|
|
5108
|
-
return localVarFp.listStoredCollisionToolsKeys(cell, options).then((request) => request(axios$
|
|
5169
|
+
return localVarFp.listStoredCollisionToolsKeys(cell, options).then((request) => request(axios$109, basePath));
|
|
5109
5170
|
},
|
|
5110
5171
|
storeCollider(cell, collider, collider2, options) {
|
|
5111
|
-
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));
|
|
5112
5173
|
},
|
|
5113
5174
|
storeCollisionLinkChain(cell, linkChain, collider, options) {
|
|
5114
|
-
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));
|
|
5115
5176
|
},
|
|
5116
5177
|
storeCollisionTool(cell, tool, requestBody, options) {
|
|
5117
|
-
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));
|
|
5118
5179
|
}
|
|
5119
5180
|
};
|
|
5120
5181
|
};
|
|
@@ -5438,54 +5499,54 @@ const StoreCollisionSetupsApiFp = function(configuration) {
|
|
|
5438
5499
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteStoredCollisionSetup(cell, setup, options);
|
|
5439
5500
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5440
5501
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionSetupsApi.deleteStoredCollisionSetup"]?.[localVarOperationServerIndex]?.url;
|
|
5441
|
-
return (axios$
|
|
5502
|
+
return (axios$110, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$110, localVarOperationServerBasePath || basePath);
|
|
5442
5503
|
},
|
|
5443
5504
|
async getStoredCollisionSetup(cell, setup, options) {
|
|
5444
5505
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getStoredCollisionSetup(cell, setup, options);
|
|
5445
5506
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5446
5507
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionSetupsApi.getStoredCollisionSetup"]?.[localVarOperationServerIndex]?.url;
|
|
5447
|
-
return (axios$
|
|
5508
|
+
return (axios$111, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$111, localVarOperationServerBasePath || basePath);
|
|
5448
5509
|
},
|
|
5449
5510
|
async listStoredCollisionSetups(cell, options) {
|
|
5450
5511
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredCollisionSetups(cell, options);
|
|
5451
5512
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5452
5513
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionSetupsApi.listStoredCollisionSetups"]?.[localVarOperationServerIndex]?.url;
|
|
5453
|
-
return (axios$
|
|
5514
|
+
return (axios$112, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$112, localVarOperationServerBasePath || basePath);
|
|
5454
5515
|
},
|
|
5455
5516
|
async listStoredCollisionSetupsKeys(cell, options) {
|
|
5456
5517
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredCollisionSetupsKeys(cell, options);
|
|
5457
5518
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5458
5519
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionSetupsApi.listStoredCollisionSetupsKeys"]?.[localVarOperationServerIndex]?.url;
|
|
5459
|
-
return (axios$
|
|
5520
|
+
return (axios$113, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$113, localVarOperationServerBasePath || basePath);
|
|
5460
5521
|
},
|
|
5461
5522
|
async storeCollisionSetup(cell, setup, collisionSetup, options) {
|
|
5462
5523
|
const localVarAxiosArgs = await localVarAxiosParamCreator.storeCollisionSetup(cell, setup, collisionSetup, options);
|
|
5463
5524
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5464
5525
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionSetupsApi.storeCollisionSetup"]?.[localVarOperationServerIndex]?.url;
|
|
5465
|
-
return (axios$
|
|
5526
|
+
return (axios$114, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$114, localVarOperationServerBasePath || basePath);
|
|
5466
5527
|
}
|
|
5467
5528
|
};
|
|
5468
5529
|
};
|
|
5469
5530
|
/**
|
|
5470
5531
|
* StoreCollisionSetupsApi - factory interface
|
|
5471
5532
|
*/
|
|
5472
|
-
const StoreCollisionSetupsApiFactory = function(configuration, basePath, axios$
|
|
5533
|
+
const StoreCollisionSetupsApiFactory = function(configuration, basePath, axios$115) {
|
|
5473
5534
|
const localVarFp = StoreCollisionSetupsApiFp(configuration);
|
|
5474
5535
|
return {
|
|
5475
5536
|
deleteStoredCollisionSetup(cell, setup, options) {
|
|
5476
|
-
return localVarFp.deleteStoredCollisionSetup(cell, setup, options).then((request) => request(axios$
|
|
5537
|
+
return localVarFp.deleteStoredCollisionSetup(cell, setup, options).then((request) => request(axios$115, basePath));
|
|
5477
5538
|
},
|
|
5478
5539
|
getStoredCollisionSetup(cell, setup, options) {
|
|
5479
|
-
return localVarFp.getStoredCollisionSetup(cell, setup, options).then((request) => request(axios$
|
|
5540
|
+
return localVarFp.getStoredCollisionSetup(cell, setup, options).then((request) => request(axios$115, basePath));
|
|
5480
5541
|
},
|
|
5481
5542
|
listStoredCollisionSetups(cell, options) {
|
|
5482
|
-
return localVarFp.listStoredCollisionSetups(cell, options).then((request) => request(axios$
|
|
5543
|
+
return localVarFp.listStoredCollisionSetups(cell, options).then((request) => request(axios$115, basePath));
|
|
5483
5544
|
},
|
|
5484
5545
|
listStoredCollisionSetupsKeys(cell, options) {
|
|
5485
|
-
return localVarFp.listStoredCollisionSetupsKeys(cell, options).then((request) => request(axios$
|
|
5546
|
+
return localVarFp.listStoredCollisionSetupsKeys(cell, options).then((request) => request(axios$115, basePath));
|
|
5486
5547
|
},
|
|
5487
5548
|
storeCollisionSetup(cell, setup, collisionSetup, options) {
|
|
5488
|
-
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));
|
|
5489
5550
|
}
|
|
5490
5551
|
};
|
|
5491
5552
|
};
|
|
@@ -5730,63 +5791,63 @@ const StoreObjectApiFp = function(configuration) {
|
|
|
5730
5791
|
const localVarAxiosArgs = await localVarAxiosParamCreator.clearAllObjects(cell, options);
|
|
5731
5792
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5732
5793
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.clearAllObjects"]?.[localVarOperationServerIndex]?.url;
|
|
5733
|
-
return (axios$
|
|
5794
|
+
return (axios$116, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$116, localVarOperationServerBasePath || basePath);
|
|
5734
5795
|
},
|
|
5735
5796
|
async deleteObject(cell, key, options) {
|
|
5736
5797
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteObject(cell, key, options);
|
|
5737
5798
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5738
5799
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.deleteObject"]?.[localVarOperationServerIndex]?.url;
|
|
5739
|
-
return (axios$
|
|
5800
|
+
return (axios$117, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$117, localVarOperationServerBasePath || basePath);
|
|
5740
5801
|
},
|
|
5741
5802
|
async getObject(cell, key, options) {
|
|
5742
5803
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getObject(cell, key, options);
|
|
5743
5804
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5744
5805
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.getObject"]?.[localVarOperationServerIndex]?.url;
|
|
5745
|
-
return (axios$
|
|
5806
|
+
return (axios$118, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$118, localVarOperationServerBasePath || basePath);
|
|
5746
5807
|
},
|
|
5747
5808
|
async getObjectMetadata(cell, key, options) {
|
|
5748
5809
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getObjectMetadata(cell, key, options);
|
|
5749
5810
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5750
5811
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.getObjectMetadata"]?.[localVarOperationServerIndex]?.url;
|
|
5751
|
-
return (axios$
|
|
5812
|
+
return (axios$119, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$119, localVarOperationServerBasePath || basePath);
|
|
5752
5813
|
},
|
|
5753
5814
|
async listAllObjectKeys(cell, options) {
|
|
5754
5815
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listAllObjectKeys(cell, options);
|
|
5755
5816
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5756
5817
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.listAllObjectKeys"]?.[localVarOperationServerIndex]?.url;
|
|
5757
|
-
return (axios$
|
|
5818
|
+
return (axios$120, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$120, localVarOperationServerBasePath || basePath);
|
|
5758
5819
|
},
|
|
5759
5820
|
async storeObject(cell, key, xMetadata, anyValue, options) {
|
|
5760
5821
|
const localVarAxiosArgs = await localVarAxiosParamCreator.storeObject(cell, key, xMetadata, anyValue, options);
|
|
5761
5822
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5762
5823
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.storeObject"]?.[localVarOperationServerIndex]?.url;
|
|
5763
|
-
return (axios$
|
|
5824
|
+
return (axios$121, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$121, localVarOperationServerBasePath || basePath);
|
|
5764
5825
|
}
|
|
5765
5826
|
};
|
|
5766
5827
|
};
|
|
5767
5828
|
/**
|
|
5768
5829
|
* StoreObjectApi - factory interface
|
|
5769
5830
|
*/
|
|
5770
|
-
const StoreObjectApiFactory = function(configuration, basePath, axios$
|
|
5831
|
+
const StoreObjectApiFactory = function(configuration, basePath, axios$122) {
|
|
5771
5832
|
const localVarFp = StoreObjectApiFp(configuration);
|
|
5772
5833
|
return {
|
|
5773
5834
|
clearAllObjects(cell, options) {
|
|
5774
|
-
return localVarFp.clearAllObjects(cell, options).then((request) => request(axios$
|
|
5835
|
+
return localVarFp.clearAllObjects(cell, options).then((request) => request(axios$122, basePath));
|
|
5775
5836
|
},
|
|
5776
5837
|
deleteObject(cell, key, options) {
|
|
5777
|
-
return localVarFp.deleteObject(cell, key, options).then((request) => request(axios$
|
|
5838
|
+
return localVarFp.deleteObject(cell, key, options).then((request) => request(axios$122, basePath));
|
|
5778
5839
|
},
|
|
5779
5840
|
getObject(cell, key, options) {
|
|
5780
|
-
return localVarFp.getObject(cell, key, options).then((request) => request(axios$
|
|
5841
|
+
return localVarFp.getObject(cell, key, options).then((request) => request(axios$122, basePath));
|
|
5781
5842
|
},
|
|
5782
5843
|
getObjectMetadata(cell, key, options) {
|
|
5783
|
-
return localVarFp.getObjectMetadata(cell, key, options).then((request) => request(axios$
|
|
5844
|
+
return localVarFp.getObjectMetadata(cell, key, options).then((request) => request(axios$122, basePath));
|
|
5784
5845
|
},
|
|
5785
5846
|
listAllObjectKeys(cell, options) {
|
|
5786
|
-
return localVarFp.listAllObjectKeys(cell, options).then((request) => request(axios$
|
|
5847
|
+
return localVarFp.listAllObjectKeys(cell, options).then((request) => request(axios$122, basePath));
|
|
5787
5848
|
},
|
|
5788
5849
|
storeObject(cell, key, xMetadata, anyValue, options) {
|
|
5789
|
-
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));
|
|
5790
5851
|
}
|
|
5791
5852
|
};
|
|
5792
5853
|
};
|
|
@@ -6182,117 +6243,117 @@ const SystemApiFp = function(configuration) {
|
|
|
6182
6243
|
const localVarAxiosArgs = await localVarAxiosParamCreator.backupConfiguration(resources, metadata, options);
|
|
6183
6244
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6184
6245
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.backupConfiguration"]?.[localVarOperationServerIndex]?.url;
|
|
6185
|
-
return (axios$
|
|
6246
|
+
return (axios$123, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$123, localVarOperationServerBasePath || basePath);
|
|
6186
6247
|
},
|
|
6187
6248
|
async checkNovaVersionUpdate(channel, options) {
|
|
6188
6249
|
const localVarAxiosArgs = await localVarAxiosParamCreator.checkNovaVersionUpdate(channel, options);
|
|
6189
6250
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6190
6251
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.checkNovaVersionUpdate"]?.[localVarOperationServerIndex]?.url;
|
|
6191
|
-
return (axios$
|
|
6252
|
+
return (axios$124, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$124, localVarOperationServerBasePath || basePath);
|
|
6192
6253
|
},
|
|
6193
6254
|
async getArpScan(_interface, cidr, timeout, options) {
|
|
6194
6255
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getArpScan(_interface, cidr, timeout, options);
|
|
6195
6256
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6196
6257
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getArpScan"]?.[localVarOperationServerIndex]?.url;
|
|
6197
|
-
return (axios$
|
|
6258
|
+
return (axios$125, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$125, localVarOperationServerBasePath || basePath);
|
|
6198
6259
|
},
|
|
6199
6260
|
async getConfigurationBackupStatus(operationId, options) {
|
|
6200
6261
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getConfigurationBackupStatus(operationId, options);
|
|
6201
6262
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6202
6263
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getConfigurationBackupStatus"]?.[localVarOperationServerIndex]?.url;
|
|
6203
|
-
return (axios$
|
|
6264
|
+
return (axios$126, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$126, localVarOperationServerBasePath || basePath);
|
|
6204
6265
|
},
|
|
6205
6266
|
async getDiagnosePackage(options) {
|
|
6206
6267
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getDiagnosePackage(options);
|
|
6207
6268
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6208
6269
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getDiagnosePackage"]?.[localVarOperationServerIndex]?.url;
|
|
6209
|
-
return (axios$
|
|
6270
|
+
return (axios$127, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$127, localVarOperationServerBasePath || basePath);
|
|
6210
6271
|
},
|
|
6211
6272
|
async getNetworkInterfaces(options) {
|
|
6212
6273
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getNetworkInterfaces(options);
|
|
6213
6274
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6214
6275
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getNetworkInterfaces"]?.[localVarOperationServerIndex]?.url;
|
|
6215
|
-
return (axios$
|
|
6276
|
+
return (axios$128, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$128, localVarOperationServerBasePath || basePath);
|
|
6216
6277
|
},
|
|
6217
6278
|
async getNetworkState(options) {
|
|
6218
6279
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getNetworkState(options);
|
|
6219
6280
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6220
6281
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getNetworkState"]?.[localVarOperationServerIndex]?.url;
|
|
6221
|
-
return (axios$
|
|
6282
|
+
return (axios$129, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$129, localVarOperationServerBasePath || basePath);
|
|
6222
6283
|
},
|
|
6223
6284
|
async getSystemStatus(options) {
|
|
6224
6285
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getSystemStatus(options);
|
|
6225
6286
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6226
6287
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getSystemStatus"]?.[localVarOperationServerIndex]?.url;
|
|
6227
|
-
return (axios$
|
|
6288
|
+
return (axios$130, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$130, localVarOperationServerBasePath || basePath);
|
|
6228
6289
|
},
|
|
6229
6290
|
async getSystemVersion(options) {
|
|
6230
6291
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getSystemVersion(options);
|
|
6231
6292
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6232
6293
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getSystemVersion"]?.[localVarOperationServerIndex]?.url;
|
|
6233
|
-
return (axios$
|
|
6294
|
+
return (axios$131, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$131, localVarOperationServerBasePath || basePath);
|
|
6234
6295
|
},
|
|
6235
6296
|
async listConfigurationResources(options) {
|
|
6236
6297
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listConfigurationResources(options);
|
|
6237
6298
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6238
6299
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.listConfigurationResources"]?.[localVarOperationServerIndex]?.url;
|
|
6239
|
-
return (axios$
|
|
6300
|
+
return (axios$132, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$132, localVarOperationServerBasePath || basePath);
|
|
6240
6301
|
},
|
|
6241
6302
|
async restoreConfiguration(body, resources, options) {
|
|
6242
6303
|
const localVarAxiosArgs = await localVarAxiosParamCreator.restoreConfiguration(body, resources, options);
|
|
6243
6304
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6244
6305
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.restoreConfiguration"]?.[localVarOperationServerIndex]?.url;
|
|
6245
|
-
return (axios$
|
|
6306
|
+
return (axios$133, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$133, localVarOperationServerBasePath || basePath);
|
|
6246
6307
|
},
|
|
6247
6308
|
async updateNovaVersion(updateNovaVersionRequest, options) {
|
|
6248
6309
|
const localVarAxiosArgs = await localVarAxiosParamCreator.updateNovaVersion(updateNovaVersionRequest, options);
|
|
6249
6310
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6250
6311
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.updateNovaVersion"]?.[localVarOperationServerIndex]?.url;
|
|
6251
|
-
return (axios$
|
|
6312
|
+
return (axios$134, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$134, localVarOperationServerBasePath || basePath);
|
|
6252
6313
|
}
|
|
6253
6314
|
};
|
|
6254
6315
|
};
|
|
6255
6316
|
/**
|
|
6256
6317
|
* SystemApi - factory interface
|
|
6257
6318
|
*/
|
|
6258
|
-
const SystemApiFactory = function(configuration, basePath, axios$
|
|
6319
|
+
const SystemApiFactory = function(configuration, basePath, axios$135) {
|
|
6259
6320
|
const localVarFp = SystemApiFp(configuration);
|
|
6260
6321
|
return {
|
|
6261
6322
|
backupConfiguration(resources, metadata, options) {
|
|
6262
|
-
return localVarFp.backupConfiguration(resources, metadata, options).then((request) => request(axios$
|
|
6323
|
+
return localVarFp.backupConfiguration(resources, metadata, options).then((request) => request(axios$135, basePath));
|
|
6263
6324
|
},
|
|
6264
6325
|
checkNovaVersionUpdate(channel, options) {
|
|
6265
|
-
return localVarFp.checkNovaVersionUpdate(channel, options).then((request) => request(axios$
|
|
6326
|
+
return localVarFp.checkNovaVersionUpdate(channel, options).then((request) => request(axios$135, basePath));
|
|
6266
6327
|
},
|
|
6267
6328
|
getArpScan(_interface, cidr, timeout, options) {
|
|
6268
|
-
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));
|
|
6269
6330
|
},
|
|
6270
6331
|
getConfigurationBackupStatus(operationId, options) {
|
|
6271
|
-
return localVarFp.getConfigurationBackupStatus(operationId, options).then((request) => request(axios$
|
|
6332
|
+
return localVarFp.getConfigurationBackupStatus(operationId, options).then((request) => request(axios$135, basePath));
|
|
6272
6333
|
},
|
|
6273
6334
|
getDiagnosePackage(options) {
|
|
6274
|
-
return localVarFp.getDiagnosePackage(options).then((request) => request(axios$
|
|
6335
|
+
return localVarFp.getDiagnosePackage(options).then((request) => request(axios$135, basePath));
|
|
6275
6336
|
},
|
|
6276
6337
|
getNetworkInterfaces(options) {
|
|
6277
|
-
return localVarFp.getNetworkInterfaces(options).then((request) => request(axios$
|
|
6338
|
+
return localVarFp.getNetworkInterfaces(options).then((request) => request(axios$135, basePath));
|
|
6278
6339
|
},
|
|
6279
6340
|
getNetworkState(options) {
|
|
6280
|
-
return localVarFp.getNetworkState(options).then((request) => request(axios$
|
|
6341
|
+
return localVarFp.getNetworkState(options).then((request) => request(axios$135, basePath));
|
|
6281
6342
|
},
|
|
6282
6343
|
getSystemStatus(options) {
|
|
6283
|
-
return localVarFp.getSystemStatus(options).then((request) => request(axios$
|
|
6344
|
+
return localVarFp.getSystemStatus(options).then((request) => request(axios$135, basePath));
|
|
6284
6345
|
},
|
|
6285
6346
|
getSystemVersion(options) {
|
|
6286
|
-
return localVarFp.getSystemVersion(options).then((request) => request(axios$
|
|
6347
|
+
return localVarFp.getSystemVersion(options).then((request) => request(axios$135, basePath));
|
|
6287
6348
|
},
|
|
6288
6349
|
listConfigurationResources(options) {
|
|
6289
|
-
return localVarFp.listConfigurationResources(options).then((request) => request(axios$
|
|
6350
|
+
return localVarFp.listConfigurationResources(options).then((request) => request(axios$135, basePath));
|
|
6290
6351
|
},
|
|
6291
6352
|
restoreConfiguration(body, resources, options) {
|
|
6292
|
-
return localVarFp.restoreConfiguration(body, resources, options).then((request) => request(axios$
|
|
6353
|
+
return localVarFp.restoreConfiguration(body, resources, options).then((request) => request(axios$135, basePath));
|
|
6293
6354
|
},
|
|
6294
6355
|
updateNovaVersion(updateNovaVersionRequest, options) {
|
|
6295
|
-
return localVarFp.updateNovaVersion(updateNovaVersionRequest, options).then((request) => request(axios$
|
|
6356
|
+
return localVarFp.updateNovaVersion(updateNovaVersionRequest, options).then((request) => request(axios$135, basePath));
|
|
6296
6357
|
}
|
|
6297
6358
|
};
|
|
6298
6359
|
};
|
|
@@ -6576,54 +6637,54 @@ const TrajectoryCachingApiFp = function(configuration) {
|
|
|
6576
6637
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addTrajectory(cell, controller, addTrajectoryRequest, options);
|
|
6577
6638
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6578
6639
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryCachingApi.addTrajectory"]?.[localVarOperationServerIndex]?.url;
|
|
6579
|
-
return (axios$
|
|
6640
|
+
return (axios$136, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$136, localVarOperationServerBasePath || basePath);
|
|
6580
6641
|
},
|
|
6581
6642
|
async clearTrajectories(cell, controller, options) {
|
|
6582
6643
|
const localVarAxiosArgs = await localVarAxiosParamCreator.clearTrajectories(cell, controller, options);
|
|
6583
6644
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6584
6645
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryCachingApi.clearTrajectories"]?.[localVarOperationServerIndex]?.url;
|
|
6585
|
-
return (axios$
|
|
6646
|
+
return (axios$137, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$137, localVarOperationServerBasePath || basePath);
|
|
6586
6647
|
},
|
|
6587
6648
|
async deleteTrajectory(cell, controller, trajectory, options) {
|
|
6588
6649
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteTrajectory(cell, controller, trajectory, options);
|
|
6589
6650
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6590
6651
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryCachingApi.deleteTrajectory"]?.[localVarOperationServerIndex]?.url;
|
|
6591
|
-
return (axios$
|
|
6652
|
+
return (axios$138, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$138, localVarOperationServerBasePath || basePath);
|
|
6592
6653
|
},
|
|
6593
6654
|
async getTrajectory(cell, controller, trajectory, options) {
|
|
6594
6655
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getTrajectory(cell, controller, trajectory, options);
|
|
6595
6656
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6596
6657
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryCachingApi.getTrajectory"]?.[localVarOperationServerIndex]?.url;
|
|
6597
|
-
return (axios$
|
|
6658
|
+
return (axios$139, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$139, localVarOperationServerBasePath || basePath);
|
|
6598
6659
|
},
|
|
6599
6660
|
async listTrajectories(cell, controller, options) {
|
|
6600
6661
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listTrajectories(cell, controller, options);
|
|
6601
6662
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6602
6663
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryCachingApi.listTrajectories"]?.[localVarOperationServerIndex]?.url;
|
|
6603
|
-
return (axios$
|
|
6664
|
+
return (axios$140, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$140, localVarOperationServerBasePath || basePath);
|
|
6604
6665
|
}
|
|
6605
6666
|
};
|
|
6606
6667
|
};
|
|
6607
6668
|
/**
|
|
6608
6669
|
* TrajectoryCachingApi - factory interface
|
|
6609
6670
|
*/
|
|
6610
|
-
const TrajectoryCachingApiFactory = function(configuration, basePath, axios$
|
|
6671
|
+
const TrajectoryCachingApiFactory = function(configuration, basePath, axios$141) {
|
|
6611
6672
|
const localVarFp = TrajectoryCachingApiFp(configuration);
|
|
6612
6673
|
return {
|
|
6613
6674
|
addTrajectory(cell, controller, addTrajectoryRequest, options) {
|
|
6614
|
-
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));
|
|
6615
6676
|
},
|
|
6616
6677
|
clearTrajectories(cell, controller, options) {
|
|
6617
|
-
return localVarFp.clearTrajectories(cell, controller, options).then((request) => request(axios$
|
|
6678
|
+
return localVarFp.clearTrajectories(cell, controller, options).then((request) => request(axios$141, basePath));
|
|
6618
6679
|
},
|
|
6619
6680
|
deleteTrajectory(cell, controller, trajectory, options) {
|
|
6620
|
-
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));
|
|
6621
6682
|
},
|
|
6622
6683
|
getTrajectory(cell, controller, trajectory, options) {
|
|
6623
|
-
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));
|
|
6624
6685
|
},
|
|
6625
6686
|
listTrajectories(cell, controller, options) {
|
|
6626
|
-
return localVarFp.listTrajectories(cell, controller, options).then((request) => request(axios$
|
|
6687
|
+
return localVarFp.listTrajectories(cell, controller, options).then((request) => request(axios$141, basePath));
|
|
6627
6688
|
}
|
|
6628
6689
|
};
|
|
6629
6690
|
};
|
|
@@ -6734,16 +6795,16 @@ const TrajectoryExecutionApiFp = function(configuration) {
|
|
|
6734
6795
|
const localVarAxiosArgs = await localVarAxiosParamCreator.executeTrajectory(cell, controller, executeTrajectoryRequest, options);
|
|
6735
6796
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6736
6797
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryExecutionApi.executeTrajectory"]?.[localVarOperationServerIndex]?.url;
|
|
6737
|
-
return (axios$
|
|
6798
|
+
return (axios$142, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$142, localVarOperationServerBasePath || basePath);
|
|
6738
6799
|
} };
|
|
6739
6800
|
};
|
|
6740
6801
|
/**
|
|
6741
6802
|
* TrajectoryExecutionApi - factory interface
|
|
6742
6803
|
*/
|
|
6743
|
-
const TrajectoryExecutionApiFactory = function(configuration, basePath, axios$
|
|
6804
|
+
const TrajectoryExecutionApiFactory = function(configuration, basePath, axios$143) {
|
|
6744
6805
|
const localVarFp = TrajectoryExecutionApiFp(configuration);
|
|
6745
6806
|
return { executeTrajectory(cell, controller, executeTrajectoryRequest, options) {
|
|
6746
|
-
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));
|
|
6747
6808
|
} };
|
|
6748
6809
|
};
|
|
6749
6810
|
/**
|
|
@@ -6896,45 +6957,45 @@ const TrajectoryPlanningApiFp = function(configuration) {
|
|
|
6896
6957
|
const localVarAxiosArgs = await localVarAxiosParamCreator.mergeTrajectories(cell, mergeTrajectoriesRequest, options);
|
|
6897
6958
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6898
6959
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryPlanningApi.mergeTrajectories"]?.[localVarOperationServerIndex]?.url;
|
|
6899
|
-
return (axios$
|
|
6960
|
+
return (axios$144, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$144, localVarOperationServerBasePath || basePath);
|
|
6900
6961
|
},
|
|
6901
6962
|
async planCollisionFree(cell, planCollisionFreeRequest, options) {
|
|
6902
6963
|
const localVarAxiosArgs = await localVarAxiosParamCreator.planCollisionFree(cell, planCollisionFreeRequest, options);
|
|
6903
6964
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6904
6965
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryPlanningApi.planCollisionFree"]?.[localVarOperationServerIndex]?.url;
|
|
6905
|
-
return (axios$
|
|
6966
|
+
return (axios$145, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$145, localVarOperationServerBasePath || basePath);
|
|
6906
6967
|
},
|
|
6907
6968
|
async planTrajectory(cell, planTrajectoryRequest, options) {
|
|
6908
6969
|
const localVarAxiosArgs = await localVarAxiosParamCreator.planTrajectory(cell, planTrajectoryRequest, options);
|
|
6909
6970
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6910
6971
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryPlanningApi.planTrajectory"]?.[localVarOperationServerIndex]?.url;
|
|
6911
|
-
return (axios$
|
|
6972
|
+
return (axios$146, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$146, localVarOperationServerBasePath || basePath);
|
|
6912
6973
|
},
|
|
6913
6974
|
async searchCollisionFreeMultiMotionGroup(cell, multiSearchCollisionFreeRequest, options) {
|
|
6914
6975
|
const localVarAxiosArgs = await localVarAxiosParamCreator.searchCollisionFreeMultiMotionGroup(cell, multiSearchCollisionFreeRequest, options);
|
|
6915
6976
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6916
6977
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryPlanningApi.searchCollisionFreeMultiMotionGroup"]?.[localVarOperationServerIndex]?.url;
|
|
6917
|
-
return (axios$
|
|
6978
|
+
return (axios$147, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$147, localVarOperationServerBasePath || basePath);
|
|
6918
6979
|
}
|
|
6919
6980
|
};
|
|
6920
6981
|
};
|
|
6921
6982
|
/**
|
|
6922
6983
|
* TrajectoryPlanningApi - factory interface
|
|
6923
6984
|
*/
|
|
6924
|
-
const TrajectoryPlanningApiFactory = function(configuration, basePath, axios$
|
|
6985
|
+
const TrajectoryPlanningApiFactory = function(configuration, basePath, axios$148) {
|
|
6925
6986
|
const localVarFp = TrajectoryPlanningApiFp(configuration);
|
|
6926
6987
|
return {
|
|
6927
6988
|
mergeTrajectories(cell, mergeTrajectoriesRequest, options) {
|
|
6928
|
-
return localVarFp.mergeTrajectories(cell, mergeTrajectoriesRequest, options).then((request) => request(axios$
|
|
6989
|
+
return localVarFp.mergeTrajectories(cell, mergeTrajectoriesRequest, options).then((request) => request(axios$148, basePath));
|
|
6929
6990
|
},
|
|
6930
6991
|
planCollisionFree(cell, planCollisionFreeRequest, options) {
|
|
6931
|
-
return localVarFp.planCollisionFree(cell, planCollisionFreeRequest, options).then((request) => request(axios$
|
|
6992
|
+
return localVarFp.planCollisionFree(cell, planCollisionFreeRequest, options).then((request) => request(axios$148, basePath));
|
|
6932
6993
|
},
|
|
6933
6994
|
planTrajectory(cell, planTrajectoryRequest, options) {
|
|
6934
|
-
return localVarFp.planTrajectory(cell, planTrajectoryRequest, options).then((request) => request(axios$
|
|
6995
|
+
return localVarFp.planTrajectory(cell, planTrajectoryRequest, options).then((request) => request(axios$148, basePath));
|
|
6935
6996
|
},
|
|
6936
6997
|
searchCollisionFreeMultiMotionGroup(cell, multiSearchCollisionFreeRequest, options) {
|
|
6937
|
-
return localVarFp.searchCollisionFreeMultiMotionGroup(cell, multiSearchCollisionFreeRequest, options).then((request) => request(axios$
|
|
6998
|
+
return localVarFp.searchCollisionFreeMultiMotionGroup(cell, multiSearchCollisionFreeRequest, options).then((request) => request(axios$148, basePath));
|
|
6938
6999
|
}
|
|
6939
7000
|
};
|
|
6940
7001
|
};
|
|
@@ -7025,16 +7086,16 @@ const VersionApiFp = function(configuration) {
|
|
|
7025
7086
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getApiVersion(options);
|
|
7026
7087
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7027
7088
|
const localVarOperationServerBasePath = operationServerMap["VersionApi.getApiVersion"]?.[localVarOperationServerIndex]?.url;
|
|
7028
|
-
return (axios$
|
|
7089
|
+
return (axios$149, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$149, localVarOperationServerBasePath || basePath);
|
|
7029
7090
|
} };
|
|
7030
7091
|
};
|
|
7031
7092
|
/**
|
|
7032
7093
|
* VersionApi - factory interface
|
|
7033
7094
|
*/
|
|
7034
|
-
const VersionApiFactory = function(configuration, basePath, axios$
|
|
7095
|
+
const VersionApiFactory = function(configuration, basePath, axios$150) {
|
|
7035
7096
|
const localVarFp = VersionApiFp(configuration);
|
|
7036
7097
|
return { getApiVersion(options) {
|
|
7037
|
-
return localVarFp.getApiVersion(options).then((request) => request(axios$
|
|
7098
|
+
return localVarFp.getApiVersion(options).then((request) => request(axios$150, basePath));
|
|
7038
7099
|
} };
|
|
7039
7100
|
};
|
|
7040
7101
|
/**
|
|
@@ -7643,189 +7704,189 @@ const VirtualControllerApiFp = function(configuration) {
|
|
|
7643
7704
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options);
|
|
7644
7705
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7645
7706
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.addVirtualControllerCoordinateSystem"]?.[localVarOperationServerIndex]?.url;
|
|
7646
|
-
return (axios$
|
|
7707
|
+
return (axios$151, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$151, localVarOperationServerBasePath || basePath);
|
|
7647
7708
|
},
|
|
7648
7709
|
async addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options) {
|
|
7649
7710
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options);
|
|
7650
7711
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7651
7712
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.addVirtualControllerMotionGroup"]?.[localVarOperationServerIndex]?.url;
|
|
7652
|
-
return (axios$
|
|
7713
|
+
return (axios$152, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$152, localVarOperationServerBasePath || basePath);
|
|
7653
7714
|
},
|
|
7654
7715
|
async addVirtualControllerSafetyZone(cell, controller, safetyZone, options) {
|
|
7655
7716
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualControllerSafetyZone(cell, controller, safetyZone, options);
|
|
7656
7717
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7657
7718
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.addVirtualControllerSafetyZone"]?.[localVarOperationServerIndex]?.url;
|
|
7658
|
-
return (axios$
|
|
7719
|
+
return (axios$153, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$153, localVarOperationServerBasePath || basePath);
|
|
7659
7720
|
},
|
|
7660
7721
|
async addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options) {
|
|
7661
7722
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options);
|
|
7662
7723
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7663
7724
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.addVirtualControllerTcp"]?.[localVarOperationServerIndex]?.url;
|
|
7664
|
-
return (axios$
|
|
7725
|
+
return (axios$154, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$154, localVarOperationServerBasePath || basePath);
|
|
7665
7726
|
},
|
|
7666
7727
|
async deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options) {
|
|
7667
7728
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options);
|
|
7668
7729
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7669
7730
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.deleteVirtualControllerCoordinateSystem"]?.[localVarOperationServerIndex]?.url;
|
|
7670
|
-
return (axios$
|
|
7731
|
+
return (axios$155, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$155, localVarOperationServerBasePath || basePath);
|
|
7671
7732
|
},
|
|
7672
7733
|
async deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options) {
|
|
7673
7734
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options);
|
|
7674
7735
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7675
7736
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.deleteVirtualControllerMotionGroup"]?.[localVarOperationServerIndex]?.url;
|
|
7676
|
-
return (axios$
|
|
7737
|
+
return (axios$156, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$156, localVarOperationServerBasePath || basePath);
|
|
7677
7738
|
},
|
|
7678
7739
|
async deleteVirtualControllerSafetyZone(cell, controller, id, options) {
|
|
7679
7740
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualControllerSafetyZone(cell, controller, id, options);
|
|
7680
7741
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7681
7742
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.deleteVirtualControllerSafetyZone"]?.[localVarOperationServerIndex]?.url;
|
|
7682
|
-
return (axios$
|
|
7743
|
+
return (axios$157, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$157, localVarOperationServerBasePath || basePath);
|
|
7683
7744
|
},
|
|
7684
7745
|
async deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options) {
|
|
7685
7746
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options);
|
|
7686
7747
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7687
7748
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.deleteVirtualControllerTcp"]?.[localVarOperationServerIndex]?.url;
|
|
7688
|
-
return (axios$
|
|
7749
|
+
return (axios$158, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$158, localVarOperationServerBasePath || basePath);
|
|
7689
7750
|
},
|
|
7690
7751
|
async getEmergencyStop(cell, controller, options) {
|
|
7691
7752
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getEmergencyStop(cell, controller, options);
|
|
7692
7753
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7693
7754
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getEmergencyStop"]?.[localVarOperationServerIndex]?.url;
|
|
7694
|
-
return (axios$
|
|
7755
|
+
return (axios$159, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$159, localVarOperationServerBasePath || basePath);
|
|
7695
7756
|
},
|
|
7696
7757
|
async getMotionGroupState(cell, controller, motionGroup, options) {
|
|
7697
7758
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupState(cell, controller, motionGroup, options);
|
|
7698
7759
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7699
7760
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getMotionGroupState"]?.[localVarOperationServerIndex]?.url;
|
|
7700
|
-
return (axios$
|
|
7761
|
+
return (axios$160, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$160, localVarOperationServerBasePath || basePath);
|
|
7701
7762
|
},
|
|
7702
7763
|
async getMotionGroups(cell, controller, options) {
|
|
7703
7764
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroups(cell, controller, options);
|
|
7704
7765
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7705
7766
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getMotionGroups"]?.[localVarOperationServerIndex]?.url;
|
|
7706
|
-
return (axios$
|
|
7767
|
+
return (axios$161, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$161, localVarOperationServerBasePath || basePath);
|
|
7707
7768
|
},
|
|
7708
7769
|
async getOperationMode(cell, controller, options) {
|
|
7709
7770
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getOperationMode(cell, controller, options);
|
|
7710
7771
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7711
7772
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getOperationMode"]?.[localVarOperationServerIndex]?.url;
|
|
7712
|
-
return (axios$
|
|
7773
|
+
return (axios$162, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$162, localVarOperationServerBasePath || basePath);
|
|
7713
7774
|
},
|
|
7714
7775
|
async getVirtualControllerMounting(cell, controller, motionGroup, options) {
|
|
7715
7776
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getVirtualControllerMounting(cell, controller, motionGroup, options);
|
|
7716
7777
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7717
7778
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getVirtualControllerMounting"]?.[localVarOperationServerIndex]?.url;
|
|
7718
|
-
return (axios$
|
|
7779
|
+
return (axios$163, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$163, localVarOperationServerBasePath || basePath);
|
|
7719
7780
|
},
|
|
7720
7781
|
async getVirtualControllerSafetyZones(cell, controller, options) {
|
|
7721
7782
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getVirtualControllerSafetyZones(cell, controller, options);
|
|
7722
7783
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7723
7784
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getVirtualControllerSafetyZones"]?.[localVarOperationServerIndex]?.url;
|
|
7724
|
-
return (axios$
|
|
7785
|
+
return (axios$164, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$164, localVarOperationServerBasePath || basePath);
|
|
7725
7786
|
},
|
|
7726
7787
|
async listVirtualControllerCoordinateSystems(cell, controller, options) {
|
|
7727
7788
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listVirtualControllerCoordinateSystems(cell, controller, options);
|
|
7728
7789
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7729
7790
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.listVirtualControllerCoordinateSystems"]?.[localVarOperationServerIndex]?.url;
|
|
7730
|
-
return (axios$
|
|
7791
|
+
return (axios$165, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$165, localVarOperationServerBasePath || basePath);
|
|
7731
7792
|
},
|
|
7732
7793
|
async listVirtualControllerTcps(cell, controller, motionGroup, options) {
|
|
7733
7794
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listVirtualControllerTcps(cell, controller, motionGroup, options);
|
|
7734
7795
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7735
7796
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.listVirtualControllerTcps"]?.[localVarOperationServerIndex]?.url;
|
|
7736
|
-
return (axios$
|
|
7797
|
+
return (axios$166, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$166, localVarOperationServerBasePath || basePath);
|
|
7737
7798
|
},
|
|
7738
7799
|
async setEmergencyStop(cell, controller, active, options) {
|
|
7739
7800
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setEmergencyStop(cell, controller, active, options);
|
|
7740
7801
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7741
7802
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.setEmergencyStop"]?.[localVarOperationServerIndex]?.url;
|
|
7742
|
-
return (axios$
|
|
7803
|
+
return (axios$167, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$167, localVarOperationServerBasePath || basePath);
|
|
7743
7804
|
},
|
|
7744
7805
|
async setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options) {
|
|
7745
7806
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options);
|
|
7746
7807
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7747
7808
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.setMotionGroupState"]?.[localVarOperationServerIndex]?.url;
|
|
7748
|
-
return (axios$
|
|
7809
|
+
return (axios$168, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$168, localVarOperationServerBasePath || basePath);
|
|
7749
7810
|
},
|
|
7750
7811
|
async setOperationMode(cell, controller, mode, options) {
|
|
7751
7812
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setOperationMode(cell, controller, mode, options);
|
|
7752
7813
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7753
7814
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.setOperationMode"]?.[localVarOperationServerIndex]?.url;
|
|
7754
|
-
return (axios$
|
|
7815
|
+
return (axios$169, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$169, localVarOperationServerBasePath || basePath);
|
|
7755
7816
|
},
|
|
7756
7817
|
async setVirtualControllerMounting(cell, controller, motionGroup, coordinateSystem, options) {
|
|
7757
7818
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setVirtualControllerMounting(cell, controller, motionGroup, coordinateSystem, options);
|
|
7758
7819
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7759
7820
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.setVirtualControllerMounting"]?.[localVarOperationServerIndex]?.url;
|
|
7760
|
-
return (axios$
|
|
7821
|
+
return (axios$170, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$170, localVarOperationServerBasePath || basePath);
|
|
7761
7822
|
}
|
|
7762
7823
|
};
|
|
7763
7824
|
};
|
|
7764
7825
|
/**
|
|
7765
7826
|
* VirtualControllerApi - factory interface
|
|
7766
7827
|
*/
|
|
7767
|
-
const VirtualControllerApiFactory = function(configuration, basePath, axios$
|
|
7828
|
+
const VirtualControllerApiFactory = function(configuration, basePath, axios$171) {
|
|
7768
7829
|
const localVarFp = VirtualControllerApiFp(configuration);
|
|
7769
7830
|
return {
|
|
7770
7831
|
addVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options) {
|
|
7771
|
-
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));
|
|
7772
7833
|
},
|
|
7773
7834
|
addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options) {
|
|
7774
|
-
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));
|
|
7775
7836
|
},
|
|
7776
7837
|
addVirtualControllerSafetyZone(cell, controller, safetyZone, options) {
|
|
7777
|
-
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));
|
|
7778
7839
|
},
|
|
7779
7840
|
addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options) {
|
|
7780
|
-
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));
|
|
7781
7842
|
},
|
|
7782
7843
|
deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options) {
|
|
7783
|
-
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));
|
|
7784
7845
|
},
|
|
7785
7846
|
deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options) {
|
|
7786
|
-
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));
|
|
7787
7848
|
},
|
|
7788
7849
|
deleteVirtualControllerSafetyZone(cell, controller, id, options) {
|
|
7789
|
-
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));
|
|
7790
7851
|
},
|
|
7791
7852
|
deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options) {
|
|
7792
|
-
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));
|
|
7793
7854
|
},
|
|
7794
7855
|
getEmergencyStop(cell, controller, options) {
|
|
7795
|
-
return localVarFp.getEmergencyStop(cell, controller, options).then((request) => request(axios$
|
|
7856
|
+
return localVarFp.getEmergencyStop(cell, controller, options).then((request) => request(axios$171, basePath));
|
|
7796
7857
|
},
|
|
7797
7858
|
getMotionGroupState(cell, controller, motionGroup, options) {
|
|
7798
|
-
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));
|
|
7799
7860
|
},
|
|
7800
7861
|
getMotionGroups(cell, controller, options) {
|
|
7801
|
-
return localVarFp.getMotionGroups(cell, controller, options).then((request) => request(axios$
|
|
7862
|
+
return localVarFp.getMotionGroups(cell, controller, options).then((request) => request(axios$171, basePath));
|
|
7802
7863
|
},
|
|
7803
7864
|
getOperationMode(cell, controller, options) {
|
|
7804
|
-
return localVarFp.getOperationMode(cell, controller, options).then((request) => request(axios$
|
|
7865
|
+
return localVarFp.getOperationMode(cell, controller, options).then((request) => request(axios$171, basePath));
|
|
7805
7866
|
},
|
|
7806
7867
|
getVirtualControllerMounting(cell, controller, motionGroup, options) {
|
|
7807
|
-
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));
|
|
7808
7869
|
},
|
|
7809
7870
|
getVirtualControllerSafetyZones(cell, controller, options) {
|
|
7810
|
-
return localVarFp.getVirtualControllerSafetyZones(cell, controller, options).then((request) => request(axios$
|
|
7871
|
+
return localVarFp.getVirtualControllerSafetyZones(cell, controller, options).then((request) => request(axios$171, basePath));
|
|
7811
7872
|
},
|
|
7812
7873
|
listVirtualControllerCoordinateSystems(cell, controller, options) {
|
|
7813
|
-
return localVarFp.listVirtualControllerCoordinateSystems(cell, controller, options).then((request) => request(axios$
|
|
7874
|
+
return localVarFp.listVirtualControllerCoordinateSystems(cell, controller, options).then((request) => request(axios$171, basePath));
|
|
7814
7875
|
},
|
|
7815
7876
|
listVirtualControllerTcps(cell, controller, motionGroup, options) {
|
|
7816
|
-
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));
|
|
7817
7878
|
},
|
|
7818
7879
|
setEmergencyStop(cell, controller, active, options) {
|
|
7819
|
-
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));
|
|
7820
7881
|
},
|
|
7821
7882
|
setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options) {
|
|
7822
|
-
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));
|
|
7823
7884
|
},
|
|
7824
7885
|
setOperationMode(cell, controller, mode, options) {
|
|
7825
|
-
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));
|
|
7826
7887
|
},
|
|
7827
7888
|
setVirtualControllerMounting(cell, controller, motionGroup, coordinateSystem, options) {
|
|
7828
|
-
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));
|
|
7829
7890
|
}
|
|
7830
7891
|
};
|
|
7831
7892
|
};
|
|
@@ -8205,45 +8266,45 @@ const VirtualControllerBehaviorApiFp = function(configuration) {
|
|
|
8205
8266
|
const localVarAxiosArgs = await localVarAxiosParamCreator.externalJointsStream(cell, controller, externalJointStreamRequest, options);
|
|
8206
8267
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8207
8268
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerBehaviorApi.externalJointsStream"]?.[localVarOperationServerIndex]?.url;
|
|
8208
|
-
return (axios$
|
|
8269
|
+
return (axios$172, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$172, localVarOperationServerBasePath || basePath);
|
|
8209
8270
|
},
|
|
8210
8271
|
async getCycleTime(cell, controller, options) {
|
|
8211
8272
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getCycleTime(cell, controller, options);
|
|
8212
8273
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8213
8274
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerBehaviorApi.getCycleTime"]?.[localVarOperationServerIndex]?.url;
|
|
8214
|
-
return (axios$
|
|
8275
|
+
return (axios$173, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$173, localVarOperationServerBasePath || basePath);
|
|
8215
8276
|
},
|
|
8216
8277
|
async getVirtualControllerBehavior(cell, controller, options) {
|
|
8217
8278
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getVirtualControllerBehavior(cell, controller, options);
|
|
8218
8279
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8219
8280
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerBehaviorApi.getVirtualControllerBehavior"]?.[localVarOperationServerIndex]?.url;
|
|
8220
|
-
return (axios$
|
|
8281
|
+
return (axios$174, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$174, localVarOperationServerBasePath || basePath);
|
|
8221
8282
|
},
|
|
8222
8283
|
async setVirtualControllerBehavior(cell, controller, behavior, options) {
|
|
8223
8284
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setVirtualControllerBehavior(cell, controller, behavior, options);
|
|
8224
8285
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8225
8286
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerBehaviorApi.setVirtualControllerBehavior"]?.[localVarOperationServerIndex]?.url;
|
|
8226
|
-
return (axios$
|
|
8287
|
+
return (axios$175, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$175, localVarOperationServerBasePath || basePath);
|
|
8227
8288
|
}
|
|
8228
8289
|
};
|
|
8229
8290
|
};
|
|
8230
8291
|
/**
|
|
8231
8292
|
* VirtualControllerBehaviorApi - factory interface
|
|
8232
8293
|
*/
|
|
8233
|
-
const VirtualControllerBehaviorApiFactory = function(configuration, basePath, axios$
|
|
8294
|
+
const VirtualControllerBehaviorApiFactory = function(configuration, basePath, axios$176) {
|
|
8234
8295
|
const localVarFp = VirtualControllerBehaviorApiFp(configuration);
|
|
8235
8296
|
return {
|
|
8236
8297
|
externalJointsStream(cell, controller, externalJointStreamRequest, options) {
|
|
8237
|
-
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));
|
|
8238
8299
|
},
|
|
8239
8300
|
getCycleTime(cell, controller, options) {
|
|
8240
|
-
return localVarFp.getCycleTime(cell, controller, options).then((request) => request(axios$
|
|
8301
|
+
return localVarFp.getCycleTime(cell, controller, options).then((request) => request(axios$176, basePath));
|
|
8241
8302
|
},
|
|
8242
8303
|
getVirtualControllerBehavior(cell, controller, options) {
|
|
8243
|
-
return localVarFp.getVirtualControllerBehavior(cell, controller, options).then((request) => request(axios$
|
|
8304
|
+
return localVarFp.getVirtualControllerBehavior(cell, controller, options).then((request) => request(axios$176, basePath));
|
|
8244
8305
|
},
|
|
8245
8306
|
setVirtualControllerBehavior(cell, controller, behavior, options) {
|
|
8246
|
-
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));
|
|
8247
8308
|
}
|
|
8248
8309
|
};
|
|
8249
8310
|
};
|
|
@@ -8405,36 +8466,36 @@ const VirtualControllerInputsOutputsApiFp = function(configuration) {
|
|
|
8405
8466
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listIOs(cell, controller, ios, options);
|
|
8406
8467
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8407
8468
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerInputsOutputsApi.listIOs"]?.[localVarOperationServerIndex]?.url;
|
|
8408
|
-
return (axios$
|
|
8469
|
+
return (axios$177, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$177, localVarOperationServerBasePath || basePath);
|
|
8409
8470
|
},
|
|
8410
8471
|
async listVirtualControllerIODescriptions(cell, controller, ios, direction, valueType, group, options) {
|
|
8411
8472
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listVirtualControllerIODescriptions(cell, controller, ios, direction, valueType, group, options);
|
|
8412
8473
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8413
8474
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerInputsOutputsApi.listVirtualControllerIODescriptions"]?.[localVarOperationServerIndex]?.url;
|
|
8414
|
-
return (axios$
|
|
8475
|
+
return (axios$178, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$178, localVarOperationServerBasePath || basePath);
|
|
8415
8476
|
},
|
|
8416
8477
|
async setIOValues(cell, controller, iOValue, options) {
|
|
8417
8478
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setIOValues(cell, controller, iOValue, options);
|
|
8418
8479
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8419
8480
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerInputsOutputsApi.setIOValues"]?.[localVarOperationServerIndex]?.url;
|
|
8420
|
-
return (axios$
|
|
8481
|
+
return (axios$179, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$179, localVarOperationServerBasePath || basePath);
|
|
8421
8482
|
}
|
|
8422
8483
|
};
|
|
8423
8484
|
};
|
|
8424
8485
|
/**
|
|
8425
8486
|
* VirtualControllerInputsOutputsApi - factory interface
|
|
8426
8487
|
*/
|
|
8427
|
-
const VirtualControllerInputsOutputsApiFactory = function(configuration, basePath, axios$
|
|
8488
|
+
const VirtualControllerInputsOutputsApiFactory = function(configuration, basePath, axios$180) {
|
|
8428
8489
|
const localVarFp = VirtualControllerInputsOutputsApiFp(configuration);
|
|
8429
8490
|
return {
|
|
8430
8491
|
listIOs(cell, controller, ios, options) {
|
|
8431
|
-
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));
|
|
8432
8493
|
},
|
|
8433
8494
|
listVirtualControllerIODescriptions(cell, controller, ios, direction, valueType, group, options) {
|
|
8434
|
-
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));
|
|
8435
8496
|
},
|
|
8436
8497
|
setIOValues(cell, controller, iOValue, options) {
|
|
8437
|
-
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));
|
|
8438
8499
|
}
|
|
8439
8500
|
};
|
|
8440
8501
|
};
|
|
@@ -8482,13 +8543,11 @@ var VirtualControllerInputsOutputsApi = class extends BaseAPI {
|
|
|
8482
8543
|
return VirtualControllerInputsOutputsApiFp(this.configuration).setIOValues(cell, controller, iOValue, options).then((request) => request(this.axios, this.basePath));
|
|
8483
8544
|
}
|
|
8484
8545
|
};
|
|
8485
|
-
|
|
8486
8546
|
//#endregion
|
|
8487
8547
|
//#region v2/configuration.ts
|
|
8488
|
-
var import_defineProperty = /* @__PURE__ */ require_defineProperty$1.__toESM(require_defineProperty$1.require_defineProperty(), 1);
|
|
8489
8548
|
var Configuration = class {
|
|
8490
8549
|
constructor(param = {}) {
|
|
8491
|
-
|
|
8550
|
+
require_defineProperty._defineProperty(
|
|
8492
8551
|
this,
|
|
8493
8552
|
/**
|
|
8494
8553
|
* parameter for apiKey security
|
|
@@ -8497,7 +8556,7 @@ var Configuration = class {
|
|
|
8497
8556
|
"apiKey",
|
|
8498
8557
|
void 0
|
|
8499
8558
|
);
|
|
8500
|
-
|
|
8559
|
+
require_defineProperty._defineProperty(
|
|
8501
8560
|
this,
|
|
8502
8561
|
/**
|
|
8503
8562
|
* parameter for basic security
|
|
@@ -8505,7 +8564,7 @@ var Configuration = class {
|
|
|
8505
8564
|
"username",
|
|
8506
8565
|
void 0
|
|
8507
8566
|
);
|
|
8508
|
-
|
|
8567
|
+
require_defineProperty._defineProperty(
|
|
8509
8568
|
this,
|
|
8510
8569
|
/**
|
|
8511
8570
|
* parameter for basic security
|
|
@@ -8513,7 +8572,7 @@ var Configuration = class {
|
|
|
8513
8572
|
"password",
|
|
8514
8573
|
void 0
|
|
8515
8574
|
);
|
|
8516
|
-
|
|
8575
|
+
require_defineProperty._defineProperty(
|
|
8517
8576
|
this,
|
|
8518
8577
|
/**
|
|
8519
8578
|
* parameter for oauth2 security
|
|
@@ -8523,7 +8582,7 @@ var Configuration = class {
|
|
|
8523
8582
|
"accessToken",
|
|
8524
8583
|
void 0
|
|
8525
8584
|
);
|
|
8526
|
-
|
|
8585
|
+
require_defineProperty._defineProperty(
|
|
8527
8586
|
this,
|
|
8528
8587
|
/**
|
|
8529
8588
|
* parameter for aws4 signature security
|
|
@@ -8538,7 +8597,7 @@ var Configuration = class {
|
|
|
8538
8597
|
"awsv4",
|
|
8539
8598
|
void 0
|
|
8540
8599
|
);
|
|
8541
|
-
|
|
8600
|
+
require_defineProperty._defineProperty(
|
|
8542
8601
|
this,
|
|
8543
8602
|
/**
|
|
8544
8603
|
* override base path
|
|
@@ -8546,7 +8605,7 @@ var Configuration = class {
|
|
|
8546
8605
|
"basePath",
|
|
8547
8606
|
void 0
|
|
8548
8607
|
);
|
|
8549
|
-
|
|
8608
|
+
require_defineProperty._defineProperty(
|
|
8550
8609
|
this,
|
|
8551
8610
|
/**
|
|
8552
8611
|
* override server index
|
|
@@ -8554,7 +8613,7 @@ var Configuration = class {
|
|
|
8554
8613
|
"serverIndex",
|
|
8555
8614
|
void 0
|
|
8556
8615
|
);
|
|
8557
|
-
|
|
8616
|
+
require_defineProperty._defineProperty(
|
|
8558
8617
|
this,
|
|
8559
8618
|
/**
|
|
8560
8619
|
* base options for axios calls
|
|
@@ -8562,7 +8621,7 @@ var Configuration = class {
|
|
|
8562
8621
|
"baseOptions",
|
|
8563
8622
|
void 0
|
|
8564
8623
|
);
|
|
8565
|
-
|
|
8624
|
+
require_defineProperty._defineProperty(
|
|
8566
8625
|
this,
|
|
8567
8626
|
/**
|
|
8568
8627
|
* The FormData constructor that will be used to create multipart form data
|
|
@@ -8598,10 +8657,9 @@ var Configuration = class {
|
|
|
8598
8657
|
* @return True if the given MIME is JSON, false otherwise.
|
|
8599
8658
|
*/
|
|
8600
8659
|
isJsonMime(mime) {
|
|
8601
|
-
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");
|
|
8602
8661
|
}
|
|
8603
8662
|
};
|
|
8604
|
-
|
|
8605
8663
|
//#endregion
|
|
8606
8664
|
exports.AbbControllerKindEnum = AbbControllerKindEnum;
|
|
8607
8665
|
exports.ApplicationApi = ApplicationApi;
|
|
@@ -8784,6 +8842,10 @@ exports.SafetyStateType = SafetyStateType;
|
|
|
8784
8842
|
exports.ServiceGroup = ServiceGroup;
|
|
8785
8843
|
exports.ServiceStatusPhase = ServiceStatusPhase;
|
|
8786
8844
|
exports.ServiceStatusSeverity = ServiceStatusSeverity;
|
|
8845
|
+
exports.SessionApi = SessionApi;
|
|
8846
|
+
exports.SessionApiAxiosParamCreator = SessionApiAxiosParamCreator;
|
|
8847
|
+
exports.SessionApiFactory = SessionApiFactory;
|
|
8848
|
+
exports.SessionApiFp = SessionApiFp;
|
|
8787
8849
|
exports.SettableRobotSystemMode = SettableRobotSystemMode;
|
|
8788
8850
|
exports.SingularityTypeEnum = SingularityTypeEnum;
|
|
8789
8851
|
exports.SphereShapeTypeEnum = SphereShapeTypeEnum;
|
|
@@ -8850,4 +8912,4 @@ exports.VirtualControllerInputsOutputsApiFp = VirtualControllerInputsOutputsApiF
|
|
|
8850
8912
|
exports.VirtualControllerKindEnum = VirtualControllerKindEnum;
|
|
8851
8913
|
exports.YaskawaControllerKindEnum = YaskawaControllerKindEnum;
|
|
8852
8914
|
exports.ZodValidationErrorErrorCodeEnum = ZodValidationErrorErrorCodeEnum;
|
|
8853
|
-
exports.operationServerMap = operationServerMap;
|
|
8915
|
+
exports.operationServerMap = operationServerMap;
|