@wandelbots/nova-api 26.2.0-dev.4 → 26.2.0-dev.54

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/v2/index.cjs CHANGED
@@ -41,12 +41,6 @@ const DUMMY_BASE_URL = "https://example.com";
41
41
  const assertParamExists = function(functionName, paramName, paramValue) {
42
42
  if (paramValue === null || paramValue === void 0) throw new RequiredError(paramName, `Required parameter ${paramName} was null or undefined when calling ${functionName}.`);
43
43
  };
44
- const setBasicAuthToObject = function(object, configuration) {
45
- if (configuration && (configuration.username || configuration.password)) object["auth"] = {
46
- username: configuration.username,
47
- password: configuration.password
48
- };
49
- };
50
44
  const setBearerAuthToObject = async function(object, configuration) {
51
45
  if (configuration && configuration.accessToken) object["Authorization"] = "Bearer " + (typeof configuration.accessToken === "function" ? await configuration.accessToken() : await configuration.accessToken);
52
46
  };
@@ -83,7 +77,7 @@ const createRequestFunction = function(axiosArgs, globalAxios$2, BASE_PATH$1, co
83
77
  //#region v2/api.ts
84
78
  const AbbControllerKindEnum = { AbbController: "AbbController" };
85
79
  /**
86
- * ## BEHAVIOR_AUTOMATIC This is the default behavior. The motion groups of the controller take 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).
80
+ * ## BEHAVIOR_AUTOMATIC This is the default behavior. The motion groups of the controller take 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).
87
81
  */
88
82
  const Behavior = {
89
83
  BehaviorAutomatic: "BEHAVIOR_AUTOMATIC",
@@ -191,6 +185,10 @@ const JoggingPausedNearCollisionKindEnum = { PausedNearCollision: "PAUSED_NEAR_C
191
185
  const JoggingPausedNearJointLimitKindEnum = { PausedNearJointLimit: "PAUSED_NEAR_JOINT_LIMIT" };
192
186
  const JoggingPausedOnIOKindEnum = { PausedOnIo: "PAUSED_ON_IO" };
193
187
  const JoggingRunningKindEnum = { Running: "RUNNING" };
188
+ const JointTypeEnum = {
189
+ RevoluteJoint: "REVOLUTE_JOINT",
190
+ PrismaticJoint: "PRISMATIC_JOINT"
191
+ };
194
192
  const JointVelocityRequestMessageTypeEnum = { JointVelocityRequest: "JointVelocityRequest" };
195
193
  const JointVelocityResponseKindEnum = { JointVelocityReceived: "JOINT_VELOCITY_RECEIVED" };
196
194
  const KukaControllerKindEnum = { KukaController: "KukaController" };
@@ -348,14 +346,14 @@ const RRTConnectAlgorithmAlgorithmNameEnum = { RrtConnectAlgorithm: "RRTConnectA
348
346
  const RectangleShapeTypeEnum = { Rectangle: "rectangle" };
349
347
  const RectangularCapsuleShapeTypeEnum = { RectangularCapsule: "rectangular_capsule" };
350
348
  /**
351
- * The channel that defines what a new Wandelbots NOVA version is. * `next` the over all latest version * `stable` newes patch of the current version
349
+ * The channel that defines what a new Wandelbots NOVA version is. * `next` the latest version * `stable` newest patch of the current version
352
350
  */
353
351
  const ReleaseChannel = {
354
352
  Stable: "stable",
355
353
  Next: "next"
356
354
  };
357
355
  /**
358
- * Defines the current system mode of the robot system, including NOVA communicating with the robot controller. ### MODE_CONTROLLER_NOT_CONFIGURED No controller with the specified identifier is configured. Call [addRobotController](addRobotController) to register a controller. ### MODE_INITIALIZING Indicates that a connection to the robot controller is established or reestablished in case of a disconnect. On success, the controller is set to MODE_MONITOR. On failure, the initialization process is retried until successful or cancelled by the user. ### MODE_MONITOR Read-only mode with an active controller connection. - Receives robot state and I/O signals - Move requests are rejected - No commands are sent to the controller ### MODE_CONTROL Active control mode. **Movement is possible in this mode** The robot is cyclically commanded to hold its current position. The robot state is received in sync with the controller cycle. Motion and jogging requests are accepted and executed. Input/Output interaction is enabled. ### MODE_FREE_DRIVE Read-only mode with servo motors enabled for manual movement (Free Drive). Move requests are rejected. Not supported by all robots: Use [getSupportedModes](getSupportedModes) to check Free Drive availability.
356
+ * Defines the current system mode of the robot system, including NOVA communicating with the robot controller. ### MODE_CONTROLLER_NOT_CONFIGURED No controller with the specified identifier is configured. Call [addRobotController](#/operations/addRobotController) to register a controller. ### MODE_INITIALIZING Indicates that a connection to the robot controller is established or reestablished in case of a disconnect. On success, the controller is set to MODE_MONITOR. On failure, the initialization process is retried until successful or cancelled by the user. ### MODE_MONITOR Read-only mode with an active controller connection. - Receives robot state and I/O signals - Move requests are rejected - No commands are sent to the controller ### MODE_CONTROL Active control mode. **Movement is possible in this mode** The robot is cyclically commanded to hold its current position. The robot state is received in sync with the controller cycle. Motion and jogging requests are accepted and executed. Input/Output interaction is enabled. ### MODE_FREE_DRIVE Read-only mode with servo motors enabled for manual movement (Free Drive). Move requests are rejected. Not supported by all robots: Use [getSupportedModes](#/operations/getSupportedModes) to check Free Drive availability.
359
357
  */
360
358
  const RobotSystemMode = {
361
359
  ModeControllerNotConfigured: "MODE_CONTROLLER_NOT_CONFIGURED",
@@ -412,9 +410,14 @@ const ServiceStatusSeverity = {
412
410
  Warning: "WARNING",
413
411
  Error: "ERROR"
414
412
  };
413
+ /**
414
+ * Defines available system modes of the robot system. Short versions (no \"ROBOT_SYSTEM_\" prefix) are provided, reusing strings from [getMode](#/operations/getMode) responses.
415
+ */
415
416
  const SettableRobotSystemMode = {
416
417
  RobotSystemModeMonitor: "ROBOT_SYSTEM_MODE_MONITOR",
417
- RobotSystemModeControl: "ROBOT_SYSTEM_MODE_CONTROL"
418
+ ModeMonitor: "MODE_MONITOR",
419
+ RobotSystemModeControl: "ROBOT_SYSTEM_MODE_CONTROL",
420
+ ModeControl: "MODE_CONTROL"
418
421
  };
419
422
  const SingularityTypeEnum = {
420
423
  Wrist: "WRIST",
@@ -471,7 +474,6 @@ const ApplicationApiAxiosParamCreator = function(configuration) {
471
474
  };
472
475
  const localVarHeaderParameter = {};
473
476
  const localVarQueryParameter = {};
474
- setBasicAuthToObject(localVarRequestOptions, configuration);
475
477
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
476
478
  if (completionTimeout !== void 0) localVarQueryParameter["completion_timeout"] = completionTimeout;
477
479
  localVarHeaderParameter["Content-Type"] = "application/json";
@@ -501,7 +503,6 @@ const ApplicationApiAxiosParamCreator = function(configuration) {
501
503
  };
502
504
  const localVarHeaderParameter = {};
503
505
  const localVarQueryParameter = {};
504
- setBasicAuthToObject(localVarRequestOptions, configuration);
505
506
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
506
507
  if (completionTimeout !== void 0) localVarQueryParameter["completion_timeout"] = completionTimeout;
507
508
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -530,7 +531,6 @@ const ApplicationApiAxiosParamCreator = function(configuration) {
530
531
  };
531
532
  const localVarHeaderParameter = {};
532
533
  const localVarQueryParameter = {};
533
- setBasicAuthToObject(localVarRequestOptions, configuration);
534
534
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
535
535
  if (completionTimeout !== void 0) localVarQueryParameter["completion_timeout"] = completionTimeout;
536
536
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -559,7 +559,6 @@ const ApplicationApiAxiosParamCreator = function(configuration) {
559
559
  };
560
560
  const localVarHeaderParameter = {};
561
561
  const localVarQueryParameter = {};
562
- setBasicAuthToObject(localVarRequestOptions, configuration);
563
562
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
564
563
  setSearchParams(localVarUrlObj, localVarQueryParameter);
565
564
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -586,7 +585,6 @@ const ApplicationApiAxiosParamCreator = function(configuration) {
586
585
  };
587
586
  const localVarHeaderParameter = {};
588
587
  const localVarQueryParameter = {};
589
- setBasicAuthToObject(localVarRequestOptions, configuration);
590
588
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
591
589
  setSearchParams(localVarUrlObj, localVarQueryParameter);
592
590
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -615,7 +613,6 @@ const ApplicationApiAxiosParamCreator = function(configuration) {
615
613
  };
616
614
  const localVarHeaderParameter = {};
617
615
  const localVarQueryParameter = {};
618
- setBasicAuthToObject(localVarRequestOptions, configuration);
619
616
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
620
617
  if (completionTimeout !== void 0) localVarQueryParameter["completion_timeout"] = completionTimeout;
621
618
  localVarHeaderParameter["Content-Type"] = "application/json";
@@ -744,7 +741,7 @@ var ApplicationApi = class extends BaseAPI {
744
741
  return ApplicationApiFp(this.configuration).deleteApp(cell, app, completionTimeout, options).then((request) => request(this.axios, this.basePath));
745
742
  }
746
743
  /**
747
- * Get the configuration for an active GUI application in the cell. To update the configuration of a GUI application in the cell, use this configuration with [updateApp](updateApp).
744
+ * Get the configuration for an active GUI application in the cell. To update the configuration of a GUI application in the cell, use this configuration with [updateApp](#/operations/updateApp).
748
745
  * @summary Configuration
749
746
  * @param {string} cell Unique identifier addressing a cell in all API calls.
750
747
  * @param {string} app
@@ -755,7 +752,7 @@ var ApplicationApi = class extends BaseAPI {
755
752
  return ApplicationApiFp(this.configuration).getApp(cell, app, options).then((request) => request(this.axios, this.basePath));
756
753
  }
757
754
  /**
758
- * List all GUI applications that have been added to a cell with [addApp](addApp). If the cell does not contain GUI applications, the list is returned empty.
755
+ * List all GUI applications that have been added to a cell with [addApp](#/operations/addApp). If the cell does not contain GUI applications, the list is returned empty.
759
756
  * @summary List Applications
760
757
  * @param {string} cell Unique identifier addressing a cell in all API calls.
761
758
  * @param {*} [options] Override http request option.
@@ -797,7 +794,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
797
794
  };
798
795
  const localVarHeaderParameter = {};
799
796
  const localVarQueryParameter = {};
800
- setBasicAuthToObject(localVarRequestOptions, configuration);
801
797
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
802
798
  if (completionTimeout !== void 0) localVarQueryParameter["completion_timeout"] = completionTimeout;
803
799
  localVarHeaderParameter["Content-Type"] = "application/json";
@@ -829,7 +825,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
829
825
  };
830
826
  const localVarHeaderParameter = {};
831
827
  const localVarQueryParameter = {};
832
- setBasicAuthToObject(localVarRequestOptions, configuration);
833
828
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
834
829
  localVarHeaderParameter["Content-Type"] = "application/json";
835
830
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -860,7 +855,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
860
855
  };
861
856
  const localVarHeaderParameter = {};
862
857
  const localVarQueryParameter = {};
863
- setBasicAuthToObject(localVarRequestOptions, configuration);
864
858
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
865
859
  localVarHeaderParameter["Content-Type"] = "application/json";
866
860
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -889,7 +883,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
889
883
  };
890
884
  const localVarHeaderParameter = {};
891
885
  const localVarQueryParameter = {};
892
- setBasicAuthToObject(localVarRequestOptions, configuration);
893
886
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
894
887
  if (completionTimeout !== void 0) localVarQueryParameter["completion_timeout"] = completionTimeout;
895
888
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -917,7 +910,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
917
910
  };
918
911
  const localVarHeaderParameter = {};
919
912
  const localVarQueryParameter = {};
920
- setBasicAuthToObject(localVarRequestOptions, configuration);
921
913
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
922
914
  setSearchParams(localVarUrlObj, localVarQueryParameter);
923
915
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -944,7 +936,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
944
936
  };
945
937
  const localVarHeaderParameter = {};
946
938
  const localVarQueryParameter = {};
947
- setBasicAuthToObject(localVarRequestOptions, configuration);
948
939
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
949
940
  setSearchParams(localVarUrlObj, localVarQueryParameter);
950
941
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -972,7 +963,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
972
963
  };
973
964
  const localVarHeaderParameter = {};
974
965
  const localVarQueryParameter = {};
975
- setBasicAuthToObject(localVarRequestOptions, configuration);
976
966
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
977
967
  setSearchParams(localVarUrlObj, localVarQueryParameter);
978
968
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -1000,7 +990,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
1000
990
  };
1001
991
  const localVarHeaderParameter = {};
1002
992
  const localVarQueryParameter = {};
1003
- setBasicAuthToObject(localVarRequestOptions, configuration);
1004
993
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1005
994
  setSearchParams(localVarUrlObj, localVarQueryParameter);
1006
995
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -1027,7 +1016,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
1027
1016
  };
1028
1017
  const localVarHeaderParameter = {};
1029
1018
  const localVarQueryParameter = {};
1030
- setBasicAuthToObject(localVarRequestOptions, configuration);
1031
1019
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1032
1020
  setSearchParams(localVarUrlObj, localVarQueryParameter);
1033
1021
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -1054,7 +1042,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
1054
1042
  };
1055
1043
  const localVarHeaderParameter = {};
1056
1044
  const localVarQueryParameter = {};
1057
- setBasicAuthToObject(localVarRequestOptions, configuration);
1058
1045
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1059
1046
  setSearchParams(localVarUrlObj, localVarQueryParameter);
1060
1047
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -1081,7 +1068,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
1081
1068
  };
1082
1069
  const localVarHeaderParameter = {};
1083
1070
  const localVarQueryParameter = {};
1084
- setBasicAuthToObject(localVarRequestOptions, configuration);
1085
1071
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1086
1072
  if (ios) localVarQueryParameter["ios"] = ios;
1087
1073
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -1109,7 +1095,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
1109
1095
  };
1110
1096
  const localVarHeaderParameter = {};
1111
1097
  const localVarQueryParameter = {};
1112
- setBasicAuthToObject(localVarRequestOptions, configuration);
1113
1098
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1114
1099
  setSearchParams(localVarUrlObj, localVarQueryParameter);
1115
1100
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -1136,7 +1121,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
1136
1121
  };
1137
1122
  const localVarHeaderParameter = {};
1138
1123
  const localVarQueryParameter = {};
1139
- setBasicAuthToObject(localVarRequestOptions, configuration);
1140
1124
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1141
1125
  if (inputOffset !== void 0) localVarQueryParameter["input_offset"] = inputOffset;
1142
1126
  if (outputOffset !== void 0) localVarQueryParameter["output_offset"] = outputOffset;
@@ -1165,7 +1149,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
1165
1149
  };
1166
1150
  const localVarHeaderParameter = {};
1167
1151
  const localVarQueryParameter = {};
1168
- setBasicAuthToObject(localVarRequestOptions, configuration);
1169
1152
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1170
1153
  setSearchParams(localVarUrlObj, localVarQueryParameter);
1171
1154
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -1192,7 +1175,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
1192
1175
  };
1193
1176
  const localVarHeaderParameter = {};
1194
1177
  const localVarQueryParameter = {};
1195
- setBasicAuthToObject(localVarRequestOptions, configuration);
1196
1178
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1197
1179
  setSearchParams(localVarUrlObj, localVarQueryParameter);
1198
1180
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -1219,7 +1201,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
1219
1201
  };
1220
1202
  const localVarHeaderParameter = {};
1221
1203
  const localVarQueryParameter = {};
1222
- setBasicAuthToObject(localVarRequestOptions, configuration);
1223
1204
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1224
1205
  setSearchParams(localVarUrlObj, localVarQueryParameter);
1225
1206
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -1247,7 +1228,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
1247
1228
  };
1248
1229
  const localVarHeaderParameter = {};
1249
1230
  const localVarQueryParameter = {};
1250
- setBasicAuthToObject(localVarRequestOptions, configuration);
1251
1231
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1252
1232
  localVarHeaderParameter["Content-Type"] = "application/json";
1253
1233
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -1277,7 +1257,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
1277
1257
  };
1278
1258
  const localVarHeaderParameter = {};
1279
1259
  const localVarQueryParameter = {};
1280
- setBasicAuthToObject(localVarRequestOptions, configuration);
1281
1260
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1282
1261
  localVarHeaderParameter["Content-Type"] = "application/json";
1283
1262
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -1490,7 +1469,7 @@ var BUSInputsOutputsApi = class extends BaseAPI {
1490
1469
  return BUSInputsOutputsApiFp(this.configuration).addBusIOService(cell, busIOType, completionTimeout, options).then((request) => request(this.axios, this.basePath));
1491
1470
  }
1492
1471
  /**
1493
- * Adds an input/output variable to or updates an input/output variable on the MODBUS device, e.g., NOVA\'s MODBUS service. The inputs/outputs map variables to specific memory addresses in the process image. The NOVA\'s MODBUS service\'s configuration can be viewed via [listModbusIOs](listModbusIOs).
1472
+ * Adds an input/output variable to or updates an input/output variable on the MODBUS device, e.g., NOVA\'s MODBUS service. The inputs/outputs map variables to specific memory addresses in the process image. The NOVA\'s MODBUS service\'s configuration can be viewed via [listModbusIOs](#/operations/listModbusIOs).
1494
1473
  * @summary Add MODBUS Input/Output
1495
1474
  * @param {string} cell Unique identifier addressing a cell in all API calls.
1496
1475
  * @param {string} io Unique identifier to address an Input/Output in the cell.
@@ -1502,7 +1481,7 @@ var BUSInputsOutputsApi = class extends BaseAPI {
1502
1481
  return BUSInputsOutputsApiFp(this.configuration).addModbusIO(cell, io, modbusIOData, options).then((request) => request(this.axios, this.basePath));
1503
1482
  }
1504
1483
  /**
1505
- * Adds an input/output variable to or updates an input/output variable on the PROFINET device, e.g., NOVA\'s PROFINET service. The inputs/outputs map variables to specific memory addresses in the process image. The default process image has buffer lengths of 64 bytes for input and output. - The size of the buffer is determined by the `config_file_content` that is passed in [addBusIOService](addBusIOService) and has to be in accordance with the GSDML file describing the PROFINET device. The PROFINET controller as well as NOVA\'s PROFINET service use an input/output variable configuration to interpret the bits of the input/output process image. - The NOVA\'s PROFINET service\'s configuration can be viewed via [listProfinetIOs](listProfinetIOs). For the PROFINET controller, e.g., a connected PLC, refer to the corresponding third party software, e.g., TIA portal).
1484
+ * Adds an input/output variable to or updates an input/output variable on the PROFINET device, e.g., NOVA\'s PROFINET service. The inputs/outputs map variables to specific memory addresses in the process image. The default process image has buffer lengths of 64 bytes for input and output. - The size of the buffer is determined by the `config_file_content` that is passed in [addBusIOService](#/operations/addBusIOService) and has to be in accordance with the GSDML file describing the PROFINET device. The PROFINET controller as well as NOVA\'s PROFINET service use an input/output variable configuration to interpret the bits of the input/output process image. - The NOVA\'s PROFINET service\'s configuration can be viewed via [listProfinetIOs](#/operations/listProfinetIOs). For the PROFINET controller, e.g., a connected PLC, refer to the corresponding third party software, e.g., TIA portal).
1506
1485
  * @summary Add PROFINET Input/Output
1507
1486
  * @param {string} cell Unique identifier addressing a cell in all API calls.
1508
1487
  * @param {string} io Unique identifier to address an Input/Output in the cell.
@@ -1546,7 +1525,7 @@ var BUSInputsOutputsApi = class extends BaseAPI {
1546
1525
  }
1547
1526
  /**
1548
1527
  * Removes an input/output variable configuration from the MODBUS device, e.g., NOVA\'s MODBUS service.
1549
- * @summary Remove MODBUS Input/Ouptut
1528
+ * @summary Remove MODBUS Input/Output
1550
1529
  * @param {string} cell Unique identifier addressing a cell in all API calls.
1551
1530
  * @param {string} io Unique identifier to address an Input/Output in the cell.
1552
1531
  * @param {*} [options] Override http request option.
@@ -1587,7 +1566,7 @@ var BUSInputsOutputsApi = class extends BaseAPI {
1587
1566
  return BUSInputsOutputsApiFp(this.configuration).getBusIOState(cell, options).then((request) => request(this.axios, this.basePath));
1588
1567
  }
1589
1568
  /**
1590
- * Retrieves the current values of inputs/outputs. The identifiers of the inputs/outputs must be provided in the request. Request all available input/output identifiers via [listBusIODescriptions](listBusIODescriptions).
1569
+ * Retrieves the current values of inputs/outputs. The identifiers of the inputs/outputs must be provided in the request. Request all available input/output identifiers via [listBusIODescriptions](#/operations/listBusIODescriptions).
1591
1570
  * @summary Get Input/Output Values
1592
1571
  * @param {string} cell Unique identifier addressing a cell in all API calls.
1593
1572
  * @param {Array<string>} [ios]
@@ -1630,7 +1609,7 @@ var BUSInputsOutputsApi = class extends BaseAPI {
1630
1609
  return BUSInputsOutputsApiFp(this.configuration).listBusIODescriptions(cell, options).then((request) => request(this.axios, this.basePath));
1631
1610
  }
1632
1611
  /**
1633
- * List descriptions for all configured input/output variables of the MODBUS service. The input/output descriptions contain information like name, type and address. The input/output direction is given in perspective of the active MODBUS type (service or client). - The byte and bit addresses are the locations in the MODBUS input/output process image the variable points to. - The MODBUS controller as well as NOVA\'s MODBUS service use an input/output variable configuration to interpret the bits of the input and output process image. - The NOVA MODBUS service\'s configuration is modified via [addModbusIO](addModbusIO).
1612
+ * List descriptions for all configured input/output variables of the MODBUS service. The input/output descriptions contain information like name, type, and address. The input/output direction is given in perspective of the active MODBUS type (service or client). - The byte and bit addresses are the locations in the MODBUS input/output process image the variable points to. - The MODBUS controller, as well as NOVA\'s MODBUS service, use an input/output variable configuration to interpret the bits of the input and output process image. - The NOVA MODBUS service\'s configuration is modified via [addModbusIO](#/operations/addModbusIO).
1634
1613
  * @summary List MODBUS Input/Output Configuration
1635
1614
  * @param {string} cell Unique identifier addressing a cell in all API calls.
1636
1615
  * @param {*} [options] Override http request option.
@@ -1640,7 +1619,7 @@ var BUSInputsOutputsApi = class extends BaseAPI {
1640
1619
  return BUSInputsOutputsApiFp(this.configuration).listModbusIOs(cell, options).then((request) => request(this.axios, this.basePath));
1641
1620
  }
1642
1621
  /**
1643
- * List descriptions for all configured input/output variables of the PROFINET service. The input/output descriptions contain information like name, type and unit. The input/output direction is given in perspective of the PROFINET device, e.g., the configured PROFINET service. - The byte and bit addresses are the locations in the PROFINET input/output process image the variable points to. - The PROFINET controller as well as NOVA\'s PROFINET service use an input/output variable configuration to interpret the bits of the input and output process image. - The NOVA PROFINET service\'s configuration is modified via [addProfinetIO](addProfinetIO) and [setProfinetIOsFromFile](setProfinetIOsFromFile). For the PROFINET controller, e.g., a connected PLC, refer to the corresponding third party software, e.g., TIA portal.
1622
+ * List descriptions for all configured input/output variables of the PROFINET service. The input/output descriptions contain information like name, type, and unit. The input/output direction is given in perspective of the PROFINET device, e.g., the configured PROFINET service. - The byte and bit addresses are the locations in the PROFINET input/output process image the variable points to. - The PROFINET controller, as well as NOVA\'s PROFINET service, use an input/output variable configuration to interpret the bits of the input and output process image. - The NOVA PROFINET service\'s configuration is modified via [addProfinetIO](#/operations/addProfinetIO) and [setProfinetIOsFromFile](#/operations/setProfinetIOsFromFile). For the PROFINET controller, e.g., a connected PLC, refer to the corresponding third party software, e.g., TIA portal.
1644
1623
  * @summary List PROFINET Input/Output Configuration
1645
1624
  * @param {string} cell Unique identifier addressing a cell in all API calls.
1646
1625
  * @param {*} [options] Override http request option.
@@ -1650,7 +1629,7 @@ var BUSInputsOutputsApi = class extends BaseAPI {
1650
1629
  return BUSInputsOutputsApiFp(this.configuration).listProfinetIOs(cell, options).then((request) => request(this.axios, this.basePath));
1651
1630
  }
1652
1631
  /**
1653
- * Set values of outputs. In case of virtual Bus Input/Outputs, also inputs can be set. All available output identifiers can be requested via [listBusIODescriptions](listBusIODescriptions). The call will return once the values have been set and accepted by the service.
1632
+ * Set values of outputs. In case of virtual Bus Input/Outputs, also inputs can be set. All available output identifiers can be requested via [listBusIODescriptions](#/operations/listBusIODescriptions). The call will return once the values have been set and accepted by the service.
1654
1633
  * @summary Set Output Values
1655
1634
  * @param {string} cell Unique identifier addressing a cell in all API calls.
1656
1635
  * @param {Array<IOValue>} iOValue
@@ -1661,7 +1640,7 @@ var BUSInputsOutputsApi = class extends BaseAPI {
1661
1640
  return BUSInputsOutputsApiFp(this.configuration).setBusIOValues(cell, iOValue, options).then((request) => request(this.axios, this.basePath));
1662
1641
  }
1663
1642
  /**
1664
- * Sets input/output variable configuration on the PROFINET device (i.e. NOVA\'s PROFINET service) from XML file. The inputs/outputs map variables to specific memory addresses in the process image. The default process image has buffer lengths of 64 bytes for input and output. - The size of the buffer is determined by the `config_file_content` that is passed in [addBusIOService](addBusIOService) and has to be in accordance with the GSDML file describing the PROFINET device. The PROFINET controller as well as NOVA\'s PROFINET service use an input/output variable configuration to interpret the bits of the input/output process image. - The NOVA\'s PROFINET service\'s configuration can be viewed via [listProfinetIOs](listProfinetIOs). For the PROFINET controller, e.g., a connected PLC, refer to the corresponding engineering system, e.g., TIA portal. #### Export variables You can export the variable configuration of the PROFINET controller as XML file from your engineering system, e.g., TIA portal. - The endpoint is built so that the perspective of input and output (PROFINET Device\'s input is PROFINET Controller\'s output) is internally handled (PROFINET device input is PROFINET controller output), meaning that you can paste the exported XML file here without modifying.
1643
+ * Sets input/output variable configuration on the PROFINET device (i.e. NOVA\'s PROFINET service) from XML file. The inputs/outputs map variables to specific memory addresses in the process image. The default process image has buffer lengths of 64 bytes for input and output. - The size of the buffer is determined by the `config_file_content` that is passed in [addBusIOService](#/operations/addBusIOService) and has to be in accordance with the GSDML file describing the PROFINET device. The PROFINET controller, as well as NOVA\'s PROFINET service, use an input/output variable configuration to interpret the bits of the input/output process image. - The NOVA\'s PROFINET service\'s configuration can be viewed via [listProfinetIOs](#/operations/listProfinetIOs). For the PROFINET controller, e.g., a connected PLC, refer to the corresponding engineering system, e.g., TIA portal. #### Export variables You can export the variable configuration of the PROFINET controller as an XML file from your engineering system, e.g., TIA portal. - The endpoint is built so that the perspective of input and output (PROFINET Device\'s input is PROFINET Controller\'s output) is internally handled (PROFINET device input is PROFINET controller output), meaning that you can paste the exported XML file here without modifying.
1665
1644
  * @summary Set PROFINET Inputs/Outputs from File
1666
1645
  * @param {string} cell Unique identifier addressing a cell in all API calls.
1667
1646
  * @param {ProfinetInputOutputConfig} profinetInputOutputConfig
@@ -1677,6 +1656,34 @@ var BUSInputsOutputsApi = class extends BaseAPI {
1677
1656
  */
1678
1657
  const CellApiAxiosParamCreator = function(configuration) {
1679
1658
  return {
1659
+ checkCellVersionUpdate: async (cell, channel, options = {}) => {
1660
+ assertParamExists("checkCellVersionUpdate", "cell", cell);
1661
+ assertParamExists("checkCellVersionUpdate", "channel", channel);
1662
+ const localVarPath = `/cells/{cell}/update`.replace(`{cell}`, encodeURIComponent(String(cell)));
1663
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1664
+ let baseOptions;
1665
+ if (configuration) baseOptions = configuration.baseOptions;
1666
+ const localVarRequestOptions = {
1667
+ method: "GET",
1668
+ ...baseOptions,
1669
+ ...options
1670
+ };
1671
+ const localVarHeaderParameter = {};
1672
+ const localVarQueryParameter = {};
1673
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
1674
+ if (channel !== void 0) localVarQueryParameter["channel"] = channel;
1675
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1676
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1677
+ localVarRequestOptions.headers = {
1678
+ ...localVarHeaderParameter,
1679
+ ...headersFromBaseOptions,
1680
+ ...options.headers
1681
+ };
1682
+ return {
1683
+ url: toPathString(localVarUrlObj),
1684
+ options: localVarRequestOptions
1685
+ };
1686
+ },
1680
1687
  deleteCell: async (cell, completionTimeout, options = {}) => {
1681
1688
  assertParamExists("deleteCell", "cell", cell);
1682
1689
  const localVarPath = `/cells/{cell}`.replace(`{cell}`, encodeURIComponent(String(cell)));
@@ -1690,7 +1697,6 @@ const CellApiAxiosParamCreator = function(configuration) {
1690
1697
  };
1691
1698
  const localVarHeaderParameter = {};
1692
1699
  const localVarQueryParameter = {};
1693
- setBasicAuthToObject(localVarRequestOptions, configuration);
1694
1700
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1695
1701
  if (completionTimeout !== void 0) localVarQueryParameter["completion_timeout"] = completionTimeout;
1696
1702
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -1717,7 +1723,6 @@ const CellApiAxiosParamCreator = function(configuration) {
1717
1723
  };
1718
1724
  const localVarHeaderParameter = {};
1719
1725
  const localVarQueryParameter = {};
1720
- setBasicAuthToObject(localVarRequestOptions, configuration);
1721
1726
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1722
1727
  if (completionTimeout !== void 0) localVarQueryParameter["completion_timeout"] = completionTimeout;
1723
1728
  localVarHeaderParameter["Content-Type"] = "application/json";
@@ -1747,7 +1752,6 @@ const CellApiAxiosParamCreator = function(configuration) {
1747
1752
  };
1748
1753
  const localVarHeaderParameter = {};
1749
1754
  const localVarQueryParameter = {};
1750
- setBasicAuthToObject(localVarRequestOptions, configuration);
1751
1755
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1752
1756
  setSearchParams(localVarUrlObj, localVarQueryParameter);
1753
1757
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -1774,7 +1778,6 @@ const CellApiAxiosParamCreator = function(configuration) {
1774
1778
  };
1775
1779
  const localVarHeaderParameter = {};
1776
1780
  const localVarQueryParameter = {};
1777
- setBasicAuthToObject(localVarRequestOptions, configuration);
1778
1781
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1779
1782
  setSearchParams(localVarUrlObj, localVarQueryParameter);
1780
1783
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -1799,7 +1802,6 @@ const CellApiAxiosParamCreator = function(configuration) {
1799
1802
  };
1800
1803
  const localVarHeaderParameter = {};
1801
1804
  const localVarQueryParameter = {};
1802
- setBasicAuthToObject(localVarRequestOptions, configuration);
1803
1805
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1804
1806
  setSearchParams(localVarUrlObj, localVarQueryParameter);
1805
1807
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -1827,7 +1829,6 @@ const CellApiAxiosParamCreator = function(configuration) {
1827
1829
  };
1828
1830
  const localVarHeaderParameter = {};
1829
1831
  const localVarQueryParameter = {};
1830
- setBasicAuthToObject(localVarRequestOptions, configuration);
1831
1832
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1832
1833
  if (operatingState !== void 0) localVarQueryParameter["operating_state"] = operatingState;
1833
1834
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -1856,7 +1857,6 @@ const CellApiAxiosParamCreator = function(configuration) {
1856
1857
  };
1857
1858
  const localVarHeaderParameter = {};
1858
1859
  const localVarQueryParameter = {};
1859
- setBasicAuthToObject(localVarRequestOptions, configuration);
1860
1860
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1861
1861
  if (completionTimeout !== void 0) localVarQueryParameter["completion_timeout"] = completionTimeout;
1862
1862
  localVarHeaderParameter["Content-Type"] = "application/json";
@@ -1872,6 +1872,35 @@ const CellApiAxiosParamCreator = function(configuration) {
1872
1872
  url: toPathString(localVarUrlObj),
1873
1873
  options: localVarRequestOptions
1874
1874
  };
1875
+ },
1876
+ updateCellVersion: async (cell, updateCellVersionRequest, options = {}) => {
1877
+ assertParamExists("updateCellVersion", "cell", cell);
1878
+ assertParamExists("updateCellVersion", "updateCellVersionRequest", updateCellVersionRequest);
1879
+ const localVarPath = `/cells/{cell}/update`.replace(`{cell}`, encodeURIComponent(String(cell)));
1880
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1881
+ let baseOptions;
1882
+ if (configuration) baseOptions = configuration.baseOptions;
1883
+ const localVarRequestOptions = {
1884
+ method: "PUT",
1885
+ ...baseOptions,
1886
+ ...options
1887
+ };
1888
+ const localVarHeaderParameter = {};
1889
+ const localVarQueryParameter = {};
1890
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
1891
+ localVarHeaderParameter["Content-Type"] = "application/json";
1892
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1893
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1894
+ localVarRequestOptions.headers = {
1895
+ ...localVarHeaderParameter,
1896
+ ...headersFromBaseOptions,
1897
+ ...options.headers
1898
+ };
1899
+ localVarRequestOptions.data = serializeDataIfNeeded(updateCellVersionRequest, localVarRequestOptions, configuration);
1900
+ return {
1901
+ url: toPathString(localVarUrlObj),
1902
+ options: localVarRequestOptions
1903
+ };
1875
1904
  }
1876
1905
  };
1877
1906
  };
@@ -1881,6 +1910,12 @@ const CellApiAxiosParamCreator = function(configuration) {
1881
1910
  const CellApiFp = function(configuration) {
1882
1911
  const localVarAxiosParamCreator = CellApiAxiosParamCreator(configuration);
1883
1912
  return {
1913
+ async checkCellVersionUpdate(cell, channel, options) {
1914
+ const localVarAxiosArgs = await localVarAxiosParamCreator.checkCellVersionUpdate(cell, channel, options);
1915
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
1916
+ const localVarOperationServerBasePath = operationServerMap["CellApi.checkCellVersionUpdate"]?.[localVarOperationServerIndex]?.url;
1917
+ return (axios$1, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$1, localVarOperationServerBasePath || basePath);
1918
+ },
1884
1919
  async deleteCell(cell, completionTimeout, options) {
1885
1920
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteCell(cell, completionTimeout, options);
1886
1921
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
@@ -1922,6 +1957,12 @@ const CellApiFp = function(configuration) {
1922
1957
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
1923
1958
  const localVarOperationServerBasePath = operationServerMap["CellApi.updateCell"]?.[localVarOperationServerIndex]?.url;
1924
1959
  return (axios$1, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$1, localVarOperationServerBasePath || basePath);
1960
+ },
1961
+ async updateCellVersion(cell, updateCellVersionRequest, options) {
1962
+ const localVarAxiosArgs = await localVarAxiosParamCreator.updateCellVersion(cell, updateCellVersionRequest, options);
1963
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
1964
+ const localVarOperationServerBasePath = operationServerMap["CellApi.updateCellVersion"]?.[localVarOperationServerIndex]?.url;
1965
+ return (axios$1, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$1, localVarOperationServerBasePath || basePath);
1925
1966
  }
1926
1967
  };
1927
1968
  };
@@ -1931,6 +1972,9 @@ const CellApiFp = function(configuration) {
1931
1972
  const CellApiFactory = function(configuration, basePath, axios$1) {
1932
1973
  const localVarFp = CellApiFp(configuration);
1933
1974
  return {
1975
+ checkCellVersionUpdate(cell, channel, options) {
1976
+ return localVarFp.checkCellVersionUpdate(cell, channel, options).then((request) => request(axios$1, basePath));
1977
+ },
1934
1978
  deleteCell(cell, completionTimeout, options) {
1935
1979
  return localVarFp.deleteCell(cell, completionTimeout, options).then((request) => request(axios$1, basePath));
1936
1980
  },
@@ -1951,6 +1995,9 @@ const CellApiFactory = function(configuration, basePath, axios$1) {
1951
1995
  },
1952
1996
  updateCell(cell, cell2, completionTimeout, options) {
1953
1997
  return localVarFp.updateCell(cell, cell2, completionTimeout, options).then((request) => request(axios$1, basePath));
1998
+ },
1999
+ updateCellVersion(cell, updateCellVersionRequest, options) {
2000
+ return localVarFp.updateCellVersion(cell, updateCellVersionRequest, options).then((request) => request(axios$1, basePath));
1954
2001
  }
1955
2002
  };
1956
2003
  };
@@ -1958,6 +2005,17 @@ const CellApiFactory = function(configuration, basePath, axios$1) {
1958
2005
  * CellApi - object-oriented interface
1959
2006
  */
1960
2007
  var CellApi = class extends BaseAPI {
2008
+ /**
2009
+ * Check if a more recent Wandelbots NOVA version is available for the cell. Updates greater than the system version are ignored.
2010
+ * @summary Check Cell Update
2011
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
2012
+ * @param {ReleaseChannel} channel
2013
+ * @param {*} [options] Override http request option.
2014
+ * @throws {RequiredError}
2015
+ */
2016
+ checkCellVersionUpdate(cell, channel, options) {
2017
+ return CellApiFp(this.configuration).checkCellVersionUpdate(cell, channel, options).then((request) => request(this.axios, this.basePath));
2018
+ }
1961
2019
  /**
1962
2020
  * Delete an entire cell.
1963
2021
  * @summary Delete Cell
@@ -2032,6 +2090,17 @@ var CellApi = class extends BaseAPI {
2032
2090
  updateCell(cell, cell2, completionTimeout, options) {
2033
2091
  return CellApiFp(this.configuration).updateCell(cell, cell2, completionTimeout, options).then((request) => request(this.axios, this.basePath));
2034
2092
  }
2093
+ /**
2094
+ * Update the Foundation chart version for a single cell based on a release channel. The resulting version is capped at the current system version.
2095
+ * @summary Update Cell Version
2096
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
2097
+ * @param {UpdateCellVersionRequest} updateCellVersionRequest
2098
+ * @param {*} [options] Override http request option.
2099
+ * @throws {RequiredError}
2100
+ */
2101
+ updateCellVersion(cell, updateCellVersionRequest, options) {
2102
+ return CellApiFp(this.configuration).updateCellVersion(cell, updateCellVersionRequest, options).then((request) => request(this.axios, this.basePath));
2103
+ }
2035
2104
  };
2036
2105
  /**
2037
2106
  * ControllerApi - axios parameter creator
@@ -2052,7 +2121,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
2052
2121
  };
2053
2122
  const localVarHeaderParameter = {};
2054
2123
  const localVarQueryParameter = {};
2055
- setBasicAuthToObject(localVarRequestOptions, configuration);
2056
2124
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2057
2125
  if (completionTimeout !== void 0) localVarQueryParameter["completion_timeout"] = completionTimeout;
2058
2126
  localVarHeaderParameter["Content-Type"] = "application/json";
@@ -2082,7 +2150,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
2082
2150
  };
2083
2151
  const localVarHeaderParameter = {};
2084
2152
  const localVarQueryParameter = {};
2085
- setBasicAuthToObject(localVarRequestOptions, configuration);
2086
2153
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2087
2154
  if (completionTimeout !== void 0) localVarQueryParameter["completion_timeout"] = completionTimeout;
2088
2155
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -2111,7 +2178,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
2111
2178
  };
2112
2179
  const localVarHeaderParameter = {};
2113
2180
  const localVarQueryParameter = {};
2114
- setBasicAuthToObject(localVarRequestOptions, configuration);
2115
2181
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2116
2182
  if (completionTimeout !== void 0) localVarQueryParameter["completion_timeout"] = completionTimeout;
2117
2183
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -2140,7 +2206,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
2140
2206
  };
2141
2207
  const localVarHeaderParameter = {};
2142
2208
  const localVarQueryParameter = {};
2143
- setBasicAuthToObject(localVarRequestOptions, configuration);
2144
2209
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2145
2210
  setSearchParams(localVarUrlObj, localVarQueryParameter);
2146
2211
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -2169,7 +2234,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
2169
2234
  };
2170
2235
  const localVarHeaderParameter = {};
2171
2236
  const localVarQueryParameter = {};
2172
- setBasicAuthToObject(localVarRequestOptions, configuration);
2173
2237
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2174
2238
  if (orientationType !== void 0) localVarQueryParameter["orientation_type"] = orientationType;
2175
2239
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -2198,7 +2262,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
2198
2262
  };
2199
2263
  const localVarHeaderParameter = {};
2200
2264
  const localVarQueryParameter = {};
2201
- setBasicAuthToObject(localVarRequestOptions, configuration);
2202
2265
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2203
2266
  setSearchParams(localVarUrlObj, localVarQueryParameter);
2204
2267
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -2226,7 +2289,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
2226
2289
  };
2227
2290
  const localVarHeaderParameter = {};
2228
2291
  const localVarQueryParameter = {};
2229
- setBasicAuthToObject(localVarRequestOptions, configuration);
2230
2292
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2231
2293
  setSearchParams(localVarUrlObj, localVarQueryParameter);
2232
2294
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -2254,7 +2316,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
2254
2316
  };
2255
2317
  const localVarHeaderParameter = {};
2256
2318
  const localVarQueryParameter = {};
2257
- setBasicAuthToObject(localVarRequestOptions, configuration);
2258
2319
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2259
2320
  setSearchParams(localVarUrlObj, localVarQueryParameter);
2260
2321
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -2282,7 +2343,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
2282
2343
  };
2283
2344
  const localVarHeaderParameter = {};
2284
2345
  const localVarQueryParameter = {};
2285
- setBasicAuthToObject(localVarRequestOptions, configuration);
2286
2346
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2287
2347
  if (orientationType !== void 0) localVarQueryParameter["orientation_type"] = orientationType;
2288
2348
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -2310,7 +2370,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
2310
2370
  };
2311
2371
  const localVarHeaderParameter = {};
2312
2372
  const localVarQueryParameter = {};
2313
- setBasicAuthToObject(localVarRequestOptions, configuration);
2314
2373
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2315
2374
  setSearchParams(localVarUrlObj, localVarQueryParameter);
2316
2375
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -2339,7 +2398,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
2339
2398
  };
2340
2399
  const localVarHeaderParameter = {};
2341
2400
  const localVarQueryParameter = {};
2342
- setBasicAuthToObject(localVarRequestOptions, configuration);
2343
2401
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2344
2402
  if (mode !== void 0) localVarQueryParameter["mode"] = mode;
2345
2403
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -2368,7 +2426,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
2368
2426
  };
2369
2427
  const localVarHeaderParameter = {};
2370
2428
  const localVarQueryParameter = {};
2371
- setBasicAuthToObject(localVarRequestOptions, configuration);
2372
2429
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2373
2430
  if (responseRate !== void 0) localVarQueryParameter["response_rate"] = responseRate;
2374
2431
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -2397,7 +2454,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
2397
2454
  };
2398
2455
  const localVarHeaderParameter = {};
2399
2456
  const localVarQueryParameter = {};
2400
- setBasicAuthToObject(localVarRequestOptions, configuration);
2401
2457
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2402
2458
  if (responseRate !== void 0) localVarQueryParameter["response_rate"] = responseRate;
2403
2459
  if (addControllerTimeout !== void 0) localVarQueryParameter["add_controller_timeout"] = addControllerTimeout;
@@ -2428,7 +2484,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
2428
2484
  };
2429
2485
  const localVarHeaderParameter = {};
2430
2486
  const localVarQueryParameter = {};
2431
- setBasicAuthToObject(localVarRequestOptions, configuration);
2432
2487
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2433
2488
  if (completionTimeout !== void 0) localVarQueryParameter["completion_timeout"] = completionTimeout;
2434
2489
  localVarHeaderParameter["Content-Type"] = "application/json";
@@ -2606,7 +2661,7 @@ var ControllerApi = class extends BaseAPI {
2606
2661
  return ControllerApiFp(this.configuration).addRobotController(cell, robotController, completionTimeout, options).then((request) => request(this.axios, this.basePath));
2607
2662
  }
2608
2663
  /**
2609
- * Delete all robot controllers from the cell. To replace all robot controllers in a cell, use this endpoint in combination with [addRobotController](addRobotController).
2664
+ * Delete all robot controllers from the cell. To replace all robot controllers in a cell, use this endpoint in combination with [addRobotController](#/operations/addRobotController).
2610
2665
  * @summary Clear Robot Controllers
2611
2666
  * @param {string} cell Unique identifier addressing a cell in all API calls.
2612
2667
  * @param {number} [completionTimeout]
@@ -2629,7 +2684,7 @@ var ControllerApi = class extends BaseAPI {
2629
2684
  return ControllerApiFp(this.configuration).deleteRobotController(cell, controller, completionTimeout, options).then((request) => request(this.axios, this.basePath));
2630
2685
  }
2631
2686
  /**
2632
- * Get description of a configured robot controller including a list of connected motion group identifiers. Use [getMotionGroupDescription](getMotionGroupDescription) to get more information about the motion group.
2687
+ * Get description of a configured robot controller including a list of connected motion group identifiers. Use [getMotionGroupDescription](#/operations/getMotionGroupDescription) to get more information about the motion group.
2633
2688
  * @summary Description
2634
2689
  * @param {string} cell Unique identifier addressing a cell in all API calls.
2635
2690
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -2675,7 +2730,7 @@ var ControllerApi = class extends BaseAPI {
2675
2730
  return ControllerApiFp(this.configuration).getRobotController(cell, controller, options).then((request) => request(this.axios, this.basePath));
2676
2731
  }
2677
2732
  /**
2678
- * 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](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.
2733
+ * 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.
2679
2734
  * @summary Virtual Controller Configuration
2680
2735
  * @param {string} cell Unique identifier addressing a cell in all API calls.
2681
2736
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -2708,7 +2763,7 @@ var ControllerApi = class extends BaseAPI {
2708
2763
  return ControllerApiFp(this.configuration).listRobotControllers(cell, options).then((request) => request(this.axios, this.basePath));
2709
2764
  }
2710
2765
  /**
2711
- * 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** > > `setDefaultMode` enables the robot controller to stay in control mode to keep the motors activated. > This allows for faster execution of sequential movements as no mode switches are required. > **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.
2766
+ * 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** > > `setDefaultMode` enables the robot controller to stay in control mode to keep the motors activated. > This allows for faster execution of sequential movements as no mode switches are required. > **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.
2712
2767
  * @summary Set Default Mode
2713
2768
  * @param {string} cell Unique identifier addressing a cell in all API calls.
2714
2769
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -2720,7 +2775,7 @@ var ControllerApi = class extends BaseAPI {
2720
2775
  return ControllerApiFp(this.configuration).setDefaultMode(cell, controller, mode, options).then((request) => request(this.axios, this.basePath));
2721
2776
  }
2722
2777
  /**
2723
- * <!-- theme: success --> > Websocket endpoint Sets the robot controller into freedrive mode and stays in freedrive until the websocket connection is closed by the client. In freedrive mode, it is possible to move the attached motion groups by hand. This is a blocking call. As long as the websocket connection is open, no other endpoint can control or move the robot. <!-- theme: danger --> > **DANGER** > > Danger caused by robot. Improper assessment by the integrator of the application-specific hazards can result in people being > crushed, drawn in or caught due to the robot\'s complex movement sequences. Before opening the websocket, ensure that > > - The robot is in a safe state, > - The right payload is set, > - No humans or object are within the robot\'s reach or within the cell. As long as the websocket connection is open you will get the current state of the robot system in the response in the specified `response_rate`. If the activation failed, the returned status will return possible reasons for the failure. Free drive mode is only available for robot controllers that support it, in particular cobots. Use [listRobotControllers](listRobotControllers) to check if the robot controller supports free drive mode.
2778
+ * <!-- theme: success --> > Websocket endpoint Sets the robot controller into freedrive mode and stays in freedrive until the websocket connection is closed by the client. In freedrive mode, it is possible to move the attached motion groups by hand. This is a blocking call. As long as the websocket connection is open, no other endpoint can control or move the robot. <!-- theme: danger --> > **DANGER** > > Danger caused by robot. Improper assessment by the integrator of the application-specific hazards can result in people being > crushed, drawn in or caught due to the robot\'s complex movement sequences. Before opening the websocket, ensure that > > - The robot is in a safe state, > - The right payload is set, > - No humans or object are within the robot\'s reach or within the cell. As long as the websocket connection is open you will get the current state of the robot system in the response in the specified `response_rate`. If the activation failed, the returned status will return possible reasons for the failure. Free drive mode is only available for robot controllers that support it, in particular cobots. Use [listRobotControllers](#/operations/listRobotControllers) to check if the robot controller supports free drive mode.
2724
2779
  * @summary Stream Free Drive
2725
2780
  * @param {string} cell Unique identifier addressing a cell in all API calls.
2726
2781
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -2732,7 +2787,7 @@ var ControllerApi = class extends BaseAPI {
2732
2787
  return ControllerApiFp(this.configuration).streamFreeDrive(cell, controller, responseRate, options).then((request) => request(this.axios, this.basePath));
2733
2788
  }
2734
2789
  /**
2735
- * <!-- theme: success --> > Websocket endpoint Receive updates of the state of a robot controller. The stream can be opened before the controller is registered. To register a controller, call [addRobotController](addRobotController). While connecting, the stream sends initialization updates. Once the controller reaches `MODE_MONITOR`, it sends controller state updates.
2790
+ * <!-- theme: success --> > Websocket endpoint Receive updates of the state of a robot controller. The stream can be opened before the controller is registered. To register a controller, call [addRobotController](#/operations/addRobotController). While connecting, the stream sends initialization updates. Once the controller reaches `MODE_MONITOR`, it sends controller state updates.
2736
2791
  * @summary Stream State
2737
2792
  * @param {string} cell Unique identifier addressing a cell in all API calls.
2738
2793
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -2745,7 +2800,7 @@ var ControllerApi = class extends BaseAPI {
2745
2800
  return ControllerApiFp(this.configuration).streamRobotControllerState(cell, controller, responseRate, addControllerTimeout, options).then((request) => request(this.axios, this.basePath));
2746
2801
  }
2747
2802
  /**
2748
- * Update the configuration of a robot controller. Reconfigure certain options of a robot controller, or deploy a specific container image of a robot controller. 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).
2803
+ * Update the configuration of a robot controller. Reconfigure certain options of a robot controller, or deploy a specific container image of a robot controller. 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).
2749
2804
  * @summary Update Robot Controller
2750
2805
  * @param {string} cell Unique identifier addressing a cell in all API calls.
2751
2806
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -2777,7 +2832,6 @@ const ControllerInputsOutputsApiAxiosParamCreator = function(configuration) {
2777
2832
  };
2778
2833
  const localVarHeaderParameter = {};
2779
2834
  const localVarQueryParameter = {};
2780
- setBasicAuthToObject(localVarRequestOptions, configuration);
2781
2835
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2782
2836
  if (ios) localVarQueryParameter["ios"] = ios;
2783
2837
  if (direction !== void 0) localVarQueryParameter["direction"] = direction;
@@ -2809,7 +2863,6 @@ const ControllerInputsOutputsApiAxiosParamCreator = function(configuration) {
2809
2863
  };
2810
2864
  const localVarHeaderParameter = {};
2811
2865
  const localVarQueryParameter = {};
2812
- setBasicAuthToObject(localVarRequestOptions, configuration);
2813
2866
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2814
2867
  if (ios) localVarQueryParameter["ios"] = ios;
2815
2868
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -2839,7 +2892,6 @@ const ControllerInputsOutputsApiAxiosParamCreator = function(configuration) {
2839
2892
  };
2840
2893
  const localVarHeaderParameter = {};
2841
2894
  const localVarQueryParameter = {};
2842
- setBasicAuthToObject(localVarRequestOptions, configuration);
2843
2895
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2844
2896
  localVarHeaderParameter["Content-Type"] = "application/json";
2845
2897
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -2869,7 +2921,6 @@ const ControllerInputsOutputsApiAxiosParamCreator = function(configuration) {
2869
2921
  };
2870
2922
  const localVarHeaderParameter = {};
2871
2923
  const localVarQueryParameter = {};
2872
- setBasicAuthToObject(localVarRequestOptions, configuration);
2873
2924
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2874
2925
  if (ios) localVarQueryParameter["ios"] = ios;
2875
2926
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -2899,7 +2950,6 @@ const ControllerInputsOutputsApiAxiosParamCreator = function(configuration) {
2899
2950
  };
2900
2951
  const localVarHeaderParameter = {};
2901
2952
  const localVarQueryParameter = {};
2902
- setBasicAuthToObject(localVarRequestOptions, configuration);
2903
2953
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2904
2954
  localVarHeaderParameter["Content-Type"] = "application/json";
2905
2955
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -2998,7 +3048,7 @@ var ControllerInputsOutputsApi = class extends BaseAPI {
2998
3048
  return ControllerInputsOutputsApiFp(this.configuration).listIODescriptions(cell, controller, ios, direction, valueType, group, options).then((request) => request(this.axios, this.basePath));
2999
3049
  }
3000
3050
  /**
3001
- * Retrieves the current values of inputs/outputs. The identifiers of the inputs/outputs must be provided in the request. Request all available input/output identifiers via [listIODescriptions](listIODescriptions).
3051
+ * Retrieves the current values of inputs/outputs. The identifiers of the inputs/outputs must be provided in the request. Request all available input/output identifiers via [listIODescriptions](#/operations/listIODescriptions).
3002
3052
  * @summary Get Input/Output Values
3003
3053
  * @param {string} cell Unique identifier addressing a cell in all API calls.
3004
3054
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -3010,7 +3060,7 @@ var ControllerInputsOutputsApi = class extends BaseAPI {
3010
3060
  return ControllerInputsOutputsApiFp(this.configuration).listIOValues(cell, controller, ios, options).then((request) => request(this.axios, this.basePath));
3011
3061
  }
3012
3062
  /**
3013
- * Set the values of outputs. All available output 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 can take up to 200 milliseconds. > **NOTE** > > Do not call this endpoint while another request is still in progress. The second call will fail.
3063
+ * Set the values of outputs. All available output 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 can take up to 200 milliseconds. > **NOTE** > > Do not call this endpoint while another request is still in progress. The second call will fail.
3014
3064
  * @summary Set Output Values
3015
3065
  * @param {string} cell Unique identifier addressing a cell in all API calls.
3016
3066
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -3034,7 +3084,7 @@ var ControllerInputsOutputsApi = class extends BaseAPI {
3034
3084
  return ControllerInputsOutputsApiFp(this.configuration).streamIOValues(cell, controller, ios, options).then((request) => request(this.axios, this.basePath));
3035
3085
  }
3036
3086
  /**
3037
- * Wait until an input/output reaches a certain value. This call returns as soon as the condition is met or the request fails. The `comparison_type` value is used to define how the current value of the input/output is compared with given value. Only set the value that corresponds to the `value_type` of the input/output. See [listIODescriptions](listIODescriptions) for more information. **Examples** 1. Wait until analog input `AI_1` < 10: ``` io: \"AI_1\" comparison_type: \"COMPARISON_LESS\" value: 10 ``` 2. Wait until analog input `AI_2` > 5.0: ``` io: \"AI_2\" comparison_type: \"COMPARISON_GREATER\" value: 5.0 ``` 3. Wait until digital input `DI_3` is true: ``` io: \"DI_3\" comparison_type: \"COMPARISON_EQUAL\" value: true ```
3087
+ * Wait until an input/output reaches a certain value. This call returns as soon as the condition is met or the request fails. The `comparison_type` value is used to define how the current value of the input/output is compared with given value. Only set the value that corresponds to the `value_type` of the input/output. See [listIODescriptions](#/operations/listIODescriptions) for more information. **Examples** 1. Wait until analog input `AI_1` < 10: ``` io: \"AI_1\" comparison_type: \"COMPARISON_LESS\" value: 10 ``` 2. Wait until analog input `AI_2` > 5.0: ``` io: \"AI_2\" comparison_type: \"COMPARISON_GREATER\" value: 5.0 ``` 3. Wait until digital input `DI_3` is true: ``` io: \"DI_3\" comparison_type: \"COMPARISON_EQUAL\" value: true ```
3038
3088
  * @summary Wait For
3039
3089
  * @param {string} cell Unique identifier addressing a cell in all API calls.
3040
3090
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -3065,7 +3115,6 @@ const JoggingApiAxiosParamCreator = function(configuration) {
3065
3115
  };
3066
3116
  const localVarHeaderParameter = {};
3067
3117
  const localVarQueryParameter = {};
3068
- setBasicAuthToObject(localVarRequestOptions, configuration);
3069
3118
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3070
3119
  localVarHeaderParameter["Content-Type"] = "application/json";
3071
3120
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -3108,7 +3157,7 @@ const JoggingApiFactory = function(configuration, basePath, axios$1) {
3108
3157
  */
3109
3158
  var JoggingApi = class extends BaseAPI {
3110
3159
  /**
3111
- * <!-- theme: success --> > Websocket endpoint Provides execution control over a dynamically adaptable jogging motion for a motion group. Jogging describes controlling a motion group by sending real-time commands to move either its joints or the TCP. The commands contain target velocities that may change at any time during execution, so the resulting motion cannot be computed upfront. ### Preconditions The motion group is not moved by any other endpoint. ### Requests #### 1. Send `InitializeJoggingRequest` to configure the jogging. - Sets the robot controller mode to control mode. - Claims the motion group for jogging. For robotic arms, TCP is required to ensure that limits, including TCP limits, are respected. #### 2. Send `JointVelocityRequest` or `TcpVelocityRequest` to start the jogging motion. - Commands can only be processed in the cycle rate of the controller - Sending commands faster will not increase the responsiveness of the jogging motion, it will lead to dropped commands - It is recommended to couple sending commands with the [state stream](streamMotionGroupState), which can be subscribed to via nats as well. #### 3. Change or stop the jogging motion - Change the jogging direction and/or velocity during the jogging motion with `JointVelocityRequest` or `TcpVelocityRequest`. - To stop the jogging motion, send zero velocities via either request or `PauseJoggingRequest`. ### Responses - Each request is acknowledged with a corresponding response: - `InitializeJoggingResponse` after `InitializeJoggingRequest` - `JointVelocityResponse` after `JointVelocityRequest` - `TcpVelocityResponse` after `TcpVelocityRequest` - `PauseJoggingResponse` after `PauseJoggingRequest` The responses confirm that the requests were received. They do not signal that the operation was successful; check the [motion group state](streamMotionGroupState) for that. - `MovementErrorResponse` with error details is sent in case of an unexpected error, e.g., controller disconnects during jogging. ### Tips and Tricks - Ensure that the websocket connection remains open until the jogging motion is stopped to avoid unexpected stops.
3160
+ * <!-- theme: success --> > Websocket endpoint Provides execution control over a dynamically adaptable jogging motion for a motion group. Jogging describes controlling a motion group by sending real-time commands to move either its joints or the TCP. The commands contain target velocities that may change at any time during execution, so the resulting motion cannot be computed upfront. ### Preconditions The motion group is not moved by any other endpoint. ### Requests #### 1. Send `InitializeJoggingRequest` to configure the jogging. - Sets the robot controller mode to control mode. - Claims the motion group for jogging. For robotic arms, TCP is required to ensure that limits, including TCP limits, are respected. #### 2. Send `JointVelocityRequest` or `TcpVelocityRequest` to start the jogging motion. - Commands can only be processed in the cycle rate of the controller - Sending commands faster will not increase the responsiveness of the jogging motion, it will lead to dropped commands - It is recommended to couple sending commands with the [state stream](#/operations/streamMotionGroupState), which can be subscribed to via nats as well. #### 3. Change or stop the jogging motion - Change the jogging direction and/or velocity during the jogging motion with `JointVelocityRequest` or `TcpVelocityRequest`. - To stop the jogging motion, send zero velocities via either request or `PauseJoggingRequest`. ### Responses - Each request is acknowledged with a corresponding response: - `InitializeJoggingResponse` after `InitializeJoggingRequest` - `JointVelocityResponse` after `JointVelocityRequest` - `TcpVelocityResponse` after `TcpVelocityRequest` - `PauseJoggingResponse` after `PauseJoggingRequest` The responses confirm that the requests were received. They do not signal that the operation was successful; check the [motion group state](#/operations/streamMotionGroupState) for that. - `MovementErrorResponse` with error details is sent in case of an unexpected error, e.g., controller disconnects during jogging. ### Tips and Tricks - Ensure that the websocket connection remains open until the jogging motion is stopped to avoid unexpected stops.
3112
3161
  * @summary Execute Jogging
3113
3162
  * @param {string} cell Unique identifier addressing a cell in all API calls.
3114
3163
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -3139,7 +3188,6 @@ const KinematicsApiAxiosParamCreator = function(configuration) {
3139
3188
  };
3140
3189
  const localVarHeaderParameter = {};
3141
3190
  const localVarQueryParameter = {};
3142
- setBasicAuthToObject(localVarRequestOptions, configuration);
3143
3191
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3144
3192
  localVarHeaderParameter["Content-Type"] = "application/json";
3145
3193
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -3169,7 +3217,6 @@ const KinematicsApiAxiosParamCreator = function(configuration) {
3169
3217
  };
3170
3218
  const localVarHeaderParameter = {};
3171
3219
  const localVarQueryParameter = {};
3172
- setBasicAuthToObject(localVarRequestOptions, configuration);
3173
3220
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3174
3221
  localVarHeaderParameter["Content-Type"] = "application/json";
3175
3222
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -3265,7 +3312,6 @@ const LicenseApiAxiosParamCreator = function(configuration) {
3265
3312
  };
3266
3313
  const localVarHeaderParameter = {};
3267
3314
  const localVarQueryParameter = {};
3268
- setBasicAuthToObject(localVarRequestOptions, configuration);
3269
3315
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3270
3316
  localVarHeaderParameter["Content-Type"] = "application/json";
3271
3317
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -3292,7 +3338,6 @@ const LicenseApiAxiosParamCreator = function(configuration) {
3292
3338
  };
3293
3339
  const localVarHeaderParameter = {};
3294
3340
  const localVarQueryParameter = {};
3295
- setBasicAuthToObject(localVarRequestOptions, configuration);
3296
3341
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3297
3342
  setSearchParams(localVarUrlObj, localVarQueryParameter);
3298
3343
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -3317,7 +3362,6 @@ const LicenseApiAxiosParamCreator = function(configuration) {
3317
3362
  };
3318
3363
  const localVarHeaderParameter = {};
3319
3364
  const localVarQueryParameter = {};
3320
- setBasicAuthToObject(localVarRequestOptions, configuration);
3321
3365
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3322
3366
  setSearchParams(localVarUrlObj, localVarQueryParameter);
3323
3367
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -3342,7 +3386,6 @@ const LicenseApiAxiosParamCreator = function(configuration) {
3342
3386
  };
3343
3387
  const localVarHeaderParameter = {};
3344
3388
  const localVarQueryParameter = {};
3345
- setBasicAuthToObject(localVarRequestOptions, configuration);
3346
3389
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3347
3390
  setSearchParams(localVarUrlObj, localVarQueryParameter);
3348
3391
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -3472,7 +3515,6 @@ const MotionGroupApiAxiosParamCreator = function(configuration) {
3472
3515
  };
3473
3516
  const localVarHeaderParameter = {};
3474
3517
  const localVarQueryParameter = {};
3475
- setBasicAuthToObject(localVarRequestOptions, configuration);
3476
3518
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3477
3519
  if (responseCoordinateSystem !== void 0) localVarQueryParameter["response_coordinate_system"] = responseCoordinateSystem;
3478
3520
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -3502,7 +3544,6 @@ const MotionGroupApiAxiosParamCreator = function(configuration) {
3502
3544
  };
3503
3545
  const localVarHeaderParameter = {};
3504
3546
  const localVarQueryParameter = {};
3505
- setBasicAuthToObject(localVarRequestOptions, configuration);
3506
3547
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3507
3548
  setSearchParams(localVarUrlObj, localVarQueryParameter);
3508
3549
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -3531,7 +3572,6 @@ const MotionGroupApiAxiosParamCreator = function(configuration) {
3531
3572
  };
3532
3573
  const localVarHeaderParameter = {};
3533
3574
  const localVarQueryParameter = {};
3534
- setBasicAuthToObject(localVarRequestOptions, configuration);
3535
3575
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3536
3576
  if (responseRate !== void 0) localVarQueryParameter["response_rate"] = responseRate;
3537
3577
  if (responseCoordinateSystem !== void 0) localVarQueryParameter["response_coordinate_system"] = responseCoordinateSystem;
@@ -3654,7 +3694,6 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
3654
3694
  };
3655
3695
  const localVarHeaderParameter = {};
3656
3696
  const localVarQueryParameter = {};
3657
- setBasicAuthToObject(localVarRequestOptions, configuration);
3658
3697
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3659
3698
  setSearchParams(localVarUrlObj, localVarQueryParameter);
3660
3699
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -3681,7 +3720,6 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
3681
3720
  };
3682
3721
  const localVarHeaderParameter = {};
3683
3722
  const localVarQueryParameter = {};
3684
- setBasicAuthToObject(localVarRequestOptions, configuration);
3685
3723
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3686
3724
  setSearchParams(localVarUrlObj, localVarQueryParameter);
3687
3725
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -3708,7 +3746,6 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
3708
3746
  };
3709
3747
  const localVarHeaderParameter = {};
3710
3748
  const localVarQueryParameter = {};
3711
- setBasicAuthToObject(localVarRequestOptions, configuration);
3712
3749
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3713
3750
  setSearchParams(localVarUrlObj, localVarQueryParameter);
3714
3751
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -3733,7 +3770,6 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
3733
3770
  };
3734
3771
  const localVarHeaderParameter = {};
3735
3772
  const localVarQueryParameter = {};
3736
- setBasicAuthToObject(localVarRequestOptions, configuration);
3737
3773
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3738
3774
  setSearchParams(localVarUrlObj, localVarQueryParameter);
3739
3775
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -3760,7 +3796,6 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
3760
3796
  };
3761
3797
  const localVarHeaderParameter = {};
3762
3798
  const localVarQueryParameter = {};
3763
- setBasicAuthToObject(localVarRequestOptions, configuration);
3764
3799
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3765
3800
  setSearchParams(localVarUrlObj, localVarQueryParameter);
3766
3801
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -3842,9 +3877,9 @@ const MotionGroupModelsApiFactory = function(configuration, basePath, axios$1) {
3842
3877
  */
3843
3878
  var MotionGroupModelsApi = class extends BaseAPI {
3844
3879
  /**
3845
- * Returns the default collision link chain for a given motion group model. See [getMotionGroupModels](getMotionGroupModels) for supported motion group models. The default link chain is derived from 3D models and optimized for collision detection within NOVA. The default link chain includes link shapes only. It does not include any attached components like wire feeders or sensors. Attach additional shapes to the link reference frames by extending the link dictionaries before further use. Additional shapes may overlap each other per link and may also overlap the respective link\'s default shape.
3880
+ * Returns the default collision link chain for a given motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported motion group models. The default link chain is derived from 3D models and optimized for collision detection within NOVA. The default link chain includes link shapes only. It does not include any attached components like wire feeders or sensors. Attach additional shapes to the link reference frames by extending the link dictionaries before further use. Additional shapes may overlap each other per link and may also overlap the respective link\'s default shape.
3846
3881
  * @summary Get Collision Model
3847
- * @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., &#x60;UniversalRobots_UR10e&#x60;. Get the &#x60;model&#x60; of a configured motion group with [getOptimizerConfiguration](getOptimizerConfiguration).
3882
+ * @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., &#x60;UniversalRobots_UR10e&#x60;. Get the &#x60;model&#x60; of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
3848
3883
  * @param {*} [options] Override http request option.
3849
3884
  * @throws {RequiredError}
3850
3885
  */
@@ -3852,9 +3887,9 @@ var MotionGroupModelsApi = class extends BaseAPI {
3852
3887
  return MotionGroupModelsApiFp(this.configuration).getMotionGroupCollisionModel(motionGroupModel, options).then((request) => request(this.axios, this.basePath));
3853
3888
  }
3854
3889
  /**
3855
- * Returns the GLB asset for the specified motion group model. See [getMotionGroupModels](getMotionGroupModels) for supported identifiers.
3890
+ * Returns the GLB asset for the specified motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported identifiers.
3856
3891
  * @summary Download GLB Model
3857
- * @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., &#x60;UniversalRobots_UR10e&#x60;. Get the &#x60;model&#x60; of a configured motion group with [getOptimizerConfiguration](getOptimizerConfiguration).
3892
+ * @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., &#x60;UniversalRobots_UR10e&#x60;. Get the &#x60;model&#x60; of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
3858
3893
  * @param {*} [options] Override http request option.
3859
3894
  * @throws {RequiredError}
3860
3895
  */
@@ -3862,9 +3897,9 @@ var MotionGroupModelsApi = class extends BaseAPI {
3862
3897
  return MotionGroupModelsApiFp(this.configuration).getMotionGroupGlbModel(motionGroupModel, options).then((request) => request(this.axios, this.basePath));
3863
3898
  }
3864
3899
  /**
3865
- * Returns the kinematics model (DH parameters) for the given motion group model. See [getMotionGroupModels](getMotionGroupModels) for supported motion group models.
3900
+ * Returns the kinematics model (DH parameters) for the given motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported motion group models.
3866
3901
  * @summary Get Kinematics
3867
- * @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., &#x60;UniversalRobots_UR10e&#x60;. Get the &#x60;model&#x60; of a configured motion group with [getOptimizerConfiguration](getOptimizerConfiguration).
3902
+ * @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., &#x60;UniversalRobots_UR10e&#x60;. Get the &#x60;model&#x60; of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
3868
3903
  * @param {*} [options] Override http request option.
3869
3904
  * @throws {RequiredError}
3870
3905
  */
@@ -3881,9 +3916,9 @@ var MotionGroupModelsApi = class extends BaseAPI {
3881
3916
  return MotionGroupModelsApiFp(this.configuration).getMotionGroupModels(options).then((request) => request(this.axios, this.basePath));
3882
3917
  }
3883
3918
  /**
3884
- * Returns the USD scene model for the specified motion group model. See [getMotionGroupModels](getMotionGroupModels) for supported identifiers.
3919
+ * Returns the USD scene model for the specified motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported identifiers.
3885
3920
  * @summary Download USD Model
3886
- * @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., &#x60;UniversalRobots_UR10e&#x60;. Get the &#x60;model&#x60; of a configured motion group with [getOptimizerConfiguration](getOptimizerConfiguration).
3921
+ * @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., &#x60;UniversalRobots_UR10e&#x60;. Get the &#x60;model&#x60; of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
3887
3922
  * @param {*} [options] Override http request option.
3888
3923
  * @throws {RequiredError}
3889
3924
  */
@@ -3910,7 +3945,6 @@ const ProgramApiAxiosParamCreator = function(configuration) {
3910
3945
  };
3911
3946
  const localVarHeaderParameter = {};
3912
3947
  const localVarQueryParameter = {};
3913
- setBasicAuthToObject(localVarRequestOptions, configuration);
3914
3948
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3915
3949
  setSearchParams(localVarUrlObj, localVarQueryParameter);
3916
3950
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -3937,7 +3971,6 @@ const ProgramApiAxiosParamCreator = function(configuration) {
3937
3971
  };
3938
3972
  const localVarHeaderParameter = {};
3939
3973
  const localVarQueryParameter = {};
3940
- setBasicAuthToObject(localVarRequestOptions, configuration);
3941
3974
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3942
3975
  setSearchParams(localVarUrlObj, localVarQueryParameter);
3943
3976
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -3966,7 +3999,6 @@ const ProgramApiAxiosParamCreator = function(configuration) {
3966
3999
  };
3967
4000
  const localVarHeaderParameter = {};
3968
4001
  const localVarQueryParameter = {};
3969
- setBasicAuthToObject(localVarRequestOptions, configuration);
3970
4002
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3971
4003
  localVarHeaderParameter["Content-Type"] = "application/json";
3972
4004
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -3996,7 +4028,6 @@ const ProgramApiAxiosParamCreator = function(configuration) {
3996
4028
  };
3997
4029
  const localVarHeaderParameter = {};
3998
4030
  const localVarQueryParameter = {};
3999
- setBasicAuthToObject(localVarRequestOptions, configuration);
4000
4031
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4001
4032
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4002
4033
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -4128,7 +4159,6 @@ const RobotConfigurationsApiAxiosParamCreator = function(configuration) {
4128
4159
  };
4129
4160
  const localVarHeaderParameter = {};
4130
4161
  const localVarQueryParameter = {};
4131
- setBasicAuthToObject(localVarRequestOptions, configuration);
4132
4162
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4133
4163
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4134
4164
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -4197,7 +4227,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
4197
4227
  };
4198
4228
  const localVarHeaderParameter = {};
4199
4229
  const localVarQueryParameter = {};
4200
- setBasicAuthToObject(localVarRequestOptions, configuration);
4201
4230
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4202
4231
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4203
4232
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -4225,7 +4254,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
4225
4254
  };
4226
4255
  const localVarHeaderParameter = {};
4227
4256
  const localVarQueryParameter = {};
4228
- setBasicAuthToObject(localVarRequestOptions, configuration);
4229
4257
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4230
4258
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4231
4259
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -4253,7 +4281,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
4253
4281
  };
4254
4282
  const localVarHeaderParameter = {};
4255
4283
  const localVarQueryParameter = {};
4256
- setBasicAuthToObject(localVarRequestOptions, configuration);
4257
4284
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4258
4285
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4259
4286
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -4281,7 +4308,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
4281
4308
  };
4282
4309
  const localVarHeaderParameter = {};
4283
4310
  const localVarQueryParameter = {};
4284
- setBasicAuthToObject(localVarRequestOptions, configuration);
4285
4311
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4286
4312
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4287
4313
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -4309,7 +4335,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
4309
4335
  };
4310
4336
  const localVarHeaderParameter = {};
4311
4337
  const localVarQueryParameter = {};
4312
- setBasicAuthToObject(localVarRequestOptions, configuration);
4313
4338
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4314
4339
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4315
4340
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -4337,7 +4362,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
4337
4362
  };
4338
4363
  const localVarHeaderParameter = {};
4339
4364
  const localVarQueryParameter = {};
4340
- setBasicAuthToObject(localVarRequestOptions, configuration);
4341
4365
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4342
4366
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4343
4367
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -4364,7 +4388,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
4364
4388
  };
4365
4389
  const localVarHeaderParameter = {};
4366
4390
  const localVarQueryParameter = {};
4367
- setBasicAuthToObject(localVarRequestOptions, configuration);
4368
4391
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4369
4392
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4370
4393
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -4391,7 +4414,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
4391
4414
  };
4392
4415
  const localVarHeaderParameter = {};
4393
4416
  const localVarQueryParameter = {};
4394
- setBasicAuthToObject(localVarRequestOptions, configuration);
4395
4417
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4396
4418
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4397
4419
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -4418,7 +4440,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
4418
4440
  };
4419
4441
  const localVarHeaderParameter = {};
4420
4442
  const localVarQueryParameter = {};
4421
- setBasicAuthToObject(localVarRequestOptions, configuration);
4422
4443
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4423
4444
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4424
4445
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -4445,7 +4466,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
4445
4466
  };
4446
4467
  const localVarHeaderParameter = {};
4447
4468
  const localVarQueryParameter = {};
4448
- setBasicAuthToObject(localVarRequestOptions, configuration);
4449
4469
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4450
4470
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4451
4471
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -4472,7 +4492,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
4472
4492
  };
4473
4493
  const localVarHeaderParameter = {};
4474
4494
  const localVarQueryParameter = {};
4475
- setBasicAuthToObject(localVarRequestOptions, configuration);
4476
4495
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4477
4496
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4478
4497
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -4499,7 +4518,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
4499
4518
  };
