@wandelbots/nova-api 26.2.0-dev.8 → 26.2.0-rc.1

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",
@@ -410,9 +413,14 @@ const ServiceStatusSeverity = {
410
413
  Warning: "WARNING",
411
414
  Error: "ERROR"
412
415
  };
416
+ /**
417
+ * Defines available system modes of the robot system. Short versions (no \"ROBOT_SYSTEM_\" prefix) are provided, reusing strings from [getMode](#/operations/getMode) responses.
418
+ */
413
419
  const SettableRobotSystemMode = {
414
420
  RobotSystemModeMonitor: "ROBOT_SYSTEM_MODE_MONITOR",
415
- RobotSystemModeControl: "ROBOT_SYSTEM_MODE_CONTROL"
421
+ ModeMonitor: "MODE_MONITOR",
422
+ RobotSystemModeControl: "ROBOT_SYSTEM_MODE_CONTROL",
423
+ ModeControl: "MODE_CONTROL"
416
424
  };
417
425
  const SingularityTypeEnum = {
418
426
  Wrist: "WRIST",
@@ -422,8 +430,10 @@ const SingularityTypeEnum = {
422
430
  const SphereShapeTypeEnum = { Sphere: "sphere" };
423
431
  const StartMovementRequestMessageTypeEnum = { StartMovementRequest: "StartMovementRequest" };
424
432
  const StartMovementResponseKindEnum = { StartReceived: "START_RECEIVED" };
433
+ const TcpRequiredErrorKindEnum = { TcpRequiredError: "TcpRequiredError" };
425
434
  const TcpVelocityRequestMessageTypeEnum = { TcpVelocityRequest: "TcpVelocityRequest" };
426
435
  const TcpVelocityResponseKindEnum = { TcpVelocityReceived: "TCP_VELOCITY_RECEIVED" };
436
+ const TorqueExceededErrorKindEnum = { TorqueExceededError: "TorqueExceededError" };
427
437
  const TrajectoryDataMessageTypeEnum = { TrajectoryData: "TrajectoryData" };
428
438
  const TrajectoryDetailsKindEnum = { Trajectory: "TRAJECTORY" };
429
439
  const TrajectoryEndedKindEnum = { EndOfTrajectory: "END_OF_TRAJECTORY" };
@@ -469,7 +479,6 @@ const ApplicationApiAxiosParamCreator = function(configuration) {
469
479
  };
470
480
  const localVarHeaderParameter = {};
471
481
  const localVarQueryParameter = {};
472
- setBasicAuthToObject(localVarRequestOptions, configuration);
473
482
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
474
483
  if (completionTimeout !== void 0) localVarQueryParameter["completion_timeout"] = completionTimeout;
475
484
  localVarHeaderParameter["Content-Type"] = "application/json";
@@ -499,7 +508,6 @@ const ApplicationApiAxiosParamCreator = function(configuration) {
499
508
  };
500
509
  const localVarHeaderParameter = {};
501
510
  const localVarQueryParameter = {};
502
- setBasicAuthToObject(localVarRequestOptions, configuration);
503
511
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
504
512
  if (completionTimeout !== void 0) localVarQueryParameter["completion_timeout"] = completionTimeout;
505
513
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -528,7 +536,6 @@ const ApplicationApiAxiosParamCreator = function(configuration) {
528
536
  };
529
537
  const localVarHeaderParameter = {};
530
538
  const localVarQueryParameter = {};
531
- setBasicAuthToObject(localVarRequestOptions, configuration);
532
539
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
533
540
  if (completionTimeout !== void 0) localVarQueryParameter["completion_timeout"] = completionTimeout;
534
541
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -557,7 +564,6 @@ const ApplicationApiAxiosParamCreator = function(configuration) {
557
564
  };
558
565
  const localVarHeaderParameter = {};
559
566
  const localVarQueryParameter = {};
560
- setBasicAuthToObject(localVarRequestOptions, configuration);
561
567
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
562
568
  setSearchParams(localVarUrlObj, localVarQueryParameter);
563
569
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -584,7 +590,6 @@ const ApplicationApiAxiosParamCreator = function(configuration) {
584
590
  };
585
591
  const localVarHeaderParameter = {};
586
592
  const localVarQueryParameter = {};
587
- setBasicAuthToObject(localVarRequestOptions, configuration);
588
593
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
589
594
  setSearchParams(localVarUrlObj, localVarQueryParameter);
590
595
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -613,7 +618,6 @@ const ApplicationApiAxiosParamCreator = function(configuration) {
613
618
  };
614
619
  const localVarHeaderParameter = {};
615
620
  const localVarQueryParameter = {};
616
- setBasicAuthToObject(localVarRequestOptions, configuration);
617
621
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
618
622
  if (completionTimeout !== void 0) localVarQueryParameter["completion_timeout"] = completionTimeout;
619
623
  localVarHeaderParameter["Content-Type"] = "application/json";
@@ -742,7 +746,7 @@ var ApplicationApi = class extends BaseAPI {
742
746
  return ApplicationApiFp(this.configuration).deleteApp(cell, app, completionTimeout, options).then((request) => request(this.axios, this.basePath));
743
747
  }
744
748
  /**
745
- * 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).
746
750
  * @summary Configuration
747
751
  * @param {string} cell Unique identifier addressing a cell in all API calls.
748
752
  * @param {string} app
@@ -753,7 +757,7 @@ var ApplicationApi = class extends BaseAPI {
753
757
  return ApplicationApiFp(this.configuration).getApp(cell, app, options).then((request) => request(this.axios, this.basePath));
754
758
  }
755
759
  /**
756
- * 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.
757
761
  * @summary List Applications
758
762
  * @param {string} cell Unique identifier addressing a cell in all API calls.
759
763
  * @param {*} [options] Override http request option.
@@ -795,7 +799,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
795
799
  };
796
800
  const localVarHeaderParameter = {};
797
801
  const localVarQueryParameter = {};
798
- setBasicAuthToObject(localVarRequestOptions, configuration);
799
802
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
800
803
  if (completionTimeout !== void 0) localVarQueryParameter["completion_timeout"] = completionTimeout;
801
804
  localVarHeaderParameter["Content-Type"] = "application/json";
@@ -827,7 +830,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
827
830
  };
828
831
  const localVarHeaderParameter = {};
829
832
  const localVarQueryParameter = {};
830
- setBasicAuthToObject(localVarRequestOptions, configuration);
831
833
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
832
834
  localVarHeaderParameter["Content-Type"] = "application/json";
833
835
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -858,7 +860,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
858
860
  };
859
861
  const localVarHeaderParameter = {};
860
862
  const localVarQueryParameter = {};
861
- setBasicAuthToObject(localVarRequestOptions, configuration);
862
863
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
863
864
  localVarHeaderParameter["Content-Type"] = "application/json";
864
865
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -887,7 +888,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
887
888
  };
888
889
  const localVarHeaderParameter = {};
889
890
  const localVarQueryParameter = {};
890
- setBasicAuthToObject(localVarRequestOptions, configuration);
891
891
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
892
892
  if (completionTimeout !== void 0) localVarQueryParameter["completion_timeout"] = completionTimeout;
893
893
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -915,7 +915,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
915
915
  };
916
916
  const localVarHeaderParameter = {};
917
917
  const localVarQueryParameter = {};
918
- setBasicAuthToObject(localVarRequestOptions, configuration);
919
918
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
920
919
  setSearchParams(localVarUrlObj, localVarQueryParameter);
921
920
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -942,7 +941,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
942
941
  };
943
942
  const localVarHeaderParameter = {};
944
943
  const localVarQueryParameter = {};
945
- setBasicAuthToObject(localVarRequestOptions, configuration);
946
944
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
947
945
  setSearchParams(localVarUrlObj, localVarQueryParameter);
948
946
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -970,7 +968,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
970
968
  };
971
969
  const localVarHeaderParameter = {};
972
970
  const localVarQueryParameter = {};
973
- setBasicAuthToObject(localVarRequestOptions, configuration);
974
971
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
975
972
  setSearchParams(localVarUrlObj, localVarQueryParameter);
976
973
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -998,7 +995,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
998
995
  };
999
996
  const localVarHeaderParameter = {};
1000
997
  const localVarQueryParameter = {};
1001
- setBasicAuthToObject(localVarRequestOptions, configuration);
1002
998
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1003
999
  setSearchParams(localVarUrlObj, localVarQueryParameter);
1004
1000
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -1025,7 +1021,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
1025
1021
  };
1026
1022
  const localVarHeaderParameter = {};
1027
1023
  const localVarQueryParameter = {};
1028
- setBasicAuthToObject(localVarRequestOptions, configuration);
1029
1024
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1030
1025
  setSearchParams(localVarUrlObj, localVarQueryParameter);
1031
1026
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -1052,7 +1047,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
1052
1047
  };
1053
1048
  const localVarHeaderParameter = {};
1054
1049
  const localVarQueryParameter = {};
1055
- setBasicAuthToObject(localVarRequestOptions, configuration);
1056
1050
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1057
1051
  setSearchParams(localVarUrlObj, localVarQueryParameter);
1058
1052
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -1079,7 +1073,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
1079
1073
  };
1080
1074
  const localVarHeaderParameter = {};
1081
1075
  const localVarQueryParameter = {};
1082
- setBasicAuthToObject(localVarRequestOptions, configuration);
1083
1076
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1084
1077
  if (ios) localVarQueryParameter["ios"] = ios;
1085
1078
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -1107,7 +1100,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
1107
1100
  };
1108
1101
  const localVarHeaderParameter = {};
1109
1102
  const localVarQueryParameter = {};
1110
- setBasicAuthToObject(localVarRequestOptions, configuration);
1111
1103
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1112
1104
  setSearchParams(localVarUrlObj, localVarQueryParameter);
1113
1105
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -1134,7 +1126,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
1134
1126
  };
1135
1127
  const localVarHeaderParameter = {};
1136
1128
  const localVarQueryParameter = {};
1137
- setBasicAuthToObject(localVarRequestOptions, configuration);
1138
1129
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1139
1130
  if (inputOffset !== void 0) localVarQueryParameter["input_offset"] = inputOffset;
1140
1131
  if (outputOffset !== void 0) localVarQueryParameter["output_offset"] = outputOffset;
@@ -1163,7 +1154,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
1163
1154
  };
1164
1155
  const localVarHeaderParameter = {};
1165
1156
  const localVarQueryParameter = {};
1166
- setBasicAuthToObject(localVarRequestOptions, configuration);
1167
1157
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1168
1158
  setSearchParams(localVarUrlObj, localVarQueryParameter);
1169
1159
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -1190,7 +1180,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
1190
1180
  };
1191
1181
  const localVarHeaderParameter = {};
1192
1182
  const localVarQueryParameter = {};
1193
- setBasicAuthToObject(localVarRequestOptions, configuration);
1194
1183
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1195
1184
  setSearchParams(localVarUrlObj, localVarQueryParameter);
1196
1185
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -1217,7 +1206,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
1217
1206
  };
1218
1207
  const localVarHeaderParameter = {};
1219
1208
  const localVarQueryParameter = {};
1220
- setBasicAuthToObject(localVarRequestOptions, configuration);
1221
1209
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1222
1210
  setSearchParams(localVarUrlObj, localVarQueryParameter);
1223
1211
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -1245,7 +1233,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
1245
1233
  };
1246
1234
  const localVarHeaderParameter = {};
1247
1235
  const localVarQueryParameter = {};
1248
- setBasicAuthToObject(localVarRequestOptions, configuration);
1249
1236
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1250
1237
  localVarHeaderParameter["Content-Type"] = "application/json";
1251
1238
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -1275,7 +1262,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
1275
1262
  };
1276
1263
  const localVarHeaderParameter = {};
1277
1264
  const localVarQueryParameter = {};
1278
- setBasicAuthToObject(localVarRequestOptions, configuration);
1279
1265
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1280
1266
  localVarHeaderParameter["Content-Type"] = "application/json";
1281
1267
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -1488,7 +1474,7 @@ var BUSInputsOutputsApi = class extends BaseAPI {
1488
1474
  return BUSInputsOutputsApiFp(this.configuration).addBusIOService(cell, busIOType, completionTimeout, options).then((request) => request(this.axios, this.basePath));
1489
1475
  }
1490
1476
  /**
1491
- * 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).
1492
1478
  * @summary Add MODBUS Input/Output
1493
1479
  * @param {string} cell Unique identifier addressing a cell in all API calls.
1494
1480
  * @param {string} io Unique identifier to address an Input/Output in the cell.
@@ -1500,7 +1486,7 @@ var BUSInputsOutputsApi = class extends BaseAPI {
1500
1486
  return BUSInputsOutputsApiFp(this.configuration).addModbusIO(cell, io, modbusIOData, options).then((request) => request(this.axios, this.basePath));
1501
1487
  }
1502
1488
  /**
1503
- * 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).
1504
1490
  * @summary Add PROFINET Input/Output
1505
1491
  * @param {string} cell Unique identifier addressing a cell in all API calls.
1506
1492
  * @param {string} io Unique identifier to address an Input/Output in the cell.
@@ -1544,7 +1530,7 @@ var BUSInputsOutputsApi = class extends BaseAPI {
1544
1530
  }
1545
1531
  /**
1546
1532
  * Removes an input/output variable configuration from the MODBUS device, e.g., NOVA\'s MODBUS service.
1547
- * @summary Remove MODBUS Input/Ouptut
1533
+ * @summary Remove MODBUS Input/Output
1548
1534
  * @param {string} cell Unique identifier addressing a cell in all API calls.
1549
1535
  * @param {string} io Unique identifier to address an Input/Output in the cell.
1550
1536
  * @param {*} [options] Override http request option.
@@ -1585,7 +1571,7 @@ var BUSInputsOutputsApi = class extends BaseAPI {
1585
1571
  return BUSInputsOutputsApiFp(this.configuration).getBusIOState(cell, options).then((request) => request(this.axios, this.basePath));
1586
1572
  }
1587
1573
  /**
1588
- * 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).
1589
1575
  * @summary Get Input/Output Values
1590
1576
  * @param {string} cell Unique identifier addressing a cell in all API calls.
1591
1577
  * @param {Array<string>} [ios]
@@ -1628,7 +1614,7 @@ var BUSInputsOutputsApi = class extends BaseAPI {
1628
1614
  return BUSInputsOutputsApiFp(this.configuration).listBusIODescriptions(cell, options).then((request) => request(this.axios, this.basePath));
1629
1615
  }
1630
1616
  /**
1631
- * 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).
1632
1618
  * @summary List MODBUS Input/Output Configuration
1633
1619
  * @param {string} cell Unique identifier addressing a cell in all API calls.
1634
1620
  * @param {*} [options] Override http request option.
@@ -1638,7 +1624,7 @@ var BUSInputsOutputsApi = class extends BaseAPI {
1638
1624
  return BUSInputsOutputsApiFp(this.configuration).listModbusIOs(cell, options).then((request) => request(this.axios, this.basePath));
1639
1625
  }
1640
1626
  /**
1641
- * 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.
1642
1628
  * @summary List PROFINET Input/Output Configuration
1643
1629
  * @param {string} cell Unique identifier addressing a cell in all API calls.
1644
1630
  * @param {*} [options] Override http request option.
@@ -1648,7 +1634,7 @@ var BUSInputsOutputsApi = class extends BaseAPI {
1648
1634
  return BUSInputsOutputsApiFp(this.configuration).listProfinetIOs(cell, options).then((request) => request(this.axios, this.basePath));
1649
1635
  }
1650
1636
  /**
1651
- * 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.
1652
1638
  * @summary Set Output Values
1653
1639
  * @param {string} cell Unique identifier addressing a cell in all API calls.
1654
1640
  * @param {Array<IOValue>} iOValue
@@ -1659,7 +1645,7 @@ var BUSInputsOutputsApi = class extends BaseAPI {
1659
1645
  return BUSInputsOutputsApiFp(this.configuration).setBusIOValues(cell, iOValue, options).then((request) => request(this.axios, this.basePath));
1660
1646
  }
1661
1647
  /**
1662
- * 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.
1663
1649
  * @summary Set PROFINET Inputs/Outputs from File
1664
1650
  * @param {string} cell Unique identifier addressing a cell in all API calls.
1665
1651
  * @param {ProfinetInputOutputConfig} profinetInputOutputConfig
@@ -1675,6 +1661,34 @@ var BUSInputsOutputsApi = class extends BaseAPI {
1675
1661
  */
1676
1662
  const CellApiAxiosParamCreator = function(configuration) {
1677
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
+ },
1678
1692
  deleteCell: async (cell, completionTimeout, options = {}) => {
1679
1693
  assertParamExists("deleteCell", "cell", cell);
1680
1694
  const localVarPath = `/cells/{cell}`.replace(`{cell}`, encodeURIComponent(String(cell)));
@@ -1688,7 +1702,6 @@ const CellApiAxiosParamCreator = function(configuration) {
1688
1702
  };
1689
1703
  const localVarHeaderParameter = {};
1690
1704
  const localVarQueryParameter = {};
1691
- setBasicAuthToObject(localVarRequestOptions, configuration);
1692
1705
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1693
1706
  if (completionTimeout !== void 0) localVarQueryParameter["completion_timeout"] = completionTimeout;
1694
1707
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -1715,7 +1728,6 @@ const CellApiAxiosParamCreator = function(configuration) {
1715
1728
  };
1716
1729
  const localVarHeaderParameter = {};
1717
1730
  const localVarQueryParameter = {};
1718
- setBasicAuthToObject(localVarRequestOptions, configuration);
1719
1731
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1720
1732
  if (completionTimeout !== void 0) localVarQueryParameter["completion_timeout"] = completionTimeout;
1721
1733
  localVarHeaderParameter["Content-Type"] = "application/json";
@@ -1745,7 +1757,6 @@ const CellApiAxiosParamCreator = function(configuration) {
1745
1757
  };
1746
1758
  const localVarHeaderParameter = {};
1747
1759
  const localVarQueryParameter = {};
1748
- setBasicAuthToObject(localVarRequestOptions, configuration);
1749
1760
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1750
1761
  setSearchParams(localVarUrlObj, localVarQueryParameter);
1751
1762
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -1772,7 +1783,6 @@ const CellApiAxiosParamCreator = function(configuration) {
1772
1783
  };
1773
1784
  const localVarHeaderParameter = {};
1774
1785
  const localVarQueryParameter = {};
1775
- setBasicAuthToObject(localVarRequestOptions, configuration);
1776
1786
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1777
1787
  setSearchParams(localVarUrlObj, localVarQueryParameter);
1778
1788
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -1797,7 +1807,6 @@ const CellApiAxiosParamCreator = function(configuration) {
1797
1807
  };
1798
1808
  const localVarHeaderParameter = {};
1799
1809
  const localVarQueryParameter = {};
1800
- setBasicAuthToObject(localVarRequestOptions, configuration);
1801
1810
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1802
1811
  setSearchParams(localVarUrlObj, localVarQueryParameter);
1803
1812
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -1825,7 +1834,6 @@ const CellApiAxiosParamCreator = function(configuration) {
1825
1834
  };
1826
1835
  const localVarHeaderParameter = {};
1827
1836
  const localVarQueryParameter = {};
1828
- setBasicAuthToObject(localVarRequestOptions, configuration);
1829
1837
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1830
1838
  if (operatingState !== void 0) localVarQueryParameter["operating_state"] = operatingState;
1831
1839
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -1854,7 +1862,6 @@ const CellApiAxiosParamCreator = function(configuration) {
1854
1862
  };
1855
1863
  const localVarHeaderParameter = {};
1856
1864
  const localVarQueryParameter = {};
1857
- setBasicAuthToObject(localVarRequestOptions, configuration);
1858
1865
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1859
1866
  if (completionTimeout !== void 0) localVarQueryParameter["completion_timeout"] = completionTimeout;
1860
1867
  localVarHeaderParameter["Content-Type"] = "application/json";
@@ -1870,6 +1877,35 @@ const CellApiAxiosParamCreator = function(configuration) {
1870
1877
  url: toPathString(localVarUrlObj),
1871
1878
  options: localVarRequestOptions
1872
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
+ };
1873
1909
  }
1874
1910
  };
1875
1911
  };
