@wandelbots/nova-api 26.2.0-dev.9 → 26.3.0-dev.2

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.js CHANGED
@@ -39,12 +39,6 @@ const DUMMY_BASE_URL = "https://example.com";
39
39
  const assertParamExists = function(functionName, paramName, paramValue) {
40
40
  if (paramValue === null || paramValue === void 0) throw new RequiredError(paramName, `Required parameter ${paramName} was null or undefined when calling ${functionName}.`);
41
41
  };
42
- const setBasicAuthToObject = function(object, configuration) {
43
- if (configuration && (configuration.username || configuration.password)) object["auth"] = {
44
- username: configuration.username,
45
- password: configuration.password
46
- };
47
- };
48
42
  const setBearerAuthToObject = async function(object, configuration) {
49
43
  if (configuration && configuration.accessToken) object["Authorization"] = "Bearer " + (typeof configuration.accessToken === "function" ? await configuration.accessToken() : await configuration.accessToken);
50
44
  };
@@ -81,7 +75,7 @@ const createRequestFunction = function(axiosArgs, globalAxios$1, BASE_PATH$1, co
81
75
  //#region v2/api.ts
82
76
  const AbbControllerKindEnum = { AbbController: "AbbController" };
83
77
  /**
84
- * ## 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).
78
+ * ## 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).
85
79
  */
86
80
  const Behavior = {
87
81
  BehaviorAutomatic: "BEHAVIOR_AUTOMATIC",
@@ -120,6 +114,7 @@ const BusIOsStateEnum = {
120
114
  BusIosStateDisconnected: "BUS_IOS_STATE_DISCONNECTED"
121
115
  };
122
116
  const CapsuleShapeTypeEnum = { Capsule: "capsule" };
117
+ const CollisionErrorKindEnum = { CollisionError: "CollisionError" };
123
118
  /**
124
119
  * Comparator for the comparison of two values. The comparator is used to compare two values and return a boolean result. The default comparator is unknown.
125
120
  */
@@ -178,17 +173,24 @@ const IOValueType = {
178
173
  IoValueAnalogFloat: "IO_VALUE_ANALOG_FLOAT",
179
174
  IoValueAnalogInteger: "IO_VALUE_ANALOG_INTEGER"
180
175
  };
176
+ const InconsistentTrajectorySizeErrorKindEnum = { InconsistentTrajectorySizeError: "InconsistentTrajectorySizeError" };
181
177
  const InitializeJoggingRequestMessageTypeEnum = { InitializeJoggingRequest: "InitializeJoggingRequest" };
182
178
  const InitializeJoggingResponseKindEnum = { InitializeReceived: "INITIALIZE_RECEIVED" };
183
179
  const InitializeMovementRequestMessageTypeEnum = { InitializeMovementRequest: "InitializeMovementRequest" };
184
180
  const InitializeMovementResponseKindEnum = { InitializeReceived: "INITIALIZE_RECEIVED" };
185
181
  const IntegerValueValueTypeEnum = { Integer: "integer" };
182
+ const InvalidDofErrorKindEnum = { InvalidDofError: "InvalidDofError" };
186
183
  const JoggingDetailsKindEnum = { Jogging: "JOGGING" };
187
184
  const JoggingPausedByUserKindEnum = { PausedByUser: "PAUSED_BY_USER" };
188
185
  const JoggingPausedNearCollisionKindEnum = { PausedNearCollision: "PAUSED_NEAR_COLLISION" };
189
186
  const JoggingPausedNearJointLimitKindEnum = { PausedNearJointLimit: "PAUSED_NEAR_JOINT_LIMIT" };
190
187
  const JoggingPausedOnIOKindEnum = { PausedOnIo: "PAUSED_ON_IO" };
191
188
  const JoggingRunningKindEnum = { Running: "RUNNING" };
189
+ const JointLimitExceededErrorKindEnum = { JointLimitExceededError: "JointLimitExceededError" };
190
+ const JointTypeEnum = {
191
+ RevoluteJoint: "REVOLUTE_JOINT",
192
+ PrismaticJoint: "PRISMATIC_JOINT"
193
+ };
192
194
  const JointVelocityRequestMessageTypeEnum = { JointVelocityRequest: "JointVelocityRequest" };
193
195
  const JointVelocityResponseKindEnum = { JointVelocityReceived: "JOINT_VELOCITY_RECEIVED" };
194
196
  const KukaControllerKindEnum = { KukaController: "KukaController" };
@@ -237,6 +239,7 @@ const ModbusIOTypeEnum = {
237
239
  ModbusIoTypeFloat32: "MODBUS_IO_TYPE_FLOAT32"
238
240
  };
239
241
  const MovementErrorResponseKindEnum = { MotionError: "MOTION_ERROR" };
242
+ const NanValueErrorKindEnum = { NanValueError: "NanValueError" };
240
243
  const NetworkStateConnectionTypeEnum = {
241
244
  Ethernet: "ethernet",
242
245
  Wifi: "wifi",
@@ -346,14 +349,14 @@ const RRTConnectAlgorithmAlgorithmNameEnum = { RrtConnectAlgorithm: "RRTConnectA
346
349
  const RectangleShapeTypeEnum = { Rectangle: "rectangle" };
347
350
  const RectangularCapsuleShapeTypeEnum = { RectangularCapsule: "rectangular_capsule" };
348
351
  /**
349
- * The channel that defines what a new Wandelbots NOVA version is. * `next` the over all latest version * `stable` newes patch of the current version
352
+ * The channel that defines what a new Wandelbots NOVA version is. * `next` the latest version * `stable` newest patch of the current version
350
353
  */
351
354
  const ReleaseChannel = {
352
355
  Stable: "stable",
353
356
  Next: "next"
354
357
  };
355
358
  /**
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](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.
359
+ * 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.
357
360
  */
358
361
  const RobotSystemMode = {
359
362
  ModeControllerNotConfigured: "MODE_CONTROLLER_NOT_CONFIGURED",
@@ -411,7 +414,7 @@ const ServiceStatusSeverity = {
411
414
  Error: "ERROR"
412
415
  };
413
416
  /**
414
- * Defines available system modes of the robot system. Short versions (no \"ROBOT_SYSTEM_\" prefix) are provided, reusing strings from [getMode](getMode) responses.
417
+ * Defines available system modes of the robot system. Short versions (no \"ROBOT_SYSTEM_\" prefix) are provided, reusing strings from [getMode](#/operations/getMode) responses.
415
418
  */
416
419
  const SettableRobotSystemMode = {
417
420
  RobotSystemModeMonitor: "ROBOT_SYSTEM_MODE_MONITOR",
@@ -427,8 +430,10 @@ const SingularityTypeEnum = {
427
430
  const SphereShapeTypeEnum = { Sphere: "sphere" };
428
431
  const StartMovementRequestMessageTypeEnum = { StartMovementRequest: "StartMovementRequest" };
429
432
  const StartMovementResponseKindEnum = { StartReceived: "START_RECEIVED" };
433
+ const TcpRequiredErrorKindEnum = { TcpRequiredError: "TcpRequiredError" };
430
434
  const TcpVelocityRequestMessageTypeEnum = { TcpVelocityRequest: "TcpVelocityRequest" };
431
435
  const TcpVelocityResponseKindEnum = { TcpVelocityReceived: "TCP_VELOCITY_RECEIVED" };
436
+ const TorqueExceededErrorKindEnum = { TorqueExceededError: "TorqueExceededError" };
432
437
  const TrajectoryDataMessageTypeEnum = { TrajectoryData: "TrajectoryData" };
433
438
  const TrajectoryDetailsKindEnum = { Trajectory: "TRAJECTORY" };
434
439
  const TrajectoryEndedKindEnum = { EndOfTrajectory: "END_OF_TRAJECTORY" };
@@ -474,7 +479,6 @@ const ApplicationApiAxiosParamCreator = function(configuration) {
474
479
  };
475
480
  const localVarHeaderParameter = {};
476
481
  const localVarQueryParameter = {};
477
- setBasicAuthToObject(localVarRequestOptions, configuration);
478
482
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
479
483
  if (completionTimeout !== void 0) localVarQueryParameter["completion_timeout"] = completionTimeout;
480
484
  localVarHeaderParameter["Content-Type"] = "application/json";
@@ -504,7 +508,6 @@ const ApplicationApiAxiosParamCreator = function(configuration) {
504
508
  };
505
509
  const localVarHeaderParameter = {};
506
510
  const localVarQueryParameter = {};
507
- setBasicAuthToObject(localVarRequestOptions, configuration);
508
511
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
509
512
  if (completionTimeout !== void 0) localVarQueryParameter["completion_timeout"] = completionTimeout;
510
513
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -533,7 +536,6 @@ const ApplicationApiAxiosParamCreator = function(configuration) {
533
536
  };
534
537
  const localVarHeaderParameter = {};
535
538
  const localVarQueryParameter = {};
536
- setBasicAuthToObject(localVarRequestOptions, configuration);
537
539
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
538
540
  if (completionTimeout !== void 0) localVarQueryParameter["completion_timeout"] = completionTimeout;
539
541
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -562,7 +564,6 @@ const ApplicationApiAxiosParamCreator = function(configuration) {
562
564
  };
563
565
  const localVarHeaderParameter = {};
564
566
  const localVarQueryParameter = {};
565
- setBasicAuthToObject(localVarRequestOptions, configuration);
566
567
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
567
568
  setSearchParams(localVarUrlObj, localVarQueryParameter);
568
569
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -589,7 +590,6 @@ const ApplicationApiAxiosParamCreator = function(configuration) {
589
590
  };
590
591
  const localVarHeaderParameter = {};
591
592
  const localVarQueryParameter = {};
592
- setBasicAuthToObject(localVarRequestOptions, configuration);
593
593
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
594
594
  setSearchParams(localVarUrlObj, localVarQueryParameter);
595
595
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -618,7 +618,6 @@ const ApplicationApiAxiosParamCreator = function(configuration) {
618
618
  };
619
619
  const localVarHeaderParameter = {};
620
620
  const localVarQueryParameter = {};
621
- setBasicAuthToObject(localVarRequestOptions, configuration);
622
621
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
623
622
  if (completionTimeout !== void 0) localVarQueryParameter["completion_timeout"] = completionTimeout;
624
623
  localVarHeaderParameter["Content-Type"] = "application/json";
@@ -747,7 +746,7 @@ var ApplicationApi = class extends BaseAPI {
747
746
  return ApplicationApiFp(this.configuration).deleteApp(cell, app, completionTimeout, options).then((request) => request(this.axios, this.basePath));
748
747
  }
749
748
  /**
750
- * 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).
749
+ * 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).
751
750
  * @summary Configuration
752
751
  * @param {string} cell Unique identifier addressing a cell in all API calls.
753
752
  * @param {string} app
@@ -758,7 +757,7 @@ var ApplicationApi = class extends BaseAPI {
758
757
  return ApplicationApiFp(this.configuration).getApp(cell, app, options).then((request) => request(this.axios, this.basePath));
759
758
  }
760
759
  /**
761
- * 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.
760
+ * 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.
762
761
  * @summary List Applications
763
762
  * @param {string} cell Unique identifier addressing a cell in all API calls.
764
763
  * @param {*} [options] Override http request option.
@@ -800,7 +799,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
800
799
  };
801
800
  const localVarHeaderParameter = {};
802
801
  const localVarQueryParameter = {};
803
- setBasicAuthToObject(localVarRequestOptions, configuration);
804
802
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
805
803
  if (completionTimeout !== void 0) localVarQueryParameter["completion_timeout"] = completionTimeout;
806
804
  localVarHeaderParameter["Content-Type"] = "application/json";
@@ -832,7 +830,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
832
830
  };
833
831
  const localVarHeaderParameter = {};
834
832
  const localVarQueryParameter = {};
835
- setBasicAuthToObject(localVarRequestOptions, configuration);
836
833
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
837
834
  localVarHeaderParameter["Content-Type"] = "application/json";
838
835
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -863,7 +860,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
863
860
  };
864
861
  const localVarHeaderParameter = {};
865
862
  const localVarQueryParameter = {};
866
- setBasicAuthToObject(localVarRequestOptions, configuration);
867
863
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
868
864
  localVarHeaderParameter["Content-Type"] = "application/json";
869
865
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -892,7 +888,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
892
888
  };
893
889
  const localVarHeaderParameter = {};
894
890
  const localVarQueryParameter = {};
895
- setBasicAuthToObject(localVarRequestOptions, configuration);
896
891
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
897
892
  if (completionTimeout !== void 0) localVarQueryParameter["completion_timeout"] = completionTimeout;
898
893
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -920,7 +915,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
920
915
  };
921
916
  const localVarHeaderParameter = {};
922
917
  const localVarQueryParameter = {};
923
- setBasicAuthToObject(localVarRequestOptions, configuration);
924
918
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
925
919
  setSearchParams(localVarUrlObj, localVarQueryParameter);
926
920
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -947,7 +941,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
947
941
  };
948
942
  const localVarHeaderParameter = {};
949
943
  const localVarQueryParameter = {};
950
- setBasicAuthToObject(localVarRequestOptions, configuration);
951
944
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
952
945
  setSearchParams(localVarUrlObj, localVarQueryParameter);
953
946
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -975,7 +968,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
975
968
  };
976
969
  const localVarHeaderParameter = {};
977
970
  const localVarQueryParameter = {};
978
- setBasicAuthToObject(localVarRequestOptions, configuration);
979
971
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
980
972
  setSearchParams(localVarUrlObj, localVarQueryParameter);
981
973
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -1003,7 +995,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
1003
995
  };
1004
996
  const localVarHeaderParameter = {};
1005
997
  const localVarQueryParameter = {};
1006
- setBasicAuthToObject(localVarRequestOptions, configuration);
1007
998
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1008
999
  setSearchParams(localVarUrlObj, localVarQueryParameter);
1009
1000
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -1030,7 +1021,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
1030
1021
  };
1031
1022
  const localVarHeaderParameter = {};
1032
1023
  const localVarQueryParameter = {};
1033
- setBasicAuthToObject(localVarRequestOptions, configuration);
1034
1024
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1035
1025
  setSearchParams(localVarUrlObj, localVarQueryParameter);
1036
1026
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -1057,7 +1047,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
1057
1047
  };
1058
1048
  const localVarHeaderParameter = {};
1059
1049
  const localVarQueryParameter = {};
1060
- setBasicAuthToObject(localVarRequestOptions, configuration);
1061
1050
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1062
1051
  setSearchParams(localVarUrlObj, localVarQueryParameter);
1063
1052
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -1084,7 +1073,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
1084
1073
  };
1085
1074
  const localVarHeaderParameter = {};
1086
1075
  const localVarQueryParameter = {};
1087
- setBasicAuthToObject(localVarRequestOptions, configuration);
1088
1076
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1089
1077
  if (ios) localVarQueryParameter["ios"] = ios;
1090
1078
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -1112,7 +1100,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
1112
1100
  };
1113
1101
  const localVarHeaderParameter = {};
1114
1102
  const localVarQueryParameter = {};
1115
- setBasicAuthToObject(localVarRequestOptions, configuration);
1116
1103
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1117
1104
  setSearchParams(localVarUrlObj, localVarQueryParameter);
1118
1105
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -1139,7 +1126,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
1139
1126
  };
1140
1127
  const localVarHeaderParameter = {};
1141
1128
  const localVarQueryParameter = {};
1142
- setBasicAuthToObject(localVarRequestOptions, configuration);
1143
1129
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1144
1130
  if (inputOffset !== void 0) localVarQueryParameter["input_offset"] = inputOffset;
1145
1131
  if (outputOffset !== void 0) localVarQueryParameter["output_offset"] = outputOffset;
@@ -1168,7 +1154,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
1168
1154
  };
1169
1155
  const localVarHeaderParameter = {};
1170
1156
  const localVarQueryParameter = {};
1171
- setBasicAuthToObject(localVarRequestOptions, configuration);
1172
1157
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1173
1158
  setSearchParams(localVarUrlObj, localVarQueryParameter);
1174
1159
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -1195,7 +1180,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
1195
1180
  };
1196
1181
  const localVarHeaderParameter = {};
1197
1182
  const localVarQueryParameter = {};
1198
- setBasicAuthToObject(localVarRequestOptions, configuration);
1199
1183
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1200
1184
  setSearchParams(localVarUrlObj, localVarQueryParameter);
1201
1185
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -1222,7 +1206,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
1222
1206
  };
1223
1207
  const localVarHeaderParameter = {};
1224
1208
  const localVarQueryParameter = {};
1225
- setBasicAuthToObject(localVarRequestOptions, configuration);
1226
1209
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1227
1210
  setSearchParams(localVarUrlObj, localVarQueryParameter);
1228
1211
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -1250,7 +1233,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
1250
1233
  };
1251
1234
  const localVarHeaderParameter = {};
1252
1235
  const localVarQueryParameter = {};
1253
- setBasicAuthToObject(localVarRequestOptions, configuration);
1254
1236
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1255
1237
  localVarHeaderParameter["Content-Type"] = "application/json";
1256
1238
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -1280,7 +1262,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
1280
1262
  };
1281
1263
  const localVarHeaderParameter = {};
1282
1264
  const localVarQueryParameter = {};
1283
- setBasicAuthToObject(localVarRequestOptions, configuration);
1284
1265
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1285
1266
  localVarHeaderParameter["Content-Type"] = "application/json";
1286
1267
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -1493,7 +1474,7 @@ var BUSInputsOutputsApi = class extends BaseAPI {
1493
1474
  return BUSInputsOutputsApiFp(this.configuration).addBusIOService(cell, busIOType, completionTimeout, options).then((request) => request(this.axios, this.basePath));
1494
1475
  }
1495
1476
  /**
1496
- * 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).
1477
+ * 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).
1497
1478
  * @summary Add MODBUS Input/Output
1498
1479
  * @param {string} cell Unique identifier addressing a cell in all API calls.
1499
1480
  * @param {string} io Unique identifier to address an Input/Output in the cell.
@@ -1505,7 +1486,7 @@ var BUSInputsOutputsApi = class extends BaseAPI {
1505
1486
  return BUSInputsOutputsApiFp(this.configuration).addModbusIO(cell, io, modbusIOData, options).then((request) => request(this.axios, this.basePath));
1506
1487
  }
1507
1488
  /**
1508
- * 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).
1489
+ * 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).
1509
1490
  * @summary Add PROFINET Input/Output
1510
1491
  * @param {string} cell Unique identifier addressing a cell in all API calls.
1511
1492
  * @param {string} io Unique identifier to address an Input/Output in the cell.
@@ -1549,7 +1530,7 @@ var BUSInputsOutputsApi = class extends BaseAPI {
1549
1530
  }
1550
1531
  /**
1551
1532
  * Removes an input/output variable configuration from the MODBUS device, e.g., NOVA\'s MODBUS service.
1552
- * @summary Remove MODBUS Input/Ouptut
1533
+ * @summary Remove MODBUS Input/Output
1553
1534
  * @param {string} cell Unique identifier addressing a cell in all API calls.
1554
1535
  * @param {string} io Unique identifier to address an Input/Output in the cell.
1555
1536
  * @param {*} [options] Override http request option.
@@ -1590,7 +1571,7 @@ var BUSInputsOutputsApi = class extends BaseAPI {
1590
1571
  return BUSInputsOutputsApiFp(this.configuration).getBusIOState(cell, options).then((request) => request(this.axios, this.basePath));
1591
1572
  }
1592
1573
  /**
1593
- * 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).
1574
+ * 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).
1594
1575
  * @summary Get Input/Output Values
1595
1576
  * @param {string} cell Unique identifier addressing a cell in all API calls.
1596
1577
  * @param {Array<string>} [ios]
@@ -1633,7 +1614,7 @@ var BUSInputsOutputsApi = class extends BaseAPI {
1633
1614
  return BUSInputsOutputsApiFp(this.configuration).listBusIODescriptions(cell, options).then((request) => request(this.axios, this.basePath));
1634
1615
  }
1635
1616
  /**
1636
- * 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).
1617
+ * 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).
1637
1618
  * @summary List MODBUS Input/Output Configuration
1638
1619
  * @param {string} cell Unique identifier addressing a cell in all API calls.
1639
1620
  * @param {*} [options] Override http request option.
@@ -1643,7 +1624,7 @@ var BUSInputsOutputsApi = class extends BaseAPI {
1643
1624
  return BUSInputsOutputsApiFp(this.configuration).listModbusIOs(cell, options).then((request) => request(this.axios, this.basePath));
1644
1625
  }
1645
1626
  /**
1646
- * 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.
1627
+ * 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.
1647
1628
  * @summary List PROFINET Input/Output Configuration
1648
1629
  * @param {string} cell Unique identifier addressing a cell in all API calls.
1649
1630
  * @param {*} [options] Override http request option.
@@ -1653,7 +1634,7 @@ var BUSInputsOutputsApi = class extends BaseAPI {
1653
1634
  return BUSInputsOutputsApiFp(this.configuration).listProfinetIOs(cell, options).then((request) => request(this.axios, this.basePath));
1654
1635
  }
1655
1636
  /**
1656
- * 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.
1637
+ * 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.
1657
1638
  * @summary Set Output Values
1658
1639
  * @param {string} cell Unique identifier addressing a cell in all API calls.
1659
1640
  * @param {Array<IOValue>} iOValue
@@ -1664,7 +1645,7 @@ var BUSInputsOutputsApi = class extends BaseAPI {
1664
1645
  return BUSInputsOutputsApiFp(this.configuration).setBusIOValues(cell, iOValue, options).then((request) => request(this.axios, this.basePath));
1665
1646
  }
1666
1647
  /**
1667
- * 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.
1648
+ * 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.
1668
1649
  * @summary Set PROFINET Inputs/Outputs from File
1669
1650
  * @param {string} cell Unique identifier addressing a cell in all API calls.
1670
1651
  * @param {ProfinetInputOutputConfig} profinetInputOutputConfig
@@ -1680,6 +1661,34 @@ var BUSInputsOutputsApi = class extends BaseAPI {
1680
1661
  */
1681
1662
  const CellApiAxiosParamCreator = function(configuration) {
1682
1663
  return {
1664
+ checkCellVersionUpdate: async (cell, channel, options = {}) => {
1665
+ assertParamExists("checkCellVersionUpdate", "cell", cell);
1666
+ assertParamExists("checkCellVersionUpdate", "channel", channel);
1667
+ const localVarPath = `/cells/{cell}/update`.replace(`{cell}`, encodeURIComponent(String(cell)));
1668
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1669
+ let baseOptions;
1670
+ if (configuration) baseOptions = configuration.baseOptions;
1671
+ const localVarRequestOptions = {
1672
+ method: "GET",
1673
+ ...baseOptions,
1674
+ ...options
1675
+ };
1676
+ const localVarHeaderParameter = {};
1677
+ const localVarQueryParameter = {};
1678
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
1679
+ if (channel !== void 0) localVarQueryParameter["channel"] = channel;
1680
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1681
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1682
+ localVarRequestOptions.headers = {
1683
+ ...localVarHeaderParameter,
1684
+ ...headersFromBaseOptions,
1685
+ ...options.headers
1686
+ };
1687
+ return {
1688
+ url: toPathString(localVarUrlObj),
1689
+ options: localVarRequestOptions
1690
+ };
1691
+ },
1683
1692
  deleteCell: async (cell, completionTimeout, options = {}) => {
1684
1693
  assertParamExists("deleteCell", "cell", cell);
1685
1694
  const localVarPath = `/cells/{cell}`.replace(`{cell}`, encodeURIComponent(String(cell)));
@@ -1693,7 +1702,6 @@ const CellApiAxiosParamCreator = function(configuration) {
1693
1702
  };
1694
1703
  const localVarHeaderParameter = {};
1695
1704
  const localVarQueryParameter = {};
1696
- setBasicAuthToObject(localVarRequestOptions, configuration);
1697
1705
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1698
1706
  if (completionTimeout !== void 0) localVarQueryParameter["completion_timeout"] = completionTimeout;
1699
1707
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -1720,7 +1728,6 @@ const CellApiAxiosParamCreator = function(configuration) {
1720
1728
  };
1721
1729
  const localVarHeaderParameter = {};
1722
1730
  const localVarQueryParameter = {};
1723
- setBasicAuthToObject(localVarRequestOptions, configuration);
1724
1731
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1725
1732
  if (completionTimeout !== void 0) localVarQueryParameter["completion_timeout"] = completionTimeout;
1726
1733
  localVarHeaderParameter["Content-Type"] = "application/json";
@@ -1750,7 +1757,6 @@ const CellApiAxiosParamCreator = function(configuration) {
1750
1757
  };
1751
1758
  const localVarHeaderParameter = {};
1752
1759
  const localVarQueryParameter = {};
1753
- setBasicAuthToObject(localVarRequestOptions, configuration);
1754
1760
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1755
1761
  setSearchParams(localVarUrlObj, localVarQueryParameter);
1756
1762
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -1777,7 +1783,6 @@ const CellApiAxiosParamCreator = function(configuration) {
1777
1783
  };
1778
1784
  const localVarHeaderParameter = {};
1779
1785
  const localVarQueryParameter = {};
1780
- setBasicAuthToObject(localVarRequestOptions, configuration);
1781
1786
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1782
1787
  setSearchParams(localVarUrlObj, localVarQueryParameter);
1783
1788
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -1802,7 +1807,6 @@ const CellApiAxiosParamCreator = function(configuration) {
1802
1807
  };
1803
1808
  const localVarHeaderParameter = {};
1804
1809
  const localVarQueryParameter = {};
1805
- setBasicAuthToObject(localVarRequestOptions, configuration);
1806
1810
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1807
1811
  setSearchParams(localVarUrlObj, localVarQueryParameter);
1808
1812
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -1830,7 +1834,6 @@ const CellApiAxiosParamCreator = function(configuration) {
1830
1834
  };
1831
1835
  const localVarHeaderParameter = {};
1832
1836
  const localVarQueryParameter = {};
1833
- setBasicAuthToObject(localVarRequestOptions, configuration);
1834
1837
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1835
1838
  if (operatingState !== void 0) localVarQueryParameter["operating_state"] = operatingState;
1836
1839
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -1859,7 +1862,6 @@ const CellApiAxiosParamCreator = function(configuration) {
1859
1862
  };
1860
1863
  const localVarHeaderParameter = {};
1861
1864
  const localVarQueryParameter = {};
1862
- setBasicAuthToObject(localVarRequestOptions, configuration);
1863
1865
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1864
1866
  if (completionTimeout !== void 0) localVarQueryParameter["completion_timeout"] = completionTimeout;
1865
1867
  localVarHeaderParameter["Content-Type"] = "application/json";
@@ -1875,6 +1877,35 @@ const CellApiAxiosParamCreator = function(configuration) {
1875
1877
  url: toPathString(localVarUrlObj),
1876
1878
  options: localVarRequestOptions
1877
1879
  };
1880
+ },
1881
+ updateCellVersion: async (cell, updateCellVersionRequest, options = {}) => {
1882
+ assertParamExists("updateCellVersion", "cell", cell);
1883
+ assertParamExists("updateCellVersion", "updateCellVersionRequest", updateCellVersionRequest);
1884
+ const localVarPath = `/cells/{cell}/update`.replace(`{cell}`, encodeURIComponent(String(cell)));
1885
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1886
+ let baseOptions;
1887
+ if (configuration) baseOptions = configuration.baseOptions;
1888
+ const localVarRequestOptions = {
1889
+ method: "PUT",
1890
+ ...baseOptions,
1891
+ ...options
1892
+ };
1893
+ const localVarHeaderParameter = {};
1894
+ const localVarQueryParameter = {};
1895
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
1896
+ localVarHeaderParameter["Content-Type"] = "application/json";
1897
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1898
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1899
+ localVarRequestOptions.headers = {
1900
+ ...localVarHeaderParameter,
1901
+ ...headersFromBaseOptions,
1902
+ ...options.headers
1903
+ };
1904
+ localVarRequestOptions.data = serializeDataIfNeeded(updateCellVersionRequest, localVarRequestOptions, configuration);
1905
+ return {
1906
+ url: toPathString(localVarUrlObj),
1907
+ options: localVarRequestOptions
1908
+ };
1878
1909
  }
1879
1910
  };
1880
1911
  };
@@ -1884,6 +1915,12 @@ const CellApiAxiosParamCreator = function(configuration) {
1884
1915
  const CellApiFp = function(configuration) {
1885
1916
  const localVarAxiosParamCreator = CellApiAxiosParamCreator(configuration);
1886
1917
  return {
1918
+ async checkCellVersionUpdate(cell, channel, options) {
1919
+ const localVarAxiosArgs = await localVarAxiosParamCreator.checkCellVersionUpdate(cell, channel, options);
1920
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
1921
+ const localVarOperationServerBasePath = operationServerMap["CellApi.checkCellVersionUpdate"]?.[localVarOperationServerIndex]?.url;
1922
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1923
+ },
1887
1924
  async deleteCell(cell, completionTimeout, options) {
1888
1925
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteCell(cell, completionTimeout, options);
1889
1926
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
@@ -1925,6 +1962,12 @@ const CellApiFp = function(configuration) {
1925
1962
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
1926
1963
  const localVarOperationServerBasePath = operationServerMap["CellApi.updateCell"]?.[localVarOperationServerIndex]?.url;
1927
1964
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1965
+ },
1966
+ async updateCellVersion(cell, updateCellVersionRequest, options) {
1967
+ const localVarAxiosArgs = await localVarAxiosParamCreator.updateCellVersion(cell, updateCellVersionRequest, options);
1968
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
1969
+ const localVarOperationServerBasePath = operationServerMap["CellApi.updateCellVersion"]?.[localVarOperationServerIndex]?.url;
1970
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1928
1971
  }
1929
1972
  };
1930
1973
  };
@@ -1934,6 +1977,9 @@ const CellApiFp = function(configuration) {
1934
1977
  const CellApiFactory = function(configuration, basePath, axios) {
1935
1978
  const localVarFp = CellApiFp(configuration);
1936
1979
  return {
1980
+ checkCellVersionUpdate(cell, channel, options) {
1981
+ return localVarFp.checkCellVersionUpdate(cell, channel, options).then((request) => request(axios, basePath));
1982
+ },
1937
1983
  deleteCell(cell, completionTimeout, options) {
1938
1984
  return localVarFp.deleteCell(cell, completionTimeout, options).then((request) => request(axios, basePath));
1939
1985
  },
@@ -1954,6 +2000,9 @@ const CellApiFactory = function(configuration, basePath, axios) {
1954
2000
  },
1955
2001
  updateCell(cell, cell2, completionTimeout, options) {
1956
2002
  return localVarFp.updateCell(cell, cell2, completionTimeout, options).then((request) => request(axios, basePath));
2003
+ },
2004
+ updateCellVersion(cell, updateCellVersionRequest, options) {
2005
+ return localVarFp.updateCellVersion(cell, updateCellVersionRequest, options).then((request) => request(axios, basePath));
1957
2006
  }
1958
2007
  };
1959
2008
  };
@@ -1961,6 +2010,17 @@ const CellApiFactory = function(configuration, basePath, axios) {
1961
2010
  * CellApi - object-oriented interface
1962
2011
  */
1963
2012
  var CellApi = class extends BaseAPI {
2013
+ /**
2014
+ * Check if a more recent Wandelbots NOVA version is available for the cell. Updates greater than the system version are ignored.
2015
+ * @summary Check Cell Update
2016
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
2017
+ * @param {ReleaseChannel} channel
2018
+ * @param {*} [options] Override http request option.
2019
+ * @throws {RequiredError}
2020
+ */
2021
+ checkCellVersionUpdate(cell, channel, options) {
2022
+ return CellApiFp(this.configuration).checkCellVersionUpdate(cell, channel, options).then((request) => request(this.axios, this.basePath));
2023
+ }
1964
2024
  /**
1965
2025
  * Delete an entire cell.
1966
2026
  * @summary Delete Cell
@@ -2035,6 +2095,17 @@ var CellApi = class extends BaseAPI {
2035
2095
  updateCell(cell, cell2, completionTimeout, options) {
2036
2096
  return CellApiFp(this.configuration).updateCell(cell, cell2, completionTimeout, options).then((request) => request(this.axios, this.basePath));
2037
2097
  }
2098
+ /**
2099
+ * Update the Foundation chart version for a single cell based on a release channel. The resulting version is capped at the current system version.
2100
+ * @summary Update Cell Version
2101
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
2102
+ * @param {UpdateCellVersionRequest} updateCellVersionRequest
2103
+ * @param {*} [options] Override http request option.
2104
+ * @throws {RequiredError}
2105
+ */
2106
+ updateCellVersion(cell, updateCellVersionRequest, options) {
2107
+ return CellApiFp(this.configuration).updateCellVersion(cell, updateCellVersionRequest, options).then((request) => request(this.axios, this.basePath));
2108
+ }
2038
2109
  };
2039
2110
  /**
2040
2111
  * ControllerApi - axios parameter creator
@@ -2055,7 +2126,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
2055
2126
  };
2056
2127
  const localVarHeaderParameter = {};
2057
2128
  const localVarQueryParameter = {};
2058
- setBasicAuthToObject(localVarRequestOptions, configuration);
2059
2129
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2060
2130
  if (completionTimeout !== void 0) localVarQueryParameter["completion_timeout"] = completionTimeout;
2061
2131
  localVarHeaderParameter["Content-Type"] = "application/json";
@@ -2085,7 +2155,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
2085
2155
  };
2086
2156
  const localVarHeaderParameter = {};
2087
2157
  const localVarQueryParameter = {};
2088
- setBasicAuthToObject(localVarRequestOptions, configuration);
2089
2158
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2090
2159
  if (completionTimeout !== void 0) localVarQueryParameter["completion_timeout"] = completionTimeout;
2091
2160
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -2114,7 +2183,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
2114
2183
  };
2115
2184
  const localVarHeaderParameter = {};
2116
2185
  const localVarQueryParameter = {};
2117
- setBasicAuthToObject(localVarRequestOptions, configuration);
2118
2186
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2119
2187
  if (completionTimeout !== void 0) localVarQueryParameter["completion_timeout"] = completionTimeout;
2120
2188
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -2143,7 +2211,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
2143
2211
  };
2144
2212
  const localVarHeaderParameter = {};
2145
2213
  const localVarQueryParameter = {};
2146
- setBasicAuthToObject(localVarRequestOptions, configuration);
2147
2214
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2148
2215
  setSearchParams(localVarUrlObj, localVarQueryParameter);
2149
2216
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -2172,7 +2239,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
2172
2239
  };
2173
2240
  const localVarHeaderParameter = {};
2174
2241
  const localVarQueryParameter = {};
2175
- setBasicAuthToObject(localVarRequestOptions, configuration);
2176
2242
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2177
2243
  if (orientationType !== void 0) localVarQueryParameter["orientation_type"] = orientationType;
2178
2244
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -2201,7 +2267,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
2201
2267
  };
2202
2268
  const localVarHeaderParameter = {};
2203
2269
  const localVarQueryParameter = {};
2204
- setBasicAuthToObject(localVarRequestOptions, configuration);
2205
2270
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2206
2271
  setSearchParams(localVarUrlObj, localVarQueryParameter);
2207
2272
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -2229,7 +2294,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
2229
2294
  };
2230
2295
  const localVarHeaderParameter = {};
2231
2296
  const localVarQueryParameter = {};
2232
- setBasicAuthToObject(localVarRequestOptions, configuration);
2233
2297
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2234
2298
  setSearchParams(localVarUrlObj, localVarQueryParameter);
2235
2299
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -2257,7 +2321,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
2257
2321
  };
2258
2322
  const localVarHeaderParameter = {};
2259
2323
  const localVarQueryParameter = {};
2260
- setBasicAuthToObject(localVarRequestOptions, configuration);
2261
2324
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2262
2325
  setSearchParams(localVarUrlObj, localVarQueryParameter);
2263
2326
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -2285,7 +2348,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
2285
2348
  };
2286
2349
  const localVarHeaderParameter = {};
2287
2350
  const localVarQueryParameter = {};
2288
- setBasicAuthToObject(localVarRequestOptions, configuration);
2289
2351
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2290
2352
  if (orientationType !== void 0) localVarQueryParameter["orientation_type"] = orientationType;
2291
2353
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -2313,7 +2375,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
2313
2375
  };
2314
2376
  const localVarHeaderParameter = {};
2315
2377
  const localVarQueryParameter = {};
2316
- setBasicAuthToObject(localVarRequestOptions, configuration);
2317
2378
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2318
2379
  setSearchParams(localVarUrlObj, localVarQueryParameter);
2319
2380
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -2342,7 +2403,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
2342
2403
  };
2343
2404
  const localVarHeaderParameter = {};
2344
2405
  const localVarQueryParameter = {};
2345
- setBasicAuthToObject(localVarRequestOptions, configuration);
2346
2406
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2347
2407
  if (mode !== void 0) localVarQueryParameter["mode"] = mode;
2348
2408
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -2371,7 +2431,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
2371
2431
  };
2372
2432
  const localVarHeaderParameter = {};
2373
2433
  const localVarQueryParameter = {};
2374
- setBasicAuthToObject(localVarRequestOptions, configuration);
2375
2434
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2376
2435
  if (responseRate !== void 0) localVarQueryParameter["response_rate"] = responseRate;
2377
2436
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -2400,7 +2459,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
2400
2459
  };
2401
2460
  const localVarHeaderParameter = {};
2402
2461
  const localVarQueryParameter = {};
2403
- setBasicAuthToObject(localVarRequestOptions, configuration);
2404
2462
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2405
2463
  if (responseRate !== void 0) localVarQueryParameter["response_rate"] = responseRate;
2406
2464
  if (addControllerTimeout !== void 0) localVarQueryParameter["add_controller_timeout"] = addControllerTimeout;
@@ -2431,7 +2489,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
2431
2489
  };
2432
2490
  const localVarHeaderParameter = {};
2433
2491
  const localVarQueryParameter = {};
2434
- setBasicAuthToObject(localVarRequestOptions, configuration);
2435
2492
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2436
2493
  if (completionTimeout !== void 0) localVarQueryParameter["completion_timeout"] = completionTimeout;
2437
2494
  localVarHeaderParameter["Content-Type"] = "application/json";
@@ -2609,7 +2666,7 @@ var ControllerApi = class extends BaseAPI {
2609
2666
  return ControllerApiFp(this.configuration).addRobotController(cell, robotController, completionTimeout, options).then((request) => request(this.axios, this.basePath));
2610
2667
  }
2611
2668
  /**
2612
- * Delete all robot controllers from the cell. To replace all robot controllers in a cell, use this endpoint in combination with [addRobotController](addRobotController).
2669
+ * Delete all robot controllers from the cell. To replace all robot controllers in a cell, use this endpoint in combination with [addRobotController](#/operations/addRobotController).
2613
2670
  * @summary Clear Robot Controllers
2614
2671
  * @param {string} cell Unique identifier addressing a cell in all API calls.
2615
2672
  * @param {number} [completionTimeout]
@@ -2632,7 +2689,7 @@ var ControllerApi = class extends BaseAPI {
2632
2689
  return ControllerApiFp(this.configuration).deleteRobotController(cell, controller, completionTimeout, options).then((request) => request(this.axios, this.basePath));
2633
2690
  }
2634
2691
  /**
2635
- * 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.
2692
+ * 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.
2636
2693
  * @summary Description
2637
2694
  * @param {string} cell Unique identifier addressing a cell in all API calls.
2638
2695
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -2678,7 +2735,7 @@ var ControllerApi = class extends BaseAPI {
2678
2735
  return ControllerApiFp(this.configuration).getRobotController(cell, controller, options).then((request) => request(this.axios, this.basePath));
2679
2736
  }
2680
2737
  /**
2681
- * 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.
2738
+ * 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.
2682
2739
  * @summary Virtual Controller Configuration
2683
2740
  * @param {string} cell Unique identifier addressing a cell in all API calls.
2684
2741
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -2711,7 +2768,7 @@ var ControllerApi = class extends BaseAPI {
2711
2768
  return ControllerApiFp(this.configuration).listRobotControllers(cell, options).then((request) => request(this.axios, this.basePath));
2712
2769
  }
2713
2770
  /**
2714
- * 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.
2771
+ * 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.
2715
2772
  * @summary Set Default Mode
2716
2773
  * @param {string} cell Unique identifier addressing a cell in all API calls.
2717
2774
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -2723,7 +2780,7 @@ var ControllerApi = class extends BaseAPI {
2723
2780
  return ControllerApiFp(this.configuration).setDefaultMode(cell, controller, mode, options).then((request) => request(this.axios, this.basePath));
2724
2781
  }
2725
2782
  /**
2726
- * <!-- 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.
2783
+ * <!-- 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.
2727
2784
  * @summary Stream Free Drive
2728
2785
  * @param {string} cell Unique identifier addressing a cell in all API calls.
2729
2786
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -2735,7 +2792,7 @@ var ControllerApi = class extends BaseAPI {
2735
2792
  return ControllerApiFp(this.configuration).streamFreeDrive(cell, controller, responseRate, options).then((request) => request(this.axios, this.basePath));
2736
2793
  }
2737
2794
  /**
2738
- * <!-- 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.
2795
+ * <!-- 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.
2739
2796
  * @summary Stream State
2740
2797
  * @param {string} cell Unique identifier addressing a cell in all API calls.
2741
2798
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -2748,7 +2805,7 @@ var ControllerApi = class extends BaseAPI {
2748
2805
  return ControllerApiFp(this.configuration).streamRobotControllerState(cell, controller, responseRate, addControllerTimeout, options).then((request) => request(this.axios, this.basePath));
2749
2806
  }
2750
2807
  /**
2751
- * 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).
2808
+ * 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).
2752
2809
  * @summary Update Robot Controller
2753
2810
  * @param {string} cell Unique identifier addressing a cell in all API calls.
2754
2811
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -2780,7 +2837,6 @@ const ControllerInputsOutputsApiAxiosParamCreator = function(configuration) {
2780
2837
  };
2781
2838
  const localVarHeaderParameter = {};
2782
2839
  const localVarQueryParameter = {};
2783
- setBasicAuthToObject(localVarRequestOptions, configuration);
2784
2840
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2785
2841
  if (ios) localVarQueryParameter["ios"] = ios;
2786
2842
  if (direction !== void 0) localVarQueryParameter["direction"] = direction;
@@ -2812,7 +2868,6 @@ const ControllerInputsOutputsApiAxiosParamCreator = function(configuration) {
2812
2868
  };
2813
2869
  const localVarHeaderParameter = {};
2814
2870
  const localVarQueryParameter = {};
2815
- setBasicAuthToObject(localVarRequestOptions, configuration);
2816
2871
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2817
2872
  if (ios) localVarQueryParameter["ios"] = ios;
2818
2873
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -2842,7 +2897,6 @@ const ControllerInputsOutputsApiAxiosParamCreator = function(configuration) {
2842
2897
  };
2843
2898
  const localVarHeaderParameter = {};
2844
2899
  const localVarQueryParameter = {};
2845
- setBasicAuthToObject(localVarRequestOptions, configuration);
2846
2900
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2847
2901
  localVarHeaderParameter["Content-Type"] = "application/json";
2848
2902
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -2872,7 +2926,6 @@ const ControllerInputsOutputsApiAxiosParamCreator = function(configuration) {
2872
2926
  };
2873
2927
  const localVarHeaderParameter = {};
2874
2928
  const localVarQueryParameter = {};
2875
- setBasicAuthToObject(localVarRequestOptions, configuration);
2876
2929
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2877
2930
  if (ios) localVarQueryParameter["ios"] = ios;
2878
2931
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -2902,7 +2955,6 @@ const ControllerInputsOutputsApiAxiosParamCreator = function(configuration) {
2902
2955
  };
2903
2956
  const localVarHeaderParameter = {};
2904
2957
  const localVarQueryParameter = {};
2905
- setBasicAuthToObject(localVarRequestOptions, configuration);
2906
2958
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2907
2959
  localVarHeaderParameter["Content-Type"] = "application/json";
2908
2960
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -3001,7 +3053,7 @@ var ControllerInputsOutputsApi = class extends BaseAPI {
3001
3053
  return ControllerInputsOutputsApiFp(this.configuration).listIODescriptions(cell, controller, ios, direction, valueType, group, options).then((request) => request(this.axios, this.basePath));
3002
3054
  }
3003
3055
  /**
3004
- * 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).
3056
+ * 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).
3005
3057
  * @summary Get Input/Output Values
3006
3058
  * @param {string} cell Unique identifier addressing a cell in all API calls.
3007
3059
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -3013,7 +3065,7 @@ var ControllerInputsOutputsApi = class extends BaseAPI {
3013
3065
  return ControllerInputsOutputsApiFp(this.configuration).listIOValues(cell, controller, ios, options).then((request) => request(this.axios, this.basePath));
3014
3066
  }
3015
3067
  /**
3016
- * 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.
3068
+ * 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.
3017
3069
  * @summary Set Output Values
3018
3070
  * @param {string} cell Unique identifier addressing a cell in all API calls.
3019
3071
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -3037,7 +3089,7 @@ var ControllerInputsOutputsApi = class extends BaseAPI {
3037
3089
  return ControllerInputsOutputsApiFp(this.configuration).streamIOValues(cell, controller, ios, options).then((request) => request(this.axios, this.basePath));
3038
3090
  }
3039
3091
  /**
3040
- * 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 ```
3092
+ * 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 ```
3041
3093
  * @summary Wait For
3042
3094
  * @param {string} cell Unique identifier addressing a cell in all API calls.
3043
3095
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -3068,7 +3120,6 @@ const JoggingApiAxiosParamCreator = function(configuration) {
3068
3120
  };
3069
3121
  const localVarHeaderParameter = {};
3070
3122
  const localVarQueryParameter = {};
3071
- setBasicAuthToObject(localVarRequestOptions, configuration);
3072
3123
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3073
3124
  localVarHeaderParameter["Content-Type"] = "application/json";
3074
3125
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -3111,7 +3162,7 @@ const JoggingApiFactory = function(configuration, basePath, axios) {
3111
3162
  */
3112
3163
  var JoggingApi = class extends BaseAPI {
3113
3164
  /**
3114
- * <!-- 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.
3165
+ * <!-- 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.
3115
3166
  * @summary Execute Jogging
3116
3167
  * @param {string} cell Unique identifier addressing a cell in all API calls.
3117
3168
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -3142,7 +3193,6 @@ const KinematicsApiAxiosParamCreator = function(configuration) {
3142
3193
  };
3143
3194
  const localVarHeaderParameter = {};
3144
3195
  const localVarQueryParameter = {};
3145
- setBasicAuthToObject(localVarRequestOptions, configuration);
3146
3196
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3147
3197
  localVarHeaderParameter["Content-Type"] = "application/json";
3148
3198
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -3172,7 +3222,6 @@ const KinematicsApiAxiosParamCreator = function(configuration) {
3172
3222
  };
3173
3223
  const localVarHeaderParameter = {};
3174
3224
  const localVarQueryParameter = {};
3175
- setBasicAuthToObject(localVarRequestOptions, configuration);
3176
3225
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3177
3226
  localVarHeaderParameter["Content-Type"] = "application/json";
3178
3227
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -3268,7 +3317,6 @@ const LicenseApiAxiosParamCreator = function(configuration) {
3268
3317
  };
3269
3318
  const localVarHeaderParameter = {};
3270
3319
  const localVarQueryParameter = {};
3271
- setBasicAuthToObject(localVarRequestOptions, configuration);
3272
3320
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3273
3321
  localVarHeaderParameter["Content-Type"] = "application/json";
3274
3322
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -3295,7 +3343,6 @@ const LicenseApiAxiosParamCreator = function(configuration) {
3295
3343
  };
3296
3344
  const localVarHeaderParameter = {};
3297
3345
  const localVarQueryParameter = {};
3298
- setBasicAuthToObject(localVarRequestOptions, configuration);
3299
3346
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3300
3347
  setSearchParams(localVarUrlObj, localVarQueryParameter);
3301
3348
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -3320,7 +3367,6 @@ const LicenseApiAxiosParamCreator = function(configuration) {
3320
3367
  };
3321
3368
  const localVarHeaderParameter = {};
3322
3369
  const localVarQueryParameter = {};
3323
- setBasicAuthToObject(localVarRequestOptions, configuration);
3324
3370
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3325
3371
  setSearchParams(localVarUrlObj, localVarQueryParameter);
3326
3372
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -3345,7 +3391,6 @@ const LicenseApiAxiosParamCreator = function(configuration) {
3345
3391
  };
3346
3392
  const localVarHeaderParameter = {};
3347
3393
  const localVarQueryParameter = {};
3348
- setBasicAuthToObject(localVarRequestOptions, configuration);
3349
3394
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3350
3395
  setSearchParams(localVarUrlObj, localVarQueryParameter);
3351
3396
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -3475,7 +3520,6 @@ const MotionGroupApiAxiosParamCreator = function(configuration) {
3475
3520
  };
3476
3521
  const localVarHeaderParameter = {};
3477
3522
  const localVarQueryParameter = {};
3478
- setBasicAuthToObject(localVarRequestOptions, configuration);
3479
3523
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3480
3524
  if (responseCoordinateSystem !== void 0) localVarQueryParameter["response_coordinate_system"] = responseCoordinateSystem;
3481
3525
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -3505,7 +3549,6 @@ const MotionGroupApiAxiosParamCreator = function(configuration) {
3505
3549
  };
3506
3550
  const localVarHeaderParameter = {};
3507
3551
  const localVarQueryParameter = {};
3508
- setBasicAuthToObject(localVarRequestOptions, configuration);
3509
3552
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3510
3553
  setSearchParams(localVarUrlObj, localVarQueryParameter);
3511
3554
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -3534,7 +3577,6 @@ const MotionGroupApiAxiosParamCreator = function(configuration) {
3534
3577
  };
3535
3578
  const localVarHeaderParameter = {};
3536
3579
  const localVarQueryParameter = {};
3537
- setBasicAuthToObject(localVarRequestOptions, configuration);
3538
3580
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3539
3581
  if (responseRate !== void 0) localVarQueryParameter["response_rate"] = responseRate;
3540
3582
  if (responseCoordinateSystem !== void 0) localVarQueryParameter["response_coordinate_system"] = responseCoordinateSystem;
@@ -3657,7 +3699,6 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
3657
3699
  };
3658
3700
  const localVarHeaderParameter = {};
3659
3701
  const localVarQueryParameter = {};
3660
- setBasicAuthToObject(localVarRequestOptions, configuration);
3661
3702
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3662
3703
  setSearchParams(localVarUrlObj, localVarQueryParameter);
3663
3704
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -3684,7 +3725,6 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
3684
3725
  };
3685
3726
  const localVarHeaderParameter = {};
3686
3727
  const localVarQueryParameter = {};
3687
- setBasicAuthToObject(localVarRequestOptions, configuration);
3688
3728
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3689
3729
  setSearchParams(localVarUrlObj, localVarQueryParameter);
3690
3730
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -3711,7 +3751,6 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
3711
3751
  };
3712
3752
  const localVarHeaderParameter = {};
3713
3753
  const localVarQueryParameter = {};
3714
- setBasicAuthToObject(localVarRequestOptions, configuration);
3715
3754
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3716
3755
  setSearchParams(localVarUrlObj, localVarQueryParameter);
3717
3756
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -3736,7 +3775,6 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
3736
3775
  };
3737
3776
  const localVarHeaderParameter = {};
3738
3777
  const localVarQueryParameter = {};
3739
- setBasicAuthToObject(localVarRequestOptions, configuration);
3740
3778
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3741
3779
  setSearchParams(localVarUrlObj, localVarQueryParameter);
3742
3780
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -3763,7 +3801,6 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
3763
3801
  };
3764
3802
  const localVarHeaderParameter = {};
3765
3803
  const localVarQueryParameter = {};
3766
- setBasicAuthToObject(localVarRequestOptions, configuration);
3767
3804
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3768
3805
  setSearchParams(localVarUrlObj, localVarQueryParameter);
3769
3806
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -3845,9 +3882,9 @@ const MotionGroupModelsApiFactory = function(configuration, basePath, axios) {
3845
3882
  */
3846
3883
  var MotionGroupModelsApi = class extends BaseAPI {
3847
3884
  /**
3848
- * 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.
3885
+ * 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.
3849
3886
  * @summary Get Collision Model
3850
- * @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).
3887
+ * @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).
3851
3888
  * @param {*} [options] Override http request option.
3852
3889
  * @throws {RequiredError}
3853
3890
  */
@@ -3855,9 +3892,9 @@ var MotionGroupModelsApi = class extends BaseAPI {
3855
3892
  return MotionGroupModelsApiFp(this.configuration).getMotionGroupCollisionModel(motionGroupModel, options).then((request) => request(this.axios, this.basePath));
3856
3893
  }
3857
3894
  /**
3858
- * Returns the GLB asset for the specified motion group model. See [getMotionGroupModels](getMotionGroupModels) for supported identifiers.
3895
+ * Returns the GLB asset for the specified motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported identifiers.
3859
3896
  * @summary Download GLB Model
3860
- * @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).
3897
+ * @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).
3861
3898
  * @param {*} [options] Override http request option.
3862
3899
  * @throws {RequiredError}
3863
3900
  */
@@ -3865,9 +3902,9 @@ var MotionGroupModelsApi = class extends BaseAPI {
3865
3902
  return MotionGroupModelsApiFp(this.configuration).getMotionGroupGlbModel(motionGroupModel, options).then((request) => request(this.axios, this.basePath));
3866
3903
  }
3867
3904
  /**
3868
- * Returns the kinematics model (DH parameters) for the given motion group model. See [getMotionGroupModels](getMotionGroupModels) for supported motion group models.
3905
+ * Returns the kinematics model (DH parameters) for the given motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported motion group models.
3869
3906
  * @summary Get Kinematics
3870
- * @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).
3907
+ * @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).
3871
3908
  * @param {*} [options] Override http request option.
3872
3909
  * @throws {RequiredError}
3873
3910
  */
@@ -3884,9 +3921,9 @@ var MotionGroupModelsApi = class extends BaseAPI {
3884
3921
  return MotionGroupModelsApiFp(this.configuration).getMotionGroupModels(options).then((request) => request(this.axios, this.basePath));
3885
3922
  }
3886
3923
  /**
3887
- * Returns the USD scene model for the specified motion group model. See [getMotionGroupModels](getMotionGroupModels) for supported identifiers.
3924
+ * Returns the USD scene model for the specified motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported identifiers.
3888
3925
  * @summary Download USD Model
3889
- * @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).
3926
+ * @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).
3890
3927
  * @param {*} [options] Override http request option.
3891
3928
  * @throws {RequiredError}
3892
3929
  */
@@ -3913,7 +3950,6 @@ const ProgramApiAxiosParamCreator = function(configuration) {
3913
3950
  };
3914
3951
  const localVarHeaderParameter = {};
3915
3952
  const localVarQueryParameter = {};
3916
- setBasicAuthToObject(localVarRequestOptions, configuration);
3917
3953
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3918
3954
  setSearchParams(localVarUrlObj, localVarQueryParameter);
3919
3955
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -3940,7 +3976,6 @@ const ProgramApiAxiosParamCreator = function(configuration) {
3940
3976
  };
3941
3977
  const localVarHeaderParameter = {};
3942
3978
  const localVarQueryParameter = {};
3943
- setBasicAuthToObject(localVarRequestOptions, configuration);
3944
3979
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3945
3980
  setSearchParams(localVarUrlObj, localVarQueryParameter);
3946
3981
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -3969,7 +4004,6 @@ const ProgramApiAxiosParamCreator = function(configuration) {
3969
4004
  };
3970
4005
  const localVarHeaderParameter = {};
3971
4006
  const localVarQueryParameter = {};
3972
- setBasicAuthToObject(localVarRequestOptions, configuration);
3973
4007
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3974
4008
  localVarHeaderParameter["Content-Type"] = "application/json";
3975
4009
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -3999,7 +4033,6 @@ const ProgramApiAxiosParamCreator = function(configuration) {
3999
4033
  };
4000
4034
  const localVarHeaderParameter = {};
4001
4035
  const localVarQueryParameter = {};
4002
- setBasicAuthToObject(localVarRequestOptions, configuration);
4003
4036
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4004
4037
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4005
4038
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -4120,57 +4153,108 @@ var ProgramApi = class extends BaseAPI {
4120
4153
  * RobotConfigurationsApi - axios parameter creator
4121
4154
  */
4122
4155
  const RobotConfigurationsApiAxiosParamCreator = function(configuration) {
4123
- return { getRobotConfigurations: async (options = {}) => {
4124
- const localVarUrlObj = new URL(`/robot-configurations`, DUMMY_BASE_URL);
4125
- let baseOptions;
4126
- if (configuration) baseOptions = configuration.baseOptions;
4127
- const localVarRequestOptions = {
4128
- method: "GET",
4129
- ...baseOptions,
4130
- ...options
4131
- };
4132
- const localVarHeaderParameter = {};
4133
- const localVarQueryParameter = {};
4134
- setBasicAuthToObject(localVarRequestOptions, configuration);
4135
- await setBearerAuthToObject(localVarHeaderParameter, configuration);
4136
- setSearchParams(localVarUrlObj, localVarQueryParameter);
4137
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
4138
- localVarRequestOptions.headers = {
4139
- ...localVarHeaderParameter,
4140
- ...headersFromBaseOptions,
4141
- ...options.headers
4142
- };
4143
- return {
4144
- url: toPathString(localVarUrlObj),
4145
- options: localVarRequestOptions
4146
- };
4147
- } };
4156
+ return {
4157
+ getControllerConfigFromArpScan: async (robotControllerConfigurationRequest, options = {}) => {
4158
+ assertParamExists("getControllerConfigFromArpScan", "robotControllerConfigurationRequest", robotControllerConfigurationRequest);
4159
+ const localVarUrlObj = new URL(`/experimental/system/network/controllers`, DUMMY_BASE_URL);
4160
+ let baseOptions;
4161
+ if (configuration) baseOptions = configuration.baseOptions;
4162
+ const localVarRequestOptions = {
4163
+ method: "POST",
4164
+ ...baseOptions,
4165
+ ...options
4166
+ };
4167
+ const localVarHeaderParameter = {};
4168
+ const localVarQueryParameter = {};
4169
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
4170
+ localVarHeaderParameter["Content-Type"] = "application/json";
4171
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
4172
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
4173
+ localVarRequestOptions.headers = {
4174
+ ...localVarHeaderParameter,
4175
+ ...headersFromBaseOptions,
4176
+ ...options.headers
4177
+ };
4178
+ localVarRequestOptions.data = serializeDataIfNeeded(robotControllerConfigurationRequest, localVarRequestOptions, configuration);
4179
+ return {
4180
+ url: toPathString(localVarUrlObj),
4181
+ options: localVarRequestOptions
4182
+ };
4183
+ },
4184
+ getRobotConfigurations: async (options = {}) => {
4185
+ const localVarUrlObj = new URL(`/robot-configurations`, DUMMY_BASE_URL);
4186
+ let baseOptions;
4187
+ if (configuration) baseOptions = configuration.baseOptions;
4188
+ const localVarRequestOptions = {
4189
+ method: "GET",
4190
+ ...baseOptions,
4191
+ ...options
4192
+ };
4193
+ const localVarHeaderParameter = {};
4194
+ const localVarQueryParameter = {};
4195
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
4196
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
4197
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
4198
+ localVarRequestOptions.headers = {
4199
+ ...localVarHeaderParameter,
4200
+ ...headersFromBaseOptions,
4201
+ ...options.headers
4202
+ };
4203
+ return {
4204
+ url: toPathString(localVarUrlObj),
4205
+ options: localVarRequestOptions
4206
+ };
4207
+ }
4208
+ };
4148
4209
  };
4149
4210
  /**
4150
4211
  * RobotConfigurationsApi - functional programming interface
4151
4212
  */
4152
4213
  const RobotConfigurationsApiFp = function(configuration) {
4153
4214
  const localVarAxiosParamCreator = RobotConfigurationsApiAxiosParamCreator(configuration);
4154
- return { async getRobotConfigurations(options) {
4155
- const localVarAxiosArgs = await localVarAxiosParamCreator.getRobotConfigurations(options);
4156
- const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
4157
- const localVarOperationServerBasePath = operationServerMap["RobotConfigurationsApi.getRobotConfigurations"]?.[localVarOperationServerIndex]?.url;
4158
- return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
4159
- } };
4215
+ return {
4216
+ async getControllerConfigFromArpScan(robotControllerConfigurationRequest, options) {
4217
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getControllerConfigFromArpScan(robotControllerConfigurationRequest, options);
4218
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
4219
+ const localVarOperationServerBasePath = operationServerMap["RobotConfigurationsApi.getControllerConfigFromArpScan"]?.[localVarOperationServerIndex]?.url;
4220
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
4221
+ },
4222
+ async getRobotConfigurations(options) {
4223
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getRobotConfigurations(options);
4224
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
4225
+ const localVarOperationServerBasePath = operationServerMap["RobotConfigurationsApi.getRobotConfigurations"]?.[localVarOperationServerIndex]?.url;
4226
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
4227
+ }
4228
+ };
4160
4229
  };
4161
4230
  /**
4162
4231
  * RobotConfigurationsApi - factory interface
4163
4232
  */
4164
4233
  const RobotConfigurationsApiFactory = function(configuration, basePath, axios) {
4165
4234
  const localVarFp = RobotConfigurationsApiFp(configuration);
4166
- return { getRobotConfigurations(options) {
4167
- return localVarFp.getRobotConfigurations(options).then((request) => request(axios, basePath));
4168
- } };
4235
+ return {
4236
+ getControllerConfigFromArpScan(robotControllerConfigurationRequest, options) {
4237
+ return localVarFp.getControllerConfigFromArpScan(robotControllerConfigurationRequest, options).then((request) => request(axios, basePath));
4238
+ },
4239
+ getRobotConfigurations(options) {
4240
+ return localVarFp.getRobotConfigurations(options).then((request) => request(axios, basePath));
4241
+ }
4242
+ };
4169
4243
  };
4170
4244
  /**
4171
4245
  * RobotConfigurationsApi - object-oriented interface
4172
4246
  */
4173
4247
  var RobotConfigurationsApi = class extends BaseAPI {
4248
+ /**
4249
+ * Returns all robot controller configurations that match the provided [ARP scan result](#/operations/getArpScan).
4250
+ * @summary Robot Controller Configurations
4251
+ * @param {RobotControllerConfigurationRequest} robotControllerConfigurationRequest
4252
+ * @param {*} [options] Override http request option.
4253
+ * @throws {RequiredError}
4254
+ */
4255
+ getControllerConfigFromArpScan(robotControllerConfigurationRequest, options) {
4256
+ return RobotConfigurationsApiFp(this.configuration).getControllerConfigFromArpScan(robotControllerConfigurationRequest, options).then((request) => request(this.axios, this.basePath));
4257
+ }
4174
4258
  /**
4175
4259
  * Returns the identifiers of available robot configurations. A robot configuration represents a robot controller with one or more attached motion groups.
4176
4260
  * @summary List Robot Configurations
@@ -4200,7 +4284,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
4200
4284
  };
4201
4285
  const localVarHeaderParameter = {};
4202
4286
  const localVarQueryParameter = {};
4203
- setBasicAuthToObject(localVarRequestOptions, configuration);
4204
4287
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4205
4288
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4206
4289
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -4228,7 +4311,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
4228
4311
  };
4229
4312
  const localVarHeaderParameter = {};
4230
4313
  const localVarQueryParameter = {};
4231
- setBasicAuthToObject(localVarRequestOptions, configuration);
4232
4314
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4233
4315
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4234
4316
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -4256,7 +4338,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
4256
4338
  };
4257
4339
  const localVarHeaderParameter = {};
4258
4340
  const localVarQueryParameter = {};
4259
- setBasicAuthToObject(localVarRequestOptions, configuration);
4260
4341
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4261
4342
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4262
4343
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -4284,7 +4365,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
4284
4365
  };
4285
4366
  const localVarHeaderParameter = {};
4286
4367
  const localVarQueryParameter = {};
4287
- setBasicAuthToObject(localVarRequestOptions, configuration);
4288
4368
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4289
4369
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4290
4370
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -4312,7 +4392,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
4312
4392
  };
4313
4393
  const localVarHeaderParameter = {};
4314
4394
  const localVarQueryParameter = {};
4315
- setBasicAuthToObject(localVarRequestOptions, configuration);
4316
4395
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4317
4396
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4318
4397
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -4340,7 +4419,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
4340
4419
  };
4341
4420
  const localVarHeaderParameter = {};
4342
4421
  const localVarQueryParameter = {};
4343
- setBasicAuthToObject(localVarRequestOptions, configuration);
4344
4422
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4345
4423
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4346
4424
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -4367,7 +4445,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
4367
4445
  };
4368
4446
  const localVarHeaderParameter = {};
4369
4447
  const localVarQueryParameter = {};
4370
- setBasicAuthToObject(localVarRequestOptions, configuration);
4371
4448
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4372
4449
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4373
4450
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -4394,7 +4471,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
4394
4471
  };
4395
4472
  const localVarHeaderParameter = {};
4396
4473
  const localVarQueryParameter = {};
4397
- setBasicAuthToObject(localVarRequestOptions, configuration);
4398
4474
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4399
4475
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4400
4476
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -4421,7 +4497,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
4421
4497
  };
4422
4498
  const localVarHeaderParameter = {};
4423
4499
  const localVarQueryParameter = {};
4424
- setBasicAuthToObject(localVarRequestOptions, configuration);
4425
4500
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4426
4501
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4427
4502
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -4448,7 +4523,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
4448
4523
  };
4449
4524
  const localVarHeaderParameter = {};
4450
4525
  const localVarQueryParameter = {};
4451
- setBasicAuthToObject(localVarRequestOptions, configuration);
4452
4526
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4453
4527
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4454
4528
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -4475,7 +4549,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
4475
4549
  };
4476
4550
  const localVarHeaderParameter = {};
4477
4551
  const localVarQueryParameter = {};
4478
- setBasicAuthToObject(localVarRequestOptions, configuration);
4479
4552
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4480
4553
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4481
4554
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -4502,7 +4575,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
4502
4575
  };
4503
4576
  const localVarHeaderParameter = {};
4504
4577
  const localVarQueryParameter = {};
4505
- setBasicAuthToObject(localVarRequestOptions, configuration);
4506
4578
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4507
4579
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4508
4580
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -4531,7 +4603,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
4531
4603
  };
4532
4604
  const localVarHeaderParameter = {};
4533
4605
  const localVarQueryParameter = {};
4534
- setBasicAuthToObject(localVarRequestOptions, configuration);
4535
4606
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4536
4607
  localVarHeaderParameter["Content-Type"] = "application/json";
4537
4608
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -4562,7 +4633,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
4562
4633
  };
4563
4634
  const localVarHeaderParameter = {};
4564
4635
  const localVarQueryParameter = {};
4565
- setBasicAuthToObject(localVarRequestOptions, configuration);
4566
4636
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4567
4637
  localVarHeaderParameter["Content-Type"] = "application/json";
4568
4638
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -4593,7 +4663,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
4593
4663
  };
4594
4664
  const localVarHeaderParameter = {};
4595
4665
  const localVarQueryParameter = {};
4596
- setBasicAuthToObject(localVarRequestOptions, configuration);
4597
4666
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4598
4667
  localVarHeaderParameter["Content-Type"] = "application/json";
4599
4668
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -4948,7 +5017,6 @@ const StoreCollisionSetupsApiAxiosParamCreator = function(configuration) {
4948
5017
  };
4949
5018
  const localVarHeaderParameter = {};
4950
5019
  const localVarQueryParameter = {};
4951
- setBasicAuthToObject(localVarRequestOptions, configuration);
4952
5020
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4953
5021
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4954
5022
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -4976,7 +5044,6 @@ const StoreCollisionSetupsApiAxiosParamCreator = function(configuration) {
4976
5044
  };
4977
5045
  const localVarHeaderParameter = {};
4978
5046
  const localVarQueryParameter = {};
4979
- setBasicAuthToObject(localVarRequestOptions, configuration);
4980
5047
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4981
5048
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4982
5049
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -5003,7 +5070,6 @@ const StoreCollisionSetupsApiAxiosParamCreator = function(configuration) {
5003
5070
  };
5004
5071
  const localVarHeaderParameter = {};
5005
5072
  const localVarQueryParameter = {};
5006
- setBasicAuthToObject(localVarRequestOptions, configuration);
5007
5073
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5008
5074
  setSearchParams(localVarUrlObj, localVarQueryParameter);
5009
5075
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -5030,7 +5096,6 @@ const StoreCollisionSetupsApiAxiosParamCreator = function(configuration) {
5030
5096
  };
5031
5097
  const localVarHeaderParameter = {};
5032
5098
  const localVarQueryParameter = {};
5033
- setBasicAuthToObject(localVarRequestOptions, configuration);
5034
5099
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5035
5100
  setSearchParams(localVarUrlObj, localVarQueryParameter);
5036
5101
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -5059,7 +5124,6 @@ const StoreCollisionSetupsApiAxiosParamCreator = function(configuration) {
5059
5124
  };
5060
5125
  const localVarHeaderParameter = {};
5061
5126
  const localVarQueryParameter = {};
5062
- setBasicAuthToObject(localVarRequestOptions, configuration);
5063
5127
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5064
5128
  localVarHeaderParameter["Content-Type"] = "application/json";
5065
5129
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -5215,7 +5279,6 @@ const StoreObjectApiAxiosParamCreator = function(configuration) {
5215
5279
  };
5216
5280
  const localVarHeaderParameter = {};
5217
5281
  const localVarQueryParameter = {};
5218
- setBasicAuthToObject(localVarRequestOptions, configuration);
5219
5282
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5220
5283
  setSearchParams(localVarUrlObj, localVarQueryParameter);
5221
5284
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -5243,7 +5306,6 @@ const StoreObjectApiAxiosParamCreator = function(configuration) {
5243
5306
  };
5244
5307
  const localVarHeaderParameter = {};
5245
5308
  const localVarQueryParameter = {};
5246
- setBasicAuthToObject(localVarRequestOptions, configuration);
5247
5309
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5248
5310
  setSearchParams(localVarUrlObj, localVarQueryParameter);
5249
5311
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -5271,7 +5333,6 @@ const StoreObjectApiAxiosParamCreator = function(configuration) {
5271
5333
  };
5272
5334
  const localVarHeaderParameter = {};
5273
5335
  const localVarQueryParameter = {};
5274
- setBasicAuthToObject(localVarRequestOptions, configuration);
5275
5336
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5276
5337
  setSearchParams(localVarUrlObj, localVarQueryParameter);
5277
5338
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -5299,7 +5360,6 @@ const StoreObjectApiAxiosParamCreator = function(configuration) {
5299
5360
  };
5300
5361
  const localVarHeaderParameter = {};
5301
5362
  const localVarQueryParameter = {};
5302
- setBasicAuthToObject(localVarRequestOptions, configuration);
5303
5363
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5304
5364
  setSearchParams(localVarUrlObj, localVarQueryParameter);
5305
5365
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -5326,7 +5386,6 @@ const StoreObjectApiAxiosParamCreator = function(configuration) {
5326
5386
  };
5327
5387
  const localVarHeaderParameter = {};
5328
5388
  const localVarQueryParameter = {};
5329
- setBasicAuthToObject(localVarRequestOptions, configuration);
5330
5389
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5331
5390
  setSearchParams(localVarUrlObj, localVarQueryParameter);
5332
5391
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -5355,7 +5414,6 @@ const StoreObjectApiAxiosParamCreator = function(configuration) {
5355
5414
  const localVarHeaderParameter = {};
5356
5415
  const localVarQueryParameter = {};
5357
5416
  const localVarFormParams = new (configuration && configuration.formDataCtor || FormData)();
5358
- setBasicAuthToObject(localVarRequestOptions, configuration);
5359
5417
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5360
5418
  if (anyValue !== void 0) localVarFormParams.append("any_value", new Blob([JSON.stringify(anyValue)], { type: "application/json" }));
5361
5419
  localVarHeaderParameter["Content-Type"] = "multipart/form-data";
@@ -5503,7 +5561,7 @@ var StoreObjectApi = class extends BaseAPI {
5503
5561
  return StoreObjectApiFp(this.configuration).listAllObjectKeys(cell, options).then((request) => request(this.axios, this.basePath));
5504
5562
  }
5505
5563
  /**
5506
- * 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.
5564
+ * 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.
5507
5565
  * @summary Store Object
5508
5566
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5509
5567
  * @param {string} key
@@ -5532,7 +5590,6 @@ const SystemApiAxiosParamCreator = function(configuration) {
5532
5590
  };
5533
5591
  const localVarHeaderParameter = {};
5534
5592
  const localVarQueryParameter = {};
5535
- setBasicAuthToObject(localVarRequestOptions, configuration);
5536
5593
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5537
5594
  if (resources) localVarQueryParameter["resources"] = resources.join(COLLECTION_FORMATS.csv);
5538
5595
  if (metadata !== void 0) localVarQueryParameter["metadata"] = metadata;
@@ -5560,7 +5617,6 @@ const SystemApiAxiosParamCreator = function(configuration) {
5560
5617
  };
5561
5618
  const localVarHeaderParameter = {};
5562
5619
  const localVarQueryParameter = {};
5563
- setBasicAuthToObject(localVarRequestOptions, configuration);
5564
5620
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5565
5621
  if (channel !== void 0) localVarQueryParameter["channel"] = channel;
5566
5622
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -5586,7 +5642,6 @@ const SystemApiAxiosParamCreator = function(configuration) {
5586
5642
  };
5587
5643
  const localVarHeaderParameter = {};
5588
5644
  const localVarQueryParameter = {};
5589
- setBasicAuthToObject(localVarRequestOptions, configuration);
5590
5645
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5591
5646
  if (_interface !== void 0) localVarQueryParameter["interface"] = _interface;
5592
5647
  if (cidr !== void 0) localVarQueryParameter["cidr"] = cidr;
@@ -5615,7 +5670,6 @@ const SystemApiAxiosParamCreator = function(configuration) {
5615
5670
  };
5616
5671
  const localVarHeaderParameter = {};
5617
5672
  const localVarQueryParameter = {};
5618
- setBasicAuthToObject(localVarRequestOptions, configuration);
5619
5673
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5620
5674
  if (operationId !== void 0) localVarQueryParameter["operation_id"] = operationId;
5621
5675
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -5641,7 +5695,6 @@ const SystemApiAxiosParamCreator = function(configuration) {
5641
5695
  };
5642
5696
  const localVarHeaderParameter = {};
5643
5697
  const localVarQueryParameter = {};
5644
- setBasicAuthToObject(localVarRequestOptions, configuration);
5645
5698
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5646
5699
  setSearchParams(localVarUrlObj, localVarQueryParameter);
5647
5700
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -5666,7 +5719,6 @@ const SystemApiAxiosParamCreator = function(configuration) {
5666
5719
  };
5667
5720
  const localVarHeaderParameter = {};
5668
5721
  const localVarQueryParameter = {};
5669
- setBasicAuthToObject(localVarRequestOptions, configuration);
5670
5722
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5671
5723
  setSearchParams(localVarUrlObj, localVarQueryParameter);
5672
5724
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -5691,7 +5743,6 @@ const SystemApiAxiosParamCreator = function(configuration) {
5691
5743
  };
5692
5744
  const localVarHeaderParameter = {};
5693
5745
  const localVarQueryParameter = {};
5694
- setBasicAuthToObject(localVarRequestOptions, configuration);
5695
5746
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5696
5747
  setSearchParams(localVarUrlObj, localVarQueryParameter);
5697
5748
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -5716,7 +5767,6 @@ const SystemApiAxiosParamCreator = function(configuration) {
5716
5767
  };
5717
5768
  const localVarHeaderParameter = {};
5718
5769
  const localVarQueryParameter = {};
5719
- setBasicAuthToObject(localVarRequestOptions, configuration);
5720
5770
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5721
5771
  setSearchParams(localVarUrlObj, localVarQueryParameter);
5722
5772
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -5741,7 +5791,6 @@ const SystemApiAxiosParamCreator = function(configuration) {
5741
5791
  };
5742
5792
  const localVarHeaderParameter = {};
5743
5793
  const localVarQueryParameter = {};
5744
- setBasicAuthToObject(localVarRequestOptions, configuration);
5745
5794
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5746
5795
  setSearchParams(localVarUrlObj, localVarQueryParameter);
5747
5796
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -5766,7 +5815,6 @@ const SystemApiAxiosParamCreator = function(configuration) {
5766
5815
  };
5767
5816
  const localVarHeaderParameter = {};
5768
5817
  const localVarQueryParameter = {};
5769
- setBasicAuthToObject(localVarRequestOptions, configuration);
5770
5818
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5771
5819
  setSearchParams(localVarUrlObj, localVarQueryParameter);
5772
5820
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -5792,7 +5840,6 @@ const SystemApiAxiosParamCreator = function(configuration) {
5792
5840
  };
5793
5841
  const localVarHeaderParameter = {};
5794
5842
  const localVarQueryParameter = {};
5795
- setBasicAuthToObject(localVarRequestOptions, configuration);
5796
5843
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5797
5844
  if (resources) localVarQueryParameter["resources"] = resources.join(COLLECTION_FORMATS.csv);
5798
5845
  localVarHeaderParameter["Content-Type"] = "application/gzip";
@@ -5821,7 +5868,6 @@ const SystemApiAxiosParamCreator = function(configuration) {
5821
5868
  };
5822
5869
  const localVarHeaderParameter = {};
5823
5870
  const localVarQueryParameter = {};
5824
- setBasicAuthToObject(localVarRequestOptions, configuration);
5825
5871
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5826
5872
  localVarHeaderParameter["Content-Type"] = "application/json";
5827
5873
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -6076,7 +6122,7 @@ var SystemApi = class extends BaseAPI {
6076
6122
  return SystemApiFp(this.configuration).restoreConfiguration(body, resources, options).then((request) => request(this.axios, this.basePath));
6077
6123
  }
6078
6124
  /**
6079
- * 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.
6125
+ * 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.
6080
6126
  * @summary Update Wandelbots NOVA version
6081
6127
  * @param {UpdateNovaVersionRequest} updateNovaVersionRequest
6082
6128
  * @param {*} [options] Override http request option.
@@ -6106,7 +6152,6 @@ const TrajectoryCachingApiAxiosParamCreator = function(configuration) {
6106
6152
  };
6107
6153
  const localVarHeaderParameter = {};
6108
6154
  const localVarQueryParameter = {};
6109
- setBasicAuthToObject(localVarRequestOptions, configuration);
6110
6155
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6111
6156
  localVarHeaderParameter["Content-Type"] = "application/json";
6112
6157
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -6136,7 +6181,6 @@ const TrajectoryCachingApiAxiosParamCreator = function(configuration) {
6136
6181
  };
6137
6182
  const localVarHeaderParameter = {};
6138
6183
  const localVarQueryParameter = {};
6139
- setBasicAuthToObject(localVarRequestOptions, configuration);
6140
6184
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6141
6185
  setSearchParams(localVarUrlObj, localVarQueryParameter);
6142
6186
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -6165,7 +6209,6 @@ const TrajectoryCachingApiAxiosParamCreator = function(configuration) {
6165
6209
  };
6166
6210
  const localVarHeaderParameter = {};
6167
6211
  const localVarQueryParameter = {};
6168
- setBasicAuthToObject(localVarRequestOptions, configuration);
6169
6212
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6170
6213
  setSearchParams(localVarUrlObj, localVarQueryParameter);
6171
6214
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -6194,7 +6237,6 @@ const TrajectoryCachingApiAxiosParamCreator = function(configuration) {
6194
6237
  };
6195
6238
  const localVarHeaderParameter = {};
6196
6239
  const localVarQueryParameter = {};
6197
- setBasicAuthToObject(localVarRequestOptions, configuration);
6198
6240
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6199
6241
  setSearchParams(localVarUrlObj, localVarQueryParameter);
6200
6242
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -6222,7 +6264,6 @@ const TrajectoryCachingApiAxiosParamCreator = function(configuration) {
6222
6264
  };
6223
6265
  const localVarHeaderParameter = {};
6224
6266
  const localVarQueryParameter = {};
6225
- setBasicAuthToObject(localVarRequestOptions, configuration);
6226
6267
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6227
6268
  setSearchParams(localVarUrlObj, localVarQueryParameter);
6228
6269
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -6304,7 +6345,7 @@ const TrajectoryCachingApiFactory = function(configuration, basePath, axios) {
6304
6345
  */
6305
6346
  var TrajectoryCachingApi = class extends BaseAPI {
6306
6347
  /**
6307
- * 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.
6348
+ * 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.
6308
6349
  * @summary Add Trajectory
6309
6350
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6310
6351
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -6327,7 +6368,7 @@ var TrajectoryCachingApi = class extends BaseAPI {
6327
6368
  return TrajectoryCachingApiFp(this.configuration).clearTrajectories(cell, controller, options).then((request) => request(this.axios, this.basePath));
6328
6369
  }
6329
6370
  /**
6330
- * 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.
6371
+ * 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.
6331
6372
  * @summary Delete Trajectory
6332
6373
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6333
6374
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -6339,7 +6380,7 @@ var TrajectoryCachingApi = class extends BaseAPI {
6339
6380
  return TrajectoryCachingApiFp(this.configuration).deleteTrajectory(cell, controller, trajectory, options).then((request) => request(this.axios, this.basePath));
6340
6381
  }
6341
6382
  /**
6342
- * Get a previously created trajectory from cache. Use [listTrajectories](listTrajectories) to list all cached trajectories.
6383
+ * Get a previously created trajectory from cache. Use [listTrajectories](#/operations/listTrajectories) to list all cached trajectories.
6343
6384
  * @summary Get Trajectory
6344
6385
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6345
6386
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -6351,7 +6392,7 @@ var TrajectoryCachingApi = class extends BaseAPI {
6351
6392
  return TrajectoryCachingApiFp(this.configuration).getTrajectory(cell, controller, trajectory, options).then((request) => request(this.axios, this.basePath));
6352
6393
  }
6353
6394
  /**
6354
- * 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.
6395
+ * 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.
6355
6396
  * @summary List Trajectories
6356
6397
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6357
6398
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -6381,7 +6422,6 @@ const TrajectoryExecutionApiAxiosParamCreator = function(configuration) {
6381
6422
  };
6382
6423
  const localVarHeaderParameter = {};
6383
6424
  const localVarQueryParameter = {};
6384
- setBasicAuthToObject(localVarRequestOptions, configuration);
6385
6425
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6386
6426
  localVarHeaderParameter["Content-Type"] = "application/json";
6387
6427
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -6424,7 +6464,7 @@ const TrajectoryExecutionApiFactory = function(configuration, basePath, axios) {
6424
6464
  */
6425
6465
  var TrajectoryExecutionApi = class extends BaseAPI {
6426
6466
  /**
6427
- * <!-- 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.
6467
+ * <!-- 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.
6428
6468
  * @summary Execute Trajectory
6429
6469
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6430
6470
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -6441,6 +6481,35 @@ var TrajectoryExecutionApi = class extends BaseAPI {
6441
6481
  */
6442
6482
  const TrajectoryPlanningApiAxiosParamCreator = function(configuration) {
6443
6483
  return {
6484
+ mergeTrajectories: async (cell, mergeTrajectoriesRequest, options = {}) => {
6485
+ assertParamExists("mergeTrajectories", "cell", cell);
6486
+ assertParamExists("mergeTrajectories", "mergeTrajectoriesRequest", mergeTrajectoriesRequest);
6487
+ const localVarPath = `/experimental/cells/{cell}/trajectory-planning/merge-trajectories`.replace(`{cell}`, encodeURIComponent(String(cell)));
6488
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
6489
+ let baseOptions;
6490
+ if (configuration) baseOptions = configuration.baseOptions;
6491
+ const localVarRequestOptions = {
6492
+ method: "POST",
6493
+ ...baseOptions,
6494
+ ...options
6495
+ };
6496
+ const localVarHeaderParameter = {};
6497
+ const localVarQueryParameter = {};
6498
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
6499
+ localVarHeaderParameter["Content-Type"] = "application/json";
6500
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
6501
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
6502
+ localVarRequestOptions.headers = {
6503
+ ...localVarHeaderParameter,
6504
+ ...headersFromBaseOptions,
6505
+ ...options.headers
6506
+ };
6507
+ localVarRequestOptions.data = serializeDataIfNeeded(mergeTrajectoriesRequest, localVarRequestOptions, configuration);
6508
+ return {
6509
+ url: toPathString(localVarUrlObj),
6510
+ options: localVarRequestOptions
6511
+ };
6512
+ },
6444
6513
  planCollisionFree: async (cell, planCollisionFreeRequest, options = {}) => {
6445
6514
  assertParamExists("planCollisionFree", "cell", cell);
6446
6515
  assertParamExists("planCollisionFree", "planCollisionFreeRequest", planCollisionFreeRequest);
@@ -6455,7 +6524,6 @@ const TrajectoryPlanningApiAxiosParamCreator = function(configuration) {
6455
6524
  };
6456
6525
  const localVarHeaderParameter = {};
6457
6526
  const localVarQueryParameter = {};
6458
- setBasicAuthToObject(localVarRequestOptions, configuration);
6459
6527
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6460
6528
  localVarHeaderParameter["Content-Type"] = "application/json";
6461
6529
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -6485,7 +6553,6 @@ const TrajectoryPlanningApiAxiosParamCreator = function(configuration) {
6485
6553
  };
6486
6554
  const localVarHeaderParameter = {};
6487
6555
  const localVarQueryParameter = {};
6488
- setBasicAuthToObject(localVarRequestOptions, configuration);
6489
6556
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6490
6557
  localVarHeaderParameter["Content-Type"] = "application/json";
6491
6558
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -6509,6 +6576,12 @@ const TrajectoryPlanningApiAxiosParamCreator = function(configuration) {
6509
6576
  const TrajectoryPlanningApiFp = function(configuration) {
6510
6577
  const localVarAxiosParamCreator = TrajectoryPlanningApiAxiosParamCreator(configuration);
6511
6578
  return {
6579
+ async mergeTrajectories(cell, mergeTrajectoriesRequest, options) {
6580
+ const localVarAxiosArgs = await localVarAxiosParamCreator.mergeTrajectories(cell, mergeTrajectoriesRequest, options);
6581
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
6582
+ const localVarOperationServerBasePath = operationServerMap["TrajectoryPlanningApi.mergeTrajectories"]?.[localVarOperationServerIndex]?.url;
6583
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
6584
+ },
6512
6585
  async planCollisionFree(cell, planCollisionFreeRequest, options) {
6513
6586
  const localVarAxiosArgs = await localVarAxiosParamCreator.planCollisionFree(cell, planCollisionFreeRequest, options);
6514
6587
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
@@ -6529,6 +6602,9 @@ const TrajectoryPlanningApiFp = function(configuration) {
6529
6602
  const TrajectoryPlanningApiFactory = function(configuration, basePath, axios) {
6530
6603
  const localVarFp = TrajectoryPlanningApiFp(configuration);
6531
6604
  return {
6605
+ mergeTrajectories(cell, mergeTrajectoriesRequest, options) {
6606
+ return localVarFp.mergeTrajectories(cell, mergeTrajectoriesRequest, options).then((request) => request(axios, basePath));
6607
+ },
6532
6608
  planCollisionFree(cell, planCollisionFreeRequest, options) {
6533
6609
  return localVarFp.planCollisionFree(cell, planCollisionFreeRequest, options).then((request) => request(axios, basePath));
6534
6610
  },
@@ -6542,7 +6618,18 @@ const TrajectoryPlanningApiFactory = function(configuration, basePath, axios) {
6542
6618
  */
6543
6619
  var TrajectoryPlanningApi = class extends BaseAPI {
6544
6620
  /**
6545
- * 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.
6621
+ * <!-- theme: danger --> > **Experimental** Merges a list of joint trajectories into a single trajectory with collision-aware blending. This endpoint merges a list of separate trajectories by connecting them via blending. The blending is performed with collision checking to ensure the merged trajectory is safe to execute. Timescaling will be applied to the blended area to ensure all limits are respected.
6622
+ * @summary Merge Trajectories
6623
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
6624
+ * @param {MergeTrajectoriesRequest} mergeTrajectoriesRequest
6625
+ * @param {*} [options] Override http request option.
6626
+ * @throws {RequiredError}
6627
+ */
6628
+ mergeTrajectories(cell, mergeTrajectoriesRequest, options) {
6629
+ return TrajectoryPlanningApiFp(this.configuration).mergeTrajectories(cell, mergeTrajectoriesRequest, options).then((request) => request(this.axios, this.basePath));
6630
+ }
6631
+ /**
6632
+ * 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.
6546
6633
  * @summary Plan Collision-Free Trajectory
6547
6634
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6548
6635
  * @param {PlanCollisionFreeRequest} planCollisionFreeRequest
@@ -6553,7 +6640,7 @@ var TrajectoryPlanningApi = class extends BaseAPI {
6553
6640
  return TrajectoryPlanningApiFp(this.configuration).planCollisionFree(cell, planCollisionFreeRequest, options).then((request) => request(this.axios, this.basePath));
6554
6641
  }
6555
6642
  /**
6556
- * 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.
6643
+ * 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.
6557
6644
  * @summary Plan Trajectory
6558
6645
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6559
6646
  * @param {PlanTrajectoryRequest} planTrajectoryRequest
@@ -6579,7 +6666,6 @@ const VersionApiAxiosParamCreator = function(configuration) {
6579
6666
  };
6580
6667
  const localVarHeaderParameter = {};
6581
6668
  const localVarQueryParameter = {};
6582
- setBasicAuthToObject(localVarRequestOptions, configuration);
6583
6669
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6584
6670
  setSearchParams(localVarUrlObj, localVarQueryParameter);
6585
6671
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -6650,7 +6736,6 @@ const VirtualControllerApiAxiosParamCreator = function(configuration) {
6650
6736
  };
6651
6737
  const localVarHeaderParameter = {};
6652
6738
  const localVarQueryParameter = {};
6653
- setBasicAuthToObject(localVarRequestOptions, configuration);
6654
6739
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6655
6740
  localVarHeaderParameter["Content-Type"] = "application/json";
6656
6741
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -6666,6 +6751,36 @@ const VirtualControllerApiAxiosParamCreator = function(configuration) {
6666
6751
  options: localVarRequestOptions
6667
6752
  };
6668
6753
  },
6754
+ addVirtualControllerMotionGroup: async (cell, controller, addVirtualControllerMotionGroupRequest, options = {}) => {
6755
+ assertParamExists("addVirtualControllerMotionGroup", "cell", cell);
6756
+ assertParamExists("addVirtualControllerMotionGroup", "controller", controller);
6757
+ assertParamExists("addVirtualControllerMotionGroup", "addVirtualControllerMotionGroupRequest", addVirtualControllerMotionGroupRequest);
6758
+ const localVarPath = `/cells/{cell}/virtual-controllers/{controller}/motion-groups`.replace(`{cell}`, encodeURIComponent(String(cell))).replace(`{controller}`, encodeURIComponent(String(controller)));
6759
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
6760
+ let baseOptions;
6761
+ if (configuration) baseOptions = configuration.baseOptions;
6762
+ const localVarRequestOptions = {
6763
+ method: "POST",
6764
+ ...baseOptions,
6765
+ ...options
6766
+ };
6767
+ const localVarHeaderParameter = {};
6768
+ const localVarQueryParameter = {};
6769
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
6770
+ localVarHeaderParameter["Content-Type"] = "application/json";
6771
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
6772
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
6773
+ localVarRequestOptions.headers = {
6774
+ ...localVarHeaderParameter,
6775
+ ...headersFromBaseOptions,
6776
+ ...options.headers
6777
+ };
6778
+ localVarRequestOptions.data = serializeDataIfNeeded(addVirtualControllerMotionGroupRequest, localVarRequestOptions, configuration);
6779
+ return {
6780
+ url: toPathString(localVarUrlObj),
6781
+ options: localVarRequestOptions
6782
+ };
6783
+ },
6669
6784
  addVirtualControllerTcp: async (cell, controller, motionGroup, tcp, robotTcpData, options = {}) => {
6670
6785
  assertParamExists("addVirtualControllerTcp", "cell", cell);
6671
6786
  assertParamExists("addVirtualControllerTcp", "controller", controller);
@@ -6683,7 +6798,6 @@ const VirtualControllerApiAxiosParamCreator = function(configuration) {
6683
6798
  };
6684
6799
  const localVarHeaderParameter = {};
6685
6800
  const localVarQueryParameter = {};
6686
- setBasicAuthToObject(localVarRequestOptions, configuration);
6687
6801
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6688
6802
  localVarHeaderParameter["Content-Type"] = "application/json";
6689
6803
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -6714,7 +6828,6 @@ const VirtualControllerApiAxiosParamCreator = function(configuration) {
6714
6828
  };
6715
6829
  const localVarHeaderParameter = {};
6716
6830
  const localVarQueryParameter = {};
6717
- setBasicAuthToObject(localVarRequestOptions, configuration);
6718
6831
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6719
6832
  if (deleteDependent !== void 0) localVarQueryParameter["delete_dependent"] = deleteDependent;
6720
6833
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -6729,6 +6842,34 @@ const VirtualControllerApiAxiosParamCreator = function(configuration) {
6729
6842
  options: localVarRequestOptions
6730
6843
  };
6731
6844
  },
6845
+ deleteVirtualControllerMotionGroup: async (cell, controller, motionGroup, options = {}) => {
6846
+ assertParamExists("deleteVirtualControllerMotionGroup", "cell", cell);
6847
+ assertParamExists("deleteVirtualControllerMotionGroup", "controller", controller);
6848
+ assertParamExists("deleteVirtualControllerMotionGroup", "motionGroup", motionGroup);
6849
+ 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)));
6850
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
6851
+ let baseOptions;
6852
+ if (configuration) baseOptions = configuration.baseOptions;
6853
+ const localVarRequestOptions = {
6854
+ method: "DELETE",
6855
+ ...baseOptions,
6856
+ ...options
6857
+ };
6858
+ const localVarHeaderParameter = {};
6859
+ const localVarQueryParameter = {};
6860
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
6861
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
6862
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
6863
+ localVarRequestOptions.headers = {
6864
+ ...localVarHeaderParameter,
6865
+ ...headersFromBaseOptions,
6866
+ ...options.headers
6867
+ };
6868
+ return {
6869
+ url: toPathString(localVarUrlObj),
6870
+ options: localVarRequestOptions
6871
+ };
6872
+ },
6732
6873
  deleteVirtualControllerTcp: async (cell, controller, motionGroup, tcp, options = {}) => {
6733
6874
  assertParamExists("deleteVirtualControllerTcp", "cell", cell);
6734
6875
  assertParamExists("deleteVirtualControllerTcp", "controller", controller);
@@ -6745,7 +6886,6 @@ const VirtualControllerApiAxiosParamCreator = function(configuration) {
6745
6886
  };
6746
6887
  const localVarHeaderParameter = {};
6747
6888
  const localVarQueryParameter = {};
6748
- setBasicAuthToObject(localVarRequestOptions, configuration);
6749
6889
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6750
6890
  setSearchParams(localVarUrlObj, localVarQueryParameter);
6751
6891
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -6773,7 +6913,6 @@ const VirtualControllerApiAxiosParamCreator = function(configuration) {
6773
6913
  };
6774
6914
  const localVarHeaderParameter = {};
6775
6915
  const localVarQueryParameter = {};
6776
- setBasicAuthToObject(localVarRequestOptions, configuration);
6777
6916
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6778
6917
  setSearchParams(localVarUrlObj, localVarQueryParameter);
6779
6918
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -6802,7 +6941,6 @@ const VirtualControllerApiAxiosParamCreator = function(configuration) {
6802
6941
  };
6803
6942
  const localVarHeaderParameter = {};
6804
6943
  const localVarQueryParameter = {};
6805
- setBasicAuthToObject(localVarRequestOptions, configuration);
6806
6944
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6807
6945
  setSearchParams(localVarUrlObj, localVarQueryParameter);
6808
6946
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -6830,7 +6968,6 @@ const VirtualControllerApiAxiosParamCreator = function(configuration) {
6830
6968
  };
6831
6969
  const localVarHeaderParameter = {};
6832
6970
  const localVarQueryParameter = {};
6833
- setBasicAuthToObject(localVarRequestOptions, configuration);
6834
6971
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6835
6972
  setSearchParams(localVarUrlObj, localVarQueryParameter);
6836
6973
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -6858,7 +6995,6 @@ const VirtualControllerApiAxiosParamCreator = function(configuration) {
6858
6995
  };
6859
6996
  const localVarHeaderParameter = {};
6860
6997
  const localVarQueryParameter = {};
6861
- setBasicAuthToObject(localVarRequestOptions, configuration);
6862
6998
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6863
6999
  setSearchParams(localVarUrlObj, localVarQueryParameter);
6864
7000
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -6887,7 +7023,6 @@ const VirtualControllerApiAxiosParamCreator = function(configuration) {
6887
7023
  };
6888
7024
  const localVarHeaderParameter = {};
6889
7025
  const localVarQueryParameter = {};
6890
- setBasicAuthToObject(localVarRequestOptions, configuration);
6891
7026
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6892
7027
  setSearchParams(localVarUrlObj, localVarQueryParameter);
6893
7028
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -6915,7 +7050,6 @@ const VirtualControllerApiAxiosParamCreator = function(configuration) {
6915
7050
  };
6916
7051
  const localVarHeaderParameter = {};
6917
7052
  const localVarQueryParameter = {};
6918
- setBasicAuthToObject(localVarRequestOptions, configuration);
6919
7053
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6920
7054
  setSearchParams(localVarUrlObj, localVarQueryParameter);
6921
7055
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -6944,7 +7078,6 @@ const VirtualControllerApiAxiosParamCreator = function(configuration) {
6944
7078
  };
6945
7079
  const localVarHeaderParameter = {};
6946
7080
  const localVarQueryParameter = {};
6947
- setBasicAuthToObject(localVarRequestOptions, configuration);
6948
7081
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6949
7082
  setSearchParams(localVarUrlObj, localVarQueryParameter);
6950
7083
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -6972,7 +7105,6 @@ const VirtualControllerApiAxiosParamCreator = function(configuration) {
6972
7105
  };
6973
7106
  const localVarHeaderParameter = {};
6974
7107
  const localVarQueryParameter = {};
6975
- setBasicAuthToObject(localVarRequestOptions, configuration);
6976
7108
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6977
7109
  if (active !== void 0) localVarQueryParameter["active"] = active;
6978
7110
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -7003,7 +7135,6 @@ const VirtualControllerApiAxiosParamCreator = function(configuration) {
7003
7135
  };
7004
7136
  const localVarHeaderParameter = {};
7005
7137
  const localVarQueryParameter = {};
7006
- setBasicAuthToObject(localVarRequestOptions, configuration);
7007
7138
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
7008
7139
  localVarHeaderParameter["Content-Type"] = "application/json";
7009
7140
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -7034,7 +7165,6 @@ const VirtualControllerApiAxiosParamCreator = function(configuration) {
7034
7165
  };
7035
7166
  const localVarHeaderParameter = {};
7036
7167
  const localVarQueryParameter = {};
7037
- setBasicAuthToObject(localVarRequestOptions, configuration);
7038
7168
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
7039
7169
  if (mode !== void 0) localVarQueryParameter["mode"] = mode;
7040
7170
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -7065,7 +7195,6 @@ const VirtualControllerApiAxiosParamCreator = function(configuration) {
7065
7195
  };
7066
7196
  const localVarHeaderParameter = {};
7067
7197
  const localVarQueryParameter = {};
7068
- setBasicAuthToObject(localVarRequestOptions, configuration);
7069
7198
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
7070
7199
  localVarHeaderParameter["Content-Type"] = "application/json";
7071
7200
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -7095,6 +7224,12 @@ const VirtualControllerApiFp = function(configuration) {
7095
7224
  const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.addVirtualControllerCoordinateSystem"]?.[localVarOperationServerIndex]?.url;
7096
7225
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
7097
7226
  },
7227
+ async addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options) {
7228
+ const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options);
7229
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
7230
+ const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.addVirtualControllerMotionGroup"]?.[localVarOperationServerIndex]?.url;
7231
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
7232
+ },
7098
7233
  async addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options) {
7099
7234
  const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options);
7100
7235
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
@@ -7107,6 +7242,12 @@ const VirtualControllerApiFp = function(configuration) {
7107
7242
  const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.deleteVirtualControllerCoordinateSystem"]?.[localVarOperationServerIndex]?.url;
7108
7243
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
7109
7244
  },
7245
+ async deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options) {
7246
+ const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options);
7247
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
7248
+ const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.deleteVirtualControllerMotionGroup"]?.[localVarOperationServerIndex]?.url;
7249
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
7250
+ },
7110
7251
  async deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options) {
7111
7252
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options);
7112
7253
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
@@ -7190,12 +7331,18 @@ const VirtualControllerApiFactory = function(configuration, basePath, axios) {
7190
7331
  addVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options) {
7191
7332
  return localVarFp.addVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options).then((request) => request(axios, basePath));
7192
7333
  },
7334
+ addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options) {
7335
+ return localVarFp.addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options).then((request) => request(axios, basePath));
7336
+ },
7193
7337
  addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options) {
7194
7338
  return localVarFp.addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options).then((request) => request(axios, basePath));
7195
7339
  },
7196
7340
  deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options) {
7197
7341
  return localVarFp.deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options).then((request) => request(axios, basePath));
7198
7342
  },
7343
+ deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options) {
7344
+ return localVarFp.deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options).then((request) => request(axios, basePath));
7345
+ },
7199
7346
  deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options) {
7200
7347
  return localVarFp.deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options).then((request) => request(axios, basePath));
7201
7348
  },
@@ -7252,6 +7399,18 @@ var VirtualControllerApi = class extends BaseAPI {
7252
7399
  return VirtualControllerApiFp(this.configuration).addVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options).then((request) => request(this.axios, this.basePath));
7253
7400
  }
7254
7401
  /**
7402
+ * Adds a motion group configuration for the virtual robot controller. Fields: - Only one of **motion_group_model** or **json_data** should be set. - **motion_group_model**: Identifies a single motion group. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported types. - **json_data**: 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_data): 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.
7403
+ * @summary Add Motion Group
7404
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
7405
+ * @param {string} controller Unique identifier to address a controller in the cell.
7406
+ * @param {AddVirtualControllerMotionGroupRequest} addVirtualControllerMotionGroupRequest
7407
+ * @param {*} [options] Override http request option.
7408
+ * @throws {RequiredError}
7409
+ */
7410
+ addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options) {
7411
+ return VirtualControllerApiFp(this.configuration).addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options).then((request) => request(this.axios, this.basePath));
7412
+ }
7413
+ /**
7255
7414
  * 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.
7256
7415
  * @summary Add TCP
7257
7416
  * @param {string} cell Unique identifier addressing a cell in all API calls.
@@ -7279,6 +7438,18 @@ var VirtualControllerApi = class extends BaseAPI {
7279
7438
  return VirtualControllerApiFp(this.configuration).deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options).then((request) => request(this.axios, this.basePath));
7280
7439
  }
7281
7440
  /**
7441
+ * 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**.
7442
+ * @summary Delete Motion Group
7443
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
7444
+ * @param {string} controller Unique identifier to address a controller in the cell.
7445
+ * @param {string} motionGroup The motion-group identifier.
7446
+ * @param {*} [options] Override http request option.
7447
+ * @throws {RequiredError}
7448
+ */
7449
+ deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options) {
7450
+ return VirtualControllerApiFp(this.configuration).deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options).then((request) => request(this.axios, this.basePath));
7451
+ }
7452
+ /**
7282
7453
  * 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.
7283
7454
  * @summary Remove TCP
7284
7455
  * @param {string} cell Unique identifier addressing a cell in all API calls.
@@ -7292,7 +7463,7 @@ var VirtualControllerApi = class extends BaseAPI {
7292
7463
  return VirtualControllerApiFp(this.configuration).deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options).then((request) => request(this.axios, this.basePath));
7293
7464
  }
7294
7465
  /**
7295
- * 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.
7466
+ * 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.
7296
7467
  * @summary Get Emergency Stop State
7297
7468
  * @param {string} cell Unique identifier addressing a cell in all API calls.
7298
7469
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -7326,7 +7497,7 @@ var VirtualControllerApi = class extends BaseAPI {
7326
7497
  return VirtualControllerApiFp(this.configuration).getMotionGroups(cell, controller, options).then((request) => request(this.axios, this.basePath));
7327
7498
  }
7328
7499
  /**
7329
- * 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.
7500
+ * 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.
7330
7501
  * @summary Get Operation Mode
7331
7502
  * @param {string} cell Unique identifier addressing a cell in all API calls.
7332
7503
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -7372,7 +7543,7 @@ var VirtualControllerApi = class extends BaseAPI {
7372
7543
  return VirtualControllerApiFp(this.configuration).listVirtualControllerTcps(cell, controller, motionGroup, options).then((request) => request(this.axios, this.basePath));
7373
7544
  }
7374
7545
  /**
7375
- * 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.
7546
+ * 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.
7376
7547
  * @summary Push or Release Emergency Stop
7377
7548
  * @param {string} cell Unique identifier addressing a cell in all API calls.
7378
7549
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -7397,7 +7568,7 @@ var VirtualControllerApi = class extends BaseAPI {
7397
7568
  return VirtualControllerApiFp(this.configuration).setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options).then((request) => request(this.axios, this.basePath));
7398
7569
  }
7399
7570
  /**
7400
- * 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.
7571
+ * 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.
7401
7572
  * @summary Set Operation Mode
7402
7573
  * @param {string} cell Unique identifier addressing a cell in all API calls.
7403
7574
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -7442,7 +7613,6 @@ const VirtualControllerBehaviorApiAxiosParamCreator = function(configuration) {
7442
7613
  };
7443
7614
  const localVarHeaderParameter = {};
7444
7615
  const localVarQueryParameter = {};
7445
- setBasicAuthToObject(localVarRequestOptions, configuration);
7446
7616
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
7447
7617
  localVarHeaderParameter["Content-Type"] = "application/json";
7448
7618
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -7472,7 +7642,6 @@ const VirtualControllerBehaviorApiAxiosParamCreator = function(configuration) {
7472
7642
  };
7473
7643
  const localVarHeaderParameter = {};
7474
7644
  const localVarQueryParameter = {};
7475
- setBasicAuthToObject(localVarRequestOptions, configuration);
7476
7645
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
7477
7646
  setSearchParams(localVarUrlObj, localVarQueryParameter);
7478
7647
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -7500,7 +7669,6 @@ const VirtualControllerBehaviorApiAxiosParamCreator = function(configuration) {
7500
7669
  };
7501
7670
  const localVarHeaderParameter = {};
7502
7671
  const localVarQueryParameter = {};
7503
- setBasicAuthToObject(localVarRequestOptions, configuration);
7504
7672
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
7505
7673
  setSearchParams(localVarUrlObj, localVarQueryParameter);
7506
7674
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -7528,7 +7696,6 @@ const VirtualControllerBehaviorApiAxiosParamCreator = function(configuration) {
7528
7696
  };
7529
7697
  const localVarHeaderParameter = {};
7530
7698
  const localVarQueryParameter = {};
7531
- setBasicAuthToObject(localVarRequestOptions, configuration);
7532
7699
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
7533
7700
  if (behavior !== void 0) localVarQueryParameter["behavior"] = behavior;
7534
7701
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -7602,7 +7769,7 @@ const VirtualControllerBehaviorApiFactory = function(configuration, basePath, ax
7602
7769
  */
7603
7770
  var VirtualControllerBehaviorApi = class extends BaseAPI {
7604
7771
  /**
7605
- * <!-- 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.
7772
+ * <!-- 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.
7606
7773
  * @summary Stream Joint Configuration
7607
7774
  * @param {string} cell Unique identifier addressing a cell in all API calls.
7608
7775
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -7625,7 +7792,7 @@ var VirtualControllerBehaviorApi = class extends BaseAPI {
7625
7792
  return VirtualControllerBehaviorApiFp(this.configuration).getCycleTime(cell, controller, options).then((request) => request(this.axios, this.basePath));
7626
7793
  }
7627
7794
  /**
7628
- * Get the current virtual controller behavior. See [setVirtualControllerBehavior](setVirtualControllerBehavior) and the body for details.
7795
+ * Get the current virtual controller behavior. See [setVirtualControllerBehavior](#/operations/setVirtualControllerBehavior) and the body for details.
7629
7796
  * @summary Get Behavior
7630
7797
  * @param {string} cell Unique identifier addressing a cell in all API calls.
7631
7798
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -7668,7 +7835,6 @@ const VirtualControllerInputsOutputsApiAxiosParamCreator = function(configuratio
7668
7835
  };
7669
7836
  const localVarHeaderParameter = {};
7670
7837
  const localVarQueryParameter = {};
7671
- setBasicAuthToObject(localVarRequestOptions, configuration);
7672
7838
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
7673
7839
  if (ios) localVarQueryParameter["ios"] = ios;
7674
7840
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -7697,7 +7863,6 @@ const VirtualControllerInputsOutputsApiAxiosParamCreator = function(configuratio
7697
7863
  };
7698
7864
  const localVarHeaderParameter = {};
7699
7865
  const localVarQueryParameter = {};
7700
- setBasicAuthToObject(localVarRequestOptions, configuration);
7701
7866
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
7702
7867
  if (ios) localVarQueryParameter["ios"] = ios;
7703
7868
  if (direction !== void 0) localVarQueryParameter["direction"] = direction;
@@ -7730,7 +7895,6 @@ const VirtualControllerInputsOutputsApiAxiosParamCreator = function(configuratio
7730
7895
  };
7731
7896
  const localVarHeaderParameter = {};
7732
7897
  const localVarQueryParameter = {};
7733
- setBasicAuthToObject(localVarRequestOptions, configuration);
7734
7898
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
7735
7899
  localVarHeaderParameter["Content-Type"] = "application/json";
7736
7900
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -7796,7 +7960,7 @@ const VirtualControllerInputsOutputsApiFactory = function(configuration, basePat
7796
7960
  */
7797
7961
  var VirtualControllerInputsOutputsApi = class extends BaseAPI {
7798
7962
  /**
7799
- * 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).
7963
+ * 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).
7800
7964
  * @summary Get Input/Output Values
7801
7965
  * @param {string} cell Unique identifier addressing a cell in all API calls.
7802
7966
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -7955,4 +8119,4 @@ var Configuration = class {
7955
8119
  };
7956
8120
 
7957
8121
  //#endregion
7958
- export { AbbControllerKindEnum, ApplicationApi, ApplicationApiAxiosParamCreator, ApplicationApiFactory, ApplicationApiFp, BASE_PATH, BUSInputsOutputsApi, BUSInputsOutputsApiAxiosParamCreator, BUSInputsOutputsApiFactory, BUSInputsOutputsApiFp, BaseAPI, Behavior, BlendingAutoBlendingNameEnum, BlendingPositionBlendingNameEnum, BlendingSpace, BooleanValueValueTypeEnum, BoxBoxTypeEnum, BoxShapeTypeEnum, BusIOModbusClientBusTypeEnum, BusIOModbusServerBusTypeEnum, BusIOModbusTCPClientNetworkTypeEnum, BusIOModbusTCPServerNetworkTypeEnum, BusIOModbusVirtualBusTypeEnum, BusIOProfinetBusTypeEnum, BusIOProfinetVirtualBusTypeEnum, BusIOsStateEnum, COLLECTION_FORMATS, CapsuleShapeTypeEnum, CellApi, CellApiAxiosParamCreator, CellApiFactory, CellApiFp, Comparator, Configuration, ConfigurationArchiveStatusCreatingStatusEnum, ConfigurationArchiveStatusErrorStatusEnum, ConfigurationArchiveStatusSuccessStatusEnum, ControllerApi, ControllerApiAxiosParamCreator, ControllerApiFactory, ControllerApiFp, ControllerInputsOutputsApi, ControllerInputsOutputsApiAxiosParamCreator, ControllerInputsOutputsApiFactory, ControllerInputsOutputsApiFp, ConvexHullShapeTypeEnum, CylinderShapeTypeEnum, Direction, ErrorInvalidJointCountErrorFeedbackNameEnum, ErrorJointLimitExceededErrorFeedbackNameEnum, ErrorJointPositionCollisionErrorFeedbackNameEnum, ErrorMaxIterationsExceededErrorFeedbackNameEnum, FanucControllerKindEnum, FeedbackCollisionErrorFeedbackNameEnum, FeedbackJointLimitExceededErrorFeedbackNameEnum, FeedbackOutOfWorkspaceErrorFeedbackNameEnum, FeedbackSingularityErrorFeedbackNameEnum, FloatValueValueTypeEnum, IOBooleanValueValueTypeEnum, IODirection, IOFloatValueValueTypeEnum, IOIntegerValueValueTypeEnum, IOOrigin, IOValueType, InitializeJoggingRequestMessageTypeEnum, InitializeJoggingResponseKindEnum, InitializeMovementRequestMessageTypeEnum, InitializeMovementResponseKindEnum, IntegerValueValueTypeEnum, JoggingApi, JoggingApiAxiosParamCreator, JoggingApiFactory, JoggingApiFp, JoggingDetailsKindEnum, JoggingPausedByUserKindEnum, JoggingPausedNearCollisionKindEnum, JoggingPausedNearJointLimitKindEnum, JoggingPausedOnIOKindEnum, JoggingRunningKindEnum, JointVelocityRequestMessageTypeEnum, JointVelocityResponseKindEnum, KinematicsApi, KinematicsApiAxiosParamCreator, KinematicsApiFactory, KinematicsApiFp, KukaControllerKindEnum, LicenseApi, LicenseApiAxiosParamCreator, LicenseApiFactory, LicenseApiFp, LicenseStatusEnum, Manufacturer, MidpointInsertionAlgorithmAlgorithmNameEnum, ModbusIOArea, ModbusIOByteOrder, ModbusIOTypeEnum, MotionGroupApi, MotionGroupApiAxiosParamCreator, MotionGroupApiFactory, MotionGroupApiFp, MotionGroupModelsApi, MotionGroupModelsApiAxiosParamCreator, MotionGroupModelsApiFactory, MotionGroupModelsApiFp, MovementErrorResponseKindEnum, NetworkStateConnectionTypeEnum, OperatingState, OperationMode, OrientationType, PathCartesianPTPPathDefinitionNameEnum, PathCirclePathDefinitionNameEnum, PathCubicSplinePathDefinitionNameEnum, PathJointPTPPathDefinitionNameEnum, PathLinePathDefinitionNameEnum, PauseJoggingRequestMessageTypeEnum, PauseJoggingResponseKindEnum, PauseMovementRequestMessageTypeEnum, PauseMovementResponseKindEnum, PlaneShapeTypeEnum, PlaybackSpeedRequestMessageTypeEnum, PlaybackSpeedResponseKindEnum, ProfinetIODirection, ProfinetIOTypeEnum, ProgramApi, ProgramApiAxiosParamCreator, ProgramApiFactory, ProgramApiFp, ProgramRunState, RRTConnectAlgorithmAlgorithmNameEnum, RectangleShapeTypeEnum, RectangularCapsuleShapeTypeEnum, ReleaseChannel, RequiredError, RobotConfigurationsApi, RobotConfigurationsApiAxiosParamCreator, RobotConfigurationsApiFactory, RobotConfigurationsApiFp, RobotSystemMode, SafetyStateType, ServiceGroup, ServiceStatusPhase, ServiceStatusSeverity, SettableRobotSystemMode, SingularityTypeEnum, SphereShapeTypeEnum, StartMovementRequestMessageTypeEnum, StartMovementResponseKindEnum, StoreCollisionComponentsApi, StoreCollisionComponentsApiAxiosParamCreator, StoreCollisionComponentsApiFactory, StoreCollisionComponentsApiFp, StoreCollisionSetupsApi, StoreCollisionSetupsApiAxiosParamCreator, StoreCollisionSetupsApiFactory, StoreCollisionSetupsApiFp, StoreObjectApi, StoreObjectApiAxiosParamCreator, StoreObjectApiFactory, StoreObjectApiFp, SystemApi, SystemApiAxiosParamCreator, SystemApiFactory, SystemApiFp, TcpVelocityRequestMessageTypeEnum, TcpVelocityResponseKindEnum, TrajectoryCachingApi, TrajectoryCachingApiAxiosParamCreator, TrajectoryCachingApiFactory, TrajectoryCachingApiFp, TrajectoryDataMessageTypeEnum, TrajectoryDetailsKindEnum, TrajectoryEndedKindEnum, TrajectoryExecutionApi, TrajectoryExecutionApiAxiosParamCreator, TrajectoryExecutionApiFactory, TrajectoryExecutionApiFp, TrajectoryIdMessageTypeEnum, TrajectoryPausedByUserKindEnum, TrajectoryPausedOnIOKindEnum, TrajectoryPlanningApi, TrajectoryPlanningApiAxiosParamCreator, TrajectoryPlanningApiFactory, TrajectoryPlanningApiFp, TrajectoryRunningKindEnum, TrajectoryWaitForIOKindEnum, UnitType, UniversalrobotsControllerKindEnum, VersionApi, VersionApiAxiosParamCreator, VersionApiFactory, VersionApiFp, VirtualControllerApi, VirtualControllerApiAxiosParamCreator, VirtualControllerApiFactory, VirtualControllerApiFp, VirtualControllerBehaviorApi, VirtualControllerBehaviorApiAxiosParamCreator, VirtualControllerBehaviorApiFactory, VirtualControllerBehaviorApiFp, VirtualControllerInputsOutputsApi, VirtualControllerInputsOutputsApiAxiosParamCreator, VirtualControllerInputsOutputsApiFactory, VirtualControllerInputsOutputsApiFp, VirtualControllerKindEnum, YaskawaControllerKindEnum, operationServerMap };
8122
+ export { AbbControllerKindEnum, ApplicationApi, ApplicationApiAxiosParamCreator, ApplicationApiFactory, ApplicationApiFp, BASE_PATH, BUSInputsOutputsApi, BUSInputsOutputsApiAxiosParamCreator, BUSInputsOutputsApiFactory, BUSInputsOutputsApiFp, BaseAPI, Behavior, BlendingAutoBlendingNameEnum, BlendingPositionBlendingNameEnum, BlendingSpace, BooleanValueValueTypeEnum, BoxBoxTypeEnum, BoxShapeTypeEnum, BusIOModbusClientBusTypeEnum, BusIOModbusServerBusTypeEnum, BusIOModbusTCPClientNetworkTypeEnum, BusIOModbusTCPServerNetworkTypeEnum, BusIOModbusVirtualBusTypeEnum, BusIOProfinetBusTypeEnum, BusIOProfinetVirtualBusTypeEnum, BusIOsStateEnum, COLLECTION_FORMATS, CapsuleShapeTypeEnum, CellApi, CellApiAxiosParamCreator, CellApiFactory, CellApiFp, CollisionErrorKindEnum, Comparator, Configuration, ConfigurationArchiveStatusCreatingStatusEnum, ConfigurationArchiveStatusErrorStatusEnum, ConfigurationArchiveStatusSuccessStatusEnum, ControllerApi, ControllerApiAxiosParamCreator, ControllerApiFactory, ControllerApiFp, ControllerInputsOutputsApi, ControllerInputsOutputsApiAxiosParamCreator, ControllerInputsOutputsApiFactory, ControllerInputsOutputsApiFp, ConvexHullShapeTypeEnum, CylinderShapeTypeEnum, Direction, ErrorInvalidJointCountErrorFeedbackNameEnum, ErrorJointLimitExceededErrorFeedbackNameEnum, ErrorJointPositionCollisionErrorFeedbackNameEnum, ErrorMaxIterationsExceededErrorFeedbackNameEnum, FanucControllerKindEnum, FeedbackCollisionErrorFeedbackNameEnum, FeedbackJointLimitExceededErrorFeedbackNameEnum, FeedbackOutOfWorkspaceErrorFeedbackNameEnum, FeedbackSingularityErrorFeedbackNameEnum, FloatValueValueTypeEnum, IOBooleanValueValueTypeEnum, IODirection, IOFloatValueValueTypeEnum, IOIntegerValueValueTypeEnum, IOOrigin, IOValueType, InconsistentTrajectorySizeErrorKindEnum, InitializeJoggingRequestMessageTypeEnum, InitializeJoggingResponseKindEnum, InitializeMovementRequestMessageTypeEnum, InitializeMovementResponseKindEnum, IntegerValueValueTypeEnum, InvalidDofErrorKindEnum, JoggingApi, JoggingApiAxiosParamCreator, JoggingApiFactory, JoggingApiFp, JoggingDetailsKindEnum, JoggingPausedByUserKindEnum, JoggingPausedNearCollisionKindEnum, JoggingPausedNearJointLimitKindEnum, JoggingPausedOnIOKindEnum, JoggingRunningKindEnum, JointLimitExceededErrorKindEnum, JointTypeEnum, JointVelocityRequestMessageTypeEnum, JointVelocityResponseKindEnum, KinematicsApi, KinematicsApiAxiosParamCreator, KinematicsApiFactory, KinematicsApiFp, KukaControllerKindEnum, LicenseApi, LicenseApiAxiosParamCreator, LicenseApiFactory, LicenseApiFp, LicenseStatusEnum, Manufacturer, MidpointInsertionAlgorithmAlgorithmNameEnum, ModbusIOArea, ModbusIOByteOrder, ModbusIOTypeEnum, MotionGroupApi, MotionGroupApiAxiosParamCreator, MotionGroupApiFactory, MotionGroupApiFp, MotionGroupModelsApi, MotionGroupModelsApiAxiosParamCreator, MotionGroupModelsApiFactory, MotionGroupModelsApiFp, MovementErrorResponseKindEnum, NanValueErrorKindEnum, NetworkStateConnectionTypeEnum, OperatingState, OperationMode, OrientationType, PathCartesianPTPPathDefinitionNameEnum, PathCirclePathDefinitionNameEnum, PathCubicSplinePathDefinitionNameEnum, PathJointPTPPathDefinitionNameEnum, PathLinePathDefinitionNameEnum, PauseJoggingRequestMessageTypeEnum, PauseJoggingResponseKindEnum, PauseMovementRequestMessageTypeEnum, PauseMovementResponseKindEnum, PlaneShapeTypeEnum, PlaybackSpeedRequestMessageTypeEnum, PlaybackSpeedResponseKindEnum, ProfinetIODirection, ProfinetIOTypeEnum, ProgramApi, ProgramApiAxiosParamCreator, ProgramApiFactory, ProgramApiFp, ProgramRunState, RRTConnectAlgorithmAlgorithmNameEnum, RectangleShapeTypeEnum, RectangularCapsuleShapeTypeEnum, ReleaseChannel, RequiredError, RobotConfigurationsApi, RobotConfigurationsApiAxiosParamCreator, RobotConfigurationsApiFactory, RobotConfigurationsApiFp, RobotSystemMode, SafetyStateType, ServiceGroup, ServiceStatusPhase, ServiceStatusSeverity, SettableRobotSystemMode, SingularityTypeEnum, SphereShapeTypeEnum, StartMovementRequestMessageTypeEnum, StartMovementResponseKindEnum, StoreCollisionComponentsApi, StoreCollisionComponentsApiAxiosParamCreator, StoreCollisionComponentsApiFactory, StoreCollisionComponentsApiFp, StoreCollisionSetupsApi, StoreCollisionSetupsApiAxiosParamCreator, StoreCollisionSetupsApiFactory, StoreCollisionSetupsApiFp, StoreObjectApi, StoreObjectApiAxiosParamCreator, StoreObjectApiFactory, StoreObjectApiFp, SystemApi, SystemApiAxiosParamCreator, SystemApiFactory, SystemApiFp, TcpRequiredErrorKindEnum, TcpVelocityRequestMessageTypeEnum, TcpVelocityResponseKindEnum, TorqueExceededErrorKindEnum, TrajectoryCachingApi, TrajectoryCachingApiAxiosParamCreator, TrajectoryCachingApiFactory, TrajectoryCachingApiFp, TrajectoryDataMessageTypeEnum, TrajectoryDetailsKindEnum, TrajectoryEndedKindEnum, TrajectoryExecutionApi, TrajectoryExecutionApiAxiosParamCreator, TrajectoryExecutionApiFactory, TrajectoryExecutionApiFp, TrajectoryIdMessageTypeEnum, TrajectoryPausedByUserKindEnum, TrajectoryPausedOnIOKindEnum, TrajectoryPlanningApi, TrajectoryPlanningApiAxiosParamCreator, TrajectoryPlanningApiFactory, TrajectoryPlanningApiFp, TrajectoryRunningKindEnum, TrajectoryWaitForIOKindEnum, UnitType, UniversalrobotsControllerKindEnum, VersionApi, VersionApiAxiosParamCreator, VersionApiFactory, VersionApiFp, VirtualControllerApi, VirtualControllerApiAxiosParamCreator, VirtualControllerApiFactory, VirtualControllerApiFp, VirtualControllerBehaviorApi, VirtualControllerBehaviorApiAxiosParamCreator, VirtualControllerBehaviorApiFactory, VirtualControllerBehaviorApiFp, VirtualControllerInputsOutputsApi, VirtualControllerInputsOutputsApiAxiosParamCreator, VirtualControllerInputsOutputsApiFactory, VirtualControllerInputsOutputsApiFp, VirtualControllerKindEnum, YaskawaControllerKindEnum, operationServerMap };