4500
4519
  const localVarHeaderParameter = {};
4501
4520
  const localVarQueryParameter = {};
4502
- setBasicAuthToObject(localVarRequestOptions, configuration);
4503
4521
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4504
4522
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4505
4523
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -4528,7 +4546,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
4528
4546
  };
4529
4547
  const localVarHeaderParameter = {};
4530
4548
  const localVarQueryParameter = {};
4531
- setBasicAuthToObject(localVarRequestOptions, configuration);
4532
4549
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4533
4550
  localVarHeaderParameter["Content-Type"] = "application/json";
4534
4551
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -4559,7 +4576,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
4559
4576
  };
4560
4577
  const localVarHeaderParameter = {};
4561
4578
  const localVarQueryParameter = {};
4562
- setBasicAuthToObject(localVarRequestOptions, configuration);
4563
4579
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4564
4580
  localVarHeaderParameter["Content-Type"] = "application/json";
4565
4581
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -4590,7 +4606,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
4590
4606
  };
4591
4607
  const localVarHeaderParameter = {};
4592
4608
  const localVarQueryParameter = {};
4593
- setBasicAuthToObject(localVarRequestOptions, configuration);
4594
4609
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4595
4610
  localVarHeaderParameter["Content-Type"] = "application/json";
4596
4611
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -4945,7 +4960,6 @@ const StoreCollisionSetupsApiAxiosParamCreator = function(configuration) {
4945
4960
  };