@@ -1879,6 +1915,12 @@ const CellApiAxiosParamCreator = function(configuration) {
1879
1915
  const CellApiFp = function(configuration) {
1880
1916
  const localVarAxiosParamCreator = CellApiAxiosParamCreator(configuration);
1881
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
+ },
1882
1924
  async deleteCell(cell, completionTimeout, options) {
1883
1925
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteCell(cell, completionTimeout, options);
1884
1926
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
@@ -1920,6 +1962,12 @@ const CellApiFp = function(configuration) {
1920
1962
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
1921
1963
  const localVarOperationServerBasePath = operationServerMap["CellApi.updateCell"]?.[localVarOperationServerIndex]?.url;
1922
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);
1923
1971
  }
1924
1972
  };
1925
1973
  };
@@ -1929,6 +1977,9 @@ const CellApiFp = function(configuration) {
1929
1977
  const CellApiFactory = function(configuration, basePath, axios) {
1930
1978
  const localVarFp = CellApiFp(configuration);
1931
1979
  return {
1980
+ checkCellVersionUpdate(cell, channel, options) {
1981
+ return localVarFp.checkCellVersionUpdate(cell, channel, options).then((request) => request(axios, basePath));
1982
+ },
1932
1983
  deleteCell(cell, completionTimeout, options) {
1933
1984
  return localVarFp.deleteCell(cell, completionTimeout, options).then((request) => request(axios, basePath));
1934
1985
  },
@@ -1949,6 +2000,9 @@ const CellApiFactory = function(configuration, basePath, axios) {
1949
2000
  },
1950
2001
  updateCell(cell, cell2, completionTimeout, options) {
1951
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));
1952
2006
  }
1953
2007
  };
1954
2008
  };
