@wandelbots/nova-api 26.2.0-dev.5 → 26.2.0-dev.56
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/v1/index.cjs +60 -243
- package/dist/v1/index.d.cts +433 -433
- package/dist/v1/index.d.ts +433 -433
- package/dist/v1/index.js +60 -243
- package/dist/v2/index.cjs +270 -194
- package/dist/v2/index.d.cts +493 -222
- package/dist/v2/index.d.ts +633 -362
- package/dist/v2/index.js +263 -195
- package/package.json +1 -1
package/dist/v1/index.js
CHANGED
|
@@ -39,12 +39,6 @@ const DUMMY_BASE_URL = "https://example.com";
|
|
|
39
39
|
const assertParamExists = function(functionName, paramName, paramValue) {
|
|
40
40
|
if (paramValue === null || paramValue === void 0) throw new RequiredError(paramName, `Required parameter ${paramName} was null or undefined when calling ${functionName}.`);
|
|
41
41
|
};
|
|
42
|
-
const setBasicAuthToObject = function(object, configuration) {
|
|
43
|
-
if (configuration && (configuration.username || configuration.password)) object["auth"] = {
|
|
44
|
-
username: configuration.username,
|
|
45
|
-
password: configuration.password
|
|
46
|
-
};
|
|
47
|
-
};
|
|
48
42
|
const setBearerAuthToObject = async function(object, configuration) {
|
|
49
43
|
if (configuration && configuration.accessToken) object["Authorization"] = "Bearer " + (typeof configuration.accessToken === "function" ? await configuration.accessToken() : await configuration.accessToken);
|
|
50
44
|
};
|
|
@@ -81,7 +75,7 @@ const createRequestFunction = function(axiosArgs, globalAxios$1, BASE_PATH$1, co
|
|
|
81
75
|
//#region v1/api.ts
|
|
82
76
|
const AbbControllerKindEnum = { AbbController: "AbbController" };
|
|
83
77
|
/**
|
|
84
|
-
* ## BEHAVIOR_AUTOMATIC This is the default behavior. The motion group instantly takes any commanded joint configuration as actual joint state. Configures the compliance of the virtual robot with the normal ControllerState cycle time. If set, the virtual robot will act like a physical one, e.g. with a cycle time of 8ms to respond to a new joint state command. ## BEHAVIOR_AUTOMATIC_NOT_COMPLY_WITH_CYCLETIME Configures the compliance of the virtual robot with the normal ControllerState cycle time. If set, the robot will respond as fast as possible, limited only by software execution speed. Because of that the execution of a movement requires less time than with BEHAVIOR_AUTOMATIC. ## BEHAVIOR_EXTERNAL_SOURCE The external client is the only source of actual joint state changes. This mode is used to enable third party software indicating the current joint state via [externalJointsStream](externalJointsStream).
|
|
78
|
+
* ## BEHAVIOR_AUTOMATIC This is the default behavior. The motion group instantly takes any commanded joint configuration as actual joint state. Configures the compliance of the virtual robot with the normal ControllerState cycle time. If set, the virtual robot will act like a physical one, e.g. with a cycle time of 8ms to respond to a new joint state command. ## BEHAVIOR_AUTOMATIC_NOT_COMPLY_WITH_CYCLETIME Configures the compliance of the virtual robot with the normal ControllerState cycle time. If set, the robot will respond as fast as possible, limited only by software execution speed. Because of that, the execution of a movement requires less time than with BEHAVIOR_AUTOMATIC. ## BEHAVIOR_EXTERNAL_SOURCE The external client is the only source of actual joint state changes. This mode is used to enable third party software indicating the current joint state via [externalJointsStream](#/operations/externalJointsStream).
|
|
85
79
|
*/
|
|
86
80
|
const Behavior = {
|
|
87
81
|
BehaviorAutomatic: "BEHAVIOR_AUTOMATIC",
|
|
@@ -266,7 +260,7 @@ const RobotControllerStateSafetyStateEnum = {
|
|
|
266
260
|
SafetyStateViolation: "SAFETY_STATE_VIOLATION"
|
|
267
261
|
};
|
|
268
262
|
/**
|
|
269
|
-
* The system mode of the robot system. ### ROBOT_SYSTEM_MODE_UNDEFINED Indicates that the robot controller is currently performing a mode transition. ### ROBOT_SYSTEM_MODE_DISCONNECT There is no communication with the robot controller at all. All connections are closed. No command is sent to the robot controller while in this mode. No IO interaction is possible in this mode! All move requests will be rejected in this mode! ### ROBOT_SYSTEM_MODE_MONITOR A connection to the robot controller is established to only read the robot controller state. No command is sent to the robot controller while in this mode. It is possible to receive IO information. All move requests will be rejected in this mode! ### ROBOT_SYSTEM_MODE_CONTROL An active connection is established with the robot controller and the robot system is cyclic commanded to stay in its actual position. The robot controller state is received in the cycle time of the robot controller. Requests via the MotionService and JoggingService will be processed and executed in this mode. IO interaction is possible in this mode! **In this mode the robot system can be commanded to move.** ### ROBOT_SYSTEM_MODE_FREE_DRIVE Like ROBOT_SYSTEM_MODE_MONITOR a connection to the robot controller is established to only read the robot controller state. The difference is that the motion groups can be moved by the user (Free Drive). Thus, the servo motors are turned on. All move requests will be rejected in this mode! **This mode is not supported by every robot!** Use [getSupportedModes](getSupportedModes) to evaluate if the device
|
|
263
|
+
* The system mode of the robot system. ### ROBOT_SYSTEM_MODE_UNDEFINED Indicates that the robot controller is currently performing a mode transition. ### ROBOT_SYSTEM_MODE_DISCONNECT There is no communication with the robot controller at all. All connections are closed. No command is sent to the robot controller while in this mode. No IO interaction is possible in this mode! All move requests will be rejected in this mode! ### ROBOT_SYSTEM_MODE_MONITOR A connection to the robot controller is established to only read the robot controller state. No command is sent to the robot controller while in this mode. It is possible to receive IO information. All move requests will be rejected in this mode! ### ROBOT_SYSTEM_MODE_CONTROL An active connection is established with the robot controller and the robot system is cyclic commanded to stay in its actual position. The robot controller state is received in the cycle time of the robot controller. Requests via the MotionService and JoggingService will be processed and executed in this mode. IO interaction is possible in this mode! **In this mode the robot system can be commanded to move.** ### ROBOT_SYSTEM_MODE_FREE_DRIVE Like ROBOT_SYSTEM_MODE_MONITOR, a connection to the robot controller is established to only read the robot controller state. The difference is that the motion groups can be moved by the user (Free Drive). Thus, the servo motors are turned on. All move requests will be rejected in this mode! **This mode is not supported by every robot!** Use [getSupportedModes](#/operations/getSupportedModes) to evaluate if the device supports free drive.
|
|
270
264
|
*/
|
|
271
265
|
const RobotSystemMode = {
|
|
272
266
|
RobotSystemModeUndefined: "ROBOT_SYSTEM_MODE_UNDEFINED",
|
|
@@ -527,7 +521,6 @@ const ApplicationApiAxiosParamCreator = function(configuration) {
|
|
|
527
521
|
};
|
|
528
522
|
const localVarHeaderParameter = {};
|
|
529
523
|
const localVarQueryParameter = {};
|
|
530
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
531
524
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
532
525
|
if (completionTimeout !== void 0) localVarQueryParameter["completionTimeout"] = completionTimeout;
|
|
533
526
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
@@ -557,7 +550,6 @@ const ApplicationApiAxiosParamCreator = function(configuration) {
|
|
|
557
550
|
};
|
|
558
551
|
const localVarHeaderParameter = {};
|
|
559
552
|
const localVarQueryParameter = {};
|
|
560
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
561
553
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
562
554
|
if (completionTimeout !== void 0) localVarQueryParameter["completionTimeout"] = completionTimeout;
|
|
563
555
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -586,7 +578,6 @@ const ApplicationApiAxiosParamCreator = function(configuration) {
|
|
|
586
578
|
};
|
|
587
579
|
const localVarHeaderParameter = {};
|
|
588
580
|
const localVarQueryParameter = {};
|
|
589
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
590
581
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
591
582
|
if (completionTimeout !== void 0) localVarQueryParameter["completionTimeout"] = completionTimeout;
|
|
592
583
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -615,7 +606,6 @@ const ApplicationApiAxiosParamCreator = function(configuration) {
|
|
|
615
606
|
};
|
|
616
607
|
const localVarHeaderParameter = {};
|
|
617
608
|
const localVarQueryParameter = {};
|
|
618
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
619
609
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
620
610
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
621
611
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -642,7 +632,6 @@ const ApplicationApiAxiosParamCreator = function(configuration) {
|
|
|
642
632
|
};
|
|
643
633
|
const localVarHeaderParameter = {};
|
|
644
634
|
const localVarQueryParameter = {};
|
|
645
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
646
635
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
647
636
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
648
637
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -671,7 +660,6 @@ const ApplicationApiAxiosParamCreator = function(configuration) {
|
|
|
671
660
|
};
|
|
672
661
|
const localVarHeaderParameter = {};
|
|
673
662
|
const localVarQueryParameter = {};
|
|
674
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
675
663
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
676
664
|
if (completionTimeout !== void 0) localVarQueryParameter["completionTimeout"] = completionTimeout;
|
|
677
665
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
@@ -852,7 +840,6 @@ const CellApiAxiosParamCreator = function(configuration) {
|
|
|
852
840
|
};
|
|
853
841
|
const localVarHeaderParameter = {};
|
|
854
842
|
const localVarQueryParameter = {};
|
|
855
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
856
843
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
857
844
|
if (completionTimeout !== void 0) localVarQueryParameter["completionTimeout"] = completionTimeout;
|
|
858
845
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -879,7 +866,6 @@ const CellApiAxiosParamCreator = function(configuration) {
|
|
|
879
866
|
};
|
|
880
867
|
const localVarHeaderParameter = {};
|
|
881
868
|
const localVarQueryParameter = {};
|
|
882
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
883
869
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
884
870
|
if (completionTimeout !== void 0) localVarQueryParameter["completionTimeout"] = completionTimeout;
|
|
885
871
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
@@ -909,7 +895,6 @@ const CellApiAxiosParamCreator = function(configuration) {
|
|
|
909
895
|
};
|
|
910
896
|
const localVarHeaderParameter = {};
|
|
911
897
|
const localVarQueryParameter = {};
|
|
912
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
913
898
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
914
899
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
915
900
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -936,7 +921,6 @@ const CellApiAxiosParamCreator = function(configuration) {
|
|
|
936
921
|
};
|
|
937
922
|
const localVarHeaderParameter = {};
|
|
938
923
|
const localVarQueryParameter = {};
|
|
939
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
940
924
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
941
925
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
942
926
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -961,7 +945,6 @@ const CellApiAxiosParamCreator = function(configuration) {
|
|
|
961
945
|
};
|
|
962
946
|
const localVarHeaderParameter = {};
|
|
963
947
|
const localVarQueryParameter = {};
|
|
964
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
965
948
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
966
949
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
967
950
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -989,7 +972,6 @@ const CellApiAxiosParamCreator = function(configuration) {
|
|
|
989
972
|
};
|
|
990
973
|
const localVarHeaderParameter = {};
|
|
991
974
|
const localVarQueryParameter = {};
|
|
992
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
993
975
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
994
976
|
if (completionTimeout !== void 0) localVarQueryParameter["completionTimeout"] = completionTimeout;
|
|
995
977
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
@@ -1165,7 +1147,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
|
|
|
1165
1147
|
};
|
|
1166
1148
|
const localVarHeaderParameter = {};
|
|
1167
1149
|
const localVarQueryParameter = {};
|
|
1168
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1169
1150
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1170
1151
|
if (completionTimeout !== void 0) localVarQueryParameter["completionTimeout"] = completionTimeout;
|
|
1171
1152
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
@@ -1195,7 +1176,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
|
|
|
1195
1176
|
};
|
|
1196
1177
|
const localVarHeaderParameter = {};
|
|
1197
1178
|
const localVarQueryParameter = {};
|
|
1198
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1199
1179
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1200
1180
|
if (completionTimeout !== void 0) localVarQueryParameter["completionTimeout"] = completionTimeout;
|
|
1201
1181
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -1224,7 +1204,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
|
|
|
1224
1204
|
};
|
|
1225
1205
|
const localVarHeaderParameter = {};
|
|
1226
1206
|
const localVarQueryParameter = {};
|
|
1227
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1228
1207
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1229
1208
|
if (completionTimeout !== void 0) localVarQueryParameter["completionTimeout"] = completionTimeout;
|
|
1230
1209
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -1253,7 +1232,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
|
|
|
1253
1232
|
};
|
|
1254
1233
|
const localVarHeaderParameter = {};
|
|
1255
1234
|
const localVarQueryParameter = {};
|
|
1256
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1257
1235
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1258
1236
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1259
1237
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1281,7 +1259,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
|
|
|
1281
1259
|
};
|
|
1282
1260
|
const localVarHeaderParameter = {};
|
|
1283
1261
|
const localVarQueryParameter = {};
|
|
1284
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1285
1262
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1286
1263
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1287
1264
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1309,7 +1286,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
|
|
|
1309
1286
|
};
|
|
1310
1287
|
const localVarHeaderParameter = {};
|
|
1311
1288
|
const localVarQueryParameter = {};
|
|
1312
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1313
1289
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1314
1290
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1315
1291
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1337,7 +1313,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
|
|
|
1337
1313
|
};
|
|
1338
1314
|
const localVarHeaderParameter = {};
|
|
1339
1315
|
const localVarQueryParameter = {};
|
|
1340
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1341
1316
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1342
1317
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1343
1318
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1365,7 +1340,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
|
|
|
1365
1340
|
};
|
|
1366
1341
|
const localVarHeaderParameter = {};
|
|
1367
1342
|
const localVarQueryParameter = {};
|
|
1368
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1369
1343
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1370
1344
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1371
1345
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1392,7 +1366,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
|
|
|
1392
1366
|
};
|
|
1393
1367
|
const localVarHeaderParameter = {};
|
|
1394
1368
|
const localVarQueryParameter = {};
|
|
1395
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1396
1369
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1397
1370
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1398
1371
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1421,7 +1394,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
|
|
|
1421
1394
|
};
|
|
1422
1395
|
const localVarHeaderParameter = {};
|
|
1423
1396
|
const localVarQueryParameter = {};
|
|
1424
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1425
1397
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1426
1398
|
if (mode !== void 0) localVarQueryParameter["mode"] = mode;
|
|
1427
1399
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -1450,7 +1422,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
|
|
|
1450
1422
|
};
|
|
1451
1423
|
const localVarHeaderParameter = {};
|
|
1452
1424
|
const localVarQueryParameter = {};
|
|
1453
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1454
1425
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1455
1426
|
if (responseRate !== void 0) localVarQueryParameter["response_rate"] = responseRate;
|
|
1456
1427
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -1479,7 +1450,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
|
|
|
1479
1450
|
};
|
|
1480
1451
|
const localVarHeaderParameter = {};
|
|
1481
1452
|
const localVarQueryParameter = {};
|
|
1482
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1483
1453
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1484
1454
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1485
1455
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1507,7 +1477,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
|
|
|
1507
1477
|
};
|
|
1508
1478
|
const localVarHeaderParameter = {};
|
|
1509
1479
|
const localVarQueryParameter = {};
|
|
1510
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1511
1480
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1512
1481
|
if (responseRate !== void 0) localVarQueryParameter["response_rate"] = responseRate;
|
|
1513
1482
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -1537,7 +1506,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
|
|
|
1537
1506
|
};
|
|
1538
1507
|
const localVarHeaderParameter = {};
|
|
1539
1508
|
const localVarQueryParameter = {};
|
|
1540
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1541
1509
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1542
1510
|
if (completionTimeout !== void 0) localVarQueryParameter["completionTimeout"] = completionTimeout;
|
|
1543
1511
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
@@ -1749,7 +1717,7 @@ var ControllerApi = class extends BaseAPI {
|
|
|
1749
1717
|
return ControllerApiFp(this.configuration).getCurrentRobotControllerState(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
1750
1718
|
}
|
|
1751
1719
|
/**
|
|
1752
|
-
* Get the current robot system mode of a registered robot controller. The robot system mode indicates if a robot controller can be used. See [setDefaultMode](setDefaultMode) for more information about the different modes. The mode is influenced by the operating mode of the robot controller. The operating mode can be changed via [setDefaultMode](setDefaultMode). Request the current operating mode of the robot controller via [getCurrentRobotControllerState](getCurrentRobotControllerState).
|
|
1720
|
+
* Get the current robot system mode of a registered robot controller. The robot system mode indicates if a robot controller can be used. See [setDefaultMode](#/operations/setDefaultMode) for more information about the different modes. The mode is influenced by the operating mode of the robot controller. The operating mode can be changed via [setDefaultMode](#/operations/setDefaultMode). Request the current operating mode of the robot controller via [getCurrentRobotControllerState](#/operations/getCurrentRobotControllerState).
|
|
1753
1721
|
* @summary Current Mode
|
|
1754
1722
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
1755
1723
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -1782,7 +1750,7 @@ var ControllerApi = class extends BaseAPI {
|
|
|
1782
1750
|
return ControllerApiFp(this.configuration).getSupportedModes(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
1783
1751
|
}
|
|
1784
1752
|
/**
|
|
1785
|
-
* Receive data to configure a virtual robot controller based on another controller. This can be used to create a virtual clone of a specific physical robot. When adding a virtual controller, use the
|
|
1753
|
+
* Receive data to configure a virtual robot controller based on another controller. This can be used to create a virtual clone of a specific physical robot. When adding a virtual controller, use the virtual configuration variant of [addRobotController](#/operations/addRobotController) and pass the content string from this endpoint as the `json` field. Omit the `type` field that selects a preset configuration, which is not required when providing a complete configuration. > **NOTE** > > The output generated by this endpoint can be too large for the site to handle and may produce an error or incorrect output. > Use `curl` in combination with `> output.json` to capture the output, or use an API client like Postman.
|
|
1786
1754
|
* @summary Virtual Robot Configuration
|
|
1787
1755
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
1788
1756
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -1803,7 +1771,7 @@ var ControllerApi = class extends BaseAPI {
|
|
|
1803
1771
|
return ControllerApiFp(this.configuration).listControllers(cell, options).then((request) => request(this.axios, this.basePath));
|
|
1804
1772
|
}
|
|
1805
1773
|
/**
|
|
1806
|
-
* Switch between monitor and control usage as default for a robot controller. Monitoring mode is used to read information from the robot controller and control mode is used to command the robot system. As long as the robot controller is connected via network monitoring mode is always possible. To switch to control mode the robot controller must be in `automatic` or `manual` operating mode and safety state \'normal\' or \'reduced\'. If the robot controller is in `manual` operating mode, you have manually confirm the control usage activation on the robot control panel. This manual confirmation can\'t be replaced with this API. Without manual confirmation the robot controller will stay in monitor mode. The robot system will try to activate the required operation mode for the requested usage unless no active call requires a different mode. > **NOTE** > > Some robot controllers prevent the external activation of automatic operating mode. In this case, changing the operating mode manually at the robot controller is mandatory. > **NOTE** > > The current operation mode and safety state can be requested via [getCurrentRobotControllerState](getCurrentRobotControllerState). If a mode change is not possible, the response lists reasons for the failed change.
|
|
1774
|
+
* Switch between monitor and control usage as default for a robot controller. Monitoring mode is used to read information from the robot controller and control mode is used to command the robot system. As long as the robot controller is connected via network, monitoring mode is always possible. To switch to control mode, the robot controller must be in `automatic` or `manual` operating mode and safety state \'normal\' or \'reduced\'. If the robot controller is in `manual` operating mode, you have to manually confirm the control usage activation on the robot control panel. This manual confirmation can\'t be replaced with this API. Without manual confirmation, the robot controller will stay in monitor mode. The robot system will try to activate the required operation mode for the requested usage unless no active call requires a different mode. > **NOTE** > > Some robot controllers prevent the external activation of automatic operating mode. In this case, changing the operating mode manually at the robot controller is mandatory. > **NOTE** > > The current operation mode and safety state can be requested via [getCurrentRobotControllerState](#/operations/getCurrentRobotControllerState). If a mode change is not possible, the response lists reasons for the failed change.
|
|
1807
1775
|
* @summary Set Default Mode
|
|
1808
1776
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
1809
1777
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -1827,7 +1795,7 @@ var ControllerApi = class extends BaseAPI {
|
|
|
1827
1795
|
return ControllerApiFp(this.configuration).streamFreeDrive(cell, controller, responseRate, options).then((request) => request(this.axios, this.basePath));
|
|
1828
1796
|
}
|
|
1829
1797
|
/**
|
|
1830
|
-
* Receive updates of the current robot system mode of a robot controller via websocket upon robot system mode change. See [setDefaultMode](setDefaultMode) for more information about the different modes.
|
|
1798
|
+
* Receive updates of the current robot system mode of a robot controller via websocket upon robot system mode change. See [setDefaultMode](#/operations/setDefaultMode) for more information about the different modes.
|
|
1831
1799
|
* @summary Stream Mode Change
|
|
1832
1800
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
1833
1801
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -1850,7 +1818,7 @@ var ControllerApi = class extends BaseAPI {
|
|
|
1850
1818
|
return ControllerApiFp(this.configuration).streamRobotControllerState(cell, controller, responseRate, options).then((request) => request(this.axios, this.basePath));
|
|
1851
1819
|
}
|
|
1852
1820
|
/**
|
|
1853
|
-
* Update the configuration of a robot controller. Reconfigure certain options of a robot controller, or deploy a specific container image of a robot controller. <!-- theme: warning --> > **WARNING** > > Using it in conjunction with the settings app may lead to unpredictable behavior. To update a virtual controller, the previous controller will be deleted and a new one created. Changes to the configuration, e.g., TCPs, coordinate systems, mounting, are **not** transferred to the new robot. <!-- theme: info --> > **NOTE** > > An update is not a reset. To do a reset: > 1. Get the current configuration via [getRobotController](getRobotController). > 2. Delete the existing virtual robot controller via [deleteRobotController](deleteRobotController). > 3. Add a virtual robot controller with [addRobotController](addRobotController).
|
|
1821
|
+
* Update the configuration of a robot controller. Reconfigure certain options of a robot controller, or deploy a specific container image of a robot controller. <!-- theme: warning --> > **WARNING** > > Using it in conjunction with the settings app may lead to unpredictable behavior. To update a virtual controller, the previous controller will be deleted and a new one created. Changes to the configuration, e.g., TCPs, coordinate systems, mounting, are **not** transferred to the new robot. <!-- theme: info --> > **NOTE** > > An update is not a reset. To do a reset: > 1. Get the current configuration via [getRobotController](#/operations/getRobotController). > 2. Delete the existing virtual robot controller via [deleteRobotController](#/operations/deleteRobotController). > 3. Add a virtual robot controller with [addRobotController](#/operations/addRobotController).
|
|
1854
1822
|
* @summary Update Robot Controller Configuration
|
|
1855
1823
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
1856
1824
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -1886,7 +1854,6 @@ const ControllerIOsApiAxiosParamCreator = function(configuration) {
|
|
|
1886
1854
|
};
|
|
1887
1855
|
const localVarHeaderParameter = {};
|
|
1888
1856
|
const localVarQueryParameter = {};
|
|
1889
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1890
1857
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1891
1858
|
if (ios) localVarQueryParameter["ios"] = ios;
|
|
1892
1859
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -1915,7 +1882,6 @@ const ControllerIOsApiAxiosParamCreator = function(configuration) {
|
|
|
1915
1882
|
};
|
|
1916
1883
|
const localVarHeaderParameter = {};
|
|
1917
1884
|
const localVarQueryParameter = {};
|
|
1918
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1919
1885
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1920
1886
|
if (ios) localVarQueryParameter["ios"] = ios;
|
|
1921
1887
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -1945,7 +1911,6 @@ const ControllerIOsApiAxiosParamCreator = function(configuration) {
|
|
|
1945
1911
|
};
|
|
1946
1912
|
const localVarHeaderParameter = {};
|
|
1947
1913
|
const localVarQueryParameter = {};
|
|
1948
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1949
1914
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1950
1915
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
1951
1916
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -1975,7 +1940,6 @@ const ControllerIOsApiAxiosParamCreator = function(configuration) {
|
|
|
1975
1940
|
};
|
|
1976
1941
|
const localVarHeaderParameter = {};
|
|
1977
1942
|
const localVarQueryParameter = {};
|
|
1978
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1979
1943
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1980
1944
|
if (ios) localVarQueryParameter["ios"] = ios;
|
|
1981
1945
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -2006,7 +1970,6 @@ const ControllerIOsApiAxiosParamCreator = function(configuration) {
|
|
|
2006
1970
|
};
|
|
2007
1971
|
const localVarHeaderParameter = {};
|
|
2008
1972
|
const localVarQueryParameter = {};
|
|
2009
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
2010
1973
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
2011
1974
|
if (io !== void 0) localVarQueryParameter["io"] = io;
|
|
2012
1975
|
if (comparisonType !== void 0) localVarQueryParameter["comparison_type"] = comparisonType;
|
|
@@ -2105,7 +2068,7 @@ var ControllerIOsApi = class extends BaseAPI {
|
|
|
2105
2068
|
return ControllerIOsApiFp(this.configuration).listIODescriptions(cell, controller, ios, options).then((request) => request(this.axios, this.basePath));
|
|
2106
2069
|
}
|
|
2107
2070
|
/**
|
|
2108
|
-
* Retrieves the current values of I/Os. The identifiers of the I/Os must be provided in the request. Request all available I/O identifiers via [listIODescriptions](listIODescriptions).
|
|
2071
|
+
* Retrieves the current values of I/Os. The identifiers of the I/Os must be provided in the request. Request all available I/O identifiers via [listIODescriptions](#/operations/listIODescriptions).
|
|
2109
2072
|
* @summary Values
|
|
2110
2073
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
2111
2074
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -2117,7 +2080,7 @@ var ControllerIOsApi = class extends BaseAPI {
|
|
|
2117
2080
|
return ControllerIOsApiFp(this.configuration).listIOValues(cell, controller, ios, options).then((request) => request(this.axios, this.basePath));
|
|
2118
2081
|
}
|
|
2119
2082
|
/**
|
|
2120
|
-
* Set the values of outputs. All available I/O identifiers and possible value ranges can be requested via [listIODescriptions](listIODescriptions). The call will return once the values have been set on and accepted by the robot. This might take up to 200 milliseconds. > **NOTE** > > Do not call this endpoint while another request is still in progress. The second call will fail.
|
|
2083
|
+
* Set the values of outputs. All available I/O identifiers and possible value ranges can be requested via [listIODescriptions](#/operations/listIODescriptions). The call will return once the values have been set on and accepted by the robot. This might take up to 200 milliseconds. > **NOTE** > > Do not call this endpoint while another request is still in progress. The second call will fail.
|
|
2121
2084
|
* @summary Set Values
|
|
2122
2085
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
2123
2086
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -2181,7 +2144,6 @@ const CoordinateSystemsApiAxiosParamCreator = function(configuration) {
|
|
|
2181
2144
|
};
|
|
2182
2145
|
const localVarHeaderParameter = {};
|
|
2183
2146
|
const localVarQueryParameter = {};
|
|
2184
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
2185
2147
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
2186
2148
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
2187
2149
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -2211,7 +2173,6 @@ const CoordinateSystemsApiAxiosParamCreator = function(configuration) {
|
|
|
2211
2173
|
};
|
|
2212
2174
|
const localVarHeaderParameter = {};
|
|
2213
2175
|
const localVarQueryParameter = {};
|
|
2214
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
2215
2176
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
2216
2177
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2217
2178
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -2239,7 +2200,6 @@ const CoordinateSystemsApiAxiosParamCreator = function(configuration) {
|
|
|
2239
2200
|
};
|
|
2240
2201
|
const localVarHeaderParameter = {};
|
|
2241
2202
|
const localVarQueryParameter = {};
|
|
2242
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
2243
2203
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
2244
2204
|
if (rotationType !== void 0) localVarQueryParameter["rotation_type"] = rotationType;
|
|
2245
2205
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -2267,7 +2227,6 @@ const CoordinateSystemsApiAxiosParamCreator = function(configuration) {
|
|
|
2267
2227
|
};
|
|
2268
2228
|
const localVarHeaderParameter = {};
|
|
2269
2229
|
const localVarQueryParameter = {};
|
|
2270
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
2271
2230
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
2272
2231
|
if (rotationType !== void 0) localVarQueryParameter["rotation_type"] = rotationType;
|
|
2273
2232
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -2297,7 +2256,6 @@ const CoordinateSystemsApiAxiosParamCreator = function(configuration) {
|
|
|
2297
2256
|
};
|
|
2298
2257
|
const localVarHeaderParameter = {};
|
|
2299
2258
|
const localVarQueryParameter = {};
|
|
2300
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
2301
2259
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
2302
2260
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
2303
2261
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -2381,7 +2339,7 @@ const CoordinateSystemsApiFactory = function(configuration, basePath, axios) {
|
|
|
2381
2339
|
*/
|
|
2382
2340
|
var CoordinateSystemsApi = class extends BaseAPI {
|
|
2383
2341
|
/**
|
|
2384
|
-
* Add a user coordinate system to the list of coordinate systems but not on a robot controller. The coordinate system is defined by a name and an offset in another coordinate system referenced by the unique identifier of the reference coordinate system. Will return the specification of the added coordinate systems which includes the unique identifier of the added coordinate system. All available coordinate systems can be listed via the [listCoordinateSystems](listCoordinateSystems) endpoint.
|
|
2342
|
+
* Add a user coordinate system to the list of coordinate systems but not on a robot controller. The coordinate system is defined by a name and an offset in another coordinate system referenced by the unique identifier of the reference coordinate system. Will return the specification of the added coordinate systems which includes the unique identifier of the added coordinate system. All available coordinate systems can be listed via the [listCoordinateSystems](#/operations/listCoordinateSystems) endpoint.
|
|
2385
2343
|
* @summary Add
|
|
2386
2344
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
2387
2345
|
* @param {AddRequest} addRequest
|
|
@@ -2392,7 +2350,7 @@ var CoordinateSystemsApi = class extends BaseAPI {
|
|
|
2392
2350
|
return CoordinateSystemsApiFp(this.configuration).addCoordinateSystem(cell, addRequest, options).then((request) => request(this.axios, this.basePath));
|
|
2393
2351
|
}
|
|
2394
2352
|
/**
|
|
2395
|
-
* Removes a user coordinate system specified by the given identifier. > **NOTE** > > If the coordinate system has originally been configured on the robot controller, it will remain on the controller even after this endpoint has been executed successfully.. This will remove the user coordinate system from the list of user coordinate systems but keep all dependent coordinate systems which use the deleted coordinate system as reference. Coordinate systems on the robot controller are not affected by this operation. They can be removed via the robot control panel only and will be removed in NOVA when the controller is removed. On virtual controllers, use the [deleteVirtualRobotCoordinateSystem](deleteVirtualRobotCoordinateSystem) endpoint to remove coordinate systems from NOVA and the virtual controller. All available coordinate systems can be listed via the [listCoordinateSystems](listCoordinateSystems) endpoint.
|
|
2353
|
+
* Removes a user coordinate system specified by the given identifier. > **NOTE** > > If the coordinate system has originally been configured on the robot controller, it will remain on the controller even after this endpoint has been executed successfully.. This will remove the user coordinate system from the list of user coordinate systems but keep all dependent coordinate systems which use the deleted coordinate system as reference. Coordinate systems on the robot controller are not affected by this operation. They can be removed via the robot control panel only and will be removed in NOVA when the controller is removed. On virtual controllers, use the [deleteVirtualRobotCoordinateSystem](#/operations/deleteVirtualRobotCoordinateSystem) endpoint to remove coordinate systems from NOVA and the virtual controller. All available coordinate systems can be listed via the [listCoordinateSystems](#/operations/listCoordinateSystems) endpoint.
|
|
2396
2354
|
* @summary Delete
|
|
2397
2355
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
2398
2356
|
* @param {string} coordinateSystem Unique identifier addressing a coordinate system.
|
|
@@ -2403,7 +2361,7 @@ var CoordinateSystemsApi = class extends BaseAPI {
|
|
|
2403
2361
|
return CoordinateSystemsApiFp(this.configuration).deleteCoordinateSystem(cell, coordinateSystem, options).then((request) => request(this.axios, this.basePath));
|
|
2404
2362
|
}
|
|
2405
2363
|
/**
|
|
2406
|
-
* Request a coordinate system specification for a given identifier. Use parameter rotation_type to get the orientation part of the transformation offset of the coordinate system returned in the requested rotation angle type. If parameter rotation_type is not set, the orientation part of the transformation offset of the coordinate system is returned in the rotation angle type used on the robot controller. This can be useful for visualization purposes in the client application due to equivalent numbers with robot control panel visualization. User coordinate systems can be configured on a robot controller during setup or added to the system via the [addCoordinateSystem](addCoordinateSystem) endpoint. Updating the robot controller\'s configuration either requires credentials or is not possible. With the endpoint [addCoordinateSystem](addCoordinateSystem) you can create a coordinate system without changing the robot controller\'s configuration.
|
|
2364
|
+
* Request a coordinate system specification for a given identifier. Use parameter rotation_type to get the orientation part of the transformation offset of the coordinate system returned in the requested rotation angle type. If parameter rotation_type is not set, the orientation part of the transformation offset of the coordinate system is returned in the rotation angle type used on the robot controller. This can be useful for visualization purposes in the client application due to equivalent numbers with robot control panel visualization. User coordinate systems can be configured on a robot controller during setup or added to the system via the [addCoordinateSystem](#/operations/addCoordinateSystem) endpoint. Updating the robot controller\'s configuration either requires credentials or is not possible. With the endpoint [addCoordinateSystem](#/operations/addCoordinateSystem) you can create a coordinate system without changing the robot controller\'s configuration.
|
|
2407
2365
|
* @summary Description
|
|
2408
2366
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
2409
2367
|
* @param {string} coordinateSystem Unique identifier addressing a coordinate system.
|
|
@@ -2415,7 +2373,7 @@ var CoordinateSystemsApi = class extends BaseAPI {
|
|
|
2415
2373
|
return CoordinateSystemsApiFp(this.configuration).getCoordinateSystem(cell, coordinateSystem, rotationType, options).then((request) => request(this.axios, this.basePath));
|
|
2416
2374
|
}
|
|
2417
2375
|
/**
|
|
2418
|
-
* Lists all specifications of coordinate systems from robot controllers and user coordinate systems added to the system via the [addCoordinateSystem](addCoordinateSystem) endpoint. Use parameter rotation_type to get the orientation part of the transformation offset of the coordinate system returned in the requested rotation angle type. If parameter rotation_type is not set, the orientation part of the transformation offset of the coordinate system is returned in the rotation angle type used on the robot controller. This can be useful for visualization purposes in the client application due to equivalent numbers with robot control panel visualization. The coordinate systems from the robot controller are loaded when the motion group associated with the coordinate system is activated. With deactivation of the motion group, the associated coordinate systems are removed from NOVA. The unique identifier of the coordinate systems from the robot controllers are suffixed with \"On\" + the unique identifier of the robot controller. Updating the robot controller\'s configuration either requires credentials or is not possible. With the endpoint [addCoordinateSystem](addCoordinateSystem) you can create a coordinate system without changing the robot controller\'s configuration.
|
|
2376
|
+
* Lists all specifications of coordinate systems from robot controllers and user coordinate systems added to the system via the [addCoordinateSystem](#/operations/addCoordinateSystem) endpoint. Use parameter rotation_type to get the orientation part of the transformation offset of the coordinate system returned in the requested rotation angle type. If parameter rotation_type is not set, the orientation part of the transformation offset of the coordinate system is returned in the rotation angle type used on the robot controller. This can be useful for visualization purposes in the client application due to equivalent numbers with robot control panel visualization. The coordinate systems from the robot controller are loaded when the motion group associated with the coordinate system is activated. With deactivation of the motion group, the associated coordinate systems are removed from NOVA. The unique identifier of the coordinate systems from the robot controllers are suffixed with \"On\" + the unique identifier of the robot controller. Updating the robot controller\'s configuration either requires credentials or is not possible. With the endpoint [addCoordinateSystem](#/operations/addCoordinateSystem) you can create a coordinate system without changing the robot controller\'s configuration.
|
|
2419
2377
|
* @summary List
|
|
2420
2378
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
2421
2379
|
* @param {RotationAngleTypes} [rotationType]
|
|
@@ -2456,7 +2414,6 @@ const DeviceConfigurationApiAxiosParamCreator = function(configuration) {
|
|
|
2456
2414
|
};
|
|
2457
2415
|
const localVarHeaderParameter = {};
|
|
2458
2416
|
const localVarQueryParameter = {};
|
|
2459
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
2460
2417
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
2461
2418
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2462
2419
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -2484,7 +2441,6 @@ const DeviceConfigurationApiAxiosParamCreator = function(configuration) {
|
|
|
2484
2441
|
};
|
|
2485
2442
|
const localVarHeaderParameter = {};
|
|
2486
2443
|
const localVarQueryParameter = {};
|
|
2487
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
2488
2444
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
2489
2445
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
2490
2446
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -2514,7 +2470,6 @@ const DeviceConfigurationApiAxiosParamCreator = function(configuration) {
|
|
|
2514
2470
|
};
|
|
2515
2471
|
const localVarHeaderParameter = {};
|
|
2516
2472
|
const localVarQueryParameter = {};
|
|
2517
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
2518
2473
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
2519
2474
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2520
2475
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -2542,7 +2497,6 @@ const DeviceConfigurationApiAxiosParamCreator = function(configuration) {
|
|
|
2542
2497
|
};
|
|
2543
2498
|
const localVarHeaderParameter = {};
|
|
2544
2499
|
const localVarQueryParameter = {};
|
|
2545
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
2546
2500
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
2547
2501
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2548
2502
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -2569,7 +2523,6 @@ const DeviceConfigurationApiAxiosParamCreator = function(configuration) {
|
|
|
2569
2523
|
};
|
|
2570
2524
|
const localVarHeaderParameter = {};
|
|
2571
2525
|
const localVarQueryParameter = {};
|
|
2572
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
2573
2526
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
2574
2527
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2575
2528
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -2728,7 +2681,6 @@ const LibraryProgramApiAxiosParamCreator = function(configuration) {
|
|
|
2728
2681
|
};
|
|
2729
2682
|
const localVarHeaderParameter = {};
|
|
2730
2683
|
const localVarQueryParameter = {};
|
|
2731
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
2732
2684
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
2733
2685
|
if (name !== void 0) localVarQueryParameter["name"] = name;
|
|
2734
2686
|
localVarHeaderParameter["Content-Type"] = "text/plain";
|
|
@@ -2759,7 +2711,6 @@ const LibraryProgramApiAxiosParamCreator = function(configuration) {
|
|
|
2759
2711
|
};
|
|
2760
2712
|
const localVarHeaderParameter = {};
|
|
2761
2713
|
const localVarQueryParameter = {};
|
|
2762
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
2763
2714
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
2764
2715
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2765
2716
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -2787,7 +2738,6 @@ const LibraryProgramApiAxiosParamCreator = function(configuration) {
|
|
|
2787
2738
|
};
|
|
2788
2739
|
const localVarHeaderParameter = {};
|
|
2789
2740
|
const localVarQueryParameter = {};
|
|
2790
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
2791
2741
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
2792
2742
|
if (programIds) localVarQueryParameter["program_ids"] = programIds;
|
|
2793
2743
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -2816,7 +2766,6 @@ const LibraryProgramApiAxiosParamCreator = function(configuration) {
|
|
|
2816
2766
|
};
|
|
2817
2767
|
const localVarHeaderParameter = {};
|
|
2818
2768
|
const localVarQueryParameter = {};
|
|
2819
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
2820
2769
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
2821
2770
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2822
2771
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -2845,7 +2794,6 @@ const LibraryProgramApiAxiosParamCreator = function(configuration) {
|
|
|
2845
2794
|
};
|
|
2846
2795
|
const localVarHeaderParameter = {};
|
|
2847
2796
|
const localVarQueryParameter = {};
|
|
2848
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
2849
2797
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
2850
2798
|
localVarHeaderParameter["Content-Type"] = "text/plain";
|
|
2851
2799
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -2944,7 +2892,7 @@ var LibraryProgramApi = class extends BaseAPI {
|
|
|
2944
2892
|
* <!-- theme: danger --> > **Experimental** Deletes the program with the corresponding metadata. This action is irreversible. Does not delete the associated recipes.
|
|
2945
2893
|
* @summary Delete Program
|
|
2946
2894
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
2947
|
-
* @param {string} program Recieved from [listProgramMetadata](listProgramMetadata) or from the response of [createProgram](createProgram).
|
|
2895
|
+
* @param {string} program Recieved from [listProgramMetadata](#/operations/listProgramMetadata) or from the response of [createProgram](#/operations/createProgram).
|
|
2948
2896
|
* @param {*} [options] Override http request option.
|
|
2949
2897
|
* @throws {RequiredError}
|
|
2950
2898
|
*/
|
|
@@ -2955,7 +2903,7 @@ var LibraryProgramApi = class extends BaseAPI {
|
|
|
2955
2903
|
* <!-- theme: danger --> > **Experimental** Deletes the provided list of programs with the corresponding metadata. This action is irreversible. Does not delete the associated recipes.
|
|
2956
2904
|
* @summary Delete Program List
|
|
2957
2905
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
2958
|
-
* @param {Array<string>} programIds
|
|
2906
|
+
* @param {Array<string>} programIds Received from [listProgramMetadata](#/operations/listProgramMetadata) or from the response of [createProgram](#/operations/createProgram).
|
|
2959
2907
|
* @param {*} [options] Override http request option.
|
|
2960
2908
|
* @throws {RequiredError}
|
|
2961
2909
|
*/
|
|
@@ -2966,7 +2914,7 @@ var LibraryProgramApi = class extends BaseAPI {
|
|
|
2966
2914
|
* <!-- theme: danger --> > **Experimental** Returns the content of the program. The identifier of the program is received upon creation or from the metadata list of all the programs.
|
|
2967
2915
|
* @summary Get Program
|
|
2968
2916
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
2969
|
-
* @param {string} program Recieved from [listProgramMetadata](listProgramMetadata) or from the response of [createProgram](createProgram).
|
|
2917
|
+
* @param {string} program Recieved from [listProgramMetadata](#/operations/listProgramMetadata) or from the response of [createProgram](#/operations/createProgram).
|
|
2970
2918
|
* @param {*} [options] Override http request option.
|
|
2971
2919
|
* @throws {RequiredError}
|
|
2972
2920
|
*/
|
|
@@ -2977,7 +2925,7 @@ var LibraryProgramApi = class extends BaseAPI {
|
|
|
2977
2925
|
* <!-- theme: danger --> > **Experimental** Updates the content of the program. The update overwrites the existing content. The metadata is updated in correspondence. ## Examples ``` move via p2p() to [0, 0, 0, 0, 0, 0] move frame(\"flange\") to [1, 2, 0] move via line() to [1, 1, 0] a := planned_pose() ``` ``` {% from \'schneider_conveyor_v1.j2\' import schneider_conveyor_library -%} {{ schneider_conveyor_library() }} def start_main(): conveyor_speed_percentage = {{ conveyor_speed_percentage | round(4) }} conveyer_speed = conveyor_speed_percentage*1500 schneider_conveyor_start(conveyer_speed) end ```
|
|
2978
2926
|
* @summary Update Program
|
|
2979
2927
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
2980
|
-
* @param {string} program Recieved from [listProgramMetadata](listProgramMetadata) or from the response of [createProgram](createProgram).
|
|
2928
|
+
* @param {string} program Recieved from [listProgramMetadata](#/operations/listProgramMetadata) or from the response of [createProgram](#/operations/createProgram).
|
|
2981
2929
|
* @param {string} body
|
|
2982
2930
|
* @param {*} [options] Override http request option.
|
|
2983
2931
|
* @throws {RequiredError}
|
|
@@ -3005,7 +2953,6 @@ const LibraryProgramMetadataApiAxiosParamCreator = function(configuration) {
|
|
|
3005
2953
|
};
|
|
3006
2954
|
const localVarHeaderParameter = {};
|
|
3007
2955
|
const localVarQueryParameter = {};
|
|
3008
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
3009
2956
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3010
2957
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3011
2958
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -3032,7 +2979,6 @@ const LibraryProgramMetadataApiAxiosParamCreator = function(configuration) {
|
|
|
3032
2979
|
};
|
|
3033
2980
|
const localVarHeaderParameter = {};
|
|
3034
2981
|
const localVarQueryParameter = {};
|
|
3035
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
3036
2982
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3037
2983
|
if (showHidden !== void 0) localVarQueryParameter["show_hidden"] = showHidden;
|
|
3038
2984
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -3062,7 +3008,6 @@ const LibraryProgramMetadataApiAxiosParamCreator = function(configuration) {
|
|
|
3062
3008
|
};
|
|
3063
3009
|
const localVarHeaderParameter = {};
|
|
3064
3010
|
const localVarQueryParameter = {};
|
|
3065
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
3066
3011
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3067
3012
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
3068
3013
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -3094,7 +3039,6 @@ const LibraryProgramMetadataApiAxiosParamCreator = function(configuration) {
|
|
|
3094
3039
|
const localVarHeaderParameter = {};
|
|
3095
3040
|
const localVarQueryParameter = {};
|
|
3096
3041
|
const localVarFormParams = new (configuration && configuration.formDataCtor || FormData)();
|
|
3097
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
3098
3042
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3099
3043
|
if (file !== void 0) localVarFormParams.append("file", file);
|
|
3100
3044
|
localVarHeaderParameter["Content-Type"] = "multipart/form-data";
|
|
@@ -3173,7 +3117,7 @@ var LibraryProgramMetadataApi = class extends BaseAPI {
|
|
|
3173
3117
|
* <!-- theme: danger --> > **Experimental** Returns metadata of the corresponding program.
|
|
3174
3118
|
* @summary Get Program Metadata
|
|
3175
3119
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
3176
|
-
* @param {string} program Recieved from [listProgramMetadata](listProgramMetadata) or from the response of [createProgram](createProgram).
|
|
3120
|
+
* @param {string} program Recieved from [listProgramMetadata](#/operations/listProgramMetadata) or from the response of [createProgram](#/operations/createProgram).
|
|
3177
3121
|
* @param {*} [options] Override http request option.
|
|
3178
3122
|
* @throws {RequiredError}
|
|
3179
3123
|
*/
|
|
@@ -3195,7 +3139,7 @@ var LibraryProgramMetadataApi = class extends BaseAPI {
|
|
|
3195
3139
|
* <!-- theme: danger --> > **Experimental** Updates the metadata of the corresponding program. The update is partial, only the set fields get updated.
|
|
3196
3140
|
* @summary Update Program Metadata
|
|
3197
3141
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
3198
|
-
* @param {string} program Recieved from [listProgramMetadata](listProgramMetadata) or from the response of [createProgram](createProgram).
|
|
3142
|
+
* @param {string} program Recieved from [listProgramMetadata](#/operations/listProgramMetadata) or from the response of [createProgram](#/operations/createProgram).
|
|
3199
3143
|
* @param {UpdateProgramMetadataRequest} updateProgramMetadataRequest
|
|
3200
3144
|
* @param {*} [options] Override http request option.
|
|
3201
3145
|
* @throws {RequiredError}
|
|
@@ -3207,7 +3151,7 @@ var LibraryProgramMetadataApi = class extends BaseAPI {
|
|
|
3207
3151
|
* <!-- theme: danger --> > **Experimental** Uploads an image for the corresponding program. The image is served as a static file. The path to the image is stored in the metadata.
|
|
3208
3152
|
* @summary Upload Program Metadata Image
|
|
3209
3153
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
3210
|
-
* @param {string} program Recieved from [listProgramMetadata](listProgramMetadata) or from the response of [createProgram](createProgram).
|
|
3154
|
+
* @param {string} program Recieved from [listProgramMetadata](#/operations/listProgramMetadata) or from the response of [createProgram](#/operations/createProgram).
|
|
3211
3155
|
* @param {File} file
|
|
3212
3156
|
* @param {*} [options] Override http request option.
|
|
3213
3157
|
* @throws {RequiredError}
|
|
@@ -3236,7 +3180,6 @@ const LibraryRecipeApiAxiosParamCreator = function(configuration) {
|
|
|
3236
3180
|
};
|
|
3237
3181
|
const localVarHeaderParameter = {};
|
|
3238
3182
|
const localVarQueryParameter = {};
|
|
3239
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
3240
3183
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3241
3184
|
if (programId !== void 0) localVarQueryParameter["program_id"] = programId;
|
|
3242
3185
|
if (name !== void 0) localVarQueryParameter["name"] = name;
|
|
@@ -3268,7 +3211,6 @@ const LibraryRecipeApiAxiosParamCreator = function(configuration) {
|
|
|
3268
3211
|
};
|
|
3269
3212
|
const localVarHeaderParameter = {};
|
|
3270
3213
|
const localVarQueryParameter = {};
|
|
3271
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
3272
3214
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3273
3215
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3274
3216
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -3296,7 +3238,6 @@ const LibraryRecipeApiAxiosParamCreator = function(configuration) {
|
|
|
3296
3238
|
};
|
|
3297
3239
|
const localVarHeaderParameter = {};
|
|
3298
3240
|
const localVarQueryParameter = {};
|
|
3299
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
3300
3241
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3301
3242
|
if (recipeIds) localVarQueryParameter["recipe_ids"] = recipeIds;
|
|
3302
3243
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -3325,7 +3266,6 @@ const LibraryRecipeApiAxiosParamCreator = function(configuration) {
|
|
|
3325
3266
|
};
|
|
3326
3267
|
const localVarHeaderParameter = {};
|
|
3327
3268
|
const localVarQueryParameter = {};
|
|
3328
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
3329
3269
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3330
3270
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3331
3271
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -3354,7 +3294,6 @@ const LibraryRecipeApiAxiosParamCreator = function(configuration) {
|
|
|
3354
3294
|
};
|
|
3355
3295
|
const localVarHeaderParameter = {};
|
|
3356
3296
|
const localVarQueryParameter = {};
|
|
3357
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
3358
3297
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3359
3298
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
3360
3299
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -3443,7 +3382,7 @@ var LibraryRecipeApi = class extends BaseAPI {
|
|
|
3443
3382
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
3444
3383
|
* @param {string} programId The identifier of the program the recipe will be associated with.
|
|
3445
3384
|
* @param {object} body
|
|
3446
|
-
* @param {string} [name] If no
|
|
3385
|
+
* @param {string} [name] If no initial name is set, a default name based on the program and timestamp is created.
|
|
3447
3386
|
* @param {*} [options] Override http request option.
|
|
3448
3387
|
* @throws {RequiredError}
|
|
3449
3388
|
*/
|
|
@@ -3454,7 +3393,7 @@ var LibraryRecipeApi = class extends BaseAPI {
|
|
|
3454
3393
|
* # EXPERIMENTAL > **Note:** This endpoint is experimental and might experience functional changes in the future. Deletes a recipe. This action is irreversible.
|
|
3455
3394
|
* @summary Delete Recipe
|
|
3456
3395
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
3457
|
-
* @param {string} recipe Recieved from [listRecipeMetadata](listRecipeMetadata) or from the response of [createRecipe](createRecipe).
|
|
3396
|
+
* @param {string} recipe Recieved from [listRecipeMetadata](#/operations/listRecipeMetadata) or from the response of [createRecipe](#/operations/createRecipe).
|
|
3458
3397
|
* @param {*} [options] Override http request option.
|
|
3459
3398
|
* @throws {RequiredError}
|
|
3460
3399
|
*/
|
|
@@ -3465,7 +3404,7 @@ var LibraryRecipeApi = class extends BaseAPI {
|
|
|
3465
3404
|
* <!-- theme: danger --> > **Experimental** Deletes the provided list of recipes. This action is irreversible.
|
|
3466
3405
|
* @summary Delete Recipe List
|
|
3467
3406
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
3468
|
-
* @param {Array<string>} recipeIds
|
|
3407
|
+
* @param {Array<string>} recipeIds Received from [listRecipeMetadata](#/operations/listRecipeMetadata) or from the response of [createRecipe](#/operations/createRecipe)
|
|
3469
3408
|
* @param {*} [options] Override http request option.
|
|
3470
3409
|
* @throws {RequiredError}
|
|
3471
3410
|
*/
|
|
@@ -3476,7 +3415,7 @@ var LibraryRecipeApi = class extends BaseAPI {
|
|
|
3476
3415
|
* <!-- theme: danger --> > **Experimental** Returns the content of a recipe. The identifier of the recipe is recieved on creation or from the metadata list of all the recipes.
|
|
3477
3416
|
* @summary Get Recipe
|
|
3478
3417
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
3479
|
-
* @param {string} recipe Recieved from [listRecipeMetadata](listRecipeMetadata) or from the response of [createRecipe](createRecipe).
|
|
3418
|
+
* @param {string} recipe Recieved from [listRecipeMetadata](#/operations/listRecipeMetadata) or from the response of [createRecipe](#/operations/createRecipe).
|
|
3480
3419
|
* @param {*} [options] Override http request option.
|
|
3481
3420
|
* @throws {RequiredError}
|
|
3482
3421
|
*/
|
|
@@ -3487,7 +3426,7 @@ var LibraryRecipeApi = class extends BaseAPI {
|
|
|
3487
3426
|
* <!-- theme: danger --> > **Experimental** Updates an existing recipe. The update is partial, only the set fields get updated.
|
|
3488
3427
|
* @summary Update Recipe
|
|
3489
3428
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
3490
|
-
* @param {string} recipe Recieved from [listRecipeMetadata](listRecipeMetadata) or from the response of [createRecipe](createRecipe).
|
|
3429
|
+
* @param {string} recipe Recieved from [listRecipeMetadata](#/operations/listRecipeMetadata) or from the response of [createRecipe](#/operations/createRecipe).
|
|
3491
3430
|
* @param {object} body
|
|
3492
3431
|
* @param {*} [options] Override http request option.
|
|
3493
3432
|
* @throws {RequiredError}
|
|
@@ -3515,7 +3454,6 @@ const LibraryRecipeMetadataApiAxiosParamCreator = function(configuration) {
|
|
|
3515
3454
|
};
|
|
3516
3455
|
const localVarHeaderParameter = {};
|
|
3517
3456
|
const localVarQueryParameter = {};
|
|
3518
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
3519
3457
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3520
3458
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3521
3459
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -3542,7 +3480,6 @@ const LibraryRecipeMetadataApiAxiosParamCreator = function(configuration) {
|
|
|
3542
3480
|
};
|
|
3543
3481
|
const localVarHeaderParameter = {};
|
|
3544
3482
|
const localVarQueryParameter = {};
|
|
3545
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
3546
3483
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3547
3484
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3548
3485
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -3571,7 +3508,6 @@ const LibraryRecipeMetadataApiAxiosParamCreator = function(configuration) {
|
|
|
3571
3508
|
};
|
|
3572
3509
|
const localVarHeaderParameter = {};
|
|
3573
3510
|
const localVarQueryParameter = {};
|
|
3574
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
3575
3511
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3576
3512
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
3577
3513
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -3603,7 +3539,6 @@ const LibraryRecipeMetadataApiAxiosParamCreator = function(configuration) {
|
|
|
3603
3539
|
const localVarHeaderParameter = {};
|
|
3604
3540
|
const localVarQueryParameter = {};
|
|
3605
3541
|
const localVarFormParams = new (configuration && configuration.formDataCtor || FormData)();
|
|
3606
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
3607
3542
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3608
3543
|
if (file !== void 0) localVarFormParams.append("file", file);
|
|
3609
3544
|
localVarHeaderParameter["Content-Type"] = "multipart/form-data";
|
|
@@ -3682,7 +3617,7 @@ var LibraryRecipeMetadataApi = class extends BaseAPI {
|
|
|
3682
3617
|
* <!-- theme: danger --> > **Experimental** Returns the metadata of the recipe.
|
|
3683
3618
|
* @summary Get Recipe Metadata
|
|
3684
3619
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
3685
|
-
* @param {string} recipe Recieved from [listRecipeMetadata](listRecipeMetadata) or from the response of [createRecipe](createRecipe).
|
|
3620
|
+
* @param {string} recipe Recieved from [listRecipeMetadata](#/operations/listRecipeMetadata) or from the response of [createRecipe](#/operations/createRecipe).
|
|
3686
3621
|
* @param {*} [options] Override http request option.
|
|
3687
3622
|
* @throws {RequiredError}
|
|
3688
3623
|
*/
|
|
@@ -3703,7 +3638,7 @@ var LibraryRecipeMetadataApi = class extends BaseAPI {
|
|
|
3703
3638
|
* <!-- theme: danger --> > **Experimental** Updates the metadata of a recipe. The update is partial, only the set fields get updated.
|
|
3704
3639
|
* @summary Update Recipe Metadata
|
|
3705
3640
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
3706
|
-
* @param {string} recipe Recieved from [listRecipeMetadata](listRecipeMetadata) or from the response of [createRecipe](createRecipe).
|
|
3641
|
+
* @param {string} recipe Recieved from [listRecipeMetadata](#/operations/listRecipeMetadata) or from the response of [createRecipe](#/operations/createRecipe).
|
|
3707
3642
|
* @param {UpdateRecipeMetadataRequest} updateRecipeMetadataRequest
|
|
3708
3643
|
* @param {*} [options] Override http request option.
|
|
3709
3644
|
* @throws {RequiredError}
|
|
@@ -3715,7 +3650,7 @@ var LibraryRecipeMetadataApi = class extends BaseAPI {
|
|
|
3715
3650
|
* <!-- theme: danger --> > **Experimental** Uploads an image for a recipe. The image is served as a static file and the path is stored in the metadata.
|
|
3716
3651
|
* @summary Upload Recipe Metadata Image
|
|
3717
3652
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
3718
|
-
* @param {string} recipe Recieved from [listRecipeMetadata](listRecipeMetadata) or from the response of [createRecipe](createRecipe).
|
|
3653
|
+
* @param {string} recipe Recieved from [listRecipeMetadata](#/operations/listRecipeMetadata) or from the response of [createRecipe](#/operations/createRecipe).
|
|
3719
3654
|
* @param {File} file
|
|
3720
3655
|
* @param {*} [options] Override http request option.
|
|
3721
3656
|
* @throws {RequiredError}
|
|
@@ -3741,7 +3676,6 @@ const LicenseApiAxiosParamCreator = function(configuration) {
|
|
|
3741
3676
|
};
|
|
3742
3677
|
const localVarHeaderParameter = {};
|
|
3743
3678
|
const localVarQueryParameter = {};
|
|
3744
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
3745
3679
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3746
3680
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
3747
3681
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -3768,7 +3702,6 @@ const LicenseApiAxiosParamCreator = function(configuration) {
|
|
|
3768
3702
|
};
|
|
3769
3703
|
const localVarHeaderParameter = {};
|
|
3770
3704
|
const localVarQueryParameter = {};
|
|
3771
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
3772
3705
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3773
3706
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3774
3707
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -3793,7 +3726,6 @@ const LicenseApiAxiosParamCreator = function(configuration) {
|
|
|
3793
3726
|
};
|
|
3794
3727
|
const localVarHeaderParameter = {};
|
|
3795
3728
|
const localVarQueryParameter = {};
|
|
3796
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
3797
3729
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3798
3730
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3799
3731
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -3818,7 +3750,6 @@ const LicenseApiAxiosParamCreator = function(configuration) {
|
|
|
3818
3750
|
};
|
|
3819
3751
|
const localVarHeaderParameter = {};
|
|
3820
3752
|
const localVarQueryParameter = {};
|
|
3821
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
3822
3753
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3823
3754
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3824
3755
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -3946,7 +3877,6 @@ const MotionApiAxiosParamCreator = function(configuration) {
|
|
|
3946
3877
|
};
|
|
3947
3878
|
const localVarHeaderParameter = {};
|
|
3948
3879
|
const localVarQueryParameter = {};
|
|
3949
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
3950
3880
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3951
3881
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3952
3882
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -3974,7 +3904,6 @@ const MotionApiAxiosParamCreator = function(configuration) {
|
|
|
3974
3904
|
};
|
|
3975
3905
|
const localVarHeaderParameter = {};
|
|
3976
3906
|
const localVarQueryParameter = {};
|
|
3977
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
3978
3907
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3979
3908
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3980
3909
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -4002,7 +3931,6 @@ const MotionApiAxiosParamCreator = function(configuration) {
|
|
|
4002
3931
|
};
|
|
4003
3932
|
const localVarHeaderParameter = {};
|
|
4004
3933
|
const localVarQueryParameter = {};
|
|
4005
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
4006
3934
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
4007
3935
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
4008
3936
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -4033,7 +3961,6 @@ const MotionApiAxiosParamCreator = function(configuration) {
|
|
|
4033
3961
|
};
|
|
4034
3962
|
const localVarHeaderParameter = {};
|
|
4035
3963
|
const localVarQueryParameter = {};
|
|
4036
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
4037
3964
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
4038
3965
|
if (sampleTime !== void 0) localVarQueryParameter["sample_time"] = sampleTime;
|
|
4039
3966
|
if (responsesCoordinateSystem !== void 0) localVarQueryParameter["responses_coordinate_system"] = responsesCoordinateSystem;
|
|
@@ -4063,7 +3990,6 @@ const MotionApiAxiosParamCreator = function(configuration) {
|
|
|
4063
3990
|
};
|
|
4064
3991
|
const localVarHeaderParameter = {};
|
|
4065
3992
|
const localVarQueryParameter = {};
|
|
4066
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
4067
3993
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
4068
3994
|
if (locationOnTrajectory !== void 0) localVarQueryParameter["location_on_trajectory"] = locationOnTrajectory;
|
|
4069
3995
|
if (responseCoordinateSystem !== void 0) localVarQueryParameter["response_coordinate_system"] = responseCoordinateSystem;
|
|
@@ -4093,7 +4019,6 @@ const MotionApiAxiosParamCreator = function(configuration) {
|
|
|
4093
4019
|
};
|
|
4094
4020
|
const localVarHeaderParameter = {};
|
|
4095
4021
|
const localVarQueryParameter = {};
|
|
4096
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
4097
4022
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
4098
4023
|
if (sampleTime !== void 0) localVarQueryParameter["sample_time"] = sampleTime;
|
|
4099
4024
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -4121,7 +4046,6 @@ const MotionApiAxiosParamCreator = function(configuration) {
|
|
|
4121
4046
|
};
|
|
4122
4047
|
const localVarHeaderParameter = {};
|
|
4123
4048
|
const localVarQueryParameter = {};
|
|
4124
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
4125
4049
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
4126
4050
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4127
4051
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -4148,7 +4072,6 @@ const MotionApiAxiosParamCreator = function(configuration) {
|
|
|
4148
4072
|
};
|
|
4149
4073
|
const localVarHeaderParameter = {};
|
|
4150
4074
|
const localVarQueryParameter = {};
|
|
4151
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
4152
4075
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
4153
4076
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4154
4077
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -4176,7 +4099,6 @@ const MotionApiAxiosParamCreator = function(configuration) {
|
|
|
4176
4099
|
};
|
|
4177
4100
|
const localVarHeaderParameter = {};
|
|
4178
4101
|
const localVarQueryParameter = {};
|
|
4179
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
4180
4102
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
4181
4103
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
4182
4104
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -4205,7 +4127,6 @@ const MotionApiAxiosParamCreator = function(configuration) {
|
|
|
4205
4127
|
};
|
|
4206
4128
|
const localVarHeaderParameter = {};
|
|
4207
4129
|
const localVarQueryParameter = {};
|
|
4208
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
4209
4130
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
4210
4131
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
4211
4132
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -4235,7 +4156,6 @@ const MotionApiAxiosParamCreator = function(configuration) {
|
|
|
4235
4156
|
};
|
|
4236
4157
|
const localVarHeaderParameter = {};
|
|
4237
4158
|
const localVarQueryParameter = {};
|
|
4238
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
4239
4159
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
4240
4160
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
4241
4161
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -4264,7 +4184,6 @@ const MotionApiAxiosParamCreator = function(configuration) {
|
|
|
4264
4184
|
};
|
|
4265
4185
|
const localVarHeaderParameter = {};
|
|
4266
4186
|
const localVarQueryParameter = {};
|
|
4267
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
4268
4187
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
4269
4188
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
4270
4189
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -4294,7 +4213,6 @@ const MotionApiAxiosParamCreator = function(configuration) {
|
|
|
4294
4213
|
};
|
|
4295
4214
|
const localVarHeaderParameter = {};
|
|
4296
4215
|
const localVarQueryParameter = {};
|
|
4297
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
4298
4216
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
4299
4217
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4300
4218
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -4322,7 +4240,6 @@ const MotionApiAxiosParamCreator = function(configuration) {
|
|
|
4322
4240
|
};
|
|
4323
4241
|
const localVarHeaderParameter = {};
|
|
4324
4242
|
const localVarQueryParameter = {};
|
|
4325
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
4326
4243
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
4327
4244
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
4328
4245
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -4353,7 +4270,6 @@ const MotionApiAxiosParamCreator = function(configuration) {
|
|
|
4353
4270
|
};
|
|
4354
4271
|
const localVarHeaderParameter = {};
|
|
4355
4272
|
const localVarQueryParameter = {};
|
|
4356
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
4357
4273
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
4358
4274
|
if (playbackSpeedInPercent !== void 0) localVarQueryParameter["playback_speed_in_percent"] = playbackSpeedInPercent;
|
|
4359
4275
|
if (responseRate !== void 0) localVarQueryParameter["response_rate"] = responseRate;
|
|
@@ -4386,7 +4302,6 @@ const MotionApiAxiosParamCreator = function(configuration) {
|
|
|
4386
4302
|
};
|
|
4387
4303
|
const localVarHeaderParameter = {};
|
|
4388
4304
|
const localVarQueryParameter = {};
|
|
4389
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
4390
4305
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
4391
4306
|
if (playbackSpeedInPercent !== void 0) localVarQueryParameter["playback_speed_in_percent"] = playbackSpeedInPercent;
|
|
4392
4307
|
if (responseRate !== void 0) localVarQueryParameter["response_rate"] = responseRate;
|
|
@@ -4419,7 +4334,6 @@ const MotionApiAxiosParamCreator = function(configuration) {
|
|
|
4419
4334
|
};
|
|
4420
4335
|
const localVarHeaderParameter = {};
|
|
4421
4336
|
const localVarQueryParameter = {};
|
|
4422
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
4423
4337
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
4424
4338
|
if (locationOnTrajectory !== void 0) localVarQueryParameter["location_on_trajectory"] = locationOnTrajectory;
|
|
4425
4339
|
if (limitOverrideJointVelocityLimitsJoints) localVarQueryParameter["limit_override.joint_velocity_limits.joints"] = limitOverrideJointVelocityLimitsJoints;
|
|
@@ -4627,7 +4541,7 @@ var MotionApi = class extends BaseAPI {
|
|
|
4627
4541
|
return MotionApiFp(this.configuration).deleteAllMotions(cell, options).then((request) => request(this.axios, this.basePath));
|
|
4628
4542
|
}
|
|
4629
4543
|
/**
|
|
4630
|
-
* Remove a previously created motion from cache. Use [listMotions](listMotions) to list all available motions. Motions are removed automatically if the motion group or the corresponding controller is disconnected.
|
|
4544
|
+
* Remove a previously created motion from cache. Use [listMotions](#/operations/listMotions) to list all available motions. Motions are removed automatically if the motion group or the corresponding controller is disconnected.
|
|
4631
4545
|
* @summary Remove
|
|
4632
4546
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4633
4547
|
* @param {string} motion This represents the UUID of a motion. Every executable or partially executable motion is cached and an UUID is returned. Indicate the UUID to execute the motion or retrieve information on the motion.
|
|
@@ -4638,7 +4552,7 @@ var MotionApi = class extends BaseAPI {
|
|
|
4638
4552
|
return MotionApiFp(this.configuration).deleteMotion(cell, motion, options).then((request) => request(this.axios, this.basePath));
|
|
4639
4553
|
}
|
|
4640
4554
|
/**
|
|
4641
|
-
* <!-- theme: danger --> > Websocket endpoint
|
|
4555
|
+
* <!-- theme: danger --> > Websocket endpoint Provide execution control over a previously planned trajectory. Enable the caller to attach I/O actions to the trajectory. Understanding the concept of location: The location or path parameter specifies the exact position along a trajectory. The location is a scalar value that ranges from 0 to `n`, where `n` denotes the number of motion commands, or trajectory segments, e.g. line, p2p, etc. See [planMotion](#/operations/planMotion). Each integer value of the location corresponds to one motion command, e.g. 3.0 to 3.999 could be a line. ### Preconditions - The motion group\'s control mode is not claimed by any other endpoint. - The motion group\'s joint position is at the start location specified with InitializeMovementRequest. ### Requests #### 1. Send InitializeMovementRequest to lock the trajectory to this connection The following actions are executed: - Sets robot controller mode to control mode - Sets start location of the execution Keep in mind that only a single trajectory can be locked to a websocket connection at a time and not unlocked anymore. To execute another trajectory, a new connection must be established. #### 2. Send StartMovementRequest to start the movement - Sets direction of movement, default is forward. #### **Optional** - To pause, send PauseMovementRequest before the movement has reached its end location. - Change the movement\'s velocity with PlaybackSpeedRequest after initializing the movement with InitializeMovementRequest. ### Responses - InitializeMovementResponse is sent to signal the success or failure of the InitializeMovementRequest. - Movement responses are streamed after a StartMovementRequest successfully started the movement. Movement responses are streamed in a rate that is defined as the multiple of the controller step-rate closest to but not exceeding the rate configured by InitializeMovementRequest. - Standstill response is sent once the movement has finished or has come to a standstill due to a pause. - PauseMovementResponse is sent to signal the success of the PauseMovementRequest. It does not signal the end of the movement. End of movement is signaled by standstill response. - PlaybackSpeedResponse is sent to signal the success of the PlaybackSpeedRequest. - MovementError with error details is sent in case of an unexpected error, e.g. controller disconnects during movement. ### Tips and Tricks - A movement can be paused and resumed by sending PauseMovementRequest and StartMovementRequest. - Send PlaybackSpeedRequest before StartMovementRequest to reduce the velocity of the movement before it starts. - Send PlaybackSpeedRequest repeatedly to implement a slider. The velocity of the motion group can be adjusted with each controller step. Therefore, if your app needs a slider-like UI to alter the velocity of a currently running movement, you can send PlaybackSpeedRequest with different speed values repeatedly during the movement. - A closed trajectory (end and start joint position are equal) can be repeated by sending StartMovementRequest after the movement has finished.
|
|
4642
4556
|
* @summary Execute Trajectory
|
|
4643
4557
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4644
4558
|
* @param {ExecuteTrajectoryRequest} executeTrajectoryRequest
|
|
@@ -4649,7 +4563,7 @@ var MotionApi = class extends BaseAPI {
|
|
|
4649
4563
|
return MotionApiFp(this.configuration).executeTrajectory(cell, executeTrajectoryRequest, options).then((request) => request(this.axios, this.basePath));
|
|
4650
4564
|
}
|
|
4651
4565
|
/**
|
|
4652
|
-
* Get the trajectory of a planned motion with defined `sample_time` in milliseconds (ms). The trajectory is a list of points containing cartesian and joint data. The cartesian data is in the requested coordinate system. To get a single point of the trajectory, please use the [getMotionTrajectorySample](getMotionTrajectorySample) endpoint.
|
|
4566
|
+
* Get the trajectory of a planned motion with defined `sample_time` in milliseconds (ms). The trajectory is a list of points containing cartesian and joint data. The cartesian data is in the requested coordinate system. To get a single point of the trajectory, please use the [getMotionTrajectorySample](#/operations/getMotionTrajectorySample) endpoint.
|
|
4653
4567
|
* @summary Get Trajectory
|
|
4654
4568
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4655
4569
|
* @param {string} motion This represents the UUID of a motion. Every executable or partially executable motion is cached and an UUID is returned. Indicate the UUID to execute the motion or retrieve information on the motion.
|
|
@@ -4662,12 +4576,12 @@ var MotionApi = class extends BaseAPI {
|
|
|
4662
4576
|
return MotionApiFp(this.configuration).getMotionTrajectory(cell, motion, sampleTime, responsesCoordinateSystem, options).then((request) => request(this.axios, this.basePath));
|
|
4663
4577
|
}
|
|
4664
4578
|
/**
|
|
4665
|
-
* Get a single point at a certain location of a planned motion. To get the whole trajectory, use the [getMotionTrajectory](getMotionTrajectory) endpoint.
|
|
4579
|
+
* Get a single point at a certain location of a planned motion. To get the whole trajectory, use the [getMotionTrajectory](#/operations/getMotionTrajectory) endpoint.
|
|
4666
4580
|
* @summary Get Trajectory Sample
|
|
4667
4581
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4668
4582
|
* @param {string} motion This represents the UUID of a motion. Every executable or partially executable motion is cached and an UUID is returned. Indicate the UUID to execute the motion or retrieve information on the motion.
|
|
4669
4583
|
* @param {number} [locationOnTrajectory]
|
|
4670
|
-
* @param {string} [responseCoordinateSystem] Unique identifier addressing a coordinate system
|
|
4584
|
+
* @param {string} [responseCoordinateSystem] Unique identifier addressing a coordinate system for which the cartesian data of the response should be converted to. Default is the world coordinate system.
|
|
4671
4585
|
* @param {*} [options] Override http request option.
|
|
4672
4586
|
* @throws {RequiredError}
|
|
4673
4587
|
*/
|
|
@@ -4675,7 +4589,7 @@ var MotionApi = class extends BaseAPI {
|
|
|
4675
4589
|
return MotionApiFp(this.configuration).getMotionTrajectorySample(cell, motion, locationOnTrajectory, responseCoordinateSystem, options).then((request) => request(this.axios, this.basePath));
|
|
4676
4590
|
}
|
|
4677
4591
|
/**
|
|
4678
|
-
* Get the joint data of a planned motion. The planned motion contains only the joint information, to persistently store and reload it later. The data will be sampled equidistantly with defined `sample_time` in milliseconds (ms). If not provided, the data is returned as it is stored on Wandelbots NOVA system. To request cartesian data for visualization purposes, use the [getMotionTrajectory](getMotionTrajectory) endpoint. To get a single point of the planned motion, use the [getMotionTrajectorySample](getMotionTrajectorySample) endpoint.
|
|
4592
|
+
* Get the joint data of a planned motion. The planned motion contains only the joint information, to persistently store and reload it later. The data will be sampled equidistantly with defined `sample_time` in milliseconds (ms). If not provided, the data is returned as it is stored on Wandelbots NOVA system. To request cartesian data for visualization purposes, use the [getMotionTrajectory](#/operations/getMotionTrajectory) endpoint. To get a single point of the planned motion, use the [getMotionTrajectorySample](#/operations/getMotionTrajectorySample) endpoint.
|
|
4679
4593
|
* @summary Get Planned Motion
|
|
4680
4594
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4681
4595
|
* @param {string} motion This represents the UUID of a motion. Every executable or partially executable motion is cached and an UUID is returned. Indicate the UUID to execute the motion or retrieve information on the motion.
|
|
@@ -4697,7 +4611,7 @@ var MotionApi = class extends BaseAPI {
|
|
|
4697
4611
|
return MotionApiFp(this.configuration).getPlanningMotionGroupModels(cell, options).then((request) => request(this.axios, this.basePath));
|
|
4698
4612
|
}
|
|
4699
4613
|
/**
|
|
4700
|
-
* List all currently planned and available motions. Use [planMotion](planMotion) to plan a new motion. Motions are removed if the corresponding motion group or controller disconnects.
|
|
4614
|
+
* List all currently planned and available motions. Use [planMotion](#/operations/planMotion) to plan a new motion. Motions are removed if the corresponding motion group or controller disconnects.
|
|
4701
4615
|
* @summary List All Motions
|
|
4702
4616
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4703
4617
|
* @param {*} [options] Override http request option.
|
|
@@ -4707,7 +4621,7 @@ var MotionApi = class extends BaseAPI {
|
|
|
4707
4621
|
return MotionApiFp(this.configuration).listMotions(cell, options).then((request) => request(this.axios, this.basePath));
|
|
4708
4622
|
}
|
|
4709
4623
|
/**
|
|
4710
|
-
* Loads and validates the data of a planned motion into a motion session. The response contains information about the validated motion. Validation can lead to three different results: - Fully valid: The whole planned motion can be executed from start to end. The response will contain the session to move the robot. - Partially valid: Only parts of the planned motion can be executed. The response will contain the session to move the robot and information about the failure for the part that is not executable. - Invalid: The planned motion can not be executed. The response will tell you, which information about the reason of failure. If the motion is at least partially valid, the parts of the motion that are valid can be executed using the [streamMoveForward](streamMoveForward) endpoint. You can use the following workflows: - Plan motions using the [planMotion](planMotion) endpoint, - Store the planned motion persistently, - Use this endpoint to reload the stored motion and get a motion session for it. - Execute the loaded motion using the [streamMoveForward](streamMoveForward) endpoint. OR: - Generate a planned motion with [planTrajectory](planTrajectory) or your own motion planner, - Send the planned motion to this endpoint to validate it and get a motion session for it, - Execute your motion using the [streamMoveForward](streamMoveForward) endpoint. Once a planned motion is validated, it is treated like a motion session and will appear in the list of available motions, see [listMotions](listMotions) endpoint. You can then execute a motion session with the [streamMoveForward](streamMoveForward) endpoint.
|
|
4624
|
+
* Loads and validates the data of a planned motion into a motion session. The response contains information about the validated motion. Validation can lead to three different results: - Fully valid: The whole planned motion can be executed from start to end. The response will contain the session to move the robot. - Partially valid: Only parts of the planned motion can be executed. The response will contain the session to move the robot and information about the failure for the part that is not executable. - Invalid: The planned motion can not be executed. The response will tell you, which information about the reason of failure. If the motion is at least partially valid, the parts of the motion that are valid can be executed using the [streamMoveForward](#/operations/streamMoveForward) endpoint. You can use the following workflows: - Plan motions using the [planMotion](#/operations/planMotion) endpoint, - Store the planned motion persistently, - Use this endpoint to reload the stored motion and get a motion session for it. - Execute the loaded motion using the [streamMoveForward](#/operations/streamMoveForward) endpoint. OR: - Generate a planned motion with [planTrajectory](#/operations/planTrajectory) or your own motion planner, - Send the planned motion to this endpoint to validate it and get a motion session for it, - Execute your motion using the [streamMoveForward](#/operations/streamMoveForward) endpoint. Once a planned motion is validated, it is treated like a motion session and will appear in the list of available motions, see [listMotions](#/operations/listMotions) endpoint. You can then execute a motion session with the [streamMoveForward](#/operations/streamMoveForward) endpoint.
|
|
4711
4625
|
* @summary Load Planned Motion
|
|
4712
4626
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4713
4627
|
* @param {PlannedMotion} plannedMotion
|
|
@@ -4718,7 +4632,7 @@ var MotionApi = class extends BaseAPI {
|
|
|
4718
4632
|
return MotionApiFp(this.configuration).loadPlannedMotion(cell, plannedMotion, options).then((request) => request(this.axios, this.basePath));
|
|
4719
4633
|
}
|
|
4720
4634
|
/**
|
|
4721
|
-
* <!-- theme: danger --> > **Experimental** Plans a collision-free PTP motion for a single motion group. Use the following workflow to execute a planned trajectory: 1. Plan collision-free movement/motion. 2. Validate and load the planned trajectory using the [loadPlannedMotion](loadPlannedMotion) endpoint. 3. Execute the loaded trajectory using the [streamMove](streamMove) endpoint.
|
|
4635
|
+
* <!-- theme: danger --> > **Experimental** Plans a collision-free PTP motion for a single motion group. Use the following workflow to execute a planned trajectory: 1. Plan a collision-free movement/motion. 2. Validate and load the planned trajectory using the [loadPlannedMotion](#/operations/loadPlannedMotion) endpoint. 3. Execute the loaded trajectory using the [streamMove](#/operations/streamMove) endpoint.
|
|
4722
4636
|
* @summary Plan Collision Free PTP
|
|
4723
4637
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4724
4638
|
* @param {PlanCollisionFreePTPRequest} [planCollisionFreePTPRequest]
|
|
@@ -4729,7 +4643,7 @@ var MotionApi = class extends BaseAPI {
|
|
|
4729
4643
|
return MotionApiFp(this.configuration).planCollisionFreePTP(cell, planCollisionFreePTPRequest, options).then((request) => request(this.axios, this.basePath));
|
|
4730
4644
|
}
|
|
4731
4645
|
/**
|
|
4732
|
-
* Deprecated endpoint. Use [planTrajectory](planTrajectory) and [loadPlannedMotion](loadPlannedMotion) instead. Plans a new motion for a single previously configured [motion group](listMotionGroups). Motions are described by a sequence of motion commands starting with start joints. A motion is planned from standstill to standstill. A single motion has constant TCP and payload. Currently, I/O actions can\'t be attached to a motion to execute the action in realtime while a motion is executed. If an I/O is needed at a specific point, multiple motions need to be planned. If an I/O is needed to be set while a motion is executed, the endpoint [setOutputValues](setOutputValues) could be used.
|
|
4646
|
+
* Deprecated endpoint. Use [planTrajectory](#/operations/planTrajectory) and [loadPlannedMotion](#/operations/loadPlannedMotion) instead. Plans a new motion for a single previously configured [motion group](#/operations/listMotionGroups). Motions are described by a sequence of motion commands starting with start joints. A motion is planned from standstill to standstill. A single motion has constant TCP and payload. Currently, I/O actions can\'t be attached to a motion to execute the action in realtime while a motion is executed. If an I/O is needed at a specific point, multiple motions need to be planned. If an I/O is needed to be set while a motion is executed, the endpoint [setOutputValues](#/operations/setOutputValues) could be used.
|
|
4733
4647
|
* @summary Plan Motion
|
|
4734
4648
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4735
4649
|
* @param {PlanRequest} planRequest
|
|
@@ -4741,7 +4655,7 @@ var MotionApi = class extends BaseAPI {
|
|
|
4741
4655
|
return MotionApiFp(this.configuration).planMotion(cell, planRequest, options).then((request) => request(this.axios, this.basePath));
|
|
4742
4656
|
}
|
|
4743
4657
|
/**
|
|
4744
|
-
* Plans a new trajectory for a single motion group. Describe the trajectory as a sequence of motion commands that the robots TCP should follow. Use the following workflow to execute a planned trajectory: 1. Plan a trajectory. 2. Validate and load the planned trajectory using the [loadPlannedMotion](loadPlannedMotion) endpoint. 3. Execute the loaded trajectory using the [streamMove](streamMove) endpoint. If the trajectory is not executable, the
|
|
4658
|
+
* Plans a new trajectory for a single motion group. Describe the trajectory as a sequence of motion commands that the robots TCP should follow. Use the following workflow to execute a planned trajectory: 1. Plan a trajectory. 2. Validate and load the planned trajectory using the [loadPlannedMotion](#/operations/loadPlannedMotion) endpoint. 3. Execute the loaded trajectory using the [streamMove](#/operations/streamMove) endpoint. If the trajectory is not executable, the PlanTrajectoryFailedResponse will contain the joint trajectory up until the error (e.g. a collision) occurred. EXCEPTION: If a CartesianPTP or JointPTP motion command has an invalid target, the response will contain the trajectory up until the start of the invalid PTP motion.
|
|
4745
4659
|
* @summary Plan Trajectory
|
|
4746
4660
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4747
4661
|
* @param {PlanTrajectoryRequest} [planTrajectoryRequest]
|
|
@@ -4775,7 +4689,7 @@ var MotionApi = class extends BaseAPI {
|
|
|
4775
4689
|
return MotionApiFp(this.configuration).streamMove(cell, streamMoveRequest, options).then((request) => request(this.axios, this.basePath));
|
|
4776
4690
|
}
|
|
4777
4691
|
/**
|
|
4778
|
-
* Deprecated endpoint. Use the [executeTrajectory](executeTrajectory) endpoint instead. Request to move the motion group backward along a previously planned motion. Once started, you can stop a motion using the [stopExecution](stopExecution) endpoint. Prerequisites, before starting the motion execution: - The motion group is currently at the endpoint of the planned motion
|
|
4692
|
+
* Deprecated endpoint. Use the [executeTrajectory](#/operations/executeTrajectory) endpoint instead. Request to move the motion group backward along a previously planned motion. Once started, you can stop a motion using the [stopExecution](#/operations/stopExecution) endpoint. Prerequisites, before starting the motion execution: - The motion group is currently at the endpoint of the planned motion OR - The motion was stopped using [stopExecution](#/operations/stopExecution) endpoint. Then it is possible to resume the motion execution from where it stopped OR - The motion group was moved onto the motion using the [streamMoveToTrajectoryViaJointP2P](#/operations/streamMoveToTrajectoryViaJointP2P) endpoint.
|
|
4779
4693
|
* @summary Stream Backward
|
|
4780
4694
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4781
4695
|
* @param {string} motion This represents the UUID of a motion. Every executable or partially executable motion is cached and an UUID is returned. Indicate the UUID to execute the motion or retrieve information on the motion.
|
|
@@ -4791,14 +4705,14 @@ var MotionApi = class extends BaseAPI {
|
|
|
4791
4705
|
return MotionApiFp(this.configuration).streamMoveBackward(cell, motion, playbackSpeedInPercent, responseRate, responseCoordinateSystem, startLocationOnTrajectory, options).then((request) => request(this.axios, this.basePath));
|
|
4792
4706
|
}
|
|
4793
4707
|
/**
|
|
4794
|
-
* Deprecated endpoint. Use the [executeTrajectory](executeTrajectory) endpoint instead.
|
|
4708
|
+
* Deprecated endpoint. Use the [executeTrajectory](#/operations/executeTrajectory) endpoint instead. Move the motion group forward along a previously planned motion. Once started, you can stop a motion using the [stopExecution](#/operations/stopExecution) endpoint. Prerequisites, before starting the motion execution: - The motion group is currently at the start point of the planned motion OR - The motion was stopped using [stopExecution](#/operations/stopExecution) endpoint. Then it is possible to resume the motion execution from where it stopped OR - The motion group was moved onto the motion using the [streamMoveToTrajectoryViaJointP2P](#/operations/streamMoveToTrajectoryViaJointP2P) endpoint.
|
|
4795
4709
|
* @summary Stream Forward
|
|
4796
4710
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4797
4711
|
* @param {string} motion This represents the UUID of a motion. Every executable or partially executable motion is cached and an UUID is returned. Indicate the UUID to execute the motion or retrieve information on the motion.
|
|
4798
4712
|
* @param {number} playbackSpeedInPercent Set the velocity for executed movements of the motion in percent. A percentage of 100% means that the robot moves as fast as possible without violating the limits. Setting this value does not affect the overall shape of the velocity profile. Everything is slowed down by the same factor. Therefore, this should only be used for teaching and trajectory evaluation purposes. If the process requires a certain velocity, the respective limits should be set when planning the motion. This will not change the velocity override of the controller. The controller velocity override value shall be 100% to ensure controllability of the motion group.
|
|
4799
4713
|
* @param {number} [responseRate] Update rate for the response message in milliseconds (ms). Default is 200 ms. We recommend to use the step rate of the controller or a multiple of the step rate as NOVA updates the state in the controller\'s step rate as well. Minimal response rate is the step rate of controller.
|
|
4800
4714
|
* @param {string} [responseCoordinateSystem] Unique identifier addressing a coordinate system to which the cartesian data of the responses should be converted. Default is the world coordinate system.
|
|
4801
|
-
* @param {number} [startLocationOnTrajectory] Location the motion is requested to start at. The default value is the
|
|
4715
|
+
* @param {number} [startLocationOnTrajectory] Location the motion is requested to start at. The default value is the beginning of the trajectory. The location is a scalar value that defines a position along a path, typically ranging from 0 to `n`, where `n` denotes the number of motion commands. Each integer value of the location corresponds to a specific motion command, while non-integer values interpolate positions within the segments. The location is calculated from the joint path.
|
|
4802
4716
|
* @param {*} [options] Override http request option.
|
|
4803
4717
|
* @deprecated
|
|
4804
4718
|
* @throws {RequiredError}
|
|
@@ -4807,7 +4721,7 @@ var MotionApi = class extends BaseAPI {
|
|
|
4807
4721
|
return MotionApiFp(this.configuration).streamMoveForward(cell, motion, playbackSpeedInPercent, responseRate, responseCoordinateSystem, startLocationOnTrajectory, options).then((request) => request(this.axios, this.basePath));
|
|
4808
4722
|
}
|
|
4809
4723
|
/**
|
|
4810
|
-
* Request to move the motion group via joint point-to-point to a given location on a planned motion. You must use this endpoint in order to start moving from an arbritrary location of the trajectory. Afterwards, you are able to call [streamMoveForward](streamMoveForward) or [streamMoveBackward](streamMoveBackward) to move along planned motion. Use the [stopExecution](stopExecution) endpoint to stop the motion gracefully.
|
|
4724
|
+
* Request to move the motion group via joint point-to-point to a given location on a planned motion. You must use this endpoint in order to start moving from an arbritrary location of the trajectory. Afterwards, you are able to call [streamMoveForward](#/operations/streamMoveForward) or [streamMoveBackward](#/operations/streamMoveBackward) to move along planned motion. Use the [stopExecution](#/operations/stopExecution) endpoint to stop the motion gracefully.
|
|
4811
4725
|
* @summary Stream to Trajectory
|
|
4812
4726
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4813
4727
|
* @param {string} motion This represents the UUID of a motion. Every executable or partially executable motion is cached and an UUID is returned. Indicate the UUID to execute the motion or retrieve information on the motion.
|
|
@@ -4845,7 +4759,6 @@ const MotionGroupApiAxiosParamCreator = function(configuration) {
|
|
|
4845
4759
|
};
|
|
4846
4760
|
const localVarHeaderParameter = {};
|
|
4847
4761
|
const localVarQueryParameter = {};
|
|
4848
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
4849
4762
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
4850
4763
|
if (controller !== void 0) localVarQueryParameter["controller"] = controller;
|
|
4851
4764
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -4874,7 +4787,6 @@ const MotionGroupApiAxiosParamCreator = function(configuration) {
|
|
|
4874
4787
|
};
|
|
4875
4788
|
const localVarHeaderParameter = {};
|
|
4876
4789
|
const localVarQueryParameter = {};
|
|
4877
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
4878
4790
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
4879
4791
|
if (motionGroup !== void 0) localVarQueryParameter["motion_group"] = motionGroup;
|
|
4880
4792
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -4903,7 +4815,6 @@ const MotionGroupApiAxiosParamCreator = function(configuration) {
|
|
|
4903
4815
|
};
|
|
4904
4816
|
const localVarHeaderParameter = {};
|
|
4905
4817
|
const localVarQueryParameter = {};
|
|
4906
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
4907
4818
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
4908
4819
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4909
4820
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -4930,7 +4841,6 @@ const MotionGroupApiAxiosParamCreator = function(configuration) {
|
|
|
4930
4841
|
};
|
|
4931
4842
|
const localVarHeaderParameter = {};
|
|
4932
4843
|
const localVarQueryParameter = {};
|
|
4933
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
4934
4844
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
4935
4845
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4936
4846
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -5003,7 +4913,7 @@ const MotionGroupApiFactory = function(configuration, basePath, axios) {
|
|
|
5003
4913
|
*/
|
|
5004
4914
|
var MotionGroupApi = class extends BaseAPI {
|
|
5005
4915
|
/**
|
|
5006
|
-
* Activate the motion group and
|
|
4916
|
+
* Activate the motion group and keep the motion group in an active status. To activate all motion groups of a robot controller, use this endpoint. It will return all activated motion groups of that controller. When activating motion groups, it is not possible to interact with the controller in any other way. To deactivate a motion group, use [deactivateMotionGroup](#/operations/deactivateMotionGroup).
|
|
5007
4917
|
* @summary Activate All
|
|
5008
4918
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5009
4919
|
* @param {string} controller
|
|
@@ -5014,7 +4924,7 @@ var MotionGroupApi = class extends BaseAPI {
|
|
|
5014
4924
|
return MotionGroupApiFp(this.configuration).activateAllMotionGroups(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
5015
4925
|
}
|
|
5016
4926
|
/**
|
|
5017
|
-
* Activate the motion group and
|
|
4927
|
+
* Activate the motion group and keep the motion group in an active status. To manually activate a motion group, use this endpoint. When activating a motion group, interacting with the controller in other ways is not possible. To deactivate a motion group, use [deactivateMotionGroup](#/operations/deactivateMotionGroup).
|
|
5018
4928
|
* @summary Activate
|
|
5019
4929
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5020
4930
|
* @param {string} motionGroup
|
|
@@ -5065,7 +4975,6 @@ const MotionGroupInfosApiAxiosParamCreator = function(configuration) {
|
|
|
5065
4975
|
};
|
|
5066
4976
|
const localVarHeaderParameter = {};
|
|
5067
4977
|
const localVarQueryParameter = {};
|
|
5068
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
5069
4978
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
5070
4979
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5071
4980
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -5093,7 +5002,6 @@ const MotionGroupInfosApiAxiosParamCreator = function(configuration) {
|
|
|
5093
5002
|
};
|
|
5094
5003
|
const localVarHeaderParameter = {};
|
|
5095
5004
|
const localVarQueryParameter = {};
|
|
5096
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
5097
5005
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
5098
5006
|
if (rotationType !== void 0) localVarQueryParameter["rotation_type"] = rotationType;
|
|
5099
5007
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -5122,7 +5030,6 @@ const MotionGroupInfosApiAxiosParamCreator = function(configuration) {
|
|
|
5122
5030
|
};
|
|
5123
5031
|
const localVarHeaderParameter = {};
|
|
5124
5032
|
const localVarQueryParameter = {};
|
|
5125
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
5126
5033
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
5127
5034
|
if (tcp !== void 0) localVarQueryParameter["tcp"] = tcp;
|
|
5128
5035
|
if (responseCoordinateSystem !== void 0) localVarQueryParameter["response_coordinate_system"] = responseCoordinateSystem;
|
|
@@ -5152,7 +5059,6 @@ const MotionGroupInfosApiAxiosParamCreator = function(configuration) {
|
|
|
5152
5059
|
};
|
|
5153
5060
|
const localVarHeaderParameter = {};
|
|
5154
5061
|
const localVarQueryParameter = {};
|
|
5155
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
5156
5062
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
5157
5063
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5158
5064
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -5180,7 +5086,6 @@ const MotionGroupInfosApiAxiosParamCreator = function(configuration) {
|
|
|
5180
5086
|
};
|
|
5181
5087
|
const localVarHeaderParameter = {};
|
|
5182
5088
|
const localVarQueryParameter = {};
|
|
5183
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
5184
5089
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
5185
5090
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5186
5091
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -5208,7 +5113,6 @@ const MotionGroupInfosApiAxiosParamCreator = function(configuration) {
|
|
|
5208
5113
|
};
|
|
5209
5114
|
const localVarHeaderParameter = {};
|
|
5210
5115
|
const localVarQueryParameter = {};
|
|
5211
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
5212
5116
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
5213
5117
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5214
5118
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -5236,7 +5140,6 @@ const MotionGroupInfosApiAxiosParamCreator = function(configuration) {
|
|
|
5236
5140
|
};
|
|
5237
5141
|
const localVarHeaderParameter = {};
|
|
5238
5142
|
const localVarQueryParameter = {};
|
|
5239
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
5240
5143
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
5241
5144
|
if (tcp !== void 0) localVarQueryParameter["tcp"] = tcp;
|
|
5242
5145
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -5265,7 +5168,6 @@ const MotionGroupInfosApiAxiosParamCreator = function(configuration) {
|
|
|
5265
5168
|
};
|
|
5266
5169
|
const localVarHeaderParameter = {};
|
|
5267
5170
|
const localVarQueryParameter = {};
|
|
5268
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
5269
5171
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
5270
5172
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5271
5173
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -5293,7 +5195,6 @@ const MotionGroupInfosApiAxiosParamCreator = function(configuration) {
|
|
|
5293
5195
|
};
|
|
5294
5196
|
const localVarHeaderParameter = {};
|
|
5295
5197
|
const localVarQueryParameter = {};
|
|
5296
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
5297
5198
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
5298
5199
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5299
5200
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -5321,7 +5222,6 @@ const MotionGroupInfosApiAxiosParamCreator = function(configuration) {
|
|
|
5321
5222
|
};
|
|
5322
5223
|
const localVarHeaderParameter = {};
|
|
5323
5224
|
const localVarQueryParameter = {};
|
|
5324
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
5325
5225
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
5326
5226
|
if (rotationType !== void 0) localVarQueryParameter["rotation_type"] = rotationType;
|
|
5327
5227
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -5350,7 +5250,6 @@ const MotionGroupInfosApiAxiosParamCreator = function(configuration) {
|
|
|
5350
5250
|
};
|
|
5351
5251
|
const localVarHeaderParameter = {};
|
|
5352
5252
|
const localVarQueryParameter = {};
|
|
5353
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
5354
5253
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
5355
5254
|
if (responseRate !== void 0) localVarQueryParameter["response_rate"] = responseRate;
|
|
5356
5255
|
if (responseCoordinateSystem !== void 0) localVarQueryParameter["response_coordinate_system"] = responseCoordinateSystem;
|
|
@@ -5637,7 +5536,6 @@ const MotionGroupJoggingApiAxiosParamCreator = function(configuration) {
|
|
|
5637
5536
|
};
|
|
5638
5537
|
const localVarHeaderParameter = {};
|
|
5639
5538
|
const localVarQueryParameter = {};
|
|
5640
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
5641
5539
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
5642
5540
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
5643
5541
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -5667,7 +5565,6 @@ const MotionGroupJoggingApiAxiosParamCreator = function(configuration) {
|
|
|
5667
5565
|
};
|
|
5668
5566
|
const localVarHeaderParameter = {};
|
|
5669
5567
|
const localVarQueryParameter = {};
|
|
5670
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
5671
5568
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
5672
5569
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5673
5570
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -5695,7 +5592,6 @@ const MotionGroupJoggingApiAxiosParamCreator = function(configuration) {
|
|
|
5695
5592
|
};
|
|
5696
5593
|
const localVarHeaderParameter = {};
|
|
5697
5594
|
const localVarQueryParameter = {};
|
|
5698
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
5699
5595
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
5700
5596
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
5701
5597
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -5725,7 +5621,6 @@ const MotionGroupJoggingApiAxiosParamCreator = function(configuration) {
|
|
|
5725
5621
|
};
|
|
5726
5622
|
const localVarHeaderParameter = {};
|
|
5727
5623
|
const localVarQueryParameter = {};
|
|
5728
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
5729
5624
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
5730
5625
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5731
5626
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -5798,7 +5693,7 @@ const MotionGroupJoggingApiFactory = function(configuration, basePath, axios) {
|
|
|
5798
5693
|
*/
|
|
5799
5694
|
var MotionGroupJoggingApi = class extends BaseAPI {
|
|
5800
5695
|
/**
|
|
5801
|
-
* Move TCP along/around a specified direction vector with a specified velocity via a websocket. The purpose of a direction jogging motion is to move a device in exactly one direction with a specified maximum velocity. The sign of the velocity determines the direction of the movement: Positive [+] or Negative [-]. The velocity is given in [mm/s]. In contrast to a planned motion, a jogging motion can be changed dynamically while the motion group is in motion. Only one single client at a time can jog a particular motion group. If another client tries to jog the same motion group at the same time, the second call will fail. The movement of the motion group will start as soon as: * the motion group is not in motion * the websocket connection is established * the first request has been sent As long as the jogging motion is ongoing, responses will be sent continuously and contain the current state of the motion group. The responses will be sent with the specified rate according to the *response_rate* parameter of the initial websocket request. While in motion, the desired direction and velocity can be changed by sending a new request to the same websocket. The motion and sending of the replies will stop when: * a [stopJogging](stopJogging) request was received, processed, and the movement stopped The motion group state will be published in the original command stream until the motion group has stopped
|
|
5696
|
+
* Move TCP along/around a specified direction vector with a specified velocity via a websocket. The purpose of a direction jogging motion is to move a device in exactly one direction with a specified maximum velocity. The sign of the velocity determines the direction of the movement: Positive [+] or Negative [-]. The velocity is given in [mm/s]. In contrast to a planned motion, a jogging motion can be changed dynamically while the motion group is in motion. Only one single client at a time can jog a particular motion group. If another client tries to jog the same motion group at the same time, the second call will fail. The movement of the motion group will start as soon as: * the motion group is not in motion * the websocket connection is established * the first request has been sent As long as the jogging motion is ongoing, responses will be sent continuously and contain the current state of the motion group. The responses will be sent with the specified rate according to the *response_rate* parameter of the initial websocket request. While in motion, the desired direction and velocity can be changed by sending a new request to the same websocket. The motion and sending of the replies will stop when: * a [stopJogging](#/operations/stopJogging) request was received, processed, and the movement stopped The motion group state will be published in the original command stream until the motion group has stopped * the client cancels the stream (not recommended, because final stopping position will not be returned from the stream) When a physical limit (e.g. workspace boundary) is reached, the motion group will stop moving in the desired direction. The stream, howewer, will continue to send the state until the client cancels the stream or sends the [stopJogging](#/operations/stopJogging) request. Singularities are avoided during a jogging motion. This avoidance can result in deviations from the specified direction. The amount of deviation depends on the robot type and current velocity. These mechanisms can lead to a small deviation from the specified direction. The size of deviation is depending on robot type and current velocity. **Usage example:** 1. Open a websocket via Python and start the jogging motion: ```bash > python -m websockets \"ws://<IP of Wandelbots NOVA API>/api/v1/cells/<your cell id>/motion-groups/move-tcp\" ``` 2. Send the following message to the server to move current TCP two parts up in the z direction and one part in the negative y direction with 0.2 mm/s along the specified direction vector: ```json { \"motion_group\": \"<your motion group id>\", \"position_direction\": { \"y\": -0.5, \"z\": 1 }, \"rotation_direction\": {}, \"position_velocity\": 0.2, \"response_rate\": 500 } ``` The NOVA API clients support jogging motions without the need to manually open a websocket. > **NOTE** > > If the jogging movement is stopped immediately, ensure that > > - A websocket connection is established. Websockets can be kept open until the robot\'s movement is done as opposed to a simple HTTP GET request. > > - The motion group is not in motion by another jogging movement or a planned movement. > **NOTE** > > If the robot does not move, ensure that > > - The joint velocity values are not zero, > > - The motion group is not in a state where it cannot move further (e.g. joint limit reached). > **NOTE** > > If the specified velocities are higher than the maximum allowed by the robot controller, the motion group will move with the maximum allowed velocities.
|
|
5802
5697
|
* @summary Stream Cartesian
|
|
5803
5698
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5804
5699
|
* @param {DirectionJoggingRequest} directionJoggingRequest
|
|
@@ -5820,7 +5715,7 @@ var MotionGroupJoggingApi = class extends BaseAPI {
|
|
|
5820
5715
|
return MotionGroupJoggingApiFp(this.configuration).getJoggingCapabilities(cell, motionGroup, options).then((request) => request(this.axios, this.basePath));
|
|
5821
5716
|
}
|
|
5822
5717
|
/**
|
|
5823
|
-
* Move one or more joints of a motion group with specified velocities via a websocket. The purpose of a joint jogging motion is to maneuver a motion group in one or more joints with a specified velocity for each joint. The sign of the velocity determines the direction of the joint movement. The velocity is given in [rad/s]. In contrast to a planned motion, a jogging motion can be changed dynamically while the motion group is in motion. Only one single client at a time can jog a particular motion group. If another client tries to jog the same motion group at the same time, the second call will fail. The movement of the motion group will start as soon as: * the motion group is not in motion * the websocket connection is established * the first request has been sent As long as the jogging motion is ongoing, responses will be sent continuously and contain the current state of the motion group. The responses will be sent with the specified rate according to the *response_rate* parameter of the initial websocket request. While in motion, the desired joint velocity can be changed by sending a new request to the same websocket. The motion and sending of the replies will stop when: * a [stopJogging](stopJogging) request was received, processed, and the movement stopped Motion group state will be published in the original command stream until the motion group has fully stopped
|
|
5718
|
+
* Move one or more joints of a motion group with specified velocities via a websocket. The purpose of a joint jogging motion is to maneuver a motion group in one or more joints with a specified velocity for each joint. The sign of the velocity determines the direction of the joint movement. The velocity is given in [rad/s]. In contrast to a planned motion, a jogging motion can be changed dynamically while the motion group is in motion. Only one single client at a time can jog a particular motion group. If another client tries to jog the same motion group at the same time, the second call will fail. The movement of the motion group will start as soon as: * the motion group is not in motion * the websocket connection is established * the first request has been sent As long as the jogging motion is ongoing, responses will be sent continuously and contain the current state of the motion group. The responses will be sent with the specified rate according to the *response_rate* parameter of the initial websocket request. While in motion, the desired joint velocity can be changed by sending a new request to the same websocket. The motion and sending of the replies will stop when: * a [stopJogging](#/operations/stopJogging) request was received, processed, and the movement stopped Motion group state will be published in the original command stream until the motion group has fully stopped * the client cancels the stream (not recommended, because final stopping position will not be returned from the stream) When a physical limit (e.g. joint limit) is reached, the motion group will stop moving in the desired direction. The stream, howewer, will continue to send the state until the client cancels the stream or sends the [stopJogging](#/operations/stopJogging) request. **Usage example:** 1. Open a websocket via Python and start the jogging motion: ```bash > python -m websockets \"ws://<IP of Wandelbots NOVA API>/api/v1/cells/<your cell id>/motion-groups/move-joint\" ``` 2. Send the following message to move with a velocity of 0.1 rad/s (negative) for joint 5 and 0.2 rad/s for joint 6: ```json { \"motion_group\": \"<your motion group id>\", \"joint_velocities\": [0, 0, 0, 0, -0.1, 0.2], \"response_rate\": 500 } ``` The provided NOVA API clients also natively support jogging motions, without the need to manually open a websocket. > **NOTE** > > If the jogging movement is stopped immediately, ensure that > > - A websocket connection is established. Websockets can be kept open until the robot\'s movement is done as opposed to a simple HTTP GET request. > > - The motion group is not in motion by another jogging movement or a planned movement. > **NOTE** > > If the robot does not move, ensure that > > - The joint velocity values are not zero, > > - The motion group is not in a state where it cannot move further (e.g. joint limit reached). > **NOTE** > > If the specified velocities are higher than the maximum allowed by the robot controller, the motion group will move with the maximum allowed velocities.
|
|
5824
5719
|
* @summary Stream Joints
|
|
5825
5720
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5826
5721
|
* @param {JointJoggingRequest} jointJoggingRequest
|
|
@@ -5862,7 +5757,6 @@ const MotionGroupKinematicApiAxiosParamCreator = function(configuration) {
|
|
|
5862
5757
|
};
|
|
5863
5758
|
const localVarHeaderParameter = {};
|
|
5864
5759
|
const localVarQueryParameter = {};
|
|
5865
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
5866
5760
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
5867
5761
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
5868
5762
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -5893,7 +5787,6 @@ const MotionGroupKinematicApiAxiosParamCreator = function(configuration) {
|
|
|
5893
5787
|
};
|
|
5894
5788
|
const localVarHeaderParameter = {};
|
|
5895
5789
|
const localVarQueryParameter = {};
|
|
5896
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
5897
5790
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
5898
5791
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
5899
5792
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -5924,7 +5817,6 @@ const MotionGroupKinematicApiAxiosParamCreator = function(configuration) {
|
|
|
5924
5817
|
};
|
|
5925
5818
|
const localVarHeaderParameter = {};
|
|
5926
5819
|
const localVarQueryParameter = {};
|
|
5927
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
5928
5820
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
5929
5821
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
5930
5822
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -5954,7 +5846,6 @@ const MotionGroupKinematicApiAxiosParamCreator = function(configuration) {
|
|
|
5954
5846
|
};
|
|
5955
5847
|
const localVarHeaderParameter = {};
|
|
5956
5848
|
const localVarQueryParameter = {};
|
|
5957
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
5958
5849
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
5959
5850
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5960
5851
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -6093,7 +5984,6 @@ const ProgramApiAxiosParamCreator = function(configuration) {
|
|
|
6093
5984
|
};
|
|
6094
5985
|
const localVarHeaderParameter = {};
|
|
6095
5986
|
const localVarQueryParameter = {};
|
|
6096
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
6097
5987
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
6098
5988
|
localVarHeaderParameter["Content-Type"] = "text/plain";
|
|
6099
5989
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -6123,7 +6013,6 @@ const ProgramApiAxiosParamCreator = function(configuration) {
|
|
|
6123
6013
|
};
|
|
6124
6014
|
const localVarHeaderParameter = {};
|
|
6125
6015
|
const localVarQueryParameter = {};
|
|
6126
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
6127
6016
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
6128
6017
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
6129
6018
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -6153,7 +6042,6 @@ const ProgramApiAxiosParamCreator = function(configuration) {
|
|
|
6153
6042
|
};
|
|
6154
6043
|
const localVarHeaderParameter = {};
|
|
6155
6044
|
const localVarQueryParameter = {};
|
|
6156
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
6157
6045
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
6158
6046
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6159
6047
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -6180,7 +6068,6 @@ const ProgramApiAxiosParamCreator = function(configuration) {
|
|
|
6180
6068
|
};
|
|
6181
6069
|
const localVarHeaderParameter = {};
|
|
6182
6070
|
const localVarQueryParameter = {};
|
|
6183
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
6184
6071
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
6185
6072
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6186
6073
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -6208,7 +6095,6 @@ const ProgramApiAxiosParamCreator = function(configuration) {
|
|
|
6208
6095
|
};
|
|
6209
6096
|
const localVarHeaderParameter = {};
|
|
6210
6097
|
const localVarQueryParameter = {};
|
|
6211
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
6212
6098
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
6213
6099
|
localVarHeaderParameter["Content-Type"] = "text/plain";
|
|
6214
6100
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -6238,7 +6124,6 @@ const ProgramApiAxiosParamCreator = function(configuration) {
|
|
|
6238
6124
|
};
|
|
6239
6125
|
const localVarHeaderParameter = {};
|
|
6240
6126
|
const localVarQueryParameter = {};
|
|
6241
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
6242
6127
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
6243
6128
|
if (identifier !== void 0) localVarQueryParameter["identifier"] = identifier;
|
|
6244
6129
|
localVarHeaderParameter["Content-Type"] = "text/plain";
|
|
@@ -6268,7 +6153,6 @@ const ProgramApiAxiosParamCreator = function(configuration) {
|
|
|
6268
6153
|
};
|
|
6269
6154
|
const localVarHeaderParameter = {};
|
|
6270
6155
|
const localVarQueryParameter = {};
|
|
6271
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
6272
6156
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
6273
6157
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6274
6158
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -6296,7 +6180,6 @@ const ProgramApiAxiosParamCreator = function(configuration) {
|
|
|
6296
6180
|
};
|
|
6297
6181
|
const localVarHeaderParameter = {};
|
|
6298
6182
|
const localVarQueryParameter = {};
|
|
6299
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
6300
6183
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
6301
6184
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6302
6185
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -6511,7 +6394,6 @@ const ProgramOperatorApiAxiosParamCreator = function(configuration) {
|
|
|
6511
6394
|
};
|
|
6512
6395
|
const localVarHeaderParameter = {};
|
|
6513
6396
|
const localVarQueryParameter = {};
|
|
6514
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
6515
6397
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
6516
6398
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
6517
6399
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -6541,7 +6423,6 @@ const ProgramOperatorApiAxiosParamCreator = function(configuration) {
|
|
|
6541
6423
|
};
|
|
6542
6424
|
const localVarHeaderParameter = {};
|
|
6543
6425
|
const localVarQueryParameter = {};
|
|
6544
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
6545
6426
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
6546
6427
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
6547
6428
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -6571,7 +6452,6 @@ const ProgramOperatorApiAxiosParamCreator = function(configuration) {
|
|
|
6571
6452
|
};
|
|
6572
6453
|
const localVarHeaderParameter = {};
|
|
6573
6454
|
const localVarQueryParameter = {};
|
|
6574
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
6575
6455
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
6576
6456
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6577
6457
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -6598,7 +6478,6 @@ const ProgramOperatorApiAxiosParamCreator = function(configuration) {
|
|
|
6598
6478
|
};
|
|
6599
6479
|
const localVarHeaderParameter = {};
|
|
6600
6480
|
const localVarQueryParameter = {};
|
|
6601
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
6602
6481
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
6603
6482
|
if (state !== void 0) localVarQueryParameter["state"] = state;
|
|
6604
6483
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -6626,7 +6505,6 @@ const ProgramOperatorApiAxiosParamCreator = function(configuration) {
|
|
|
6626
6505
|
};
|
|
6627
6506
|
const localVarHeaderParameter = {};
|
|
6628
6507
|
const localVarQueryParameter = {};
|
|
6629
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
6630
6508
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
6631
6509
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6632
6510
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -6654,7 +6532,6 @@ const ProgramOperatorApiAxiosParamCreator = function(configuration) {
|
|
|
6654
6532
|
};
|
|
6655
6533
|
const localVarHeaderParameter = {};
|
|
6656
6534
|
const localVarQueryParameter = {};
|
|
6657
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
6658
6535
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
6659
6536
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6660
6537
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -6682,7 +6559,6 @@ const ProgramOperatorApiAxiosParamCreator = function(configuration) {
|
|
|
6682
6559
|
};
|
|
6683
6560
|
const localVarHeaderParameter = {};
|
|
6684
6561
|
const localVarQueryParameter = {};
|
|
6685
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
6686
6562
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
6687
6563
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6688
6564
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -6711,7 +6587,6 @@ const ProgramOperatorApiAxiosParamCreator = function(configuration) {
|
|
|
6711
6587
|
};
|
|
6712
6588
|
const localVarHeaderParameter = {};
|
|
6713
6589
|
const localVarQueryParameter = {};
|
|
6714
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
6715
6590
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
6716
6591
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
6717
6592
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -6928,7 +6803,6 @@ const ProgramValuesApiAxiosParamCreator = function(configuration) {
|
|
|
6928
6803
|
};
|
|
6929
6804
|
const localVarHeaderParameter = {};
|
|
6930
6805
|
const localVarQueryParameter = {};
|
|
6931
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
6932
6806
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
6933
6807
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6934
6808
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -6956,7 +6830,6 @@ const ProgramValuesApiAxiosParamCreator = function(configuration) {
|
|
|
6956
6830
|
};
|
|
6957
6831
|
const localVarHeaderParameter = {};
|
|
6958
6832
|
const localVarQueryParameter = {};
|
|
6959
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
6960
6833
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
6961
6834
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
6962
6835
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -6986,7 +6859,6 @@ const ProgramValuesApiAxiosParamCreator = function(configuration) {
|
|
|
6986
6859
|
};
|
|
6987
6860
|
const localVarHeaderParameter = {};
|
|
6988
6861
|
const localVarQueryParameter = {};
|
|
6989
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
6990
6862
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
6991
6863
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6992
6864
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -7014,7 +6886,6 @@ const ProgramValuesApiAxiosParamCreator = function(configuration) {
|
|
|
7014
6886
|
};
|
|
7015
6887
|
const localVarHeaderParameter = {};
|
|
7016
6888
|
const localVarQueryParameter = {};
|
|
7017
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
7018
6889
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
7019
6890
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
7020
6891
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -7041,7 +6912,6 @@ const ProgramValuesApiAxiosParamCreator = function(configuration) {
|
|
|
7041
6912
|
};
|
|
7042
6913
|
const localVarHeaderParameter = {};
|
|
7043
6914
|
const localVarQueryParameter = {};
|
|
7044
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
7045
6915
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
7046
6916
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
7047
6917
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -7070,7 +6940,6 @@ const ProgramValuesApiAxiosParamCreator = function(configuration) {
|
|
|
7070
6940
|
};
|
|
7071
6941
|
const localVarHeaderParameter = {};
|
|
7072
6942
|
const localVarQueryParameter = {};
|
|
7073
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
7074
6943
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
7075
6944
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
7076
6945
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -7174,7 +7043,7 @@ var ProgramValuesApi = class extends BaseAPI {
|
|
|
7174
7043
|
return ProgramValuesApiFp(this.configuration).clearProgramsValues(cell, options).then((request) => request(this.axios, this.basePath));
|
|
7175
7044
|
}
|
|
7176
7045
|
/**
|
|
7177
|
-
* Deprecated endpoint. Add or overwrite one or more values in the database. PREREQUISITE: The database has been added as a device. Add the database with [createDevice](createDevice). The database itself is a key-value store. For reference of possible data types see: * [Documentation for elementary data types](/docs/docs/wandelscript/data-types/#elementary-types)
|
|
7046
|
+
* Deprecated endpoint. Add or overwrite one or more values in the database. PREREQUISITE: The database has been added as a device. Add the database with [createDevice](#/operations/createDevice). The database itself is a key-value store. For reference of possible data types see: * [Documentation for elementary data types](/docs/docs/wandelscript/data-types/#elementary-types)
|
|
7178
7047
|
* @summary Add Value(s)
|
|
7179
7048
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7180
7049
|
* @param {{ [key: string]: CollectionValue; }} requestBody
|
|
@@ -7198,7 +7067,7 @@ var ProgramValuesApi = class extends BaseAPI {
|
|
|
7198
7067
|
return ProgramValuesApiFp(this.configuration).deleteProgramValue(cell, key, options).then((request) => request(this.axios, this.basePath));
|
|
7199
7068
|
}
|
|
7200
7069
|
/**
|
|
7201
|
-
* Deprecated endpoint. Return a value stored in the database. PREREQUISITE: The database has been added as a device. Add the database with [createDevice](createDevice). The database itself is a key-value store. For reference of possible data types see: * [Documentation for elementary data types](/docs/docs/wandelscript/data-types/#elementary-types)
|
|
7070
|
+
* Deprecated endpoint. Return a value stored in the database. PREREQUISITE: The database has been added as a device. Add the database with [createDevice](#/operations/createDevice). The database itself is a key-value store. For reference of possible data types see: * [Documentation for elementary data types](/docs/docs/wandelscript/data-types/#elementary-types)
|
|
7202
7071
|
* @summary Get Value
|
|
7203
7072
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7204
7073
|
* @param {string} key
|
|
@@ -7210,7 +7079,7 @@ var ProgramValuesApi = class extends BaseAPI {
|
|
|
7210
7079
|
return ProgramValuesApiFp(this.configuration).getProgramValue(cell, key, options).then((request) => request(this.axios, this.basePath));
|
|
7211
7080
|
}
|
|
7212
7081
|
/**
|
|
7213
|
-
* Deprecated endpoint. Gets all values that are stored in the database. PREREQUISITE: The database has been added as a device. Add the database with [createDevice](createDevice). The database itself is a key-value storage. For reference of possible data types see: * [Documentation for elementary data types](/docs/docs/wandelscript/data-types/#elementary-types)
|
|
7082
|
+
* Deprecated endpoint. Gets all values that are stored in the database. PREREQUISITE: The database has been added as a device. Add the database with [createDevice](#/operations/createDevice). The database itself is a key-value storage. For reference of possible data types see: * [Documentation for elementary data types](/docs/docs/wandelscript/data-types/#elementary-types)
|
|
7214
7083
|
* @summary Get Values
|
|
7215
7084
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7216
7085
|
* @param {*} [options] Override http request option.
|
|
@@ -7221,7 +7090,7 @@ var ProgramValuesApi = class extends BaseAPI {
|
|
|
7221
7090
|
return ProgramValuesApiFp(this.configuration).listProgramsValues(cell, options).then((request) => request(this.axios, this.basePath));
|
|
7222
7091
|
}
|
|
7223
7092
|
/**
|
|
7224
|
-
* Deprecated endpoint. Creates or updates a value in the database. PREREQUISITE: The database has been added as a device. Add the database with [createDevice](createDevice). The database itself is a key-value store. For reference of possible data types see: * [Documentation for elementary data types](/docs/docs/wandelscript/data-types/#elementary-types)
|
|
7093
|
+
* Deprecated endpoint. Creates or updates a value in the database. PREREQUISITE: The database has been added as a device. Add the database with [createDevice](#/operations/createDevice). The database itself is a key-value store. For reference of possible data types see: * [Documentation for elementary data types](/docs/docs/wandelscript/data-types/#elementary-types)
|
|
7225
7094
|
* @summary Create or Update Value
|
|
7226
7095
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7227
7096
|
* @param {string} key
|
|
@@ -7253,7 +7122,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
|
|
|
7253
7122
|
};
|
|
7254
7123
|
const localVarHeaderParameter = {};
|
|
7255
7124
|
const localVarQueryParameter = {};
|
|
7256
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
7257
7125
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
7258
7126
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
7259
7127
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -7281,7 +7149,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
|
|
|
7281
7149
|
};
|
|
7282
7150
|
const localVarHeaderParameter = {};
|
|
7283
7151
|
const localVarQueryParameter = {};
|
|
7284
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
7285
7152
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
7286
7153
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
7287
7154
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -7309,7 +7176,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
|
|
|
7309
7176
|
};
|
|
7310
7177
|
const localVarHeaderParameter = {};
|
|
7311
7178
|
const localVarQueryParameter = {};
|
|
7312
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
7313
7179
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
7314
7180
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
7315
7181
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -7337,7 +7203,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
|
|
|
7337
7203
|
};
|
|
7338
7204
|
const localVarHeaderParameter = {};
|
|
7339
7205
|
const localVarQueryParameter = {};
|
|
7340
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
7341
7206
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
7342
7207
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
7343
7208
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -7365,7 +7230,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
|
|
|
7365
7230
|
};
|
|
7366
7231
|
const localVarHeaderParameter = {};
|
|
7367
7232
|
const localVarQueryParameter = {};
|
|
7368
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
7369
7233
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
7370
7234
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
7371
7235
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -7393,7 +7257,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
|
|
|
7393
7257
|
};
|
|
7394
7258
|
const localVarHeaderParameter = {};
|
|
7395
7259
|
const localVarQueryParameter = {};
|
|
7396
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
7397
7260
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
7398
7261
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
7399
7262
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -7421,7 +7284,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
|
|
|
7421
7284
|
};
|
|
7422
7285
|
const localVarHeaderParameter = {};
|
|
7423
7286
|
const localVarQueryParameter = {};
|
|
7424
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
7425
7287
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
7426
7288
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
7427
7289
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -7448,7 +7310,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
|
|
|
7448
7310
|
};
|
|
7449
7311
|
const localVarHeaderParameter = {};
|
|
7450
7312
|
const localVarQueryParameter = {};
|
|
7451
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
7452
7313
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
7453
7314
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
7454
7315
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -7475,7 +7336,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
|
|
|
7475
7336
|
};
|
|
7476
7337
|
const localVarHeaderParameter = {};
|
|
7477
7338
|
const localVarQueryParameter = {};
|
|
7478
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
7479
7339
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
7480
7340
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
7481
7341
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -7502,7 +7362,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
|
|
|
7502
7362
|
};
|
|
7503
7363
|
const localVarHeaderParameter = {};
|
|
7504
7364
|
const localVarQueryParameter = {};
|
|
7505
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
7506
7365
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
7507
7366
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
7508
7367
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -7531,7 +7390,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
|
|
|
7531
7390
|
};
|
|
7532
7391
|
const localVarHeaderParameter = {};
|
|
7533
7392
|
const localVarQueryParameter = {};
|
|
7534
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
7535
7393
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
7536
7394
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
7537
7395
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -7562,7 +7420,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
|
|
|
7562
7420
|
};
|
|
7563
7421
|
const localVarHeaderParameter = {};
|
|
7564
7422
|
const localVarQueryParameter = {};
|
|
7565
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
7566
7423
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
7567
7424
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
7568
7425
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -7593,7 +7450,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
|
|
|
7593
7450
|
};
|
|
7594
7451
|
const localVarHeaderParameter = {};
|
|
7595
7452
|
const localVarQueryParameter = {};
|
|
7596
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
7597
7453
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
7598
7454
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
7599
7455
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -7782,10 +7638,10 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
7782
7638
|
return StoreCollisionComponentsApiFp(this.configuration).deleteStoredCollisionTool(cell, tool, options).then((request) => request(this.axios, this.basePath));
|
|
7783
7639
|
}
|
|
7784
7640
|
/**
|
|
7785
|
-
* Deprecated endpoint. Use [getCollisionModel](https://portal.wandelbots.io/docs/api/v2/ui/#/operations/getMotionGroupCollisionModel) instead. Returns the default collision link chain for a given motion group model. See [getPlanningMotionGroupModels](getPlanningMotionGroupModels) for supported motion group models. The default link chain is derived from 3D models and optimized for collision detection within NOVA. The default link chain includes link shapes only. It does not include any attached components like wire feeders or sensors. Use the `stored_link_chain` or `link_chain` field in [storeCollisionScene](storeCollisionScene) to attach additional shapes to the link reference frames. Additional shapes may overlap each other per link and may also overlap the respective link\'s default shape.
|
|
7641
|
+
* Deprecated endpoint. Use [getCollisionModel](https://portal.wandelbots.io/docs/api/v2/ui/#/operations/getMotionGroupCollisionModel) instead. Returns the default collision link chain for a given motion group model. See [getPlanningMotionGroupModels](#/operations/getPlanningMotionGroupModels) for supported motion group models. The default link chain is derived from 3D models and optimized for collision detection within NOVA. The default link chain includes link shapes only. It does not include any attached components like wire feeders or sensors. Use the `stored_link_chain` or `link_chain` field in [storeCollisionScene](#/operations/storeCollisionScene) to attach additional shapes to the link reference frames. Additional shapes may overlap each other per link and may also overlap the respective link\'s default shape.
|
|
7786
7642
|
* @summary Get Default Link Chain
|
|
7787
7643
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7788
|
-
* @param {GetDefaultLinkChainMotionGroupModelEnum} motionGroupModel Unique identifier for the type of a motion group (robot model). Get the model name for a configured motion group from [getOptimizerConfiguration](getOptimizerConfiguration).
|
|
7644
|
+
* @param {GetDefaultLinkChainMotionGroupModelEnum} motionGroupModel Unique identifier for the type of a motion group (robot model). Get the model name for a configured motion group from [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
|
|
7789
7645
|
* @param {*} [options] Override http request option.
|
|
7790
7646
|
* @deprecated
|
|
7791
7647
|
* @throws {RequiredError}
|
|
@@ -8083,7 +7939,6 @@ const StoreCollisionScenesApiAxiosParamCreator = function(configuration) {
|
|
|
8083
7939
|
};
|
|
8084
7940
|
const localVarHeaderParameter = {};
|
|
8085
7941
|
const localVarQueryParameter = {};
|
|
8086
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
8087
7942
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
8088
7943
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
8089
7944
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -8111,7 +7966,6 @@ const StoreCollisionScenesApiAxiosParamCreator = function(configuration) {
|
|
|
8111
7966
|
};
|
|
8112
7967
|
const localVarHeaderParameter = {};
|
|
8113
7968
|
const localVarQueryParameter = {};
|
|
8114
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
8115
7969
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
8116
7970
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
8117
7971
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -8138,7 +7992,6 @@ const StoreCollisionScenesApiAxiosParamCreator = function(configuration) {
|
|
|
8138
7992
|
};
|
|
8139
7993
|
const localVarHeaderParameter = {};
|
|
8140
7994
|
const localVarQueryParameter = {};
|
|
8141
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
8142
7995
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
8143
7996
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
8144
7997
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -8167,7 +8020,6 @@ const StoreCollisionScenesApiAxiosParamCreator = function(configuration) {
|
|
|
8167
8020
|
};
|
|
8168
8021
|
const localVarHeaderParameter = {};
|
|
8169
8022
|
const localVarQueryParameter = {};
|
|
8170
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
8171
8023
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
8172
8024
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
8173
8025
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -8304,7 +8156,6 @@ const StoreObjectApiAxiosParamCreator = function(configuration) {
|
|
|
8304
8156
|
};
|
|
8305
8157
|
const localVarHeaderParameter = {};
|
|
8306
8158
|
const localVarQueryParameter = {};
|
|
8307
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
8308
8159
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
8309
8160
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
8310
8161
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -8332,7 +8183,6 @@ const StoreObjectApiAxiosParamCreator = function(configuration) {
|
|
|
8332
8183
|
};
|
|
8333
8184
|
const localVarHeaderParameter = {};
|
|
8334
8185
|
const localVarQueryParameter = {};
|
|
8335
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
8336
8186
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
8337
8187
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
8338
8188
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -8360,7 +8210,6 @@ const StoreObjectApiAxiosParamCreator = function(configuration) {
|
|
|
8360
8210
|
};
|
|
8361
8211
|
const localVarHeaderParameter = {};
|
|
8362
8212
|
const localVarQueryParameter = {};
|
|
8363
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
8364
8213
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
8365
8214
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
8366
8215
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -8388,7 +8237,6 @@ const StoreObjectApiAxiosParamCreator = function(configuration) {
|
|
|
8388
8237
|
};
|
|
8389
8238
|
const localVarHeaderParameter = {};
|
|
8390
8239
|
const localVarQueryParameter = {};
|
|
8391
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
8392
8240
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
8393
8241
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
8394
8242
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -8415,7 +8263,6 @@ const StoreObjectApiAxiosParamCreator = function(configuration) {
|
|
|
8415
8263
|
};
|
|
8416
8264
|
const localVarHeaderParameter = {};
|
|
8417
8265
|
const localVarQueryParameter = {};
|
|
8418
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
8419
8266
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
8420
8267
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
8421
8268
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -8444,7 +8291,6 @@ const StoreObjectApiAxiosParamCreator = function(configuration) {
|
|
|
8444
8291
|
const localVarHeaderParameter = {};
|
|
8445
8292
|
const localVarQueryParameter = {};
|
|
8446
8293
|
const localVarFormParams = new (configuration && configuration.formDataCtor || FormData)();
|
|
8447
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
8448
8294
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
8449
8295
|
if (anyValue !== void 0) localVarFormParams.append("AnyValue", new Blob([JSON.stringify(anyValue)], { type: "application/json" }));
|
|
8450
8296
|
localVarHeaderParameter["Content-Type"] = "multipart/form-data";
|
|
@@ -8592,7 +8438,7 @@ var StoreObjectApi = class extends BaseAPI {
|
|
|
8592
8438
|
return StoreObjectApiFp(this.configuration).listAllObjectKeys(cell, options).then((request) => request(this.axios, this.basePath));
|
|
8593
8439
|
}
|
|
8594
8440
|
/**
|
|
8595
|
-
* Store any data as an object. Using a key which already contains an object will override the previously stored object. Use [getObjectMetadata](getObjectMetadata) to verify that the key does not contain objects. Optional: Specify metadata as a dictionary with names and values.
|
|
8441
|
+
* Store any data as an object. Using a key which already contains an object will override the previously stored object. Use [getObjectMetadata](#/operations/getObjectMetadata) to verify that the key does not contain objects. Optional: Specify metadata as a dictionary with names and values.
|
|
8596
8442
|
* @summary Store Object
|
|
8597
8443
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8598
8444
|
* @param {string} key
|
|
@@ -8622,7 +8468,6 @@ const SystemApiAxiosParamCreator = function(configuration) {
|
|
|
8622
8468
|
};
|
|
8623
8469
|
const localVarHeaderParameter = {};
|
|
8624
8470
|
const localVarQueryParameter = {};
|
|
8625
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
8626
8471
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
8627
8472
|
if (channel !== void 0) localVarQueryParameter["channel"] = channel;
|
|
8628
8473
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -8648,7 +8493,6 @@ const SystemApiAxiosParamCreator = function(configuration) {
|
|
|
8648
8493
|
};
|
|
8649
8494
|
const localVarHeaderParameter = {};
|
|
8650
8495
|
const localVarQueryParameter = {};
|
|
8651
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
8652
8496
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
8653
8497
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
8654
8498
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -8673,7 +8517,6 @@ const SystemApiAxiosParamCreator = function(configuration) {
|
|
|
8673
8517
|
};
|
|
8674
8518
|
const localVarHeaderParameter = {};
|
|
8675
8519
|
const localVarQueryParameter = {};
|
|
8676
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
8677
8520
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
8678
8521
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
8679
8522
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -8698,7 +8541,6 @@ const SystemApiAxiosParamCreator = function(configuration) {
|
|
|
8698
8541
|
};
|
|
8699
8542
|
const localVarHeaderParameter = {};
|
|
8700
8543
|
const localVarQueryParameter = {};
|
|
8701
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
8702
8544
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
8703
8545
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
8704
8546
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -8724,7 +8566,6 @@ const SystemApiAxiosParamCreator = function(configuration) {
|
|
|
8724
8566
|
};
|
|
8725
8567
|
const localVarHeaderParameter = {};
|
|
8726
8568
|
const localVarQueryParameter = {};
|
|
8727
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
8728
8569
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
8729
8570
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
8730
8571
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -8870,7 +8711,6 @@ const VersionApiAxiosParamCreator = function(configuration) {
|
|
|
8870
8711
|
};
|
|
8871
8712
|
const localVarHeaderParameter = {};
|
|
8872
8713
|
const localVarQueryParameter = {};
|
|
8873
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
8874
8714
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
8875
8715
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
8876
8716
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -8940,7 +8780,6 @@ const VirtualRobotApiAxiosParamCreator = function(configuration) {
|
|
|
8940
8780
|
};
|
|
8941
8781
|
const localVarHeaderParameter = {};
|
|
8942
8782
|
const localVarQueryParameter = {};
|
|
8943
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
8944
8783
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
8945
8784
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
8946
8785
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -8968,7 +8807,6 @@ const VirtualRobotApiAxiosParamCreator = function(configuration) {
|
|
|
8968
8807
|
};
|
|
8969
8808
|
const localVarHeaderParameter = {};
|
|
8970
8809
|
const localVarQueryParameter = {};
|
|
8971
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
8972
8810
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
8973
8811
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
8974
8812
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -8997,7 +8835,6 @@ const VirtualRobotApiAxiosParamCreator = function(configuration) {
|
|
|
8997
8835
|
};
|
|
8998
8836
|
const localVarHeaderParameter = {};
|
|
8999
8837
|
const localVarQueryParameter = {};
|
|
9000
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
9001
8838
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
9002
8839
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
9003
8840
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -9025,7 +8862,6 @@ const VirtualRobotApiAxiosParamCreator = function(configuration) {
|
|
|
9025
8862
|
};
|
|
9026
8863
|
const localVarHeaderParameter = {};
|
|
9027
8864
|
const localVarQueryParameter = {};
|
|
9028
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
9029
8865
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
9030
8866
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
9031
8867
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -9055,7 +8891,6 @@ const VirtualRobotApiAxiosParamCreator = function(configuration) {
|
|
|
9055
8891
|
};
|
|
9056
8892
|
const localVarHeaderParameter = {};
|
|
9057
8893
|
const localVarQueryParameter = {};
|
|
9058
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
9059
8894
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
9060
8895
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
9061
8896
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -9086,7 +8921,6 @@ const VirtualRobotApiAxiosParamCreator = function(configuration) {
|
|
|
9086
8921
|
};
|
|
9087
8922
|
const localVarHeaderParameter = {};
|
|
9088
8923
|
const localVarQueryParameter = {};
|
|
9089
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
9090
8924
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
9091
8925
|
if (bool !== void 0) localVarQueryParameter["bool"] = bool;
|
|
9092
8926
|
if (integer !== void 0) localVarQueryParameter["integer"] = integer;
|
|
@@ -9274,7 +9108,6 @@ const VirtualRobotBehaviorApiAxiosParamCreator = function(configuration) {
|
|
|
9274
9108
|
};
|
|
9275
9109
|
const localVarHeaderParameter = {};
|
|
9276
9110
|
const localVarQueryParameter = {};
|
|
9277
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
9278
9111
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
9279
9112
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
9280
9113
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -9305,7 +9138,6 @@ const VirtualRobotBehaviorApiAxiosParamCreator = function(configuration) {
|
|
|
9305
9138
|
};
|
|
9306
9139
|
const localVarHeaderParameter = {};
|
|
9307
9140
|
const localVarQueryParameter = {};
|
|
9308
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
9309
9141
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
9310
9142
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
9311
9143
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -9334,7 +9166,6 @@ const VirtualRobotBehaviorApiAxiosParamCreator = function(configuration) {
|
|
|
9334
9166
|
};
|
|
9335
9167
|
const localVarHeaderParameter = {};
|
|
9336
9168
|
const localVarQueryParameter = {};
|
|
9337
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
9338
9169
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
9339
9170
|
if (behavior !== void 0) localVarQueryParameter["behavior"] = behavior;
|
|
9340
9171
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -9411,7 +9242,7 @@ var VirtualRobotBehaviorApi = class extends BaseAPI {
|
|
|
9411
9242
|
return VirtualRobotBehaviorApiFp(this.configuration).externalJointsStream(cell, controller, externalJointStreamDatapoint, options).then((request) => request(this.axios, this.basePath));
|
|
9412
9243
|
}
|
|
9413
9244
|
/**
|
|
9414
|
-
* Get the current robot motion group behavior - please see the setter [setMotionGroupBehavior](setMotionGroupBehavior) and the enum for details.
|
|
9245
|
+
* Get the current robot motion group behavior - please see the setter [setMotionGroupBehavior](#/operations/setMotionGroupBehavior) and the enum for details.
|
|
9415
9246
|
* @summary Behavior
|
|
9416
9247
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9417
9248
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -9455,7 +9286,6 @@ const VirtualRobotModeApiAxiosParamCreator = function(configuration) {
|
|
|
9455
9286
|
};
|
|
9456
9287
|
const localVarHeaderParameter = {};
|
|
9457
9288
|
const localVarQueryParameter = {};
|
|
9458
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
9459
9289
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
9460
9290
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
9461
9291
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -9483,7 +9313,6 @@ const VirtualRobotModeApiAxiosParamCreator = function(configuration) {
|
|
|
9483
9313
|
};
|
|
9484
9314
|
const localVarHeaderParameter = {};
|
|
9485
9315
|
const localVarQueryParameter = {};
|
|
9486
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
9487
9316
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
9488
9317
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
9489
9318
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -9511,7 +9340,6 @@ const VirtualRobotModeApiAxiosParamCreator = function(configuration) {
|
|
|
9511
9340
|
};
|
|
9512
9341
|
const localVarHeaderParameter = {};
|
|
9513
9342
|
const localVarQueryParameter = {};
|
|
9514
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
9515
9343
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
9516
9344
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
9517
9345
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -9539,7 +9367,6 @@ const VirtualRobotModeApiAxiosParamCreator = function(configuration) {
|
|
|
9539
9367
|
};
|
|
9540
9368
|
const localVarHeaderParameter = {};
|
|
9541
9369
|
const localVarQueryParameter = {};
|
|
9542
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
9543
9370
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
9544
9371
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
9545
9372
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -9567,7 +9394,6 @@ const VirtualRobotModeApiAxiosParamCreator = function(configuration) {
|
|
|
9567
9394
|
};
|
|
9568
9395
|
const localVarHeaderParameter = {};
|
|
9569
9396
|
const localVarQueryParameter = {};
|
|
9570
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
9571
9397
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
9572
9398
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
9573
9399
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -9596,7 +9422,6 @@ const VirtualRobotModeApiAxiosParamCreator = function(configuration) {
|
|
|
9596
9422
|
};
|
|
9597
9423
|
const localVarHeaderParameter = {};
|
|
9598
9424
|
const localVarQueryParameter = {};
|
|
9599
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
9600
9425
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
9601
9426
|
if (mode !== void 0) localVarQueryParameter["mode"] = mode;
|
|
9602
9427
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -9699,7 +9524,7 @@ var VirtualRobotModeApi = class extends BaseAPI {
|
|
|
9699
9524
|
return VirtualRobotModeApiFp(this.configuration).getCycleTime(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
9700
9525
|
}
|
|
9701
9526
|
/**
|
|
9702
|
-
* Requests the Emergency Stop state of the virtual robot controller. Use [getCurrentMotionGroupState](getCurrentMotionGroupState) to get the Emergency Stop state regardless of the controller type. There the Emergency Stop state is visible as the `safety_state`. > **NOTE** > > The Emergency Stop state can only be changed when using virtual robot controllers.
|
|
9527
|
+
* Requests the Emergency Stop state of the virtual robot controller. Use [getCurrentMotionGroupState](#/operations/getCurrentMotionGroupState) to get the Emergency Stop state regardless of the controller type. There, the Emergency Stop state is visible as the `safety_state`. > **NOTE** > > The Emergency Stop state can only be changed when using virtual robot controllers.
|
|
9703
9528
|
* @summary Get E-Stop State
|
|
9704
9529
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9705
9530
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -9710,7 +9535,7 @@ var VirtualRobotModeApi = class extends BaseAPI {
|
|
|
9710
9535
|
return VirtualRobotModeApiFp(this.configuration).getEStop(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
9711
9536
|
}
|
|
9712
9537
|
/**
|
|
9713
|
-
* Requests the Operation Mode of the virtual robot controller. To get the Operation Mode regardless of the controller type use [getCurrentMotionGroupState](getCurrentMotionGroupState). > **NOTE** > > The Operating Mode can only
|
|
9538
|
+
* Requests the Operation Mode of the virtual robot controller. To get the Operation Mode regardless of the controller type use [getCurrentMotionGroupState](#/operations/getCurrentMotionGroupState). > **NOTE** > > The Operating Mode can only be changed via API when using virtual robot controllers.
|
|
9714
9539
|
* @summary Get Operation Mode
|
|
9715
9540
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9716
9541
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -9721,7 +9546,7 @@ var VirtualRobotModeApi = class extends BaseAPI {
|
|
|
9721
9546
|
return VirtualRobotModeApiFp(this.configuration).getOperationMode(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
9722
9547
|
}
|
|
9723
9548
|
/**
|
|
9724
|
-
* Activates the Emergency Stop on the virtual robot controller. Activating the Emergency Stop stops the execution of all motions on virtual and physical robot controllers. To return to normal operation the Emergency Stop needs to be released. Use [getCurrentMotionGroupState](getCurrentMotionGroupState) to get the Emergency Stop state regardless of the controller type. There the Emergency Stop state is visible as the `safety_state`. > **NOTE** > > The Emergency Stop state can only be changed via API when using virtual robot controllers.
|
|
9549
|
+
* Activates the Emergency Stop on the virtual robot controller. Activating the Emergency Stop stops the execution of all motions on virtual and physical robot controllers. To return to normal operation, the Emergency Stop needs to be released. Use [getCurrentMotionGroupState](#/operations/getCurrentMotionGroupState) to get the Emergency Stop state regardless of the controller type. There, the Emergency Stop state is visible as the `safety_state`. > **NOTE** > > The Emergency Stop state can only be changed via API when using virtual robot controllers.
|
|
9725
9550
|
* @summary Push E-Stop
|
|
9726
9551
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9727
9552
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -9732,7 +9557,7 @@ var VirtualRobotModeApi = class extends BaseAPI {
|
|
|
9732
9557
|
return VirtualRobotModeApiFp(this.configuration).pushEStop(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
9733
9558
|
}
|
|
9734
9559
|
/**
|
|
9735
|
-
* Releases the Emergency Stop on the virtual robot controller. Activating the Emergency Stop stops the execution of all motions on virtual and physical robot controllers. To return to normal operation the Emergency Stop needs to be released. Use [getCurrentMotionGroupState](getCurrentMotionGroupState) to get the Emergency Stop state regardless of the controller type. There the Emergency Stop state is visible as the `safety_state`. > **NOTE** > > The Emergency Stop state can only be changed via API when using virtual robot controllers.
|
|
9560
|
+
* Releases the Emergency Stop on the virtual robot controller. Activating the Emergency Stop stops the execution of all motions on virtual and physical robot controllers. To return to normal operation, the Emergency Stop needs to be released. Use [getCurrentMotionGroupState](#/operations/getCurrentMotionGroupState) to get the Emergency Stop state regardless of the controller type. There, the Emergency Stop state is visible as the `safety_state`. > **NOTE** > > The Emergency Stop state can only be changed via API when using virtual robot controllers.
|
|
9736
9561
|
* @summary Release E-Stop
|
|
9737
9562
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9738
9563
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -9743,7 +9568,7 @@ var VirtualRobotModeApi = class extends BaseAPI {
|
|
|
9743
9568
|
return VirtualRobotModeApiFp(this.configuration).releaseEStop(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
9744
9569
|
}
|
|
9745
9570
|
/**
|
|
9746
|
-
* Changes the Operation Mode of the virtual robot controller to the specified value. To get the Operation Mode regardless of the controller type use [getCurrentMotionGroupState](getCurrentMotionGroupState). > **NOTE** > > The Operating Mode can only
|
|
9571
|
+
* Changes the Operation Mode of the virtual robot controller to the specified value. To get the Operation Mode, regardless of the controller type, use [getCurrentMotionGroupState](#/operations/getCurrentMotionGroupState). > **NOTE** > > The Operating Mode can only be changed via API when using virtual robot controllers.
|
|
9747
9572
|
* @summary Set Operation Mode
|
|
9748
9573
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9749
9574
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -9779,7 +9604,6 @@ const VirtualRobotSetupApiAxiosParamCreator = function(configuration) {
|
|
|
9779
9604
|
};
|
|
9780
9605
|
const localVarHeaderParameter = {};
|
|
9781
9606
|
const localVarQueryParameter = {};
|
|
9782
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
9783
9607
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
9784
9608
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
9785
9609
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -9811,7 +9635,6 @@ const VirtualRobotSetupApiAxiosParamCreator = function(configuration) {
|
|
|
9811
9635
|
};
|
|
9812
9636
|
const localVarHeaderParameter = {};
|
|
9813
9637
|
const localVarQueryParameter = {};
|
|
9814
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
9815
9638
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
9816
9639
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
9817
9640
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -9842,7 +9665,6 @@ const VirtualRobotSetupApiAxiosParamCreator = function(configuration) {
|
|
|
9842
9665
|
};
|
|
9843
9666
|
const localVarHeaderParameter = {};
|
|
9844
9667
|
const localVarQueryParameter = {};
|
|
9845
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
9846
9668
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
9847
9669
|
if (deleteDependent !== void 0) localVarQueryParameter["delete_dependent"] = deleteDependent;
|
|
9848
9670
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -9873,7 +9695,6 @@ const VirtualRobotSetupApiAxiosParamCreator = function(configuration) {
|
|
|
9873
9695
|
};
|
|
9874
9696
|
const localVarHeaderParameter = {};
|
|
9875
9697
|
const localVarQueryParameter = {};
|
|
9876
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
9877
9698
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
9878
9699
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
9879
9700
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -9902,7 +9723,6 @@ const VirtualRobotSetupApiAxiosParamCreator = function(configuration) {
|
|
|
9902
9723
|
};
|
|
9903
9724
|
const localVarHeaderParameter = {};
|
|
9904
9725
|
const localVarQueryParameter = {};
|
|
9905
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
9906
9726
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
9907
9727
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
9908
9728
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -9930,7 +9750,6 @@ const VirtualRobotSetupApiAxiosParamCreator = function(configuration) {
|
|
|
9930
9750
|
};
|
|
9931
9751
|
const localVarHeaderParameter = {};
|
|
9932
9752
|
const localVarQueryParameter = {};
|
|
9933
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
9934
9753
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
9935
9754
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
9936
9755
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -9959,7 +9778,6 @@ const VirtualRobotSetupApiAxiosParamCreator = function(configuration) {
|
|
|
9959
9778
|
};
|
|
9960
9779
|
const localVarHeaderParameter = {};
|
|
9961
9780
|
const localVarQueryParameter = {};
|
|
9962
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
9963
9781
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
9964
9782
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
9965
9783
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -9989,7 +9807,6 @@ const VirtualRobotSetupApiAxiosParamCreator = function(configuration) {
|
|
|
9989
9807
|
};
|
|
9990
9808
|
const localVarHeaderParameter = {};
|
|
9991
9809
|
const localVarQueryParameter = {};
|
|
9992
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
9993
9810
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
9994
9811
|
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
9995
9812
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|