4946
4961
  const localVarHeaderParameter = {};
4947
4962
  const localVarQueryParameter = {};
4948
- setBasicAuthToObject(localVarRequestOptions, configuration);
4949
4963
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4950
4964
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4951
4965
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -4973,7 +4987,6 @@ const StoreCollisionSetupsApiAxiosParamCreator = function(configuration) {
4973
4987
  };
4974
4988
  const localVarHeaderParameter = {};
4975
4989
  const localVarQueryParameter = {};
4976
- setBasicAuthToObject(localVarRequestOptions, configuration);
4977
4990
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4978
4991
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4979
4992
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -5000,7 +5013,6 @@ const StoreCollisionSetupsApiAxiosParamCreator = function(configuration) {
5000
5013
  };
5001
5014
  const localVarHeaderParameter = {};
5002
5015
  const localVarQueryParameter = {};
5003
- setBasicAuthToObject(localVarRequestOptions, configuration);
5004
5016
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5005
5017
  setSearchParams(localVarUrlObj, localVarQueryParameter);
5006
5018
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -5027,7 +5039,6 @@ const StoreCollisionSetupsApiAxiosParamCreator = function(configuration) {
5027
5039
  };
5028
5040
  const localVarHeaderParameter = {};
5029
5041
  const localVarQueryParameter = {};