@@ -1956,6 +2010,17 @@ const CellApiFactory = function(configuration, basePath, axios) {
1956
2010
  * CellApi - object-oriented interface
1957
2011
  */
1958
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
+ }
1959
2024
  /**
1960
2025
  * Delete an entire cell.
1961
2026
  * @summary Delete Cell
@@ -2030,6 +2095,17 @@ var CellApi = class extends BaseAPI {
2030
2095
  updateCell(cell, cell2, completionTimeout, options) {
2031
2096
  return CellApiFp(this.configuration).updateCell(cell, cell2, completionTimeout, options).then((request) => request(this.axios, this.basePath));
2032
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
+ }
2033
2109
  };
2034
2110
  /**
2035
2111
  * ControllerApi - axios parameter creator
@@ -2050,7 +2126,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
2050
2126
  };
2051
2127
  const localVarHeaderParameter = {};
2052
2128
  const localVarQueryParameter = {};
2053
- setBasicAuthToObject(localVarRequestOptions, configuration);
2054
2129
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2055
2130
  if (completionTimeout !== void 0) localVarQueryParameter["completion_timeout"] = completionTimeout;
2056
2131
  localVarHeaderParameter["Content-Type"] = "application/json";
@@ -2080,7 +2155,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
2080
2155
  };
2081
2156
  const localVarHeaderParameter = {};
2082
2157
  const localVarQueryParameter = {};
2083
- setBasicAuthToObject(localVarRequestOptions, configuration);
2084
2158
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2085
2159
  if (completionTimeout !== void 0) localVarQueryParameter["completion_timeout"] = completionTimeout;
2086
2160
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -2109,7 +2183,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
2109
2183
  };
2110
2184
  const localVarHeaderParameter = {};
2111
2185
  const localVarQueryParameter = {};
2112
- setBasicAuthToObject(localVarRequestOptions, configuration);
2113
2186
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2114
2187
  if (completionTimeout !== void 0) localVarQueryParameter["completion_timeout"] = completionTimeout;
2115
2188
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -2138,7 +2211,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
2138
2211
  };
2139
2212
  const localVarHeaderParameter = {};
2140
2213
  const localVarQueryParameter = {};
2141
- setBasicAuthToObject(localVarRequestOptions, configuration);
2142
2214
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2143
2215
  setSearchParams(localVarUrlObj, localVarQueryParameter);
2144
2216
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -2167,7 +2239,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
2167
2239
  };
2168
2240
  const localVarHeaderParameter = {};
2169
2241
  const localVarQueryParameter = {};
2170
- setBasicAuthToObject(localVarRequestOptions, configuration);
2171
2242
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2172
2243
  if (orientationType !== void 0) localVarQueryParameter["orientation_type"] = orientationType;
2173
2244
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -2196,7 +2267,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
2196
2267
  };
2197
2268
  const localVarHeaderParameter = {};
2198
2269
  const localVarQueryParameter = {};
2199
- setBasicAuthToObject(localVarRequestOptions, configuration);
2200
2270
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2201
2271
  setSearchParams(localVarUrlObj, localVarQueryParameter);
2202
2272
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -2224,7 +2294,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
2224
2294
  };
2225
2295
  const localVarHeaderParameter = {};
2226
2296
  const localVarQueryParameter = {};
2227
- setBasicAuthToObject(localVarRequestOptions, configuration);
2228
2297
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2229
2298
  setSearchParams(localVarUrlObj, localVarQueryParameter);
2230
2299
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -2252,7 +2321,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
2252
2321
  };
2253
2322
  const localVarHeaderParameter = {};
2254
2323
  const localVarQueryParameter = {};
2255
- setBasicAuthToObject(localVarRequestOptions, configuration);
2256
2324
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2257
2325
  setSearchParams(localVarUrlObj, localVarQueryParameter);
2258
2326
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -2280,7 +2348,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
2280
2348
  };
2281
2349
  const localVarHeaderParameter = {};
2282
2350
  const localVarQueryParameter = {};
2283
- setBasicAuthToObject(localVarRequestOptions, configuration);
2284
2351
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2285
2352
  if (orientationType !== void 0) localVarQueryParameter["orientation_type"] = orientationType;
2286
2353
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -2308,7 +2375,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
2308
2375
  };
2309
2376
  const localVarHeaderParameter = {};
2310
2377
  const localVarQueryParameter = {};
2311
- setBasicAuthToObject(localVarRequestOptions, configuration);
2312
2378
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2313
2379
  setSearchParams(localVarUrlObj, localVarQueryParameter);
2314
2380
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -2337,7 +2403,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
2337
2403
  };
2338
2404
  const localVarHeaderParameter = {};
2339
2405
  const localVarQueryParameter = {};
2340
- setBasicAuthToObject(localVarRequestOptions, configuration);
2341
2406
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2342
2407
  if (mode !== void 0) localVarQueryParameter["mode"] = mode;
2343
2408
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -2366,7 +2431,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
2366
2431
  };
2367
2432
  const localVarHeaderParameter = {};
2368
2433
  const localVarQueryParameter = {};
2369
- setBasicAuthToObject(localVarRequestOptions, configuration);
2370
2434
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2371
2435
  if (responseRate !== void 0) localVarQueryParameter["response_rate"] = responseRate;
2372
2436
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -2395,7 +2459,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
2395
2459
  };
2396
2460
  const localVarHeaderParameter = {};
2397
2461
  const localVarQueryParameter = {};
2398
- setBasicAuthToObject(localVarRequestOptions, configuration);
2399
2462
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2400
2463
  if (responseRate !== void 0) localVarQueryParameter["response_rate"] = responseRate;
2401
2464
  if (addControllerTimeout !== void 0) localVarQueryParameter["add_controller_timeout"] = addControllerTimeout;
@@ -2426,7 +2489,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
2426
2489
  };
2427
2490
  const localVarHeaderParameter = {};
2428
2491
  const localVarQueryParameter = {};
2429
- setBasicAuthToObject(localVarRequestOptions, configuration);
2430
2492
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2431
2493
  if (completionTimeout !== void 0) localVarQueryParameter["completion_timeout"] = completionTimeout;
2432
2494
  localVarHeaderParameter["Content-Type"] = "application/json";
@@ -2604,7 +2666,7 @@ var ControllerApi = class extends BaseAPI {
2604
2666
  return ControllerApiFp(this.configuration).addRobotController(cell, robotController, completionTimeout, options).then((request) => request(this.axios, this.basePath));
2605
2667
  }
2606
2668
  /**
2607
- * 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).
2608
2670
  * @summary Clear Robot Controllers
2609
2671
  * @param {string} cell Unique identifier addressing a cell in all API calls.
2610
2672
  * @param {number} [completionTimeout]
@@ -2627,7 +2689,7 @@ var ControllerApi = class extends BaseAPI {
2627
2689
  return ControllerApiFp(this.configuration).deleteRobotController(cell, controller, completionTimeout, options).then((request) => request(this.axios, this.basePath));
2628
2690
  }
2629
2691
  /**
2630
- * 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.
2631
2693
  * @summary Description
2632
2694
  * @param {string} cell Unique identifier addressing a cell in all API calls.
2633
2695
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -2673,7 +2735,7 @@ var ControllerApi = class extends BaseAPI {
2673
2735
  return ControllerApiFp(this.configuration).getRobotController(cell, controller, options).then((request) => request(this.axios, this.basePath));
2674
2736
  }
2675
2737
  /**
2676
- * 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.
2677
2739
  * @summary Virtual Controller Configuration
2678
2740
  * @param {string} cell Unique identifier addressing a cell in all API calls.
2679
2741
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -2706,7 +2768,7 @@ var ControllerApi = class extends BaseAPI {
2706
2768
  return ControllerApiFp(this.configuration).listRobotControllers(cell, options).then((request) => request(this.axios, this.basePath));
2707
2769
  }
2708
2770
  /**
2709
- * 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.
2710
2772
  * @summary Set Default Mode
2711
2773
  * @param {string} cell Unique identifier addressing a cell in all API calls.
2712
2774
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -2718,7 +2780,7 @@ var ControllerApi = class extends BaseAPI {
2718
2780
  return ControllerApiFp(this.configuration).setDefaultMode(cell, controller, mode, options).then((request) => request(this.axios, this.basePath));
2719
2781
  }
2720
2782
  /**
2721
- * <!-- 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.
2722
2784
  * @summary Stream Free Drive
2723
2785
  * @param {string} cell Unique identifier addressing a cell in all API calls.
2724
2786
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -2730,7 +2792,7 @@ var ControllerApi = class extends BaseAPI {
2730
2792
  return ControllerApiFp(this.configuration).streamFreeDrive(cell, controller, responseRate, options).then((request) => request(this.axios, this.basePath));
2731
2793
  }
2732
2794
  /**
2733
- * <!-- 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.
2734
2796
  * @summary Stream State
2735
2797
  * @param {string} cell Unique identifier addressing a cell in all API calls.
2736
2798
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -2743,7 +2805,7 @@ var ControllerApi = class extends BaseAPI {
2743
2805
  return ControllerApiFp(this.configuration).streamRobotControllerState(cell, controller, responseRate, addControllerTimeout, options).then((request) => request(this.axios, this.basePath));
2744
2806
  }
2745
2807
  /**
2746
- * 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).
2747
2809
  * @summary Update Robot Controller
2748
2810
  * @param {string} cell Unique identifier addressing a cell in all API calls.
2749
2811
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -2775,7 +2837,6 @@ const ControllerInputsOutputsApiAxiosParamCreator = function(configuration) {
2775
2837
  };
2776
2838
  const localVarHeaderParameter = {};
2777
2839
  const localVarQueryParameter = {};
2778
- setBasicAuthToObject(localVarRequestOptions, configuration);
2779
2840
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2780
2841
  if (ios) localVarQueryParameter["ios"] = ios;
2781
2842
  if (direction !== void 0) localVarQueryParameter["direction"] = direction;
@@ -2807,7 +2868,6 @@ const ControllerInputsOutputsApiAxiosParamCreator = function(configuration) {
2807
2868
  };
2808
2869
  const localVarHeaderParameter = {};
2809
2870
  const localVarQueryParameter = {};
2810
- setBasicAuthToObject(localVarRequestOptions, configuration);
2811
2871
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2812
2872
  if (ios) localVarQueryParameter["ios"] = ios;
2813
2873
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -2837,7 +2897,6 @@ const ControllerInputsOutputsApiAxiosParamCreator = function(configuration) {
2837
2897
  };
2838
2898
  const localVarHeaderParameter = {};
2839
2899
  const localVarQueryParameter = {};
2840
- setBasicAuthToObject(localVarRequestOptions, configuration);
2841
2900
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2842
2901
  localVarHeaderParameter["Content-Type"] = "application/json";
2843
2902
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -2867,7 +2926,6 @@ const ControllerInputsOutputsApiAxiosParamCreator = function(configuration) {
2867
2926
  };
2868
2927
  const localVarHeaderParameter = {};
2869
2928
  const localVarQueryParameter = {};
2870
- setBasicAuthToObject(localVarRequestOptions, configuration);
2871
2929
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2872
2930
  if (ios) localVarQueryParameter["ios"] = ios;
2873
2931
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -2897,7 +2955,6 @@ const ControllerInputsOutputsApiAxiosParamCreator = function(configuration) {
2897
2955
  };
2898
2956
  const localVarHeaderParameter = {};
2899
2957
  const localVarQueryParameter = {};
2900
- setBasicAuthToObject(localVarRequestOptions, configuration);
2901
2958
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
2902
2959
  localVarHeaderParameter["Content-Type"] = "application/json";
2903
2960
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -2996,7 +3053,7 @@ var ControllerInputsOutputsApi = class extends BaseAPI {
2996
3053
  return ControllerInputsOutputsApiFp(this.configuration).listIODescriptions(cell, controller, ios, direction, valueType, group, options).then((request) => request(this.axios, this.basePath));
2997
3054
  }
2998
3055
  /**
2999
- * 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).
3000
3057
  * @summary Get Input/Output Values
3001
3058
  * @param {string} cell Unique identifier addressing a cell in all API calls.
3002
3059
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -3008,7 +3065,7 @@ var ControllerInputsOutputsApi = class extends BaseAPI {
3008
3065
  return ControllerInputsOutputsApiFp(this.configuration).listIOValues(cell, controller, ios, options).then((request) => request(this.axios, this.basePath));
3009
3066
  }
3010
3067
  /**
3011
- * 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.
3012
3069
  * @summary Set Output Values
3013
3070
  * @param {string} cell Unique identifier addressing a cell in all API calls.
3014
3071
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -3032,7 +3089,7 @@ var ControllerInputsOutputsApi = class extends BaseAPI {
3032
3089
  return ControllerInputsOutputsApiFp(this.configuration).streamIOValues(cell, controller, ios, options).then((request) => request(this.axios, this.basePath));
3033
3090
  }
3034
3091
  /**
3035
- * 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 ```
3036
3093
  * @summary Wait For
3037
3094
  * @param {string} cell Unique identifier addressing a cell in all API calls.
3038
3095
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -3063,7 +3120,6 @@ const JoggingApiAxiosParamCreator = function(configuration) {
3063
3120
  };
3064
3121
  const localVarHeaderParameter = {};
3065
3122
  const localVarQueryParameter = {};
3066
- setBasicAuthToObject(localVarRequestOptions, configuration);
3067
3123
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3068
3124
  localVarHeaderParameter["Content-Type"] = "application/json";
3069
3125
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -3106,7 +3162,7 @@ const JoggingApiFactory = function(configuration, basePath, axios) {
3106
3162
  */
