@wandelbots/nova-js 4.0.0 → 4.1.0-nova-api-dev.26-6-0-dev-102

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.
@@ -2,13 +2,13 @@ import { n as MockNovaInstance, t as AutoReconnectingWebsocket } from "./AutoRec
2
2
  import * as _$axios from "axios";
3
3
  import { AxiosInstance, AxiosPromise, RawAxiosRequestConfig } from "axios";
4
4
 
5
- //#region node_modules/.pnpm/@wandelbots+nova-api@26.5.0/node_modules/@wandelbots/nova-api/dist/v2/index.d.ts
5
+ //#region node_modules/.pnpm/@wandelbots+nova-api@26.6.0-dev.102/node_modules/@wandelbots/nova-api/dist/v2/index.d.ts
6
6
  //#region v2/configuration.d.ts
7
7
  /**
8
8
  * Wandelbots NOVA API
9
9
  * Interact with robots in an easy and intuitive way.
10
10
  *
11
- * The version of the OpenAPI document: 2.5.0
11
+ * The version of the OpenAPI document: 2.6.0 dev
12
12
  *
13
13
  *
14
14
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -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>;
@@ -1240,6 +1376,19 @@ interface ControllerDescription {
1240
1376
  */
1241
1377
  'supports_safety_zones': boolean;
1242
1378
  }
1379
+ /**
1380
+ * 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 `addresses`, so it can reach the robot network directly.
1381
+ */
1382
+ interface ControllerNetworkInterface {
1383
+ /**
1384
+ * IPv4 addresses in CIDR notation to assign to the controller\'s network interface. Each value must be a valid IPv4 address followed by a prefix length between 0 and 32.
1385
+ */
1386
+ 'addresses': Array<string>;
1387
+ /**
1388
+ * Name of the node\'s physical network port that connects to the robot network, e.g., `enp10s0f0`. The controller\'s interface is provided from this port. The physical port of an existing controller can\'t be changed by an in-place update. To move a controller to a different port, delete the controller and re-add it with the new `pf`.
1389
+ */
1390
+ 'pf': string;
1391
+ }
1243
1392
  interface ConvertVendorConfiguredPose422Response {
1244
1393
  'detail'?: Array<ValidationError>;
1245
1394
  }
@@ -1523,7 +1672,7 @@ declare const ErrorUnsupportedOperationErrorFeedbackNameEnum: {
1523
1672
  };
1524
1673
  type ErrorUnsupportedOperationErrorFeedbackNameEnum = typeof ErrorUnsupportedOperationErrorFeedbackNameEnum[keyof typeof ErrorUnsupportedOperationErrorFeedbackNameEnum];
1525
1674
  /**
1526
- * 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.
1527
1676
  */
