@wandelbots/nova-api 26.6.0-dev.11 → 26.6.0-dev.110

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.
@@ -162,6 +162,7 @@ interface AbbConfiguredPose {
162
162
  interface AbbController {
163
163
  'kind': AbbControllerKindEnum;
164
164
  'controller_ip': string;
165
+ 'network_interface'?: ControllerNetworkInterface;
165
166
  /**
166
167
  * Default values: 80, 443. If custom value is set, field is required.
167
168
  */
@@ -191,6 +192,37 @@ interface AbbPose {
191
192
  'q3': number;
192
193
  'q4': number;
193
194
  }
195
+ /**
196
+ * Adds waypoints to the action chunk queue. The robot will try to move through each waypoint by best effort. Existing waypoints in the queue that are older than the first new timestamp will be removed. The first message of this kind starts an internal clock. The current session timestamp is reported in `execute.details.jogger_session_timestamp_ms` of the [streamRobotControllerState](#/operations/streamRobotControllerState) endpoint. This can be used for realtime action chunk streaming, e.g., from a Vision-Language-Action (VLA) model. > **NOTE** > > Action chunk streaming is experimental and its behavior may change in future releases.
197
+ */
198
+ interface ActionChunkRequest {
199
+ /**
200
+ * Type specifier for server, set automatically.
201
+ */
202
+ 'message_type': ActionChunkRequestMessageTypeEnum;
203
+ /**
204
+ * List of waypoints.
205
+ */
206
+ 'waypoints': Array<Waypoint>;
207
+ }
208
+ declare const ActionChunkRequestMessageTypeEnum: {
209
+ readonly ActionChunkRequest: "ActionChunkRequest";
210
+ };
211
+ type ActionChunkRequestMessageTypeEnum = typeof ActionChunkRequestMessageTypeEnum[keyof typeof ActionChunkRequestMessageTypeEnum];
212
+ /**
213
+ * Acknowledgment to an ActionChunkRequest.
214
+ */
215
+ interface ActionChunkResponse {
216
+ /**
217
+ * Error message in case of invalid ActionChunkRequest.
218
+ */
219
+ 'message'?: string;
220
+ 'kind': ActionChunkResponseKindEnum;
221
+ }
222
+ declare const ActionChunkResponseKindEnum: {
223
+ readonly ActionChunkReceived: "ACTION_CHUNK_RECEIVED";
224
+ };
225
+ type ActionChunkResponseKindEnum = typeof ActionChunkResponseKindEnum[keyof typeof ActionChunkResponseKindEnum];
194
226
  /**
195
227
  * The authentication token to fetch the license from the license server.
196
228
  */
@@ -252,7 +284,7 @@ interface AddTrajectoryResponse {
252
284
  }
253
285
  /**
254
286
  * @type AddVirtualControllerMotionGroupRequest
255
- * Request body wrapper for `addVirtualControllerMotionGroup`. Allow callers to either reference a predefined motion group model or upload a full JSON configuration that the backend extracts into a motion group description.
287
+ * Request body wrapper for `addVirtualControllerMotionGroup`. Allow either referencing a predefined motion group model or uploading a JSON configuration that the backend converts into a motion group description.
256
288
  */
257
289
  type AddVirtualControllerMotionGroupRequest = MotionGroupFromJson | MotionGroupFromType;
258
290
  interface ApiVersion {
@@ -266,7 +298,7 @@ interface ApiVersion {
266
298
  */
267
299
  interface App {
268
300
  /**
269
- * The name of the provided application. The name must be unique within the cell and is used as a identifier for addressing the application in all API calls , e.g., when updating the application. It also defines where the application is reachable (/$cell/$name). It must be a valid k8s label name as defined by [RFC 1035](https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#rfc-1035-label-names).
301
+ * The name of the provided application. The name must be unique within the cell and is used as an identifier for addressing the application in all API calls , e.g., when updating the application. It also defines where the application is reachable (/$cell/$name). It must be a valid k8s label name as defined by [RFC 1035](https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#rfc-1035-label-names).
270
302
  */
271
303
  'name': string;
272
304
  /**
@@ -374,6 +406,48 @@ declare const BooleanValueValueTypeEnum: {
374
406
  readonly Boolean: "boolean";
375
407
  };
376
408
  type BooleanValueValueTypeEnum = typeof BooleanValueValueTypeEnum[keyof typeof BooleanValueValueTypeEnum];
409
+ /**
410
+ * The configuration of a Boston Dynamics robot controller. Requires the hostname or IP address of the robot and authentication credentials.
411
+ */
412
+ interface BostondynamicsController {
413
+ 'kind': BostondynamicsControllerKindEnum;
414
+ /**
415
+ * The hostname or IP address of the robot.
416
+ */
417
+ 'controller_ip': string;
418
+ /**
419
+ * The Boston Dynamics robot model type.
420
+ */
421
+ 'robot_type'?: BostondynamicsControllerRobotTypeEnum;
422
+ /**
423
+ * The authentication password for the robot.
424
+ */
425
+ 'password': string;
426
+ /**
427
+ * The authentication username for the robot.
428
+ */
429
+ 'username'?: string;
430
+ /**
431
+ * The network interface used to communicate with the robot.
432
+ */
433
+ 'network_interface'?: string;
434
+ /**
435
+ * JPEG quality for camera streams (1-100).
436
+ */
437
+ 'stream_quality'?: number;
438
+ /**
439
+ * Frames per second for camera streams.
440
+ */
441
+ 'stream_fps'?: number;
442
+ }
443
+ declare const BostondynamicsControllerKindEnum: {
444
+ readonly BostondynamicsController: "BostondynamicsController";
445
+ };
446
+ type BostondynamicsControllerKindEnum = typeof BostondynamicsControllerKindEnum[keyof typeof BostondynamicsControllerKindEnum];
447
+ declare const BostondynamicsControllerRobotTypeEnum: {
448
+ readonly Spot: "spot";
449
+ };
450
+ type BostondynamicsControllerRobotTypeEnum = typeof BostondynamicsControllerRobotTypeEnum[keyof typeof BostondynamicsControllerRobotTypeEnum];
377
451
  /**
378
452
  * Defines a cuboid shape centred around an origin. If a margin is applied to the box type full, it is added to all size values. The shape will keep its edges. The hollow box type consists of thin boxes that make up its walls. If a margin is applied to the box type hollow, its size values are reduced by the margin.
379
453
  */
@@ -683,19 +757,44 @@ declare const CapsuleShapeTypeEnum: {
683
757
  };
684
758
  type CapsuleShapeTypeEnum = typeof CapsuleShapeTypeEnum[keyof typeof CapsuleShapeTypeEnum];
685
759
  interface CartesianLimits {
760
+ /**
761
+ * Cartesian velocity limit in mm/s.
762
+ */
686
763
  'velocity'?: number;
764
+ /**
765
+ * Cartesian acceleration limit in mm/s².
766
+ */
687
767
  'acceleration'?: number;
688
768
  /**
689
- * > **NOTE** > > This limit type is experimental and its behavior may change in future releases.
769
+ * Cartesian jerk limit in mm/s³. > **NOTE** > > This limit type is experimental and its behavior may change in future releases.
690
770
  */
691
771
  'jerk'?: number;
772
+ /**
773
+ * Orientation velocity limit in rad/s.
774
+ */
692
775
  'orientation_velocity'?: number;
776
+ /**
777
+ * Orientation acceleration limit in rad/s².
778
+ */
693
779
  'orientation_acceleration'?: number;
694
780
  /**
695
- * > **NOTE** > > This limit type is experimental and its behavior may change in future releases.
781
+ * Orientation jerk limit in rad/s³. > **NOTE** > > This limit type is experimental and its behavior may change in future releases.
696
782
  */
697
783
  'orientation_jerk'?: number;
698
784
  }
785
+ /**
786
+ * Defines a cartesian velocity in 3D space. The unit of the translation velocity is mm/s and the unit of the rotation velocity is rad/s.
787
+ */
788
+ interface CartesianVelocity {
789
+ /**
790
+ * A three-dimensional vector [x, y, z] with double precision.
791
+ */
792
+ 'translation': Array<number>;
793
+ /**
794
+ * A three-dimensional vector [x, y, z] with double precision.
795
+ */
796
+ 'rotation': Array<number>;
797
+ }
699
798
  /**
700
799
  * To create a robot cell, only a valid name is required. Once created, a robot cell provides access to the Wandelbots NOVA foundation services. The configuration can be customized, e.g., robot controllers, also within apps.
701
800
  */
@@ -880,6 +979,36 @@ interface CloudRegistrationSuccessResponse {
880
979
  */
881
980
  'instance': number;
882
981
  }
982
+ interface CloudStatus {
983
+ /**
984
+ * Whether NOVA Cloud is fully reachable, i.e. every reachability check passed. `false` when the instance is not configured or any check fails.
985
+ */
986
+ 'ready': boolean;
987
+ 'checks': CloudStatusChecks;
988
+ 'errors': CloudStatusErrors;
989
+ /**
990
+ * Timestamp at which the reachability checks were performed (RFC 3339).
991
+ */
992
+ 'checked_at': string;
993
+ }
994
+ /**
995
+ * Result of each reachability check. A check is absent when a prerequisite check failed and it was not run.
996
+ */
997
+ interface CloudStatusChecks {
998
+ 'is_configured'?: boolean;
999
+ 'can_connect_nats'?: boolean;
1000
+ 'can_ping_nats'?: boolean;
1001
+ 'can_reach_openfga'?: boolean;
1002
+ }
1003
+ /**
1004
+ * Failure reason for each failed check, to help diagnose what is wrong.
1005
+ */
1006
+ interface CloudStatusErrors {
1007
+ 'is_configured'?: string;
1008
+ 'can_connect_nats'?: string;
1009
+ 'can_ping_nats'?: string;
1010
+ 'can_reach_openfga'?: string;
1011
+ }
883
1012
  /**
884
1013
  * Defines a collider with a single shape. A collider is an object that is used for collision detection. It defines the `shape` that is attached with the offset of `pose` to a reference frame. Use colliders to: - Define the shape of a workpiece. The reference frame is the scene origin. - Define the shape of a link in a motion group. The reference frame is the link coordinate system. - Define the shape of a tool. The reference frame is the flange coordinate system.
885
1014
  */
@@ -1128,9 +1257,16 @@ interface ConfigurationResource {
1128
1257
  */
1129
1258
  'children'?: Array<ConfigurationResource>;
1130
1259
  }
1260
+ /**
1261
+ * A pose together with an optional kinematic configuration that resolves it to a unique robot posture. Optionally, the pose can be expressed relative to a coordinate system. The kinematic configuration is optional because it is currently not supported for all robot types, e.g., cuspidal robots.
1262
+ */
1131
1263
  interface ConfiguredPose {
1132
1264
  'pose': Pose;
1133
- 'kinematic_configuration': KinematicConfiguration;
1265
+ 'kinematic_configuration'?: KinematicConfiguration;
1266
+ /**
1267
+ * Optional identifier of the coordinate system the pose is expressed in. If this is null or omitted, the pose is referenced in `world`.
1268
+ */
1269
+ 'coordinate_system_id'?: string;
1134
1270
  }
1135
1271
  interface ConfiguredPoseInverse422Response {
1136
1272
  'detail'?: Array<ValidationError>;
@@ -1241,17 +1377,17 @@ interface ControllerDescription {
1241
1377
  'supports_safety_zones': boolean;
1242
1378
  }
1243
1379
  /**
1244
- * Optional dedicated network interface for a physical robot controller. When set, the controller is given its own network interface on the selected physical network port (`pf`) with the given `address`, so it can reach the robot network directly.
1380
+ * Direct network interface for the robot controller. When set, the controller gets its own interface on the specified port with the given addresses to reach the controller\'s network.
1245
1381
  */
1246
1382
  interface ControllerNetworkInterface {
1247
1383
  /**
1248
- * IPv4 address in CIDR notation to assign to the controller\'s network interface, for example `192.168.1.10/24`. The value must be a valid IPv4 address followed by a prefix length between 0 and 32.
1384
+ * Network port identifier. Either a bare port name, e.g., `enp3s0` or a node-qualified identifier, e.g., `wandelbox-abc123-enp3s0`. Use the node-qualified form on multi-node clusters to pin the interface to a specific node. Cannot be changed in-place. Delete and add the controller again to another port.
1249
1385
  */
1250
- 'address': string;
1386
+ 'interface': string;
1251
1387
  /**
1252
- * Name of the node\'s physical network port that connects to the robot network, for example `enp10s0f0`. The controller\'s interface is provided from this port.
1388
+ * IPv4 addresses to assign to the interface, in address/prefix format, e.g., `192.168.1.10/24`.
1253
1389
  */
1254
- 'pf': string;
1390
+ 'addresses': Array<string>;
1255
1391
  }
1256
1392
  interface ConvertVendorConfiguredPose422Response {
1257
1393
  'detail'?: Array<ValidationError>;
@@ -1536,7 +1672,7 @@ declare const ErrorUnsupportedOperationErrorFeedbackNameEnum: {
1536
1672
  };
1537
1673
  type ErrorUnsupportedOperationErrorFeedbackNameEnum = typeof ErrorUnsupportedOperationErrorFeedbackNameEnum[keyof typeof ErrorUnsupportedOperationErrorFeedbackNameEnum];
1538
1674
  /**
1539
- * Details about the state of the motion execution. The details are either for a jogging or a trajectory. If NOVA is not controlling this motion group at the moment, this field is omitted.
1675
+ * Details about the state of the motion execution. The details are either for a jogging, a trajectory, or an action chunk. If NOVA is not controlling this motion group at the moment, this field is omitted.
1540
1676
  */
1541
1677
  interface Execute {
1542
1678
  /**
@@ -1545,6 +1681,26 @@ interface Execute {
1545
1681
  'joint_position': Array<number>;
1546
1682
  'details'?: ExecuteDetails;
1547
1683
  }
1684
+ /**
1685
+ * @type ExecuteActionChunksRequest
1686
+ */
1687
+ type ExecuteActionChunksRequest = ActionChunkRequest | InitializeActionChunksRequest | PauseActionChunksRequest | StopActionChunksRequest | UnpauseActionChunksRequest;
1688
+ /**
1689
+ * @type ExecuteActionChunksResponse
1690
+ */
1691
+ type ExecuteActionChunksResponse = {
1692
+ kind: 'ACTION_CHUNK_RECEIVED';
1693
+ } & ActionChunkResponse | {
1694
+ kind: 'INITIALIZE_RECEIVED';
1695
+ } & InitializeActionChunksResponse | {
1696
+ kind: 'MOTION_ERROR';
1697
+ } & MovementErrorResponse | {
1698
+ kind: 'PAUSE_RECEIVED';
1699
+ } & PauseActionChunksResponse | {
1700
+ kind: 'STOP_RECEIVED';
1701
+ } & StopActionChunksResponse | {
1702
+ kind: 'UNPAUSE_RECEIVED';
1703
+ } & UnpauseActionChunksResponse;
1548
1704
  /**
1549
1705
  * @type ExecuteDetails
1550
1706
  */
@@ -1589,24 +1745,6 @@ type ExecuteTrajectoryResponse = {
1589
1745
  } & PlaybackSpeedResponse | {
1590
1746
  kind: 'START_RECEIVED';
1591
1747
  } & StartMovementResponse;
1592
- /**
1593
- * @type ExecuteWaypointJoggingRequest
1594
- */
1595
- type ExecuteWaypointJoggingRequest = InitializeJoggingRequest | JointWaypointsRequest | PauseJoggingRequest | PoseWaypointsRequest;
1596
- /**
1597
- * @type ExecuteWaypointJoggingResponse
1598
- */
1599
- type ExecuteWaypointJoggingResponse = {
1600
- kind: 'INITIALIZE_RECEIVED';
1601
- } & InitializeJoggingResponse | {
1602
- kind: 'JOINT_WAYPOINTS_RECEIVED';
1603
- } & JointWaypointsResponse | {
1604
- kind: 'MOTION_ERROR';
1605
- } & MovementErrorResponse | {
1606
- kind: 'PAUSE_RECEIVED';
1607
- } & PauseJoggingResponse | {
1608
- kind: 'POSE_WAYPOINTS_RECEIVED';
1609
- } & PoseWaypointsResponse;
1610
1748
  /**
1611
1749
  * A datapoint inside external joint stream.
1612
1750
  */
@@ -1627,6 +1765,10 @@ interface FanucController {
1627
1765
  'kind': FanucControllerKindEnum;
1628
1766
  'controller_ip': string;
1629
1767
  'network_interface'?: ControllerNetworkInterface;
1768
+ /**
1769
+ * Enable the FANUC Stream Motion interface. When enabled, the GCI server communicates with the controller via the Stream Motion interface.
1770
+ */
1771
+ 'stream_motion'?: boolean;
1630
1772
  }
1631
1773
  declare const FanucControllerKindEnum: {
1632
1774
  readonly FanucController: "FanucController";
@@ -1897,6 +2039,39 @@ interface ForwardKinematicsValidationError {
1897
2039
  };
1898
2040
  'data'?: ErrorInvalidJointCount;
1899
2041
  }
2042
+ interface GetKinematicConfiguration422Response {
2043
+ 'detail'?: Array<GetKinematicConfigurationValidationError>;
2044
+ }
2045
+ interface GetKinematicConfigurationRequest {
2046
+ /**
2047
+ * Identifies a single motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported types.
2048
+ */
2049
+ 'motion_group_model': string;
2050
+ /**
2051
+ * List of joint positions for which kinematic configurations are computed. Each joint position must match the DOF of the specified motion group model. Unit: [rad] for joints. Supported motion group models: 6-DOF robots with spherical or offset wrist.
2052
+ */
2053
+ 'joint_positions': Array<Array<number>>;
2054
+ }
2055
+ interface GetKinematicConfigurationResponse {
2056
+ /**
2057
+ * List of kinematic configurations corresponding to the input joint positions.
2058
+ */
2059
+ 'kinematic_configurations': Array<KinematicConfiguration>;
2060
+ }
2061
+ interface GetKinematicConfigurationValidationError {
2062
+ 'loc': Array<ValidationErrorLocInner>;
2063
+ 'msg': string;
2064
+ 'type': string;
2065
+ 'input': {
2066
+ [key: string]: any;
2067
+ };
2068
+ 'data'?: GetKinematicConfigurationValidationErrorAllOfData;
2069
+ }
2070
+ /**
2071
+ * @type GetKinematicConfigurationValidationErrorAllOfData
2072
+ * Optional data further specifying the validation error.
2073
+ */
2074
+ type GetKinematicConfigurationValidationErrorAllOfData = ErrorInvalidJointCount | ErrorUnsupportedOperation;
1900
2075
  interface GetTrajectoryResponse {
1901
2076
  /**
1902
2077
  * Unique identifier of the motion group the trajectory is planned for.
@@ -2079,6 +2254,41 @@ interface InertiaTensor {
2079
2254
  */
2080
2255
  'yz': number;
2081
2256
  }
2257
+ /**
2258
+ * Send this message to start executing action chunks on a motion group.
2259
+ */
2260
+ interface InitializeActionChunksRequest {
2261
+ /**
2262
+ * Type specifier for server, set automatically.
2263
+ */
2264
+ 'message_type': InitializeActionChunksRequestMessageTypeEnum;
2265
+ /**
2266
+ * Identifier of the motion group.
2267
+ */
2268
+ 'motion_group': string;
2269
+ /**
2270
+ * Identifier of the tool. Required for robots (all limits, including TCP limits, are respected at all times regardless of the motion). Not required for external axes.
2271
+ */
2272
+ 'tcp'?: string;
2273
+ }
2274
+ declare const InitializeActionChunksRequestMessageTypeEnum: {
2275
+ readonly InitializeActionChunksRequest: "InitializeActionChunksRequest";
2276
+ };
2277
+ type InitializeActionChunksRequestMessageTypeEnum = typeof InitializeActionChunksRequestMessageTypeEnum[keyof typeof InitializeActionChunksRequestMessageTypeEnum];
2278
+ /**
2279
+ * Acknowledgment to an InitializeActionChunksRequest.
2280
+ */
2281
+ interface InitializeActionChunksResponse {
2282
+ /**
2283
+ * Error message in case of invalid InitializeActionChunksRequest.
2284
+ */
2285
+ 'message'?: string;
2286
+ 'kind': InitializeActionChunksResponseKindEnum;
2287
+ }
2288
+ declare const InitializeActionChunksResponseKindEnum: {
2289
+ readonly InitializeReceived: "INITIALIZE_RECEIVED";
2290
+ };
2291
+ type InitializeActionChunksResponseKindEnum = typeof InitializeActionChunksResponseKindEnum[keyof typeof InitializeActionChunksResponseKindEnum];
2082
2292
  /**
2083
2293
  * Send this message to start jogging a motion group.
2084
2294
  */
@@ -2349,13 +2559,25 @@ declare const JointLimitExceededErrorKindEnum: {
2349
2559
  };
2350
2560
  type JointLimitExceededErrorKindEnum = typeof JointLimitExceededErrorKindEnum[keyof typeof JointLimitExceededErrorKindEnum];
2351
2561
  interface JointLimits {
2562
+ /**
2563
+ * Joint position limits in rad.
2564
+ */
2352
2565
  'position'?: LimitRange;
2566
+ /**
2567
+ * Joint velocity limit in rad/s.
2568
+ */
2353
2569
  'velocity'?: number;
2570
+ /**
2571
+ * Joint acceleration limit in rad/s².
2572
+ */
2354
2573
  'acceleration'?: number;
2355
2574
  /**
2356
- * > **NOTE** > > This limit type is experimental and its behavior may change in future releases.
2575
+ * Joint jerk limit in rad/s³. > **NOTE** > > This limit type is experimental and its behavior may change in future releases.
2357
2576
  */
2358
2577
  'jerk'?: number;
2578
+ /**
2579
+ * Joint torque limit in Nm.
2580
+ */
2359
2581
  'torque'?: number;
2360
2582
  }
2361
2583
  interface JointPTPMotion {
@@ -2411,49 +2633,22 @@ declare const JointVelocityResponseKindEnum: {
2411
2633
  };
2412
2634
  type JointVelocityResponseKindEnum = typeof JointVelocityResponseKindEnum[keyof typeof JointVelocityResponseKindEnum];
2413
2635
  /**
2414
- * A waypoint in joint space for jogging. > **NOTE** > > This type is experimental and its behavior may change in future releases.
2636
+ * A joint waypoint for action chunk streaming. > **NOTE** > > This type is experimental and its behavior may change in future releases.
2415
2637
  */
2416
2638
  interface JointWaypoint {
2417
2639
  /**
2418
- * Time since session start for when this waypoint should be reached [ms].
2640
+ * Type specifier for server, set automatically.
2419
2641
  */
2420
- 'timestamp': number;
2642
+ 'kind': JointWaypointKindEnum;
2421
2643
  /**
2422
2644
  * This structure describes a set of joint values, e.g., positions, currents, torques, of a motion group. Float precision is the default.
2423
2645
  */
2424
2646
  'joints': Array<number>;
2425
2647
  }
2426
- /**
2427
- * Adds joint waypoints to the jogging queue. The robot will try to move through each waypoint by best effort. Existing waypoints in the queue that are older than the first new timestamp will be removed. The first message of this kind starts an internal clock. The current session timestamp is reported in `execute.details.jogger_session_timestamp_ms` of the [streamRobotControllerState](#/operations/streamRobotControllerState) endpoint. This can be used for realtime action chunk streaming, e.g., from a Vision-Language-Action (VLA) model. > **NOTE** > > This jogging type is experimental and its behavior may change in future releases.
2428
- */
2429
- interface JointWaypointsRequest {
2430
- /**
2431
- * Type specifier for server, set automatically.
2432
- */
2433
- 'message_type': JointWaypointsRequestMessageTypeEnum;
2434
- /**
2435
- * List of joint waypoints.
2436
- */
2437
- 'waypoints': Array<JointWaypoint>;
2438
- }
2439
- declare const JointWaypointsRequestMessageTypeEnum: {
2440
- readonly JointWaypointsRequest: "JointWaypointsRequest";
2648
+ declare const JointWaypointKindEnum: {
2649
+ readonly Joints: "JOINTS";
2441
2650
  };
2442
- type JointWaypointsRequestMessageTypeEnum = typeof JointWaypointsRequestMessageTypeEnum[keyof typeof JointWaypointsRequestMessageTypeEnum];
2443
- /**
2444
- * Acknowledgment to a JointWaypointsRequest.
2445
- */
2446
- interface JointWaypointsResponse {
2447
- /**
2448
- * Error message in case of invalid JointWaypointsRequest.
2449
- */
2450
- 'message'?: string;
2451
- 'kind': JointWaypointsResponseKindEnum;
2452
- }
2453
- declare const JointWaypointsResponseKindEnum: {
2454
- readonly JointWaypointsReceived: "JOINT_WAYPOINTS_RECEIVED";
2455
- };
2456
- type JointWaypointsResponseKindEnum = typeof JointWaypointsResponseKindEnum[keyof typeof JointWaypointsResponseKindEnum];
2651
+ type JointWaypointKindEnum = typeof JointWaypointKindEnum[keyof typeof JointWaypointKindEnum];
2457
2652
  /**
2458
2653
  * A 6-DOF robot with spherical wrist has up to 8 inverse kinematics solutions for a given TCP pose (2^3 branches). Each branch represents one side of a kinematic singularity boundary. The three binary choices are shoulder, elbow, and wrist. > **NOTE** > > `FRONT`/`BACK`, `UP`/`DOWN`, `NO_FLIP`/`FLIP` are conventional > labels for the two sides of each branch. The labels describe the > typical geometric interpretation for common poses, but are not absolute spatial > directions. The labels are consistent within a given solver: The same physical > arm shape maps to the same branch value. The branch values are purely > geometric and describe the same physical configuration regardless of > vendor convention.
2459
2654
  */
@@ -2515,6 +2710,10 @@ interface KukaConfiguredPose {
2515
2710
  interface KukaController {
2516
2711
  'kind': KukaControllerKindEnum;
2517
2712
  'controller_ip': string;
2713
+ /**
2714
+ * The addresses must be ordered as KLI first and RSI second.
2715
+ */
2716
+ 'network_interface'?: ControllerNetworkInterface;
2518
2717
  'controller_port': number;
2519
2718
  'rsi_server': KukaControllerRsiServer;
2520
2719
  /**
@@ -2635,7 +2834,13 @@ type LicenseStatusEnum = typeof LicenseStatusEnum[keyof typeof LicenseStatusEnum
2635
2834
  * The upper_limit must be greater then the lower_limit.
2636
2835
  */
2637
2836
  interface LimitRange {
2837
+ /**
2838
+ * Lower position limit in rad.
2839
+ */
2638
2840
  'lower_limit'?: number;
2841
+ /**
2842
+ * Upper position limit in rad.
2843
+ */
2639
2844
  'upper_limit'?: number;
2640
2845
  }
2641
2846
  interface LimitSet {
@@ -2722,9 +2927,11 @@ interface ListTrajectoriesResponse {
2722
2927
  }
2723
2928
  declare const Manufacturer: {
2724
2929
  readonly Abb: "abb";
2930
+ readonly Bostondynamics: "bostondynamics";
2725
2931
  readonly Fanuc: "fanuc";
2726
2932
  readonly Kuka: "kuka";
2727
2933
  readonly Staubli: "staubli";
2934
+ readonly Unitree: "unitree";
2728
2935
  readonly Universalrobots: "universalrobots";
2729
2936
  readonly Yaskawa: "yaskawa";
2730
2937
  };
@@ -2773,7 +2980,7 @@ interface MergeTrajectoriesSegment {
2773
2980
  */
2774
2981
  'trajectory': JointTrajectory;
2775
2982
  /**
2776
- * Limits override is used to override the global limits of the motion group for the blending at the end of this segment.
2983
+ * Limits override defines additional limits for the blending at the end of this segment. These limits do not replace the global limits of the motion group. Instead, they are merged with the global limits so that the most restrictive value applies for each limit.
2777
2984
  */
2778
2985
  'limits_override'?: LimitsOverride;
2779
2986
  /**
@@ -2894,7 +3101,7 @@ interface ModelError {
2894
3101
  interface MotionCommand {
2895
3102
  'blending'?: MotionCommandBlending;
2896
3103
  /**
2897
- * Limits override is used to override the global limits of the motion group for this segment of the motion.
3104
+ * Limits override defines additional limits for this segment of the motion. These limits do not replace the global limits of the motion group. Instead, they are merged with the global limits so that the most restrictive value applies for each limit.
2898
3105
  */
2899
3106
  'limits_override'?: LimitsOverride;
2900
3107
  'path': MotionCommandPath;
@@ -2908,6 +3115,27 @@ type MotionCommandBlending = BlendingAuto | BlendingPosition;
2908
3115
  * @type MotionCommandPath
2909
3116
  */
2910
3117
  type MotionCommandPath = PathCartesianPTP | PathCircle | PathCubicSpline | PathDirectionConstrainedCartesianPTP | PathDirectionConstrainedJointPTP | PathJointPTP | PathLine;
3118
+ /**
3119
+ * Response for motion group configuration lookup.
3120
+ */
3121
+ interface MotionGroupConfiguration {
3122
+ /**
3123
+ * Name of the robot configuration containing this motion group.
3124
+ */
3125
+ 'robot_configuration': string;
3126
+ /**
3127
+ * Identifies a single motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported types.
3128
+ */
3129
+ 'motion_group_model': string;
3130
+ /**
3131
+ * Internal UID of the motion group inside the GCI transcript.
3132
+ */
3133
+ 'motion_group_uid': number;
3134
+ /**
3135
+ * Full GCI transcript (JSON) containing the robot configuration and motion group.
3136
+ */
3137
+ 'content': string;
3138
+ }
2911
3139
  /**
2912
3140
  * The configuration of a motion-group used for motion planning. The parameters `mounting`, `kinematic_chain_offset`, `dh_parameters`, `flange_offset` and `tcp_offset` are used to model the kinematic structure of the motion group. They can be used to compute the coordinate transformations from world to tcp frame: [world frame] -> mounting -> [base frame] -> kinematic chain offset + motion group kinematics (Denavit-Hartenberg parameters) -> [end of kinematic chain frame] -> flange_offset -> [flange frame] -> tcp_offset -> [tcp frame].
2913
3141
  */
@@ -2984,7 +3212,7 @@ interface MotionGroupFromJson {
2984
3212
  */
2985
3213
  'motion_group': string;
2986
3214
  /**
2987
- * Full JSON configuration of the virtual robot controller. This can be obtained from the physical controller\'s configuration via [getVirtualControllerConfiguration](#/operations/getVirtualControllerConfiguration).
3215
+ * JSON configuration of the virtual robot controller, can be obtained from the physical controller\'s configuration via [getVirtualControllerConfiguration](#/operations/getVirtualControllerConfiguration).
2988
3216
  */
2989
3217
  'json_data': string;
2990
3218
  /**
@@ -2992,7 +3220,7 @@ interface MotionGroupFromJson {
2992
3220
  */
2993
3221
  'extracted_motion_group_id': string;
2994
3222
  /**
2995
- * Initial joint position of the added motion group. Provides the joint position as a JSON array of float values in radians, where the array length must match the robot\'s degrees of freedom (DOF), e.g., `\"[0, 0, 0, 0, 0, 0]\"` for a 6-DOF robot. If the provided array length does not match the robot\'s DOF, the array will be adjusted: if it is longer, extra values will be truncated; if it is shorter, missing values will be filled with zeros.
3223
+ * Initial joint position of the added motion group. Provides the joint position as a JSON array of float values in radians. The array length must match the robot\'s degrees of freedom, e.g., `\"[0, 0, 0, 0, 0, 0]\"` for a 6-DOF robot. If the provided array length does not match the robot\'s DOF, the array will be adjusted: if it is longer, extra values will be truncated; if it is shorter, missing values will be filled with zeros.
2996
3224
  */
2997
3225
  'initial_joint_position'?: string;
2998
3226
  }
@@ -3006,7 +3234,7 @@ interface MotionGroupFromType {
3006
3234
  */
3007
3235
  'motion_group_model': string;
3008
3236
  /**
3009
- * Initial joint position of the added motion group. Provides the joint position as a JSON array of float values in radians, where the array length must match the robot\'s degrees of freedom (DOF), e.g., `\"[0, 0, 0, 0, 0, 0]\"` for a 6-DOF robot. If the provided array length does not match the robot\'s DOF, the array will be adjusted; if it is longer, extra values will be truncated; if it is shorter, missing values will be filled with zeros.
3237
+ * Initial joint position of the added motion group. Provides the joint position as a JSON array of float values in radians. The array length must match the robot\'s degrees of freedom, e.g., `\"[0, 0, 0, 0, 0, 0]\"` for a 6-DOF robot. If the provided array length does not match the robot\'s DOF, the array will be adjusted; if it is longer, extra values will be truncated; if it is shorter, missing values will be filled with zeros.
3010
3238
  */
3011
3239
  'initial_joint_position'?: string;
3012
3240
  }
@@ -3045,6 +3273,19 @@ interface MotionGroupJoints {
3045
3273
  */
3046
3274
  'torques'?: Array<number>;
3047
3275
  }
3276
+ /**
3277
+ * Entry for a motion group with its name and readable name.
3278
+ */
3279
+ interface MotionGroupModelCatalog {
3280
+ /**
3281
+ * Name of the motion group.
3282
+ */
3283
+ 'motion_group_name': string;
3284
+ /**
3285
+ * Readable name for the motion group.
3286
+ */
3287
+ 'readable_name': string;
3288
+ }
3048
3289
  /**
3049
3290
  * Metadata about a motion group model.
3050
3291
  */
@@ -3123,17 +3364,25 @@ interface MotionGroupState {
3123
3364
  */
3124
3365
  'joint_current'?: Array<number>;
3125
3366
  /**
3126
- * Pose of the flange. Positions are in [mm]. Orientations are in [rad]. The pose is relative to the response_coordinate_system specified in the request. For robot arms, a flange pose is always returned. For positioners, the flange might not be available, depending on the model.
3367
+ * Pose of the flange. Positions are in [mm]. Orientations are in [rad]. The pose is relative to the response coordinate system specified in the request. For robot arms, a flange pose is always returned. For positioners, the flange might not be available, depending on the model.
3127
3368
  */
3128
3369
  'flange_pose'?: Pose;
3370
+ /**
3371
+ * Cartesian velocity of the flange. The velocity is relative to the response coordinate system specified in the request.
3372
+ */
3373
+ 'flange_velocity'?: CartesianVelocity;
3129
3374
  /**
3130
3375
  * Unique identifier addressing the active TCP. Might not be returned for positioners as some do not support TCPs, depending on the model.
3131
3376
  */
3132
3377
  'tcp'?: string;
3133
3378
  /**
3134
- * Pose of the TCP selected on the robot control panel. Positions are in [mm]. Orientations are in [rad]. The pose is relative to the response_coordinate_system specified in the request. Might not be returned for positioners as some do not support TCPs, depending on the model.
3379
+ * Pose of the TCP selected on the robot control panel. Positions are in [mm]. Orientations are in [rad]. The pose is relative to the response coordinate system specified in the request. Might not be returned for positioners as some do not support TCPs, depending on the model.
3135
3380
  */
3136
3381
  'tcp_pose'?: Pose;
3382
+ /**
3383
+ * Cartesian velocity of the TCP selected on the robot control panel. The velocity is relative to the response coordinate system specified in the request.
3384
+ */
3385
+ 'tcp_velocity'?: CartesianVelocity;
3137
3386
  /**
3138
3387
  * Unique identifier addressing the reference coordinate system of the cartesian data. Might not be returned for positioners as some do not support TCPs, depending on the model. Default: world coordinate system of corresponding controller.
3139
3388
  */
@@ -3299,55 +3548,48 @@ interface NanValueErrorNanValue {
3299
3548
  */
3300
3549
  'joint_position'?: Array<number>;
3301
3550
  }
3551
+ /**
3552
+ * Network attachment method used to expose the interface to workloads.
3553
+ */
3554
+ declare const NetworkBackend: {
3555
+ readonly Macvlan: "macvlan";
3556
+ readonly Sriov: "sriov";
3557
+ };
3558
+ type NetworkBackend = typeof NetworkBackend[keyof typeof NetworkBackend];
3302
3559
  interface NetworkDevice {
3303
3560
  /**
3304
- * The IPv4 address assigned to the network device.
3561
+ * IPv4 address of the discovered device.
3305
3562
  */
3306
3563
  'ip': string;
3307
3564
  /**
3308
- * The MAC address of the network device.
3565
+ * MAC address of the discovered device.
3309
3566
  */
3310
3567
  'mac': string;
3311
3568
  /**
3312
- * The vendor of the network device.
3569
+ * Hardware manufacturer name derived from the MAC address, omitted when unknown.
3313
3570
  */
3314
3571
  'vendor'?: string;
3315
3572
  }
3316
3573
  interface NetworkInterface {
3317
3574
  /**
3318
- * The name of the network interface.
3575
+ * Host network interface name, e.g., enp0s31f6.
3319
3576
  */
3320
3577
  'name': string;
3321
3578
  /**
3322
- * The IPv4 address assigned to the network interface.
3323
- */
3324
- 'ip': string;
3325
- /**
3326
- * The MAC address of the network interface.
3579
+ * Stable identifier for this interface. Pass it as the `interface` field in ARP scan request, e.g., wandelbox-abc123-enp3s0.
3327
3580
  */
3328
- 'mac': string;
3581
+ 'interface': string;
3329
3582
  /**
3330
- * The CIDR notation of the network interface. Example: \"192.168.1.0/24\"
3583
+ * Hostname that exposes this interface.
3331
3584
  */
3332
- 'cidr': string;
3585
+ 'node': string;
3586
+ 'backend': NetworkBackend;
3333
3587
  }
3334
3588
  interface NetworkState {
3335
3589
  /**
3336
3590
  * Indicates whether the system is connected to the internet.
3337
3591
  */
3338
3592
  'internet_connected': boolean;
3339
- /**
3340
- * Type of the active network link (e.g., ethernet, wifi, cellular, vpn, unknown).
3341
- */
3342
- 'connection_type'?: NetworkStateConnectionTypeEnum;
3343
- /**
3344
- * Received signal strength in dBm for wireless interfaces; negative values indicate weaker signals.
3345
- */
3346
- 'signal_strength'?: number;
3347
- /**
3348
- * Normalized link quality metric from 0 (poor) to 1 (excellent) when provided by the interface.
3349
- */
3350
- 'link_quality'?: number;
3351
3593
  /**
3352
3594
  * Round-trip latency to the probe endpoint measured in milliseconds.
3353
3595
  */
@@ -3357,14 +3599,6 @@ interface NetworkState {
3357
3599
  */
3358
3600
  'bandwidth_mbps'?: number;
3359
3601
  }
3360
- declare const NetworkStateConnectionTypeEnum: {
3361
- readonly Ethernet: "ethernet";
3362
- readonly Wifi: "wifi";
3363
- readonly Cellular: "cellular";
3364
- readonly Vpn: "vpn";
3365
- readonly Unknown: "unknown";
3366
- };
3367
- type NetworkStateConnectionTypeEnum = typeof NetworkStateConnectionTypeEnum[keyof typeof NetworkStateConnectionTypeEnum];
3368
3602
  /**
3369
3603
  * Controllers have two operating modes: AUTOMATIC and MANUAL. MANUAL mode is mainly used for teaching a robot application. To ensure safe operation the velocity of the robot is limited to 250 mm/s. Running the finished application is done in AUTOMATIC operating mode without the limited velocity of the MANUAL mode.
3370
3604
  */
@@ -3518,6 +3752,33 @@ declare const PathLinePathDefinitionNameEnum: {
3518
3752
  readonly PathLine: "PathLine";
3519
3753
  };
3520
3754
  type PathLinePathDefinitionNameEnum = typeof PathLinePathDefinitionNameEnum[keyof typeof PathLinePathDefinitionNameEnum];
3755
+ /**
3756
+ * Request to pause executing action chunks. If successful, `execute` jogging state in [MotionGroupState](MotionGroupState.yaml) is set to `PAUSED_BY_USER`.
3757
+ */
3758
+ interface PauseActionChunksRequest {
3759
+ /**
3760
+ * Type specifier for server, set automatically.
3761
+ */
3762
+ 'message_type': PauseActionChunksRequestMessageTypeEnum;
3763
+ }
3764
+ declare const PauseActionChunksRequestMessageTypeEnum: {
3765
+ readonly PauseActionChunksRequest: "PauseActionChunksRequest";
3766
+ };
3767
+ type PauseActionChunksRequestMessageTypeEnum = typeof PauseActionChunksRequestMessageTypeEnum[keyof typeof PauseActionChunksRequestMessageTypeEnum];
3768
+ /**
3769
+ * Acknowledgment to a PauseActionChunksRequest.
3770
+ */
3771
+ interface PauseActionChunksResponse {
3772
+ /**
3773
+ * Error message in case of invalid PauseActionChunksRequest.
3774
+ */
3775
+ 'message'?: string;
3776
+ 'kind': PauseActionChunksResponseKindEnum;
3777
+ }
3778
+ declare const PauseActionChunksResponseKindEnum: {
3779
+ readonly PauseReceived: "PAUSE_RECEIVED";
3780
+ };
3781
+ type PauseActionChunksResponseKindEnum = typeof PauseActionChunksResponseKindEnum[keyof typeof PauseActionChunksResponseKindEnum];
3521
3782
  /**
3522
3783
  * Request to pause jogging. If successful, `execute` jogging state in [MotionGroupState](MotionGroupState.yaml) is set to `PAUSED_BY_USER`.
3523
3784
  */
@@ -3631,6 +3892,10 @@ interface PlanCollisionFreeRequest {
3631
3892
  */
3632
3893
  interface PlanCollisionFreeResponse {
3633
3894
  'response': PlanCollisionFreeResponseResponse;
3895
+ /**
3896
+ * The motion commands that produced the trajectory.
3897
+ */
3898
+ 'motion_commands'?: Array<MotionCommand>;
3634
3899
  }
3635
3900
  /**
3636
3901
  * @type PlanCollisionFreeResponseResponse
@@ -3661,6 +3926,10 @@ interface PlanTrajectoryRequest {
3661
3926
  * List of motion commands. A command consists of a path definition (line, circle, joint_ptp, cartesian_ptp, cubic_spline), blending, and limits override.
3662
3927
  */
3663
3928
  'motion_commands': Array<MotionCommand>;
3929
+ /**
3930
+ * <!-- theme: danger --> > > **Experimental** Strategy used to deal with wrist singularities along a cartesian path.
3931
+ */
3932
+ 'singularity_handling'?: SingularityHandling;
3664
3933
  }
3665
3934
  interface PlanTrajectoryResponse {
3666
3935
  'response': PlanTrajectoryResponseResponse;
@@ -3738,49 +4007,22 @@ interface Pose {
3738
4007
  'orientation'?: Array<number>;
3739
4008
  }
3740
4009
  /**
3741
- * A waypoint in Cartesian space for jogging. > **NOTE** > > This type is experimental and its behavior may change in future releases.
4010
+ * A pose waypoint for action chunk streaming. > **NOTE** > > This type is experimental and its behavior may change in future releases.
3742
4011
  */
3743
4012
  interface PoseWaypoint {
3744
4013
  /**
3745
- * Time since session start for when this waypoint should be reached [ms].
4014
+ * Type specifier for server, set automatically.
3746
4015
  */
3747
- 'timestamp': number;
4016
+ 'kind': PoseWaypointKindEnum;
3748
4017
  /**
3749
4018
  * Cartesian pose for this waypoint.
3750
4019
  */
3751
4020
  'pose': Pose;
3752
4021
  }
3753
- /**
3754
- * Adds pose waypoints to the jogging queue. The robot will try to move through each waypoint by best effort. Existing waypoints in the queue that are older than the first new timestamp will be removed. The first message of this kind starts an internal clock. The current session timestamp is reported in `execute.details.jogger_session_timestamp_ms` of the [streamRobotControllerState](#/operations/streamRobotControllerState) endpoint. This can be used for realtime action chunk streaming, e.g., from a Vision-Language-Action (VLA) model. > **NOTE** > > This jogging type is experimental and its behavior may change in future releases.
3755
- */
3756
- interface PoseWaypointsRequest {
3757
- /**
3758
- * Type specifier for server, set automatically.
3759
- */
3760
- 'message_type': PoseWaypointsRequestMessageTypeEnum;
3761
- /**
3762
- * List of pose waypoints.
3763
- */
3764
- 'waypoints': Array<PoseWaypoint>;
3765
- }
3766
- declare const PoseWaypointsRequestMessageTypeEnum: {
3767
- readonly PoseWaypointsRequest: "PoseWaypointsRequest";
4022
+ declare const PoseWaypointKindEnum: {
4023
+ readonly Pose: "POSE";
3768
4024
  };
3769
- type PoseWaypointsRequestMessageTypeEnum = typeof PoseWaypointsRequestMessageTypeEnum[keyof typeof PoseWaypointsRequestMessageTypeEnum];
3770
- /**
3771
- * Acknowledgment to a PoseWaypointsRequest.
3772
- */
3773
- interface PoseWaypointsResponse {
3774
- /**
3775
- * Error message in case of invalid PoseWaypointsRequest.
3776
- */
3777
- 'message'?: string;
3778
- 'kind': PoseWaypointsResponseKindEnum;
3779
- }
3780
- declare const PoseWaypointsResponseKindEnum: {
3781
- readonly PoseWaypointsReceived: "POSE_WAYPOINTS_RECEIVED";
3782
- };
3783
- type PoseWaypointsResponseKindEnum = typeof PoseWaypointsResponseKindEnum[keyof typeof PoseWaypointsResponseKindEnum];
4025
+ type PoseWaypointKindEnum = typeof PoseWaypointKindEnum[keyof typeof PoseWaypointKindEnum];
3784
4026
  interface ProfinetDescription {
3785
4027
  /**
3786
4028
  * The vendor identifier of the PROFINET device, identifying the manufacturer.
@@ -3808,7 +4050,7 @@ interface ProfinetIO {
3808
4050
  */
3809
4051
  'direction': ProfinetIODirection;
3810
4052
  /**
3811
- * The byte address in the PROFINET device\'s process image, with offset 0. The slot is automatically determined based on this address and the configured slot layout. For example, with two slots of 64 bytes each: - Bytes 0-63: Slot 1 - Bytes 64-127: Slot 2 When importing from a tag table, e.g., TIA Portal, use `input_offset`/`output_offset` to convert global PLC addresses to device-local addresses: `device_byte_address` = `plc_byte_address` - offset
4053
+ * The byte address in the PROFINET device\'s process image, with offset 0. The slot is automatically determined based on this address and the configured slot layout. For example, with two slots of 64 bytes each: - Bytes 0-63: Slot 1 - Bytes 64-127: Slot 2 When importing from a tag table, e.g., TIA Portal, use per-slot `offsets` (or the deprecated `input_offset`/`output_offset`) to convert global PLC addresses to device-local addresses: `device_byte_address` = `plc_byte_address` - offset
3812
4054
  */
3813
4055
  'byte_address': number;
3814
4056
  /**
@@ -3831,7 +4073,7 @@ interface ProfinetIOData {
3831
4073
  */
3832
4074
  'direction': ProfinetIODirection;
3833
4075
  /**
3834
- * The byte address in the PROFINET device\'s process image, with offset 0. The slot is automatically determined based on this address and the configured slot layout. For example, with two slots of 64 bytes each: - Bytes 0-63: Slot 1 - Bytes 64-127: Slot 2 When importing from a tag table, e.g., TIA Portal, use `input_offset`/`output_offset` to convert global PLC addresses to device-local addresses: `device_byte_address` = `plc_byte_address` - offset
4076
+ * The byte address in the PROFINET device\'s process image, with offset 0. The slot is automatically determined based on this address and the configured slot layout. For example, with two slots of 64 bytes each: - Bytes 0-63: Slot 1 - Bytes 64-127: Slot 2 When importing from a tag table, e.g., TIA Portal, use per-slot `offsets` (or the deprecated `input_offset`/`output_offset`) to convert global PLC addresses to device-local addresses: `device_byte_address` = `plc_byte_address` - offset
3835
4077
  */
3836
4078
  'byte_address': number;
3837
4079
  /**
@@ -3870,13 +4112,19 @@ interface ProfinetInputOutputConfig {
3870
4112
  */
3871
4113
  'config': string;
3872
4114
  /**
3873
- * Offset in bytes for the address of the input (perspective of the controller) variables. The offset will be subtracted from to the byte addresses of the sent XML content.
4115
+ * Per-slot offsets for translating controller addresses to PROFINET device-local byte addresses. Use this field for multi-slot devices. If omitted, the deprecated `input_offset` and `output_offset` fields are used for backward compatibility.
3874
4116
  */
3875
- 'input_offset': number;
4117
+ 'offsets'?: Array<ProfinetSlotOffset>;
4118
+ /**
4119
+ * Offset in bytes for the addresses of input variables from the perspective of the controller. This field is deprecated and replaced by `offsets` to support per-slot offsets. The offset is subtracted from the byte addresses of the sent XML content.
4120
+ * @deprecated
4121
+ */
4122
+ 'input_offset'?: number;
3876
4123
  /**
3877
- * Offset in bytes for the address of the output (perspective of the controller) variables. The offset will be subtracted from to the byte addresses of the sent XML content.
4124
+ * Offset in bytes for the addresses of output variables from the perspective of the controller. This field is deprecated and replaced by `offsets` to support per-slot offsets. The offset is subtracted from the byte addresses of the sent XML content.
4125
+ * @deprecated
3878
4126
  */
3879
- 'output_offset': number;
4127
+ 'output_offset'?: number;
3880
4128
  }
3881
4129
  /**
3882
4130
  * An array of PROFINET slots. PROFINET models each device’s input/output hardware as a hierarchy of slots (modules) and subslots (submodules). A slot can represent a physical or virtual input/output card and each subslot one of its individual channels or functions. Every slot and subslot has unique identifiers that the controller uses to map cyclic input/output data and parameter records to its process image. This slot/subslot separation enables e.g., addressing each input/output stream when establishing input/output application relations (I/O-AR).
@@ -3895,6 +4143,20 @@ interface ProfinetSlotDescription {
3895
4143
  */
3896
4144
  'subslots': Array<ProfinetSubSlotDescription>;
3897
4145
  }
4146
+ interface ProfinetSlotOffset {
4147
+ /**
4148
+ * The number/index of the PROFINET slot these offsets apply to. Per default, slot 0 is reserved for the device access point (DAP). Slots that are part of the cyclic input/output data exchange start at number 1.
4149
+ */
4150
+ 'slot': number;
4151
+ /**
4152
+ * This slot\'s offset in bytes for the addresses of input variables from the perspective of the controller. For imported tag tables, this offset is subtracted from the controller byte addresses.
4153
+ */
4154
+ 'input_offset': number;
4155
+ /**
4156
+ * This slot\'s offset in bytes for the addresses of output variables from the perspective of the controller. For imported tag tables, this offset is subtracted from the controller byte addresses.
4157
+ */
4158
+ 'output_offset': number;
4159
+ }
3898
4160
  interface ProfinetSubSlotDescription {
3899
4161
  /**
3900
4162
  * The number/index of the PROFINET subslot.
@@ -4148,7 +4410,7 @@ interface RobotController {
4148
4410
  /**
4149
4411
  * @type RobotControllerConfiguration
4150
4412
  */
4151
- type RobotControllerConfiguration = AbbController | FanucController | KukaController | UniversalrobotsController | VirtualController | YaskawaController;
4413
+ type RobotControllerConfiguration = AbbController | BostondynamicsController | FanucController | KukaController | StaubliController | UnitreeController | UniversalrobotsController | VirtualController | YaskawaController;
4152
4414
  /**
4153
4415
  * Information to generate all robot controller configurations that match a given ARP scan result.
4154
4416
  */
@@ -4544,6 +4806,15 @@ declare const SettableRobotSystemMode: {
4544
4806
  readonly ModeControl: "MODE_CONTROL";
4545
4807
  };
4546
4808
  type SettableRobotSystemMode = typeof SettableRobotSystemMode[keyof typeof SettableRobotSystemMode];
4809
+ /**
4810
+ * <!-- 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.
4811
+ */
4812
+ declare const SingularityHandling: {
4813
+ readonly None: "NONE";
4814
+ readonly PalletizingWrist: "PALLETIZING_WRIST";
4815
+ readonly AdaptiveSampling: "ADAPTIVE_SAMPLING";
4816
+ };
4817
+ type SingularityHandling = typeof SingularityHandling[keyof typeof SingularityHandling];
4547
4818
  declare const SingularityTypeEnum: {
4548
4819
  readonly Wrist: "WRIST";
4549
4820
  readonly Elbow: "ELBOW";
@@ -4705,6 +4976,55 @@ interface StartOnIO {
4705
4976
  'comparator': Comparator;
4706
4977
  'io_origin': IOOrigin;
4707
4978
  }
4979
+ /**
4980
+ * The configuration of a physical STÄUBLI robot controller has to contain an IP address. Additionally, an RTI server configuration has to be specified in order to control the robot. Deploying the server is a functionality of this API.
4981
+ */
4982
+ interface StaubliController {
4983
+ 'kind': StaubliControllerKindEnum;
4984
+ 'controller_ip': string;
4985
+ 'network_interface'?: ControllerNetworkInterface;
4986
+ 'controller_port': number;
4987
+ 'command_port': number;
4988
+ 'rti_server': StaubliControllerRtiServer;
4989
+ }
4990
+ declare const StaubliControllerKindEnum: {
4991
+ readonly StaubliController: "StaubliController";
4992
+ };
4993
+ type StaubliControllerKindEnum = typeof StaubliControllerKindEnum[keyof typeof StaubliControllerKindEnum];
4994
+ /**
4995
+ * The RTI server runs inside of the cell.
4996
+ */
4997
+ interface StaubliControllerRtiServer {
4998
+ 'ip': string;
4999
+ 'port': number;
5000
+ }
5001
+ /**
5002
+ * Request to stop executing action chunks. If successful, `execute` jogging state in [MotionGroupState](MotionGroupState.yaml) is set to `PAUSED_BY_USER`.
5003
+ */
5004
+ interface StopActionChunksRequest {
5005
+ /**
5006
+ * Type specifier for server, set automatically.
5007
+ */
5008
+ 'message_type': StopActionChunksRequestMessageTypeEnum;
5009
+ }
5010
+ declare const StopActionChunksRequestMessageTypeEnum: {
5011
+ readonly StopActionChunksRequest: "StopActionChunksRequest";
5012
+ };
5013
+ type StopActionChunksRequestMessageTypeEnum = typeof StopActionChunksRequestMessageTypeEnum[keyof typeof StopActionChunksRequestMessageTypeEnum];
5014
+ /**
5015
+ * Acknowledgment to a StopActionChunksRequest.
5016
+ */
5017
+ interface StopActionChunksResponse {
5018
+ /**
5019
+ * Error message in case of invalid StopActionChunksRequest.
5020
+ */
5021
+ 'message'?: string;
5022
+ 'kind': StopActionChunksResponseKindEnum;
5023
+ }
5024
+ declare const StopActionChunksResponseKindEnum: {
5025
+ readonly StopReceived: "STOP_RECEIVED";
5026
+ };
5027
+ type StopActionChunksResponseKindEnum = typeof StopActionChunksResponseKindEnum[keyof typeof StopActionChunksResponseKindEnum];
4708
5028
  /**
4709
5029
  * A reference to an object stored in the storage service. The key is resolved against the appropriate S3 path prefix depending on context (e.g. collision/setups/, collision/colliders/).
4710
5030
  */
@@ -4985,17 +5305,82 @@ declare const UnitType: {
4985
5305
  readonly UnitMeter: "UNIT_METER";
4986
5306
  };
4987
5307
  type UnitType = typeof UnitType[keyof typeof UnitType];
5308
+ /**
5309
+ * The configuration of a Unitree robot controller. Supports Go2, G1, B2, and H1 robot models. Requires the IP address of the robot and the robot model type.
5310
+ */
5311
+ interface UnitreeController {
5312
+ 'kind': UnitreeControllerKindEnum;
5313
+ /**
5314
+ * The IP address of the Unitree robot.
5315
+ */
5316
+ 'controller_ip': string;
5317
+ /**
5318
+ * The Unitree robot model type.
5319
+ */
5320
+ 'robot_type': UnitreeControllerRobotTypeEnum;
5321
+ /**
5322
+ * The network interface used for DDS discovery.
5323
+ */
5324
+ 'network_interface'?: string;
5325
+ /**
5326
+ * Enable DDS unicast mode for environments where multicast is unavailable.
5327
+ */
5328
+ 'dds_unicast_mode'?: boolean;
5329
+ /**
5330
+ * Enable exclusive lease-based control of the robot.
5331
+ */
5332
+ 'enable_lease'?: boolean;
5333
+ }
5334
+ declare const UnitreeControllerKindEnum: {
5335
+ readonly UnitreeController: "UnitreeController";
5336
+ };
5337
+ type UnitreeControllerKindEnum = typeof UnitreeControllerKindEnum[keyof typeof UnitreeControllerKindEnum];
5338
+ declare const UnitreeControllerRobotTypeEnum: {
5339
+ readonly Go2: "go2";
5340
+ readonly G1: "g1";
5341
+ readonly B2: "b2";
5342
+ readonly H1: "h1";
5343
+ };
5344
+ type UnitreeControllerRobotTypeEnum = typeof UnitreeControllerRobotTypeEnum[keyof typeof UnitreeControllerRobotTypeEnum];
4988
5345
  /**
4989
5346
  * The configuration of a physical Universal Robots controller has to contain IP address of the controller.
4990
5347
  */
4991
5348
  interface UniversalrobotsController {
4992
5349
  'kind': UniversalrobotsControllerKindEnum;
4993
5350
  'controller_ip': string;
5351
+ 'network_interface'?: ControllerNetworkInterface;
4994
5352
  }
4995
5353
  declare const UniversalrobotsControllerKindEnum: {
4996
5354
  readonly UniversalrobotsController: "UniversalrobotsController";
4997
5355
  };
4998
5356
  type UniversalrobotsControllerKindEnum = typeof UniversalrobotsControllerKindEnum[keyof typeof UniversalrobotsControllerKindEnum];
5357
+ /**
5358
+ * Request to unpause executing action chunks. If successful, `execute` jogging state in [MotionGroupState](MotionGroupState.yaml) is set to `RUNNING`.
5359
+ */
5360
+ interface UnpauseActionChunksRequest {
5361
+ /**
5362
+ * Type specifier for server, set automatically.
5363
+ */
5364
+ 'message_type': UnpauseActionChunksRequestMessageTypeEnum;
5365
+ }
5366
+ declare const UnpauseActionChunksRequestMessageTypeEnum: {
5367
+ readonly UnpauseActionChunksRequest: "UnpauseActionChunksRequest";
5368
+ };
5369
+ type UnpauseActionChunksRequestMessageTypeEnum = typeof UnpauseActionChunksRequestMessageTypeEnum[keyof typeof UnpauseActionChunksRequestMessageTypeEnum];
5370
+ /**
5371
+ * Acknowledgment to an UnpauseActionChunksRequest.
5372
+ */
5373
+ interface UnpauseActionChunksResponse {
5374
+ /**
5375
+ * Error message in case of invalid UnpauseActionChunksRequest.
5376
+ */
5377
+ 'message'?: string;
5378
+ 'kind': UnpauseActionChunksResponseKindEnum;
5379
+ }
5380
+ declare const UnpauseActionChunksResponseKindEnum: {
5381
+ readonly UnpauseReceived: "UNPAUSE_RECEIVED";
5382
+ };
5383
+ type UnpauseActionChunksResponseKindEnum = typeof UnpauseActionChunksResponseKindEnum[keyof typeof UnpauseActionChunksResponseKindEnum];
4999
5384
  /**
5000
5385
  * Update a single cell\'s Foundation chart version based on the indicated release channel.
5001
5386
  */
@@ -5064,9 +5449,13 @@ interface VirtualController {
5064
5449
  */
5065
5450
  'json'?: string;
5066
5451
  /**
5067
- * Initial joint position of the first motion group from the virtual robot controller. Provides the joint position as a JSON array of float values in radians, where the array length must match the robot\'s degrees of freedom (DOF), e.g., `\"[0, 0, 0, 0, 0, 0]\"` for a 6-DOF robot. If the provided array length does not match the robot\'s DOF, the array will be adjusted: if it is longer, extra values will be truncated; if it is shorter, missing values will be filled with zeros.
5452
+ * Initial joint position of the first motion group from the virtual robot controller. Provides the joint position as a JSON array of float values in radians. The array length must match the robot\'s degrees of freedom, e.g., `\"[0, 0, 0, 0, 0, 0]\"` for a 6-DOF robot. If the provided array length does not match the robot\'s DOF, the array will be adjusted: if it is longer, extra values will be truncated; if it is shorter, missing values will be filled with zeros.
5068
5453
  */
5069
5454
  'initial_joint_position'?: string;
5455
+ /**
5456
+ * Adds a motion group configuration for the virtual robot controller. > **NOTE** > > Set only one of the two options, **motion_group_model**, or **json_data** - **motion_group_model**: Identifies a single motion group. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported types - **json_data**: JSON configuration of the virtual robot controller, can be obtained from the physical controller\'s configuration via [getVirtualControllerConfiguration](#/operations/getVirtualControllerConfiguration) - **extracted_motion_group_id**: Motion group identifier to extract from the provided JSON configuration, required when using json_data - **motion_group**: Unique identifier for the motion group - **initial_joint_position**: Specifies the initial joint position for the added motion group
5457
+ */
5458
+ 'motion_groups'?: Array<AddVirtualControllerMotionGroupRequest>;
5070
5459
  }
5071
5460
  declare const VirtualControllerKindEnum: {
5072
5461
  readonly VirtualController: "VirtualController";
@@ -5092,12 +5481,35 @@ interface WaitForIOEventRequest {
5092
5481
  */
5093
5482
  'comparator': Comparator;
5094
5483
  }
5484
+ /**
5485
+ * A waypoint for action chunk streaming. > **NOTE** > > This type is experimental and its behavior may change in future releases.
5486
+ */
5487
+ interface Waypoint {
5488
+ /**
5489
+ * Exact timestamp [ms] at which the waypoint should be reached, relative to the start of the session.
5490
+ */
5491
+ 'timestamp': number;
5492
+ /**
5493
+ * Coordinates for this waypoint.
5494
+ */
5495
+ 'waypoint': WaypointCoordinates;
5496
+ }
5497
+ /**
5498
+ * @type WaypointCoordinates
5499
+ * Coordinates for an action chunk streaming waypoint. > **NOTE** > > This type is experimental and its behavior may change in future releases.
5500
+ */
5501
+ type WaypointCoordinates = {
5502
+ kind: 'JOINTS';
5503
+ } & JointWaypoint | {
5504
+ kind: 'POSE';
5505
+ } & PoseWaypoint;
5095
5506
  /**
5096
5507
  * The configuration of a physical Yaskawa robot controller has to contain IP address of the controller.
5097
5508
  */
5098
5509
  interface YaskawaController {
5099
5510
  'kind': YaskawaControllerKindEnum;
5100
5511
  'controller_ip': string;
5512
+ 'network_interface'?: ControllerNetworkInterface;
5101
5513
  }
5102
5514
  declare const YaskawaControllerKindEnum: {
5103
5515
  readonly YaskawaController: "YaskawaController";
@@ -5130,6 +5542,66 @@ interface ZodValidationErrorErrorDetailsInner {
5130
5542
  * @type ZodValidationErrorErrorDetailsInnerPathInner
5131
5543
  */
5132
5544
  type ZodValidationErrorErrorDetailsInnerPathInner = number | string;
5545
+ /**
5546
+ * ActionChunkStreamingApi - axios parameter creator
5547
+ */
5548
+ declare const ActionChunkStreamingApiAxiosParamCreator: (configuration?: Configuration) => {
5549
+ /**
5550
+ * **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.
5551
+ * @summary Execute Action Chunks
5552
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
5553
+ * @param {string} controller Unique identifier to address a controller in the cell.
5554
+ * @param {ExecuteActionChunksRequest} executeActionChunksRequest
5555
+ * @param {*} [options] Override http request option.
5556
+ * @throws {RequiredError}
5557
+ */
5558
+ executeActionChunks: (cell: string, controller: string, executeActionChunksRequest: ExecuteActionChunksRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5559
+ };
5560
+ /**
5561
+ * ActionChunkStreamingApi - functional programming interface
5562
+ */
5563
+ declare const ActionChunkStreamingApiFp: (configuration?: Configuration) => {
5564
+ /**
5565
+ * **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.
5566
+ * @summary Execute Action Chunks
5567
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
5568
+ * @param {string} controller Unique identifier to address a controller in the cell.
5569
+ * @param {ExecuteActionChunksRequest} executeActionChunksRequest
5570
+ * @param {*} [options] Override http request option.
5571
+ * @throws {RequiredError}
5572
+ */
5573
+ executeActionChunks(cell: string, controller: string, executeActionChunksRequest: ExecuteActionChunksRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ExecuteActionChunksResponse>>;
5574
+ };
5575
+ /**
5576
+ * ActionChunkStreamingApi - factory interface
5577
+ */
5578
+ declare const ActionChunkStreamingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
5579
+ /**
5580
+ * **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.
5581
+ * @summary Execute Action Chunks
5582
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
5583
+ * @param {string} controller Unique identifier to address a controller in the cell.
5584
+ * @param {ExecuteActionChunksRequest} executeActionChunksRequest
5585
+ * @param {*} [options] Override http request option.
5586
+ * @throws {RequiredError}
5587
+ */
5588
+ executeActionChunks(cell: string, controller: string, executeActionChunksRequest: ExecuteActionChunksRequest, options?: RawAxiosRequestConfig): AxiosPromise<ExecuteActionChunksResponse>;
5589
+ };
5590
+ /**
5591
+ * ActionChunkStreamingApi - object-oriented interface
5592
+ */
5593
+ declare class ActionChunkStreamingApi extends BaseAPI {
5594
+ /**
5595
+ * **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.
5596
+ * @summary Execute Action Chunks
5597
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
5598
+ * @param {string} controller Unique identifier to address a controller in the cell.
5599
+ * @param {ExecuteActionChunksRequest} executeActionChunksRequest
5600
+ * @param {*} [options] Override http request option.
5601
+ * @throws {RequiredError}
5602
+ */
5603
+ executeActionChunks(cell: string, controller: string, executeActionChunksRequest: ExecuteActionChunksRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ExecuteActionChunksResponse, any, {}>>;
5604
+ }
5133
5605
  /**
5134
5606
  * ApplicationApi - axios parameter creator
5135
5607
  */
@@ -5524,15 +5996,16 @@ declare const BUSInputsOutputsApiAxiosParamCreator: (configuration?: Configurati
5524
5996
  */
5525
5997
  getProfinetGSDML: (cell: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5526
5998
  /**
5527
- * **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.
5999
+ * **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.
5528
6000
  * @summary PROFINET Inputs/Outputs to File
5529
6001
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6002
+ * @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.
5530
6003
  * @param {number} [inputOffset]
5531
6004
  * @param {number} [outputOffset]
5532
6005
  * @param {*} [options] Override http request option.
5533
6006
  * @throws {RequiredError}
5534
6007
  */
5535
- getProfinetIOsFromFile: (cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6008
+ getProfinetIOsFromFile: (cell: string, offsets?: Array<ProfinetSlotOffset>, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5536
6009
  /**
5537
6010
  * **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.
5538
6011
  * @summary List Descriptions
@@ -5730,15 +6203,16 @@ declare const BUSInputsOutputsApiFp: (configuration?: Configuration) => {
5730
6203
  */
5731
6204
  getProfinetGSDML(cell: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
5732
6205
  /**
5733
- * **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.
6206
+ * **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.
5734
6207
  * @summary PROFINET Inputs/Outputs to File
5735
6208
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6209
+ * @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.
5736
6210
  * @param {number} [inputOffset]
5737
6211
  * @param {number} [outputOffset]
5738
6212
  * @param {*} [options] Override http request option.
5739
6213
  * @throws {RequiredError}
5740
6214
  */
5741
- getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
6215
+ getProfinetIOsFromFile(cell: string, offsets?: Array<ProfinetSlotOffset>, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
5742
6216
  /**
5743
6217
  * **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.
5744
6218
  * @summary List Descriptions
@@ -5936,15 +6410,16 @@ declare const BUSInputsOutputsApiFactory: (configuration?: Configuration, basePa
5936
6410
  */
5937
6411
  getProfinetGSDML(cell: string, options?: RawAxiosRequestConfig): AxiosPromise<string>;
5938
6412
  /**
5939
- * **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.
6413
+ * **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.
5940
6414
  * @summary PROFINET Inputs/Outputs to File
5941
6415
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6416
+ * @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.
5942
6417
  * @param {number} [inputOffset]
5943
6418
  * @param {number} [outputOffset]
5944
6419
  * @param {*} [options] Override http request option.
5945
6420
  * @throws {RequiredError}
5946
6421
  */
5947
- getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): AxiosPromise<string>;
6422
+ getProfinetIOsFromFile(cell: string, offsets?: Array<ProfinetSlotOffset>, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): AxiosPromise<string>;
5948
6423
  /**
5949
6424
  * **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.
5950
6425
  * @summary List Descriptions
@@ -6142,15 +6617,16 @@ declare class BUSInputsOutputsApi extends BaseAPI {
6142
6617
  */
6143
6618
  getProfinetGSDML(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string, any, {}>>;
6144
6619
  /**
6145
- * **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.
6620
+ * **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.
6146
6621
  * @summary PROFINET Inputs/Outputs to File
6147
6622
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6623
+ * @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.
6148
6624
  * @param {number} [inputOffset]
6149
6625
  * @param {number} [outputOffset]
6150
6626
  * @param {*} [options] Override http request option.
6151
6627
  * @throws {RequiredError}
6152
6628
  */
6153
- getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string, any, {}>>;
6629
+ getProfinetIOsFromFile(cell: string, offsets?: Array<ProfinetSlotOffset>, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string, any, {}>>;
6154
6630
  /**
6155
6631
  * **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.
6156
6632
  * @summary List Descriptions
@@ -6234,7 +6710,7 @@ declare const CellApiAxiosParamCreator: (configuration?: Configuration) => {
6234
6710
  */
6235
6711
  deployCell: (cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6236
6712
  /**
6237
- * **Required permissions:** `can_access_cells` - View cell configurations and resources ___ List all cell resources.
6713
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ List all cell resources.
6238
6714
  * @summary Configuration
6239
6715
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6240
6716
  * @param {*} [options] Override http request option.
@@ -6317,7 +6793,7 @@ declare const CellApiFp: (configuration?: Configuration) => {
6317
6793
  */
6318
6794
  deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
6319
6795
  /**
6320
- * **Required permissions:** `can_access_cells` - View cell configurations and resources ___ List all cell resources.
6796
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ List all cell resources.
6321
6797
  * @summary Configuration
6322
6798
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6323
6799
  * @param {*} [options] Override http request option.
@@ -6400,7 +6876,7 @@ declare const CellApiFactory: (configuration?: Configuration, basePath?: string,
6400
6876
  */
6401
6877
  deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
6402
6878
  /**
6403
- * **Required permissions:** `can_access_cells` - View cell configurations and resources ___ List all cell resources.
6879
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ List all cell resources.
6404
6880
  * @summary Configuration
6405
6881
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6406
6882
  * @param {*} [options] Override http request option.
@@ -6483,7 +6959,7 @@ declare class CellApi extends BaseAPI {
6483
6959
  */
6484
6960
  deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
6485
6961
  /**
6486
- * **Required permissions:** `can_access_cells` - View cell configurations and resources ___ List all cell resources.
6962
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ List all cell resources.
6487
6963
  * @summary Configuration
6488
6964
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6489
6965
  * @param {*} [options] Override http request option.
@@ -7344,16 +7820,6 @@ declare const JoggingApiAxiosParamCreator: (configuration?: Configuration) => {
7344
7820
  * @throws {RequiredError}
7345
7821
  */
7346
7822
  executeJogging: (cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7347
- /**
7348
- * **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.
7349
- * @summary Execute Waypoint Jogging
7350
- * @param {string} cell Unique identifier addressing a cell in all API calls.
7351
- * @param {string} controller Unique identifier to address a controller in the cell.
7352
- * @param {ExecuteWaypointJoggingRequest} executeWaypointJoggingRequest
7353
- * @param {*} [options] Override http request option.
7354
- * @throws {RequiredError}
7355
- */
7356
- executeWaypointJogging: (cell: string, controller: string, executeWaypointJoggingRequest: ExecuteWaypointJoggingRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7357
7823
  };
7358
7824
  /**
7359
7825
  * JoggingApi - functional programming interface
@@ -7369,16 +7835,6 @@ declare const JoggingApiFp: (configuration?: Configuration) => {
7369
7835
  * @throws {RequiredError}
7370
7836
  */
7371
7837
  executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ExecuteJoggingResponse>>;
7372
- /**
7373
- * **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.
7374
- * @summary Execute Waypoint Jogging
7375
- * @param {string} cell Unique identifier addressing a cell in all API calls.
7376
- * @param {string} controller Unique identifier to address a controller in the cell.
7377
- * @param {ExecuteWaypointJoggingRequest} executeWaypointJoggingRequest
7378
- * @param {*} [options] Override http request option.
7379
- * @throws {RequiredError}
7380
- */
7381
- executeWaypointJogging(cell: string, controller: string, executeWaypointJoggingRequest: ExecuteWaypointJoggingRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ExecuteWaypointJoggingResponse>>;
7382
7838
  };
7383
7839
  /**
7384
7840
  * JoggingApi - factory interface
@@ -7394,16 +7850,6 @@ declare const JoggingApiFactory: (configuration?: Configuration, basePath?: stri
7394
7850
  * @throws {RequiredError}
7395
7851
  */
7396
7852
  executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): AxiosPromise<ExecuteJoggingResponse>;
7397
- /**
7398
- * **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.
7399
- * @summary Execute Waypoint Jogging
7400
- * @param {string} cell Unique identifier addressing a cell in all API calls.
7401
- * @param {string} controller Unique identifier to address a controller in the cell.
7402
- * @param {ExecuteWaypointJoggingRequest} executeWaypointJoggingRequest
7403
- * @param {*} [options] Override http request option.
7404
- * @throws {RequiredError}
7405
- */
7406
- executeWaypointJogging(cell: string, controller: string, executeWaypointJoggingRequest: ExecuteWaypointJoggingRequest, options?: RawAxiosRequestConfig): AxiosPromise<ExecuteWaypointJoggingResponse>;
7407
7853
  };
7408
7854
  /**
7409
7855
  * JoggingApi - object-oriented interface
@@ -7419,16 +7865,6 @@ declare class JoggingApi extends BaseAPI {
7419
7865
  * @throws {RequiredError}
7420
7866
  */
7421
7867
  executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ExecuteJoggingResponse, any, {}>>;
7422
- /**
7423
- * **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.
7424
- * @summary Execute Waypoint Jogging
7425
- * @param {string} cell Unique identifier addressing a cell in all API calls.
7426
- * @param {string} controller Unique identifier to address a controller in the cell.
7427
- * @param {ExecuteWaypointJoggingRequest} executeWaypointJoggingRequest
7428
- * @param {*} [options] Override http request option.
7429
- * @throws {RequiredError}
7430
- */
7431
- executeWaypointJogging(cell: string, controller: string, executeWaypointJoggingRequest: ExecuteWaypointJoggingRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ExecuteWaypointJoggingResponse, any, {}>>;
7432
7868
  }
7433
7869
  /**
7434
7870
  * KinematicsApi - axios parameter creator
@@ -7461,6 +7897,15 @@ declare const KinematicsApiAxiosParamCreator: (configuration?: Configuration) =>
7461
7897
  * @throws {RequiredError}
7462
7898
  */
7463
7899
  forwardKinematics: (cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7900
+ /**
7901
+ * **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.
7902
+ * @summary Get kinematic configuration
7903
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
7904
+ * @param {GetKinematicConfigurationRequest} getKinematicConfigurationRequest
7905
+ * @param {*} [options] Override http request option.
7906
+ * @throws {RequiredError}
7907
+ */
7908
+ getKinematicConfiguration: (cell: string, getKinematicConfigurationRequest: GetKinematicConfigurationRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7464
7909
  /**
7465
7910
  * **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the reachable joint positions for a list of given poses.
7466
7911
  * @summary Inverse kinematics
@@ -7511,6 +7956,15 @@ declare const KinematicsApiFp: (configuration?: Configuration) => {
7511
7956
  * @throws {RequiredError}
7512
7957
  */
7513
7958
  forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ForwardKinematicsResponse>>;
7959
+ /**
7960
+ * **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.
7961
+ * @summary Get kinematic configuration
7962
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
7963
+ * @param {GetKinematicConfigurationRequest} getKinematicConfigurationRequest
7964
+ * @param {*} [options] Override http request option.
7965
+ * @throws {RequiredError}
7966
+ */
7967
+ getKinematicConfiguration(cell: string, getKinematicConfigurationRequest: GetKinematicConfigurationRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetKinematicConfigurationResponse>>;
7514
7968
  /**
7515
7969
  * **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the reachable joint positions for a list of given poses.
7516
7970
  * @summary Inverse kinematics
@@ -7561,6 +8015,15 @@ declare const KinematicsApiFactory: (configuration?: Configuration, basePath?: s
7561
8015
  * @throws {RequiredError}
7562
8016
  */
7563
8017
  forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ForwardKinematicsResponse>;
8018
+ /**
8019
+ * **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.
8020
+ * @summary Get kinematic configuration
8021
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
8022
+ * @param {GetKinematicConfigurationRequest} getKinematicConfigurationRequest
8023
+ * @param {*} [options] Override http request option.
8024
+ * @throws {RequiredError}
8025
+ */
8026
+ getKinematicConfiguration(cell: string, getKinematicConfigurationRequest: GetKinematicConfigurationRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetKinematicConfigurationResponse>;
7564
8027
  /**
7565
8028
  * **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the reachable joint positions for a list of given poses.
7566
8029
  * @summary Inverse kinematics
@@ -7611,6 +8074,15 @@ declare class KinematicsApi extends BaseAPI {
7611
8074
  * @throws {RequiredError}
7612
8075
  */
7613
8076
  forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ForwardKinematicsResponse, any, {}>>;
8077
+ /**
8078
+ * **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.
8079
+ * @summary Get kinematic configuration
8080
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
8081
+ * @param {GetKinematicConfigurationRequest} getKinematicConfigurationRequest
8082
+ * @param {*} [options] Override http request option.
8083
+ * @throws {RequiredError}
8084
+ */
8085
+ getKinematicConfiguration(cell: string, getKinematicConfigurationRequest: GetKinematicConfigurationRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<GetKinematicConfigurationResponse, any, {}>>;
7614
8086
  /**
7615
8087
  * **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the reachable joint positions for a list of given poses.
7616
8088
  * @summary Inverse kinematics
@@ -7932,7 +8404,7 @@ declare const MotionGroupModelsApiAxiosParamCreator: (configuration?: Configurat
7932
8404
  */
7933
8405
  copyMotionGroupModel: (motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7934
8406
  /**
7935
- * **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.
8407
+ * **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.
7936
8408
  * @summary Delete Motion Group Model
7937
8409
  * @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).
7938
8410
  * @param {*} [options] Override http request option.
@@ -7947,6 +8419,14 @@ declare const MotionGroupModelsApiAxiosParamCreator: (configuration?: Configurat
7947
8419
  * @throws {RequiredError}
7948
8420
  */
7949
8421
  exportMotionGroupModel: (motionGroupModel: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8422
+ /**
8423
+ * **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.
8424
+ * @summary Get Configuration for Motion Group
8425
+ * @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).
8426
+ * @param {*} [options] Override http request option.
8427
+ * @throws {RequiredError}
8428
+ */
8429
+ getConfigurationForMotionGroup: (motionGroupModel: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7950
8430
  /**
7951
8431
  * **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.
7952
8432
  * @summary Get Collision Model
@@ -8002,6 +8482,13 @@ declare const MotionGroupModelsApiAxiosParamCreator: (configuration?: Configurat
8002
8482
  * @throws {RequiredError}
8003
8483
  */
8004
8484
  getMotionGroupModels: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8485
+ /**
8486
+ * **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.
8487
+ * @summary Motion Group Model Catalog
8488
+ * @param {*} [options] Override http request option.
8489
+ * @throws {RequiredError}
8490
+ */
8491
+ getMotionGroupModelsCatalog: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8005
8492
  /**
8006
8493
  * **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.
8007
8494
  * @summary Download USD Model
@@ -8033,7 +8520,7 @@ declare const MotionGroupModelsApiFp: (configuration?: Configuration) => {
8033
8520
  */
8034
8521
  copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MotionGroupModelDescription>>;
8035
8522
  /**
8036
- * **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.
8523
+ * **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.
8037
8524
  * @summary Delete Motion Group Model
8038
8525
  * @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).
8039
8526
  * @param {*} [options] Override http request option.
@@ -8048,6 +8535,14 @@ declare const MotionGroupModelsApiFp: (configuration?: Configuration) => {
8048
8535
  * @throws {RequiredError}
8049
8536
  */
8050
8537
  exportMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
8538
+ /**
8539
+ * **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.
8540
+ * @summary Get Configuration for Motion Group
8541
+ * @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).
8542
+ * @param {*} [options] Override http request option.
8543
+ * @throws {RequiredError}
8544
+ */
8545
+ getConfigurationForMotionGroup(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MotionGroupConfiguration>>;
8051
8546
  /**
8052
8547
  * **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.
8053
8548
  * @summary Get Collision Model
@@ -8105,6 +8600,13 @@ declare const MotionGroupModelsApiFp: (configuration?: Configuration) => {
8105
8600
  * @throws {RequiredError}
8106
8601
  */
8107
8602
  getMotionGroupModels(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<string>>>;
8603
+ /**
8604
+ * **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.
8605
+ * @summary Motion Group Model Catalog
8606
+ * @param {*} [options] Override http request option.
8607
+ * @throws {RequiredError}
8608
+ */
8609
+ getMotionGroupModelsCatalog(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MotionGroupModelCatalog>>>;
8108
8610
  /**
8109
8611
  * **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.
8110
8612
  * @summary Download USD Model
@@ -8136,7 +8638,7 @@ declare const MotionGroupModelsApiFactory: (configuration?: Configuration, baseP
8136
8638
  */
8137
8639
  copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig): AxiosPromise<MotionGroupModelDescription>;
8138
8640
  /**
8139
- * **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.
8641
+ * **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.
8140
8642
  * @summary Delete Motion Group Model
8141
8643
  * @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).
8142
8644
  * @param {*} [options] Override http request option.
@@ -8151,6 +8653,14 @@ declare const MotionGroupModelsApiFactory: (configuration?: Configuration, baseP
8151
8653
  * @throws {RequiredError}
8152
8654
  */
8153
8655
  exportMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): AxiosPromise<File>;
8656
+ /**
8657
+ * **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.
8658
+ * @summary Get Configuration for Motion Group
8659
+ * @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).
8660
+ * @param {*} [options] Override http request option.
8661
+ * @throws {RequiredError}
8662
+ */
8663
+ getConfigurationForMotionGroup(motionGroupModel: string, options?: RawAxiosRequestConfig): AxiosPromise<MotionGroupConfiguration>;
8154
8664
  /**
8155
8665
  * **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.
8156
8666
  * @summary Get Collision Model
@@ -8208,6 +8718,13 @@ declare const MotionGroupModelsApiFactory: (configuration?: Configuration, baseP
8208
8718
  * @throws {RequiredError}
8209
8719
  */
8210
8720
  getMotionGroupModels(options?: RawAxiosRequestConfig): AxiosPromise<Array<string>>;
8721
+ /**
8722
+ * **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.
8723
+ * @summary Motion Group Model Catalog
8724
+ * @param {*} [options] Override http request option.
8725
+ * @throws {RequiredError}
8726
+ */
8727
+ getMotionGroupModelsCatalog(options?: RawAxiosRequestConfig): AxiosPromise<Array<MotionGroupModelCatalog>>;
8211
8728
  /**
8212
8729
  * **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.
8213
8730
  * @summary Download USD Model
@@ -8239,7 +8756,7 @@ declare class MotionGroupModelsApi extends BaseAPI {
8239
8756
  */
8240
8757
  copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MotionGroupModelDescription, any, {}>>;
8241
8758
  /**
8242
- * **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.
8759
+ * **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.
8243
8760
  * @summary Delete Motion Group Model
8244
8761
  * @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).
8245
8762
  * @param {*} [options] Override http request option.
@@ -8254,6 +8771,14 @@ declare class MotionGroupModelsApi extends BaseAPI {
8254
8771
  * @throws {RequiredError}
8255
8772
  */
8256
8773
  exportMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<File, any, {}>>;
8774
+ /**
8775
+ * **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.
8776
+ * @summary Get Configuration for Motion Group
8777
+ * @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).
8778
+ * @param {*} [options] Override http request option.
8779
+ * @throws {RequiredError}
8780
+ */
8781
+ getConfigurationForMotionGroup(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MotionGroupConfiguration, any, {}>>;
8257
8782
  /**
8258
8783
  * **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.
8259
8784
  * @summary Get Collision Model
@@ -8311,6 +8836,13 @@ declare class MotionGroupModelsApi extends BaseAPI {
8311
8836
  * @throws {RequiredError}
8312
8837
  */
8313
8838
  getMotionGroupModels(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string[], any, {}>>;
8839
+ /**
8840
+ * **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.
8841
+ * @summary Motion Group Model Catalog
8842
+ * @param {*} [options] Override http request option.
8843
+ * @throws {RequiredError}
8844
+ */
8845
+ getMotionGroupModelsCatalog(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MotionGroupModelCatalog[], any, {}>>;
8314
8846
  /**
8315
8847
  * **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.
8316
8848
  * @summary Download USD Model
@@ -8349,6 +8881,13 @@ declare const NOVACloudApiAxiosParamCreator: (configuration?: Configuration) =>
8349
8881
  * @throws {RequiredError}
8350
8882
  */
8351
8883
  disconnectFromNovaCloud: (completionTimeout?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8884
+ /**
8885
+ * **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.
8886
+ * @summary Get Connection Status
8887
+ * @param {*} [options] Override http request option.
8888
+ * @throws {RequiredError}
8889
+ */
8890
+ getCloudStatus: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8352
8891
  /**
8353
8892
  * **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection config for this instance.
8354
8893
  * @summary Get Connection Config
@@ -8378,6 +8917,13 @@ declare const NOVACloudApiFp: (configuration?: Configuration) => {
8378
8917
  * @throws {RequiredError}
8379
8918
  */
8380
8919
  disconnectFromNovaCloud(completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CloudDisconnectionStatusDisconnected>>;
8920
+ /**
8921
+ * **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.
8922
+ * @summary Get Connection Status
8923
+ * @param {*} [options] Override http request option.
8924
+ * @throws {RequiredError}
8925
+ */
8926
+ getCloudStatus(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CloudStatus>>;
8381
8927
  /**
8382
8928
  * **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection config for this instance.
8383
8929
  * @summary Get Connection Config
@@ -8407,6 +8953,13 @@ declare const NOVACloudApiFactory: (configuration?: Configuration, basePath?: st
8407
8953
  * @throws {RequiredError}
8408
8954
  */
8409
8955
  disconnectFromNovaCloud(completionTimeout?: number, options?: RawAxiosRequestConfig): AxiosPromise<CloudDisconnectionStatusDisconnected>;
8956
+ /**
8957
+ * **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.
8958
+ * @summary Get Connection Status
8959
+ * @param {*} [options] Override http request option.
8960
+ * @throws {RequiredError}
8961
+ */
8962
+ getCloudStatus(options?: RawAxiosRequestConfig): AxiosPromise<CloudStatus>;
8410
8963
  /**
8411
8964
  * **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection config for this instance.
8412
8965
  * @summary Get Connection Config
@@ -8436,6 +8989,13 @@ declare class NOVACloudApi extends BaseAPI {
8436
8989
  * @throws {RequiredError}
8437
8990
  */
8438
8991
  disconnectFromNovaCloud(completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<CloudDisconnectionStatusDisconnected, any, {}>>;
8992
+ /**
8993
+ * **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.
8994
+ * @summary Get Connection Status
8995
+ * @param {*} [options] Override http request option.
8996
+ * @throws {RequiredError}
8997
+ */
8998
+ getCloudStatus(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<CloudStatus, any, {}>>;
8439
8999
  /**
8440
9000
  * **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection config for this instance.
8441
9001
  * @summary Get Connection Config
@@ -9824,15 +10384,15 @@ declare const SystemApiAxiosParamCreator: (configuration?: Configuration) => {
9824
10384
  */
9825
10385
  checkNovaVersionUpdate: (channel: ReleaseChannel, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9826
10386
  /**
9827
- * **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.
10387
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ Runs an ARP scan on the target interface and returns all discovered devices.
9828
10388
  * @summary Get ARP-Scan
9829
- * @param {string} [_interface]
9830
- * @param {string} [cidr]
10389
+ * @param {string} _interface
10390
+ * @param {string} cidr
9831
10391
  * @param {number} [timeout]
9832
10392
  * @param {*} [options] Override http request option.
9833
10393
  * @throws {RequiredError}
9834
10394
  */
9835
- getArpScan: (_interface?: string, cidr?: string, timeout?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
10395
+ getArpScan: (_interface: string, cidr: string, timeout?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9836
10396
  /**
9837
10397
  * **Required permissions:** `can_backup_system` - Create system backups ___ Retrieves the status of a configuration backup. The status can only be requested for 5 minutes after backup creation. After 5 minutes, 404 is returned.
9838
10398
  * @summary Retrieve Backup Status
@@ -9849,7 +10409,7 @@ declare const SystemApiAxiosParamCreator: (configuration?: Configuration) => {
9849
10409
  */
9850
10410
  getDiagnosePackage: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9851
10411
  /**
9852
- * **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the network interfaces of the system.
10412
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ Lists all managed network interfaces available for controller connections and ARP scanning.
9853
10413
  * @summary Network Interfaces
9854
10414
  * @param {*} [options] Override http request option.
9855
10415
  * @throws {RequiredError}
@@ -9925,15 +10485,15 @@ declare const SystemApiFp: (configuration?: Configuration) => {
9925
10485
  */
9926
10486
  checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
9927
10487
  /**
9928
- * **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.
10488
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ Runs an ARP scan on the target interface and returns all discovered devices.
9929
10489
  * @summary Get ARP-Scan
9930
- * @param {string} [_interface]
9931
- * @param {string} [cidr]
10490
+ * @param {string} _interface
10491
+ * @param {string} cidr
9932
10492
  * @param {number} [timeout]
9933
10493
  * @param {*} [options] Override http request option.
9934
10494
  * @throws {RequiredError}
9935
10495
  */
9936
- getArpScan(_interface?: string, cidr?: string, timeout?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<NetworkDevice>>>;
10496
+ getArpScan(_interface: string, cidr: string, timeout?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<NetworkDevice>>>;
9937
10497
  /**
9938
10498
  * **Required permissions:** `can_backup_system` - Create system backups ___ Retrieves the status of a configuration backup. The status can only be requested for 5 minutes after backup creation. After 5 minutes, 404 is returned.
9939
10499
  * @summary Retrieve Backup Status
@@ -9950,7 +10510,7 @@ declare const SystemApiFp: (configuration?: Configuration) => {
9950
10510
  */
9951
10511
  getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
9952
10512
  /**
9953
- * **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the network interfaces of the system.
10513
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ Lists all managed network interfaces available for controller connections and ARP scanning.
9954
10514
  * @summary Network Interfaces
9955
10515
  * @param {*} [options] Override http request option.
9956
10516
  * @throws {RequiredError}
@@ -10026,15 +10586,15 @@ declare const SystemApiFactory: (configuration?: Configuration, basePath?: strin
10026
10586
  */
10027
10587
  checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): AxiosPromise<string>;
10028
10588
  /**
10029
- * **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.
10589
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ Runs an ARP scan on the target interface and returns all discovered devices.
10030
10590
  * @summary Get ARP-Scan
10031
- * @param {string} [_interface]
10032
- * @param {string} [cidr]
10591
+ * @param {string} _interface
10592
+ * @param {string} cidr
10033
10593
  * @param {number} [timeout]
10034
10594
  * @param {*} [options] Override http request option.
10035
10595
  * @throws {RequiredError}
10036
10596
  */
10037
- getArpScan(_interface?: string, cidr?: string, timeout?: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<NetworkDevice>>;
10597
+ getArpScan(_interface: string, cidr: string, timeout?: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<NetworkDevice>>;
10038
10598
  /**
10039
10599
  * **Required permissions:** `can_backup_system` - Create system backups ___ Retrieves the status of a configuration backup. The status can only be requested for 5 minutes after backup creation. After 5 minutes, 404 is returned.
10040
10600
  * @summary Retrieve Backup Status
@@ -10051,7 +10611,7 @@ declare const SystemApiFactory: (configuration?: Configuration, basePath?: strin
10051
10611
  */
10052
10612
  getDiagnosePackage(options?: RawAxiosRequestConfig): AxiosPromise<File>;
10053
10613
  /**
10054
- * **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the network interfaces of the system.
10614
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ Lists all managed network interfaces available for controller connections and ARP scanning.
10055
10615
  * @summary Network Interfaces
10056
10616
  * @param {*} [options] Override http request option.
10057
10617
  * @throws {RequiredError}
@@ -10127,15 +10687,15 @@ declare class SystemApi extends BaseAPI {
10127
10687
  */
10128
10688
  checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string, any, {}>>;
10129
10689
  /**
10130
- * **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.
10690
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ Runs an ARP scan on the target interface and returns all discovered devices.
10131
10691
  * @summary Get ARP-Scan
10132
- * @param {string} [_interface]
10133
- * @param {string} [cidr]
10692
+ * @param {string} _interface
10693
+ * @param {string} cidr
10134
10694
  * @param {number} [timeout]
10135
10695
  * @param {*} [options] Override http request option.
10136
10696
  * @throws {RequiredError}
10137
10697
  */
10138
- getArpScan(_interface?: string, cidr?: string, timeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<NetworkDevice[], any, {}>>;
10698
+ getArpScan(_interface: string, cidr: string, timeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<NetworkDevice[], any, {}>>;
10139
10699
  /**
10140
10700
  * **Required permissions:** `can_backup_system` - Create system backups ___ Retrieves the status of a configuration backup. The status can only be requested for 5 minutes after backup creation. After 5 minutes, 404 is returned.
10141
10701
  * @summary Retrieve Backup Status
@@ -10152,7 +10712,7 @@ declare class SystemApi extends BaseAPI {
10152
10712
  */
10153
10713
  getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<File, any, {}>>;
10154
10714
  /**
10155
- * **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the network interfaces of the system.
10715
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ Lists all managed network interfaces available for controller connections and ARP scanning.
10156
10716
  * @summary Network Interfaces
10157
10717
  * @param {*} [options] Override http request option.
10158
10718
  * @throws {RequiredError}
@@ -11841,4 +12401,4 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
11841
12401
  setIOValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
11842
12402
  }
11843
12403
  //#endregion
11844
- export { AbbConfdata, AbbConfiguredPose, AbbController, AbbControllerEgmServer, AbbControllerKindEnum, AbbPose, ActivateLicenseRequest, AddTrajectoryError, AddTrajectoryErrorData, AddTrajectoryRequest, AddTrajectoryResponse, AddVirtualControllerMotionGroupRequest, ApiVersion, App, ApplicationApi, ApplicationApiAxiosParamCreator, ApplicationApiFactory, ApplicationApiFp, AxisRange, BASE_PATH, BUSInputsOutputsApi, BUSInputsOutputsApiAxiosParamCreator, BUSInputsOutputsApiFactory, BUSInputsOutputsApiFp, BaseAPI, Behavior, BlendingAuto, BlendingAutoBlendingNameEnum, BlendingPosition, BlendingPositionBlendingNameEnum, BlendingSpace, BooleanValue, BooleanValueValueTypeEnum, Box, BoxBoxTypeEnum, BoxShapeTypeEnum, BusIODescription, BusIOModbusClient, BusIOModbusClientBusTypeEnum, BusIOModbusServer, BusIOModbusServerBusTypeEnum, BusIOModbusTCPClient, BusIOModbusTCPClientNetworkTypeEnum, BusIOModbusTCPServer, BusIOModbusTCPServerNetworkTypeEnum, BusIOModbusVirtual, BusIOModbusVirtualBusTypeEnum, BusIOProfinet, BusIOProfinetBusTypeEnum, BusIOProfinetDefaultRoute, BusIOProfinetIpConfig, BusIOProfinetNetwork, BusIOProfinetSlot, BusIOProfinetVirtual, BusIOProfinetVirtualBusTypeEnum, BusIOSnap7, BusIOSnap7BusTypeEnum, BusIOType, BusIOsState, BusIOsStateEnum, COLLECTION_FORMATS, CapabilityEntry, Capsule, CapsuleShapeTypeEnum, CartesianLimits, Cell, CellApi, CellApiAxiosParamCreator, CellApiFactory, CellApiFp, CloudConfigStatus, CloudConfigStatusConfigured, CloudConfigStatusConfiguredStatusEnum, CloudConfigStatusNotConfigured, CloudConfigStatusNotConfiguredStatusEnum, CloudConfiguration, CloudConnectionError, CloudConnectionErrorError, CloudConnectionErrorInvalidToken, CloudConnectionErrorInvalidTokenCodeEnum, CloudConnectionErrorInvalidTokenDetails, CloudConnectionErrorInvalidTokenDetailsCloudResponse, CloudConnectionErrorLeafnodeConnectionError, CloudConnectionErrorLeafnodeConnectionErrorCodeEnum, CloudConnectionErrorLeafnodeConnectionErrorDetails, CloudConnectionErrorLeafnodeConnectionTimeout, CloudConnectionErrorLeafnodeConnectionTimeoutCodeEnum, CloudConnectionErrorLeafnodeRestartTimeout, CloudConnectionErrorLeafnodeRestartTimeoutCodeEnum, CloudConnectionErrorNatsFailed, CloudConnectionErrorNatsFailedCodeEnum, CloudConnectionErrorNatsFailedDetails, CloudConnectionErrorUnexpectedResponse, CloudConnectionErrorUnexpectedResponseCodeEnum, CloudConnectionErrorUnexpectedResponseDetails, CloudConnectionErrorUnexpectedResponseDetailsCloudResponse, CloudConnectionRequest, CloudDisconnectionError, CloudDisconnectionStatusDisconnected, CloudDisconnectionStatusDisconnectedStatusEnum, CloudDisconnectionStatusDisconnecting, CloudDisconnectionStatusDisconnectingStatusEnum, CloudRegistrationSuccessResponse, Collider, ColliderShape, ColliderValue, ColliderValueOrKey, ColliderValueSourceEnum, Collision, CollisionContact, CollisionError, CollisionErrorKindEnum, CollisionFreeAlgorithm, CollisionMotionGroup, CollisionSetup, CollisionSetupValue, CollisionSetupValueOrKey, CollisionSetupValueSourceEnum, Comparator, Configuration, ConfigurationArchiveStatus, ConfigurationArchiveStatusCreating, ConfigurationArchiveStatusCreatingStatusEnum, ConfigurationArchiveStatusError, ConfigurationArchiveStatusErrorStatusEnum, ConfigurationArchiveStatusSuccess, ConfigurationArchiveStatusSuccessStatusEnum, ConfigurationParameters, ConfigurationResource, ConfiguredPose, ConfiguredPoseInverse422Response, ConfiguredPoseInverseFailedResponse, ConfiguredPoseInverseRequest, ConfiguredPoseInverseResponse, ConfiguredPoseInverseResponseResponse, ConstrainedPose, ContainerEnvironmentInner, ContainerImage, ContainerImageSecretsInner, ContainerResources, ContainerStorage, ControllerApi, ControllerApiAxiosParamCreator, ControllerApiFactory, ControllerApiFp, ControllerDescription, ControllerInputsOutputsApi, ControllerInputsOutputsApiAxiosParamCreator, ControllerInputsOutputsApiFactory, ControllerInputsOutputsApiFp, ControllerNetworkInterface, ConvertVendorConfiguredPose422Response, ConvertVendorConfiguredPoseRequest, ConvertVendorConfiguredPoseRequestVendorConfiguredPoses, ConvexHull, ConvexHullShapeTypeEnum, CoordinateSystem, CoordinateSystemData, CopyMotionGroupModelRequest, CubicSplineParameter, CycleTime, Cylinder, CylinderShapeTypeEnum, DHParameter, Direction, DirectionConstraint, DirectionConstraintConstraintNameEnum, DynamicModel, ErrorDirectionConstraintNotMet, ErrorDirectionConstraintNotMetErrorFeedbackNameEnum, ErrorDirectionConstraintNotNormalized, ErrorDirectionConstraintNotNormalizedErrorFeedbackNameEnum, ErrorInvalidJointCount, ErrorInvalidJointCountErrorFeedbackNameEnum, ErrorJointLimitExceeded, ErrorJointLimitExceededErrorFeedbackNameEnum, ErrorJointPositionCollision, ErrorJointPositionCollisionErrorFeedbackNameEnum, ErrorMaxIterationsExceeded, ErrorMaxIterationsExceededErrorFeedbackNameEnum, ErrorMotionGroupKeyMismatch, ErrorUnsupportedOperation, ErrorUnsupportedOperationErrorFeedbackNameEnum, Execute, ExecuteDetails, ExecuteJoggingRequest, ExecuteJoggingResponse, ExecuteTrajectoryRequest, ExecuteTrajectoryResponse, ExecuteWaypointJoggingRequest, ExecuteWaypointJoggingResponse, ExternalJointStreamDatapoint, ExternalJointStreamRequest, FanucController, FanucControllerKindEnum, FeedbackAxisRangeExceeded, FeedbackAxisRangeExceededErrorFeedbackNameEnum, FeedbackCollision, FeedbackCollisionErrorFeedbackNameEnum, FeedbackCommandsMissing, FeedbackCommandsMissingErrorFeedbackNameEnum, FeedbackCubicSplineIsNotIncreasing, FeedbackCubicSplineIsNotIncreasingErrorFeedbackNameEnum, FeedbackCubicSplineNotAtStartPose, FeedbackCubicSplineNotAtStartPoseErrorFeedbackNameEnum, FeedbackDirectionConstraintNoSolutionExists, FeedbackDirectionConstraintNoSolutionExistsErrorFeedbackNameEnum, FeedbackDirectionConstraintNotMet, FeedbackDirectionConstraintNotMetErrorFeedbackNameEnum, FeedbackDirectionConstraintNotNormalized, FeedbackDirectionConstraintNotNormalizedErrorFeedbackNameEnum, FeedbackInvalidDof, FeedbackInvalidDofErrorFeedbackNameEnum, FeedbackInvalidNanValue, FeedbackInvalidNanValueErrorFeedbackNameEnum, FeedbackInvalidSamplingTime, FeedbackInvalidSamplingTimeErrorFeedbackNameEnum, FeedbackJointLimitExceeded, FeedbackJointLimitExceededErrorFeedbackNameEnum, FeedbackNoSolutionInCurrentConfiguration, FeedbackNoSolutionInCurrentConfigurationErrorFeedbackNameEnum, FeedbackOutOfWorkspace, FeedbackOutOfWorkspaceErrorFeedbackNameEnum, FeedbackSingularity, FeedbackSingularityErrorFeedbackNameEnum, FeedbackStartJointsMissing, FeedbackStartJointsMissingErrorFeedbackNameEnum, FeedbackTorqueExceeded, FeedbackTorqueExceededErrorFeedbackNameEnum, Flag, FlangePayload, FloatValue, FloatValueValueTypeEnum, ForwardKinematics422Response, ForwardKinematicsRequest, ForwardKinematicsResponse, ForwardKinematicsValidationError, GetTrajectoryResponse, HTTPValidationError, IOBooleanValue, IOBooleanValueValueTypeEnum, IOBoundary, IODescription, IODirection, IOFloatValue, IOFloatValueValueTypeEnum, IOIntegerValue, IOIntegerValueValueTypeEnum, IOOrigin, IOValue, IOValueType, ImageCredentials, InconsistentTrajectorySizeError, InconsistentTrajectorySizeErrorInconsistentTrajectorySize, InconsistentTrajectorySizeErrorKindEnum, InertiaTensor, InitializeJoggingRequest, InitializeJoggingRequestMessageTypeEnum, InitializeJoggingResponse, InitializeJoggingResponseKindEnum, InitializeMovementRequest, InitializeMovementRequestMessageTypeEnum, InitializeMovementRequestTrajectory, InitializeMovementResponse, InitializeMovementResponseKindEnum, IntegerValue, IntegerValueValueTypeEnum, InvalidDofError, InvalidDofErrorInvalidDof, InvalidDofErrorKindEnum, InverseFeedbackAtIndex, InverseFeedbackAtIndexErrorFeedback, InverseKinematics422Response, InverseKinematicsRequest, InverseKinematicsResponse, InverseKinematicsValidationError, InverseKinematicsValidationErrorAllOfData, JoggingApi, JoggingApiAxiosParamCreator, JoggingApiFactory, JoggingApiFp, JoggingDetails, JoggingDetailsKindEnum, JoggingDetailsState, JoggingPausedByUser, JoggingPausedByUserKindEnum, JoggingPausedNearCollision, JoggingPausedNearCollisionKindEnum, JoggingPausedNearJointLimit, JoggingPausedNearJointLimitKindEnum, JoggingPausedNearSingularity, JoggingPausedNearSingularityKindEnum, JoggingPausedOnIO, JoggingPausedOnIOKindEnum, JoggingRunning, JoggingRunningKindEnum, JointLimitExceededError, JointLimitExceededErrorKindEnum, JointLimits, JointPTPMotion, JointTrajectory, JointTypeEnum, JointVelocityRequest, JointVelocityRequestMessageTypeEnum, JointVelocityResponse, JointVelocityResponseKindEnum, JointWaypoint, JointWaypointsRequest, JointWaypointsRequestMessageTypeEnum, JointWaypointsResponse, JointWaypointsResponseKindEnum, KinematicBranch, KinematicBranchElbow, KinematicBranchShoulder, KinematicBranchWrist, KinematicConfiguration, KinematicModel, KinematicsApi, KinematicsApiAxiosParamCreator, KinematicsApiFactory, KinematicsApiFp, KukaConfiguredPose, KukaController, KukaControllerKindEnum, KukaControllerRsiServer, KukaPose, KukaStatusAndTurnBits, License, LicenseApi, LicenseApiAxiosParamCreator, LicenseApiFactory, LicenseApiFp, LicenseStatus, LicenseStatusEnum, LimitRange, LimitSet, LimitsOverride, LinkChainValue, LinkChainValueOrKey, LinkChainValueSourceEnum, ListTrajectoriesResponse, Manufacturer, MergeTrajectories422Response, MergeTrajectoriesError, MergeTrajectoriesErrorErrorFeedback, MergeTrajectoriesRequest, MergeTrajectoriesResponse, MergeTrajectoriesResponseFeedbackInner, MergeTrajectoriesSegment, MergeTrajectoriesValidationError, MidpointInsertionAlgorithm, MidpointInsertionAlgorithmAlgorithmNameEnum, ModbusIO, ModbusIOArea, ModbusIOByteOrder, ModbusIOData, ModbusIOTypeEnum, ModelError, MotionCommand, MotionCommandBlending, MotionCommandPath, MotionGroupApi, MotionGroupApiAxiosParamCreator, MotionGroupApiFactory, MotionGroupApiFp, MotionGroupDescription, MotionGroupFromJson, MotionGroupFromType, MotionGroupInfo, MotionGroupJoints, MotionGroupModelDescription, MotionGroupModelsApi, MotionGroupModelsApiAxiosParamCreator, MotionGroupModelsApiFactory, MotionGroupModelsApiFp, MotionGroupSetup, MotionGroupState, MotionGroupStateJointLimitReached, MovementErrorResponse, MovementErrorResponseKindEnum, MultiCollisionSetup, MultiErrorInvalidJointCount, MultiErrorJointLimitExceeded, MultiErrorJointPositionCollision, MultiJointTrajectory, MultiSearchCollisionFree422Response, MultiSearchCollisionFreeRequest, MultiSearchCollisionFreeResponse, MultiSearchCollisionFreeResponseResponse, MultiSearchCollisionFreeValidationError, MultiSearchCollisionFreeValidationErrorAllOfData, NOVACloudApi, NOVACloudApiAxiosParamCreator, NOVACloudApiFactory, NOVACloudApiFp, NanValueError, NanValueErrorKindEnum, NanValueErrorNanValue, NetworkDevice, NetworkInterface, NetworkState, NetworkStateConnectionTypeEnum, OpMode, OperatingState, OperationLimits, OperationMode, OrientationType, PathCartesianPTP, PathCartesianPTPPathDefinitionNameEnum, PathCircle, PathCirclePathDefinitionNameEnum, PathCubicSpline, PathCubicSplinePathDefinitionNameEnum, PathDirectionConstrainedCartesianPTP, PathDirectionConstrainedCartesianPTPPathDefinitionNameEnum, PathDirectionConstrainedJointPTP, PathDirectionConstrainedJointPTPPathDefinitionNameEnum, PathJointPTP, PathJointPTPPathDefinitionNameEnum, PathLine, PathLinePathDefinitionNameEnum, PauseJoggingRequest, PauseJoggingRequestMessageTypeEnum, PauseJoggingResponse, PauseJoggingResponseKindEnum, PauseMovementRequest, PauseMovementRequestMessageTypeEnum, PauseMovementResponse, PauseMovementResponseKindEnum, PauseOnIO, Payload, Plan422Response, PlanCollisionFreeFailedResponse, PlanCollisionFreeRequest, PlanCollisionFreeResponse, PlanCollisionFreeResponseResponse, PlanTrajectoryFailedResponse, PlanTrajectoryFailedResponseErrorFeedback, PlanTrajectoryRequest, PlanTrajectoryResponse, PlanTrajectoryResponseResponse, PlanValidationError, PlanValidationErrorAllOfData, Plane, PlaneShapeTypeEnum, PlaybackSpeedRequest, PlaybackSpeedRequestMessageTypeEnum, PlaybackSpeedResponse, PlaybackSpeedResponseKindEnum, Pose, PoseWaypoint, PoseWaypointsRequest, PoseWaypointsRequestMessageTypeEnum, PoseWaypointsResponse, PoseWaypointsResponseKindEnum, ProfinetDescription, ProfinetIO, ProfinetIOData, ProfinetIODirection, ProfinetIOTypeEnum, ProfinetInputOutputConfig, ProfinetSlotDescription, ProfinetSubSlotDescription, Program, ProgramApi, ProgramApiAxiosParamCreator, ProgramApiFactory, ProgramApiFp, ProgramRun, ProgramRunState, ProgramStartRequest, ProjectJointPositionDirectionConstraint422Response, ProjectJointPositionDirectionConstraintRequest, ProjectJointPositionDirectionConstraintResponse, ProjectJointPositionDirectionConstraintValidationError, ProjectJointPositionDirectionConstraintValidationErrorAllOfData, RRTConnectAlgorithm, RRTConnectAlgorithmAlgorithmNameEnum, RRTConnectAlgorithmStepSize, Range, Rectangle, RectangleShapeTypeEnum, RectangularCapsule, RectangularCapsuleShapeTypeEnum, ReleaseChannel, RequestArgs, RequiredError, RobotConfigurationsApi, RobotConfigurationsApiAxiosParamCreator, RobotConfigurationsApiFactory, RobotConfigurationsApiFp, RobotController, RobotControllerConfiguration, RobotControllerConfigurationRequest, RobotControllerState, RobotSystemMode, RobotTcp, RobotTcpData, SafetyGeometry, SafetyGeometryBox, SafetyGeometryCapsule, SafetyGeometryLozenge, SafetyGeometryPlane, SafetyGeometryPrism, SafetyGeometrySphere, SafetyStateType, SafetyZone, SafetyZonePose, SafetyZones, ServiceGroup, ServiceStatus, ServiceStatusPhase, ServiceStatusResponse, ServiceStatusSeverity, ServiceStatusStatus, SessionApi, SessionApiAxiosParamCreator, SessionApiFactory, SessionApiFp, SessionResponse, SetIO, SettableRobotSystemMode, SingularityTypeEnum, Snap7IO, Snap7IOArea, Snap7IOData, Snap7IODirection, Snap7IOTypeEnum, Sphere, SphereShapeTypeEnum, StartMovementRequest, StartMovementRequestMessageTypeEnum, StartMovementResponse, StartMovementResponseKindEnum, StartOnIO, StorageKey, StorageKeySourceEnum, StoreCollisionComponentsApi, StoreCollisionComponentsApiAxiosParamCreator, StoreCollisionComponentsApiFactory, StoreCollisionComponentsApiFp, StoreCollisionSetupsApi, StoreCollisionSetupsApiAxiosParamCreator, StoreCollisionSetupsApiFactory, StoreCollisionSetupsApiFp, StoreObjectApi, StoreObjectApiAxiosParamCreator, StoreObjectApiFactory, StoreObjectApiFp, StreamIOValuesResponse, SystemApi, SystemApiAxiosParamCreator, SystemApiFactory, SystemApiFp, TcpOffset, TcpRequiredError, TcpRequiredErrorKindEnum, TcpVelocityRequest, TcpVelocityRequestMessageTypeEnum, TcpVelocityResponse, TcpVelocityResponseKindEnum, ToolValue, ToolValueOrKey, ToolValueSourceEnum, TorqueExceededError, TorqueExceededErrorKindEnum, TorqueExceededErrorTorqueExceeded, TrajectoryCachingApi, TrajectoryCachingApiAxiosParamCreator, TrajectoryCachingApiFactory, TrajectoryCachingApiFp, TrajectoryData, TrajectoryDataMessageTypeEnum, TrajectoryDetails, TrajectoryDetailsKindEnum, TrajectoryDetailsState, TrajectoryEnded, TrajectoryEndedKindEnum, TrajectoryExecutionApi, TrajectoryExecutionApiAxiosParamCreator, TrajectoryExecutionApiFactory, TrajectoryExecutionApiFp, TrajectoryId, TrajectoryIdMessageTypeEnum, TrajectoryPausedByUser, TrajectoryPausedByUserKindEnum, TrajectoryPausedOnIO, TrajectoryPausedOnIOKindEnum, TrajectoryPlanningApi, TrajectoryPlanningApiAxiosParamCreator, TrajectoryPlanningApiFactory, TrajectoryPlanningApiFp, TrajectoryRunning, TrajectoryRunningKindEnum, TrajectorySection, TrajectoryWaitForIO, TrajectoryWaitForIOKindEnum, UnitType, UniversalrobotsController, UniversalrobotsControllerKindEnum, UpdateCellVersionRequest, UpdateNovaVersionRequest, User, ValidationError, ValidationError2, ValidationErrorLocInner, VersionApi, VersionApiAxiosParamCreator, VersionApiFactory, VersionApiFp, VirtualController, VirtualControllerApi, VirtualControllerApiAxiosParamCreator, VirtualControllerApiFactory, VirtualControllerApiFp, VirtualControllerBehaviorApi, VirtualControllerBehaviorApiAxiosParamCreator, VirtualControllerBehaviorApiFactory, VirtualControllerBehaviorApiFp, VirtualControllerInputsOutputsApi, VirtualControllerInputsOutputsApiAxiosParamCreator, VirtualControllerInputsOutputsApiFactory, VirtualControllerInputsOutputsApiFp, VirtualControllerKindEnum, VirtualRobotConfiguration, WaitForIOEventRequest, YaskawaController, YaskawaControllerKindEnum, ZodValidationError, ZodValidationErrorError, ZodValidationErrorErrorCodeEnum, ZodValidationErrorErrorDetailsInner, ZodValidationErrorErrorDetailsInnerPathInner, operationServerMap };
12404
+ export { AbbConfdata, AbbConfiguredPose, AbbController, AbbControllerEgmServer, AbbControllerKindEnum, AbbPose, ActionChunkRequest, ActionChunkRequestMessageTypeEnum, ActionChunkResponse, ActionChunkResponseKindEnum, ActionChunkStreamingApi, ActionChunkStreamingApiAxiosParamCreator, ActionChunkStreamingApiFactory, ActionChunkStreamingApiFp, ActivateLicenseRequest, AddTrajectoryError, AddTrajectoryErrorData, AddTrajectoryRequest, AddTrajectoryResponse, AddVirtualControllerMotionGroupRequest, ApiVersion, App, ApplicationApi, ApplicationApiAxiosParamCreator, ApplicationApiFactory, ApplicationApiFp, AxisRange, BASE_PATH, BUSInputsOutputsApi, BUSInputsOutputsApiAxiosParamCreator, BUSInputsOutputsApiFactory, BUSInputsOutputsApiFp, BaseAPI, Behavior, BlendingAuto, BlendingAutoBlendingNameEnum, BlendingPosition, BlendingPositionBlendingNameEnum, BlendingSpace, BooleanValue, BooleanValueValueTypeEnum, BostondynamicsController, BostondynamicsControllerKindEnum, BostondynamicsControllerRobotTypeEnum, Box, BoxBoxTypeEnum, BoxShapeTypeEnum, BusIODescription, BusIOModbusClient, BusIOModbusClientBusTypeEnum, BusIOModbusServer, BusIOModbusServerBusTypeEnum, BusIOModbusTCPClient, BusIOModbusTCPClientNetworkTypeEnum, BusIOModbusTCPServer, BusIOModbusTCPServerNetworkTypeEnum, BusIOModbusVirtual, BusIOModbusVirtualBusTypeEnum, BusIOProfinet, BusIOProfinetBusTypeEnum, BusIOProfinetDefaultRoute, BusIOProfinetIpConfig, BusIOProfinetNetwork, BusIOProfinetSlot, BusIOProfinetVirtual, BusIOProfinetVirtualBusTypeEnum, BusIOSnap7, BusIOSnap7BusTypeEnum, BusIOType, BusIOsState, BusIOsStateEnum, COLLECTION_FORMATS, CapabilityEntry, Capsule, CapsuleShapeTypeEnum, CartesianLimits, CartesianVelocity, Cell, CellApi, CellApiAxiosParamCreator, CellApiFactory, CellApiFp, CloudConfigStatus, CloudConfigStatusConfigured, CloudConfigStatusConfiguredStatusEnum, CloudConfigStatusNotConfigured, CloudConfigStatusNotConfiguredStatusEnum, CloudConfiguration, CloudConnectionError, CloudConnectionErrorError, CloudConnectionErrorInvalidToken, CloudConnectionErrorInvalidTokenCodeEnum, CloudConnectionErrorInvalidTokenDetails, CloudConnectionErrorInvalidTokenDetailsCloudResponse, CloudConnectionErrorLeafnodeConnectionError, CloudConnectionErrorLeafnodeConnectionErrorCodeEnum, CloudConnectionErrorLeafnodeConnectionErrorDetails, CloudConnectionErrorLeafnodeConnectionTimeout, CloudConnectionErrorLeafnodeConnectionTimeoutCodeEnum, CloudConnectionErrorLeafnodeRestartTimeout, CloudConnectionErrorLeafnodeRestartTimeoutCodeEnum, CloudConnectionErrorNatsFailed, CloudConnectionErrorNatsFailedCodeEnum, CloudConnectionErrorNatsFailedDetails, CloudConnectionErrorUnexpectedResponse, CloudConnectionErrorUnexpectedResponseCodeEnum, CloudConnectionErrorUnexpectedResponseDetails, CloudConnectionErrorUnexpectedResponseDetailsCloudResponse, CloudConnectionRequest, CloudDisconnectionError, CloudDisconnectionStatusDisconnected, CloudDisconnectionStatusDisconnectedStatusEnum, CloudDisconnectionStatusDisconnecting, CloudDisconnectionStatusDisconnectingStatusEnum, CloudRegistrationSuccessResponse, CloudStatus, CloudStatusChecks, CloudStatusErrors, Collider, ColliderShape, ColliderValue, ColliderValueOrKey, ColliderValueSourceEnum, Collision, CollisionContact, CollisionError, CollisionErrorKindEnum, CollisionFreeAlgorithm, CollisionMotionGroup, CollisionSetup, CollisionSetupValue, CollisionSetupValueOrKey, CollisionSetupValueSourceEnum, Comparator, Configuration, ConfigurationArchiveStatus, ConfigurationArchiveStatusCreating, ConfigurationArchiveStatusCreatingStatusEnum, ConfigurationArchiveStatusError, ConfigurationArchiveStatusErrorStatusEnum, ConfigurationArchiveStatusSuccess, ConfigurationArchiveStatusSuccessStatusEnum, ConfigurationParameters, ConfigurationResource, ConfiguredPose, ConfiguredPoseInverse422Response, ConfiguredPoseInverseFailedResponse, ConfiguredPoseInverseRequest, ConfiguredPoseInverseResponse, ConfiguredPoseInverseResponseResponse, ConstrainedPose, ContainerEnvironmentInner, ContainerImage, ContainerImageSecretsInner, ContainerResources, ContainerStorage, ControllerApi, ControllerApiAxiosParamCreator, ControllerApiFactory, ControllerApiFp, ControllerDescription, ControllerInputsOutputsApi, ControllerInputsOutputsApiAxiosParamCreator, ControllerInputsOutputsApiFactory, ControllerInputsOutputsApiFp, ControllerNetworkInterface, ConvertVendorConfiguredPose422Response, ConvertVendorConfiguredPoseRequest, ConvertVendorConfiguredPoseRequestVendorConfiguredPoses, ConvexHull, ConvexHullShapeTypeEnum, CoordinateSystem, CoordinateSystemData, CopyMotionGroupModelRequest, CubicSplineParameter, CycleTime, Cylinder, CylinderShapeTypeEnum, DHParameter, Direction, DirectionConstraint, DirectionConstraintConstraintNameEnum, DynamicModel, ErrorDirectionConstraintNotMet, ErrorDirectionConstraintNotMetErrorFeedbackNameEnum, ErrorDirectionConstraintNotNormalized, ErrorDirectionConstraintNotNormalizedErrorFeedbackNameEnum, ErrorInvalidJointCount, ErrorInvalidJointCountErrorFeedbackNameEnum, ErrorJointLimitExceeded, ErrorJointLimitExceededErrorFeedbackNameEnum, ErrorJointPositionCollision, ErrorJointPositionCollisionErrorFeedbackNameEnum, ErrorMaxIterationsExceeded, ErrorMaxIterationsExceededErrorFeedbackNameEnum, ErrorMotionGroupKeyMismatch, ErrorUnsupportedOperation, ErrorUnsupportedOperationErrorFeedbackNameEnum, Execute, ExecuteActionChunksRequest, ExecuteActionChunksResponse, ExecuteDetails, ExecuteJoggingRequest, ExecuteJoggingResponse, ExecuteTrajectoryRequest, ExecuteTrajectoryResponse, ExternalJointStreamDatapoint, ExternalJointStreamRequest, FanucController, FanucControllerKindEnum, FeedbackAxisRangeExceeded, FeedbackAxisRangeExceededErrorFeedbackNameEnum, FeedbackCollision, FeedbackCollisionErrorFeedbackNameEnum, FeedbackCommandsMissing, FeedbackCommandsMissingErrorFeedbackNameEnum, FeedbackCubicSplineIsNotIncreasing, FeedbackCubicSplineIsNotIncreasingErrorFeedbackNameEnum, FeedbackCubicSplineNotAtStartPose, FeedbackCubicSplineNotAtStartPoseErrorFeedbackNameEnum, FeedbackDirectionConstraintNoSolutionExists, FeedbackDirectionConstraintNoSolutionExistsErrorFeedbackNameEnum, FeedbackDirectionConstraintNotMet, FeedbackDirectionConstraintNotMetErrorFeedbackNameEnum, FeedbackDirectionConstraintNotNormalized, FeedbackDirectionConstraintNotNormalizedErrorFeedbackNameEnum, FeedbackInvalidDof, FeedbackInvalidDofErrorFeedbackNameEnum, FeedbackInvalidNanValue, FeedbackInvalidNanValueErrorFeedbackNameEnum, FeedbackInvalidSamplingTime, FeedbackInvalidSamplingTimeErrorFeedbackNameEnum, FeedbackJointLimitExceeded, FeedbackJointLimitExceededErrorFeedbackNameEnum, FeedbackNoSolutionInCurrentConfiguration, FeedbackNoSolutionInCurrentConfigurationErrorFeedbackNameEnum, FeedbackOutOfWorkspace, FeedbackOutOfWorkspaceErrorFeedbackNameEnum, FeedbackSingularity, FeedbackSingularityErrorFeedbackNameEnum, FeedbackStartJointsMissing, FeedbackStartJointsMissingErrorFeedbackNameEnum, FeedbackTorqueExceeded, FeedbackTorqueExceededErrorFeedbackNameEnum, Flag, FlangePayload, FloatValue, FloatValueValueTypeEnum, ForwardKinematics422Response, ForwardKinematicsRequest, ForwardKinematicsResponse, ForwardKinematicsValidationError, GetKinematicConfiguration422Response, GetKinematicConfigurationRequest, GetKinematicConfigurationResponse, GetKinematicConfigurationValidationError, GetKinematicConfigurationValidationErrorAllOfData, GetTrajectoryResponse, HTTPValidationError, IOBooleanValue, IOBooleanValueValueTypeEnum, IOBoundary, IODescription, IODirection, IOFloatValue, IOFloatValueValueTypeEnum, IOIntegerValue, IOIntegerValueValueTypeEnum, IOOrigin, IOValue, IOValueType, ImageCredentials, InconsistentTrajectorySizeError, InconsistentTrajectorySizeErrorInconsistentTrajectorySize, InconsistentTrajectorySizeErrorKindEnum, InertiaTensor, InitializeActionChunksRequest, InitializeActionChunksRequestMessageTypeEnum, InitializeActionChunksResponse, InitializeActionChunksResponseKindEnum, InitializeJoggingRequest, InitializeJoggingRequestMessageTypeEnum, InitializeJoggingResponse, InitializeJoggingResponseKindEnum, InitializeMovementRequest, InitializeMovementRequestMessageTypeEnum, InitializeMovementRequestTrajectory, InitializeMovementResponse, InitializeMovementResponseKindEnum, IntegerValue, IntegerValueValueTypeEnum, InvalidDofError, InvalidDofErrorInvalidDof, InvalidDofErrorKindEnum, InverseFeedbackAtIndex, InverseFeedbackAtIndexErrorFeedback, InverseKinematics422Response, InverseKinematicsRequest, InverseKinematicsResponse, InverseKinematicsValidationError, InverseKinematicsValidationErrorAllOfData, JoggingApi, JoggingApiAxiosParamCreator, JoggingApiFactory, JoggingApiFp, JoggingDetails, JoggingDetailsKindEnum, JoggingDetailsState, JoggingPausedByUser, JoggingPausedByUserKindEnum, JoggingPausedNearCollision, JoggingPausedNearCollisionKindEnum, JoggingPausedNearJointLimit, JoggingPausedNearJointLimitKindEnum, JoggingPausedNearSingularity, JoggingPausedNearSingularityKindEnum, JoggingPausedOnIO, JoggingPausedOnIOKindEnum, JoggingRunning, JoggingRunningKindEnum, JointLimitExceededError, JointLimitExceededErrorKindEnum, JointLimits, JointPTPMotion, JointTrajectory, JointTypeEnum, JointVelocityRequest, JointVelocityRequestMessageTypeEnum, JointVelocityResponse, JointVelocityResponseKindEnum, JointWaypoint, JointWaypointKindEnum, KinematicBranch, KinematicBranchElbow, KinematicBranchShoulder, KinematicBranchWrist, KinematicConfiguration, KinematicModel, KinematicsApi, KinematicsApiAxiosParamCreator, KinematicsApiFactory, KinematicsApiFp, KukaConfiguredPose, KukaController, KukaControllerKindEnum, KukaControllerRsiServer, KukaPose, KukaStatusAndTurnBits, License, LicenseApi, LicenseApiAxiosParamCreator, LicenseApiFactory, LicenseApiFp, LicenseStatus, LicenseStatusEnum, LimitRange, LimitSet, LimitsOverride, LinkChainValue, LinkChainValueOrKey, LinkChainValueSourceEnum, ListTrajectoriesResponse, Manufacturer, MergeTrajectories422Response, MergeTrajectoriesError, MergeTrajectoriesErrorErrorFeedback, MergeTrajectoriesRequest, MergeTrajectoriesResponse, MergeTrajectoriesResponseFeedbackInner, MergeTrajectoriesSegment, MergeTrajectoriesValidationError, MidpointInsertionAlgorithm, MidpointInsertionAlgorithmAlgorithmNameEnum, ModbusIO, ModbusIOArea, ModbusIOByteOrder, ModbusIOData, ModbusIOTypeEnum, ModelError, MotionCommand, MotionCommandBlending, MotionCommandPath, MotionGroupApi, MotionGroupApiAxiosParamCreator, MotionGroupApiFactory, MotionGroupApiFp, MotionGroupConfiguration, MotionGroupDescription, MotionGroupFromJson, MotionGroupFromType, MotionGroupInfo, MotionGroupJoints, MotionGroupModelCatalog, MotionGroupModelDescription, MotionGroupModelsApi, MotionGroupModelsApiAxiosParamCreator, MotionGroupModelsApiFactory, MotionGroupModelsApiFp, MotionGroupSetup, MotionGroupState, MotionGroupStateJointLimitReached, MovementErrorResponse, MovementErrorResponseKindEnum, MultiCollisionSetup, MultiErrorInvalidJointCount, MultiErrorJointLimitExceeded, MultiErrorJointPositionCollision, MultiJointTrajectory, MultiSearchCollisionFree422Response, MultiSearchCollisionFreeRequest, MultiSearchCollisionFreeResponse, MultiSearchCollisionFreeResponseResponse, MultiSearchCollisionFreeValidationError, MultiSearchCollisionFreeValidationErrorAllOfData, NOVACloudApi, NOVACloudApiAxiosParamCreator, NOVACloudApiFactory, NOVACloudApiFp, NanValueError, NanValueErrorKindEnum, NanValueErrorNanValue, NetworkBackend, NetworkDevice, NetworkInterface, NetworkState, OpMode, OperatingState, OperationLimits, OperationMode, OrientationType, PathCartesianPTP, PathCartesianPTPPathDefinitionNameEnum, PathCircle, PathCirclePathDefinitionNameEnum, PathCubicSpline, PathCubicSplinePathDefinitionNameEnum, PathDirectionConstrainedCartesianPTP, PathDirectionConstrainedCartesianPTPPathDefinitionNameEnum, PathDirectionConstrainedJointPTP, PathDirectionConstrainedJointPTPPathDefinitionNameEnum, PathJointPTP, PathJointPTPPathDefinitionNameEnum, PathLine, PathLinePathDefinitionNameEnum, PauseActionChunksRequest, PauseActionChunksRequestMessageTypeEnum, PauseActionChunksResponse, PauseActionChunksResponseKindEnum, PauseJoggingRequest, PauseJoggingRequestMessageTypeEnum, PauseJoggingResponse, PauseJoggingResponseKindEnum, PauseMovementRequest, PauseMovementRequestMessageTypeEnum, PauseMovementResponse, PauseMovementResponseKindEnum, PauseOnIO, Payload, Plan422Response, PlanCollisionFreeFailedResponse, PlanCollisionFreeRequest, PlanCollisionFreeResponse, PlanCollisionFreeResponseResponse, PlanTrajectoryFailedResponse, PlanTrajectoryFailedResponseErrorFeedback, PlanTrajectoryRequest, PlanTrajectoryResponse, PlanTrajectoryResponseResponse, PlanValidationError, PlanValidationErrorAllOfData, Plane, PlaneShapeTypeEnum, PlaybackSpeedRequest, PlaybackSpeedRequestMessageTypeEnum, PlaybackSpeedResponse, PlaybackSpeedResponseKindEnum, Pose, PoseWaypoint, PoseWaypointKindEnum, ProfinetDescription, ProfinetIO, ProfinetIOData, ProfinetIODirection, ProfinetIOTypeEnum, ProfinetInputOutputConfig, ProfinetSlotDescription, ProfinetSlotOffset, ProfinetSubSlotDescription, Program, ProgramApi, ProgramApiAxiosParamCreator, ProgramApiFactory, ProgramApiFp, ProgramRun, ProgramRunState, ProgramStartRequest, ProjectJointPositionDirectionConstraint422Response, ProjectJointPositionDirectionConstraintRequest, ProjectJointPositionDirectionConstraintResponse, ProjectJointPositionDirectionConstraintValidationError, ProjectJointPositionDirectionConstraintValidationErrorAllOfData, RRTConnectAlgorithm, RRTConnectAlgorithmAlgorithmNameEnum, RRTConnectAlgorithmStepSize, Range, Rectangle, RectangleShapeTypeEnum, RectangularCapsule, RectangularCapsuleShapeTypeEnum, ReleaseChannel, RequestArgs, RequiredError, RobotConfigurationsApi, RobotConfigurationsApiAxiosParamCreator, RobotConfigurationsApiFactory, RobotConfigurationsApiFp, RobotController, RobotControllerConfiguration, RobotControllerConfigurationRequest, RobotControllerState, RobotSystemMode, RobotTcp, RobotTcpData, SafetyGeometry, SafetyGeometryBox, SafetyGeometryCapsule, SafetyGeometryLozenge, SafetyGeometryPlane, SafetyGeometryPrism, SafetyGeometrySphere, SafetyStateType, SafetyZone, SafetyZonePose, SafetyZones, ServiceGroup, ServiceStatus, ServiceStatusPhase, ServiceStatusResponse, ServiceStatusSeverity, ServiceStatusStatus, SessionApi, SessionApiAxiosParamCreator, SessionApiFactory, SessionApiFp, SessionResponse, SetIO, SettableRobotSystemMode, SingularityHandling, SingularityTypeEnum, Snap7IO, Snap7IOArea, Snap7IOData, Snap7IODirection, Snap7IOTypeEnum, Sphere, SphereShapeTypeEnum, StartMovementRequest, StartMovementRequestMessageTypeEnum, StartMovementResponse, StartMovementResponseKindEnum, StartOnIO, StaubliController, StaubliControllerKindEnum, StaubliControllerRtiServer, StopActionChunksRequest, StopActionChunksRequestMessageTypeEnum, StopActionChunksResponse, StopActionChunksResponseKindEnum, StorageKey, StorageKeySourceEnum, StoreCollisionComponentsApi, StoreCollisionComponentsApiAxiosParamCreator, StoreCollisionComponentsApiFactory, StoreCollisionComponentsApiFp, StoreCollisionSetupsApi, StoreCollisionSetupsApiAxiosParamCreator, StoreCollisionSetupsApiFactory, StoreCollisionSetupsApiFp, StoreObjectApi, StoreObjectApiAxiosParamCreator, StoreObjectApiFactory, StoreObjectApiFp, StreamIOValuesResponse, SystemApi, SystemApiAxiosParamCreator, SystemApiFactory, SystemApiFp, TcpOffset, TcpRequiredError, TcpRequiredErrorKindEnum, TcpVelocityRequest, TcpVelocityRequestMessageTypeEnum, TcpVelocityResponse, TcpVelocityResponseKindEnum, ToolValue, ToolValueOrKey, ToolValueSourceEnum, TorqueExceededError, TorqueExceededErrorKindEnum, TorqueExceededErrorTorqueExceeded, TrajectoryCachingApi, TrajectoryCachingApiAxiosParamCreator, TrajectoryCachingApiFactory, TrajectoryCachingApiFp, TrajectoryData, TrajectoryDataMessageTypeEnum, TrajectoryDetails, TrajectoryDetailsKindEnum, TrajectoryDetailsState, TrajectoryEnded, TrajectoryEndedKindEnum, TrajectoryExecutionApi, TrajectoryExecutionApiAxiosParamCreator, TrajectoryExecutionApiFactory, TrajectoryExecutionApiFp, TrajectoryId, TrajectoryIdMessageTypeEnum, TrajectoryPausedByUser, TrajectoryPausedByUserKindEnum, TrajectoryPausedOnIO, TrajectoryPausedOnIOKindEnum, TrajectoryPlanningApi, TrajectoryPlanningApiAxiosParamCreator, TrajectoryPlanningApiFactory, TrajectoryPlanningApiFp, TrajectoryRunning, TrajectoryRunningKindEnum, TrajectorySection, TrajectoryWaitForIO, TrajectoryWaitForIOKindEnum, UnitType, UnitreeController, UnitreeControllerKindEnum, UnitreeControllerRobotTypeEnum, UniversalrobotsController, UniversalrobotsControllerKindEnum, UnpauseActionChunksRequest, UnpauseActionChunksRequestMessageTypeEnum, UnpauseActionChunksResponse, UnpauseActionChunksResponseKindEnum, UpdateCellVersionRequest, UpdateNovaVersionRequest, User, ValidationError, ValidationError2, ValidationErrorLocInner, VersionApi, VersionApiAxiosParamCreator, VersionApiFactory, VersionApiFp, VirtualController, VirtualControllerApi, VirtualControllerApiAxiosParamCreator, VirtualControllerApiFactory, VirtualControllerApiFp, VirtualControllerBehaviorApi, VirtualControllerBehaviorApiAxiosParamCreator, VirtualControllerBehaviorApiFactory, VirtualControllerBehaviorApiFp, VirtualControllerInputsOutputsApi, VirtualControllerInputsOutputsApiAxiosParamCreator, VirtualControllerInputsOutputsApiFactory, VirtualControllerInputsOutputsApiFp, VirtualControllerKindEnum, VirtualRobotConfiguration, WaitForIOEventRequest, Waypoint, WaypointCoordinates, YaskawaController, YaskawaControllerKindEnum, ZodValidationError, ZodValidationErrorError, ZodValidationErrorErrorCodeEnum, ZodValidationErrorErrorDetailsInner, ZodValidationErrorErrorDetailsInnerPathInner, operationServerMap };