3107
3163
  var JoggingApi = class extends BaseAPI {
3108
3164
  /**
3109
- * <!-- 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.
3110
3166
  * @summary Execute Jogging
3111
3167
  * @param {string} cell Unique identifier addressing a cell in all API calls.
3112
3168
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -3137,7 +3193,6 @@ const KinematicsApiAxiosParamCreator = function(configuration) {
3137
3193
  };
3138
3194
  const localVarHeaderParameter = {};
3139
3195
  const localVarQueryParameter = {};
3140
- setBasicAuthToObject(localVarRequestOptions, configuration);
3141
3196
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3142
3197
  localVarHeaderParameter["Content-Type"] = "application/json";
3143
3198
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -3167,7 +3222,6 @@ const KinematicsApiAxiosParamCreator = function(configuration) {
3167
3222
  };
3168
3223
  const localVarHeaderParameter = {};
3169
3224
  const localVarQueryParameter = {};
3170
- setBasicAuthToObject(localVarRequestOptions, configuration);
3171
3225
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3172
3226
  localVarHeaderParameter["Content-Type"] = "application/json";
3173
3227
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -3263,7 +3317,6 @@ const LicenseApiAxiosParamCreator = function(configuration) {
3263
3317
  };
3264
3318
  const localVarHeaderParameter = {};
3265
3319
  const localVarQueryParameter = {};
3266
- setBasicAuthToObject(localVarRequestOptions, configuration);
3267
3320
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3268
3321
  localVarHeaderParameter["Content-Type"] = "application/json";
3269
3322
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -3290,7 +3343,6 @@ const LicenseApiAxiosParamCreator = function(configuration) {
3290
3343
  };
3291
3344
  const localVarHeaderParameter = {};
3292
3345
  const localVarQueryParameter = {};
3293
- setBasicAuthToObject(localVarRequestOptions, configuration);
3294
3346
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3295
3347
  setSearchParams(localVarUrlObj, localVarQueryParameter);
3296
3348
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -3315,7 +3367,6 @@ const LicenseApiAxiosParamCreator = function(configuration) {
3315
3367
  };
3316
3368
  const localVarHeaderParameter = {};
3317
3369
  const localVarQueryParameter = {};
3318
- setBasicAuthToObject(localVarRequestOptions, configuration);
3319
3370
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3320
3371
  setSearchParams(localVarUrlObj, localVarQueryParameter);
3321
3372
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -3340,7 +3391,6 @@ const LicenseApiAxiosParamCreator = function(configuration) {
3340
3391
  };
3341
3392
  const localVarHeaderParameter = {};
3342
3393
  const localVarQueryParameter = {};
3343
- setBasicAuthToObject(localVarRequestOptions, configuration);
3344
3394
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3345
3395
  setSearchParams(localVarUrlObj, localVarQueryParameter);
3346
3396
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -3470,7 +3520,6 @@ const MotionGroupApiAxiosParamCreator = function(configuration) {
3470
3520
  };
3471
3521
  const localVarHeaderParameter = {};
3472
3522
  const localVarQueryParameter = {};
3473
- setBasicAuthToObject(localVarRequestOptions, configuration);
3474
3523
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3475
3524
  if (responseCoordinateSystem !== void 0) localVarQueryParameter["response_coordinate_system"] = responseCoordinateSystem;
3476
3525
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -3500,7 +3549,6 @@ const MotionGroupApiAxiosParamCreator = function(configuration) {
3500
3549
  };
3501
3550
  const localVarHeaderParameter = {};
3502
3551
  const localVarQueryParameter = {};
3503
- setBasicAuthToObject(localVarRequestOptions, configuration);
3504
3552
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3505
3553
  setSearchParams(localVarUrlObj, localVarQueryParameter);
3506
3554
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -3529,7 +3577,6 @@ const MotionGroupApiAxiosParamCreator = function(configuration) {
3529
3577
  };
3530
3578
  const localVarHeaderParameter = {};
3531
3579
  const localVarQueryParameter = {};
3532
- setBasicAuthToObject(localVarRequestOptions, configuration);
3533
3580
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3534
3581
  if (responseRate !== void 0) localVarQueryParameter["response_rate"] = responseRate;
3535
3582
  if (responseCoordinateSystem !== void 0) localVarQueryParameter["response_coordinate_system"] = responseCoordinateSystem;
@@ -3652,7 +3699,6 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
3652
3699
  };
3653
3700
  const localVarHeaderParameter = {};
3654
3701
  const localVarQueryParameter = {};
3655
- setBasicAuthToObject(localVarRequestOptions, configuration);
3656
3702
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3657
3703
  setSearchParams(localVarUrlObj, localVarQueryParameter);
3658
3704
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -3679,7 +3725,6 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
3679
3725
  };
3680
3726
  const localVarHeaderParameter = {};
3681
3727
  const localVarQueryParameter = {};
3682
- setBasicAuthToObject(localVarRequestOptions, configuration);
3683
3728
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3684
3729
  setSearchParams(localVarUrlObj, localVarQueryParameter);
3685
3730
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -3706,7 +3751,6 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
3706
3751
  };
3707
3752
  const localVarHeaderParameter = {};
3708
3753
  const localVarQueryParameter = {};
3709
- setBasicAuthToObject(localVarRequestOptions, configuration);
3710
3754
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3711
3755
  setSearchParams(localVarUrlObj, localVarQueryParameter);
3712
3756
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -3731,7 +3775,6 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
3731
3775
  };
3732
3776
  const localVarHeaderParameter = {};
3733
3777
  const localVarQueryParameter = {};
3734
- setBasicAuthToObject(localVarRequestOptions, configuration);
3735
3778
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3736
3779
  setSearchParams(localVarUrlObj, localVarQueryParameter);
3737
3780
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -3758,7 +3801,6 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
3758
3801
  };
3759
3802
  const localVarHeaderParameter = {};
3760
3803
  const localVarQueryParameter = {};
3761
- setBasicAuthToObject(localVarRequestOptions, configuration);
3762
3804
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3763
3805
  setSearchParams(localVarUrlObj, localVarQueryParameter);
3764
3806
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -3840,9 +3882,9 @@ const MotionGroupModelsApiFactory = function(configuration, basePath, axios) {
3840
3882
  */
3841
3883
  var MotionGroupModelsApi = class extends BaseAPI {
3842
3884
  /**
3843
- * 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.
3844
3886
  * @summary Get Collision Model
3845
- * @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).
3846
3888
  * @param {*} [options] Override http request option.
3847
3889
  * @throws {RequiredError}
3848
3890
  */
@@ -3850,9 +3892,9 @@ var MotionGroupModelsApi = class extends BaseAPI {
3850
3892
  return MotionGroupModelsApiFp(this.configuration).getMotionGroupCollisionModel(motionGroupModel, options).then((request) => request(this.axios, this.basePath));
3851
3893
  }
3852
3894
  /**
3853
- * 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.
3854
3896
  * @summary Download GLB Model
3855
- * @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).
3856
3898
  * @param {*} [options] Override http request option.
3857
3899
  * @throws {RequiredError}
3858
3900
  */
@@ -3860,9 +3902,9 @@ var MotionGroupModelsApi = class extends BaseAPI {
3860
3902
  return MotionGroupModelsApiFp(this.configuration).getMotionGroupGlbModel(motionGroupModel, options).then((request) => request(this.axios, this.basePath));
3861
3903
  }
3862
3904
  /**
3863
- * 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.
3864
3906
  * @summary Get Kinematics
3865
- * @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).
3866
3908
  * @param {*} [options] Override http request option.
3867
3909
  * @throws {RequiredError}
3868
3910
  */
@@ -3879,9 +3921,9 @@ var MotionGroupModelsApi = class extends BaseAPI {
3879
3921
  return MotionGroupModelsApiFp(this.configuration).getMotionGroupModels(options).then((request) => request(this.axios, this.basePath));
3880
3922
  }
3881
3923
  /**
3882
- * 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.
3883
3925
  * @summary Download USD Model
3884
- * @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).
3885
3927
  * @param {*} [options] Override http request option.
3886
3928
  * @throws {RequiredError}
3887
3929
  */
@@ -3908,7 +3950,6 @@ const ProgramApiAxiosParamCreator = function(configuration) {
3908
3950
  };
3909
3951
  const localVarHeaderParameter = {};
3910
3952
  const localVarQueryParameter = {};
3911
- setBasicAuthToObject(localVarRequestOptions, configuration);
3912
3953
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3913
3954
  setSearchParams(localVarUrlObj, localVarQueryParameter);
3914
3955
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -3935,7 +3976,6 @@ const ProgramApiAxiosParamCreator = function(configuration) {
3935
3976
  };
3936
3977
  const localVarHeaderParameter = {};
3937
3978
  const localVarQueryParameter = {};
3938
- setBasicAuthToObject(localVarRequestOptions, configuration);
3939
3979
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3940
3980
  setSearchParams(localVarUrlObj, localVarQueryParameter);
3941
3981
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -3964,7 +4004,6 @@ const ProgramApiAxiosParamCreator = function(configuration) {
3964
4004
  };
3965
4005
  const localVarHeaderParameter = {};
3966
4006
  const localVarQueryParameter = {};
3967
- setBasicAuthToObject(localVarRequestOptions, configuration);
3968
4007
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3969
4008
  localVarHeaderParameter["Content-Type"] = "application/json";
3970
4009
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -3994,7 +4033,6 @@ const ProgramApiAxiosParamCreator = function(configuration) {
3994
4033
  };
3995
4034
  const localVarHeaderParameter = {};
3996
4035
  const localVarQueryParameter = {};
3997
- setBasicAuthToObject(localVarRequestOptions, configuration);
3998
4036
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
3999
4037
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4000
4038
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -4115,57 +4153,108 @@ var ProgramApi = class extends BaseAPI {
4115
4153
  * RobotConfigurationsApi - axios parameter creator
4116
4154
  */
4117
4155
  const RobotConfigurationsApiAxiosParamCreator = function(configuration) {
4118
- return { getRobotConfigurations: async (options = {}) => {
4119
- const localVarUrlObj = new URL(`/robot-configurations`, DUMMY_BASE_URL);
4120
- let baseOptions;
4121
- if (configuration) baseOptions = configuration.baseOptions;
4122
- const localVarRequestOptions = {
4123
- method: "GET",
4124
- ...baseOptions,
4125
- ...options
4126
- };
4127
- const localVarHeaderParameter = {};
4128
- const localVarQueryParameter = {};
4129
- setBasicAuthToObject(localVarRequestOptions, configuration);
4130
- await setBearerAuthToObject(localVarHeaderParameter, configuration);
4131
- setSearchParams(localVarUrlObj, localVarQueryParameter);
4132
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
4133
- localVarRequestOptions.headers = {
4134
- ...localVarHeaderParameter,
4135
- ...headersFromBaseOptions,
4136
- ...options.headers
4137
- };
4138
- return {
4139
- url: toPathString(localVarUrlObj),
4140
- options: localVarRequestOptions
4141
- };
4142
- } };
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
+ };
4143
4209
  };
4144
4210
  /**
4145
4211
  * RobotConfigurationsApi - functional programming interface
4146
4212
  */
4147
4213
  const RobotConfigurationsApiFp = function(configuration) {
4148
4214
  const localVarAxiosParamCreator = RobotConfigurationsApiAxiosParamCreator(configuration);
4149
- return { async getRobotConfigurations(options) {
4150
- const localVarAxiosArgs = await localVarAxiosParamCreator.getRobotConfigurations(options);
4151
- const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
4152
- const localVarOperationServerBasePath = operationServerMap["RobotConfigurationsApi.getRobotConfigurations"]?.[localVarOperationServerIndex]?.url;
4153
- return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
4154
- } };
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
+ };
4155
4229
  };
4156
4230
  /**
4157
4231
  * RobotConfigurationsApi - factory interface
4158
4232
  */
4159
4233
  const RobotConfigurationsApiFactory = function(configuration, basePath, axios) {
4160
4234
  const localVarFp = RobotConfigurationsApiFp(configuration);
4161
- return { getRobotConfigurations(options) {
4162
- return localVarFp.getRobotConfigurations(options).then((request) => request(axios, basePath));
4163
- } };
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
+ };
4164
4243
  };