5030
- setBasicAuthToObject(localVarRequestOptions, configuration);
5031
5042
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5032
5043
  setSearchParams(localVarUrlObj, localVarQueryParameter);
5033
5044
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -5056,7 +5067,6 @@ const StoreCollisionSetupsApiAxiosParamCreator = function(configuration) {
5056
5067
  };
5057
5068
  const localVarHeaderParameter = {};
5058
5069
  const localVarQueryParameter = {};
5059
- setBasicAuthToObject(localVarRequestOptions, configuration);
5060
5070
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5061
5071
  localVarHeaderParameter["Content-Type"] = "application/json";
5062
5072
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -5212,7 +5222,6 @@ const StoreObjectApiAxiosParamCreator = function(configuration) {
5212
5222
  };
5213
5223
  const localVarHeaderParameter = {};
5214
5224
  const localVarQueryParameter = {};
5215
- setBasicAuthToObject(localVarRequestOptions, configuration);
5216
5225
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5217
5226
  setSearchParams(localVarUrlObj, localVarQueryParameter);
5218
5227
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -5240,7 +5249,6 @@ const StoreObjectApiAxiosParamCreator = function(configuration) {
5240
5249
  };
5241
5250
  const localVarHeaderParameter = {};
5242
5251
  const localVarQueryParameter = {};
