@wandelbots/nova-js 4.1.0 → 4.2.0-nova-api-dev.26-6-0-dev-133

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.mjs CHANGED
@@ -2,7 +2,7 @@ import { i as guardedPageReload, n as loginWithAuth0, o as availableStorage, s a
2
2
  import { a as parseNovaInstanceUrl } from "../converters-DnG1fX23.mjs";
3
3
  import globalAxios, { AxiosError, isAxiosError } from "axios";
4
4
  import * as pathToRegexp from "path-to-regexp";
5
- //#region node_modules/.pnpm/@wandelbots+nova-api@26.5.1/node_modules/@wandelbots/nova-api/dist/defineProperty-6Ts4XR6h.js
5
+ //#region node_modules/.pnpm/@wandelbots+nova-api@26.6.0-dev.133/node_modules/@wandelbots/nova-api/dist/v2/index.js
6
6
  function _typeof(o) {
7
7
  "@babel/helpers - typeof";
8
8
  return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(o) {
@@ -33,8 +33,6 @@ function _defineProperty(e, r, t) {
33
33
  writable: !0
34
34
  }) : e[r] = t, e;
35
35
  }
36
- //#endregion
37
- //#region node_modules/.pnpm/@wandelbots+nova-api@26.5.1/node_modules/@wandelbots/nova-api/dist/v2/index.js
38
36
  const BASE_PATH = "/api/v2".replace(/\/+$/, "");
39
37
  const COLLECTION_FORMATS = {
40
38
  csv: ",",
@@ -101,6 +99,8 @@ const createRequestFunction = function(axiosArgs, globalAxios, BASE_PATH, config
101
99
  };
102
100
  };
103
101
  const AbbControllerKindEnum = { AbbController: "AbbController" };
102
+ const ActionChunkRequestMessageTypeEnum = { ActionChunkRequest: "ActionChunkRequest" };
103
+ const ActionChunkResponseKindEnum = { ActionChunkReceived: "ACTION_CHUNK_RECEIVED" };
104
104
  /**
105
105
  * ## 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).
106
106
  */
@@ -119,6 +119,8 @@ const BlendingSpace = {
119
119
  Cartesian: "CARTESIAN"
120
120
  };
121
121
  const BooleanValueValueTypeEnum = { Boolean: "boolean" };
122
+ const BostondynamicsControllerKindEnum = { BostondynamicsController: "BostondynamicsController" };
123
+ const BostondynamicsControllerRobotTypeEnum = { Spot: "spot" };
122
124
  const BoxShapeTypeEnum = { Box: "box" };
123
125
  const BoxBoxTypeEnum = {
124
126
  Hollow: "HOLLOW",
@@ -231,6 +233,8 @@ const IOValueType = {
231
233
  IoValueAnalogInteger: "IO_VALUE_ANALOG_INTEGER"
232
234
  };
233
235
  const InconsistentTrajectorySizeErrorKindEnum = { InconsistentTrajectorySizeError: "InconsistentTrajectorySizeError" };
236
+ const InitializeActionChunksRequestMessageTypeEnum = { InitializeActionChunksRequest: "InitializeActionChunksRequest" };
237
+ const InitializeActionChunksResponseKindEnum = { InitializeReceived: "INITIALIZE_RECEIVED" };
234
238
  const InitializeJoggingRequestMessageTypeEnum = { InitializeJoggingRequest: "InitializeJoggingRequest" };
235
239
  const InitializeJoggingResponseKindEnum = { InitializeReceived: "INITIALIZE_RECEIVED" };
236
240
  const InitializeMovementRequestMessageTypeEnum = { InitializeMovementRequest: "InitializeMovementRequest" };
@@ -251,8 +255,7 @@ const JointTypeEnum = {
251
255
  };
252
256
  const JointVelocityRequestMessageTypeEnum = { JointVelocityRequest: "JointVelocityRequest" };
253
257
  const JointVelocityResponseKindEnum = { JointVelocityReceived: "JOINT_VELOCITY_RECEIVED" };
254
- const JointWaypointsRequestMessageTypeEnum = { JointWaypointsRequest: "JointWaypointsRequest" };
255
- const JointWaypointsResponseKindEnum = { JointWaypointsReceived: "JOINT_WAYPOINTS_RECEIVED" };
258
+ const JointWaypointKindEnum = { Joints: "JOINTS" };
256
259
  const KinematicBranchElbow = {
257
260
  Up: "UP",
258
261
  Down: "DOWN"
@@ -276,9 +279,11 @@ const LicenseStatusEnum = {
276
279
  const LinkChainValueSourceEnum = { Value: "value" };
277
280
  const Manufacturer = {
278
281
  Abb: "abb",
282
+ Bostondynamics: "bostondynamics",
279
283
  Fanuc: "fanuc",
280
284
  Kuka: "kuka",
281
285
  Staubli: "staubli",
286
+ Unitree: "unitree",
282
287
  Universalrobots: "universalrobots",
283
288
  Yaskawa: "yaskawa"
284
289
  };
@@ -314,12 +319,19 @@ const ModbusIOTypeEnum = {
314
319
  };
315
320
  const MovementErrorResponseKindEnum = { MotionError: "MOTION_ERROR" };
316
321
  const NanValueErrorKindEnum = { NanValueError: "NanValueError" };
317
- const NetworkStateConnectionTypeEnum = {
318
- Ethernet: "ethernet",
319
- Wifi: "wifi",
320
- Cellular: "cellular",
321
- Vpn: "vpn",
322
- Unknown: "unknown"
322
+ /**
323
+ * Network attachment method used to expose the interface to workloads.
324
+ */
325
+ const NetworkBackend = {
326
+ Macvlan: "macvlan",
327
+ Sriov: "sriov"
328
+ };
329
+ /**
330
+ * Link state of the physical interface.
331
+ */
332
+ const NetworkLinkState = {
333
+ Up: "up",
334
+ Down: "down"
323
335
  };
324
336
  /**
325
337
  * The operating state.
@@ -381,6 +393,8 @@ const PathDirectionConstrainedCartesianPTPPathDefinitionNameEnum = { DirectionCo
381
393
  const PathDirectionConstrainedJointPTPPathDefinitionNameEnum = { DirectionConstrainedJointPtp: "DirectionConstrainedJointPTP" };
382
394
  const PathJointPTPPathDefinitionNameEnum = { PathJointPtp: "PathJointPTP" };
383
395
  const PathLinePathDefinitionNameEnum = { PathLine: "PathLine" };
396
+ const PauseActionChunksRequestMessageTypeEnum = { PauseActionChunksRequest: "PauseActionChunksRequest" };
397
+ const PauseActionChunksResponseKindEnum = { PauseReceived: "PAUSE_RECEIVED" };
384
398
  const PauseJoggingRequestMessageTypeEnum = { PauseJoggingRequest: "PauseJoggingRequest" };
385
399
  const PauseJoggingResponseKindEnum = { PauseReceived: "PAUSE_RECEIVED" };
386
400
  const PauseMovementRequestMessageTypeEnum = { PauseMovementRequest: "PauseMovementRequest" };
@@ -388,8 +402,7 @@ const PauseMovementResponseKindEnum = { PauseReceived: "PAUSE_RECEIVED" };
388
402
  const PlaneShapeTypeEnum = { Plane: "plane" };
389
403
  const PlaybackSpeedRequestMessageTypeEnum = { PlaybackSpeedRequest: "PlaybackSpeedRequest" };
390
404
  const PlaybackSpeedResponseKindEnum = { PlaybackSpeedReceived: "PLAYBACK_SPEED_RECEIVED" };
391
- const PoseWaypointsRequestMessageTypeEnum = { PoseWaypointsRequest: "PoseWaypointsRequest" };
392
- const PoseWaypointsResponseKindEnum = { PoseWaypointsReceived: "POSE_WAYPOINTS_RECEIVED" };
405
+ const PoseWaypointKindEnum = { Pose: "POSE" };
393
406
  /**
394
407
  * The direction of the input/output variable, indicating whether it is an input or output for the PROFINET device, e.g., NOVA\'s PROFINET service.
395
408
  */
@@ -500,6 +513,14 @@ const SettableRobotSystemMode = {
500
513
  RobotSystemModeControl: "ROBOT_SYSTEM_MODE_CONTROL",
501
514
  ModeControl: "MODE_CONTROL"
502
515
  };
516
+ /**
517
+ * <!-- theme: danger --> > > **Experimental** Strategy used to deal with wrist singularities along a cartesian path. > > - `NONE`: No special handling; a singularity ends the path. > - `PALLETIZING_WRIST`: When performing a palletizing motion, attempt to bridge a wrist singularity by flipping the wrist branch. > A palletizing motion is a motion where the flange axis of rotation is alway parallel to the base axis of rotation. > This flag is supported for all robots except FANUC CRX and ABB GoFa. > - `ADAPTIVE_SAMPLING`: Alternative cartesian solver that re-samples the path in proximity to a singularity.
518
+ */
519
+ const SingularityHandling = {
520
+ None: "NONE",
521
+ PalletizingWrist: "PALLETIZING_WRIST",
522
+ AdaptiveSampling: "ADAPTIVE_SAMPLING"
523
+ };
503
524
  const SingularityTypeEnum = {
504
525
  Wrist: "WRIST",
505
526
  Elbow: "ELBOW",
@@ -539,6 +560,9 @@ const Snap7IOTypeEnum = {
539
560
  const SphereShapeTypeEnum = { Sphere: "sphere" };
540
561
  const StartMovementRequestMessageTypeEnum = { StartMovementRequest: "StartMovementRequest" };
541
562
  const StartMovementResponseKindEnum = { StartReceived: "START_RECEIVED" };
563
+ const StaubliControllerKindEnum = { StaubliController: "StaubliController" };
564
+ const StopActionChunksRequestMessageTypeEnum = { StopActionChunksRequest: "StopActionChunksRequest" };
565
+ const StopActionChunksResponseKindEnum = { StopReceived: "STOP_RECEIVED" };
542
566
  const StorageKeySourceEnum = { Key: "key" };
543
567
  const TcpRequiredErrorKindEnum = { TcpRequiredError: "TcpRequiredError" };
544
568
  const TcpVelocityRequestMessageTypeEnum = { TcpVelocityRequest: "TcpVelocityRequest" };
@@ -568,11 +592,93 @@ const UnitType = {
568
592
  UnitNewtonMeter: "UNIT_NEWTON_METER",
569
593
  UnitMeter: "UNIT_METER"
570
594
  };
595
+ const UnitreeControllerKindEnum = { UnitreeController: "UnitreeController" };
596
+ const UnitreeControllerRobotTypeEnum = {
597
+ Go2: "go2",
598
+ G1: "g1",
599
+ B2: "b2",
600
+ H1: "h1"
601
+ };
571
602
  const UniversalrobotsControllerKindEnum = { UniversalrobotsController: "UniversalrobotsController" };
603
+ const UnpauseActionChunksRequestMessageTypeEnum = { UnpauseActionChunksRequest: "UnpauseActionChunksRequest" };
604
+ const UnpauseActionChunksResponseKindEnum = { UnpauseReceived: "UNPAUSE_RECEIVED" };
572
605
  const VirtualControllerKindEnum = { VirtualController: "VirtualController" };
573
606
  const YaskawaControllerKindEnum = { YaskawaController: "YaskawaController" };
574
607
  const ZodValidationErrorErrorCodeEnum = { ValidationError: "validation_error" };
575
608
  /**
609
+ * ActionChunkStreamingApi - axios parameter creator
610
+ */
611
+ const ActionChunkStreamingApiAxiosParamCreator = function(configuration) {
612
+ return { executeActionChunks: async (cell, controller, executeActionChunksRequest, options = {}) => {
613
+ assertParamExists("executeActionChunks", "cell", cell);
614
+ assertParamExists("executeActionChunks", "controller", controller);
615
+ assertParamExists("executeActionChunks", "executeActionChunksRequest", executeActionChunksRequest);
616
+ const localVarPath = `/experimental/cells/{cell}/controllers/{controller}/execution/action-chunk-streaming`.replace(`{cell}`, encodeURIComponent(String(cell))).replace(`{controller}`, encodeURIComponent(String(controller)));
617
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
618
+ let baseOptions;
619
+ if (configuration) baseOptions = configuration.baseOptions;
620
+ const localVarRequestOptions = {
621
+ method: "GET",
622
+ ...baseOptions,
623
+ ...options
624
+ };
625
+ const localVarHeaderParameter = {};
626
+ const localVarQueryParameter = {};
627
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
628
+ localVarHeaderParameter["Content-Type"] = "application/json";
629
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
630
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
631
+ localVarRequestOptions.headers = {
632
+ ...localVarHeaderParameter,
633
+ ...headersFromBaseOptions,
634
+ ...options.headers
635
+ };
636
+ localVarRequestOptions.data = serializeDataIfNeeded(executeActionChunksRequest, localVarRequestOptions, configuration);
637
+ return {
638
+ url: toPathString(localVarUrlObj),
639
+ options: localVarRequestOptions
640
+ };
641
+ } };
642
+ };
643
+ /**
644
+ * ActionChunkStreamingApi - functional programming interface
645
+ */
646
+ const ActionChunkStreamingApiFp = function(configuration) {
647
+ const localVarAxiosParamCreator = ActionChunkStreamingApiAxiosParamCreator(configuration);
648
+ return { async executeActionChunks(cell, controller, executeActionChunksRequest, options) {
649
+ const localVarAxiosArgs = await localVarAxiosParamCreator.executeActionChunks(cell, controller, executeActionChunksRequest, options);
650
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
651
+ const localVarOperationServerBasePath = operationServerMap["ActionChunkStreamingApi.executeActionChunks"]?.[localVarOperationServerIndex]?.url;
652
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
653
+ } };
654
+ };
655
+ /**
656
+ * ActionChunkStreamingApi - factory interface
657
+ */
658
+ const ActionChunkStreamingApiFactory = function(configuration, basePath, axios) {
659
+ const localVarFp = ActionChunkStreamingApiFp(configuration);
660
+ return { executeActionChunks(cell, controller, executeActionChunksRequest, options) {
661
+ return localVarFp.executeActionChunks(cell, controller, executeActionChunksRequest, options).then((request) => request(axios, basePath));
662
+ } };
663
+ };
664
+ /**
665
+ * ActionChunkStreamingApi - object-oriented interface
666
+ */
667
+ var ActionChunkStreamingApi = class extends BaseAPI {
668
+ /**
669
+ * **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ <!-- theme: danger --> > **Experimental** > > This endpoint is experimental and its behavior may change in future releases. > Websocket endpoint Provides action chunk control for a motion group. An action chunk is a queue of timed waypoints that the robot moves through by best effort. This can be used for realtime action chunk streaming, e.g., from a Vision-Language-Action (VLA) model. ### Preconditions The motion group is not moved by any other endpoint. ### Requests #### 1. Send `InitializeActionChunksRequest` to configure the action chunk. - Sets the robot controller mode to control mode. - Claims the motion group. For robotic arms, TCP is required to ensure that limits, including TCP limits, are respected. #### 2. Send `ActionChunk`s to stream waypoints. - The first message starts an internal clock. - Each waypoint carries a timestamp relative to that clock for when it should be reached. - Existing waypoints in the queue that are older than the first new timestamp are removed. - The current session timestamp is reported in `execute.details.jogger_session_timestamp_ms` of the [streamRobotControllerState](#/operations/streamRobotControllerState) endpoint. #### 3. Stop the motion - Send `PauseActionChunksRequest` to stop the motion. ### Responses - Each request is acknowledged with a corresponding response: - `InitializeActionChunksResponse` after `InitializeActionChunksRequest` - `ActionChunkResponse` after `ActionChunkRequest` - `PauseActionChunksResponse` after `PauseActionChunksRequest` 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 moving. ### Tips and Tricks - Ensure that the websocket connection remains open until the action chunk motion is stopped to avoid unexpected stops. ### Robot States - The robot controller state is reported in the [streamRobotControllerState](#/operations/streamRobotControllerState) as JOGGING. - The meaning of the states is: - `RUNNING`: The robot is moving through the waypoints. The clock (`execute.details.jogger_session_timestamp_ms`) is running. - `PAUSED_BY_USER`: The robot is braking or in standstill due to a user request. The clock IS paused. - `PAUSED_NEAR_JOINT_LIMIT`: The robot is braking due to a joint limit. The clock is NOT paused. - `PAUSED_NEAR_COLLISION`: The robot is braking due to a collision. The clock is NOT paused. - `PAUSED_NEAR_SINGULARITY`: The robot is braking due to a singularity. The clock is NOT paused. - `PAUSED_NEAR_WORKSPACE_BOUNDARY`: The robot is braking due to a workspace boundary. The clock is NOT paused.
670
+ * @summary Execute Action Chunks
671
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
672
+ * @param {string} controller Unique identifier to address a controller in the cell.
673
+ * @param {ExecuteActionChunksRequest} executeActionChunksRequest
674
+ * @param {*} [options] Override http request option.
675
+ * @throws {RequiredError}
676
+ */
677
+ executeActionChunks(cell, controller, executeActionChunksRequest, options) {
678
+ return ActionChunkStreamingApiFp(this.configuration).executeActionChunks(cell, controller, executeActionChunksRequest, options).then((request) => request(this.axios, this.basePath));
679
+ }
680
+ };
681
+ /**
576
682
  * ApplicationApi - axios parameter creator
577
683
  */
578
684
  const ApplicationApiAxiosParamCreator = function(configuration) {
@@ -1334,7 +1440,7 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
1334
1440
  options: localVarRequestOptions
1335
1441
  };
1336
1442
  },
1337
- getProfinetIOsFromFile: async (cell, inputOffset, outputOffset, options = {}) => {
1443
+ getProfinetIOsFromFile: async (cell, offsets, inputOffset, outputOffset, options = {}) => {
1338
1444
  assertParamExists("getProfinetIOsFromFile", "cell", cell);
1339
1445
  const localVarPath = `/cells/{cell}/bus-ios/profinet/iofile`.replace(`{cell}`, encodeURIComponent(String(cell)));
1340
1446
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -1348,6 +1454,7 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
1348
1454
  const localVarHeaderParameter = {};
1349
1455
  const localVarQueryParameter = {};
1350
1456
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1457
+ if (offsets) localVarQueryParameter["offsets"] = offsets.join(COLLECTION_FORMATS.csv);
1351
1458
  if (inputOffset !== void 0) localVarQueryParameter["input_offset"] = inputOffset;
1352
1459
  if (outputOffset !== void 0) localVarQueryParameter["output_offset"] = outputOffset;
1353
1460
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -1628,8 +1735,8 @@ const BUSInputsOutputsApiFp = function(configuration) {
1628
1735
  const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.getProfinetGSDML"]?.[localVarOperationServerIndex]?.url;
1629
1736
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1630
1737
  },
1631
- async getProfinetIOsFromFile(cell, inputOffset, outputOffset, options) {
1632
- const localVarAxiosArgs = await localVarAxiosParamCreator.getProfinetIOsFromFile(cell, inputOffset, outputOffset, options);
1738
+ async getProfinetIOsFromFile(cell, offsets, inputOffset, outputOffset, options) {
1739
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getProfinetIOsFromFile(cell, offsets, inputOffset, outputOffset, options);
1633
1740
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
1634
1741
  const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.getProfinetIOsFromFile"]?.[localVarOperationServerIndex]?.url;
1635
1742
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -1726,8 +1833,8 @@ const BUSInputsOutputsApiFactory = function(configuration, basePath, axios) {
1726
1833
  getProfinetGSDML(cell, options) {
1727
1834
  return localVarFp.getProfinetGSDML(cell, options).then((request) => request(axios, basePath));
1728
1835
  },
1729
- getProfinetIOsFromFile(cell, inputOffset, outputOffset, options) {
1730
- return localVarFp.getProfinetIOsFromFile(cell, inputOffset, outputOffset, options).then((request) => request(axios, basePath));
1836
+ getProfinetIOsFromFile(cell, offsets, inputOffset, outputOffset, options) {
1837
+ return localVarFp.getProfinetIOsFromFile(cell, offsets, inputOffset, outputOffset, options).then((request) => request(axios, basePath));
1731
1838
  },
1732
1839
  listBusIODescriptions(cell, options) {
1733
1840
  return localVarFp.listBusIODescriptions(cell, options).then((request) => request(axios, basePath));
@@ -1927,16 +2034,17 @@ var BUSInputsOutputsApi = class extends BaseAPI {
1927
2034
  return BUSInputsOutputsApiFp(this.configuration).getProfinetGSDML(cell, options).then((request) => request(this.axios, this.basePath));
1928
2035
  }
1929
2036
  /**
1930
- * **Required permissions:** `can_operate_bus_ios` - Read and write BUS IO values ___ Get input/output variable configuration of the PROFINET device, e.g., NOVA\'s PROFINET service as file. You can specify byte offsets for the input and output variable addresses to get an XML tagmap that is ready to paste to the third party software, e.g., TIA portal.
2037
+ * **Required permissions:** `can_operate_bus_ios` - Read and write BUS IO values ___ Get input/output variable configuration of the PROFINET device, e.g., NOVA\'s PROFINET service as file. You can specify per-slot byte offsets for input and output variable addresses to get an XML tag map that is ready for pasting to third party software, e.g., TIA portal. For backward compatibility, the legacy `input_offset` and `output_offset` query parameters remain available, but deprecated.
1931
2038
  * @summary PROFINET Inputs/Outputs to File
1932
2039
  * @param {string} cell Unique identifier addressing a cell in all API calls.
2040
+ * @param {Array<ProfinetSlotOffset>} [offsets] Per-slot offsets used to convert device-local byte addresses to controller byte addresses for export. If this parameter is provided, it is preferred over the deprecated &#x60;input_offset&#x60; and &#x60;output_offset&#x60; query parameters.
1933
2041
  * @param {number} [inputOffset]
1934
2042
  * @param {number} [outputOffset]
1935
2043
  * @param {*} [options] Override http request option.
1936
2044
  * @throws {RequiredError}
1937
2045
  */
1938
- getProfinetIOsFromFile(cell, inputOffset, outputOffset, options) {
1939
- return BUSInputsOutputsApiFp(this.configuration).getProfinetIOsFromFile(cell, inputOffset, outputOffset, options).then((request) => request(this.axios, this.basePath));
2046
+ getProfinetIOsFromFile(cell, offsets, inputOffset, outputOffset, options) {
2047
+ return BUSInputsOutputsApiFp(this.configuration).getProfinetIOsFromFile(cell, offsets, inputOffset, outputOffset, options).then((request) => request(this.axios, this.basePath));
1940
2048
  }
1941
2049
  /**
1942
2050
  * **Required permissions:** `can_operate_bus_ios` - Read and write BUS IO values ___ List all input/output descriptions for configured BUS services. The input/output descriptions contain information like name, type and unit. The input/output direction is given in perspective of the BUS service.
@@ -3450,102 +3558,57 @@ var ControllerInputsOutputsApi = class extends BaseAPI {
3450
3558
  * JoggingApi - axios parameter creator
3451
3559
  */
3452
3560
  const JoggingApiAxiosParamCreator = function(configuration) {
3453
- return {
3454
- executeJogging: async (cell, controller, executeJoggingRequest, options = {}) => {
3455
- assertParamExists("executeJogging", "cell", cell);
3456
- assertParamExists("executeJogging", "controller", controller);
3457
- assertParamExists("executeJogging", "executeJoggingRequest", executeJoggingRequest);
3458
- const localVarPath = `/cells/{cell}/controllers/{controller}/execution/jogging`.replace(`{cell}`, encodeURIComponent(String(cell))).replace(`{controller}`, encodeURIComponent(String(controller)));
3459
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3460
- let baseOptions;
3461
- if (configuration) baseOptions = configuration.baseOptions;
3462
- const localVarRequestOptions = {
3463
- method: "GET",
3464
- ...baseOptions,
3465
- ...options
3466
- };
3467
- const localVarHeaderParameter = {};
3468
- const localVarQueryParameter = {};
3469
- await setBearerAuthToObject(localVarHeaderParameter, configuration);
3470
- localVarHeaderParameter["Content-Type"] = "application/json";
3471
- setSearchParams(localVarUrlObj, localVarQueryParameter);
3472
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
3473
- localVarRequestOptions.headers = {
3474
- ...localVarHeaderParameter,
3475
- ...headersFromBaseOptions,
3476
- ...options.headers
3477
- };
3478
- localVarRequestOptions.data = serializeDataIfNeeded(executeJoggingRequest, localVarRequestOptions, configuration);
3479
- return {
3480
- url: toPathString(localVarUrlObj),
3481
- options: localVarRequestOptions
3482
- };
3483
- },
3484
- executeWaypointJogging: async (cell, controller, executeWaypointJoggingRequest, options = {}) => {
3485
- assertParamExists("executeWaypointJogging", "cell", cell);
3486
- assertParamExists("executeWaypointJogging", "controller", controller);
3487
- assertParamExists("executeWaypointJogging", "executeWaypointJoggingRequest", executeWaypointJoggingRequest);
3488
- const localVarPath = `/experimental/cells/{cell}/controllers/{controller}/execution/jogging`.replace(`{cell}`, encodeURIComponent(String(cell))).replace(`{controller}`, encodeURIComponent(String(controller)));
3489
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3490
- let baseOptions;
3491
- if (configuration) baseOptions = configuration.baseOptions;
3492
- const localVarRequestOptions = {
3493
- method: "GET",
3494
- ...baseOptions,
3495
- ...options
3496
- };
3497
- const localVarHeaderParameter = {};
3498
- const localVarQueryParameter = {};
3499
- await setBearerAuthToObject(localVarHeaderParameter, configuration);
3500
- localVarHeaderParameter["Content-Type"] = "application/json";
3501
- setSearchParams(localVarUrlObj, localVarQueryParameter);
3502
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
3503
- localVarRequestOptions.headers = {
3504
- ...localVarHeaderParameter,
3505
- ...headersFromBaseOptions,
3506
- ...options.headers
3507
- };
3508
- localVarRequestOptions.data = serializeDataIfNeeded(executeWaypointJoggingRequest, localVarRequestOptions, configuration);
3509
- return {
3510
- url: toPathString(localVarUrlObj),
3511
- options: localVarRequestOptions
3512
- };
3513
- }
3514
- };
3561
+ return { executeJogging: async (cell, controller, executeJoggingRequest, options = {}) => {
3562
+ assertParamExists("executeJogging", "cell", cell);
3563
+ assertParamExists("executeJogging", "controller", controller);
3564
+ assertParamExists("executeJogging", "executeJoggingRequest", executeJoggingRequest);
3565
+ const localVarPath = `/cells/{cell}/controllers/{controller}/execution/jogging`.replace(`{cell}`, encodeURIComponent(String(cell))).replace(`{controller}`, encodeURIComponent(String(controller)));
3566
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3567
+ let baseOptions;
3568
+ if (configuration) baseOptions = configuration.baseOptions;
3569
+ const localVarRequestOptions = {
3570
+ method: "GET",
3571
+ ...baseOptions,
3572
+ ...options
3573
+ };
3574
+ const localVarHeaderParameter = {};
3575
+ const localVarQueryParameter = {};
3576
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
3577
+ localVarHeaderParameter["Content-Type"] = "application/json";
3578
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
3579
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
3580
+ localVarRequestOptions.headers = {
3581
+ ...localVarHeaderParameter,
3582
+ ...headersFromBaseOptions,
3583
+ ...options.headers
3584
+ };
3585
+ localVarRequestOptions.data = serializeDataIfNeeded(executeJoggingRequest, localVarRequestOptions, configuration);
3586
+ return {
3587
+ url: toPathString(localVarUrlObj),
3588
+ options: localVarRequestOptions
3589
+ };
3590
+ } };
3515
3591
  };
3516
3592
  /**
3517
3593
  * JoggingApi - functional programming interface
3518
3594
  */
3519
3595
  const JoggingApiFp = function(configuration) {
3520
3596
  const localVarAxiosParamCreator = JoggingApiAxiosParamCreator(configuration);
3521
- return {
3522
- async executeJogging(cell, controller, executeJoggingRequest, options) {
3523
- const localVarAxiosArgs = await localVarAxiosParamCreator.executeJogging(cell, controller, executeJoggingRequest, options);
3524
- const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
3525
- const localVarOperationServerBasePath = operationServerMap["JoggingApi.executeJogging"]?.[localVarOperationServerIndex]?.url;
3526
- return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
3527
- },
3528
- async executeWaypointJogging(cell, controller, executeWaypointJoggingRequest, options) {
3529
- const localVarAxiosArgs = await localVarAxiosParamCreator.executeWaypointJogging(cell, controller, executeWaypointJoggingRequest, options);
3530
- const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
3531
- const localVarOperationServerBasePath = operationServerMap["JoggingApi.executeWaypointJogging"]?.[localVarOperationServerIndex]?.url;
3532
- return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
3533
- }
3534
- };
3597
+ return { async executeJogging(cell, controller, executeJoggingRequest, options) {
3598
+ const localVarAxiosArgs = await localVarAxiosParamCreator.executeJogging(cell, controller, executeJoggingRequest, options);
3599
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
3600
+ const localVarOperationServerBasePath = operationServerMap["JoggingApi.executeJogging"]?.[localVarOperationServerIndex]?.url;
3601
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
3602
+ } };
3535
3603
  };
3536
3604
  /**
3537
3605
  * JoggingApi - factory interface
3538
3606
  */
3539
3607
  const JoggingApiFactory = function(configuration, basePath, axios) {
3540
3608
  const localVarFp = JoggingApiFp(configuration);
3541
- return {
3542
- executeJogging(cell, controller, executeJoggingRequest, options) {
3543
- return localVarFp.executeJogging(cell, controller, executeJoggingRequest, options).then((request) => request(axios, basePath));
3544
- },
3545
- executeWaypointJogging(cell, controller, executeWaypointJoggingRequest, options) {
3546
- return localVarFp.executeWaypointJogging(cell, controller, executeWaypointJoggingRequest, options).then((request) => request(axios, basePath));
3547
- }
3548
- };
3609
+ return { executeJogging(cell, controller, executeJoggingRequest, options) {
3610
+ return localVarFp.executeJogging(cell, controller, executeJoggingRequest, options).then((request) => request(axios, basePath));
3611
+ } };
3549
3612
  };
3550
3613
  /**
3551
3614
  * JoggingApi - object-oriented interface
@@ -3563,18 +3626,6 @@ var JoggingApi = class extends BaseAPI {
3563
3626
  executeJogging(cell, controller, executeJoggingRequest, options) {
3564
3627
  return JoggingApiFp(this.configuration).executeJogging(cell, controller, executeJoggingRequest, options).then((request) => request(this.axios, this.basePath));
3565
3628
  }
3566
- /**
3567
- * **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ <!-- theme: danger --> > **Experimental** > > This endpoint is experimental and its behavior may change in future releases. > Websocket endpoint Provides waypoint-based jogging control for a motion group. Instead of commanding target velocities (see [executeJogging](#/operations/executeJogging)), waypoint jogging streams a queue of timed waypoints that the robot moves through by best effort. This can be used for realtime action chunk streaming, e.g., from a Vision-Language-Action (VLA) model. ### 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 `JointWaypointsRequest` or `PoseWaypointsRequest` to stream waypoints. - The first waypoints message starts an internal clock. - Each waypoint carries a timestamp relative to that clock for when it should be reached. - Existing waypoints in the queue that are older than the first new timestamp are removed. - The current session timestamp is reported in `execute.details.jogger_session_timestamp_ms` of the [streamRobotControllerState](#/operations/streamRobotControllerState) endpoint. #### 3. Stop the jogging motion - Send `PauseJoggingRequest` to stop the motion. ### Responses - Each request is acknowledged with a corresponding response: - `InitializeJoggingResponse` after `InitializeJoggingRequest` - `JointWaypointsResponse` after `JointWaypointsRequest` - `PoseWaypointsResponse` after `PoseWaypointsRequest` - `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.
3568
- * @summary Execute Waypoint Jogging
3569
- * @param {string} cell Unique identifier addressing a cell in all API calls.
3570
- * @param {string} controller Unique identifier to address a controller in the cell.
3571
- * @param {ExecuteWaypointJoggingRequest} executeWaypointJoggingRequest
3572
- * @param {*} [options] Override http request option.
3573
- * @throws {RequiredError}
3574
- */
3575
- executeWaypointJogging(cell, controller, executeWaypointJoggingRequest, options) {
3576
- return JoggingApiFp(this.configuration).executeWaypointJogging(cell, controller, executeWaypointJoggingRequest, options).then((request) => request(this.axios, this.basePath));
3577
- }
3578
3629
  };
3579
3630
  /**
3580
3631
  * KinematicsApi - axios parameter creator
@@ -3668,6 +3719,35 @@ const KinematicsApiAxiosParamCreator = function(configuration) {
3668
3719
  options: localVarRequestOptions
3669
3720
  };
3670
3721
  },
3722
+ getKinematicConfiguration: async (cell, getKinematicConfigurationRequest, options = {}) => {
3723
+ assertParamExists("getKinematicConfiguration", "cell", cell);
3724
+ assertParamExists("getKinematicConfiguration", "getKinematicConfigurationRequest", getKinematicConfigurationRequest);
3725
+ const localVarPath = `/experimental/cells/{cell}/kinematic/get-kinematic-configuration`.replace(`{cell}`, encodeURIComponent(String(cell)));
3726
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3727
+ let baseOptions;
3728
+ if (configuration) baseOptions = configuration.baseOptions;
3729
+ const localVarRequestOptions = {
3730
+ method: "POST",
3731
+ ...baseOptions,
3732
+ ...options
3733
+ };
3734
+ const localVarHeaderParameter = {};
3735
+ const localVarQueryParameter = {};
3736
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
3737
+ localVarHeaderParameter["Content-Type"] = "application/json";
3738
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
3739
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
3740
+ localVarRequestOptions.headers = {
3741
+ ...localVarHeaderParameter,
3742
+ ...headersFromBaseOptions,
3743
+ ...options.headers
3744
+ };
3745
+ localVarRequestOptions.data = serializeDataIfNeeded(getKinematicConfigurationRequest, localVarRequestOptions, configuration);
3746
+ return {
3747
+ url: toPathString(localVarUrlObj),
3748
+ options: localVarRequestOptions
3749
+ };
3750
+ },
3671
3751
  inverseKinematics: async (cell, inverseKinematicsRequest, options = {}) => {
3672
3752
  assertParamExists("inverseKinematics", "cell", cell);
3673
3753
  assertParamExists("inverseKinematics", "inverseKinematicsRequest", inverseKinematicsRequest);
@@ -3752,6 +3832,12 @@ const KinematicsApiFp = function(configuration) {
3752
3832
  const localVarOperationServerBasePath = operationServerMap["KinematicsApi.forwardKinematics"]?.[localVarOperationServerIndex]?.url;
3753
3833
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
3754
3834
  },
3835
+ async getKinematicConfiguration(cell, getKinematicConfigurationRequest, options) {
3836
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getKinematicConfiguration(cell, getKinematicConfigurationRequest, options);
3837
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
3838
+ const localVarOperationServerBasePath = operationServerMap["KinematicsApi.getKinematicConfiguration"]?.[localVarOperationServerIndex]?.url;
3839
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
3840
+ },
3755
3841
  async inverseKinematics(cell, inverseKinematicsRequest, options) {
3756
3842
  const localVarAxiosArgs = await localVarAxiosParamCreator.inverseKinematics(cell, inverseKinematicsRequest, options);
3757
3843
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
@@ -3781,6 +3867,9 @@ const KinematicsApiFactory = function(configuration, basePath, axios) {
3781
3867
  forwardKinematics(cell, forwardKinematicsRequest, options) {
3782
3868
  return localVarFp.forwardKinematics(cell, forwardKinematicsRequest, options).then((request) => request(axios, basePath));
3783
3869
  },
3870
+ getKinematicConfiguration(cell, getKinematicConfigurationRequest, options) {
3871
+ return localVarFp.getKinematicConfiguration(cell, getKinematicConfigurationRequest, options).then((request) => request(axios, basePath));
3872
+ },
3784
3873
  inverseKinematics(cell, inverseKinematicsRequest, options) {
3785
3874
  return localVarFp.inverseKinematics(cell, inverseKinematicsRequest, options).then((request) => request(axios, basePath));
3786
3875
  },
@@ -3827,6 +3916,17 @@ var KinematicsApi = class extends BaseAPI {
3827
3916
  return KinematicsApiFp(this.configuration).forwardKinematics(cell, forwardKinematicsRequest, options).then((request) => request(this.axios, this.basePath));
3828
3917
  }
3829
3918
  /**
3919
+ * **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the kinematic configuration for each given joint position including branch and axis ranges. Supported for 6-DOF robots with spherical or offset wrist that implement kinematic branch calculation. Returns 422 with `ErrorUnsupportedOperation` for motion groups that do not support kinematic branch calculation.
3920
+ * @summary Get kinematic configuration
3921
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
3922
+ * @param {GetKinematicConfigurationRequest} getKinematicConfigurationRequest
3923
+ * @param {*} [options] Override http request option.
3924
+ * @throws {RequiredError}
3925
+ */
3926
+ getKinematicConfiguration(cell, getKinematicConfigurationRequest, options) {
3927
+ return KinematicsApiFp(this.configuration).getKinematicConfiguration(cell, getKinematicConfigurationRequest, options).then((request) => request(this.axios, this.basePath));
3928
+ }
3929
+ /**
3830
3930
  * **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the reachable joint positions for a list of given poses.
3831
3931
  * @summary Inverse kinematics
3832
3932
  * @param {string} cell Unique identifier addressing a cell in all API calls.
@@ -4238,7 +4338,7 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
4238
4338
  copyMotionGroupModel: async (motionGroupModel, copyMotionGroupModelRequest, options = {}) => {
4239
4339
  assertParamExists("copyMotionGroupModel", "motionGroupModel", motionGroupModel);
4240
4340
  assertParamExists("copyMotionGroupModel", "copyMotionGroupModelRequest", copyMotionGroupModelRequest);
4241
- const localVarPath = `/experimental/motion-group-models/{motion-group-model}`.replace(`{motion-group-model}`, encodeURIComponent(String(motionGroupModel)));
4341
+ const localVarPath = `/experimental/motion-group-models/{motion-group-model}/archive`.replace(`{motion-group-model}`, encodeURIComponent(String(motionGroupModel)));
4242
4342
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4243
4343
  let baseOptions;
4244
4344
  if (configuration) baseOptions = configuration.baseOptions;
@@ -4266,7 +4366,7 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
4266
4366
  },
4267
4367
  deleteExperimentalMotionGroupModel: async (motionGroupModel, options = {}) => {
4268
4368
  assertParamExists("deleteExperimentalMotionGroupModel", "motionGroupModel", motionGroupModel);
4269
- const localVarPath = `/experimental/motion-group-models/{motion-group-model}`.replace(`{motion-group-model}`, encodeURIComponent(String(motionGroupModel)));
4369
+ const localVarPath = `/experimental/motion-group-models/{motion-group-model}/archive`.replace(`{motion-group-model}`, encodeURIComponent(String(motionGroupModel)));
4270
4370
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4271
4371
  let baseOptions;
4272
4372
  if (configuration) baseOptions = configuration.baseOptions;
@@ -4292,7 +4392,33 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
4292
4392
  },
4293
4393
  exportMotionGroupModel: async (motionGroupModel, options = {}) => {
4294
4394
  assertParamExists("exportMotionGroupModel", "motionGroupModel", motionGroupModel);
4295
- const localVarPath = `/experimental/motion-group-models/{motion-group-model}`.replace(`{motion-group-model}`, encodeURIComponent(String(motionGroupModel)));
4395
+ const localVarPath = `/experimental/motion-group-models/{motion-group-model}/archive`.replace(`{motion-group-model}`, encodeURIComponent(String(motionGroupModel)));
4396
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4397
+ let baseOptions;
4398
+ if (configuration) baseOptions = configuration.baseOptions;
4399
+ const localVarRequestOptions = {
4400
+ method: "GET",
4401
+ ...baseOptions,
4402
+ ...options
4403
+ };
4404
+ const localVarHeaderParameter = {};
4405
+ const localVarQueryParameter = {};
4406
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
4407
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
4408
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
4409
+ localVarRequestOptions.headers = {
4410
+ ...localVarHeaderParameter,
4411
+ ...headersFromBaseOptions,
4412
+ ...options.headers
4413
+ };
4414
+ return {
4415
+ url: toPathString(localVarUrlObj),
4416
+ options: localVarRequestOptions
4417
+ };
4418
+ },
4419
+ getConfigurationForMotionGroup: async (motionGroupModel, options = {}) => {
4420
+ assertParamExists("getConfigurationForMotionGroup", "motionGroupModel", motionGroupModel);
4421
+ const localVarPath = `/motion-group-models/{motion-group-model}/configuration`.replace(`{motion-group-model}`, encodeURIComponent(String(motionGroupModel)));
4296
4422
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4297
4423
  let baseOptions;
4298
4424
  if (configuration) baseOptions = configuration.baseOptions;
@@ -4496,6 +4622,30 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
4496
4622
  options: localVarRequestOptions
4497
4623
  };
4498
4624
  },
4625
+ getMotionGroupModelsCatalog: async (options = {}) => {
4626
+ const localVarUrlObj = new URL(`/experimental/motion-group-models/catalog`, DUMMY_BASE_URL);
4627
+ let baseOptions;
4628
+ if (configuration) baseOptions = configuration.baseOptions;
4629
+ const localVarRequestOptions = {
4630
+ method: "GET",
4631
+ ...baseOptions,
4632
+ ...options
4633
+ };
4634
+ const localVarHeaderParameter = {};
4635
+ const localVarQueryParameter = {};
4636
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
4637
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
4638
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
4639
+ localVarRequestOptions.headers = {
4640
+ ...localVarHeaderParameter,
4641
+ ...headersFromBaseOptions,
4642
+ ...options.headers
4643
+ };
4644
+ return {
4645
+ url: toPathString(localVarUrlObj),
4646
+ options: localVarRequestOptions
4647
+ };
4648
+ },
4499
4649
  getMotionGroupUsdModel: async (motionGroupModel, options = {}) => {
4500
4650
  assertParamExists("getMotionGroupUsdModel", "motionGroupModel", motionGroupModel);
4501
4651
  const localVarPath = `/motion-group-models/{motion-group-model}/usd`.replace(`{motion-group-model}`, encodeURIComponent(String(motionGroupModel)));
@@ -4575,6 +4725,12 @@ const MotionGroupModelsApiFp = function(configuration) {
4575
4725
  const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.exportMotionGroupModel"]?.[localVarOperationServerIndex]?.url;
4576
4726
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
4577
4727
  },
4728
+ async getConfigurationForMotionGroup(motionGroupModel, options) {
4729
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getConfigurationForMotionGroup(motionGroupModel, options);
4730
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
4731
+ const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getConfigurationForMotionGroup"]?.[localVarOperationServerIndex]?.url;
4732
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
4733
+ },
4578
4734
  async getMotionGroupCollisionModel(motionGroupModel, options) {
4579
4735
  const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupCollisionModel(motionGroupModel, options);
4580
4736
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
@@ -4617,6 +4773,12 @@ const MotionGroupModelsApiFp = function(configuration) {
4617
4773
  const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupModels"]?.[localVarOperationServerIndex]?.url;
4618
4774
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
4619
4775
  },
4776
+ async getMotionGroupModelsCatalog(options) {
4777
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupModelsCatalog(options);
4778
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
4779
+ const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupModelsCatalog"]?.[localVarOperationServerIndex]?.url;
4780
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
4781
+ },
4620
4782
  async getMotionGroupUsdModel(motionGroupModel, options) {
4621
4783
  const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupUsdModel(motionGroupModel, options);
4622
4784
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
@@ -4646,6 +4808,9 @@ const MotionGroupModelsApiFactory = function(configuration, basePath, axios) {
4646
4808
  exportMotionGroupModel(motionGroupModel, options) {
4647
4809
  return localVarFp.exportMotionGroupModel(motionGroupModel, options).then((request) => request(axios, basePath));
4648
4810
  },
4811
+ getConfigurationForMotionGroup(motionGroupModel, options) {
4812
+ return localVarFp.getConfigurationForMotionGroup(motionGroupModel, options).then((request) => request(axios, basePath));
4813
+ },
4649
4814
  getMotionGroupCollisionModel(motionGroupModel, options) {
4650
4815
  return localVarFp.getMotionGroupCollisionModel(motionGroupModel, options).then((request) => request(axios, basePath));
4651
4816
  },
@@ -4667,6 +4832,9 @@ const MotionGroupModelsApiFactory = function(configuration, basePath, axios) {
4667
4832
  getMotionGroupModels(options) {
4668
4833
  return localVarFp.getMotionGroupModels(options).then((request) => request(axios, basePath));
4669
4834
  },
4835
+ getMotionGroupModelsCatalog(options) {
4836
+ return localVarFp.getMotionGroupModelsCatalog(options).then((request) => request(axios, basePath));
4837
+ },
4670
4838
  getMotionGroupUsdModel(motionGroupModel, options) {
4671
4839
  return localVarFp.getMotionGroupUsdModel(motionGroupModel, options).then((request) => request(axios, basePath));
4672
4840
  },
@@ -4691,7 +4859,7 @@ var MotionGroupModelsApi = class extends BaseAPI {
4691
4859
  return MotionGroupModelsApiFp(this.configuration).copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options).then((request) => request(this.axios, this.basePath));
4692
4860
  }
4693
4861
  /**
4694
- * **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models (where `is_custom` is `true`) can be deleted. Built-in base models cannot be removed.
4862
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models, where `is_custom` is `true`, can be deleted. Built-in base models cannot be removed.
4695
4863
  * @summary Delete Motion Group Model
4696
4864
  * @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).
4697
4865
  * @param {*} [options] Override http request option.
@@ -4711,6 +4879,16 @@ var MotionGroupModelsApi = class extends BaseAPI {
4711
4879
  return MotionGroupModelsApiFp(this.configuration).exportMotionGroupModel(motionGroupModel, options).then((request) => request(this.axios, this.basePath));
4712
4880
  }
4713
4881
  /**
4882
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ Get a robot configuration containing the specified motion group model. This endpoint is designed for Virtual Robot to dynamically add motion groups by model name without needing to know the robot configuration name. Returns the full GCI transcript along with the motion group UID that corresponds to the requested motion group model.
4883
+ * @summary Get Configuration for Motion Group
4884
+ * @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).
4885
+ * @param {*} [options] Override http request option.
4886
+ * @throws {RequiredError}
4887
+ */
4888
+ getConfigurationForMotionGroup(motionGroupModel, options) {
4889
+ return MotionGroupModelsApiFp(this.configuration).getConfigurationForMotionGroup(motionGroupModel, options).then((request) => request(this.axios, this.basePath));
4890
+ }
4891
+ /**
4714
4892
  * **Required permissions:** `can_access_system` - View system status and metadata ___ 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.
4715
4893
  * @summary Get Collision Model
4716
4894
  * @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).
@@ -4780,6 +4958,15 @@ var MotionGroupModelsApi = class extends BaseAPI {
4780
4958
  return MotionGroupModelsApiFp(this.configuration).getMotionGroupModels(options).then((request) => request(this.axios, this.basePath));
4781
4959
  }
4782
4960
  /**
4961
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the catalog of all motion groups with their motion group names and readable names.
4962
+ * @summary Motion Group Model Catalog
4963
+ * @param {*} [options] Override http request option.
4964
+ * @throws {RequiredError}
4965
+ */
4966
+ getMotionGroupModelsCatalog(options) {
4967
+ return MotionGroupModelsApiFp(this.configuration).getMotionGroupModelsCatalog(options).then((request) => request(this.axios, this.basePath));
4968
+ }
4969
+ /**
4783
4970
  * **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the USD scene model for the specified motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported identifiers.
4784
4971
  * @summary Download USD Model
4785
4972
  * @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).
@@ -4857,6 +5044,30 @@ const NOVACloudApiAxiosParamCreator = function(configuration) {
4857
5044
  options: localVarRequestOptions
4858
5045
  };
4859
5046
  },
5047
+ getCloudStatus: async (options = {}) => {
5048
+ const localVarUrlObj = new URL(`/experimental/cloud/status`, DUMMY_BASE_URL);
5049
+ let baseOptions;
5050
+ if (configuration) baseOptions = configuration.baseOptions;
5051
+ const localVarRequestOptions = {
5052
+ method: "GET",
5053
+ ...baseOptions,
5054
+ ...options
5055
+ };
5056
+ const localVarHeaderParameter = {};
5057
+ const localVarQueryParameter = {};
5058
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
5059
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
5060
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
5061
+ localVarRequestOptions.headers = {
5062
+ ...localVarHeaderParameter,
5063
+ ...headersFromBaseOptions,
5064
+ ...options.headers
5065
+ };
5066
+ return {
5067
+ url: toPathString(localVarUrlObj),
5068
+ options: localVarRequestOptions
5069
+ };
5070
+ },
4860
5071
  getNovaCloudConfig: async (options = {}) => {
4861
5072
  const localVarUrlObj = new URL(`/experimental/cloud/config`, DUMMY_BASE_URL);
4862
5073
  let baseOptions;
@@ -4901,6 +5112,12 @@ const NOVACloudApiFp = function(configuration) {
4901
5112
  const localVarOperationServerBasePath = operationServerMap["NOVACloudApi.disconnectFromNovaCloud"]?.[localVarOperationServerIndex]?.url;
4902
5113
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
4903
5114
  },
5115
+ async getCloudStatus(options) {
5116
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getCloudStatus(options);
5117
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
5118
+ const localVarOperationServerBasePath = operationServerMap["NOVACloudApi.getCloudStatus"]?.[localVarOperationServerIndex]?.url;
5119
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
5120
+ },
4904
5121
  async getNovaCloudConfig(options) {
4905
5122
  const localVarAxiosArgs = await localVarAxiosParamCreator.getNovaCloudConfig(options);
4906
5123
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
@@ -4921,6 +5138,9 @@ const NOVACloudApiFactory = function(configuration, basePath, axios) {
4921
5138
  disconnectFromNovaCloud(completionTimeout, options) {
4922
5139
  return localVarFp.disconnectFromNovaCloud(completionTimeout, options).then((request) => request(axios, basePath));
4923
5140
  },
5141
+ getCloudStatus(options) {
5142
+ return localVarFp.getCloudStatus(options).then((request) => request(axios, basePath));
5143
+ },
4924
5144
  getNovaCloudConfig(options) {
4925
5145
  return localVarFp.getNovaCloudConfig(options).then((request) => request(axios, basePath));
4926
5146
  }
@@ -4952,6 +5172,15 @@ var NOVACloudApi = class extends BaseAPI {
4952
5172
  return NOVACloudApiFp(this.configuration).disconnectFromNovaCloud(completionTimeout, options).then((request) => request(this.axios, this.basePath));
4953
5173
  }
4954
5174
  /**
5175
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection status for this instance, including whether the configured cloud deployment is currently reachable.
5176
+ * @summary Get Connection Status
5177
+ * @param {*} [options] Override http request option.
5178
+ * @throws {RequiredError}
5179
+ */
5180
+ getCloudStatus(options) {
5181
+ return NOVACloudApiFp(this.configuration).getCloudStatus(options).then((request) => request(this.axios, this.basePath));
5182
+ }
5183
+ /**
4955
5184
  * **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection config for this instance.
4956
5185
  * @summary Get Connection Config
4957
5186
  * @param {*} [options] Override http request option.
@@ -6726,7 +6955,9 @@ const SystemApiAxiosParamCreator = function(configuration) {
6726
6955
  };
6727
6956
  },
6728
6957
  getArpScan: async (_interface, cidr, timeout, options = {}) => {
6729
- const localVarUrlObj = new URL(`/experimental/system/network/arp-scan`, DUMMY_BASE_URL);
6958
+ assertParamExists("getArpScan", "_interface", _interface);
6959
+ assertParamExists("getArpScan", "cidr", cidr);
6960
+ const localVarUrlObj = new URL(`/system/network/arp-scan`, DUMMY_BASE_URL);
6730
6961
  let baseOptions;
6731
6962
  if (configuration) baseOptions = configuration.baseOptions;
6732
6963
  const localVarRequestOptions = {
@@ -6803,7 +7034,7 @@ const SystemApiAxiosParamCreator = function(configuration) {
6803
7034
  };
6804
7035
  },
6805
7036
  getNetworkInterfaces: async (options = {}) => {
6806
- const localVarUrlObj = new URL(`/experimental/system/network/interfaces`, DUMMY_BASE_URL);
7037
+ const localVarUrlObj = new URL(`/system/network/interfaces`, DUMMY_BASE_URL);
6807
7038
  let baseOptions;
6808
7039
  if (configuration) baseOptions = configuration.baseOptions;
6809
7040
  const localVarRequestOptions = {
@@ -7129,10 +7360,10 @@ var SystemApi = class extends BaseAPI {
7129
7360
  return SystemApiFp(this.configuration).checkNovaVersionUpdate(channel, options).then((request) => request(this.axios, this.basePath));
7130
7361
  }
7131
7362
  /**
7132
- * **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Performs an address resolution protocol (ARP) scan on the specified interface/classless inter-domain routing (CIDR) and returns all discovered devices on the network by CIDR notation.
7363
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ Runs an ARP scan on the target interface and returns all discovered devices.
7133
7364
  * @summary Get ARP-Scan
7134
- * @param {string} [_interface]
7135
- * @param {string} [cidr]
7365
+ * @param {string} _interface
7366
+ * @param {string} cidr
7136
7367
  * @param {number} [timeout]
7137
7368
  * @param {*} [options] Override http request option.
7138
7369
  * @throws {RequiredError}
@@ -7160,7 +7391,7 @@ var SystemApi = class extends BaseAPI {
7160
7391
  return SystemApiFp(this.configuration).getDiagnosePackage(options).then((request) => request(this.axios, this.basePath));
7161
7392
  }
7162
7393
  /**
7163
- * **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the network interfaces of the system.
7394
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ Lists all managed network interfaces available for controller connections and ARP scanning.
7164
7395
  * @summary Network Interfaces
7165
7396
  * @param {*} [options] Override http request option.
7166
7397
  * @throws {RequiredError}
@@ -10192,6 +10423,6 @@ var Nova = class {
10192
10423
  }
10193
10424
  };
10194
10425
  //#endregion
10195
- 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, BusIOSnap7BusTypeEnum, BusIOsStateEnum, COLLECTION_FORMATS, CapsuleShapeTypeEnum, CellApi, CellApiAxiosParamCreator, CellApiFactory, CellApiFp, CloudConfigStatusConfiguredStatusEnum, CloudConfigStatusNotConfiguredStatusEnum, CloudConnectionErrorInvalidTokenCodeEnum, CloudConnectionErrorLeafnodeConnectionErrorCodeEnum, CloudConnectionErrorLeafnodeConnectionTimeoutCodeEnum, CloudConnectionErrorLeafnodeRestartTimeoutCodeEnum, CloudConnectionErrorNatsFailedCodeEnum, CloudConnectionErrorUnexpectedResponseCodeEnum, CloudDisconnectionStatusDisconnectedStatusEnum, CloudDisconnectionStatusDisconnectingStatusEnum, ColliderValueSourceEnum, CollisionErrorKindEnum, CollisionSetupValueSourceEnum, Comparator, Configuration, ConfigurationArchiveStatusCreatingStatusEnum, ConfigurationArchiveStatusErrorStatusEnum, ConfigurationArchiveStatusSuccessStatusEnum, ControllerApi, ControllerApiAxiosParamCreator, ControllerApiFactory, ControllerApiFp, ControllerInputsOutputsApi, ControllerInputsOutputsApiAxiosParamCreator, ControllerInputsOutputsApiFactory, ControllerInputsOutputsApiFp, ConvexHullShapeTypeEnum, CylinderShapeTypeEnum, Direction, DirectionConstraintConstraintNameEnum, ErrorDirectionConstraintNotMetErrorFeedbackNameEnum, ErrorDirectionConstraintNotNormalizedErrorFeedbackNameEnum, ErrorInvalidJointCountErrorFeedbackNameEnum, ErrorJointLimitExceededErrorFeedbackNameEnum, ErrorJointPositionCollisionErrorFeedbackNameEnum, ErrorMaxIterationsExceededErrorFeedbackNameEnum, ErrorUnsupportedOperationErrorFeedbackNameEnum, FanucControllerKindEnum, FeedbackAxisRangeExceededErrorFeedbackNameEnum, FeedbackCollisionErrorFeedbackNameEnum, FeedbackCommandsMissingErrorFeedbackNameEnum, FeedbackCubicSplineIsNotIncreasingErrorFeedbackNameEnum, FeedbackCubicSplineNotAtStartPoseErrorFeedbackNameEnum, FeedbackDirectionConstraintNoSolutionExistsErrorFeedbackNameEnum, FeedbackDirectionConstraintNotMetErrorFeedbackNameEnum, FeedbackDirectionConstraintNotNormalizedErrorFeedbackNameEnum, FeedbackInvalidDofErrorFeedbackNameEnum, FeedbackInvalidNanValueErrorFeedbackNameEnum, FeedbackInvalidSamplingTimeErrorFeedbackNameEnum, FeedbackJointLimitExceededErrorFeedbackNameEnum, FeedbackNoSolutionInCurrentConfigurationErrorFeedbackNameEnum, FeedbackOutOfWorkspaceErrorFeedbackNameEnum, FeedbackSingularityErrorFeedbackNameEnum, FeedbackStartJointsMissingErrorFeedbackNameEnum, FeedbackTorqueExceededErrorFeedbackNameEnum, FloatValueValueTypeEnum, IOBooleanValueValueTypeEnum, IODirection, IOFloatValueValueTypeEnum, IOIntegerValueValueTypeEnum, IOOrigin, IOValueType, InconsistentTrajectorySizeErrorKindEnum, InitializeJoggingRequestMessageTypeEnum, InitializeJoggingResponseKindEnum, InitializeMovementRequestMessageTypeEnum, InitializeMovementResponseKindEnum, IntegerValueValueTypeEnum, InvalidDofErrorKindEnum, JoggingApi, JoggingApiAxiosParamCreator, JoggingApiFactory, JoggingApiFp, JoggingDetailsKindEnum, JoggingPausedByUserKindEnum, JoggingPausedNearCollisionKindEnum, JoggingPausedNearJointLimitKindEnum, JoggingPausedNearSingularityKindEnum, JoggingPausedOnIOKindEnum, JoggingRunningKindEnum, JointLimitExceededErrorKindEnum, JointTypeEnum, JointVelocityRequestMessageTypeEnum, JointVelocityResponseKindEnum, JointWaypointsRequestMessageTypeEnum, JointWaypointsResponseKindEnum, KinematicBranchElbow, KinematicBranchShoulder, KinematicBranchWrist, KinematicsApi, KinematicsApiAxiosParamCreator, KinematicsApiFactory, KinematicsApiFp, KukaControllerKindEnum, LicenseApi, LicenseApiAxiosParamCreator, LicenseApiFactory, LicenseApiFp, LicenseStatusEnum, LinkChainValueSourceEnum, Manufacturer, MidpointInsertionAlgorithmAlgorithmNameEnum, ModbusIOArea, ModbusIOByteOrder, ModbusIOTypeEnum, MotionGroupApi, MotionGroupApiAxiosParamCreator, MotionGroupApiFactory, MotionGroupApiFp, MotionGroupModelsApi, MotionGroupModelsApiAxiosParamCreator, MotionGroupModelsApiFactory, MotionGroupModelsApiFp, MovementErrorResponseKindEnum, NOVACloudApi, NOVACloudApiAxiosParamCreator, NOVACloudApiFactory, NOVACloudApiFp, NanValueErrorKindEnum, NetworkStateConnectionTypeEnum, Nova, NovaAPIClient, OperatingState, OperationMode, OrientationType, PathCartesianPTPPathDefinitionNameEnum, PathCirclePathDefinitionNameEnum, PathCubicSplinePathDefinitionNameEnum, PathDirectionConstrainedCartesianPTPPathDefinitionNameEnum, PathDirectionConstrainedJointPTPPathDefinitionNameEnum, PathJointPTPPathDefinitionNameEnum, PathLinePathDefinitionNameEnum, PauseJoggingRequestMessageTypeEnum, PauseJoggingResponseKindEnum, PauseMovementRequestMessageTypeEnum, PauseMovementResponseKindEnum, PlaneShapeTypeEnum, PlaybackSpeedRequestMessageTypeEnum, PlaybackSpeedResponseKindEnum, PoseWaypointsRequestMessageTypeEnum, PoseWaypointsResponseKindEnum, ProfinetIODirection, ProfinetIOTypeEnum, ProgramApi, ProgramApiAxiosParamCreator, ProgramApiFactory, ProgramApiFp, ProgramRunState, RRTConnectAlgorithmAlgorithmNameEnum, RectangleShapeTypeEnum, RectangularCapsuleShapeTypeEnum, ReleaseChannel, RequiredError, RobotConfigurationsApi, RobotConfigurationsApiAxiosParamCreator, RobotConfigurationsApiFactory, RobotConfigurationsApiFp, RobotSystemMode, SafetyStateType, ServiceGroup, ServiceStatusPhase, ServiceStatusSeverity, SessionApi, SessionApiAxiosParamCreator, SessionApiFactory, SessionApiFp, SettableRobotSystemMode, SingularityTypeEnum, Snap7IOArea, Snap7IODirection, Snap7IOTypeEnum, SphereShapeTypeEnum, StartMovementRequestMessageTypeEnum, StartMovementResponseKindEnum, StorageKeySourceEnum, StoreCollisionComponentsApi, StoreCollisionComponentsApiAxiosParamCreator, StoreCollisionComponentsApiFactory, StoreCollisionComponentsApiFp, StoreCollisionSetupsApi, StoreCollisionSetupsApiAxiosParamCreator, StoreCollisionSetupsApiFactory, StoreCollisionSetupsApiFp, StoreObjectApi, StoreObjectApiAxiosParamCreator, StoreObjectApiFactory, StoreObjectApiFp, SystemApi, SystemApiAxiosParamCreator, SystemApiFactory, SystemApiFp, TcpRequiredErrorKindEnum, TcpVelocityRequestMessageTypeEnum, TcpVelocityResponseKindEnum, ToolValueSourceEnum, 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, ZodValidationErrorErrorCodeEnum, operationServerMap };
10426
+ export { AbbControllerKindEnum, ActionChunkRequestMessageTypeEnum, ActionChunkResponseKindEnum, ActionChunkStreamingApi, ActionChunkStreamingApiAxiosParamCreator, ActionChunkStreamingApiFactory, ActionChunkStreamingApiFp, ApplicationApi, ApplicationApiAxiosParamCreator, ApplicationApiFactory, ApplicationApiFp, BASE_PATH, BUSInputsOutputsApi, BUSInputsOutputsApiAxiosParamCreator, BUSInputsOutputsApiFactory, BUSInputsOutputsApiFp, BaseAPI, Behavior, BlendingAutoBlendingNameEnum, BlendingPositionBlendingNameEnum, BlendingSpace, BooleanValueValueTypeEnum, BostondynamicsControllerKindEnum, BostondynamicsControllerRobotTypeEnum, BoxBoxTypeEnum, BoxShapeTypeEnum, BusIOModbusClientBusTypeEnum, BusIOModbusServerBusTypeEnum, BusIOModbusTCPClientNetworkTypeEnum, BusIOModbusTCPServerNetworkTypeEnum, BusIOModbusVirtualBusTypeEnum, BusIOProfinetBusTypeEnum, BusIOProfinetVirtualBusTypeEnum, BusIOSnap7BusTypeEnum, BusIOsStateEnum, COLLECTION_FORMATS, CapsuleShapeTypeEnum, CellApi, CellApiAxiosParamCreator, CellApiFactory, CellApiFp, CloudConfigStatusConfiguredStatusEnum, CloudConfigStatusNotConfiguredStatusEnum, CloudConnectionErrorInvalidTokenCodeEnum, CloudConnectionErrorLeafnodeConnectionErrorCodeEnum, CloudConnectionErrorLeafnodeConnectionTimeoutCodeEnum, CloudConnectionErrorLeafnodeRestartTimeoutCodeEnum, CloudConnectionErrorNatsFailedCodeEnum, CloudConnectionErrorUnexpectedResponseCodeEnum, CloudDisconnectionStatusDisconnectedStatusEnum, CloudDisconnectionStatusDisconnectingStatusEnum, ColliderValueSourceEnum, CollisionErrorKindEnum, CollisionSetupValueSourceEnum, Comparator, Configuration, ConfigurationArchiveStatusCreatingStatusEnum, ConfigurationArchiveStatusErrorStatusEnum, ConfigurationArchiveStatusSuccessStatusEnum, ControllerApi, ControllerApiAxiosParamCreator, ControllerApiFactory, ControllerApiFp, ControllerInputsOutputsApi, ControllerInputsOutputsApiAxiosParamCreator, ControllerInputsOutputsApiFactory, ControllerInputsOutputsApiFp, ConvexHullShapeTypeEnum, CylinderShapeTypeEnum, Direction, DirectionConstraintConstraintNameEnum, ErrorDirectionConstraintNotMetErrorFeedbackNameEnum, ErrorDirectionConstraintNotNormalizedErrorFeedbackNameEnum, ErrorInvalidJointCountErrorFeedbackNameEnum, ErrorJointLimitExceededErrorFeedbackNameEnum, ErrorJointPositionCollisionErrorFeedbackNameEnum, ErrorMaxIterationsExceededErrorFeedbackNameEnum, ErrorUnsupportedOperationErrorFeedbackNameEnum, FanucControllerKindEnum, FeedbackAxisRangeExceededErrorFeedbackNameEnum, FeedbackCollisionErrorFeedbackNameEnum, FeedbackCommandsMissingErrorFeedbackNameEnum, FeedbackCubicSplineIsNotIncreasingErrorFeedbackNameEnum, FeedbackCubicSplineNotAtStartPoseErrorFeedbackNameEnum, FeedbackDirectionConstraintNoSolutionExistsErrorFeedbackNameEnum, FeedbackDirectionConstraintNotMetErrorFeedbackNameEnum, FeedbackDirectionConstraintNotNormalizedErrorFeedbackNameEnum, FeedbackInvalidDofErrorFeedbackNameEnum, FeedbackInvalidNanValueErrorFeedbackNameEnum, FeedbackInvalidSamplingTimeErrorFeedbackNameEnum, FeedbackJointLimitExceededErrorFeedbackNameEnum, FeedbackNoSolutionInCurrentConfigurationErrorFeedbackNameEnum, FeedbackOutOfWorkspaceErrorFeedbackNameEnum, FeedbackSingularityErrorFeedbackNameEnum, FeedbackStartJointsMissingErrorFeedbackNameEnum, FeedbackTorqueExceededErrorFeedbackNameEnum, FloatValueValueTypeEnum, IOBooleanValueValueTypeEnum, IODirection, IOFloatValueValueTypeEnum, IOIntegerValueValueTypeEnum, IOOrigin, IOValueType, InconsistentTrajectorySizeErrorKindEnum, InitializeActionChunksRequestMessageTypeEnum, InitializeActionChunksResponseKindEnum, InitializeJoggingRequestMessageTypeEnum, InitializeJoggingResponseKindEnum, InitializeMovementRequestMessageTypeEnum, InitializeMovementResponseKindEnum, IntegerValueValueTypeEnum, InvalidDofErrorKindEnum, JoggingApi, JoggingApiAxiosParamCreator, JoggingApiFactory, JoggingApiFp, JoggingDetailsKindEnum, JoggingPausedByUserKindEnum, JoggingPausedNearCollisionKindEnum, JoggingPausedNearJointLimitKindEnum, JoggingPausedNearSingularityKindEnum, JoggingPausedOnIOKindEnum, JoggingRunningKindEnum, JointLimitExceededErrorKindEnum, JointTypeEnum, JointVelocityRequestMessageTypeEnum, JointVelocityResponseKindEnum, JointWaypointKindEnum, KinematicBranchElbow, KinematicBranchShoulder, KinematicBranchWrist, KinematicsApi, KinematicsApiAxiosParamCreator, KinematicsApiFactory, KinematicsApiFp, KukaControllerKindEnum, LicenseApi, LicenseApiAxiosParamCreator, LicenseApiFactory, LicenseApiFp, LicenseStatusEnum, LinkChainValueSourceEnum, Manufacturer, MidpointInsertionAlgorithmAlgorithmNameEnum, ModbusIOArea, ModbusIOByteOrder, ModbusIOTypeEnum, MotionGroupApi, MotionGroupApiAxiosParamCreator, MotionGroupApiFactory, MotionGroupApiFp, MotionGroupModelsApi, MotionGroupModelsApiAxiosParamCreator, MotionGroupModelsApiFactory, MotionGroupModelsApiFp, MovementErrorResponseKindEnum, NOVACloudApi, NOVACloudApiAxiosParamCreator, NOVACloudApiFactory, NOVACloudApiFp, NanValueErrorKindEnum, NetworkBackend, NetworkLinkState, Nova, NovaAPIClient, OperatingState, OperationMode, OrientationType, PathCartesianPTPPathDefinitionNameEnum, PathCirclePathDefinitionNameEnum, PathCubicSplinePathDefinitionNameEnum, PathDirectionConstrainedCartesianPTPPathDefinitionNameEnum, PathDirectionConstrainedJointPTPPathDefinitionNameEnum, PathJointPTPPathDefinitionNameEnum, PathLinePathDefinitionNameEnum, PauseActionChunksRequestMessageTypeEnum, PauseActionChunksResponseKindEnum, PauseJoggingRequestMessageTypeEnum, PauseJoggingResponseKindEnum, PauseMovementRequestMessageTypeEnum, PauseMovementResponseKindEnum, PlaneShapeTypeEnum, PlaybackSpeedRequestMessageTypeEnum, PlaybackSpeedResponseKindEnum, PoseWaypointKindEnum, ProfinetIODirection, ProfinetIOTypeEnum, ProgramApi, ProgramApiAxiosParamCreator, ProgramApiFactory, ProgramApiFp, ProgramRunState, RRTConnectAlgorithmAlgorithmNameEnum, RectangleShapeTypeEnum, RectangularCapsuleShapeTypeEnum, ReleaseChannel, RequiredError, RobotConfigurationsApi, RobotConfigurationsApiAxiosParamCreator, RobotConfigurationsApiFactory, RobotConfigurationsApiFp, RobotSystemMode, SafetyStateType, ServiceGroup, ServiceStatusPhase, ServiceStatusSeverity, SessionApi, SessionApiAxiosParamCreator, SessionApiFactory, SessionApiFp, SettableRobotSystemMode, SingularityHandling, SingularityTypeEnum, Snap7IOArea, Snap7IODirection, Snap7IOTypeEnum, SphereShapeTypeEnum, StartMovementRequestMessageTypeEnum, StartMovementResponseKindEnum, StaubliControllerKindEnum, StopActionChunksRequestMessageTypeEnum, StopActionChunksResponseKindEnum, StorageKeySourceEnum, StoreCollisionComponentsApi, StoreCollisionComponentsApiAxiosParamCreator, StoreCollisionComponentsApiFactory, StoreCollisionComponentsApiFp, StoreCollisionSetupsApi, StoreCollisionSetupsApiAxiosParamCreator, StoreCollisionSetupsApiFactory, StoreCollisionSetupsApiFp, StoreObjectApi, StoreObjectApiAxiosParamCreator, StoreObjectApiFactory, StoreObjectApiFp, SystemApi, SystemApiAxiosParamCreator, SystemApiFactory, SystemApiFp, TcpRequiredErrorKindEnum, TcpVelocityRequestMessageTypeEnum, TcpVelocityResponseKindEnum, ToolValueSourceEnum, TorqueExceededErrorKindEnum, TrajectoryCachingApi, TrajectoryCachingApiAxiosParamCreator, TrajectoryCachingApiFactory, TrajectoryCachingApiFp, TrajectoryDataMessageTypeEnum, TrajectoryDetailsKindEnum, TrajectoryEndedKindEnum, TrajectoryExecutionApi, TrajectoryExecutionApiAxiosParamCreator, TrajectoryExecutionApiFactory, TrajectoryExecutionApiFp, TrajectoryIdMessageTypeEnum, TrajectoryPausedByUserKindEnum, TrajectoryPausedOnIOKindEnum, TrajectoryPlanningApi, TrajectoryPlanningApiAxiosParamCreator, TrajectoryPlanningApiFactory, TrajectoryPlanningApiFp, TrajectoryRunningKindEnum, TrajectoryWaitForIOKindEnum, UnitType, UnitreeControllerKindEnum, UnitreeControllerRobotTypeEnum, UniversalrobotsControllerKindEnum, UnpauseActionChunksRequestMessageTypeEnum, UnpauseActionChunksResponseKindEnum, VersionApi, VersionApiAxiosParamCreator, VersionApiFactory, VersionApiFp, VirtualControllerApi, VirtualControllerApiAxiosParamCreator, VirtualControllerApiFactory, VirtualControllerApiFp, VirtualControllerBehaviorApi, VirtualControllerBehaviorApiAxiosParamCreator, VirtualControllerBehaviorApiFactory, VirtualControllerBehaviorApiFp, VirtualControllerInputsOutputsApi, VirtualControllerInputsOutputsApiAxiosParamCreator, VirtualControllerInputsOutputsApiFactory, VirtualControllerInputsOutputsApiFp, VirtualControllerKindEnum, YaskawaControllerKindEnum, ZodValidationErrorErrorCodeEnum, operationServerMap };
10196
10427
 
10197
10428
  //# sourceMappingURL=index.mjs.map