4165
4244
  /**
4166
4245
  * RobotConfigurationsApi - object-oriented interface
4167
4246
  */
4168
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
+ }
4169
4258
  /**
4170
4259
  * Returns the identifiers of available robot configurations. A robot configuration represents a robot controller with one or more attached motion groups.
4171
4260
  * @summary List Robot Configurations
@@ -4195,7 +4284,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
4195
4284
  };
4196
4285
  const localVarHeaderParameter = {};
4197
4286
  const localVarQueryParameter = {};
4198
- setBasicAuthToObject(localVarRequestOptions, configuration);
4199
4287
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4200
4288
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4201
4289
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -4223,7 +4311,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
4223
4311
  };
4224
4312
  const localVarHeaderParameter = {};
4225
4313
  const localVarQueryParameter = {};
4226
- setBasicAuthToObject(localVarRequestOptions, configuration);
4227
4314
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4228
4315
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4229
4316
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -4251,7 +4338,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
4251
4338
  };
4252
4339
  const localVarHeaderParameter = {};
4253
4340
  const localVarQueryParameter = {};
4254
- setBasicAuthToObject(localVarRequestOptions, configuration);
4255
4341
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4256
4342
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4257
4343
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -4279,7 +4365,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
4279
4365
  };
4280
4366
  const localVarHeaderParameter = {};
4281
4367
  const localVarQueryParameter = {};
4282
- setBasicAuthToObject(localVarRequestOptions, configuration);
4283
4368
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4284
4369
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4285
4370
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -4307,7 +4392,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
4307
4392
  };
4308
4393
  const localVarHeaderParameter = {};
4309
4394
  const localVarQueryParameter = {};
4310
- setBasicAuthToObject(localVarRequestOptions, configuration);
4311
4395
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4312
4396
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4313
4397
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -4335,7 +4419,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
4335
4419
  };
4336
4420
  const localVarHeaderParameter = {};
4337
4421
  const localVarQueryParameter = {};
4338
- setBasicAuthToObject(localVarRequestOptions, configuration);
4339
4422
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4340
4423
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4341
4424
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -4362,7 +4445,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
4362
4445
  };
4363
4446
  const localVarHeaderParameter = {};
4364
4447
  const localVarQueryParameter = {};
4365
- setBasicAuthToObject(localVarRequestOptions, configuration);
4366
4448
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4367
4449
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4368
4450
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -4389,7 +4471,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
4389
4471
  };
4390
4472
  const localVarHeaderParameter = {};
4391
4473
  const localVarQueryParameter = {};
4392
- setBasicAuthToObject(localVarRequestOptions, configuration);
4393
4474
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4394
4475
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4395
4476
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -4416,7 +4497,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
4416
4497
  };
4417
4498
  const localVarHeaderParameter = {};
4418
4499
  const localVarQueryParameter = {};
4419
- setBasicAuthToObject(localVarRequestOptions, configuration);
4420
4500
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4421
4501
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4422
4502
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -4443,7 +4523,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
4443
4523
  };
4444
4524
  const localVarHeaderParameter = {};
4445
4525
  const localVarQueryParameter = {};
4446
- setBasicAuthToObject(localVarRequestOptions, configuration);
4447
4526
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4448
4527
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4449
4528
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -4470,7 +4549,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
4470
4549
  };
4471
4550
  const localVarHeaderParameter = {};
4472
4551
  const localVarQueryParameter = {};
4473
- setBasicAuthToObject(localVarRequestOptions, configuration);
4474
4552
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4475
4553
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4476
4554
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -4497,7 +4575,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
4497
4575
  };
4498
4576
  const localVarHeaderParameter = {};
4499
4577
  const localVarQueryParameter = {};
4500
- setBasicAuthToObject(localVarRequestOptions, configuration);
4501
4578
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4502
4579
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4503
4580
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -4526,7 +4603,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
4526
4603
  };
4527
4604
  const localVarHeaderParameter = {};
4528
4605
  const localVarQueryParameter = {};
4529
- setBasicAuthToObject(localVarRequestOptions, configuration);
4530
4606
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4531
4607
  localVarHeaderParameter["Content-Type"] = "application/json";
4532
4608
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -4557,7 +4633,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
4557
4633
  };
4558
4634
  const localVarHeaderParameter = {};
4559
4635
  const localVarQueryParameter = {};
4560
- setBasicAuthToObject(localVarRequestOptions, configuration);
4561
4636
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4562
4637
  localVarHeaderParameter["Content-Type"] = "application/json";
4563
4638
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -4588,7 +4663,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
4588
4663
  };
4589
4664
  const localVarHeaderParameter = {};
4590
4665
  const localVarQueryParameter = {};
4591
- setBasicAuthToObject(localVarRequestOptions, configuration);
4592
4666
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4593
4667
  localVarHeaderParameter["Content-Type"] = "application/json";
4594
4668
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -4943,7 +5017,6 @@ const StoreCollisionSetupsApiAxiosParamCreator = function(configuration) {
4943
5017
  };
4944
5018
  const localVarHeaderParameter = {};
4945
5019
  const localVarQueryParameter = {};
4946
- setBasicAuthToObject(localVarRequestOptions, configuration);
4947
5020
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4948
5021
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4949
5022
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -4971,7 +5044,6 @@ const StoreCollisionSetupsApiAxiosParamCreator = function(configuration) {
4971
5044
  };
4972
5045
  const localVarHeaderParameter = {};
4973
5046
  const localVarQueryParameter = {};
4974
- setBasicAuthToObject(localVarRequestOptions, configuration);
4975
5047
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4976
5048
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4977
5049
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -4998,7 +5070,6 @@ const StoreCollisionSetupsApiAxiosParamCreator = function(configuration) {
4998
5070
  };
4999
5071
  const localVarHeaderParameter = {};
5000
5072
  const localVarQueryParameter = {};
5001
- setBasicAuthToObject(localVarRequestOptions, configuration);
5002
5073
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5003
5074
  setSearchParams(localVarUrlObj, localVarQueryParameter);
5004
5075
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -5025,7 +5096,6 @@ const StoreCollisionSetupsApiAxiosParamCreator = function(configuration) {
5025
5096
  };
5026
5097
  const localVarHeaderParameter = {};
5027
5098
  const localVarQueryParameter = {};
5028
- setBasicAuthToObject(localVarRequestOptions, configuration);
5029
5099
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5030
5100
  setSearchParams(localVarUrlObj, localVarQueryParameter);
5031
5101
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -5054,7 +5124,6 @@ const StoreCollisionSetupsApiAxiosParamCreator = function(configuration) {
5054
5124
  };
5055
5125
  const localVarHeaderParameter = {};
5056
5126
  const localVarQueryParameter = {};
5057
- setBasicAuthToObject(localVarRequestOptions, configuration);
5058
5127
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5059
5128
  localVarHeaderParameter["Content-Type"] = "application/json";
5060
5129
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -5210,7 +5279,6 @@ const StoreObjectApiAxiosParamCreator = function(configuration) {
5210
5279
  };
5211
5280
  const localVarHeaderParameter = {};
5212
5281
  const localVarQueryParameter = {};
5213
- setBasicAuthToObject(localVarRequestOptions, configuration);
5214
5282
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5215
5283
  setSearchParams(localVarUrlObj, localVarQueryParameter);
5216
5284
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -5238,7 +5306,6 @@ const StoreObjectApiAxiosParamCreator = function(configuration) {
5238
5306
  };
5239
5307
  const localVarHeaderParameter = {};
5240
5308
  const localVarQueryParameter = {};
5241
- setBasicAuthToObject(localVarRequestOptions, configuration);
5242
5309
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5243
5310
  setSearchParams(localVarUrlObj, localVarQueryParameter);
5244
5311
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -5266,7 +5333,6 @@ const StoreObjectApiAxiosParamCreator = function(configuration) {
5266
5333
  };
5267
5334
  const localVarHeaderParameter = {};
5268
5335
  const localVarQueryParameter = {};
5269
- setBasicAuthToObject(localVarRequestOptions, configuration);
5270
5336
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5271
5337
  setSearchParams(localVarUrlObj, localVarQueryParameter);
5272
5338
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -5294,7 +5360,6 @@ const StoreObjectApiAxiosParamCreator = function(configuration) {
5294
5360
  };
5295
5361
  const localVarHeaderParameter = {};
5296
5362
  const localVarQueryParameter = {};
5297
- setBasicAuthToObject(localVarRequestOptions, configuration);
5298
5363
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5299
5364
  setSearchParams(localVarUrlObj, localVarQueryParameter);
5300
5365
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -5321,7 +5386,6 @@ const StoreObjectApiAxiosParamCreator = function(configuration) {
5321
5386
  };
5322
5387
  const localVarHeaderParameter = {};
5323
5388
  const localVarQueryParameter = {};
5324
- setBasicAuthToObject(localVarRequestOptions, configuration);
5325
5389
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5326
5390
  setSearchParams(localVarUrlObj, localVarQueryParameter);
5327
5391
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -5350,7 +5414,6 @@ const StoreObjectApiAxiosParamCreator = function(configuration) {
5350
5414
  const localVarHeaderParameter = {};
5351
5415
  const localVarQueryParameter = {};
5352
5416
  const localVarFormParams = new (configuration && configuration.formDataCtor || FormData)();
5353
- setBasicAuthToObject(localVarRequestOptions, configuration);
5354
5417
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5355
5418
  if (anyValue !== void 0) localVarFormParams.append("any_value", new Blob([JSON.stringify(anyValue)], { type: "application/json" }));
5356
5419
  localVarHeaderParameter["Content-Type"] = "multipart/form-data";
@@ -5498,7 +5561,7 @@ var StoreObjectApi = class extends BaseAPI {
5498
5561
  return StoreObjectApiFp(this.configuration).listAllObjectKeys(cell, options).then((request) => request(this.axios, this.basePath));
5499
5562
  }
5500
5563
  /**
5501
- * 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.
5502
5565
  * @summary Store Object
5503
5566
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5504
5567
  * @param {string} key
@@ -5527,7 +5590,6 @@ const SystemApiAxiosParamCreator = function(configuration) {
5527
5590
  };
5528
5591
  const localVarHeaderParameter = {};
5529
5592
  const localVarQueryParameter = {};
5530
- setBasicAuthToObject(localVarRequestOptions, configuration);
5531
5593
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5532
5594
  if (resources) localVarQueryParameter["resources"] = resources.join(COLLECTION_FORMATS.csv);
5533
5595
  if (metadata !== void 0) localVarQueryParameter["metadata"] = metadata;
@@ -5555,7 +5617,6 @@ const SystemApiAxiosParamCreator = function(configuration) {
5555
5617
  };
5556
5618
  const localVarHeaderParameter = {};
5557
5619
  const localVarQueryParameter = {};
5558
- setBasicAuthToObject(localVarRequestOptions, configuration);
5559
5620
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5560
5621
  if (channel !== void 0) localVarQueryParameter["channel"] = channel;
5561
5622
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -5581,7 +5642,6 @@ const SystemApiAxiosParamCreator = function(configuration) {
5581
5642
  };
5582
5643
  const localVarHeaderParameter = {};
5583
5644
  const localVarQueryParameter = {};
5584
- setBasicAuthToObject(localVarRequestOptions, configuration);
5585
5645
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5586
5646
  if (_interface !== void 0) localVarQueryParameter["interface"] = _interface;
5587
5647
  if (cidr !== void 0) localVarQueryParameter["cidr"] = cidr;
@@ -5610,7 +5670,6 @@ const SystemApiAxiosParamCreator = function(configuration) {
5610
5670
  };
5611
5671
  const localVarHeaderParameter = {};
5612
5672
  const localVarQueryParameter = {};
5613
- setBasicAuthToObject(localVarRequestOptions, configuration);
5614
5673
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5615
5674
  if (operationId !== void 0) localVarQueryParameter["operation_id"] = operationId;
5616
5675
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -5636,7 +5695,6 @@ const SystemApiAxiosParamCreator = function(configuration) {
5636
5695
  };
5637
5696
  const localVarHeaderParameter = {};
5638
5697
  const localVarQueryParameter = {};
5639
- setBasicAuthToObject(localVarRequestOptions, configuration);
5640
5698
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5641
5699
  setSearchParams(localVarUrlObj, localVarQueryParameter);
5642
5700
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -5661,7 +5719,6 @@ const SystemApiAxiosParamCreator = function(configuration) {
5661
5719
  };
5662
5720
  const localVarHeaderParameter = {};
5663
5721
  const localVarQueryParameter = {};
5664
- setBasicAuthToObject(localVarRequestOptions, configuration);
5665
5722
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5666
5723
  setSearchParams(localVarUrlObj, localVarQueryParameter);
5667
5724
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -5686,7 +5743,6 @@ const SystemApiAxiosParamCreator = function(configuration) {
5686
5743
  };
5687
5744
  const localVarHeaderParameter = {};
5688
5745
  const localVarQueryParameter = {};
5689
- setBasicAuthToObject(localVarRequestOptions, configuration);
5690
5746
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5691
5747
  setSearchParams(localVarUrlObj, localVarQueryParameter);
5692
5748
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -5711,7 +5767,6 @@ const SystemApiAxiosParamCreator = function(configuration) {
5711
5767
  };
5712
5768
  const localVarHeaderParameter = {};
5713
5769
  const localVarQueryParameter = {};
5714
- setBasicAuthToObject(localVarRequestOptions, configuration);
5715
5770
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5716
5771
  setSearchParams(localVarUrlObj, localVarQueryParameter);
5717
5772
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -5736,7 +5791,6 @@ const SystemApiAxiosParamCreator = function(configuration) {
5736
5791
  };
5737
5792
  const localVarHeaderParameter = {};
5738
5793
  const localVarQueryParameter = {};
5739
- setBasicAuthToObject(localVarRequestOptions, configuration);
5740
5794
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5741
5795
  setSearchParams(localVarUrlObj, localVarQueryParameter);
5742
5796
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -5761,7 +5815,6 @@ const SystemApiAxiosParamCreator = function(configuration) {
5761
5815
  };
5762
5816
  const localVarHeaderParameter = {};
5763
5817
  const localVarQueryParameter = {};
5764
- setBasicAuthToObject(localVarRequestOptions, configuration);
5765
5818
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5766
5819
  setSearchParams(localVarUrlObj, localVarQueryParameter);
5767
5820
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -5787,7 +5840,6 @@ const SystemApiAxiosParamCreator = function(configuration) {
5787
5840
  };
5788
5841
  const localVarHeaderParameter = {};
5789
5842
  const localVarQueryParameter = {};
5790
- setBasicAuthToObject(localVarRequestOptions, configuration);
5791
5843
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5792
5844
  if (resources) localVarQueryParameter["resources"] = resources.join(COLLECTION_FORMATS.csv);
5793
5845
  localVarHeaderParameter["Content-Type"] = "application/gzip";
@@ -5816,7 +5868,6 @@ const SystemApiAxiosParamCreator = function(configuration) {
5816
5868
  };
5817
5869
  const localVarHeaderParameter = {};
5818
5870
  const localVarQueryParameter = {};
5819
- setBasicAuthToObject(localVarRequestOptions, configuration);
5820
5871
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
5821
5872
  localVarHeaderParameter["Content-Type"] = "application/json";
5822
5873
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -6071,7 +6122,7 @@ var SystemApi = class extends BaseAPI {
6071
6122
  return SystemApiFp(this.configuration).restoreConfiguration(body, resources, options).then((request) => request(this.axios, this.basePath));
6072
6123
  }
6073
6124
  /**
6074
- * 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.
6075
6126
  * @summary Update Wandelbots NOVA version
6076
6127
  * @param {UpdateNovaVersionRequest} updateNovaVersionRequest
6077
6128
  * @param {*} [options] Override http request option.
@@ -6101,7 +6152,6 @@ const TrajectoryCachingApiAxiosParamCreator = function(configuration) {
6101
6152
  };
6102
6153
  const localVarHeaderParameter = {};
6103
6154
  const localVarQueryParameter = {};
6104
- setBasicAuthToObject(localVarRequestOptions, configuration);
6105
6155
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6106
6156
  localVarHeaderParameter["Content-Type"] = "application/json";
6107
6157
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -6131,7 +6181,6 @@ const TrajectoryCachingApiAxiosParamCreator = function(configuration) {
6131
6181
  };
6132
6182
  const localVarHeaderParameter = {};
6133
6183
  const localVarQueryParameter = {};
6134
- setBasicAuthToObject(localVarRequestOptions, configuration);
6135
6184
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6136
6185
  setSearchParams(localVarUrlObj, localVarQueryParameter);
6137
6186
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -6160,7 +6209,6 @@ const TrajectoryCachingApiAxiosParamCreator = function(configuration) {
6160
6209
  };
6161
6210
  const localVarHeaderParameter = {};
6162
6211
  const localVarQueryParameter = {};
6163
- setBasicAuthToObject(localVarRequestOptions, configuration);
6164
6212
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6165
6213
  setSearchParams(localVarUrlObj, localVarQueryParameter);
6166
6214
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -6189,7 +6237,6 @@ const TrajectoryCachingApiAxiosParamCreator = function(configuration) {
6189
6237
  };
6190
6238
  const localVarHeaderParameter = {};
6191
6239
  const localVarQueryParameter = {};
6192
- setBasicAuthToObject(localVarRequestOptions, configuration);
6193
6240
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6194
6241
  setSearchParams(localVarUrlObj, localVarQueryParameter);
6195
6242
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -6217,7 +6264,6 @@ const TrajectoryCachingApiAxiosParamCreator = function(configuration) {
6217
6264
  };
6218
6265
  const localVarHeaderParameter = {};
6219
6266
  const localVarQueryParameter = {};
6220
- setBasicAuthToObject(localVarRequestOptions, configuration);
6221
6267
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6222
6268
  setSearchParams(localVarUrlObj, localVarQueryParameter);
6223
6269
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -6299,7 +6345,7 @@ const TrajectoryCachingApiFactory = function(configuration, basePath, axios) {
6299
6345
  */