5243
- setBasicAuthToObject(localVarRequestOptions, configuration);
5244
5252
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5245
5253
  setSearchParams(localVarUrlObj, localVarQueryParameter);
5246
5254
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -5268,7 +5276,6 @@ const StoreObjectApiAxiosParamCreator = function(configuration) {
5268
5276
  };
5269
5277
  const localVarHeaderParameter = {};
5270
5278
  const localVarQueryParameter = {};
5271
- setBasicAuthToObject(localVarRequestOptions, configuration);
5272
5279
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5273
5280
  setSearchParams(localVarUrlObj, localVarQueryParameter);
5274
5281
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -5296,7 +5303,6 @@ const StoreObjectApiAxiosParamCreator = function(configuration) {
5296
5303
  };
5297
5304
  const localVarHeaderParameter = {};
5298
5305
  const localVarQueryParameter = {};
5299
- setBasicAuthToObject(localVarRequestOptions, configuration);
5300
5306
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5301
5307
  setSearchParams(localVarUrlObj, localVarQueryParameter);
5302
5308
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -5323,7 +5329,6 @@ const StoreObjectApiAxiosParamCreator = function(configuration) {
5323
5329
  };
5324
5330
  const localVarHeaderParameter = {};
5325
5331
  const localVarQueryParameter = {};
5326
- setBasicAuthToObject(localVarRequestOptions, configuration);
5327
5332
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5328
5333
  setSearchParams(localVarUrlObj, localVarQueryParameter);