1528
1677
  interface Execute {
1529
1678
  /**
@@ -1532,6 +1681,26 @@ interface Execute {
1532
1681
  'joint_position': Array<number>;
1533
1682
  'details'?: ExecuteDetails;
1534
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;
1535
1704
  /**
1536
1705
  * @type ExecuteDetails
1537
1706
  */
@@ -1576,24 +1745,6 @@ type ExecuteTrajectoryResponse = {
1576
1745
  } & PlaybackSpeedResponse | {
1577
1746
  kind: 'START_RECEIVED';
1578
1747
  } & StartMovementResponse;
1579
- /**
1580
- * @type ExecuteWaypointJoggingRequest
1581
- */
1582
- type ExecuteWaypointJoggingRequest = InitializeJoggingRequest | JointWaypointsRequest | PauseJoggingRequest | PoseWaypointsRequest;
1583
- /**
1584
- * @type ExecuteWaypointJoggingResponse
1585
- */
1586
- type ExecuteWaypointJoggingResponse = {
1587
- kind: 'INITIALIZE_RECEIVED';
1588
- } & InitializeJoggingResponse | {
1589
- kind: 'JOINT_WAYPOINTS_RECEIVED';
1590
- } & JointWaypointsResponse | {
1591
- kind: 'MOTION_ERROR';
1592
- } & MovementErrorResponse | {
1593
- kind: 'PAUSE_RECEIVED';
1594
- } & PauseJoggingResponse | {
1595
- kind: 'POSE_WAYPOINTS_RECEIVED';
1596
- } & PoseWaypointsResponse;
1597
1748
  /**
1598
1749
  * A datapoint inside external joint stream.
1599
1750
  */
@@ -1613,6 +1764,11 @@ interface ExternalJointStreamRequest {
1613
1764
  interface FanucController {
1614
1765
  'kind': FanucControllerKindEnum;
1615
1766
  'controller_ip': string;
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;
1616
1772
  }
1617
1773
  declare const FanucControllerKindEnum: {
1618
1774
  readonly FanucController: "FanucController";
@@ -1883,6 +2039,39 @@ interface ForwardKinematicsValidationError {
1883
2039
  };
1884
2040
  'data'?: ErrorInvalidJointCount;
1885
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;
1886
2075
  interface GetTrajectoryResponse {
1887
2076
  /**
1888
2077
  * Unique identifier of the motion group the trajectory is planned for.
@@ -2065,6 +2254,41 @@ interface InertiaTensor {
2065
2254
  */
2066
2255
  'yz': number;
2067
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];
2068
2292
  /**
2069
2293
  * Send this message to start jogging a motion group.
2070
2294
  */
@@ -2335,13 +2559,25 @@ declare const JointLimitExceededErrorKindEnum: {
2335
2559
  };
2336
2560
  type JointLimitExceededErrorKindEnum = typeof JointLimitExceededErrorKindEnum[keyof typeof JointLimitExceededErrorKindEnum];
2337
2561
  interface JointLimits {
2562
+ /**
2563
+ * Joint position limits in rad.
2564
+ */
2338
2565
  'position'?: LimitRange;
2566
+ /**
2567
+ * Joint velocity limit in rad/s.
2568
+ */
2339
2569
  'velocity'?: number;
2570
+ /**
2571
+ * Joint acceleration limit in rad/s².
2572
+ */
2340
2573
  'acceleration'?: number;
2341
2574
  /**
2342
- * > **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.
2343
2576
  */
2344
2577
  'jerk'?: number;
2578
+ /**
2579
+ * Joint torque limit in Nm.
2580
+ */
2345
2581
  'torque'?: number;
2346
2582
  }
2347
2583
  interface JointPTPMotion {
@@ -2397,49 +2633,22 @@ declare const JointVelocityResponseKindEnum: {
2397
2633
  };
2398
2634
  type JointVelocityResponseKindEnum = typeof JointVelocityResponseKindEnum[keyof typeof JointVelocityResponseKindEnum];
2399
2635
  /**
2400
- * 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.
2401
2637
  */
2402
2638
  interface JointWaypoint {
2403
2639
  /**
2404
- * Time since session start for when this waypoint should be reached [ms].
2640
+ * Type specifier for server, set automatically.
2405
2641
  */
2406
- 'timestamp': number;
2642
+ 'kind': JointWaypointKindEnum;
2407
2643
  /**
2408
2644
  * This structure describes a set of joint values, e.g., positions, currents, torques, of a motion group. Float precision is the default.
2409
2645
  */
2410
2646
  'joints': Array<number>;
2411
2647
  }
2412
- /**
2413
- * 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.
2414
- */
2415
- interface JointWaypointsRequest {
2416
- /**
2417
- * Type specifier for server, set automatically.
2418
- */
2419
- 'message_type': JointWaypointsRequestMessageTypeEnum;
2420
- /**
2421
- * List of joint waypoints.
2422
- */
2423
- 'waypoints': Array<JointWaypoint>;
2424
- }
2425
- declare const JointWaypointsRequestMessageTypeEnum: {
2426
- readonly JointWaypointsRequest: "JointWaypointsRequest";
2427
- };
2428
- type JointWaypointsRequestMessageTypeEnum = typeof JointWaypointsRequestMessageTypeEnum[keyof typeof JointWaypointsRequestMessageTypeEnum];
2429
- /**
2430
- * Acknowledgment to a JointWaypointsRequest.
2431
- */
2432
- interface JointWaypointsResponse {
2433
- /**
2434
- * Error message in case of invalid JointWaypointsRequest.
2435
- */
2436
- 'message'?: string;
2437
- 'kind': JointWaypointsResponseKindEnum;
2438
- }
2439
- declare const JointWaypointsResponseKindEnum: {
2440
- readonly JointWaypointsReceived: "JOINT_WAYPOINTS_RECEIVED";
2648
+ declare const JointWaypointKindEnum: {
2649
+ readonly Joints: "JOINTS";
2441
2650
  };
2442
- type JointWaypointsResponseKindEnum = typeof JointWaypointsResponseKindEnum[keyof typeof JointWaypointsResponseKindEnum];
2651
+ type JointWaypointKindEnum = typeof JointWaypointKindEnum[keyof typeof JointWaypointKindEnum];
2443
2652
  /**
2444
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.
2445
2654
  */
@@ -2501,6 +2710,10 @@ interface KukaConfiguredPose {
2501
2710
  interface KukaController {
2502
2711
  'kind': KukaControllerKindEnum;
2503
2712
  'controller_ip': string;
2713
+ /**
2714
+ * The addresses must be ordered as KLI first and RSI second.
2715
+ */
2716
+ 'network_interface'?: ControllerNetworkInterface;
2504
2717
  'controller_port': number;
2505
2718
  'rsi_server': KukaControllerRsiServer;
2506
2719
  /**
@@ -2621,7 +2834,13 @@ type LicenseStatusEnum = typeof LicenseStatusEnum[keyof typeof LicenseStatusEnum
2621
2834
  * The upper_limit must be greater then the lower_limit.
2622
2835
  */
2623
2836
  interface LimitRange {
2837
+ /**
2838
+ * Lower position limit in rad.
2839
+ */
2624
2840
  'lower_limit'?: number;
2841
+ /**
2842
+ * Upper position limit in rad.
2843
+ */
2625
2844
  'upper_limit'?: number;
2626
2845
  }
2627
2846
  interface LimitSet {
@@ -2708,9 +2927,11 @@ interface ListTrajectoriesResponse {
2708
2927
  }
2709
2928
  declare const Manufacturer: {
2710
2929
  readonly Abb: "abb";
2930
+ readonly Bostondynamics: "bostondynamics";
2711
2931
  readonly Fanuc: "fanuc";
2712
2932
  readonly Kuka: "kuka";
2713
2933
  readonly Staubli: "staubli";
2934
+ readonly Unitree: "unitree";
2714
2935
  readonly Universalrobots: "universalrobots";
2715
2936
  readonly Yaskawa: "yaskawa";
2716
2937
  };
@@ -2759,7 +2980,7 @@ interface MergeTrajectoriesSegment {
2759
2980
  */
2760
2981
  'trajectory': JointTrajectory;
2761
2982
  /**
2762
- * 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.
2763
2984
  */
2764
2985
  'limits_override'?: LimitsOverride;
2765
2986
  /**
@@ -2880,7 +3101,7 @@ interface ModelError {
2880
3101
  interface MotionCommand {
2881
3102
  'blending'?: MotionCommandBlending;
2882
3103
  /**
2883
- * 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.
2884
3105
  */
2885
3106
  'limits_override'?: LimitsOverride;
2886
3107
  'path': MotionCommandPath;
@@ -2894,6 +3115,27 @@ type MotionCommandBlending = BlendingAuto | BlendingPosition;
2894
3115
  * @type MotionCommandPath
2895
3116
  */
2896
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
+ }
2897
3139
  /**
2898
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].
2899
3141
  */
@@ -2970,7 +3212,7 @@ interface MotionGroupFromJson {
2970
3212
  */
2971
3213
  'motion_group': string;
2972
3214
  /**
2973
- * 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).
2974
3216
  */
2975
3217
  'json_data': string;
2976
3218
  /**
@@ -2978,7 +3220,7 @@ interface MotionGroupFromJson {
2978
3220
  */
2979
3221
  'extracted_motion_group_id': string;
2980
3222
  /**
2981
- * 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.
2982
3224
  */
2983
3225
  'initial_joint_position'?: string;
2984
3226
  }
@@ -2992,7 +3234,7 @@ interface MotionGroupFromType {
2992
3234
  */
2993
3235
  'motion_group_model': string;
2994
3236
  /**
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.
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.
2996
3238
  */
2997
3239
  'initial_joint_position'?: string;
2998
3240
  }
@@ -3031,6 +3273,19 @@ interface MotionGroupJoints {
3031
3273
  */
3032
3274
  'torques'?: Array<number>;
3033
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
+ }
3034
3289
  /**
3035
3290
  * Metadata about a motion group model.
3036
3291
  */
@@ -3109,17 +3364,25 @@ interface MotionGroupState {
3109
3364
  */
3110
3365
  'joint_current'?: Array<number>;
3111
3366
  /**
3112
- * 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.
3113
3368
  */
3114
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;
3115
3374
  /**
3116
3375
  * Unique identifier addressing the active TCP. Might not be returned for positioners as some do not support TCPs, depending on the model.
3117
3376
  */
3118
3377
  'tcp'?: string;
3119
3378
  /**
3120
- * 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.
3121
3380
  */
3122
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;
3123
3386
  /**
3124
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.
3125
3388
  */
@@ -3504,6 +3767,33 @@ declare const PathLinePathDefinitionNameEnum: {
3504
3767
  readonly PathLine: "PathLine";
3505
3768
  };
3506
3769
  type PathLinePathDefinitionNameEnum = typeof PathLinePathDefinitionNameEnum[keyof typeof PathLinePathDefinitionNameEnum];
3770
+ /**
3771
+ * Request to pause executing action chunks. If successful, `execute` jogging state in [MotionGroupState](MotionGroupState.yaml) is set to `PAUSED_BY_USER`.
3772
+ */
3773
+ interface PauseActionChunksRequest {
3774
+ /**
3775
+ * Type specifier for server, set automatically.
3776
+ */
3777
+ 'message_type': PauseActionChunksRequestMessageTypeEnum;
3778
+ }
3779
+ declare const PauseActionChunksRequestMessageTypeEnum: {
3780
+ readonly PauseActionChunksRequest: "PauseActionChunksRequest";
3781
+ };
3782
+ type PauseActionChunksRequestMessageTypeEnum = typeof PauseActionChunksRequestMessageTypeEnum[keyof typeof PauseActionChunksRequestMessageTypeEnum];
3783
+ /**
3784
+ * Acknowledgment to a PauseActionChunksRequest.
3785
+ */
3786
+ interface PauseActionChunksResponse {
3787
+ /**
3788
+ * Error message in case of invalid PauseActionChunksRequest.
3789
+ */
3790
+ 'message'?: string;
3791
+ 'kind': PauseActionChunksResponseKindEnum;
3792
+ }
3793
+ declare const PauseActionChunksResponseKindEnum: {
3794
+ readonly PauseReceived: "PAUSE_RECEIVED";
3795
+ };
3796
+ type PauseActionChunksResponseKindEnum = typeof PauseActionChunksResponseKindEnum[keyof typeof PauseActionChunksResponseKindEnum];
3507
3797
  /**
3508
3798
  * Request to pause jogging. If successful, `execute` jogging state in [MotionGroupState](MotionGroupState.yaml) is set to `PAUSED_BY_USER`.
3509
3799
  */
@@ -3617,6 +3907,10 @@ interface PlanCollisionFreeRequest {
3617
3907
  */
3618
3908
  interface PlanCollisionFreeResponse {
3619
3909
  'response': PlanCollisionFreeResponseResponse;
3910
+ /**
3911
+ * The motion commands that produced the trajectory.
3912
+ */
3913
+ 'motion_commands'?: Array<MotionCommand>;
3620
3914
  }
3621
3915
  /**
3622
3916
  * @type PlanCollisionFreeResponseResponse
@@ -3647,6 +3941,10 @@ interface PlanTrajectoryRequest {
3647
3941
  * List of motion commands. A command consists of a path definition (line, circle, joint_ptp, cartesian_ptp, cubic_spline), blending, and limits override.
3648
3942
  */
3649
3943
  'motion_commands': Array<MotionCommand>;
3944
+ /**
3945
+ * <!-- theme: danger --> > > **Experimental** Strategy used to deal with wrist singularities along a cartesian path.
3946
+ */
3947
+ 'singularity_handling'?: SingularityHandling;
3650
3948
  }
3651
3949
  interface PlanTrajectoryResponse {
3652
3950
  'response': PlanTrajectoryResponseResponse;
@@ -3724,49 +4022,22 @@ interface Pose {
3724
4022
  'orientation'?: Array<number>;
3725
4023
  }
3726
4024
  /**
3727
- * A waypoint in Cartesian space for jogging. > **NOTE** > > This type is experimental and its behavior may change in future releases.
4025
+ * A pose waypoint for action chunk streaming. > **NOTE** > > This type is experimental and its behavior may change in future releases.
3728
4026
  */
3729
4027
  interface PoseWaypoint {
3730
4028
  /**
3731
- * Time since session start for when this waypoint should be reached [ms].
4029
+ * Type specifier for server, set automatically.
3732
4030
  */
3733
- 'timestamp': number;
4031
+ 'kind': PoseWaypointKindEnum;
3734
4032
  /**
3735
4033
  * Cartesian pose for this waypoint.
3736
4034
  */
3737
4035
  'pose': Pose;
3738
4036
  }
3739
- /**
3740
- * 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.
3741
- */
3742
- interface PoseWaypointsRequest {
3743
- /**
3744
- * Type specifier for server, set automatically.
3745
- */
3746
- 'message_type': PoseWaypointsRequestMessageTypeEnum;
3747
- /**
3748
- * List of pose waypoints.
3749
- */
3750
- 'waypoints': Array<PoseWaypoint>;
3751
- }
3752
- declare const PoseWaypointsRequestMessageTypeEnum: {
3753
- readonly PoseWaypointsRequest: "PoseWaypointsRequest";
4037
+ declare const PoseWaypointKindEnum: {
4038
+ readonly Pose: "POSE";
3754
4039
  };
3755
- type PoseWaypointsRequestMessageTypeEnum = typeof PoseWaypointsRequestMessageTypeEnum[keyof typeof PoseWaypointsRequestMessageTypeEnum];
3756
- /**
3757
- * Acknowledgment to a PoseWaypointsRequest.
3758
- */
3759
- interface PoseWaypointsResponse {
3760
- /**
3761
- * Error message in case of invalid PoseWaypointsRequest.
3762
- */
3763
- 'message'?: string;
3764
- 'kind': PoseWaypointsResponseKindEnum;
3765
- }
3766
- declare const PoseWaypointsResponseKindEnum: {
3767
- readonly PoseWaypointsReceived: "POSE_WAYPOINTS_RECEIVED";
3768
- };
3769
- type PoseWaypointsResponseKindEnum = typeof PoseWaypointsResponseKindEnum[keyof typeof PoseWaypointsResponseKindEnum];
4040
+ type PoseWaypointKindEnum = typeof PoseWaypointKindEnum[keyof typeof PoseWaypointKindEnum];
3770
4041
  interface ProfinetDescription {
3771
4042
  /**
3772
4043
  * The vendor identifier of the PROFINET device, identifying the manufacturer.
@@ -3794,7 +4065,7 @@ interface ProfinetIO {
3794
4065
  */
3795
4066
  'direction': ProfinetIODirection;
3796
4067
  /**
3797
- * 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
4068
+ * 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
3798
4069
  */
3799
4070
  'byte_address': number;
3800
4071
  /**
@@ -3817,7 +4088,7 @@ interface ProfinetIOData {
3817
4088
  */
3818
4089
  'direction': ProfinetIODirection;
3819
4090
  /**
3820
- * 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
4091
+ * 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
3821
4092
  */
3822
4093
  'byte_address': number;
3823
4094
  /**
@@ -3856,13 +4127,19 @@ interface ProfinetInputOutputConfig {
3856
4127
  */
3857
4128
  'config': string;
3858
4129
  /**
3859
- * 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.
4130
+ * 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.
3860
4131
  */
3861
- 'input_offset': number;
4132
+ 'offsets'?: Array<ProfinetSlotOffset>;
3862
4133
  /**
3863
- * 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.
4134
+ * 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.
4135
+ * @deprecated
3864
4136
  */
3865
- 'output_offset': number;
4137
+ 'input_offset'?: number;
4138
+ /**
4139
+ * 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.
4140
+ * @deprecated
4141
+ */
4142
+ 'output_offset'?: number;
3866
4143
  }
3867
4144
  /**
3868
4145
  * 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).
@@ -3881,6 +4158,20 @@ interface ProfinetSlotDescription {
3881
4158
  */
3882
4159
  'subslots': Array<ProfinetSubSlotDescription>;
3883
4160
  }
4161
+ interface ProfinetSlotOffset {
4162
+ /**
4163
+ * 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.
4164
+ */
4165
+ 'slot': number;
4166
+ /**
4167
+ * 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.
4168
+ */
4169
+ 'input_offset': number;
4170
+ /**
4171
+ * 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.
4172
+ */
4173
+ 'output_offset': number;
4174
+ }
3884
4175
  interface ProfinetSubSlotDescription {
3885
4176
  /**
3886
4177
  * The number/index of the PROFINET subslot.
@@ -4134,7 +4425,7 @@ interface RobotController {
4134
4425
  /**
4135
4426
  * @type RobotControllerConfiguration
4136
4427
  */
4137
- type RobotControllerConfiguration = AbbController | FanucController | KukaController | UniversalrobotsController | VirtualController | YaskawaController;
4428
+ type RobotControllerConfiguration = AbbController | BostondynamicsController | FanucController | KukaController | StaubliController | UnitreeController | UniversalrobotsController | VirtualController | YaskawaController;
4138
4429
  /**
4139
4430
  * Information to generate all robot controller configurations that match a given ARP scan result.
4140
4431
  */
@@ -4530,6 +4821,15 @@ declare const SettableRobotSystemMode: {
4530
4821
  readonly ModeControl: "MODE_CONTROL";
4531
4822
  };
4532
4823
  type SettableRobotSystemMode = typeof SettableRobotSystemMode[keyof typeof SettableRobotSystemMode];
4824
+ /**
4825
+ * <!-- 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.
4826
+ */
4827
+ declare const SingularityHandling: {
4828
+ readonly None: "NONE";
4829
+ readonly PalletizingWrist: "PALLETIZING_WRIST";
4830
+ readonly AdaptiveSampling: "ADAPTIVE_SAMPLING";
4831
+ };
4832
+ type SingularityHandling = typeof SingularityHandling[keyof typeof SingularityHandling];
4533
4833
  declare const SingularityTypeEnum: {
4534
4834
  readonly Wrist: "WRIST";
4535
4835
  readonly Elbow: "ELBOW";
@@ -4691,6 +4991,55 @@ interface StartOnIO {
4691
4991
  'comparator': Comparator;
4692
4992
  'io_origin': IOOrigin;
4693
4993
  }
4994
+ /**
4995
+ * 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.
4996
+ */
4997
+ interface StaubliController {
4998
+ 'kind': StaubliControllerKindEnum;
4999
+ 'controller_ip': string;
5000
+ 'network_interface'?: ControllerNetworkInterface;
5001
+ 'controller_port': number;
5002
+ 'command_port': number;
5003
+ 'rti_server': StaubliControllerRtiServer;
5004
+ }
5005
+ declare const StaubliControllerKindEnum: {
5006
+ readonly StaubliController: "StaubliController";
5007
+ };
5008
+ type StaubliControllerKindEnum = typeof StaubliControllerKindEnum[keyof typeof StaubliControllerKindEnum];
5009
+ /**
5010
+ * The RTI server runs inside of the cell.
5011
+ */
5012
+ interface StaubliControllerRtiServer {
5013
+ 'ip': string;
5014
+ 'port': number;
5015
+ }
5016
+ /**
5017
+ * Request to stop executing action chunks. If successful, `execute` jogging state in [MotionGroupState](MotionGroupState.yaml) is set to `PAUSED_BY_USER`.
5018
+ */
5019
+ interface StopActionChunksRequest {
5020
+ /**
5021
+ * Type specifier for server, set automatically.
5022
+ */
5023
+ 'message_type': StopActionChunksRequestMessageTypeEnum;
5024
+ }
5025
+ declare const StopActionChunksRequestMessageTypeEnum: {
5026
+ readonly StopActionChunksRequest: "StopActionChunksRequest";
5027
+ };
5028
+ type StopActionChunksRequestMessageTypeEnum = typeof StopActionChunksRequestMessageTypeEnum[keyof typeof StopActionChunksRequestMessageTypeEnum];
5029
+ /**
5030
+ * Acknowledgment to a StopActionChunksRequest.
5031
+ */
5032
+ interface StopActionChunksResponse {
5033
+ /**
5034
+ * Error message in case of invalid StopActionChunksRequest.
5035
+ */
5036
+ 'message'?: string;
5037
+ 'kind': StopActionChunksResponseKindEnum;
5038
+ }
5039
+ declare const StopActionChunksResponseKindEnum: {
5040
+ readonly StopReceived: "STOP_RECEIVED";
5041
+ };
5042
+ type StopActionChunksResponseKindEnum = typeof StopActionChunksResponseKindEnum[keyof typeof StopActionChunksResponseKindEnum];
4694
5043
  /**
4695
5044
  * 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/).
4696
5045
  */
@@ -4971,17 +5320,82 @@ declare const UnitType: {
4971
5320
  readonly UnitMeter: "UNIT_METER";
4972
5321
  };
4973
5322
  type UnitType = typeof UnitType[keyof typeof UnitType];
5323
+ /**
5324
+ * 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.
5325
+ */
5326
+ interface UnitreeController {
5327
+ 'kind': UnitreeControllerKindEnum;
5328
+ /**
5329
+ * The IP address of the Unitree robot.
5330
+ */
5331
+ 'controller_ip': string;
5332
+ /**
5333
+ * The Unitree robot model type.
5334
+ */
5335
+ 'robot_type': UnitreeControllerRobotTypeEnum;
5336
+ /**
5337
+ * The network interface used for DDS discovery.
5338
+ */
5339
+ 'network_interface'?: string;
5340
+ /**
5341
+ * Enable DDS unicast mode for environments where multicast is unavailable.
5342
+ */
5343
+ 'dds_unicast_mode'?: boolean;
5344
+ /**
5345
+ * Enable exclusive lease-based control of the robot.
5346
+ */
5347
+ 'enable_lease'?: boolean;
5348
+ }
5349
+ declare const UnitreeControllerKindEnum: {
5350
+ readonly UnitreeController: "UnitreeController";
5351
+ };
5352
+ type UnitreeControllerKindEnum = typeof UnitreeControllerKindEnum[keyof typeof UnitreeControllerKindEnum];
5353
+ declare const UnitreeControllerRobotTypeEnum: {
5354
+ readonly Go2: "go2";
5355
+ readonly G1: "g1";
5356
+ readonly B2: "b2";
5357
+ readonly H1: "h1";
5358
+ };
5359
+ type UnitreeControllerRobotTypeEnum = typeof UnitreeControllerRobotTypeEnum[keyof typeof UnitreeControllerRobotTypeEnum];
4974
5360
  /**
4975
5361
  * The configuration of a physical Universal Robots controller has to contain IP address of the controller.
4976
5362
  */
4977
5363
  interface UniversalrobotsController {
4978
5364
  'kind': UniversalrobotsControllerKindEnum;
4979
5365
  'controller_ip': string;
5366
+ 'network_interface'?: ControllerNetworkInterface;
4980
5367
  }
4981
5368
  declare const UniversalrobotsControllerKindEnum: {
4982
5369
  readonly UniversalrobotsController: "UniversalrobotsController";
4983
5370
  };
4984
5371
  type UniversalrobotsControllerKindEnum = typeof UniversalrobotsControllerKindEnum[keyof typeof UniversalrobotsControllerKindEnum];
5372
+ /**
5373
+ * Request to unpause executing action chunks. If successful, `execute` jogging state in [MotionGroupState](MotionGroupState.yaml) is set to `RUNNING`.
5374
+ */
5375
+ interface UnpauseActionChunksRequest {
5376
+ /**
5377
+ * Type specifier for server, set automatically.
5378
+ */
5379
+ 'message_type': UnpauseActionChunksRequestMessageTypeEnum;
5380
+ }
5381
+ declare const UnpauseActionChunksRequestMessageTypeEnum: {
5382
+ readonly UnpauseActionChunksRequest: "UnpauseActionChunksRequest";
5383
+ };
5384
+ type UnpauseActionChunksRequestMessageTypeEnum = typeof UnpauseActionChunksRequestMessageTypeEnum[keyof typeof UnpauseActionChunksRequestMessageTypeEnum];
5385
+ /**
5386
+ * Acknowledgment to an UnpauseActionChunksRequest.
5387
+ */
5388
+ interface UnpauseActionChunksResponse {
5389
+ /**
5390
+ * Error message in case of invalid UnpauseActionChunksRequest.
5391
+ */
5392
+ 'message'?: string;
5393
+ 'kind': UnpauseActionChunksResponseKindEnum;
5394
+ }
5395
+ declare const UnpauseActionChunksResponseKindEnum: {
5396
+ readonly UnpauseReceived: "UNPAUSE_RECEIVED";
5397
+ };
5398
+ type UnpauseActionChunksResponseKindEnum = typeof UnpauseActionChunksResponseKindEnum[keyof typeof UnpauseActionChunksResponseKindEnum];
4985
5399
  /**
4986
5400
  * Update a single cell\'s Foundation chart version based on the indicated release channel.
4987
5401
  */
@@ -5050,9 +5464,13 @@ interface VirtualController {
5050
5464
  */
5051
5465
  'json'?: string;
5052
5466
  /**
5053
- * 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.
5467
+ * 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.
5054
5468
  */
5055
5469
  'initial_joint_position'?: string;
5470
+ /**
5471
+ * 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
5472
+ */
5473
+ 'motion_groups'?: Array<AddVirtualControllerMotionGroupRequest>;
5056
5474
  }
5057
5475
  declare const VirtualControllerKindEnum: {
5058
5476
  readonly VirtualController: "VirtualController";
@@ -5078,12 +5496,35 @@ interface WaitForIOEventRequest {
5078
5496
  */
5079
5497
  'comparator': Comparator;
5080
5498
  }
5499
+ /**
5500
+ * A waypoint for action chunk streaming. > **NOTE** > > This type is experimental and its behavior may change in future releases.
5501
+ */
5502
+ interface Waypoint {
5503
+ /**
5504
+ * Exact timestamp [ms] at which the waypoint should be reached, relative to the start of the session.
5505
+ */
5506
+ 'timestamp': number;
5507
+ /**
5508
+ * Coordinates for this waypoint.
5509
+ */
5510
+ 'waypoint': WaypointCoordinates;
5511
+ }
5512
+ /**
5513
+ * @type WaypointCoordinates
5514
+ * Coordinates for an action chunk streaming waypoint. > **NOTE** > > This type is experimental and its behavior may change in future releases.
5515
+ */
5516
+ type WaypointCoordinates = {
5517
+ kind: 'JOINTS';
5518
+ } & JointWaypoint | {
5519
+ kind: 'POSE';
5520
+ } & PoseWaypoint;
5081
5521
  /**
5082
5522
  * The configuration of a physical Yaskawa robot controller has to contain IP address of the controller.
5083
5523
  */
5084
5524
  interface YaskawaController {
5085
5525
  'kind': YaskawaControllerKindEnum;
5086
5526
  'controller_ip': string;
5527
+ 'network_interface'?: ControllerNetworkInterface;
5087
5528
  }
5088
5529
  declare const YaskawaControllerKindEnum: {
5089
5530
  readonly YaskawaController: "YaskawaController";
@@ -5116,6 +5557,66 @@ interface ZodValidationErrorErrorDetailsInner {
5116
5557
  * @type ZodValidationErrorErrorDetailsInnerPathInner
5117
5558
  */
5118
5559
  type ZodValidationErrorErrorDetailsInnerPathInner = number | string;
5560
+ /**
5561
+ * ActionChunkStreamingApi - axios parameter creator
5562
+ */
5563
+ declare const ActionChunkStreamingApiAxiosParamCreator: (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<RequestArgs>;
5574
+ };
5575
+ /**
5576
+ * ActionChunkStreamingApi - functional programming interface
5577
+ */
5578
+ declare const ActionChunkStreamingApiFp: (configuration?: Configuration) => {
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): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ExecuteActionChunksResponse>>;
5589
+ };
5590
+ /**
5591
+ * ActionChunkStreamingApi - factory interface
5592
+ */
5593
+ declare const ActionChunkStreamingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
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): AxiosPromise<ExecuteActionChunksResponse>;
5604
+ };
5605
+ /**
5606
+ * ActionChunkStreamingApi - object-oriented interface
5607
+ */
5608
+ declare class ActionChunkStreamingApi extends BaseAPI {
5609
+ /**
5610
+ * **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.
5611
+ * @summary Execute Action Chunks
5612
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
5613
+ * @param {string} controller Unique identifier to address a controller in the cell.
5614
+ * @param {ExecuteActionChunksRequest} executeActionChunksRequest
5615
+ * @param {*} [options] Override http request option.
5616
+ * @throws {RequiredError}
5617
+ */
5618
+ executeActionChunks(cell: string, controller: string, executeActionChunksRequest: ExecuteActionChunksRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ExecuteActionChunksResponse, any, {}>>;
5619
+ }
5119
5620
  /**
5120
5621
  * ApplicationApi - axios parameter creator
5121
5622
  */
@@ -5510,15 +6011,16 @@ declare const BUSInputsOutputsApiAxiosParamCreator: (configuration?: Configurati
5510
6011
  */
5511
6012
  getProfinetGSDML: (cell: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5512
6013
  /**
5513
- * **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.
6014
+ * **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.
5514
6015
  * @summary PROFINET Inputs/Outputs to File
5515
6016
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6017
+ * @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.
5516
6018
  * @param {number} [inputOffset]
5517
6019
  * @param {number} [outputOffset]
5518
6020
  * @param {*} [options] Override http request option.
5519
6021
  * @throws {RequiredError}
5520
6022
  */
5521
- getProfinetIOsFromFile: (cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6023
+ getProfinetIOsFromFile: (cell: string, offsets?: Array<ProfinetSlotOffset>, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5522
6024
  /**
5523
6025
  * **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.
5524
6026
  * @summary List Descriptions
@@ -5716,15 +6218,16 @@ declare const BUSInputsOutputsApiFp: (configuration?: Configuration) => {
5716
6218
  */
5717
6219
  getProfinetGSDML(cell: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
5718
6220
  /**
5719
- * **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.
6221
+ * **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.
5720
6222
  * @summary PROFINET Inputs/Outputs to File
5721
6223
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6224
+ * @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.
5722
6225
  * @param {number} [inputOffset]
5723
6226
  * @param {number} [outputOffset]
5724
6227
  * @param {*} [options] Override http request option.
5725
6228
  * @throws {RequiredError}
5726
6229
  */
5727
- getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
6230
+ getProfinetIOsFromFile(cell: string, offsets?: Array<ProfinetSlotOffset>, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
5728
6231
  /**
5729
6232
  * **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.
5730
6233
  * @summary List Descriptions
@@ -5922,15 +6425,16 @@ declare const BUSInputsOutputsApiFactory: (configuration?: Configuration, basePa
5922
6425
  */
5923
6426
  getProfinetGSDML(cell: string, options?: RawAxiosRequestConfig): AxiosPromise<string>;
5924
6427
  /**
5925
- * **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.
6428
+ * **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.
5926
6429
  * @summary PROFINET Inputs/Outputs to File
5927
6430
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6431
+ * @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.
5928
6432
  * @param {number} [inputOffset]
5929
6433
  * @param {number} [outputOffset]
5930
6434
  * @param {*} [options] Override http request option.
5931
6435
  * @throws {RequiredError}
5932
6436
  */
5933
- getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): AxiosPromise<string>;
6437
+ getProfinetIOsFromFile(cell: string, offsets?: Array<ProfinetSlotOffset>, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): AxiosPromise<string>;
5934
6438
  /**
5935
6439
  * **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.
5936
6440
  * @summary List Descriptions
@@ -6128,15 +6632,16 @@ declare class BUSInputsOutputsApi extends BaseAPI {
6128
6632
  */
6129
6633
  getProfinetGSDML(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string, any, {}>>;
6130
6634
  /**
6131
- * **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.
6635
+ * **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.
6132
6636
  * @summary PROFINET Inputs/Outputs to File
6133
6637
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6638
+ * @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.
6134
6639
  * @param {number} [inputOffset]
6135
6640
  * @param {number} [outputOffset]
6136
6641
  * @param {*} [options] Override http request option.
6137
6642
  * @throws {RequiredError}
6138
6643
  */
6139
- getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string, any, {}>>;
6644
+ getProfinetIOsFromFile(cell: string, offsets?: Array<ProfinetSlotOffset>, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string, any, {}>>;
6140
6645
  /**
6141
6646
  * **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.
6142
6647
  * @summary List Descriptions
@@ -7330,16 +7835,6 @@ declare const JoggingApiAxiosParamCreator: (configuration?: Configuration) => {
7330
7835
  * @throws {RequiredError}
7331
7836
  */
7332
7837
  executeJogging: (cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7333
- /**
7334
- * **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.
7335
- * @summary Execute Waypoint Jogging
7336
- * @param {string} cell Unique identifier addressing a cell in all API calls.
7337
- * @param {string} controller Unique identifier to address a controller in the cell.
7338
- * @param {ExecuteWaypointJoggingRequest} executeWaypointJoggingRequest
7339
- * @param {*} [options] Override http request option.
7340
- * @throws {RequiredError}
7341
- */
7342
- executeWaypointJogging: (cell: string, controller: string, executeWaypointJoggingRequest: ExecuteWaypointJoggingRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7343
7838
  };
7344
7839
  /**
7345
7840
  * JoggingApi - functional programming interface
@@ -7355,16 +7850,6 @@ declare const JoggingApiFp: (configuration?: Configuration) => {
7355
7850
  * @throws {RequiredError}
7356
7851
  */
7357
7852
  executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ExecuteJoggingResponse>>;
7358
- /**
7359
- * **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.
7360
- * @summary Execute Waypoint Jogging
7361
- * @param {string} cell Unique identifier addressing a cell in all API calls.
7362
- * @param {string} controller Unique identifier to address a controller in the cell.
7363
- * @param {ExecuteWaypointJoggingRequest} executeWaypointJoggingRequest
7364
- * @param {*} [options] Override http request option.
7365
- * @throws {RequiredError}
7366
- */
7367
- executeWaypointJogging(cell: string, controller: string, executeWaypointJoggingRequest: ExecuteWaypointJoggingRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ExecuteWaypointJoggingResponse>>;
7368
7853
  };
7369
7854
  /**
7370
7855
  * JoggingApi - factory interface
@@ -7380,16 +7865,6 @@ declare const JoggingApiFactory: (configuration?: Configuration, basePath?: stri
7380
7865
  * @throws {RequiredError}
7381
7866
  */
7382
7867
  executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): AxiosPromise<ExecuteJoggingResponse>;
7383
- /**
7384
- * **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.
7385
- * @summary Execute Waypoint Jogging
7386
- * @param {string} cell Unique identifier addressing a cell in all API calls.
7387
- * @param {string} controller Unique identifier to address a controller in the cell.
7388
- * @param {ExecuteWaypointJoggingRequest} executeWaypointJoggingRequest
7389
- * @param {*} [options] Override http request option.
7390
- * @throws {RequiredError}
7391
- */
7392
- executeWaypointJogging(cell: string, controller: string, executeWaypointJoggingRequest: ExecuteWaypointJoggingRequest, options?: RawAxiosRequestConfig): AxiosPromise<ExecuteWaypointJoggingResponse>;
7393
7868
  };
7394
7869
  /**
7395
7870
  * JoggingApi - object-oriented interface
@@ -7405,16 +7880,6 @@ declare class JoggingApi extends BaseAPI {
7405
7880
  * @throws {RequiredError}
7406
7881
  */
7407
7882
  executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ExecuteJoggingResponse, any, {}>>;
7408
- /**
7409
- * **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.
7410
- * @summary Execute Waypoint Jogging
7411
- * @param {string} cell Unique identifier addressing a cell in all API calls.
7412
- * @param {string} controller Unique identifier to address a controller in the cell.
7413
- * @param {ExecuteWaypointJoggingRequest} executeWaypointJoggingRequest
7414
- * @param {*} [options] Override http request option.
7415
- * @throws {RequiredError}
7416
- */
7417
- executeWaypointJogging(cell: string, controller: string, executeWaypointJoggingRequest: ExecuteWaypointJoggingRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ExecuteWaypointJoggingResponse, any, {}>>;
7418
7883
  }
7419
7884
  /**
7420
7885
  * KinematicsApi - axios parameter creator
@@ -7447,6 +7912,15 @@ declare const KinematicsApiAxiosParamCreator: (configuration?: Configuration) =>
7447
7912
  * @throws {RequiredError}
7448
7913
  */
7449
7914
  forwardKinematics: (cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7915
+ /**
7916
+ * **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.
7917
+ * @summary Get kinematic configuration
7918
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
7919
+ * @param {GetKinematicConfigurationRequest} getKinematicConfigurationRequest
7920
+ * @param {*} [options] Override http request option.
7921
+ * @throws {RequiredError}
7922
+ */
7923
+ getKinematicConfiguration: (cell: string, getKinematicConfigurationRequest: GetKinematicConfigurationRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7450
7924
  /**
7451
7925
  * **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the reachable joint positions for a list of given poses.
7452
7926
  * @summary Inverse kinematics
@@ -7497,6 +7971,15 @@ declare const KinematicsApiFp: (configuration?: Configuration) => {
7497
7971
  * @throws {RequiredError}
7498
7972
  */
7499
7973
  forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ForwardKinematicsResponse>>;
7974
+ /**
7975
+ * **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.
7976
+ * @summary Get kinematic configuration
7977
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
7978
+ * @param {GetKinematicConfigurationRequest} getKinematicConfigurationRequest
7979
+ * @param {*} [options] Override http request option.
7980
+ * @throws {RequiredError}
7981
+ */
7982
+ getKinematicConfiguration(cell: string, getKinematicConfigurationRequest: GetKinematicConfigurationRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetKinematicConfigurationResponse>>;
7500
7983
  /**
7501
7984
  * **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the reachable joint positions for a list of given poses.
7502
7985
  * @summary Inverse kinematics
@@ -7547,6 +8030,15 @@ declare const KinematicsApiFactory: (configuration?: Configuration, basePath?: s
7547
8030
  * @throws {RequiredError}
7548
8031
  */
7549
8032
  forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ForwardKinematicsResponse>;
8033
+ /**
8034
+ * **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.
8035
+ * @summary Get kinematic configuration
8036
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
8037
+ * @param {GetKinematicConfigurationRequest} getKinematicConfigurationRequest
8038
+ * @param {*} [options] Override http request option.
8039
+ * @throws {RequiredError}
8040
+ */
8041
+ getKinematicConfiguration(cell: string, getKinematicConfigurationRequest: GetKinematicConfigurationRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetKinematicConfigurationResponse>;
7550
8042
  /**
7551
8043
  * **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the reachable joint positions for a list of given poses.
7552
8044
  * @summary Inverse kinematics
@@ -7597,6 +8089,15 @@ declare class KinematicsApi extends BaseAPI {
7597
8089
  * @throws {RequiredError}
7598
8090
  */
7599
8091
  forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ForwardKinematicsResponse, any, {}>>;
8092
+ /**
8093
+ * **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.
8094
+ * @summary Get kinematic configuration
8095
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
8096
+ * @param {GetKinematicConfigurationRequest} getKinematicConfigurationRequest
8097
+ * @param {*} [options] Override http request option.
8098
+ * @throws {RequiredError}
8099
+ */
8100
+ getKinematicConfiguration(cell: string, getKinematicConfigurationRequest: GetKinematicConfigurationRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<GetKinematicConfigurationResponse, any, {}>>;
7600
8101
  /**
7601
8102
  * **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the reachable joint positions for a list of given poses.
7602
8103
  * @summary Inverse kinematics
@@ -7918,7 +8419,7 @@ declare const MotionGroupModelsApiAxiosParamCreator: (configuration?: Configurat
7918
8419
  */
7919
8420
  copyMotionGroupModel: (motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7920
8421
  /**
7921
- * **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.
8422
+ * **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.
7922
8423
  * @summary Delete Motion Group Model
7923
8424
  * @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).
7924
8425
  * @param {*} [options] Override http request option.
@@ -7933,6 +8434,14 @@ declare const MotionGroupModelsApiAxiosParamCreator: (configuration?: Configurat
7933
8434
  * @throws {RequiredError}
7934
8435
  */
7935
8436
  exportMotionGroupModel: (motionGroupModel: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8437
+ /**
8438
+ * **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.
8439
+ * @summary Get Configuration for Motion Group
8440
+ * @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).
8441
+ * @param {*} [options] Override http request option.
8442
+ * @throws {RequiredError}
8443
+ */
8444
+ getConfigurationForMotionGroup: (motionGroupModel: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7936
8445
  /**
7937
8446
  * **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.
7938
8447
  * @summary Get Collision Model
@@ -7988,6 +8497,13 @@ declare const MotionGroupModelsApiAxiosParamCreator: (configuration?: Configurat
7988
8497
  * @throws {RequiredError}
7989
8498
  */
7990
8499
  getMotionGroupModels: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8500
+ /**
8501
+ * **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.
8502
+ * @summary Motion Group Model Catalog
8503
+ * @param {*} [options] Override http request option.
8504
+ * @throws {RequiredError}
8505
+ */
8506
+ getMotionGroupModelsCatalog: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7991
8507
  /**
7992
8508
  * **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.
7993
8509
  * @summary Download USD Model
@@ -8019,7 +8535,7 @@ declare const MotionGroupModelsApiFp: (configuration?: Configuration) => {
8019
8535
  */
8020
8536
  copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MotionGroupModelDescription>>;
8021
8537
  /**
8022
- * **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.
8538
+ * **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.
8023
8539
  * @summary Delete Motion Group Model
8024
8540
  * @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).
8025
8541
  * @param {*} [options] Override http request option.
@@ -8034,6 +8550,14 @@ declare const MotionGroupModelsApiFp: (configuration?: Configuration) => {
8034
8550
  * @throws {RequiredError}
8035
8551
  */
8036
8552
  exportMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
8553
+ /**
8554
+ * **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.
8555
+ * @summary Get Configuration for Motion Group
8556
+ * @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).
8557
+ * @param {*} [options] Override http request option.
8558
+ * @throws {RequiredError}
8559
+ */
8560
+ getConfigurationForMotionGroup(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MotionGroupConfiguration>>;
8037
8561
  /**
8038
8562
  * **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.
8039
8563
  * @summary Get Collision Model
@@ -8091,6 +8615,13 @@ declare const MotionGroupModelsApiFp: (configuration?: Configuration) => {
8091
8615
  * @throws {RequiredError}
8092
8616
  */
8093
8617
  getMotionGroupModels(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<string>>>;
8618
+ /**
8619
+ * **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.
8620
+ * @summary Motion Group Model Catalog
8621
+ * @param {*} [options] Override http request option.
8622
+ * @throws {RequiredError}
8623
+ */
8624
+ getMotionGroupModelsCatalog(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MotionGroupModelCatalog>>>;
8094
8625
  /**
8095
8626
  * **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.
8096
8627
  * @summary Download USD Model
@@ -8122,7 +8653,7 @@ declare const MotionGroupModelsApiFactory: (configuration?: Configuration, baseP
8122
8653
  */
8123
8654
  copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig): AxiosPromise<MotionGroupModelDescription>;
8124
8655
  /**
8125
- * **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.
8656
+ * **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.
8126
8657
  * @summary Delete Motion Group Model
8127
8658
  * @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).
8128
8659
  * @param {*} [options] Override http request option.
@@ -8137,6 +8668,14 @@ declare const MotionGroupModelsApiFactory: (configuration?: Configuration, baseP
8137
8668
  * @throws {RequiredError}
8138
8669
  */
8139
8670
  exportMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): AxiosPromise<File>;
8671
+ /**
8672
+ * **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.
8673
+ * @summary Get Configuration for Motion Group
8674
+ * @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).
8675
+ * @param {*} [options] Override http request option.
8676
+ * @throws {RequiredError}
8677
+ */
8678
+ getConfigurationForMotionGroup(motionGroupModel: string, options?: RawAxiosRequestConfig): AxiosPromise<MotionGroupConfiguration>;
8140
8679
  /**
8141
8680
  * **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.
8142
8681
  * @summary Get Collision Model
@@ -8194,6 +8733,13 @@ declare const MotionGroupModelsApiFactory: (configuration?: Configuration, baseP
8194
8733
  * @throws {RequiredError}
8195
8734
  */
8196
8735
  getMotionGroupModels(options?: RawAxiosRequestConfig): AxiosPromise<Array<string>>;
8736
+ /**
8737
+ * **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.
8738
+ * @summary Motion Group Model Catalog
8739
+ * @param {*} [options] Override http request option.
8740
+ * @throws {RequiredError}
8741
+ */
8742
+ getMotionGroupModelsCatalog(options?: RawAxiosRequestConfig): AxiosPromise<Array<MotionGroupModelCatalog>>;
8197
8743
  /**
8198
8744
  * **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.
8199
8745
  * @summary Download USD Model
@@ -8225,7 +8771,7 @@ declare class MotionGroupModelsApi extends BaseAPI {
8225
8771
  */
8226
8772
  copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MotionGroupModelDescription, any, {}>>;
8227
8773
  /**
8228
- * **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.
8774
+ * **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.
8229
8775
  * @summary Delete Motion Group Model
8230
8776
  * @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).
8231
8777
  * @param {*} [options] Override http request option.
@@ -8240,6 +8786,14 @@ declare class MotionGroupModelsApi extends BaseAPI {
8240
8786
  * @throws {RequiredError}
8241
8787
  */
8242
8788
  exportMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<File, any, {}>>;
8789
+ /**
8790
+ * **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.
8791
+ * @summary Get Configuration for Motion Group
8792
+ * @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).
8793
+ * @param {*} [options] Override http request option.
8794
+ * @throws {RequiredError}
8795
+ */
8796
+ getConfigurationForMotionGroup(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MotionGroupConfiguration, any, {}>>;
8243
8797
  /**
8244
8798
  * **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.
8245
8799
  * @summary Get Collision Model
@@ -8297,6 +8851,13 @@ declare class MotionGroupModelsApi extends BaseAPI {
8297
8851
  * @throws {RequiredError}
8298
8852
  */
8299
8853
  getMotionGroupModels(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string[], any, {}>>;
8854
+ /**
8855
+ * **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.
8856
+ * @summary Motion Group Model Catalog
8857
+ * @param {*} [options] Override http request option.
8858
+ * @throws {RequiredError}
8859
+ */
8860
+ getMotionGroupModelsCatalog(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MotionGroupModelCatalog[], any, {}>>;
8300
8861
  /**
8301
8862
  * **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.
8302
8863
  * @summary Download USD Model
@@ -8335,6 +8896,13 @@ declare const NOVACloudApiAxiosParamCreator: (configuration?: Configuration) =>
8335
8896
  * @throws {RequiredError}
8336
8897
  */
8337
8898
  disconnectFromNovaCloud: (completionTimeout?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8899
+ /**
8900
+ * **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.
8901
+ * @summary Get Connection Status
8902
+ * @param {*} [options] Override http request option.
8903
+ * @throws {RequiredError}
8904
+ */
8905
+ getCloudStatus: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8338
8906
  /**
8339
8907
  * **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection config for this instance.
8340
8908
  * @summary Get Connection Config
@@ -8364,6 +8932,13 @@ declare const NOVACloudApiFp: (configuration?: Configuration) => {
8364
8932
  * @throws {RequiredError}
8365
8933
  */
8366
8934
  disconnectFromNovaCloud(completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CloudDisconnectionStatusDisconnected>>;
8935
+ /**
8936
+ * **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.
8937
+ * @summary Get Connection Status
8938
+ * @param {*} [options] Override http request option.
8939
+ * @throws {RequiredError}
8940
+ */
8941
+ getCloudStatus(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CloudStatus>>;
8367
8942
  /**
8368
8943
  * **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection config for this instance.
8369
8944
  * @summary Get Connection Config
@@ -8393,6 +8968,13 @@ declare const NOVACloudApiFactory: (configuration?: Configuration, basePath?: st
8393
8968
  * @throws {RequiredError}
8394
8969
  */
8395
8970
  disconnectFromNovaCloud(completionTimeout?: number, options?: RawAxiosRequestConfig): AxiosPromise<CloudDisconnectionStatusDisconnected>;
8971
+ /**
8972
+ * **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.
8973
+ * @summary Get Connection Status
8974
+ * @param {*} [options] Override http request option.
8975
+ * @throws {RequiredError}
8976
+ */
8977
+ getCloudStatus(options?: RawAxiosRequestConfig): AxiosPromise<CloudStatus>;
8396
8978
  /**
8397
8979
  * **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection config for this instance.
8398
8980
  * @summary Get Connection Config
@@ -8422,6 +9004,13 @@ declare class NOVACloudApi extends BaseAPI {
8422
9004
  * @throws {RequiredError}
8423
9005
  */
8424
9006
  disconnectFromNovaCloud(completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<CloudDisconnectionStatusDisconnected, any, {}>>;
9007
+ /**
9008
+ * **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.
9009
+ * @summary Get Connection Status
9010
+ * @param {*} [options] Override http request option.
9011
+ * @throws {RequiredError}
9012
+ */
9013
+ getCloudStatus(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<CloudStatus, any, {}>>;
8425
9014
  /**
8426
9015
  * **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection config for this instance.
8427
9016
  * @summary Get Connection Config
@@ -11906,5 +12495,5 @@ declare class Nova {
11906
12495
  openReconnectingWebsocket(path: string): AutoReconnectingWebsocket;
11907
12496
  }
11908
12497
  //#endregion
11909
- export { BusIOProfinetDefaultRoute as $, KinematicsApiFp as $a, RectangularCapsule as $c, IntegerValueValueTypeEnum as $i, StorageKeySourceEnum as $l, CopyMotionGroupModelRequest as $n, MotionGroupModelsApiFp as $o, FeedbackInvalidDofErrorFeedbackNameEnum as $r, PauseMovementResponseKindEnum as $s, Collider as $t, TrajectoryPlanningApiFactory as $u, BlendingAuto as A, JointLimitExceededErrorKindEnum as Aa, ProfinetIOTypeEnum as Ac, VirtualControllerInputsOutputsApiFactory as Ad, IODirection as Ai, ServiceStatusSeverity as Al, ConfiguredPoseInverseResponseResponse as An, MidpointInsertionAlgorithmAlgorithmNameEnum as Ao, ExecuteWaypointJoggingRequest as Ar, OperationMode as As, CloudConnectionErrorInvalidTokenDetails as At, TrajectoryCachingApi as Au, BusIODescription as B, JointWaypointsRequest as Ba, ProgramRunState as Bc, ZodValidationErrorErrorDetailsInner as Bd, InconsistentTrajectorySizeErrorInconsistentTrajectorySize as Bi, Snap7IO as Bl, ControllerApiFp as Bn, MotionGroupApi as Bo, FeedbackCommandsMissing as Br, PathDirectionConstrainedJointPTP as Bs, CloudConnectionErrorNatsFailedCodeEnum as Bt, TrajectoryEndedKindEnum as Bu, BASE_PATH as C, JoggingPausedNearSingularity as Ca, PoseWaypointsRequestMessageTypeEnum as Cc, VirtualControllerApiFp as Cd, ForwardKinematicsValidationError as Ci, SafetyZone as Cl, ConfigurationParameters as Cn, MergeTrajectoriesErrorErrorFeedback as Co, ErrorUnsupportedOperationErrorFeedbackNameEnum as Cr, NetworkDevice as Cs, CloudConfigStatusNotConfigured as Ct, TcpVelocityResponseKindEnum as Cu, BUSInputsOutputsApiFp as D, JoggingRunning as Da, ProfinetIO as Dc, VirtualControllerBehaviorApiFp as Dd, IOBooleanValueValueTypeEnum as Di, ServiceStatus as Dl, ConfiguredPoseInverseFailedResponse as Dn, MergeTrajectoriesSegment as Do, ExecuteJoggingResponse as Dr, OpMode as Ds, CloudConnectionErrorError as Dt, TorqueExceededError as Du, BUSInputsOutputsApiFactory as E, JoggingPausedOnIOKindEnum as Ea, ProfinetDescription as Ec, VirtualControllerBehaviorApiFactory as Ed, IOBooleanValue as Ei, ServiceGroup as El, ConfiguredPoseInverse422Response as En, MergeTrajectoriesResponseFeedbackInner as Eo, ExecuteJoggingRequest as Er, NetworkStateConnectionTypeEnum as Es, CloudConnectionError as Et, ToolValueSourceEnum as Eu, BooleanValue as F, JointVelocityRequest as Fa, ProgramApi as Fc, YaskawaController as Fd, IOOrigin as Fi, SessionApiFp as Fl, ContainerResources as Fn, ModbusIOTypeEnum as Fo, FanucControllerKindEnum as Fr, PathCirclePathDefinitionNameEnum as Fs, CloudConnectionErrorLeafnodeConnectionTimeout as Ft, TrajectoryDataMessageTypeEnum as Fu, BusIOModbusTCPClient as G, KinematicBranchElbow as Ga, ProjectJointPositionDirectionConstraintValidationError as Gc, InitializeJoggingResponse as Gi, Sphere as Gl, ControllerInputsOutputsApiFp as Gn, MotionGroupFromJson as Go, FeedbackCubicSplineNotAtStartPoseErrorFeedbackNameEnum as Gr, PathLinePathDefinitionNameEnum as Gs, CloudConnectionErrorUnexpectedResponseDetailsCloudResponse as Gt, TrajectoryId as Gu, BusIOModbusClientBusTypeEnum as H, JointWaypointsResponse as Ha, ProjectJointPositionDirectionConstraint422Response as Hc, operationServerMap as Hd, InertiaTensor as Hi, Snap7IOData as Hl, ControllerInputsOutputsApi as Hn, MotionGroupApiFactory as Ho, FeedbackCubicSplineIsNotIncreasing as Hr, PathJointPTP as Hs, CloudConnectionErrorUnexpectedResponse as Ht, TrajectoryExecutionApiAxiosParamCreator as Hu, BooleanValueValueTypeEnum as I, JointVelocityRequestMessageTypeEnum as Ia, ProgramApiAxiosParamCreator as Ic, YaskawaControllerKindEnum as Id, IOValue as Ii, SessionResponse as Il, ContainerStorage as In, ModelError as Io, FeedbackAxisRangeExceeded as Ir, PathCubicSpline as Is, CloudConnectionErrorLeafnodeConnectionTimeoutCodeEnum as It, TrajectoryDetails as Iu, BusIOModbusTCPServerNetworkTypeEnum as J, KinematicConfiguration as Ja, RRTConnectAlgorithmAlgorithmNameEnum as Jc, InitializeMovementRequestMessageTypeEnum as Ji, StartMovementRequestMessageTypeEnum as Jl, ConvertVendorConfiguredPoseRequestVendorConfiguredPoses as Jn, MotionGroupJoints as Jo, FeedbackDirectionConstraintNotMet as Jr, PauseJoggingResponse as Js, CloudDisconnectionStatusDisconnected as Jt, TrajectoryPausedByUserKindEnum as Ju, BusIOModbusTCPClientNetworkTypeEnum as K, KinematicBranchShoulder as Ka, ProjectJointPositionDirectionConstraintValidationErrorAllOfData as Kc, InitializeJoggingResponseKindEnum as Ki, SphereShapeTypeEnum as Kl, ConvertVendorConfiguredPose422Response as Kn, MotionGroupFromType as Ko, FeedbackDirectionConstraintNoSolutionExists as Kr, PauseJoggingRequest as Ks, CloudConnectionRequest as Kt, TrajectoryIdMessageTypeEnum as Ku, Box as L, JointVelocityResponse as La, ProgramApiFactory as Lc, ZodValidationError as Ld, IOValueType as Li, SetIO as Ll, ControllerApi as Ln, MotionCommand as Lo, FeedbackAxisRangeExceededErrorFeedbackNameEnum as Lr, PathCubicSplinePathDefinitionNameEnum as Ls, CloudConnectionErrorLeafnodeRestartTimeout as Lt, TrajectoryDetailsKindEnum as Lu, BlendingPosition as M, JointPTPMotion as Ma, ProfinetSlotDescription as Mc, VirtualControllerKindEnum as Md, IOFloatValueValueTypeEnum as Mi, SessionApi as Ml, ContainerEnvironmentInner as Mn, ModbusIOArea as Mo, ExternalJointStreamDatapoint as Mr, PathCartesianPTP as Ms, CloudConnectionErrorLeafnodeConnectionError as Mt, TrajectoryCachingApiFactory as Mu, BlendingPositionBlendingNameEnum as N, JointTrajectory as Na, ProfinetSubSlotDescription as Nc, VirtualRobotConfiguration as Nd, IOIntegerValue as Ni, SessionApiAxiosParamCreator as Nl, ContainerImage as Nn, ModbusIOByteOrder as No, ExternalJointStreamRequest as Nr, PathCartesianPTPPathDefinitionNameEnum as Ns, CloudConnectionErrorLeafnodeConnectionErrorCodeEnum as Nt, TrajectoryCachingApiFp as Nu, BaseAPI as O, JoggingRunningKindEnum as Oa, ProfinetIOData as Oc, VirtualControllerInputsOutputsApi as Od, IOBoundary as Oi, ServiceStatusPhase as Ol, ConfiguredPoseInverseRequest as On, MergeTrajectoriesValidationError as Oo, ExecuteTrajectoryRequest as Or, OperatingState as Os, CloudConnectionErrorInvalidToken as Ot, TorqueExceededErrorKindEnum as Ou, BlendingSpace as P, JointTypeEnum as Pa, Program as Pc, WaitForIOEventRequest as Pd, IOIntegerValueValueTypeEnum as Pi, SessionApiFactory as Pl, ContainerImageSecretsInner as Pn, ModbusIOData as Po, FanucController as Pr, PathCircle as Ps, CloudConnectionErrorLeafnodeConnectionErrorDetails as Pt, TrajectoryData as Pu, BusIOProfinetBusTypeEnum as Q, KinematicsApiFactory as Qa, RectangleShapeTypeEnum as Qc, IntegerValue as Qi, StorageKey as Ql, CoordinateSystemData as Qn, MotionGroupModelsApiFactory as Qo, FeedbackInvalidDof as Qr, PauseMovementResponse as Qs, CloudRegistrationSuccessResponse as Qt, TrajectoryPlanningApiAxiosParamCreator as Qu, BoxBoxTypeEnum as R, JointVelocityResponseKindEnum as Ra, ProgramApiFp as Rc, ZodValidationErrorError as Rd, ImageCredentials as Ri, SettableRobotSystemMode as Rl, ControllerApiAxiosParamCreator as Rn, MotionCommandBlending as Ro, FeedbackCollision as Rr, PathDirectionConstrainedCartesianPTP as Rs, CloudConnectionErrorLeafnodeRestartTimeoutCodeEnum as Rt, TrajectoryDetailsState as Ru, AxisRange as S, JoggingPausedNearJointLimitKindEnum as Sa, PoseWaypointsRequest as Sc, VirtualControllerApiFactory as Sd, ForwardKinematicsResponse as Si, SafetyStateType as Sl, ConfigurationArchiveStatusSuccessStatusEnum as Sn, MergeTrajectoriesError as So, ErrorUnsupportedOperation as Sr, NanValueErrorNanValue as Ss, CloudConfigStatusConfiguredStatusEnum as St, TcpVelocityResponse as Su, BUSInputsOutputsApiAxiosParamCreator as T, JoggingPausedOnIO as Ta, PoseWaypointsResponseKindEnum as Tc, VirtualControllerBehaviorApiAxiosParamCreator as Td, HTTPValidationError as Ti, SafetyZones as Tl, ConfiguredPose as Tn, MergeTrajectoriesResponse as To, ExecuteDetails as Tr, NetworkState as Ts, CloudConfiguration as Tt, ToolValueOrKey as Tu, BusIOModbusServer as U, JointWaypointsResponseKindEnum as Ua, ProjectJointPositionDirectionConstraintRequest as Uc, InitializeJoggingRequest as Ui, Snap7IODirection as Ul, ControllerInputsOutputsApiAxiosParamCreator as Un, MotionGroupApiFp as Uo, FeedbackCubicSplineIsNotIncreasingErrorFeedbackNameEnum as Ur, PathJointPTPPathDefinitionNameEnum as Us, CloudConnectionErrorUnexpectedResponseCodeEnum as Ut, TrajectoryExecutionApiFactory as Uu, BusIOModbusClient as V, JointWaypointsRequestMessageTypeEnum as Va, ProgramStartRequest as Vc, ZodValidationErrorErrorDetailsInnerPathInner as Vd, InconsistentTrajectorySizeErrorKindEnum as Vi, Snap7IOArea as Vl, ControllerDescription as Vn, MotionGroupApiAxiosParamCreator as Vo, FeedbackCommandsMissingErrorFeedbackNameEnum as Vr, PathDirectionConstrainedJointPTPPathDefinitionNameEnum as Vs, CloudConnectionErrorNatsFailedDetails as Vt, TrajectoryExecutionApi as Vu, BusIOModbusServerBusTypeEnum as W, KinematicBranch as Wa, ProjectJointPositionDirectionConstraintResponse as Wc, InitializeJoggingRequestMessageTypeEnum as Wi, Snap7IOTypeEnum as Wl, ControllerInputsOutputsApiFactory as Wn, MotionGroupDescription as Wo, FeedbackCubicSplineNotAtStartPose as Wr, PathLine as Ws, CloudConnectionErrorUnexpectedResponseDetails as Wt, TrajectoryExecutionApiFp as Wu, BusIOModbusVirtualBusTypeEnum as X, KinematicsApi as Xa, Range as Xc, InitializeMovementResponse as Xi, StartMovementResponseKindEnum as Xl, ConvexHullShapeTypeEnum as Xn, MotionGroupModelsApi as Xo, FeedbackDirectionConstraintNotNormalized as Xr, PauseMovementRequest as Xs, CloudDisconnectionStatusDisconnecting as Xt, TrajectoryPausedOnIOKindEnum as Xu, BusIOModbusVirtual as Y, KinematicModel as Ya, RRTConnectAlgorithmStepSize as Yc, InitializeMovementRequestTrajectory as Yi, StartMovementResponse as Yl, ConvexHull as Yn, MotionGroupModelDescription as Yo, FeedbackDirectionConstraintNotMetErrorFeedbackNameEnum as Yr, PauseJoggingResponseKindEnum as Ys, CloudDisconnectionStatusDisconnectedStatusEnum as Yt, TrajectoryPausedOnIO as Yu, BusIOProfinet as Z, KinematicsApiAxiosParamCreator as Za, Rectangle as Zc, InitializeMovementResponseKindEnum as Zi, StartOnIO as Zl, CoordinateSystem as Zn, MotionGroupModelsApiAxiosParamCreator as Zo, FeedbackDirectionConstraintNotNormalizedErrorFeedbackNameEnum as Zr, PauseMovementRequestMessageTypeEnum as Zs, CloudDisconnectionStatusDisconnectingStatusEnum as Zt, TrajectoryPlanningApi as Zu, App as _, JoggingPausedByUser as _a, PlaybackSpeedRequestMessageTypeEnum as _c, VersionApiFactory as _d, FlangePayload as _i, SafetyGeometryCapsule as _l, ConfigurationArchiveStatusCreating as _n, LinkChainValueOrKey as _o, ErrorJointPositionCollision as _r, NOVACloudApiAxiosParamCreator as _s, CellApiAxiosParamCreator as _t, TcpOffset as _u, AbbConfiguredPose as a, InverseKinematics422Response as aa, PlanCollisionFreeResponse as ac, TrajectoryWaitForIOKindEnum as ad, FeedbackJointLimitExceededErrorFeedbackNameEnum as ai, RobotConfigurationsApiAxiosParamCreator as al, CollisionContact as an, KukaStatusAndTurnBits as ao, Direction as ar, MultiCollisionSetup as as, BusIOSnap7 as at, StoreCollisionSetupsApiAxiosParamCreator as au, ApplicationApiFactory as b, JoggingPausedNearCollisionKindEnum as ba, Pose as bc, VirtualControllerApi as bd, ForwardKinematics422Response as bi, SafetyGeometryPrism as bl, ConfigurationArchiveStatusErrorStatusEnum as bn, Manufacturer as bo, ErrorMaxIterationsExceededErrorFeedbackNameEnum as br, NanValueError as bs, CloudConfigStatus as bt, TcpVelocityRequest as bu, AbbControllerKindEnum as c, InverseKinematicsValidationError as ca, PlanTrajectoryFailedResponseErrorFeedback as cc, UniversalrobotsControllerKindEnum as cd, FeedbackOutOfWorkspace as ci, RobotController as cl, CollisionFreeAlgorithm as cn, LicenseApiAxiosParamCreator as co, DynamicModel as cr, MultiErrorJointPositionCollision as cs, BusIOsState as ct, StoreObjectApi as cu, AddTrajectoryError as d, JoggingApiAxiosParamCreator as da, PlanTrajectoryResponseResponse as dc, User as dd, FeedbackSingularityErrorFeedbackNameEnum as di, RobotControllerState as dl, CollisionSetupValue as dn, LicenseStatus as do, ErrorDirectionConstraintNotNormalized as dr, MultiSearchCollisionFreeRequest as ds, CapabilityEntry as dt, StoreObjectApiFp as du, InvalidDofError as ea, PauseOnIO as ec, TrajectoryPlanningApiFp as ed, FeedbackInvalidNanValue as ei, RectangularCapsuleShapeTypeEnum as el, ColliderShape as en, KukaConfiguredPose as eo, CubicSplineParameter as er, MotionGroupSetup as es, BusIOProfinetIpConfig as et, StoreCollisionComponentsApi as eu, AddTrajectoryErrorData as f, JoggingApiFactory as fa, PlanValidationError as fc, ValidationError as fd, FeedbackStartJointsMissing as fi, RobotSystemMode as fl, CollisionSetupValueOrKey as fn, LicenseStatusEnum as fo, ErrorDirectionConstraintNotNormalizedErrorFeedbackNameEnum as fr, MultiSearchCollisionFreeResponse as fs, Capsule as ft, StreamIOValuesResponse as fu, ApiVersion as g, JoggingDetailsState as ga, PlaybackSpeedRequest as gc, VersionApiAxiosParamCreator as gd, Flag as gi, SafetyGeometryBox as gl, ConfigurationArchiveStatus as gn, LinkChainValue as go, ErrorJointLimitExceededErrorFeedbackNameEnum as gr, NOVACloudApi as gs, CellApi as gt, SystemApiFp as gu, AddVirtualControllerMotionGroupRequest as h, JoggingDetailsKindEnum as ha, PlaneShapeTypeEnum as hc, VersionApi as hd, FeedbackTorqueExceededErrorFeedbackNameEnum as hi, SafetyGeometry as hl, Configuration as hn, LimitsOverride as ho, ErrorJointLimitExceeded as hr, MultiSearchCollisionFreeValidationErrorAllOfData as hs, Cell as ht, SystemApiFactory as hu, AbbConfdata as i, InverseFeedbackAtIndexErrorFeedback as ia, PlanCollisionFreeRequest as ic, TrajectoryWaitForIO as id, FeedbackJointLimitExceeded as ii, RobotConfigurationsApi as il, Collision as in, KukaPose as io, DHParameter as ir, MovementErrorResponseKindEnum as is, BusIOProfinetVirtualBusTypeEnum as it, StoreCollisionSetupsApi as iu, BlendingAutoBlendingNameEnum as j, JointLimits as ja, ProfinetInputOutputConfig as jc, VirtualControllerInputsOutputsApiFp as jd, IOFloatValue as ji, ServiceStatusStatus as jl, ConstrainedPose as jn, ModbusIO as jo, ExecuteWaypointJoggingResponse as jr, OrientationType as js, CloudConnectionErrorInvalidTokenDetailsCloudResponse as jt, TrajectoryCachingApiAxiosParamCreator as ju, Behavior as k, JointLimitExceededError as ka, ProfinetIODirection as kc, VirtualControllerInputsOutputsApiAxiosParamCreator as kd, IODescription as ki, ServiceStatusResponse as kl, ConfiguredPoseInverseResponse as kn, MidpointInsertionAlgorithm as ko, ExecuteTrajectoryResponse as kr, OperationLimits as ks, CloudConnectionErrorInvalidTokenCodeEnum as kt, TorqueExceededErrorTorqueExceeded as ku, AbbPose as l, InverseKinematicsValidationErrorAllOfData as la, PlanTrajectoryRequest as lc, UpdateCellVersionRequest as ld, FeedbackOutOfWorkspaceErrorFeedbackNameEnum as li, RobotControllerConfiguration as ll, CollisionMotionGroup as ln, LicenseApiFactory as lo, ErrorDirectionConstraintNotMet as lr, MultiJointTrajectory as ls, BusIOsStateEnum as lt, StoreObjectApiAxiosParamCreator as lu, AddTrajectoryResponse as m, JoggingDetails as ma, Plane as mc, ValidationErrorLocInner as md, FeedbackTorqueExceeded as mi, RobotTcpData as ml, Comparator as mn, LimitSet as mo, ErrorInvalidJointCountErrorFeedbackNameEnum as mr, MultiSearchCollisionFreeValidationError as ms, CartesianLimits as mt, SystemApiAxiosParamCreator as mu, NovaConfig as n, InvalidDofErrorKindEnum as na, Plan422Response as nc, TrajectoryRunningKindEnum as nd, FeedbackInvalidSamplingTime as ni, RequestArgs as nl, ColliderValueOrKey as nn, KukaControllerKindEnum as no, Cylinder as nr, MotionGroupStateJointLimitReached as ns, BusIOProfinetSlot as nt, StoreCollisionComponentsApiFactory as nu, AbbController as o, InverseKinematicsRequest as oa, PlanCollisionFreeResponseResponse as oc, UnitType as od, FeedbackNoSolutionInCurrentConfiguration as oi, RobotConfigurationsApiFactory as ol, CollisionError as on, License as oo, DirectionConstraint as or, MultiErrorInvalidJointCount as os, BusIOSnap7BusTypeEnum as ot, StoreCollisionSetupsApiFactory as ou, AddTrajectoryRequest as p, JoggingApiFp as pa, PlanValidationErrorAllOfData as pc, ValidationError2 as pd, FeedbackStartJointsMissingErrorFeedbackNameEnum as pi, RobotTcp as pl, CollisionSetupValueSourceEnum as pn, LimitRange as po, ErrorInvalidJointCount as pr, MultiSearchCollisionFreeResponseResponse as ps, CapsuleShapeTypeEnum as pt, SystemApi as pu, BusIOModbusTCPServer as q, KinematicBranchWrist as qa, RRTConnectAlgorithm as qc, InitializeMovementRequest as qi, StartMovementRequest as ql, ConvertVendorConfiguredPoseRequest as qn, MotionGroupInfo as qo, FeedbackDirectionConstraintNoSolutionExistsErrorFeedbackNameEnum as qr, PauseJoggingRequestMessageTypeEnum as qs, CloudDisconnectionError as qt, TrajectoryPausedByUser as qu, NovaAPIClient as r, InverseFeedbackAtIndex as ra, PlanCollisionFreeFailedResponse as rc, TrajectorySection as rd, FeedbackInvalidSamplingTimeErrorFeedbackNameEnum as ri, RequiredError as rl, ColliderValueSourceEnum as rn, KukaControllerRsiServer as ro, CylinderShapeTypeEnum as rr, MovementErrorResponse as rs, BusIOProfinetVirtual as rt, StoreCollisionComponentsApiFp as ru, AbbControllerEgmServer as s, InverseKinematicsResponse as sa, PlanTrajectoryFailedResponse as sc, UniversalrobotsController as sd, FeedbackNoSolutionInCurrentConfigurationErrorFeedbackNameEnum as si, RobotConfigurationsApiFp as sl, CollisionErrorKindEnum as sn, LicenseApi as so, DirectionConstraintConstraintNameEnum as sr, MultiErrorJointLimitExceeded as ss, BusIOType as st, StoreCollisionSetupsApiFp as su, Nova as t, InvalidDofErrorInvalidDof as ta, Payload as tc, TrajectoryRunning as td, FeedbackInvalidNanValueErrorFeedbackNameEnum as ti, ReleaseChannel as tl, ColliderValue as tn, KukaController as to, CycleTime as tr, MotionGroupState as ts, BusIOProfinetNetwork as tt, StoreCollisionComponentsApiAxiosParamCreator as tu, ActivateLicenseRequest as u, JoggingApi as ua, PlanTrajectoryResponse as uc, UpdateNovaVersionRequest as ud, FeedbackSingularity as ui, RobotControllerConfigurationRequest as ul, CollisionSetup as un, LicenseApiFp as uo, ErrorDirectionConstraintNotMetErrorFeedbackNameEnum as ur, MultiSearchCollisionFree422Response as us, COLLECTION_FORMATS as ut, StoreObjectApiFactory as uu, ApplicationApi as v, JoggingPausedByUserKindEnum as va, PlaybackSpeedResponse as vc, VersionApiFp as vd, FloatValue as vi, SafetyGeometryLozenge as vl, ConfigurationArchiveStatusCreatingStatusEnum as vn, LinkChainValueSourceEnum as vo, ErrorJointPositionCollisionErrorFeedbackNameEnum as vr, NOVACloudApiFactory as vs, CellApiFactory as vt, TcpRequiredError as vu, BUSInputsOutputsApi as w, JoggingPausedNearSingularityKindEnum as wa, PoseWaypointsResponse as wc, VirtualControllerBehaviorApi as wd, GetTrajectoryResponse as wi, SafetyZonePose as wl, ConfigurationResource as wn, MergeTrajectoriesRequest as wo, Execute as wr, NetworkInterface as ws, CloudConfigStatusNotConfiguredStatusEnum as wt, ToolValue as wu, ApplicationApiFp as x, JoggingPausedNearJointLimit as xa, PoseWaypoint as xc, VirtualControllerApiAxiosParamCreator as xd, ForwardKinematicsRequest as xi, SafetyGeometrySphere as xl, ConfigurationArchiveStatusSuccess as xn, MergeTrajectories422Response as xo, ErrorMotionGroupKeyMismatch as xr, NanValueErrorKindEnum as xs, CloudConfigStatusConfigured as xt, TcpVelocityRequestMessageTypeEnum as xu, ApplicationApiAxiosParamCreator as y, JoggingPausedNearCollision as ya, PlaybackSpeedResponseKindEnum as yc, VirtualController as yd, FloatValueValueTypeEnum as yi, SafetyGeometryPlane as yl, ConfigurationArchiveStatusError as yn, ListTrajectoriesResponse as yo, ErrorMaxIterationsExceeded as yr, NOVACloudApiFp as ys, CellApiFp as yt, TcpRequiredErrorKindEnum as yu, BoxShapeTypeEnum as z, JointWaypoint as za, ProgramRun as zc, ZodValidationErrorErrorCodeEnum as zd, InconsistentTrajectorySizeError as zi, SingularityTypeEnum as zl, ControllerApiFactory as zn, MotionCommandPath as zo, FeedbackCollisionErrorFeedbackNameEnum as zr, PathDirectionConstrainedCartesianPTPPathDefinitionNameEnum as zs, CloudConnectionErrorNatsFailed as zt, TrajectoryEnded as zu };
11910
- //# sourceMappingURL=Nova-yKG6-Q1u.d.mts.map
12498
+ export { BusIOModbusClientBusTypeEnum as $, JoggingRunningKindEnum as $a, ProfinetIOData as $c, ValidationError as $d, IOFloatValueValueTypeEnum as $i, ServiceStatus as $l, ControllerApiAxiosParamCreator as $n, ModbusIO as $o, FeedbackAxisRangeExceededErrorFeedbackNameEnum as $r, OperationLimits as $s, CloudConnectionErrorNatsFailedDetails as $t, TcpRequiredErrorKindEnum as $u, AxisRange as A, InverseKinematics422Response as Aa, Plan422Response as Ac, TrajectoryPausedOnIOKindEnum as Ad, ZodValidationErrorErrorDetailsInnerPathInner as Af, FeedbackTorqueExceeded as Ai, RobotConfigurationsApi as Al, Configuration as An, LicenseApiAxiosParamCreator as Ao, ErrorInvalidJointCountErrorFeedbackNameEnum as Ar, MultiErrorInvalidJointCount as As, CellApiFactory as At, StopActionChunksResponse as Au, BlendingPosition as B, JoggingDetailsKindEnum as Ba, PlanValidationError as Bc, UnitType as Bd, GetKinematicConfiguration422Response as Bi, RobotTcpData as Bl, ConfiguredPose as Bn, LinkChainValueSourceEnum as Bo, Execute as Br, NOVACloudApi as Bs, CloudConnectionErrorInvalidToken as Bt, StoreCollisionSetupsApiFactory as Bu, AddVirtualControllerMotionGroupRequest as C, IntegerValue as Ca, PauseJoggingResponseKindEnum as Cc, TrajectoryExecutionApiFactory as Cd, WaypointCoordinates as Cf, FeedbackNoSolutionInCurrentConfigurationErrorFeedbackNameEnum as Ci, Rectangle as Cl, CollisionFreeAlgorithm as Cn, KukaController as Co, DirectionConstraintConstraintNameEnum as Cr, MotionGroupModelsApiFp as Cs, Capsule as Ct, StartMovementResponseKindEnum as Cu, ApplicationApiAxiosParamCreator as D, InvalidDofErrorKindEnum as Da, PauseMovementResponseKindEnum as Dc, TrajectoryPausedByUser as Dd, ZodValidationErrorError as Df, FeedbackSingularityErrorFeedbackNameEnum as Di, ReleaseChannel as Dl, CollisionSetupValueOrKey as Dn, KukaStatusAndTurnBits as Do, ErrorDirectionConstraintNotNormalized as Dr, MovementErrorResponse as Ds, Cell as Dt, StaubliControllerRtiServer as Du, ApplicationApi as E, InvalidDofErrorInvalidDof as Ea, PauseMovementResponse as Ec, TrajectoryIdMessageTypeEnum as Ed, ZodValidationError as Ef, FeedbackSingularity as Ei, RectangularCapsuleShapeTypeEnum as El, CollisionSetupValue as En, KukaPose as Eo, ErrorDirectionConstraintNotMetErrorFeedbackNameEnum as Er, MotionGroupStateJointLimitReached as Es, CartesianVelocity as Et, StaubliControllerKindEnum as Eu, BUSInputsOutputsApiFp as F, JoggingApi as Fa, PlanTrajectoryFailedResponse as Fc, TrajectoryRunning as Fd, FloatValueValueTypeEnum as Fi, RobotControllerConfiguration as Fl, ConfigurationArchiveStatusErrorStatusEnum as Fn, LimitRange as Fo, ErrorMaxIterationsExceeded as Fr, MultiSearchCollisionFreeRequest as Fs, CloudConfigStatusNotConfigured as Ft, StoreCollisionComponentsApiAxiosParamCreator as Fu, BostondynamicsController as G, JoggingPausedNearCollisionKindEnum as Ga, PlaybackSpeedRequestMessageTypeEnum as Gc, UniversalrobotsControllerKindEnum as Gd, GetTrajectoryResponse as Gi, SafetyGeometryPlane as Gl, ConfiguredPoseInverseResponseResponse as Gn, MergeTrajectoriesErrorErrorFeedback as Go, ExecuteJoggingResponse as Gr, NanValueErrorKindEnum as Gs, CloudConnectionErrorLeafnodeConnectionErrorCodeEnum as Gt, StoreObjectApiFp as Gu, BlendingSpace as H, JoggingPausedByUser as Ha, Plane as Hc, UnitreeControllerKindEnum as Hd, GetKinematicConfigurationResponse as Hi, SafetyGeometryBox as Hl, ConfiguredPoseInverseFailedResponse as Hn, Manufacturer as Ho, ExecuteActionChunksResponse as Hr, NOVACloudApiFactory as Hs, CloudConnectionErrorInvalidTokenDetails as Ht, StoreObjectApi as Hu, BaseAPI as I, JoggingApiAxiosParamCreator as Ia, PlanTrajectoryFailedResponseErrorFeedback as Ic, TrajectoryRunningKindEnum as Id, ForwardKinematics422Response as Ii, RobotControllerConfigurationRequest as Il, ConfigurationArchiveStatusSuccess as In, LimitSet as Io, ErrorMaxIterationsExceededErrorFeedbackNameEnum as Ir, MultiSearchCollisionFreeResponse as Is, CloudConfigStatusNotConfiguredStatusEnum as It, StoreCollisionComponentsApiFactory as Iu, Box as J, JoggingPausedNearSingularity as Ja, Pose as Jc, UnpauseActionChunksResponse as Jd, IOBooleanValueValueTypeEnum as Ji, SafetyStateType as Jl, ContainerImage as Jn, MergeTrajectoriesResponseFeedbackInner as Jo, ExternalJointStreamDatapoint as Jr, NetworkInterface as Js, CloudConnectionErrorLeafnodeConnectionTimeoutCodeEnum as Jt, SystemApiAxiosParamCreator as Ju, BostondynamicsControllerKindEnum as K, JoggingPausedNearJointLimit as Ka, PlaybackSpeedResponse as Kc, UnpauseActionChunksRequest as Kd, HTTPValidationError as Ki, SafetyGeometryPrism as Kl, ConstrainedPose as Kn, MergeTrajectoriesRequest as Ko, ExecuteTrajectoryRequest as Kr, NanValueErrorNanValue as Ks, CloudConnectionErrorLeafnodeConnectionErrorDetails as Kt, StreamIOValuesResponse as Ku, Behavior as L, JoggingApiFactory as La, PlanTrajectoryRequest as Lc, TrajectorySection as Ld, ForwardKinematicsRequest as Li, RobotControllerState as Ll, ConfigurationArchiveStatusSuccessStatusEnum as Ln, LimitsOverride as Lo, ErrorMotionGroupKeyMismatch as Lr, MultiSearchCollisionFreeResponseResponse as Ls, CloudConfiguration as Lt, StoreCollisionComponentsApiFp as Lu, BUSInputsOutputsApi as M, InverseKinematicsResponse as Ma, PlanCollisionFreeRequest as Mc, TrajectoryPlanningApiAxiosParamCreator as Md, Flag as Mi, RobotConfigurationsApiFactory as Ml, ConfigurationArchiveStatusCreating as Mn, LicenseApiFp as Mo, ErrorJointLimitExceededErrorFeedbackNameEnum as Mr, MultiErrorJointPositionCollision as Ms, CloudConfigStatus as Mt, StorageKey as Mu, BUSInputsOutputsApiAxiosParamCreator as N, InverseKinematicsValidationError as Na, PlanCollisionFreeResponse as Nc, TrajectoryPlanningApiFactory as Nd, FlangePayload as Ni, RobotConfigurationsApiFp as Nl, ConfigurationArchiveStatusCreatingStatusEnum as Nn, LicenseStatus as No, ErrorJointPositionCollision as Nr, MultiJointTrajectory as Ns, CloudConfigStatusConfigured as Nt, StorageKeySourceEnum as Nu, ApplicationApiFactory as O, InverseFeedbackAtIndex as Oa, PauseOnIO as Oc, TrajectoryPausedByUserKindEnum as Od, ZodValidationErrorErrorCodeEnum as Of, FeedbackStartJointsMissing as Oi, RequestArgs as Ol, CollisionSetupValueSourceEnum as On, License as Oo, ErrorDirectionConstraintNotNormalizedErrorFeedbackNameEnum as Or, MovementErrorResponseKindEnum as Os, CellApi as Ot, StopActionChunksRequest as Ou, BUSInputsOutputsApiFactory as P, InverseKinematicsValidationErrorAllOfData as Pa, PlanCollisionFreeResponseResponse as Pc, TrajectoryPlanningApiFp as Pd, FloatValue as Pi, RobotController as Pl, ConfigurationArchiveStatusError as Pn, LicenseStatusEnum as Po, ErrorJointPositionCollisionErrorFeedbackNameEnum as Pr, MultiSearchCollisionFree422Response as Ps, CloudConfigStatusConfiguredStatusEnum as Pt, StoreCollisionComponentsApi as Pu, BusIOModbusClient as Q, JoggingRunning as Qa, ProfinetIO as Qc, User as Qd, IOFloatValue as Qi, ServiceGroup as Ql, ControllerApi as Qn, MidpointInsertionAlgorithmAlgorithmNameEnum as Qo, FeedbackAxisRangeExceeded as Qr, OperatingState as Qs, CloudConnectionErrorNatsFailedCodeEnum as Qt, TcpRequiredError as Qu, BlendingAuto as R, JoggingApiFp as Ra, PlanTrajectoryResponse as Rc, TrajectoryWaitForIO as Rd, ForwardKinematicsResponse as Ri, RobotSystemMode as Rl, ConfigurationParameters as Rn, LinkChainValue as Ro, ErrorUnsupportedOperation as Rr, MultiSearchCollisionFreeValidationError as Rs, CloudConnectionError as Rt, StoreCollisionSetupsApi as Ru, AddTrajectoryResponse as S, InitializeMovementResponseKindEnum as Sa, PauseJoggingResponse as Sc, TrajectoryExecutionApiAxiosParamCreator as Sd, Waypoint as Sf, FeedbackNoSolutionInCurrentConfiguration as Si, Range as Sl, CollisionErrorKindEnum as Sn, KukaConfiguredPose as So, DirectionConstraint as Sr, MotionGroupModelsApiFactory as Ss, CapabilityEntry as St, StartMovementResponse as Su, App as T, InvalidDofError as Ta, PauseMovementRequestMessageTypeEnum as Tc, TrajectoryId as Td, YaskawaControllerKindEnum as Tf, FeedbackOutOfWorkspaceErrorFeedbackNameEnum as Ti, RectangularCapsule as Tl, CollisionSetup as Tn, KukaControllerRsiServer as To, ErrorDirectionConstraintNotMet as Tr, MotionGroupState as Ts, CartesianLimits as Tt, StaubliController as Tu, BooleanValue as U, JoggingPausedByUserKindEnum as Ua, PlaneShapeTypeEnum as Uc, UnitreeControllerRobotTypeEnum as Ud, GetKinematicConfigurationValidationError as Ui, SafetyGeometryCapsule as Ul, ConfiguredPoseInverseRequest as Un, MergeTrajectories422Response as Uo, ExecuteDetails as Ur, NOVACloudApiFp as Us, CloudConnectionErrorInvalidTokenDetailsCloudResponse as Ut, StoreObjectApiAxiosParamCreator as Uu, BlendingPositionBlendingNameEnum as V, JoggingDetailsState as Va, PlanValidationErrorAllOfData as Vc, UnitreeController as Vd, GetKinematicConfigurationRequest as Vi, SafetyGeometry as Vl, ConfiguredPoseInverse422Response as Vn, ListTrajectoriesResponse as Vo, ExecuteActionChunksRequest as Vr, NOVACloudApiAxiosParamCreator as Vs, CloudConnectionErrorInvalidTokenCodeEnum as Vt, StoreCollisionSetupsApiFp as Vu, BooleanValueValueTypeEnum as W, JoggingPausedNearCollision as Wa, PlaybackSpeedRequest as Wc, UniversalrobotsController as Wd, GetKinematicConfigurationValidationErrorAllOfData as Wi, SafetyGeometryLozenge as Wl, ConfiguredPoseInverseResponse as Wn, MergeTrajectoriesError as Wo, ExecuteJoggingRequest as Wr, NanValueError as Ws, CloudConnectionErrorLeafnodeConnectionError as Wt, StoreObjectApiFactory as Wu, BoxShapeTypeEnum as X, JoggingPausedOnIO as Xa, PoseWaypointKindEnum as Xc, UpdateCellVersionRequest as Xd, IODescription as Xi, SafetyZonePose as Xl, ContainerResources as Xn, MergeTrajectoriesValidationError as Xo, FanucController as Xr, NetworkStateConnectionTypeEnum as Xs, CloudConnectionErrorLeafnodeRestartTimeoutCodeEnum as Xt, SystemApiFp as Xu, BoxBoxTypeEnum as Y, JoggingPausedNearSingularityKindEnum as Ya, PoseWaypoint as Yc, UnpauseActionChunksResponseKindEnum as Yd, IOBoundary as Yi, SafetyZone as Yl, ContainerImageSecretsInner as Yn, MergeTrajectoriesSegment as Yo, ExternalJointStreamRequest as Yr, NetworkState as Ys, CloudConnectionErrorLeafnodeRestartTimeout as Yt, SystemApiFactory as Yu, BusIODescription as Z, JoggingPausedOnIOKindEnum as Za, ProfinetDescription as Zc, UpdateNovaVersionRequest as Zd, IODirection as Zi, SafetyZones as Zl, ContainerStorage as Zn, MidpointInsertionAlgorithm as Zo, FanucControllerKindEnum as Zr, OpMode as Zs, CloudConnectionErrorNatsFailed as Zt, TcpOffset as Zu, ActionChunkStreamingApiFp as _, InitializeJoggingResponseKindEnum as _a, PauseActionChunksRequestMessageTypeEnum as _c, TrajectoryDetailsKindEnum as _d, VirtualControllerInputsOutputsApiFactory as _f, FeedbackInvalidNanValueErrorFeedbackNameEnum as _i, ProjectJointPositionDirectionConstraintValidationError as _l, ColliderValueOrKey as _n, KinematicModel as _o, CycleTime as _r, MotionGroupJoints as _s, BusIOSnap7BusTypeEnum as _t, Snap7IOTypeEnum as _u, AbbConfiguredPose as a, ImageCredentials as aa, PathCirclePathDefinitionNameEnum as ac, ToolValueOrKey as ad, VersionApiFp as af, FeedbackCubicSplineIsNotIncreasingErrorFeedbackNameEnum as ai, ProfinetSubSlotDescription as al, CloudDisconnectionError as an, JointTypeEnum as ao, ControllerInputsOutputsApiFactory as ar, MotionCommand as as, BusIOModbusTCPServerNetworkTypeEnum as at, SessionApiAxiosParamCreator as au, AddTrajectoryErrorData as b, InitializeMovementRequestTrajectory as ba, PauseJoggingRequest as bc, TrajectoryEndedKindEnum as bd, VirtualRobotConfiguration as bf, FeedbackJointLimitExceeded as bi, RRTConnectAlgorithmAlgorithmNameEnum as bl, CollisionContact as bn, KinematicsApiFactory as bo, DHParameter as br, MotionGroupModelsApi as bs, BusIOsStateEnum as bt, StartMovementRequest as bu, AbbControllerKindEnum as c, InconsistentTrajectorySizeErrorKindEnum as ca, PathDirectionConstrainedCartesianPTP as cc, TorqueExceededErrorKindEnum as cd, VirtualControllerApiAxiosParamCreator as cf, FeedbackDirectionConstraintNoSolutionExists as ci, ProgramApiAxiosParamCreator as cl, CloudDisconnectionStatusDisconnecting as cn, JointVelocityResponse as co, ConvertVendorConfiguredPose422Response as cr, MotionGroupApi as cs, BusIOProfinet as ct, SessionResponse as cu, ActionChunkRequestMessageTypeEnum as d, InitializeActionChunksRequestMessageTypeEnum as da, PathDirectionConstrainedJointPTPPathDefinitionNameEnum as dc, TrajectoryCachingApiAxiosParamCreator as dd, VirtualControllerBehaviorApi as df, FeedbackDirectionConstraintNotMetErrorFeedbackNameEnum as di, ProgramRun as dl, CloudStatus as dn, JointWaypointKindEnum as do, ConvexHull as dr, MotionGroupApiFp as ds, BusIOProfinetIpConfig as dt, SingularityHandling as du, IOIntegerValue as ea, OperationMode as ec, TcpVelocityRequest as ed, ValidationError2 as ef, FeedbackCollision as ei, ProfinetIODirection as el, CloudConnectionErrorUnexpectedResponse as en, JointLimitExceededError as eo, ControllerApiFactory as er, ModbusIOArea as es, BusIOModbusServer as et, ServiceStatusPhase as eu, ActionChunkResponse as f, InitializeActionChunksResponse as fa, PathJointPTP as fc, TrajectoryCachingApiFactory as fd, VirtualControllerBehaviorApiAxiosParamCreator as ff, FeedbackDirectionConstraintNotNormalized as fi, ProgramRunState as fl, CloudStatusChecks as fn, KinematicBranch as fo, ConvexHullShapeTypeEnum as fr, MotionGroupConfiguration as fs, BusIOProfinetNetwork as ft, SingularityTypeEnum as fu, ActionChunkStreamingApiFactory as g, InitializeJoggingResponse as ga, PauseActionChunksRequest as gc, TrajectoryDetails as gd, VirtualControllerInputsOutputsApiAxiosParamCreator as gf, FeedbackInvalidNanValue as gi, ProjectJointPositionDirectionConstraintResponse as gl, ColliderValue as gn, KinematicConfiguration as go, CubicSplineParameter as gr, MotionGroupInfo as gs, BusIOSnap7 as gt, Snap7IODirection as gu, ActionChunkStreamingApiAxiosParamCreator as h, InitializeJoggingRequestMessageTypeEnum as ha, PathLinePathDefinitionNameEnum as hc, TrajectoryDataMessageTypeEnum as hd, VirtualControllerInputsOutputsApi as hf, FeedbackInvalidDofErrorFeedbackNameEnum as hi, ProjectJointPositionDirectionConstraintRequest as hl, ColliderShape as hn, KinematicBranchWrist as ho, CopyMotionGroupModelRequest as hr, MotionGroupFromType as hs, BusIOProfinetVirtualBusTypeEnum as ht, Snap7IOData as hu, AbbConfdata as i, IOValueType as ia, PathCircle as ic, ToolValue as id, VersionApiFactory as if, FeedbackCubicSplineIsNotIncreasing as ii, ProfinetSlotOffset as il, CloudConnectionRequest as in, JointTrajectory as io, ControllerInputsOutputsApiAxiosParamCreator as ir, ModelError as is, BusIOModbusTCPServer as it, SessionApi as iu, BASE_PATH as j, InverseKinematicsRequest as ja, PlanCollisionFreeFailedResponse as jc, TrajectoryPlanningApi as jd, operationServerMap as jf, FeedbackTorqueExceededErrorFeedbackNameEnum as ji, RobotConfigurationsApiAxiosParamCreator as jl, ConfigurationArchiveStatus as jn, LicenseApiFactory as jo, ErrorJointLimitExceeded as jr, MultiErrorJointLimitExceeded as js, CellApiFp as jt, StopActionChunksResponseKindEnum as ju, ApplicationApiFp as k, InverseFeedbackAtIndexErrorFeedback as ka, Payload as kc, TrajectoryPausedOnIO as kd, ZodValidationErrorErrorDetailsInner as kf, FeedbackStartJointsMissingErrorFeedbackNameEnum as ki, RequiredError as kl, Comparator as kn, LicenseApi as ko, ErrorInvalidJointCount as kr, MultiCollisionSetup as ks, CellApiAxiosParamCreator as kt, StopActionChunksRequestMessageTypeEnum as ku, AbbPose as l, InertiaTensor as la, PathDirectionConstrainedCartesianPTPPathDefinitionNameEnum as lc, TorqueExceededErrorTorqueExceeded as ld, VirtualControllerApiFactory as lf, FeedbackDirectionConstraintNoSolutionExistsErrorFeedbackNameEnum as li, ProgramApiFactory as ll, CloudDisconnectionStatusDisconnectingStatusEnum as ln, JointVelocityResponseKindEnum as lo, ConvertVendorConfiguredPoseRequest as lr, MotionGroupApiAxiosParamCreator as ls, BusIOProfinetBusTypeEnum as lt, SetIO as lu, ActionChunkStreamingApi as m, InitializeJoggingRequest as ma, PathLine as mc, TrajectoryData as md, VirtualControllerBehaviorApiFp as mf, FeedbackInvalidDof as mi, ProjectJointPositionDirectionConstraint422Response as ml, Collider as mn, KinematicBranchShoulder as mo, CoordinateSystemData as mr, MotionGroupFromJson as ms, BusIOProfinetVirtual as mt, Snap7IOArea as mu, NovaConfig as n, IOOrigin as na, PathCartesianPTP as nc, TcpVelocityResponse as nd, VersionApi as nf, FeedbackCommandsMissing as ni, ProfinetInputOutputConfig as nl, CloudConnectionErrorUnexpectedResponseDetails as nn, JointLimits as no, ControllerDescription as nr, ModbusIOData as ns, BusIOModbusTCPClient as nt, ServiceStatusSeverity as nu, AbbController as o, InconsistentTrajectorySizeError as oa, PathCubicSpline as oc, ToolValueSourceEnum as od, VirtualController as of, FeedbackCubicSplineNotAtStartPose as oi, Program as ol, CloudDisconnectionStatusDisconnected as on, JointVelocityRequest as oo, ControllerInputsOutputsApiFp as or, MotionCommandBlending as os, BusIOModbusVirtual as ot, SessionApiFactory as ou, ActionChunkResponseKindEnum as p, InitializeActionChunksResponseKindEnum as pa, PathJointPTPPathDefinitionNameEnum as pc, TrajectoryCachingApiFp as pd, VirtualControllerBehaviorApiFactory as pf, FeedbackDirectionConstraintNotNormalizedErrorFeedbackNameEnum as pi, ProgramStartRequest as pl, CloudStatusErrors as pn, KinematicBranchElbow as po, CoordinateSystem as pr, MotionGroupDescription as ps, BusIOProfinetSlot as pt, Snap7IO as pu, BostondynamicsControllerRobotTypeEnum as q, JoggingPausedNearJointLimitKindEnum as qa, PlaybackSpeedResponseKindEnum as qc, UnpauseActionChunksRequestMessageTypeEnum as qd, IOBooleanValue as qi, SafetyGeometrySphere as ql, ContainerEnvironmentInner as qn, MergeTrajectoriesResponse as qo, ExecuteTrajectoryResponse as qr, NetworkDevice as qs, CloudConnectionErrorLeafnodeConnectionTimeout as qt, SystemApi as qu, NovaAPIClient as r, IOValue as ra, PathCartesianPTPPathDefinitionNameEnum as rc, TcpVelocityResponseKindEnum as rd, VersionApiAxiosParamCreator as rf, FeedbackCommandsMissingErrorFeedbackNameEnum as ri, ProfinetSlotDescription as rl, CloudConnectionErrorUnexpectedResponseDetailsCloudResponse as rn, JointPTPMotion as ro, ControllerInputsOutputsApi as rr, ModbusIOTypeEnum as rs, BusIOModbusTCPClientNetworkTypeEnum as rt, ServiceStatusStatus as ru, AbbControllerEgmServer as s, InconsistentTrajectorySizeErrorInconsistentTrajectorySize as sa, PathCubicSplinePathDefinitionNameEnum as sc, TorqueExceededError as sd, VirtualControllerApi as sf, FeedbackCubicSplineNotAtStartPoseErrorFeedbackNameEnum as si, ProgramApi as sl, CloudDisconnectionStatusDisconnectedStatusEnum as sn, JointVelocityRequestMessageTypeEnum as so, ControllerNetworkInterface as sr, MotionCommandPath as ss, BusIOModbusVirtualBusTypeEnum as st, SessionApiFp as su, Nova as t, IOIntegerValueValueTypeEnum as ta, OrientationType as tc, TcpVelocityRequestMessageTypeEnum as td, ValidationErrorLocInner as tf, FeedbackCollisionErrorFeedbackNameEnum as ti, ProfinetIOTypeEnum as tl, CloudConnectionErrorUnexpectedResponseCodeEnum as tn, JointLimitExceededErrorKindEnum as to, ControllerApiFp as tr, ModbusIOByteOrder as ts, BusIOModbusServerBusTypeEnum as tt, ServiceStatusResponse as tu, ActionChunkRequest as u, InitializeActionChunksRequest as ua, PathDirectionConstrainedJointPTP as uc, TrajectoryCachingApi as ud, VirtualControllerApiFp as uf, FeedbackDirectionConstraintNotMet as ui, ProgramApiFp as ul, CloudRegistrationSuccessResponse as un, JointWaypoint as uo, ConvertVendorConfiguredPoseRequestVendorConfiguredPoses as ur, MotionGroupApiFactory as us, BusIOProfinetDefaultRoute as ut, SettableRobotSystemMode as uu, ActivateLicenseRequest as v, InitializeMovementRequest as va, PauseActionChunksResponse as vc, TrajectoryDetailsState as vd, VirtualControllerInputsOutputsApiFp as vf, FeedbackInvalidSamplingTime as vi, ProjectJointPositionDirectionConstraintValidationErrorAllOfData as vl, ColliderValueSourceEnum as vn, KinematicsApi as vo, Cylinder as vr, MotionGroupModelCatalog as vs, BusIOType as vt, Sphere as vu, ApiVersion as w, IntegerValueValueTypeEnum as wa, PauseMovementRequest as wc, TrajectoryExecutionApiFp as wd, YaskawaController as wf, FeedbackOutOfWorkspace as wi, RectangleShapeTypeEnum as wl, CollisionMotionGroup as wn, KukaControllerKindEnum as wo, DynamicModel as wr, MotionGroupSetup as ws, CapsuleShapeTypeEnum as wt, StartOnIO as wu, AddTrajectoryRequest as x, InitializeMovementResponse as xa, PauseJoggingRequestMessageTypeEnum as xc, TrajectoryExecutionApi as xd, WaitForIOEventRequest as xf, FeedbackJointLimitExceededErrorFeedbackNameEnum as xi, RRTConnectAlgorithmStepSize as xl, CollisionError as xn, KinematicsApiFp as xo, Direction as xr, MotionGroupModelsApiAxiosParamCreator as xs, COLLECTION_FORMATS as xt, StartMovementRequestMessageTypeEnum as xu, AddTrajectoryError as y, InitializeMovementRequestMessageTypeEnum as ya, PauseActionChunksResponseKindEnum as yc, TrajectoryEnded as yd, VirtualControllerKindEnum as yf, FeedbackInvalidSamplingTimeErrorFeedbackNameEnum as yi, RRTConnectAlgorithm as yl, Collision as yn, KinematicsApiAxiosParamCreator as yo, CylinderShapeTypeEnum as yr, MotionGroupModelDescription as ys, BusIOsState as yt, SphereShapeTypeEnum as yu, BlendingAutoBlendingNameEnum as z, JoggingDetails as za, PlanTrajectoryResponseResponse as zc, TrajectoryWaitForIOKindEnum as zd, ForwardKinematicsValidationError as zi, RobotTcp as zl, ConfigurationResource as zn, LinkChainValueOrKey as zo, ErrorUnsupportedOperationErrorFeedbackNameEnum as zr, MultiSearchCollisionFreeValidationErrorAllOfData as zs, CloudConnectionErrorError as zt, StoreCollisionSetupsApiAxiosParamCreator as zu };
12499
+ //# sourceMappingURL=Nova-C2uY6kI1.d.mts.map