6300
6346
  var TrajectoryCachingApi = class extends BaseAPI {
6301
6347
  /**
6302
- * 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.
6303
6349
  * @summary Add Trajectory
6304
6350
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6305
6351
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -6322,7 +6368,7 @@ var TrajectoryCachingApi = class extends BaseAPI {
6322
6368
  return TrajectoryCachingApiFp(this.configuration).clearTrajectories(cell, controller, options).then((request) => request(this.axios, this.basePath));
6323
6369
  }
6324
6370
  /**
6325
- * 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.
6326
6372
  * @summary Delete Trajectory
6327
6373
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6328
6374
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -6334,7 +6380,7 @@ var TrajectoryCachingApi = class extends BaseAPI {
6334
6380
  return TrajectoryCachingApiFp(this.configuration).deleteTrajectory(cell, controller, trajectory, options).then((request) => request(this.axios, this.basePath));
6335
6381
  }
6336
6382
  /**
6337
- * 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.
6338
6384
  * @summary Get Trajectory
6339
6385
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6340
6386
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -6346,7 +6392,7 @@ var TrajectoryCachingApi = class extends BaseAPI {
6346
6392
  return TrajectoryCachingApiFp(this.configuration).getTrajectory(cell, controller, trajectory, options).then((request) => request(this.axios, this.basePath));
6347
6393
  }
6348
6394
  /**
6349
- * 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.
6350
6396
  * @summary List Trajectories
6351
6397
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6352
6398
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -6376,7 +6422,6 @@ const TrajectoryExecutionApiAxiosParamCreator = function(configuration) {
6376
6422
  };
6377
6423
  const localVarHeaderParameter = {};
6378
6424
  const localVarQueryParameter = {};
6379
- setBasicAuthToObject(localVarRequestOptions, configuration);
6380
6425
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6381
6426
  localVarHeaderParameter["Content-Type"] = "application/json";
6382
6427
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -6419,7 +6464,7 @@ const TrajectoryExecutionApiFactory = function(configuration, basePath, axios) {
6419
6464
  */
6420
6465
  var TrajectoryExecutionApi = class extends BaseAPI {
6421
6466
  /**
6422
- * <!-- 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.
6423
6468
  * @summary Execute Trajectory
6424
6469
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6425
6470
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -6436,6 +6481,35 @@ var TrajectoryExecutionApi = class extends BaseAPI {
6436
6481
  */
6437
6482
  const TrajectoryPlanningApiAxiosParamCreator = function(configuration) {
6438
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
+ },
6439
6513
  planCollisionFree: async (cell, planCollisionFreeRequest, options = {}) => {
6440
6514
  assertParamExists("planCollisionFree", "cell", cell);
6441
6515
  assertParamExists("planCollisionFree", "planCollisionFreeRequest", planCollisionFreeRequest);
@@ -6450,7 +6524,6 @@ const TrajectoryPlanningApiAxiosParamCreator = function(configuration) {
6450
6524
  };
6451
6525
  const localVarHeaderParameter = {};
6452
6526
  const localVarQueryParameter = {};
6453
- setBasicAuthToObject(localVarRequestOptions, configuration);
6454
6527
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6455
6528
  localVarHeaderParameter["Content-Type"] = "application/json";
6456
6529
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -6480,7 +6553,6 @@ const TrajectoryPlanningApiAxiosParamCreator = function(configuration) {
6480
6553
  };
6481
6554
  const localVarHeaderParameter = {};
6482
6555
  const localVarQueryParameter = {};
6483
- setBasicAuthToObject(localVarRequestOptions, configuration);
6484
6556
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6485
6557
  localVarHeaderParameter["Content-Type"] = "application/json";
6486
6558
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -6504,6 +6576,12 @@ const TrajectoryPlanningApiAxiosParamCreator = function(configuration) {
6504
6576
  const TrajectoryPlanningApiFp = function(configuration) {
6505
6577
  const localVarAxiosParamCreator = TrajectoryPlanningApiAxiosParamCreator(configuration);
6506
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
+ },
6507
6585
  async planCollisionFree(cell, planCollisionFreeRequest, options) {
6508
6586
  const localVarAxiosArgs = await localVarAxiosParamCreator.planCollisionFree(cell, planCollisionFreeRequest, options);
6509
6587
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
@@ -6524,6 +6602,9 @@ const TrajectoryPlanningApiFp = function(configuration) {
6524
6602
  const TrajectoryPlanningApiFactory = function(configuration, basePath, axios) {
6525
6603
  const localVarFp = TrajectoryPlanningApiFp(configuration);
6526
6604
  return {
6605
+ mergeTrajectories(cell, mergeTrajectoriesRequest, options) {
6606
+ return localVarFp.mergeTrajectories(cell, mergeTrajectoriesRequest, options).then((request) => request(axios, basePath));
6607
+ },
6527
6608
  planCollisionFree(cell, planCollisionFreeRequest, options) {
6528
6609
  return localVarFp.planCollisionFree(cell, planCollisionFreeRequest, options).then((request) => request(axios, basePath));
6529
6610
  },
@@ -6537,7 +6618,18 @@ const TrajectoryPlanningApiFactory = function(configuration, basePath, axios) {
6537
6618
  */
6538
6619
  var TrajectoryPlanningApi = class extends BaseAPI {
6539
6620
  /**
6540
- * 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.
6541
6633
  * @summary Plan Collision-Free Trajectory
6542
6634
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6543
6635
  * @param {PlanCollisionFreeRequest} planCollisionFreeRequest
@@ -6548,7 +6640,7 @@ var TrajectoryPlanningApi = class extends BaseAPI {
6548
6640
  return TrajectoryPlanningApiFp(this.configuration).planCollisionFree(cell, planCollisionFreeRequest, options).then((request) => request(this.axios, this.basePath));
6549
6641
  }
6550
6642
  /**
6551
- * 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.
6552
6644
  * @summary Plan Trajectory
6553
6645
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6554
6646
  * @param {PlanTrajectoryRequest} planTrajectoryRequest
@@ -6574,7 +6666,6 @@ const VersionApiAxiosParamCreator = function(configuration) {
6574
6666
  };
6575
6667
  const localVarHeaderParameter = {};
6576
6668
  const localVarQueryParameter = {};
6577
- setBasicAuthToObject(localVarRequestOptions, configuration);
6578
6669
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6579
6670
  setSearchParams(localVarUrlObj, localVarQueryParameter);
6580
6671
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -6645,7 +6736,6 @@ const VirtualControllerApiAxiosParamCreator = function(configuration) {
6645
6736
  };
6646
6737
  const localVarHeaderParameter = {};
6647
6738
  const localVarQueryParameter = {};
6648
- setBasicAuthToObject(localVarRequestOptions, configuration);
6649
6739
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6650
6740
  localVarHeaderParameter["Content-Type"] = "application/json";
6651
6741
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -6661,6 +6751,36 @@ const VirtualControllerApiAxiosParamCreator = function(configuration) {
6661
6751
  options: localVarRequestOptions
6662
6752
  };
6663
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
+ },
6664
6784
  addVirtualControllerTcp: async (cell, controller, motionGroup, tcp, robotTcpData, options = {}) => {
6665
6785
  assertParamExists("addVirtualControllerTcp", "cell", cell);
6666
6786
  assertParamExists("addVirtualControllerTcp", "controller", controller);
@@ -6678,7 +6798,6 @@ const VirtualControllerApiAxiosParamCreator = function(configuration) {
6678
6798
  };
6679
6799
  const localVarHeaderParameter = {};
6680
6800
  const localVarQueryParameter = {};
6681
- setBasicAuthToObject(localVarRequestOptions, configuration);
6682
6801
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6683
6802
  localVarHeaderParameter["Content-Type"] = "application/json";
6684
6803
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -6709,7 +6828,6 @@ const VirtualControllerApiAxiosParamCreator = function(configuration) {
6709
6828
  };
6710
6829
  const localVarHeaderParameter = {};
6711
6830
  const localVarQueryParameter = {};
6712
- setBasicAuthToObject(localVarRequestOptions, configuration);
6713
6831
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6714
6832
  if (deleteDependent !== void 0) localVarQueryParameter["delete_dependent"] = deleteDependent;
6715
6833
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -6724,6 +6842,34 @@ const VirtualControllerApiAxiosParamCreator = function(configuration) {
6724
6842
  options: localVarRequestOptions
6725
6843
  };
6726
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
+ },
6727
6873
  deleteVirtualControllerTcp: async (cell, controller, motionGroup, tcp, options = {}) => {
6728
6874
  assertParamExists("deleteVirtualControllerTcp", "cell", cell);
6729
6875
  assertParamExists("deleteVirtualControllerTcp", "controller", controller);
@@ -6740,7 +6886,6 @@ const VirtualControllerApiAxiosParamCreator = function(configuration) {
6740
6886
  };
6741
6887
  const localVarHeaderParameter = {};
6742
6888
  const localVarQueryParameter = {};
6743
- setBasicAuthToObject(localVarRequestOptions, configuration);
6744
6889
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6745
6890
  setSearchParams(localVarUrlObj, localVarQueryParameter);
6746
6891
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -6768,7 +6913,6 @@ const VirtualControllerApiAxiosParamCreator = function(configuration) {
6768
6913
  };
6769
6914
  const localVarHeaderParameter = {};
6770
6915
  const localVarQueryParameter = {};
6771
- setBasicAuthToObject(localVarRequestOptions, configuration);
6772
6916
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6773
6917
  setSearchParams(localVarUrlObj, localVarQueryParameter);
6774
6918
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -6797,7 +6941,6 @@ const VirtualControllerApiAxiosParamCreator = function(configuration) {
6797
6941
  };
6798
6942
  const localVarHeaderParameter = {};
6799
6943
  const localVarQueryParameter = {};
6800
- setBasicAuthToObject(localVarRequestOptions, configuration);
6801
6944
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6802
6945
  setSearchParams(localVarUrlObj, localVarQueryParameter);
6803
6946
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -6825,7 +6968,6 @@ const VirtualControllerApiAxiosParamCreator = function(configuration) {
6825
6968
  };
6826
6969
  const localVarHeaderParameter = {};
6827
6970
  const localVarQueryParameter = {};
6828
- setBasicAuthToObject(localVarRequestOptions, configuration);
6829
6971
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6830
6972
  setSearchParams(localVarUrlObj, localVarQueryParameter);
6831
6973
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -6853,7 +6995,6 @@ const VirtualControllerApiAxiosParamCreator = function(configuration) {
6853
6995
  };
6854
6996
  const localVarHeaderParameter = {};
6855
6997
  const localVarQueryParameter = {};
6856
- setBasicAuthToObject(localVarRequestOptions, configuration);
6857
6998
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6858
6999
  setSearchParams(localVarUrlObj, localVarQueryParameter);
6859
7000
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -6882,7 +7023,6 @@ const VirtualControllerApiAxiosParamCreator = function(configuration) {
6882
7023
  };
6883
7024
  const localVarHeaderParameter = {};
6884
7025
  const localVarQueryParameter = {};
6885
- setBasicAuthToObject(localVarRequestOptions, configuration);
6886
7026
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6887
7027
  setSearchParams(localVarUrlObj, localVarQueryParameter);
6888
7028
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -6910,7 +7050,6 @@ const VirtualControllerApiAxiosParamCreator = function(configuration) {
6910
7050
  };
6911
7051
  const localVarHeaderParameter = {};
6912
7052
  const localVarQueryParameter = {};
6913
- setBasicAuthToObject(localVarRequestOptions, configuration);
6914
7053
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6915
7054
  setSearchParams(localVarUrlObj, localVarQueryParameter);
6916
7055
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -6939,7 +7078,6 @@ const VirtualControllerApiAxiosParamCreator = function(configuration) {
6939
7078
  };
6940
7079
  const localVarHeaderParameter = {};
6941
7080
  const localVarQueryParameter = {};
6942
- setBasicAuthToObject(localVarRequestOptions, configuration);
6943
7081
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6944
7082
  setSearchParams(localVarUrlObj, localVarQueryParameter);
6945
7083
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -6967,7 +7105,6 @@ const VirtualControllerApiAxiosParamCreator = function(configuration) {
6967
7105
  };
6968
7106
  const localVarHeaderParameter = {};
6969
7107
  const localVarQueryParameter = {};
6970
- setBasicAuthToObject(localVarRequestOptions, configuration);
6971
7108
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
6972
7109
  if (active !== void 0) localVarQueryParameter["active"] = active;
6973
7110
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -6998,7 +7135,6 @@ const VirtualControllerApiAxiosParamCreator = function(configuration) {
6998
7135
  };
6999
7136
  const localVarHeaderParameter = {};
7000
7137
  const localVarQueryParameter = {};
7001
- setBasicAuthToObject(localVarRequestOptions, configuration);
7002
7138
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
7003
7139
  localVarHeaderParameter["Content-Type"] = "application/json";
7004
7140
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -7029,7 +7165,6 @@ const VirtualControllerApiAxiosParamCreator = function(configuration) {
7029
7165
  };
7030
7166
  const localVarHeaderParameter = {};
7031
7167
  const localVarQueryParameter = {};
7032
- setBasicAuthToObject(localVarRequestOptions, configuration);
7033
7168
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
7034
7169
  if (mode !== void 0) localVarQueryParameter["mode"] = mode;
7035
7170
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -7060,7 +7195,6 @@ const VirtualControllerApiAxiosParamCreator = function(configuration) {
7060
7195
  };
7061
7196
  const localVarHeaderParameter = {};
7062
7197
  const localVarQueryParameter = {};
7063
- setBasicAuthToObject(localVarRequestOptions, configuration);
7064
7198
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
7065
7199
  localVarHeaderParameter["Content-Type"] = "application/json";
7066
7200
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -7090,6 +7224,12 @@ const VirtualControllerApiFp = function(configuration) {
7090
7224
  const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.addVirtualControllerCoordinateSystem"]?.[localVarOperationServerIndex]?.url;
7091
7225
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
7092
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
+ },
7093
7233
  async addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options) {
7094
7234
  const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options);
7095
7235
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
@@ -7102,6 +7242,12 @@ const VirtualControllerApiFp = function(configuration) {
7102
7242
  const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.deleteVirtualControllerCoordinateSystem"]?.[localVarOperationServerIndex]?.url;
7103
7243
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
7104
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
+ },
7105
7251
  async deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options) {
7106
7252
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options);
7107
7253
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
@@ -7185,12 +7331,18 @@ const VirtualControllerApiFactory = function(configuration, basePath, axios) {
7185
7331
  addVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options) {
7186
7332
  return localVarFp.addVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options).then((request) => request(axios, basePath));
7187
7333
  },
7334
+ addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options) {
7335
+ return localVarFp.addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options).then((request) => request(axios, basePath));
7336
+ },
7188
7337
  addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options) {
7189
7338
  return localVarFp.addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options).then((request) => request(axios, basePath));
7190
7339
  },
7191
7340
  deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options) {
7192
7341
  return localVarFp.deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options).then((request) => request(axios, basePath));
7193
7342
  },
7343
+ deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options) {
7344
+ return localVarFp.deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options).then((request) => request(axios, basePath));
7345
+ },
7194
7346
  deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options) {
7195
7347
  return localVarFp.deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options).then((request) => request(axios, basePath));
7196
7348
  },
@@ -7247,6 +7399,18 @@ var VirtualControllerApi = class extends BaseAPI {
7247
7399
  return VirtualControllerApiFp(this.configuration).addVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options).then((request) => request(this.axios, this.basePath));
7248
7400
  }
7249
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
+ /**
7250
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.
7251
7415
  * @summary Add TCP
7252
7416
  * @param {string} cell Unique identifier addressing a cell in all API calls.
@@ -7274,6 +7438,18 @@ var VirtualControllerApi = class extends BaseAPI {
7274
7438
  return VirtualControllerApiFp(this.configuration).deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options).then((request) => request(this.axios, this.basePath));
7275
7439
  }
7276
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
+ /**
7277
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.
7278
7454
  * @summary Remove TCP
7279
7455
  * @param {string} cell Unique identifier addressing a cell in all API calls.
@@ -7287,7 +7463,7 @@ var VirtualControllerApi = class extends BaseAPI {
7287
7463
  return VirtualControllerApiFp(this.configuration).deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options).then((request) => request(this.axios, this.basePath));
7288
7464
  }
7289
7465
  /**
7290
- * 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.
7291
7467
  * @summary Get Emergency Stop State
7292
7468
  * @param {string} cell Unique identifier addressing a cell in all API calls.
7293
7469
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -7321,7 +7497,7 @@ var VirtualControllerApi = class extends BaseAPI {
7321
7497
  return VirtualControllerApiFp(this.configuration).getMotionGroups(cell, controller, options).then((request) => request(this.axios, this.basePath));
7322
7498
  }
7323
7499
  /**
7324
- * 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.
7325
7501
  * @summary Get Operation Mode
7326
7502
  * @param {string} cell Unique identifier addressing a cell in all API calls.
7327
7503
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -7367,7 +7543,7 @@ var VirtualControllerApi = class extends BaseAPI {
7367
7543
  return VirtualControllerApiFp(this.configuration).listVirtualControllerTcps(cell, controller, motionGroup, options).then((request) => request(this.axios, this.basePath));
7368
7544
  }
7369
7545
  /**
7370
- * 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.
7371
7547
  * @summary Push or Release Emergency Stop
7372
7548
  * @param {string} cell Unique identifier addressing a cell in all API calls.
7373
7549
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -7392,7 +7568,7 @@ var VirtualControllerApi = class extends BaseAPI {
7392
7568
  return VirtualControllerApiFp(this.configuration).setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options).then((request) => request(this.axios, this.basePath));
7393
7569
  }
7394
7570
  /**
7395
- * 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.
7396
7572
  * @summary Set Operation Mode
7397
7573
  * @param {string} cell Unique identifier addressing a cell in all API calls.
7398
7574
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -7437,7 +7613,6 @@ const VirtualControllerBehaviorApiAxiosParamCreator = function(configuration) {
7437
7613
  };
7438
7614
  const localVarHeaderParameter = {};
7439
7615
  const localVarQueryParameter = {};
7440
- setBasicAuthToObject(localVarRequestOptions, configuration);
7441
7616
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
7442
7617
  localVarHeaderParameter["Content-Type"] = "application/json";
7443
7618
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -7467,7 +7642,6 @@ const VirtualControllerBehaviorApiAxiosParamCreator = function(configuration) {
7467
7642
  };
7468
7643
  const localVarHeaderParameter = {};
7469
7644
  const localVarQueryParameter = {};
7470
- setBasicAuthToObject(localVarRequestOptions, configuration);
7471
7645
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
7472
7646
  setSearchParams(localVarUrlObj, localVarQueryParameter);
7473
7647
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -7495,7 +7669,6 @@ const VirtualControllerBehaviorApiAxiosParamCreator = function(configuration) {
7495
7669
  };
7496
7670
  const localVarHeaderParameter = {};
7497
7671
  const localVarQueryParameter = {};
7498
- setBasicAuthToObject(localVarRequestOptions, configuration);
7499
7672
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
7500
7673
  setSearchParams(localVarUrlObj, localVarQueryParameter);
7501
7674
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -7523,7 +7696,6 @@ const VirtualControllerBehaviorApiAxiosParamCreator = function(configuration) {
7523
7696
  };
7524
7697
  const localVarHeaderParameter = {};
7525
7698
  const localVarQueryParameter = {};
7526
- setBasicAuthToObject(localVarRequestOptions, configuration);
7527
7699
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
7528
7700
  if (behavior !== void 0) localVarQueryParameter["behavior"] = behavior;
7529
7701
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -7597,7 +7769,7 @@ const VirtualControllerBehaviorApiFactory = function(configuration, basePath, ax
7597
7769
  */
7598
7770
  var VirtualControllerBehaviorApi = class extends BaseAPI {
7599
7771
  /**
7600
- * <!-- 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.
7601
7773
  * @summary Stream Joint Configuration
7602
7774
  * @param {string} cell Unique identifier addressing a cell in all API calls.
7603
7775
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -7620,7 +7792,7 @@ var VirtualControllerBehaviorApi = class extends BaseAPI {
7620
7792
  return VirtualControllerBehaviorApiFp(this.configuration).getCycleTime(cell, controller, options).then((request) => request(this.axios, this.basePath));
7621
7793
  }
7622
7794
  /**
7623
- * 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.
7624
7796
  * @summary Get Behavior
7625
7797
  * @param {string} cell Unique identifier addressing a cell in all API calls.
7626
7798
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -7663,7 +7835,6 @@ const VirtualControllerInputsOutputsApiAxiosParamCreator = function(configuratio
7663
7835
  };
7664
7836
  const localVarHeaderParameter = {};
7665
7837
  const localVarQueryParameter = {};
7666
- setBasicAuthToObject(localVarRequestOptions, configuration);
7667
7838
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
7668
7839
  if (ios) localVarQueryParameter["ios"] = ios;
7669
7840
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -7692,7 +7863,6 @@ const VirtualControllerInputsOutputsApiAxiosParamCreator = function(configuratio
7692
7863
  };
7693
7864
  const localVarHeaderParameter = {};
7694
7865
  const localVarQueryParameter = {};
7695
- setBasicAuthToObject(localVarRequestOptions, configuration);
7696
7866
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
7697
7867
  if (ios) localVarQueryParameter["ios"] = ios;
7698
7868
  if (direction !== void 0) localVarQueryParameter["direction"] = direction;
@@ -7725,7 +7895,6 @@ const VirtualControllerInputsOutputsApiAxiosParamCreator = function(configuratio
7725
7895
  };
7726
7896
  const localVarHeaderParameter = {};
7727
7897
  const localVarQueryParameter = {};
7728
- setBasicAuthToObject(localVarRequestOptions, configuration);
7729
7898
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
7730
7899
  localVarHeaderParameter["Content-Type"] = "application/json";
7731
7900
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -7791,7 +7960,7 @@ const VirtualControllerInputsOutputsApiFactory = function(configuration, basePat
7791
7960
  */
7792
7961
  var VirtualControllerInputsOutputsApi = class extends BaseAPI {
7793
7962
  /**
7794
- * 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).
7795
7964
  * @summary Get Input/Output Values
7796
7965
  * @param {string} cell Unique identifier addressing a cell in all API calls.
7797
7966
  * @param {string} controller Unique identifier to address a controller in the cell.
@@ -7950,4 +8119,4 @@ var Configuration = class {
7950
8119
  };
7951
8120
 
7952
8121
  //#endregion
7953
- 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 };