5329
5334
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -5352,7 +5357,6 @@ const StoreObjectApiAxiosParamCreator = function(configuration) {
5352
5357
  const localVarHeaderParameter = {};
5353
5358
  const localVarQueryParameter = {};
5354
5359
  const localVarFormParams = new (configuration && configuration.formDataCtor || FormData)();
5355
- setBasicAuthToObject(localVarRequestOptions, configuration);
5356
5360
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5357
5361
  if (anyValue !== void 0) localVarFormParams.append("any_value", new Blob([JSON.stringify(anyValue)], { type: "application/json" }));
5358
5362
  localVarHeaderParameter["Content-Type"] = "multipart/form-data";
@@ -5500,7 +5504,7 @@ var StoreObjectApi = class extends BaseAPI {
5500
5504
  return StoreObjectApiFp(this.configuration).listAllObjectKeys(cell, options).then((request) => request(this.axios, this.basePath));
5501
5505
  }
5502
5506
  /**
5503
- * 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.
5507
+ * 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.
5504
5508
  * @summary Store Object
5505
5509
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5506
5510
  * @param {string} key
@@ -5529,7 +5533,6 @@ const SystemApiAxiosParamCreator = function(configuration) {
5529
5533
  };
5530
5534
  const localVarHeaderParameter = {};
5531
5535
  const localVarQueryParameter = {};
5532
- setBasicAuthToObject(localVarRequestOptions, configuration);
5533
5536
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5534
5537
  if (resources) localVarQueryParameter["resources"] = resources.join(COLLECTION_FORMATS.csv);
5535
5538
  if (metadata !== void 0) localVarQueryParameter["metadata"] = metadata;
@@ -5557,7 +5560,6 @@ const SystemApiAxiosParamCreator = function(configuration) {
5557
5560
  };
5558
5561
  const localVarHeaderParameter = {};
5559
5562
  const localVarQueryParameter = {};
5560
- setBasicAuthToObject(localVarRequestOptions, configuration);
5561
5563
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5562
5564
  if (channel !== void 0) localVarQueryParameter["channel"] = channel;
5563
5565
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -5583,7 +5585,6 @@ const SystemApiAxiosParamCreator = function(configuration) {
5583
5585
  };
5584
5586
  const localVarHeaderParameter = {};
5585
5587
  const localVarQueryParameter = {};
5586
- setBasicAuthToObject(localVarRequestOptions, configuration);
5587
5588
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5588
5589
  if (_interface !== void 0) localVarQueryParameter["interface"] = _interface;
5589
5590
  if (cidr !== void 0) localVarQueryParameter["cidr"] = cidr;
@@ -5612,7 +5613,6 @@ const SystemApiAxiosParamCreator = function(configuration) {
5612
5613
  };
5613
5614
  const localVarHeaderParameter = {};
5614
5615
  const localVarQueryParameter = {};
5615
- setBasicAuthToObject(localVarRequestOptions, configuration);
5616
5616
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5617
5617
  if (operationId !== void 0) localVarQueryParameter["operation_id"] = operationId;
5618
5618
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -5638,7 +5638,6 @@ const SystemApiAxiosParamCreator = function(configuration) {
5638
5638
  };
5639
5639
  const localVarHeaderParameter = {};
5640
5640
  const localVarQueryParameter = {};
5641
- setBasicAuthToObject(localVarRequestOptions, configuration);
5642
5641
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5643
5642
  setSearchParams(localVarUrlObj, localVarQueryParameter);
5644
5643
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -5663,7 +5662,6 @@ const SystemApiAxiosParamCreator = function(configuration) {
5663
5662
  };
5664
5663
  const localVarHeaderParameter = {};
5665
5664
  const localVarQueryParameter = {};
5666
- setBasicAuthToObject(localVarRequestOptions, configuration);
5667
5665
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5668
5666
  setSearchParams(localVarUrlObj, localVarQueryParameter);
5669
5667
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -5688,7 +5686,6 @@ const SystemApiAxiosParamCreator = function(configuration) {
5688
5686
  };
5689
5687
  const localVarHeaderParameter = {};
5690
5688
  const localVarQueryParameter = {};
5691
- setBasicAuthToObject(localVarRequestOptions, configuration);
5692
5689
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5693
5690
  setSearchParams(localVarUrlObj, localVarQueryParameter);
5694
5691
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -5713,7 +5710,6 @@ const SystemApiAxiosParamCreator = function(configuration) {
5713
5710
  };
5714
5711
  const localVarHeaderParameter = {};
5715
5712
  const localVarQueryParameter = {};
5716
- setBasicAuthToObject(localVarRequestOptions, configuration);
5717
5713
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5718
5714
  setSearchParams(localVarUrlObj, localVarQueryParameter);
5719
5715
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -5738,7 +5734,6 @@ const SystemApiAxiosParamCreator = function(configuration) {
5738
5734
  };
5739
5735
  const localVarHeaderParameter = {};
5740
5736
  const localVarQueryParameter = {};
5741
- setBasicAuthToObject(localVarRequestOptions, configuration);
5742
5737
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5743
5738
  setSearchParams(localVarUrlObj, localVarQueryParameter);
5744
5739
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -5763,7 +5758,6 @@ const SystemApiAxiosParamCreator = function(configuration) {
5763
5758
  };
5764
5759
  const localVarHeaderParameter = {};
5765
5760
  const localVarQueryParameter = {};
5766
- setBasicAuthToObject(localVarRequestOptions, configuration);
5767
5761
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5768
5762
  setSearchParams(localVarUrlObj, localVarQueryParameter);
5769
5763
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -5789,7 +5783,6 @@ const SystemApiAxiosParamCreator = function(configuration) {
5789
5783
  };
5790
5784
  const localVarHeaderParameter = {};
5791
5785
  const localVarQueryParameter = {};
5792
- setBasicAuthToObject(localVarRequestOptions, configuration);
5793
5786
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5794
5787
  if (resources) localVarQueryParameter["resources"] = resources.join(COLLECTION_FORMATS.csv);
5795
5788
  localVarHeaderParameter["Content-Type"] = "application/gzip";
@@ -5818,7 +5811,6 @@ const SystemApiAxiosParamCreator = function(configuration) {
5818
5811
  };
5819
5812
  const localVarHeaderParameter = {};
5820
5813
  const localVarQueryParameter = {};
5821
- setBasicAuthToObject(localVarRequestOptions, configuration);
5822
5814
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5823
5815
  localVarHeaderParameter["Content-Type"] = "application/json";
5824
5816
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -6073,7 +6065,7 @@ var SystemApi = class extends BaseAPI {
6073
6065
  return SystemApiFp(this.configuration).restoreConfiguration(body, resources, options).then((request) => request(this.axios, this.basePath));
6074
6066
  }
6075
6067
  /**
6076
- * Update the Wandelbots NOVA version and all attached services. Sending this API Request will trigger an update of all NOVA services that are part of a cell. Previous cells and cell configurations will remain on the instance. If the update fails, the previous Wandelbots NOVA version is restored.
6068
+ * Update the Wandelbots NOVA version and all attached services. Sending this API Request will trigger an update of all NOVA services that are part of a cell. Previous cells and cell configurations will remain on the instance. If the update fails, the previous Wandelbots NOVA version is restored. System updates only apply to cells without an explicit chart version. Pinned versions are always preserved; setting `update_cells=false` pins unversioned cells to the current system version before updating.
6077
6069
  * @summary Update Wandelbots NOVA version
6078
6070
  * @param {UpdateNovaVersionRequest} updateNovaVersionRequest
6079
6071
  * @param {*} [options] Override http request option.
@@ -6103,7 +6095,6 @@ const TrajectoryCachingApiAxiosParamCreator = function(configuration) {
6103
6095
  };
6104
6096
  const localVarHeaderParameter = {};
6105
6097
  const localVarQueryParameter = {};
6106
- setBasicAuthToObject(localVarRequestOptions, configuration);
6107
6098
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6108
6099
  localVarHeaderParameter["Content-Type"] = "application/json";
6109
6100
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -6133,7 +6124,6 @@ const TrajectoryCachingApiAxiosParamCreator = function(configuration) {
6133
6124
  };
6134
6125
  const localVarHeaderParameter = {};
6135
6126
  const localVarQueryParameter = {};
6136
- setBasicAuthToObject(localVarRequestOptions, configuration);
6137
6127
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6138
6128
  setSearchParams(localVarUrlObj, localVarQueryParameter);
6139
6129
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -6162,7 +6152,6 @@ const TrajectoryCachingApiAxiosParamCreator = function(configuration) {
6162
6152
  };
6163
6153
  const localVarHeaderParameter = {};
6164
6154
  const localVarQueryParameter = {};
6165
- setBasicAuthToObject(localVarRequestOptions, configuration);
6166
6155
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6167
6156
  setSearchParams(localVarUrlObj, localVarQueryParameter);
6168
6157
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -6191,7 +6180,6 @@ const TrajectoryCachingApiAxiosParamCreator = function(configuration) {
6191
6180
  };
6192
6181
  const localVarHeaderParameter = {};
6193
6182
  const localVarQueryParameter = {};
6194
- setBasicAuthToObject(localVarRequestOptions, configuration);
6195
6183
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6196
6184
  setSearchParams(localVarUrlObj, localVarQueryParameter);
6197
6185
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -6219,7 +6207,6 @@ const TrajectoryCachingApiAxiosParamCreator = function(configuration) {
6219
6207
  };
6220
6208
  const localVarHeaderParameter = {};
6221
6209
  const localVarQueryParameter = {};
6222
- setBasicAuthToObject(localVarRequestOptions, configuration);
6223
6210
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6224
6211
  setSearchParams(localVarUrlObj, localVarQueryParameter);
6225
6212
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -6301,7 +6288,7 @@ const TrajectoryCachingApiFactory = function(configuration, basePath, axios$1) {
6301
6288
  */
6302
6289
  var TrajectoryCachingApi = class extends BaseAPI {
6303
6290
  /**
6304
- * Loads and validates the data of a trajectory into the execution cache, rendering the trajectory executable. <!-- theme: info --> > #### NOTE > > Using the trajectory cache is an optional performance optimization. It is not necessary to use the cache to execute trajectories. The response contains the result of the validation of the trajectory. Validation can lead to three different results: - Fully valid: The whole trajectory can be executed from start to end. The response will contain an unique identifier which is used to move the robot. - Partially valid: Only parts of the trajectory can be executed. The response will contain an unique identifier to move the robot and information about the failure for the part that is not executable. - Invalid: The trajectory can not be executed. The response will tell you the reason of failure. If the trajectory is at least partially valid, the parts of the trajectory that are valid can be executed using the [executeTrajectory](executeTrajectory) endpoint. The workflow is as follows: - Generate a trajectory with [planTrajectory](planTrajectory) or your own motion planner, - Send the trajectory to this endpoint to validate it and get a unique identifier for it, - The unique identifier will appear in the list of available trajectories, see [listTrajectories](listTrajectories) endpoint, if it is at least partially executable. - Execute your trajectory using the [executeTrajectory](executeTrajectory) endpoint.
6291
+ * Loads and validates the data of a trajectory into the execution cache, rendering the trajectory executable. <!-- theme: info --> > #### NOTE > > Using the trajectory cache is an optional performance optimization. It is not necessary to use the cache to execute trajectories. The response contains the result of the validation of the trajectory. Validation can lead to three different results: - Fully valid: The whole trajectory can be executed from start to end. The response will contain an unique identifier which is used to move the robot. - Partially valid: Only parts of the trajectory can be executed. The response will contain an unique identifier to move the robot and information about the failure for the part that is not executable. - Invalid: The trajectory can not be executed. The response will tell you the reason of failure. If the trajectory is at least partially valid, the parts of the trajectory that are valid can be executed using the [executeTrajectory](#/operations/executeTrajectory) endpoint. The workflow is as follows: - Generate a trajectory with [planTrajectory](#/operations/planTrajectory) or your own motion planner, - Send the trajectory to this endpoint to validate it and get a unique identifier for it, - The unique identifier will appear in the list of available trajectories, see [listTrajectories](#/operations/listTrajectories) endpoint, if it is at least partially executable. - Execute your trajectory using the [executeTrajectory](#/operations/executeTrajectory) endpoint.
6305
6292
  * @summary Add Trajectory
6306
6293
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6307
6294
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -6324,7 +6311,7 @@ var TrajectoryCachingApi = class extends BaseAPI {
6324
6311
  return TrajectoryCachingApiFp(this.configuration).clearTrajectories(cell, controller, options).then((request) => request(this.axios, this.basePath));
6325
6312
  }
6326
6313
  /**
6327
- * Delete a previously created trajectory from cache. Use [listTrajectories](listTrajectories) to list all cached trajectories. Trajectories are removed automatically if the motion group or the corresponding controller is disconnected.
6314
+ * Delete a previously created trajectory from cache. Use [listTrajectories](#/operations/listTrajectories) to list all cached trajectories. Trajectories are removed automatically if the motion group or the corresponding controller is disconnected.
6328
6315
  * @summary Delete Trajectory
6329
6316
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6330
6317
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -6336,7 +6323,7 @@ var TrajectoryCachingApi = class extends BaseAPI {
6336
6323
  return TrajectoryCachingApiFp(this.configuration).deleteTrajectory(cell, controller, trajectory, options).then((request) => request(this.axios, this.basePath));
6337
6324
  }
6338
6325
  /**
6339
- * Get a previously created trajectory from cache. Use [listTrajectories](listTrajectories) to list all cached trajectories.
6326
+ * Get a previously created trajectory from cache. Use [listTrajectories](#/operations/listTrajectories) to list all cached trajectories.
6340
6327
  * @summary Get Trajectory
6341
6328
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6342
6329
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -6348,7 +6335,7 @@ var TrajectoryCachingApi = class extends BaseAPI {
6348
6335
  return TrajectoryCachingApiFp(this.configuration).getTrajectory(cell, controller, trajectory, options).then((request) => request(this.axios, this.basePath));
6349
6336
  }
6350
6337
  /**
6351
- * List currently cached trajectories. Use [addTrajectory](addTrajectory) to add a new trajectory. Adding trajectories is necessary to execute them. Trajectories are removed if the corresponding motion group or controller disconnects.
6338
+ * List currently cached trajectories. Use [addTrajectory](#/operations/addTrajectory) to add a new trajectory. Adding trajectories is necessary to execute them. Trajectories are removed if the corresponding motion group or controller disconnects.
6352
6339
  * @summary List Trajectories
6353
6340
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6354
6341
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -6378,7 +6365,6 @@ const TrajectoryExecutionApiAxiosParamCreator = function(configuration) {
6378
6365
  };
6379
6366
  const localVarHeaderParameter = {};
6380
6367
  const localVarQueryParameter = {};
6381
- setBasicAuthToObject(localVarRequestOptions, configuration);
6382
6368
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6383
6369
  localVarHeaderParameter["Content-Type"] = "application/json";
6384
6370
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -6421,7 +6407,7 @@ const TrajectoryExecutionApiFactory = function(configuration, basePath, axios$1)
6421
6407
  */
6422
6408
  var TrajectoryExecutionApi = class extends BaseAPI {
6423
6409
  /**
6424
- * <!-- theme: success --> > Websocket endpoint Provides execution control over a previously [planned trajectory](planTrajectory). Enables the caller to attach input/output actions to the trajectory. ### Movement behavior | Virtual controller | Physical controller | |------------------|-------------------| | Desired joint configurations are commanded to each motion group and **applied immediately** | Move to desired **actual joint configuration**, **if possible** | ### 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 [planTrajectory](planTrajectory). - 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 are at start location specified with `InitializeMovementRequest`. - Use [executeToTrajectory](executeToTrajectory) to move the robot to the start location. ### 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. Pausing the current movement enables you to send another `InitializeMovementRequest` to execute another trajectory on the same connection. #### 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 To monitor the state of the movement, listen to the [state stream](streamMotionGroupState). The state is published via nats as well. Field `execute` in the `MotionGroupState` indicates whether a movement is ongoing and carries execution details. Each request has a corresponding acknowledgment response. They signal success or failure of the request. Especially for `PauseMovementResponse`, it does not signal the end of the movement. Additionally, `MovementError` messages can be sent in case of unexpected errors during the execution, 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.
6410
+ * <!-- theme: success --> > Websocket endpoint Provides execution control over a previously [planned trajectory](#/operations/planTrajectory). Enables the caller to attach input/output actions to the trajectory. ### Movement behavior | Virtual controller | Physical controller | |------------------|-------------------| | Desired joint configurations are commanded to each motion group and **applied immediately** | Move to desired **actual joint configuration**, **if possible** | ### 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 [planTrajectory](#/operations/planTrajectory). - 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 are at start location specified with `InitializeMovementRequest`. - Use [executeToTrajectory](#/operations/executeToTrajectory) to move the robot to the start location. ### 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. Pausing the current movement enables you to send another `InitializeMovementRequest` to execute another trajectory on the same connection. #### 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 To monitor the state of the movement, listen to the [state stream](#/operations/streamMotionGroupState). The state is published via nats as well. Field `execute` in the `MotionGroupState` indicates whether a movement is ongoing and carries execution details. Each request has a corresponding acknowledgment response. They signal success or failure of the request. Especially for `PauseMovementResponse`, it does not signal the end of the movement. Additionally, `MovementError` messages can be sent in case of unexpected errors during the execution, 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.
6425
6411
  * @summary Execute Trajectory
6426
6412
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6427
6413
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -6452,7 +6438,6 @@ const TrajectoryPlanningApiAxiosParamCreator = function(configuration) {
6452
6438
  };
6453
6439
  const localVarHeaderParameter = {};
6454
6440
  const localVarQueryParameter = {};
6455
- setBasicAuthToObject(localVarRequestOptions, configuration);
6456
6441
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6457
6442
  localVarHeaderParameter["Content-Type"] = "application/json";
6458
6443
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -6482,7 +6467,6 @@ const TrajectoryPlanningApiAxiosParamCreator = function(configuration) {
6482
6467
  };
6483
6468
  const localVarHeaderParameter = {};
6484
6469
  const localVarQueryParameter = {};
6485
- setBasicAuthToObject(localVarRequestOptions, configuration);
6486
6470
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6487
6471
  localVarHeaderParameter["Content-Type"] = "application/json";
6488
6472
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -6539,7 +6523,7 @@ const TrajectoryPlanningApiFactory = function(configuration, basePath, axios$1)
6539
6523
  */
6540
6524
  var TrajectoryPlanningApi = class extends BaseAPI {
6541
6525
  /**
6542
- * Plans a collision-free trajectory for a single motion group using point-to-point (PTP) motions. This endpoint is specifically designed for collision-free path planning algorithms that find a trajectory from a start joint position to a target position while avoiding obstacles. Use the following workflow to execute a planned collision-free trajectory: 1. Plan a collision-free trajectory. 2. Optional: Load the planned trajectory into the cache using the [addTrajectory](addTrajectory) endpoint. 3. Execute the (cached) trajectory using the [executeTrajectory](executeTrajectory) endpoint. If the trajectory planning fails due to collision or algorithm constraints, the response will contain error information about the failure.
6526
+ * Plans a collision-free trajectory for a single motion group using point-to-point (PTP) motions. This endpoint is specifically designed for collision-free path planning algorithms that find a trajectory from a start joint position to a target position while avoiding obstacles. Use the following workflow to execute a planned collision-free trajectory: 1. Plan a collision-free trajectory. 2. Optional: Load the planned trajectory into the cache using the [addTrajectory](#/operations/addTrajectory) endpoint. 3. Execute the (cached) trajectory using the [executeTrajectory](#/operations/executeTrajectory) endpoint. If the trajectory planning fails due to collision or algorithm constraints, the response will contain error information about the failure.
6543
6527
  * @summary Plan Collision-Free Trajectory
6544
6528
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6545
6529
  * @param {PlanCollisionFreeRequest} planCollisionFreeRequest
@@ -6550,7 +6534,7 @@ var TrajectoryPlanningApi = class extends BaseAPI {
6550
6534
  return TrajectoryPlanningApiFp(this.configuration).planCollisionFree(cell, planCollisionFreeRequest, options).then((request) => request(this.axios, this.basePath));
6551
6535
  }
6552
6536
  /**
6553
- * 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. Optional: Load the planned trajectory into the cache using the [addTrajectory](addTrajectory) endpoint. 3. Execute the (cached) trajectory using the [executeTrajectory](executeTrajectory) endpoint. If the trajectory is not executable, the response will contain the joint trajectory up until the error, e.g., all samples until a collision occurs. <!-- theme: info --> > #### 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.
6537
+ * 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. Optional: Load the planned trajectory into the cache using the [addTrajectory](#/operations/addTrajectory) endpoint. 3. Execute the (cached) trajectory using the [executeTrajectory](#/operations/executeTrajectory) endpoint. If the trajectory is not executable, the response will contain the joint trajectory up until the error, e.g., all samples until a collision occurs. <!-- theme: info --> > #### 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.
6554
6538
  * @summary Plan Trajectory
6555
6539
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6556
6540
  * @param {PlanTrajectoryRequest} planTrajectoryRequest
@@ -6576,7 +6560,6 @@ const VersionApiAxiosParamCreator = function(configuration) {
6576
6560
  };
6577
6561
  const localVarHeaderParameter = {};
6578
6562
  const localVarQueryParameter = {};
6579
- setBasicAuthToObject(localVarRequestOptions, configuration);
6580
6563
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6581
6564
  setSearchParams(localVarUrlObj, localVarQueryParameter);
6582
6565
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -6647,7 +6630,6 @@ const VirtualControllerApiAxiosParamCreator = function(configuration) {
6647
6630
  };
6648
6631
  const localVarHeaderParameter = {};
6649
6632
  const localVarQueryParameter = {};
6650
- setBasicAuthToObject(localVarRequestOptions, configuration);
6651
6633
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6652
6634
  localVarHeaderParameter["Content-Type"] = "application/json";
6653
6635
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -6663,6 +6645,36 @@ const VirtualControllerApiAxiosParamCreator = function(configuration) {
6663
6645
  options: localVarRequestOptions
6664
6646
  };
6665
6647
  },
6648
+ addVirtualControllerMotionGroup: async (cell, controller, addVirtualControllerMotionGroupRequest, options = {}) => {
6649
+ assertParamExists("addVirtualControllerMotionGroup", "cell", cell);
6650
+ assertParamExists("addVirtualControllerMotionGroup", "controller", controller);
6651
+ assertParamExists("addVirtualControllerMotionGroup", "addVirtualControllerMotionGroupRequest", addVirtualControllerMotionGroupRequest);
6652
+ const localVarPath = `/cells/{cell}/virtual-controllers/{controller}/motion-groups`.replace(`{cell}`, encodeURIComponent(String(cell))).replace(`{controller}`, encodeURIComponent(String(controller)));
6653
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
6654
+ let baseOptions;
6655
+ if (configuration) baseOptions = configuration.baseOptions;
6656
+ const localVarRequestOptions = {
6657
+ method: "POST",
6658
+ ...baseOptions,
6659
+ ...options
6660
+ };
6661
+ const localVarHeaderParameter = {};
6662
+ const localVarQueryParameter = {};
6663
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
6664
+ localVarHeaderParameter["Content-Type"] = "application/json";
6665
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
6666
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
6667
+ localVarRequestOptions.headers = {
6668
+ ...localVarHeaderParameter,
6669
+ ...headersFromBaseOptions,
6670
+ ...options.headers
6671
+ };
6672
+ localVarRequestOptions.data = serializeDataIfNeeded(addVirtualControllerMotionGroupRequest, localVarRequestOptions, configuration);
6673
+ return {
6674
+ url: toPathString(localVarUrlObj),
6675
+ options: localVarRequestOptions
6676
+ };
6677
+ },
6666
6678
  addVirtualControllerTcp: async (cell, controller, motionGroup, tcp, robotTcpData, options = {}) => {
6667
6679
  assertParamExists("addVirtualControllerTcp", "cell", cell);
6668
6680
  assertParamExists("addVirtualControllerTcp", "controller", controller);
@@ -6680,7 +6692,6 @@ const VirtualControllerApiAxiosParamCreator = function(configuration) {
6680
6692
  };
6681
6693
  const localVarHeaderParameter = {};
6682
6694
  const localVarQueryParameter = {};
6683
- setBasicAuthToObject(localVarRequestOptions, configuration);
6684
6695
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6685
6696
  localVarHeaderParameter["Content-Type"] = "application/json";
6686
6697
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -6711,7 +6722,6 @@ const VirtualControllerApiAxiosParamCreator = function(configuration) {
6711
6722
  };
6712
6723
  const localVarHeaderParameter = {};
6713
6724
  const localVarQueryParameter = {};
6714
- setBasicAuthToObject(localVarRequestOptions, configuration);
6715
6725
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6716
6726
  if (deleteDependent !== void 0) localVarQueryParameter["delete_dependent"] = deleteDependent;
6717
6727
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -6726,6 +6736,34 @@ const VirtualControllerApiAxiosParamCreator = function(configuration) {
6726
6736
  options: localVarRequestOptions
6727
6737
  };
6728
6738
  },
6739
+ deleteVirtualControllerMotionGroup: async (cell, controller, motionGroup, options = {}) => {
6740
+ assertParamExists("deleteVirtualControllerMotionGroup", "cell", cell);
6741
+ assertParamExists("deleteVirtualControllerMotionGroup", "controller", controller);
6742
+ assertParamExists("deleteVirtualControllerMotionGroup", "motionGroup", motionGroup);
6743
+ const localVarPath = `/cells/{cell}/virtual-controllers/{controller}/motion-groups/{motion-group}`.replace(`{cell}`, encodeURIComponent(String(cell))).replace(`{controller}`, encodeURIComponent(String(controller))).replace(`{motion-group}`, encodeURIComponent(String(motionGroup)));
6744
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
6745
+ let baseOptions;
6746
+ if (configuration) baseOptions = configuration.baseOptions;
6747
+ const localVarRequestOptions = {
6748
+ method: "DELETE",
6749
+ ...baseOptions,
6750
+ ...options
6751
+ };
6752
+ const localVarHeaderParameter = {};
6753
+ const localVarQueryParameter = {};
6754
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
6755
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
6756
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
6757
+ localVarRequestOptions.headers = {
6758
+ ...localVarHeaderParameter,
6759
+ ...headersFromBaseOptions,
6760
+ ...options.headers
6761
+ };
6762
+ return {
6763
+ url: toPathString(localVarUrlObj),
6764
+ options: localVarRequestOptions
6765
+ };
6766
+ },
6729
6767
  deleteVirtualControllerTcp: async (cell, controller, motionGroup, tcp, options = {}) => {
6730
6768
  assertParamExists("deleteVirtualControllerTcp", "cell", cell);
6731
6769
  assertParamExists("deleteVirtualControllerTcp", "controller", controller);
@@ -6742,7 +6780,6 @@ const VirtualControllerApiAxiosParamCreator = function(configuration) {
6742
6780
  };
6743
6781
  const localVarHeaderParameter = {};
6744
6782
  const localVarQueryParameter = {};
6745
- setBasicAuthToObject(localVarRequestOptions, configuration);
6746
6783
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6747
6784
  setSearchParams(localVarUrlObj, localVarQueryParameter);
6748
6785
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -6770,7 +6807,6 @@ const VirtualControllerApiAxiosParamCreator = function(configuration) {
6770
6807
  };
6771
6808
  const localVarHeaderParameter = {};
6772
6809
  const localVarQueryParameter = {};
6773
- setBasicAuthToObject(localVarRequestOptions, configuration);
6774
6810
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6775
6811
  setSearchParams(localVarUrlObj, localVarQueryParameter);
6776
6812
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -6799,7 +6835,6 @@ const VirtualControllerApiAxiosParamCreator = function(configuration) {
6799
6835
  };
6800
6836
  const localVarHeaderParameter = {};
6801
6837
  const localVarQueryParameter = {};
6802
- setBasicAuthToObject(localVarRequestOptions, configuration);
6803
6838
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6804
6839
  setSearchParams(localVarUrlObj, localVarQueryParameter);
6805
6840
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -6827,7 +6862,6 @@ const VirtualControllerApiAxiosParamCreator = function(configuration) {
6827
6862
  };
6828
6863
  const localVarHeaderParameter = {};
6829
6864
  const localVarQueryParameter = {};
6830
- setBasicAuthToObject(localVarRequestOptions, configuration);
6831
6865
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6832
6866
  setSearchParams(localVarUrlObj, localVarQueryParameter);
6833
6867
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -6855,7 +6889,6 @@ const VirtualControllerApiAxiosParamCreator = function(configuration) {
6855
6889
  };
6856
6890
  const localVarHeaderParameter = {};
6857
6891
  const localVarQueryParameter = {};
6858
- setBasicAuthToObject(localVarRequestOptions, configuration);
6859
6892
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6860
6893
  setSearchParams(localVarUrlObj, localVarQueryParameter);
6861
6894
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -6884,7 +6917,6 @@ const VirtualControllerApiAxiosParamCreator = function(configuration) {
6884
6917
  };
6885
6918
  const localVarHeaderParameter = {};
6886
6919
  const localVarQueryParameter = {};
6887
- setBasicAuthToObject(localVarRequestOptions, configuration);
6888
6920
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6889
6921
  setSearchParams(localVarUrlObj, localVarQueryParameter);
6890
6922
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -6912,7 +6944,6 @@ const VirtualControllerApiAxiosParamCreator = function(configuration) {
6912
6944
  };
6913
6945
  const localVarHeaderParameter = {};
6914
6946
  const localVarQueryParameter = {};
6915
- setBasicAuthToObject(localVarRequestOptions, configuration);
6916
6947
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6917
6948
  setSearchParams(localVarUrlObj, localVarQueryParameter);
6918
6949
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -6941,7 +6972,6 @@ const VirtualControllerApiAxiosParamCreator = function(configuration) {
6941
6972
  };
6942
6973
  const localVarHeaderParameter = {};
6943
6974
  const localVarQueryParameter = {};
6944
- setBasicAuthToObject(localVarRequestOptions, configuration);
6945
6975
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6946
6976
  setSearchParams(localVarUrlObj, localVarQueryParameter);
6947
6977
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -6969,7 +6999,6 @@ const VirtualControllerApiAxiosParamCreator = function(configuration) {
6969
6999
  };
6970
7000
  const localVarHeaderParameter = {};
6971
7001
  const localVarQueryParameter = {};
6972
- setBasicAuthToObject(localVarRequestOptions, configuration);
6973
7002
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6974
7003
  if (active !== void 0) localVarQueryParameter["active"] = active;
6975
7004
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -7000,7 +7029,6 @@ const VirtualControllerApiAxiosParamCreator = function(configuration) {
7000
7029
  };
7001
7030
  const localVarHeaderParameter = {};
7002
7031
  const localVarQueryParameter = {};
7003
- setBasicAuthToObject(localVarRequestOptions, configuration);
7004
7032
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
7005
7033
  localVarHeaderParameter["Content-Type"] = "application/json";
7006
7034
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -7031,7 +7059,6 @@ const VirtualControllerApiAxiosParamCreator = function(configuration) {
7031
7059
  };
7032
7060
  const localVarHeaderParameter = {};
7033
7061
  const localVarQueryParameter = {};
7034
- setBasicAuthToObject(localVarRequestOptions, configuration);
7035
7062
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
7036
7063
  if (mode !== void 0) localVarQueryParameter["mode"] = mode;
7037
7064
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -7062,7 +7089,6 @@ const VirtualControllerApiAxiosParamCreator = function(configuration) {
7062
7089
  };
7063
7090
  const localVarHeaderParameter = {};
7064
7091
  const localVarQueryParameter = {};
7065
- setBasicAuthToObject(localVarRequestOptions, configuration);
7066
7092
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
7067
7093
  localVarHeaderParameter["Content-Type"] = "application/json";
7068
7094
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -7092,6 +7118,12 @@ const VirtualControllerApiFp = function(configuration) {
7092
7118
  const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.addVirtualControllerCoordinateSystem"]?.[localVarOperationServerIndex]?.url;
7093
7119
  return (axios$1, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$1, localVarOperationServerBasePath || basePath);
7094
7120
  },
7121
+ async addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options) {
7122
+ const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options);
7123
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
7124
+ const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.addVirtualControllerMotionGroup"]?.[localVarOperationServerIndex]?.url;
7125
+ return (axios$1, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$1, localVarOperationServerBasePath || basePath);
7126
+ },
7095
7127
  async addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options) {
7096
7128
  const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options);
7097
7129
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
@@ -7104,6 +7136,12 @@ const VirtualControllerApiFp = function(configuration) {
7104
7136
  const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.deleteVirtualControllerCoordinateSystem"]?.[localVarOperationServerIndex]?.url;
7105
7137
  return (axios$1, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$1, localVarOperationServerBasePath || basePath);
7106
7138
  },
7139
+ async deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options) {
7140
+ const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options);
7141
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
7142
+ const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.deleteVirtualControllerMotionGroup"]?.[localVarOperationServerIndex]?.url;
7143
+ return (axios$1, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$1, localVarOperationServerBasePath || basePath);
7144
+ },
7107
7145
  async deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options) {
7108
7146
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options);
7109
7147
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
@@ -7187,12 +7225,18 @@ const VirtualControllerApiFactory = function(configuration, basePath, axios$1) {
7187
7225
  addVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options) {
7188
7226
  return localVarFp.addVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options).then((request) => request(axios$1, basePath));
7189
7227
  },
7228
+ addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options) {
7229
+ return localVarFp.addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options).then((request) => request(axios$1, basePath));
7230
+ },
7190
7231
  addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options) {
7191
7232
  return localVarFp.addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options).then((request) => request(axios$1, basePath));
7192
7233
  },
7193
7234
  deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options) {
7194
7235
  return localVarFp.deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options).then((request) => request(axios$1, basePath));
7195
7236
  },
7237
+ deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options) {
7238
+ return localVarFp.deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options).then((request) => request(axios$1, basePath));
7239
+ },
7196
7240
  deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options) {
7197
7241
  return localVarFp.deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options).then((request) => request(axios$1, basePath));
7198
7242
  },
@@ -7249,6 +7293,18 @@ var VirtualControllerApi = class extends BaseAPI {
7249
7293
  return VirtualControllerApiFp(this.configuration).addVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options).then((request) => request(this.axios, this.basePath));
7250
7294
  }
7251
7295
  /**
7296
+ * Adds a motion group configuration for the virtual robot controller. Fields: - Only one of **motion_group_model** or **json** should be set. - **motion_group_model**: Identifies a single motion group. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported types. - **json**: Full JSON configuration of the virtual robot controller. This can be obtained from the physical controller\'s configuration via [getVirtualControllerConfiguration](#/operations/getVirtualControllerConfiguration). - **extracted_motion_group_id** (required when using json): The motion group identifier to extract from the provided JSON configuration. - **motion_group**: Unique identifier for the motion group to be added. - **initial_joint_position**: Specifies the initial joint position for the added motion group. <!-- theme: info --> > #### NOTE > > When a motion group is added, **the virtual robot is restarted** to apply the new configuration. > > During this restart: > - Robot visualization can temporarily disappear or appear outdated in the UI. > - Motion group changes are not immediately visible in visualizations. > - All connections to virtual robot are closed and re-established, which introduces a short delay before the system is fully operational again. > > The API call itself **does not wait until the restart and re-synchronization are complete**. > This means that immediately after a successful response, the new motion group may not yet be available for use.
7297
+ * @summary Add Motion Group
7298
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
7299
+ * @param {string} controller Unique identifier to address a controller in the cell.
7300
+ * @param {AddVirtualControllerMotionGroupRequest} addVirtualControllerMotionGroupRequest
7301
+ * @param {*} [options] Override http request option.
7302
+ * @throws {RequiredError}
7303
+ */
7304
+ addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options) {
7305
+ return VirtualControllerApiFp(this.configuration).addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options).then((request) => request(this.axios, this.basePath));
7306
+ }
7307
+ /**
7252
7308
  * Adds a new TCP or updates an existing TCP in the motion group. The position and rotation values in the request body are defined within the flange\'s coordinate system. > **NOTE** > > Ensure the TCP\'s position is within the robot\'s reach. Refer to the robot\'s documentation or data sheet for details like joint limits or reach. <!-- theme: info --> > #### NOTE > > When adding or updating a TCP, the **virtual robot is restarted** to apply the new configuration. > > During this restart: > - Robot visualization can temporarily disappear. > - The TCP may not be immediately visible or appear outdated in visualizations. > - All connections to virtual robot are closed and re-established, which introduces a short delay before the TCP is available for operation. > > The API call itself does **not wait until the restart and re-synchronization are complete**. > A successful response indicates that the request was accepted, but the TCP may not yet be visible nor usable.
7253
7309
  * @summary Add TCP
7254
7310
  * @param {string} cell Unique identifier addressing a cell in all API calls.
@@ -7276,6 +7332,18 @@ var VirtualControllerApi = class extends BaseAPI {
7276
7332
  return VirtualControllerApiFp(this.configuration).deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options).then((request) => request(this.axios, this.basePath));
7277
7333
  }
7278
7334
  /**
7335
+ * Removes a motion group configuration from the virtual controller. <!-- theme: info --> > #### NOTE > > When a motion group is removed, **the virtual robot is restarted** to apply the new configuration. > > During this restart: > - Robot visualization can temporarily disappear or appear outdated in the UI. > - Motion group changes are not immediately visible in visualizations. > - All connections to virtual robot are closed and re-established, which introduces a short delay before the system is fully operational again. > > The API call itself **does not wait until the restart and re-synchronization are complete**.
7336
+ * @summary Delete Motion Group
7337
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
7338
+ * @param {string} controller Unique identifier to address a controller in the cell.
7339
+ * @param {string} motionGroup The motion-group identifier.
7340
+ * @param {*} [options] Override http request option.
7341
+ * @throws {RequiredError}
7342
+ */
7343
+ deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options) {
7344
+ return VirtualControllerApiFp(this.configuration).deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options).then((request) => request(this.axios, this.basePath));
7345
+ }
7346
+ /**
7279
7347
  * Removes the TCP (Tool Center Point) from the motion group. An unknown TCP is a valid input and will simply be ignored. <!-- theme: info --> > #### NOTE > > When removing a TCP, the **virtual robot is restarted** to apply the new configuration. > > During this restart: > - Robot visualization can temporarily disappear. > - The removal of the TCP may not be immediately visible or appear outdated in visualizations. > - All connections to virtual robot are closed and re-established, which introduces a short delay before the system is fully operational again. > > The API call itself does **not wait until the restart and re-synchronization are complete**. > A successful response indicates that the request was accepted, but the then used TCP may not yet be visible nor usable.
7280
7348
  * @summary Remove TCP
7281
7349
  * @param {string} cell Unique identifier addressing a cell in all API calls.
@@ -7289,7 +7357,7 @@ var VirtualControllerApi = class extends BaseAPI {
7289
7357
  return VirtualControllerApiFp(this.configuration).deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options).then((request) => request(this.axios, this.basePath));
7290
7358
  }
7291
7359
  /**
7292
- * Requests the Emergency Stop state of the virtual robot controller. Use [getCurrentMotionGroupState](getCurrentMotionGroupState) to get the Emergency Stop state with `safety_state` regardless of the controller type. > **NOTE** > > The Emergency Stop state can only be changed when using virtual robot controllers.
7360
+ * Requests the Emergency Stop state of the virtual robot controller. Use [getCurrentMotionGroupState](#/operations/getCurrentMotionGroupState) to get the Emergency Stop state with `safety_state` regardless of the controller type. > **NOTE** > > The Emergency Stop state can only be changed when using virtual robot controllers.
7293
7361
  * @summary Get Emergency Stop State
7294
7362
  * @param {string} cell Unique identifier addressing a cell in all API calls.
7295
7363
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -7323,7 +7391,7 @@ var VirtualControllerApi = class extends BaseAPI {
7323
7391
  return VirtualControllerApiFp(this.configuration).getMotionGroups(cell, controller, options).then((request) => request(this.axios, this.basePath));
7324
7392
  }
7325
7393
  /**
7326
- * Requests the operation mode of the virtual robot controller. To get the operation mode regardless of the controller type, use [getCurrentMotionGroupState](getCurrentMotionGroupState). > **NOTE** > > The operation mode can only be changed via API when using virtual robot controllers.
7394
+ * 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 operation mode can only be changed via API when using virtual robot controllers.
7327
7395
  * @summary Get Operation Mode
7328
7396
  * @param {string} cell Unique identifier addressing a cell in all API calls.
7329
7397
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -7369,7 +7437,7 @@ var VirtualControllerApi = class extends BaseAPI {
7369
7437
  return VirtualControllerApiFp(this.configuration).listVirtualControllerTcps(cell, controller, motionGroup, options).then((request) => request(this.axios, this.basePath));
7370
7438
  }
7371
7439
  /**
7372
- * Activates or releases the Emergency Stop on the virtual robot controller. Activating the Emergency Stop stops the execution of all motions. The stop is executed on physical controllers immediately not gracefully and not on paths. Due to restricted physical behavior of the virtual robot controller, the Emergency Stop is executed on paths. To return to normal operation the Emergency Stop needs to be released. Use [getCurrentMotionGroupState](getCurrentMotionGroupState) to get the Emergency Stop state with `safety_state` regardless of the controller type. > **NOTE** > > The Emergency Stop state can only be changed via API when using virtual robot controllers.
7440
+ * Activates or releases the Emergency Stop on the virtual robot controller. Activating the Emergency Stop stops the execution of all motions. The stop is executed on physical controllers immediately not gracefully and not on paths. Due to restricted physical behavior of the virtual robot controller, the Emergency Stop is executed on paths. To return to normal operation the Emergency Stop needs to be released. Use [getCurrentMotionGroupState](#/operations/getCurrentMotionGroupState) to get the Emergency Stop state with `safety_state` regardless of the controller type. > **NOTE** > > The Emergency Stop state can only be changed via API when using virtual robot controllers.
7373
7441
  * @summary Push or Release Emergency Stop
7374
7442
  * @param {string} cell Unique identifier addressing a cell in all API calls.
7375
7443
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -7394,7 +7462,7 @@ var VirtualControllerApi = class extends BaseAPI {
7394
7462
  return VirtualControllerApiFp(this.configuration).setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options).then((request) => request(this.axios, this.basePath));
7395
7463
  }
7396
7464
  /**
7397
- * 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 operation mode can only be changed via API when using virtual robot controllers.
7465
+ * 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 operation mode can only be changed via API when using virtual robot controllers.
7398
7466
  * @summary Set Operation Mode
7399
7467
  * @param {string} cell Unique identifier addressing a cell in all API calls.
7400
7468
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -7439,7 +7507,6 @@ const VirtualControllerBehaviorApiAxiosParamCreator = function(configuration) {
7439
7507
  };
7440
7508
  const localVarHeaderParameter = {};
7441
7509
  const localVarQueryParameter = {};
7442
- setBasicAuthToObject(localVarRequestOptions, configuration);
7443
7510
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
7444
7511
  localVarHeaderParameter["Content-Type"] = "application/json";
7445
7512
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -7469,7 +7536,6 @@ const VirtualControllerBehaviorApiAxiosParamCreator = function(configuration) {
7469
7536
  };
7470
7537
  const localVarHeaderParameter = {};
7471
7538
  const localVarQueryParameter = {};
7472
- setBasicAuthToObject(localVarRequestOptions, configuration);
7473
7539
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
7474
7540
  setSearchParams(localVarUrlObj, localVarQueryParameter);
7475
7541
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -7497,7 +7563,6 @@ const VirtualControllerBehaviorApiAxiosParamCreator = function(configuration) {
7497
7563
  };
7498
7564
  const localVarHeaderParameter = {};
7499
7565
  const localVarQueryParameter = {};
7500
- setBasicAuthToObject(localVarRequestOptions, configuration);
7501
7566
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
7502
7567
  setSearchParams(localVarUrlObj, localVarQueryParameter);
7503
7568
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -7525,7 +7590,6 @@ const VirtualControllerBehaviorApiAxiosParamCreator = function(configuration) {
7525
7590
  };
7526
7591
  const localVarHeaderParameter = {};
7527
7592
  const localVarQueryParameter = {};
7528
- setBasicAuthToObject(localVarRequestOptions, configuration);
7529
7593
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
7530
7594
  if (behavior !== void 0) localVarQueryParameter["behavior"] = behavior;
7531
7595
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -7599,7 +7663,7 @@ const VirtualControllerBehaviorApiFactory = function(configuration, basePath, ax
7599
7663
  */
7600
7664
  var VirtualControllerBehaviorApi = class extends BaseAPI {
7601
7665
  /**
7602
- * <!-- theme: success --> > Websocket endpoint Sends the **commanded** state, e.g., joint positions, velocities, accelerations, torques, for each motion group of the virtual controller and sets the joint configuration. Use [planTrajectory](planTrajectory) and [executeTrajectory](executeTrajectory) to move motion groups on virtual controllers. Learn more about the [movement behavior of virtual controllers in comparison to physical controllers](executeTrajectory#movement-behavior). > **NOTE** > > Incoming joint configurations are not visualized and their velocity limits are not checked. #### Use cases 1. Creating a robotic application that dynamically adapts to the configured joints on the robot controller, using this stream to feed new joint configurations back to the motion groups.\\ The stream only sends data to the robot controller if a motion is executed.\\ If the robot controller\'s joint configuration differs too much from the incoming joint configuration, a following error occurs. Joint configurations that result in following errors are executed only for motions with a low velocity. 2. Mimic freedrive motions. <!-- theme: danger --> > **DANGER** > > If the incoming joint configuration is set to maximum velocity, the movement to reach this incoming joint configuration > will be executed with maximum speed regardless of safety zones and mechanical limits.
7666
+ * <!-- theme: success --> > Websocket endpoint Sends the **commanded** state, e.g., joint positions, velocities, accelerations, torques, for each motion group of the virtual controller and sets the joint configuration. Use [planTrajectory](#/operations/planTrajectory) and [executeTrajectory](#/operations/executeTrajectory) to move motion groups on virtual controllers. Learn more about the [movement behavior of virtual controllers in comparison to physical controllers](#/operations/executeTrajectory#movement-behavior). > **NOTE** > > Incoming joint configurations are not visualized and their velocity limits are not checked. #### Use cases 1. Creating a robotic application that dynamically adapts to the configured joints on the robot controller, using this stream to feed new joint configurations back to the motion groups.\\ The stream only sends data to the robot controller if a motion is executed.\\ If the robot controller\'s joint configuration differs too much from the incoming joint configuration, a following error occurs. Joint configurations that result in following errors are executed only for motions with a low velocity. 2. Mimic freedrive motions. <!-- theme: danger --> > **DANGER** > > If the incoming joint configuration is set to maximum velocity, the movement to reach this incoming joint configuration > will be executed with maximum speed regardless of safety zones and mechanical limits.
7603
7667
  * @summary Stream Joint Configuration
7604
7668
  * @param {string} cell Unique identifier addressing a cell in all API calls.
7605
7669
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -7622,7 +7686,7 @@ var VirtualControllerBehaviorApi = class extends BaseAPI {
7622
7686
  return VirtualControllerBehaviorApiFp(this.configuration).getCycleTime(cell, controller, options).then((request) => request(this.axios, this.basePath));
7623
7687
  }
7624
7688
  /**
7625
- * Get the current virtual controller behavior. See [setVirtualControllerBehavior](setVirtualControllerBehavior) and the body for details.
7689
+ * Get the current virtual controller behavior. See [setVirtualControllerBehavior](#/operations/setVirtualControllerBehavior) and the body for details.
7626
7690
  * @summary Get Behavior
7627
7691
  * @param {string} cell Unique identifier addressing a cell in all API calls.
7628
7692
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -7665,7 +7729,6 @@ const VirtualControllerInputsOutputsApiAxiosParamCreator = function(configuratio
7665
7729
  };
7666
7730
  const localVarHeaderParameter = {};
7667
7731
  const localVarQueryParameter = {};
7668
- setBasicAuthToObject(localVarRequestOptions, configuration);
7669
7732
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
7670
7733
  if (ios) localVarQueryParameter["ios"] = ios;
7671
7734
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -7694,7 +7757,6 @@ const VirtualControllerInputsOutputsApiAxiosParamCreator = function(configuratio
7694
7757
  };
7695
7758
  const localVarHeaderParameter = {};
7696
7759
  const localVarQueryParameter = {};
7697
- setBasicAuthToObject(localVarRequestOptions, configuration);
7698
7760
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
7699
7761
  if (ios) localVarQueryParameter["ios"] = ios;
7700
7762
  if (direction !== void 0) localVarQueryParameter["direction"] = direction;
@@ -7727,7 +7789,6 @@ const VirtualControllerInputsOutputsApiAxiosParamCreator = function(configuratio
7727
7789
  };
7728
7790
  const localVarHeaderParameter = {};
7729
7791
  const localVarQueryParameter = {};
7730
- setBasicAuthToObject(localVarRequestOptions, configuration);
7731
7792
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
7732
7793
  localVarHeaderParameter["Content-Type"] = "application/json";
7733
7794
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -7793,7 +7854,7 @@ const VirtualControllerInputsOutputsApiFactory = function(configuration, basePat
7793
7854
  */
7794
7855
  var VirtualControllerInputsOutputsApi = class extends BaseAPI {
7795
7856
  /**
7796
- * Retrieves the current values of inputs/outputs of the virtual controller. The identifiers of inputs/outputs must be provided in the request. Request all available input/output identifiers via [listVirtualControllerIODescriptions](listVirtualControllerIODescriptions).
7857
+ * Retrieves the current values of inputs/outputs of the virtual controller. The identifiers of inputs/outputs must be provided in the request. Request all available input/output identifiers via [listVirtualControllerIODescriptions](#/operations/listVirtualControllerIODescriptions).
7797
7858
  * @summary Get Input/Output Values
7798
7859
  * @param {string} cell Unique identifier addressing a cell in all API calls.
7799
7860
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -8032,6 +8093,7 @@ exports.JoggingPausedNearCollisionKindEnum = JoggingPausedNearCollisionKindEnum;
8032
8093
  exports.JoggingPausedNearJointLimitKindEnum = JoggingPausedNearJointLimitKindEnum;
8033
8094
  exports.JoggingPausedOnIOKindEnum = JoggingPausedOnIOKindEnum;
8034
8095
  exports.JoggingRunningKindEnum = JoggingRunningKindEnum;
8096
+ exports.JointTypeEnum = JointTypeEnum;
8035
8097
  exports.JointVelocityRequestMessageTypeEnum = JointVelocityRequestMessageTypeEnum;
8036
8098
  exports.JointVelocityResponseKindEnum = JointVelocityResponseKindEnum;
8037
8099
  exports.KinematicsApi = KinematicsApi;