@wandelbots/nova-js 4.3.0 → 4.4.0-nova-api-dev.26-7-0-dev-5

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.
@@ -1,13 +1,13 @@
1
1
  import { n as MockNovaInstance, t as AutoReconnectingWebsocket } from "./AutoReconnectingWebsocket-NVyczzLi.mjs";
2
2
  import * as _$axios from "axios";
3
3
  import { AxiosInstance, AxiosPromise, RawAxiosRequestConfig } from "axios";
4
- //#region node_modules/.pnpm/@wandelbots+nova-api@26.5.2/node_modules/@wandelbots/nova-api/dist/v2/index.d.ts
4
+ //#region node_modules/.pnpm/@wandelbots+nova-api@26.7.0-dev.5/node_modules/@wandelbots/nova-api/dist/v2/index.d.ts
5
5
  //#region v2/configuration.d.ts
6
6
  /**
7
7
  * Wandelbots NOVA API
8
8
  * Interact with robots in an easy and intuitive way.
9
9
  *
10
- * The version of the OpenAPI document: 2.5.0
10
+ * The version of the OpenAPI document: 2.7.0 dev
11
11
  *
12
12
  *
13
13
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -163,6 +163,7 @@ interface AbbConfiguredPose {
163
163
  interface AbbController {
164
164
  'kind': AbbControllerKindEnum;
165
165
  'controller_ip': string;
166
+ 'network_interface'?: ControllerNetworkInterface;
166
167
  /**
167
168
  * Default values: 80, 443. If custom value is set, field is required.
168
169
  */
@@ -192,6 +193,37 @@ interface AbbPose {
192
193
  'q3': number;
193
194
  'q4': number;
194
195
  }
196
+ /**
197
+ * 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.
198
+ */
199
+ interface ActionChunkRequest {
200
+ /**
201
+ * Type specifier for server, set automatically.
202
+ */
203
+ 'message_type': ActionChunkRequestMessageTypeEnum;
204
+ /**
205
+ * List of waypoints.
206
+ */
207
+ 'waypoints': Array<Waypoint>;
208
+ }
209
+ declare const ActionChunkRequestMessageTypeEnum: {
210
+ readonly ActionChunkRequest: "ActionChunkRequest";
211
+ };
212
+ type ActionChunkRequestMessageTypeEnum = typeof ActionChunkRequestMessageTypeEnum[keyof typeof ActionChunkRequestMessageTypeEnum];
213
+ /**
214
+ * Acknowledgment to an ActionChunkRequest.
215
+ */
216
+ interface ActionChunkResponse {
217
+ /**
218
+ * Error message in case of invalid ActionChunkRequest.
219
+ */
220
+ 'message'?: string;
221
+ 'kind': ActionChunkResponseKindEnum;
222
+ }
223
+ declare const ActionChunkResponseKindEnum: {
224
+ readonly ActionChunkReceived: "ACTION_CHUNK_RECEIVED";
225
+ };
226
+ type ActionChunkResponseKindEnum = typeof ActionChunkResponseKindEnum[keyof typeof ActionChunkResponseKindEnum];
195
227
  /**
196
228
  * The authentication token to fetch the license from the license server.
197
229
  */
@@ -253,7 +285,7 @@ interface AddTrajectoryResponse {
253
285
  }
254
286
  /**
255
287
  * @type AddVirtualControllerMotionGroupRequest
256
- * 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.
288
+ * 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.
257
289
  */
258
290
  type AddVirtualControllerMotionGroupRequest = MotionGroupFromJson | MotionGroupFromType;
259
291
  interface ApiVersion {
@@ -267,7 +299,7 @@ interface ApiVersion {
267
299
  */
268
300
  interface App {
269
301
  /**
270
- * 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).
302
+ * 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).
271
303
  */
272
304
  'name': string;
273
305
  /**
@@ -294,6 +326,25 @@ interface App {
294
326
  */
295
327
  'diagnosis_path'?: string;
296
328
  }
329
+ /**
330
+ * Indicates which motion boundary an offset is measured from.
331
+ */
332
+ declare const AtReference: {
333
+ readonly Previous: "previous";
334
+ readonly Next: "next";
335
+ };
336
+ type AtReference = typeof AtReference[keyof typeof AtReference];
337
+ /**
338
+ * @type AtTrigger
339
+ * Positions an overlay command relative to its nearest preceding motion command.
340
+ */
341
+ type AtTrigger = {
342
+ type: 'distance';
343
+ } & DistanceTrigger | {
344
+ type: 'path_fraction';
345
+ } & PathFractionTrigger | {
346
+ type: 'time';
347
+ } & TimeTrigger;
297
348
  /**
298
349
  * Per-joint constraint beyond the 8 inverse kinematic branches. Maps a joint index (0-based) to an allowed angle interval (in radians).
299
350
  */
@@ -310,6 +361,15 @@ declare const Behavior: {
310
361
  readonly BehaviorExternalSource: "BEHAVIOR_EXTERNAL_SOURCE";
311
362
  };
312
363
  type Behavior = typeof Behavior[keyof typeof Behavior];
364
+ /**
365
+ * @type Blending
366
+ * Specifies baseline blending behavior for a motion command.
367
+ */
368
+ type Blending = {
369
+ type: 'blending_auto';
370
+ } & BlendingAuto | {
371
+ type: 'blending_position';
372
+ } & BlendingPosition;
313
373
  interface BlendingAuto {
314
374
  /**
315
375
  * Auto-blending is used to keep a constant velocity when blending between two motion commands. To use auto-blending, the TCP velocity limit must be set. It changes the TCP path around the target point of the motion command. The value represents the percentage of the original velocity. Auto-blending is always performed in cartesian space.
@@ -375,6 +435,48 @@ declare const BooleanValueValueTypeEnum: {
375
435
  readonly Boolean: "boolean";
376
436
  };
377
437
  type BooleanValueValueTypeEnum = typeof BooleanValueValueTypeEnum[keyof typeof BooleanValueValueTypeEnum];
438
+ /**
439
+ * The configuration of a Boston Dynamics robot controller. Requires the hostname or IP address of the robot and authentication credentials.
440
+ */
441
+ interface BostondynamicsController {
442
+ 'kind': BostondynamicsControllerKindEnum;
443
+ /**
444
+ * The hostname or IP address of the robot.
445
+ */
446
+ 'controller_ip': string;
447
+ /**
448
+ * The Boston Dynamics robot model type.
449
+ */
450
+ 'robot_type'?: BostondynamicsControllerRobotTypeEnum;
451
+ /**
452
+ * The authentication password for the robot.
453
+ */
454
+ 'password': string;
455
+ /**
456
+ * The authentication username for the robot.
457
+ */
458
+ 'username'?: string;
459
+ /**
460
+ * The network interface used to communicate with the robot.
461
+ */
462
+ 'network_interface'?: string;
463
+ /**
464
+ * JPEG quality for camera streams (1-100).
465
+ */
466
+ 'stream_quality'?: number;
467
+ /**
468
+ * Frames per second for camera streams.
469
+ */
470
+ 'stream_fps'?: number;
471
+ }
472
+ declare const BostondynamicsControllerKindEnum: {
473
+ readonly BostondynamicsController: "BostondynamicsController";
474
+ };
475
+ type BostondynamicsControllerKindEnum = typeof BostondynamicsControllerKindEnum[keyof typeof BostondynamicsControllerKindEnum];
476
+ declare const BostondynamicsControllerRobotTypeEnum: {
477
+ readonly Spot: "spot";
478
+ };
479
+ type BostondynamicsControllerRobotTypeEnum = typeof BostondynamicsControllerRobotTypeEnum[keyof typeof BostondynamicsControllerRobotTypeEnum];
378
480
  /**
379
481
  * 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.
380
482
  */
@@ -684,19 +786,44 @@ declare const CapsuleShapeTypeEnum: {
684
786
  };
685
787
  type CapsuleShapeTypeEnum = typeof CapsuleShapeTypeEnum[keyof typeof CapsuleShapeTypeEnum];
686
788
  interface CartesianLimits {
789
+ /**
790
+ * Cartesian velocity limit in mm/s.
791
+ */
687
792
  'velocity'?: number;
793
+ /**
794
+ * Cartesian acceleration limit in mm/s².
795
+ */
688
796
  'acceleration'?: number;
689
797
  /**
690
- * > **NOTE** > > This limit type is experimental and its behavior may change in future releases.
798
+ * Cartesian jerk limit in mm/s³. > **NOTE** > > This limit type is experimental and its behavior may change in future releases.
691
799
  */
692
800
  'jerk'?: number;
801
+ /**
802
+ * Orientation velocity limit in rad/s.
803
+ */
693
804
  'orientation_velocity'?: number;
805
+ /**
806
+ * Orientation acceleration limit in rad/s².
807
+ */
694
808
  'orientation_acceleration'?: number;
695
809
  /**
696
- * > **NOTE** > > This limit type is experimental and its behavior may change in future releases.
810
+ * Orientation jerk limit in rad/s³. > **NOTE** > > This limit type is experimental and its behavior may change in future releases.
697
811
  */
698
812
  'orientation_jerk'?: number;
699
813
  }
814
+ /**
815
+ * 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.
816
+ */
817
+ interface CartesianVelocity {
818
+ /**
819
+ * A three-dimensional vector [x, y, z] with double precision.
820
+ */
821
+ 'translation': Array<number>;
822
+ /**
823
+ * A three-dimensional vector [x, y, z] with double precision.
824
+ */
825
+ 'rotation': Array<number>;
826
+ }
700
827
  /**
701
828
  * 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.
702
829
  */
@@ -881,6 +1008,36 @@ interface CloudRegistrationSuccessResponse {
881
1008
  */
882
1009
  'instance': number;
883
1010
  }
1011
+ interface CloudStatus {
1012
+ /**
1013
+ * Whether NOVA Cloud is fully reachable, i.e. every reachability check passed. `false` when the instance is not configured or any check fails.
1014
+ */
1015
+ 'ready': boolean;
1016
+ 'checks': CloudStatusChecks;
1017
+ 'errors': CloudStatusErrors;
1018
+ /**
1019
+ * Timestamp at which the reachability checks were performed (RFC 3339).
1020
+ */
1021
+ 'checked_at': string;
1022
+ }
1023
+ /**
1024
+ * Result of each reachability check. A check is absent when a prerequisite check failed and it was not run.
1025
+ */
1026
+ interface CloudStatusChecks {
1027
+ 'is_configured'?: boolean;
1028
+ 'can_connect_nats'?: boolean;
1029
+ 'can_ping_nats'?: boolean;
1030
+ 'can_reach_openfga'?: boolean;
1031
+ }
1032
+ /**
1033
+ * Failure reason for each failed check, to help diagnose what is wrong.
1034
+ */
1035
+ interface CloudStatusErrors {
1036
+ 'is_configured'?: string;
1037
+ 'can_connect_nats'?: string;
1038
+ 'can_ping_nats'?: string;
1039
+ 'can_reach_openfga'?: string;
1040
+ }
884
1041
  /**
885
1042
  * 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.
886
1043
  */
@@ -1054,6 +1211,61 @@ type CollisionSetupValueOrKey = {
1054
1211
  } & StorageKey | {
1055
1212
  source: 'value';
1056
1213
  } & CollisionSetupValue;
1214
+ /**
1215
+ * @type Command
1216
+ * Defines one planning or execution-overlay command in a command routine.
1217
+ */
1218
+ type Command = ExplicitPathMotionCommand | GeneratedPathMotionCommand | MarkerCommand | PauseOnIOCommand | SetIOCommand | WaitForIOCommand | WaitForTimeCommand;
1219
+ /**
1220
+ * Defines an ordered, persistable command routine that belongs to a teaching dataset.
1221
+ */
1222
+ interface CommandRoutine {
1223
+ /**
1224
+ * Unique identifier of the command routine within the dataset. Must start with a letter and may only contain letters, digits, and hyphens.
1225
+ */
1226
+ 'command_routine': string;
1227
+ /**
1228
+ * Unique identifier of the dataset. Must start with a letter and may only contain letters, digits, and hyphens.
1229
+ */
1230
+ 'dataset'?: string;
1231
+ /**
1232
+ * Specifies the human-readable command-routine name.
1233
+ */
1234
+ 'name'?: string;
1235
+ /**
1236
+ * Describes the command routine.
1237
+ */
1238
+ 'description'?: string;
1239
+ /**
1240
+ * References the motion group that executes this routine. It is absent when no motion group context exists.
1241
+ */
1242
+ 'motion_group'?: MotionGroupReference;
1243
+ 'motion_group_setup': MotionGroupSetup | null;
1244
+ /**
1245
+ * Specifies the routine-level tool-center-point identifier. It is absent when no motion group context exists.
1246
+ */
1247
+ 'tcp'?: string;
1248
+ 'start_joint_position'?: Array<number>;
1249
+ 'default_motion_settings'?: MotionSettings;
1250
+ /**
1251
+ * Contains the ordered planning and execution-overlay commands.
1252
+ */
1253
+ 'commands': Array<Command>;
1254
+ /**
1255
+ * Contains string-valued annotations that are preserved on round-trip.
1256
+ */
1257
+ 'metadata'?: {
1258
+ [key: string]: string;
1259
+ };
1260
+ /**
1261
+ * Records when the command routine was created.
1262
+ */
1263
+ 'created_at'?: string;
1264
+ /**
1265
+ * Records when the command routine was last updated.
1266
+ */
1267
+ 'updated_at'?: string;
1268
+ }
1057
1269
  /**
1058
1270
  * Comparator for the comparison of two values. The comparator is used to compare two values and return a boolean result. The default comparator is unknown.
1059
1271
  */
@@ -1129,9 +1341,16 @@ interface ConfigurationResource {
1129
1341
  */
1130
1342
  'children'?: Array<ConfigurationResource>;
1131
1343
  }
1344
+ /**
1345
+ * 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.
1346
+ */
1132
1347
  interface ConfiguredPose {
1133
1348
  'pose': Pose;
1134
- 'kinematic_configuration': KinematicConfiguration;
1349
+ 'kinematic_configuration'?: KinematicConfiguration;
1350
+ /**
1351
+ * Unique identifier of a coordinate system.
1352
+ */
1353
+ 'coordinate_system'?: string;
1135
1354
  }
1136
1355
  interface ConfiguredPoseInverse422Response {
1137
1356
  'detail'?: Array<ValidationError>;
@@ -1241,6 +1460,19 @@ interface ControllerDescription {
1241
1460
  */
1242
1461
  'supports_safety_zones': boolean;
1243
1462
  }
1463
+ /**
1464
+ * Direct network interface for the robot controller. When set, the controller gets its own interface on the specified port with the given addresses to reach the controller\'s network.
1465
+ */
1466
+ interface ControllerNetworkInterface {
1467
+ /**
1468
+ * Network port identifier. Either a bare port name, e.g., `enp3s0` or a node-qualified identifier, e.g., `wandelbox-abc123-enp3s0`. Use the node-qualified form on multi-node clusters to pin the interface to a specific node. Cannot be changed in-place. Delete and add the controller again to another port.
1469
+ */
1470
+ 'interface': string;
1471
+ /**
1472
+ * IPv4 addresses to assign to the interface, in address/prefix format, e.g., `192.168.1.10/24`.
1473
+ */
1474
+ 'addresses': Array<string>;
1475
+ }
1244
1476
  interface ConvertVendorConfiguredPose422Response {
1245
1477
  'detail'?: Array<ValidationError>;
1246
1478
  }
@@ -1279,7 +1511,7 @@ interface CoordinateSystem {
1279
1511
  */
1280
1512
  'position'?: Array<number>;
1281
1513
  /**
1282
- * Describes an orientation in 3D space. A tree-to-four-dimensional vector [x, y, z, w] with double precision.
1514
+ * Describes an orientation in 3D space. A three-to-four-dimensional vector [x, y, z, w] with double precision.
1283
1515
  */
1284
1516
  'orientation'?: Array<number>;
1285
1517
  'orientation_type'?: OrientationType;
@@ -1288,6 +1520,24 @@ interface CoordinateSystem {
1288
1520
  */
1289
1521
  'coordinate_system': string;
1290
1522
  }
1523
+ /**
1524
+ * A coordinate system defines a frame of reference in 3D space. Its pose is expressed relative to its parent coordinate system, which allows building a hierarchy of frames.
1525
+ */
1526
+ interface CoordinateSystem2 {
1527
+ /**
1528
+ * Unique identifier of a coordinate system.
1529
+ */
1530
+ 'coordinate_system': string;
1531
+ /**
1532
+ * Human-readable name for the coordinate system that is shown in the user interface.
1533
+ */
1534
+ 'name'?: string;
1535
+ /**
1536
+ * Unique identifier of a coordinate system.
1537
+ */
1538
+ 'parent'?: string;
1539
+ 'pose': Pose;
1540
+ }
1291
1541
  interface CoordinateSystemData {
1292
1542
  /**
1293
1543
  * Human readable name of this coordinate system.
@@ -1302,7 +1552,7 @@ interface CoordinateSystemData {
1302
1552
  */
1303
1553
  'position'?: Array<number>;
1304
1554
  /**
1305
- * Describes an orientation in 3D space. A tree-to-four-dimensional vector [x, y, z, w] with double precision.
1555
+ * Describes an orientation in 3D space. A three-to-four-dimensional vector [x, y, z, w] with double precision.
1306
1556
  */
1307
1557
  'orientation'?: Array<number>;
1308
1558
  'orientation_type'?: OrientationType;
@@ -1316,10 +1566,52 @@ interface CopyMotionGroupModelRequest {
1316
1566
  */
1317
1567
  'name': string;
1318
1568
  }
1569
+ /**
1570
+ * Creates a new teaching dataset together with its poses and command routines in a single request.
1571
+ */
1572
+ interface CreateDatasetRequest {
1573
+ /**
1574
+ * Unique identifier of the dataset. Must start with a letter and may only contain letters, digits, and hyphens.
1575
+ */
1576
+ 'dataset': string;
1577
+ /**
1578
+ * Human-readable name for the dataset that is shown in the user interface. The slug is derived from this name on download.
1579
+ */
1580
+ 'name'?: string;
1581
+ /**
1582
+ * Free-form text that describes the purpose of the dataset.
1583
+ */
1584
+ 'description'?: string;
1585
+ /**
1586
+ * Contains the poses that are created together with the dataset. Server-managed identifiers are assigned on creation.
1587
+ */
1588
+ 'poses'?: Array<DatasetPose>;
1589
+ /**
1590
+ * Contains the coordinate systems that are created together with the dataset. Server-managed identifiers are assigned on creation.
1591
+ */
1592
+ 'coordinate_systems'?: Array<DatasetCoordinateSystem>;
1593
+ /**
1594
+ * Contains the command routines that are created together with the dataset. Server-managed identifiers are assigned on creation.
1595
+ */
1596
+ 'command_routines'?: Array<CommandRoutine>;
1597
+ }
1319
1598
  interface CubicSplineParameter {
1320
1599
  'pose': Pose;
1321
1600
  'path_parameter': number;
1322
1601
  }
1602
+ /**
1603
+ * Defines one intermediate point of a cubic spline path. It mirrors the baseline cubic spline parameter but references the pose instead of inlining it, so spline points can be taught and shared like any other pose.
1604
+ */
1605
+ interface CubicSplineViaPoint {
1606
+ /**
1607
+ * References the intermediate pose of the spline.
1608
+ */
1609
+ 'pose': PoseRef;
1610
+ /**
1611
+ * Specifies the baseline path parameter of this intermediate point.
1612
+ */
1613
+ 'path_parameter': number;
1614
+ }
1323
1615
  interface CycleTime {
1324
1616
  /**
1325
1617
  * Cycle time of controller communication in [ms].
@@ -1370,6 +1662,138 @@ interface DHParameter {
1370
1662
  'reverse_rotation_direction'?: boolean;
1371
1663
  'type'?: JointTypeEnum;
1372
1664
  }
1665
+ /**
1666
+ * A dataset is a collection of poses that you can group and manage together.
1667
+ */
1668
+ interface Dataset {
1669
+ /**
1670
+ * Unique identifier of the dataset. Must start with a letter and may only contain letters, digits, and hyphens.
1671
+ */
1672
+ 'dataset': string;
1673
+ /**
1674
+ * Human-readable name for the dataset that is shown in the user interface. The slug is derived from this name on download.
1675
+ */
1676
+ 'name'?: string;
1677
+ /**
1678
+ * Revision number of the dataset. NOVA increments this on every change to the dataset.
1679
+ */
1680
+ 'revision': number;
1681
+ /**
1682
+ * Free-form text that describes the purpose of the dataset.
1683
+ */
1684
+ 'description'?: string;
1685
+ /**
1686
+ * Timestamp when the dataset was created, in RFC3339 format.
1687
+ */
1688
+ 'created_at': string;
1689
+ /**
1690
+ * Timestamp when the dataset was last updated, in RFC3339 format.
1691
+ */
1692
+ 'updated_at': string;
1693
+ }
1694
+ /**
1695
+ * A dataset coordinate system is a coordinate system that belongs to a dataset. It extends the shared `CoordinateSystem` with a reference to the dataset it belongs to.
1696
+ */
1697
+ interface DatasetCoordinateSystem {
1698
+ /**
1699
+ * Unique identifier of a coordinate system.
1700
+ */
1701
+ 'coordinate_system': string;
1702
+ /**
1703
+ * Human-readable name for the coordinate system that is shown in the user interface.
1704
+ */
1705
+ 'name'?: string;
1706
+ /**
1707
+ * Unique identifier of a coordinate system.
1708
+ */
1709
+ 'parent'?: string;
1710
+ 'pose': Pose;
1711
+ /**
1712
+ * Unique identifier of the dataset. Must start with a letter and may only contain letters, digits, and hyphens.
1713
+ */
1714
+ 'dataset': string;
1715
+ }
1716
+ /**
1717
+ * A dataset pose is a taught pose that belongs to a dataset. It extends the shared `ConfiguredPose` with dataset-specific fields such as an identifier, human-readable name, timestamps, and metadata.
1718
+ */
1719
+ interface DatasetPose {
1720
+ 'pose': Pose;
1721
+ 'kinematic_configuration'?: KinematicConfiguration;
1722
+ /**
1723
+ * Unique identifier of a coordinate system.
1724
+ */
1725
+ 'coordinate_system'?: string;
1726
+ /**
1727
+ * Unique identifier of the pose within the dataset. Must start with a letter and may only contain letters, digits, and hyphens.
1728
+ */
1729
+ 'dataset_pose': string;
1730
+ /**
1731
+ * Unique identifier of the dataset. Must start with a letter and may only contain letters, digits, and hyphens.
1732
+ */
1733
+ 'dataset': string;
1734
+ /**
1735
+ * Human-readable name for the pose that is shown in the user interface.
1736
+ */
1737
+ 'name'?: string;
1738
+ /**
1739
+ * Free-form text that describes the purpose of the pose.
1740
+ */
1741
+ 'description'?: string;
1742
+ /**
1743
+ * Timestamp when the pose was created, in RFC3339 format.
1744
+ */
1745
+ 'created_at'?: string;
1746
+ /**
1747
+ * Timestamp when the pose was last updated, in RFC3339 format.
1748
+ */
1749
+ 'updated_at'?: string;
1750
+ /**
1751
+ * Additional key-value pairs that can be attached to the pose.
1752
+ */
1753
+ 'metadata'?: {
1754
+ [key: string]: string;
1755
+ };
1756
+ }
1757
+ /**
1758
+ * References a persisted pose in a dataset and may carry an offline resolution cache.
1759
+ */
1760
+ interface DatasetPoseReference {
1761
+ /**
1762
+ * Identifies the cross-dataset pose-reference variant.
1763
+ */
1764
+ 'type': DatasetPoseReferenceTypeEnum;
1765
+ /**
1766
+ * Specifies the NOVA cell identifier used to locate the dataset.
1767
+ */
1768
+ 'cell': string;
1769
+ /**
1770
+ * Unique identifier of the dataset. Must start with a letter and may only contain letters, digits, and hyphens.
1771
+ */
1772
+ 'dataset': string;
1773
+ /**
1774
+ * Unique identifier of the pose within the dataset. Must start with a letter and may only contain letters, digits, and hyphens.
1775
+ */
1776
+ 'dataset_pose': string;
1777
+ 'resolved_pose'?: ConfiguredPose;
1778
+ /**
1779
+ * Records when the cached pose was resolved.
1780
+ */
1781
+ 'resolved_at'?: string;
1782
+ /**
1783
+ * Records the source revision used to resolve the cached pose.
1784
+ */
1785
+ 'source_revision'?: string;
1786
+ /**
1787
+ * Contains string-valued annotations that are preserved on round-trip.
1788
+ */
1789
+ 'metadata'?: {
1790
+ [key: string]: string;
1791
+ };
1792
+ }
1793
+ declare const DatasetPoseReferenceTypeEnum: {
1794
+ readonly DatasetPose: "dataset_pose";
1795
+ };
1796
+ type DatasetPoseReferenceTypeEnum = typeof DatasetPoseReferenceTypeEnum[keyof typeof DatasetPoseReferenceTypeEnum];
1373
1797
  /**
1374
1798
  * The direction in which the trajectory is executed. Default: Forward.
1375
1799
  */
@@ -1400,6 +1824,24 @@ declare const DirectionConstraintConstraintNameEnum: {
1400
1824
  readonly DirectionConstraint: "DirectionConstraint";
1401
1825
  };
1402
1826
  type DirectionConstraintConstraintNameEnum = typeof DirectionConstraintConstraintNameEnum[keyof typeof DirectionConstraintConstraintNameEnum];
1827
+ /**
1828
+ * Positions an overlay command at a Cartesian distance from a motion boundary.
1829
+ */
1830
+ interface DistanceTrigger {
1831
+ /**
1832
+ * Identifies the distance trigger variant.
1833
+ */
1834
+ 'type': DistanceTriggerTypeEnum;
1835
+ /**
1836
+ * Specifies the non-negative Cartesian distance in millimeters.
1837
+ */
1838
+ 'millimeters': number;
1839
+ 'reference': AtReference;
1840
+ }
1841
+ declare const DistanceTriggerTypeEnum: {
1842
+ readonly Distance: "distance";
1843
+ };
1844
+ type DistanceTriggerTypeEnum = typeof DistanceTriggerTypeEnum[keyof typeof DistanceTriggerTypeEnum];
1403
1845
  interface DynamicModel {
1404
1846
  /**
1405
1847
  * Mass of the link in kg
@@ -1524,7 +1966,7 @@ declare const ErrorUnsupportedOperationErrorFeedbackNameEnum: {
1524
1966
  };
1525
1967
  type ErrorUnsupportedOperationErrorFeedbackNameEnum = typeof ErrorUnsupportedOperationErrorFeedbackNameEnum[keyof typeof ErrorUnsupportedOperationErrorFeedbackNameEnum];
1526
1968
  /**
1527
- * 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.
1969
+ * 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.
1528
1970
  */
1529
1971
  interface Execute {
1530
1972
  /**
@@ -1533,6 +1975,26 @@ interface Execute {
1533
1975
  'joint_position': Array<number>;
1534
1976
  'details'?: ExecuteDetails;
1535
1977
  }
1978
+ /**
1979
+ * @type ExecuteActionChunksRequest
1980
+ */
1981
+ type ExecuteActionChunksRequest = ActionChunkRequest | InitializeActionChunksRequest | PauseActionChunksRequest | StopActionChunksRequest | UnpauseActionChunksRequest;
1982
+ /**
1983
+ * @type ExecuteActionChunksResponse
1984
+ */
1985
+ type ExecuteActionChunksResponse = {
1986
+ kind: 'ACTION_CHUNK_RECEIVED';
1987
+ } & ActionChunkResponse | {
1988
+ kind: 'INITIALIZE_RECEIVED';
1989
+ } & InitializeActionChunksResponse | {
1990
+ kind: 'MOTION_ERROR';
1991
+ } & MovementErrorResponse | {
1992
+ kind: 'PAUSE_RECEIVED';
1993
+ } & PauseActionChunksResponse | {
1994
+ kind: 'STOP_RECEIVED';
1995
+ } & StopActionChunksResponse | {
1996
+ kind: 'UNPAUSE_RECEIVED';
1997
+ } & UnpauseActionChunksResponse;
1536
1998
  /**
1537
1999
  * @type ExecuteDetails
1538
2000
  */
@@ -1578,23 +2040,31 @@ type ExecuteTrajectoryResponse = {
1578
2040
  kind: 'START_RECEIVED';
1579
2041
  } & StartMovementResponse;
1580
2042
  /**
1581
- * @type ExecuteWaypointJoggingRequest
1582
- */
1583
- type ExecuteWaypointJoggingRequest = InitializeJoggingRequest | JointWaypointsRequest | PauseJoggingRequest | PoseWaypointsRequest;
1584
- /**
1585
- * @type ExecuteWaypointJoggingResponse
2043
+ * Defines a motion command whose path is authored explicitly.
1586
2044
  */
1587
- type ExecuteWaypointJoggingResponse = {
1588
- kind: 'INITIALIZE_RECEIVED';
1589
- } & InitializeJoggingResponse | {
1590
- kind: 'JOINT_WAYPOINTS_RECEIVED';
1591
- } & JointWaypointsResponse | {
1592
- kind: 'MOTION_ERROR';
1593
- } & MovementErrorResponse | {
1594
- kind: 'PAUSE_RECEIVED';
1595
- } & PauseJoggingResponse | {
1596
- kind: 'POSE_WAYPOINTS_RECEIVED';
1597
- } & PoseWaypointsResponse;
2045
+ interface ExplicitPathMotionCommand {
2046
+ /**
2047
+ * Identifies the motion command variant.
2048
+ */
2049
+ 'type': ExplicitPathMotionCommandTypeEnum;
2050
+ 'target': PoseRef;
2051
+ 'path_type': PathType;
2052
+ 'motion_settings'?: MotionSettings;
2053
+ /**
2054
+ * Contains a free-form authoring annotation.
2055
+ */
2056
+ 'intent'?: string;
2057
+ /**
2058
+ * Contains string-valued annotations that are preserved on round-trip.
2059
+ */
2060
+ 'metadata'?: {
2061
+ [key: string]: string;
2062
+ };
2063
+ }
2064
+ declare const ExplicitPathMotionCommandTypeEnum: {
2065
+ readonly MotionCommand: "motion_command";
2066
+ };
2067
+ type ExplicitPathMotionCommandTypeEnum = typeof ExplicitPathMotionCommandTypeEnum[keyof typeof ExplicitPathMotionCommandTypeEnum];
1598
2068
  /**
1599
2069
  * A datapoint inside external joint stream.
1600
2070
  */
@@ -1614,6 +2084,11 @@ interface ExternalJointStreamRequest {
1614
2084
  interface FanucController {
1615
2085
  'kind': FanucControllerKindEnum;
1616
2086
  'controller_ip': string;
2087
+ 'network_interface'?: ControllerNetworkInterface;
2088
+ /**
2089
+ * Enable the FANUC Stream Motion interface. When enabled, the GCI server communicates with the controller via the Stream Motion interface.
2090
+ */
2091
+ 'stream_motion'?: boolean;
1617
2092
  }
1618
2093
  declare const FanucControllerKindEnum: {
1619
2094
  readonly FanucController: "FanucController";
@@ -1884,6 +2359,106 @@ interface ForwardKinematicsValidationError {
1884
2359
  };
1885
2360
  'data'?: ErrorInvalidJointCount;
1886
2361
  }
2362
+ /**
2363
+ * Defines a motion command whose path the planner generates from a generator specification.
2364
+ */
2365
+ interface GeneratedPathMotionCommand {
2366
+ /**
2367
+ * Identifies the motion command variant.
2368
+ */
2369
+ 'type': GeneratedPathMotionCommandTypeEnum;
2370
+ 'target': PoseRef;
2371
+ 'generator': MotionGenerator;
2372
+ 'motion_settings'?: MotionSettings;
2373
+ /**
2374
+ * Contains a free-form authoring annotation.
2375
+ */
2376
+ 'intent'?: string;
2377
+ /**
2378
+ * Contains string-valued annotations that are preserved on round-trip.
2379
+ */
2380
+ 'metadata'?: {
2381
+ [key: string]: string;
2382
+ };
2383
+ }
2384
+ declare const GeneratedPathMotionCommandTypeEnum: {
2385
+ readonly MotionCommand: "motion_command";
2386
+ };
2387
+ type GeneratedPathMotionCommandTypeEnum = typeof GeneratedPathMotionCommandTypeEnum[keyof typeof GeneratedPathMotionCommandTypeEnum];
2388
+ /**
2389
+ * Returns a teaching dataset resolved together with its persisted poses and command routines.
2390
+ */
2391
+ interface GetDatasetResponse {
2392
+ /**
2393
+ * Unique identifier of the dataset. Must start with a letter and may only contain letters, digits, and hyphens.
2394
+ */
2395
+ 'dataset': string;
2396
+ /**
2397
+ * Human-readable name for the dataset that is shown in the user interface. The slug is derived from this name on download.
2398
+ */
2399
+ 'name'?: string;
2400
+ /**
2401
+ * Revision number of the dataset. NOVA increments this on every change to the dataset.
2402
+ */
2403
+ 'revision': number;
2404
+ /**
2405
+ * Free-form text that describes the purpose of the dataset.
2406
+ */
2407
+ 'description'?: string;
2408
+ /**
2409
+ * Timestamp when the dataset was created, in RFC3339 format.
2410
+ */
2411
+ 'created_at': string;
2412
+ /**
2413
+ * Timestamp when the dataset was last updated, in RFC3339 format.
2414
+ */
2415
+ 'updated_at': string;
2416
+ /**
2417
+ * Contains the persisted poses that belong to this dataset.
2418
+ */
2419
+ 'poses': Array<DatasetPose>;
2420
+ /**
2421
+ * Contains the coordinate systems that belong to this dataset.
2422
+ */
2423
+ 'coordinate_systems': Array<DatasetCoordinateSystem>;
2424
+ /**
2425
+ * Contains the command routines that belong to this dataset.
2426
+ */
2427
+ 'command_routines': Array<CommandRoutine>;
2428
+ }
2429
+ interface GetKinematicConfiguration422Response {
2430
+ 'detail'?: Array<GetKinematicConfigurationValidationError>;
2431
+ }
2432
+ interface GetKinematicConfigurationRequest {
2433
+ /**
2434
+ * Identifies a single motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported types.
2435
+ */
2436
+ 'motion_group_model': string;
2437
+ /**
2438
+ * 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.
2439
+ */
2440
+ 'joint_positions': Array<Array<number>>;
2441
+ }
2442
+ interface GetKinematicConfigurationResponse {
2443
+ /**
2444
+ * List of kinematic configurations corresponding to the input joint positions.
2445
+ */
2446
+ 'kinematic_configurations': Array<KinematicConfiguration>;
2447
+ }
2448
+ interface GetKinematicConfigurationValidationError {
2449
+ 'loc': Array<ValidationErrorLocInner>;
2450
+ 'msg': string;
2451
+ 'type': string;
2452
+ 'input': {
2453
+ [key: string]: any;
2454
+ };
2455
+ 'data'?: GetKinematicConfigurationValidationErrorAllOfData;
2456
+ }
2457
+ /**
2458
+ * @type GetKinematicConfigurationValidationErrorAllOfData
2459
+ * Optional data further specifying the validation error.
2460
+ */
2461
+ type GetKinematicConfigurationValidationErrorAllOfData = ErrorInvalidJointCount | ErrorUnsupportedOperation;
1887
2462
  interface GetTrajectoryResponse {
1888
2463
  /**
1889
2464
  * Unique identifier of the motion group the trajectory is planned for.
@@ -1901,6 +2476,40 @@ interface GetTrajectoryResponse {
1901
2476
  interface HTTPValidationError {
1902
2477
  'detail'?: Array<ValidationError2>;
1903
2478
  }
2479
+ /**
2480
+ * Defines a conjunction of two or more I/O expressions.
2481
+ */
2482
+ interface IOAllOfExpression {
2483
+ /**
2484
+ * Identifies the conjunction-expression variant.
2485
+ */
2486
+ 'type': IOAllOfExpressionTypeEnum;
2487
+ /**
2488
+ * Contains the expressions that must all evaluate to `true`.
2489
+ */
2490
+ 'operands': Array<IOExpression>;
2491
+ }
2492
+ declare const IOAllOfExpressionTypeEnum: {
2493
+ readonly AllOf: "all_of";
2494
+ };
2495
+ type IOAllOfExpressionTypeEnum = typeof IOAllOfExpressionTypeEnum[keyof typeof IOAllOfExpressionTypeEnum];
2496
+ /**
2497
+ * Defines a disjunction of two or more I/O expressions.
2498
+ */
2499
+ interface IOAnyOfExpression {
2500
+ /**
2501
+ * Identifies the disjunction-expression variant.
2502
+ */
2503
+ 'type': IOAnyOfExpressionTypeEnum;
2504
+ /**
2505
+ * Contains the expressions of which at least one must evaluate to `true`.
2506
+ */
2507
+ 'operands': Array<IOExpression>;
2508
+ }
2509
+ declare const IOAnyOfExpressionTypeEnum: {
2510
+ readonly AnyOf: "any_of";
2511
+ };
2512
+ type IOAnyOfExpressionTypeEnum = typeof IOAnyOfExpressionTypeEnum[keyof typeof IOAnyOfExpressionTypeEnum];
1904
2513
  /**
1905
2514
  * Input/Output boolean value representation.
1906
2515
  */
@@ -1929,6 +2538,26 @@ type IOBoundary = {
1929
2538
  } & FloatValue | {
1930
2539
  value_type: 'integer';
1931
2540
  } & IntegerValue;
2541
+ /**
2542
+ * Defines one baseline-shaped I/O comparison in a boolean expression.
2543
+ */
2544
+ interface IOConditionExpression {
2545
+ /**
2546
+ * Identifies the condition-expression variant.
2547
+ */
2548
+ 'type': IOConditionExpressionTypeEnum;
2549
+ 'io': IOValue;
2550
+ 'comparator': Comparator;
2551
+ /**
2552
+ * Inverts this comparison when set to `true`.
2553
+ */
2554
+ 'negate'?: boolean;
2555
+ 'io_origin'?: IOOrigin;
2556
+ }
2557
+ declare const IOConditionExpressionTypeEnum: {
2558
+ readonly Condition: "condition";
2559
+ };
2560
+ type IOConditionExpressionTypeEnum = typeof IOConditionExpressionTypeEnum[keyof typeof IOConditionExpressionTypeEnum];
1932
2561
  interface IODescription {
1933
2562
  /**
1934
2563
  * Unique identifier of the input/output.
@@ -1956,6 +2585,19 @@ declare const IODirection: {
1956
2585
  readonly IoTypeOutput: "IO_TYPE_OUTPUT";
1957
2586
  };
1958
2587
  type IODirection = typeof IODirection[keyof typeof IODirection];
2588
+ /**
2589
+ * @type IOExpression
2590
+ * Defines a recursive boolean expression over baseline-shaped I/O comparisons.
2591
+ */
2592
+ type IOExpression = {
2593
+ type: 'all_of';
2594
+ } & IOAllOfExpression | {
2595
+ type: 'any_of';
2596
+ } & IOAnyOfExpression | {
2597
+ type: 'condition';
2598
+ } & IOConditionExpression | {
2599
+ type: 'not';
2600
+ } & IONotExpression;
1959
2601
  interface IOFloatValue {
1960
2602
  /**
1961
2603
  * Unique identifier of the input/output.
@@ -1986,6 +2628,20 @@ declare const IOIntegerValueValueTypeEnum: {
1986
2628
  readonly Integer: "integer";
1987
2629
  };
1988
2630
  type IOIntegerValueValueTypeEnum = typeof IOIntegerValueValueTypeEnum[keyof typeof IOIntegerValueValueTypeEnum];
2631
+ /**
2632
+ * Defines the negation of one I/O expression.
2633
+ */
2634
+ interface IONotExpression {
2635
+ /**
2636
+ * Identifies the negation-expression variant.
2637
+ */
2638
+ 'type': IONotExpressionTypeEnum;
2639
+ 'operand': IOExpression;
2640
+ }
2641
+ declare const IONotExpressionTypeEnum: {
2642
+ readonly Not: "not";
2643
+ };
2644
+ type IONotExpressionTypeEnum = typeof IONotExpressionTypeEnum[keyof typeof IONotExpressionTypeEnum];
1989
2645
  /**
1990
2646
  * States the source of the input/output signal.
1991
2647
  */
@@ -2066,6 +2722,41 @@ interface InertiaTensor {
2066
2722
  */
2067
2723
  'yz': number;
2068
2724
  }
2725
+ /**
2726
+ * Send this message to start executing action chunks on a motion group.
2727
+ */
2728
+ interface InitializeActionChunksRequest {
2729
+ /**
2730
+ * Type specifier for server, set automatically.
2731
+ */
2732
+ 'message_type': InitializeActionChunksRequestMessageTypeEnum;
2733
+ /**
2734
+ * Identifier of the motion group.
2735
+ */
2736
+ 'motion_group': string;
2737
+ /**
2738
+ * 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.
2739
+ */
2740
+ 'tcp'?: string;
2741
+ }
2742
+ declare const InitializeActionChunksRequestMessageTypeEnum: {
2743
+ readonly InitializeActionChunksRequest: "InitializeActionChunksRequest";
2744
+ };
2745
+ type InitializeActionChunksRequestMessageTypeEnum = typeof InitializeActionChunksRequestMessageTypeEnum[keyof typeof InitializeActionChunksRequestMessageTypeEnum];
2746
+ /**
2747
+ * Acknowledgment to an InitializeActionChunksRequest.
2748
+ */
2749
+ interface InitializeActionChunksResponse {
2750
+ /**
2751
+ * Error message in case of invalid InitializeActionChunksRequest.
2752
+ */
2753
+ 'message'?: string;
2754
+ 'kind': InitializeActionChunksResponseKindEnum;
2755
+ }
2756
+ declare const InitializeActionChunksResponseKindEnum: {
2757
+ readonly InitializeReceived: "INITIALIZE_RECEIVED";
2758
+ };
2759
+ type InitializeActionChunksResponseKindEnum = typeof InitializeActionChunksResponseKindEnum[keyof typeof InitializeActionChunksResponseKindEnum];
2069
2760
  /**
2070
2761
  * Send this message to start jogging a motion group.
2071
2762
  */
@@ -2150,6 +2841,35 @@ declare const InitializeMovementResponseKindEnum: {
2150
2841
  readonly InitializeReceived: "INITIALIZE_RECEIVED";
2151
2842
  };
2152
2843
  type InitializeMovementResponseKindEnum = typeof InitializeMovementResponseKindEnum[keyof typeof InitializeMovementResponseKindEnum];
2844
+ /**
2845
+ * Defines a configured pose inline with an optional tool-center-point override.
2846
+ */
2847
+ interface InlinePoseReference {
2848
+ 'pose': Pose;
2849
+ 'kinematic_configuration'?: KinematicConfiguration;
2850
+ /**
2851
+ * Unique identifier of a coordinate system.
2852
+ */
2853
+ 'coordinate_system'?: string;
2854
+ /**
2855
+ * Identifies the inline pose-reference variant.
2856
+ */
2857
+ 'type': InlinePoseReferenceTypeEnum;
2858
+ /**
2859
+ * Specifies the tool-center-point identifier for this target.
2860
+ */
2861
+ 'tcp'?: string;
2862
+ /**
2863
+ * Contains string-valued annotations that are preserved on round-trip.
2864
+ */
2865
+ 'metadata'?: {
2866
+ [key: string]: string;
2867
+ };
2868
+ }
2869
+ declare const InlinePoseReferenceTypeEnum: {
2870
+ readonly InlinePose: "inline_pose";
2871
+ };
2872
+ type InlinePoseReferenceTypeEnum = typeof InlinePoseReferenceTypeEnum[keyof typeof InlinePoseReferenceTypeEnum];
2153
2873
  /**
2154
2874
  * Value of an input/output with integer representation. > The integral value is transmitted as a string to avoid precision loss during conversion to JSON. > Recommended: Use int64 in your implementation. If you want to interact with int64 in numbers, > JS bigint libraries can help you to parse the string into an integral value.
2155
2875
  */
@@ -2336,13 +3056,25 @@ declare const JointLimitExceededErrorKindEnum: {
2336
3056
  };
2337
3057
  type JointLimitExceededErrorKindEnum = typeof JointLimitExceededErrorKindEnum[keyof typeof JointLimitExceededErrorKindEnum];
2338
3058
  interface JointLimits {
3059
+ /**
3060
+ * Joint position limits in rad.
3061
+ */
2339
3062
  'position'?: LimitRange;
3063
+ /**
3064
+ * Joint velocity limit in rad/s.
3065
+ */
2340
3066
  'velocity'?: number;
3067
+ /**
3068
+ * Joint acceleration limit in rad/s².
3069
+ */
2341
3070
  'acceleration'?: number;
2342
3071
  /**
2343
- * > **NOTE** > > This limit type is experimental and its behavior may change in future releases.
3072
+ * Joint jerk limit in rad/s³. > **NOTE** > > This limit type is experimental and its behavior may change in future releases.
2344
3073
  */
2345
3074
  'jerk'?: number;
3075
+ /**
3076
+ * Joint torque limit in Nm.
3077
+ */
2346
3078
  'torque'?: number;
2347
3079
  }
2348
3080
  interface JointPTPMotion {
@@ -2350,6 +3082,26 @@ interface JointPTPMotion {
2350
3082
  'target_joint_position': Array<number>;
2351
3083
  'limits_override'?: LimitsOverride;
2352
3084
  }
3085
+ /**
3086
+ * Defines a motion target as a joint configuration in radians.
3087
+ */
3088
+ interface JointPositionReference {
3089
+ /**
3090
+ * Identifies the joint-position reference variant.
3091
+ */
3092
+ 'type': JointPositionReferenceTypeEnum;
3093
+ 'joints': Array<number>;
3094
+ /**
3095
+ * Contains string-valued annotations that are preserved on round-trip.
3096
+ */
3097
+ 'metadata'?: {
3098
+ [key: string]: string;
3099
+ };
3100
+ }
3101
+ declare const JointPositionReferenceTypeEnum: {
3102
+ readonly JointPosition: "joint_position";
3103
+ };
3104
+ type JointPositionReferenceTypeEnum = typeof JointPositionReferenceTypeEnum[keyof typeof JointPositionReferenceTypeEnum];
2353
3105
  interface JointTrajectory {
2354
3106
  /**
2355
3107
  * List of joint positions for each sample. The number of samples must match the number of timestamps provided in the times field. The unit depends on the type of joint: For revolute joints, the angle is given in [rad]; for prismatic joints, the displacement is given in [mm].
@@ -2398,49 +3150,22 @@ declare const JointVelocityResponseKindEnum: {
2398
3150
  };
2399
3151
  type JointVelocityResponseKindEnum = typeof JointVelocityResponseKindEnum[keyof typeof JointVelocityResponseKindEnum];
2400
3152
  /**
2401
- * A waypoint in joint space for jogging. > **NOTE** > > This type is experimental and its behavior may change in future releases.
3153
+ * A joint waypoint for action chunk streaming. > **NOTE** > > This type is experimental and its behavior may change in future releases.
2402
3154
  */
2403
3155
  interface JointWaypoint {
2404
3156
  /**
2405
- * Time since session start for when this waypoint should be reached [ms].
3157
+ * Type specifier for server, set automatically.
2406
3158
  */
2407
- 'timestamp': number;
3159
+ 'kind': JointWaypointKindEnum;
2408
3160
  /**
2409
3161
  * This structure describes a set of joint values, e.g., positions, currents, torques, of a motion group. Float precision is the default.
2410
3162
  */
2411
3163
  'joints': Array<number>;
2412
3164
  }
2413
- /**
2414
- * 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.
2415
- */
2416
- interface JointWaypointsRequest {
2417
- /**
2418
- * Type specifier for server, set automatically.
2419
- */
2420
- 'message_type': JointWaypointsRequestMessageTypeEnum;
2421
- /**
2422
- * List of joint waypoints.
2423
- */
2424
- 'waypoints': Array<JointWaypoint>;
2425
- }
2426
- declare const JointWaypointsRequestMessageTypeEnum: {
2427
- readonly JointWaypointsRequest: "JointWaypointsRequest";
2428
- };
2429
- type JointWaypointsRequestMessageTypeEnum = typeof JointWaypointsRequestMessageTypeEnum[keyof typeof JointWaypointsRequestMessageTypeEnum];
2430
- /**
2431
- * Acknowledgment to a JointWaypointsRequest.
2432
- */
2433
- interface JointWaypointsResponse {
2434
- /**
2435
- * Error message in case of invalid JointWaypointsRequest.
2436
- */
2437
- 'message'?: string;
2438
- 'kind': JointWaypointsResponseKindEnum;
2439
- }
2440
- declare const JointWaypointsResponseKindEnum: {
2441
- readonly JointWaypointsReceived: "JOINT_WAYPOINTS_RECEIVED";
3165
+ declare const JointWaypointKindEnum: {
3166
+ readonly Joints: "JOINTS";
2442
3167
  };
2443
- type JointWaypointsResponseKindEnum = typeof JointWaypointsResponseKindEnum[keyof typeof JointWaypointsResponseKindEnum];
3168
+ type JointWaypointKindEnum = typeof JointWaypointKindEnum[keyof typeof JointWaypointKindEnum];
2444
3169
  /**
2445
3170
  * 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.
2446
3171
  */
@@ -2502,6 +3227,10 @@ interface KukaConfiguredPose {
2502
3227
  interface KukaController {
2503
3228
  'kind': KukaControllerKindEnum;
2504
3229
  'controller_ip': string;
3230
+ /**
3231
+ * The addresses must be ordered as KLI first and RSI second.
3232
+ */
3233
+ 'network_interface'?: ControllerNetworkInterface;
2505
3234
  'controller_port': number;
2506
3235
  'rsi_server': KukaControllerRsiServer;
2507
3236
  /**
@@ -2622,7 +3351,13 @@ type LicenseStatusEnum = typeof LicenseStatusEnum[keyof typeof LicenseStatusEnum
2622
3351
  * The upper_limit must be greater then the lower_limit.
2623
3352
  */
2624
3353
  interface LimitRange {
3354
+ /**
3355
+ * Lower position limit in rad.
3356
+ */
2625
3357
  'lower_limit'?: number;
3358
+ /**
3359
+ * Upper position limit in rad.
3360
+ */
2626
3361
  'upper_limit'?: number;
2627
3362
  }
2628
3363
  interface LimitSet {
@@ -2707,15 +3442,75 @@ interface ListTrajectoriesResponse {
2707
3442
  */
2708
3443
  'trajectories'?: Array<string>;
2709
3444
  }
3445
+ /**
3446
+ * References a pose from the enclosing dataset.
3447
+ */
3448
+ interface LocalPoseReference {
3449
+ /**
3450
+ * Identifies the local pose reference variant.
3451
+ */
3452
+ 'type': LocalPoseReferenceTypeEnum;
3453
+ /**
3454
+ * Specifies the referenced pose identifier within the enclosing dataset.
3455
+ */
3456
+ 'pose_id': string;
3457
+ /**
3458
+ * Contains string-valued annotations that are preserved on round-trip.
3459
+ */
3460
+ 'metadata'?: {
3461
+ [key: string]: string;
3462
+ };
3463
+ }
3464
+ declare const LocalPoseReferenceTypeEnum: {
3465
+ readonly LocalPose: "local_pose";
3466
+ };
3467
+ type LocalPoseReferenceTypeEnum = typeof LocalPoseReferenceTypeEnum[keyof typeof LocalPoseReferenceTypeEnum];
2710
3468
  declare const Manufacturer: {
2711
3469
  readonly Abb: "abb";
3470
+ readonly Bostondynamics: "bostondynamics";
2712
3471
  readonly Fanuc: "fanuc";
2713
3472
  readonly Kuka: "kuka";
2714
3473
  readonly Staubli: "staubli";
3474
+ readonly Techman: "techman";
3475
+ readonly Unitree: "unitree";
2715
3476
  readonly Universalrobots: "universalrobots";
2716
3477
  readonly Yaskawa: "yaskawa";
2717
3478
  };
2718
3479
  type Manufacturer = typeof Manufacturer[keyof typeof Manufacturer];
3480
+ /**
3481
+ * Emits a named point of interest when execution crosses a trajectory location.
3482
+ */
3483
+ interface MarkerCommand {
3484
+ /**
3485
+ * Identifies the marker command variant.
3486
+ */
3487
+ 'type': MarkerCommandTypeEnum;
3488
+ /**
3489
+ * Specifies the marker name.
3490
+ */
3491
+ 'name': string;
3492
+ /**
3493
+ * Contains arbitrary structured data emitted with the marker.
3494
+ */
3495
+ 'payload'?: {
3496
+ [key: string]: any;
3497
+ };
3498
+ 'at'?: AtTrigger;
3499
+ /**
3500
+ * Contains a free-form authoring annotation.
3501
+ */
3502
+ 'intent'?: string;
3503
+ /**
3504
+ * Contains string-valued annotations that are preserved on round-trip.
3505
+ */
3506
+ 'metadata'?: {
3507
+ [key: string]: string;
3508
+ };
3509
+ }
3510
+ declare const MarkerCommandTypeEnum: {
3511
+ readonly Marker: "marker";
3512
+ };
3513
+ type MarkerCommandTypeEnum = typeof MarkerCommandTypeEnum[keyof typeof MarkerCommandTypeEnum];
2719
3514
  interface MergeTrajectories422Response {
2720
3515
  'detail'?: Array<MergeTrajectoriesValidationError>;
2721
3516
  }
@@ -2760,7 +3555,7 @@ interface MergeTrajectoriesSegment {
2760
3555
  */
2761
3556
  'trajectory': JointTrajectory;
2762
3557
  /**
2763
- * Limits override is used to override the global limits of the motion group for the blending at the end of this segment.
3558
+ * 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.
2764
3559
  */
2765
3560
  'limits_override'?: LimitsOverride;
2766
3561
  /**
@@ -2881,7 +3676,7 @@ interface ModelError {
2881
3676
  interface MotionCommand {
2882
3677
  'blending'?: MotionCommandBlending;
2883
3678
  /**
2884
- * Limits override is used to override the global limits of the motion group for this segment of the motion.
3679
+ * 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.
2885
3680
  */
2886
3681
  'limits_override'?: LimitsOverride;
2887
3682
  'path': MotionCommandPath;
@@ -2895,6 +3690,34 @@ type MotionCommandBlending = BlendingAuto | BlendingPosition;
2895
3690
  * @type MotionCommandPath
2896
3691
  */
2897
3692
  type MotionCommandPath = PathCartesianPTP | PathCircle | PathCubicSpline | PathDirectionConstrainedCartesianPTP | PathDirectionConstrainedJointPTP | PathJointPTP | PathLine;
3693
+ /**
3694
+ * Defines a planner-generated path to a motion target.
3695
+ */
3696
+ interface MotionGenerator {
3697
+ 'algorithm': CollisionFreeAlgorithm;
3698
+ 'constraint'?: DirectionConstraint;
3699
+ }
3700
+ /**
3701
+ * Response for motion group configuration lookup.
3702
+ */
3703
+ interface MotionGroupConfiguration {
3704
+ /**
3705
+ * Name of the robot configuration containing this motion group.
3706
+ */
3707
+ 'robot_configuration': string;
3708
+ /**
3709
+ * Identifies a single motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported types.
3710
+ */
3711
+ 'motion_group_model': string;
3712
+ /**
3713
+ * Internal UID of the motion group inside the GCI transcript.
3714
+ */
3715
+ 'motion_group_uid': number;
3716
+ /**
3717
+ * Full GCI transcript (JSON) containing the robot configuration and motion group.
3718
+ */
3719
+ 'content': string;
3720
+ }
2898
3721
  /**
2899
3722
  * 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].
2900
3723
  */
@@ -2971,7 +3794,7 @@ interface MotionGroupFromJson {
2971
3794
  */
2972
3795
  'motion_group': string;
2973
3796
  /**
2974
- * Full JSON configuration of the virtual robot controller. This can be obtained from the physical controller\'s configuration via [getVirtualControllerConfiguration](#/operations/getVirtualControllerConfiguration).
3797
+ * JSON configuration of the virtual robot controller, can be obtained from the physical controller\'s configuration via [getVirtualControllerConfiguration](#/operations/getVirtualControllerConfiguration).
2975
3798
  */
2976
3799
  'json_data': string;
2977
3800
  /**
@@ -2979,7 +3802,7 @@ interface MotionGroupFromJson {
2979
3802
  */
2980
3803
  'extracted_motion_group_id': string;
2981
3804
  /**
2982
- * 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.
3805
+ * 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.
2983
3806
  */
2984
3807
  'initial_joint_position'?: string;
2985
3808
  }
@@ -2993,7 +3816,7 @@ interface MotionGroupFromType {
2993
3816
  */
2994
3817
  'motion_group_model': string;
2995
3818
  /**
2996
- * 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.
3819
+ * 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.
2997
3820
  */
2998
3821
  'initial_joint_position'?: string;
2999
3822
  }
@@ -3032,6 +3855,19 @@ interface MotionGroupJoints {
3032
3855
  */
3033
3856
  'torques'?: Array<number>;
3034
3857
  }
3858
+ /**
3859
+ * Entry for a motion group with its name and readable name.
3860
+ */
3861
+ interface MotionGroupModelCatalog {
3862
+ /**
3863
+ * Name of the motion group.
3864
+ */
3865
+ 'motion_group_name': string;
3866
+ /**
3867
+ * Readable name for the motion group.
3868
+ */
3869
+ 'readable_name': string;
3870
+ }
3035
3871
  /**
3036
3872
  * Metadata about a motion group model.
3037
3873
  */
@@ -3050,6 +3886,23 @@ interface MotionGroupModelDescription {
3050
3886
  */
3051
3887
  'is_custom': boolean;
3052
3888
  }
3889
+ /**
3890
+ * References the motion group that executes a command routine.
3891
+ */
3892
+ interface MotionGroupReference {
3893
+ /**
3894
+ * Identifies the motion group reference variant.
3895
+ */
3896
+ 'type': MotionGroupReferenceTypeEnum;
3897
+ /**
3898
+ * Specifies the motion group identifier.
3899
+ */
3900
+ 'id': string;
3901
+ }
3902
+ declare const MotionGroupReferenceTypeEnum: {
3903
+ readonly Id: "id";
3904
+ };
3905
+ type MotionGroupReferenceTypeEnum = typeof MotionGroupReferenceTypeEnum[keyof typeof MotionGroupReferenceTypeEnum];
3053
3906
  interface MotionGroupSetup {
3054
3907
  /**
3055
3908
  * Identifies a single motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported types.
@@ -3110,17 +3963,25 @@ interface MotionGroupState {
3110
3963
  */
3111
3964
  'joint_current'?: Array<number>;
3112
3965
  /**
3113
- * 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.
3966
+ * 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.
3114
3967
  */
3115
3968
  'flange_pose'?: Pose;
3969
+ /**
3970
+ * Cartesian velocity of the flange. The velocity is relative to the response coordinate system specified in the request.
3971
+ */
3972
+ 'flange_velocity'?: CartesianVelocity;
3116
3973
  /**
3117
3974
  * Unique identifier addressing the active TCP. Might not be returned for positioners as some do not support TCPs, depending on the model.
3118
3975
  */
3119
3976
  'tcp'?: string;
3120
3977
  /**
3121
- * 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.
3978
+ * 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.
3122
3979
  */
3123
3980
  'tcp_pose'?: Pose;
3981
+ /**
3982
+ * Cartesian velocity of the TCP selected on the robot control panel. The velocity is relative to the response coordinate system specified in the request.
3983
+ */
3984
+ 'tcp_velocity'?: CartesianVelocity;
3124
3985
  /**
3125
3986
  * 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.
3126
3987
  */
@@ -3151,6 +4012,13 @@ interface MotionGroupStateJointLimitReached {
3151
4012
  */
3152
4013
  'limit_reached': Array<boolean>;
3153
4014
  }
4015
+ /**
4016
+ * Groups inheritable baseline blending and motion limit settings.
4017
+ */
4018
+ interface MotionSettings {
4019
+ 'blending'?: Blending | null;
4020
+ 'limits_override'?: LimitsOverride | null;
4021
+ }
3154
4022
  /**
3155
4023
  * Error message in case an error occurs during movement execution.
3156
4024
  */
@@ -3286,55 +4154,61 @@ interface NanValueErrorNanValue {
3286
4154
  */
3287
4155
  'joint_position'?: Array<number>;
3288
4156
  }
4157
+ /**
4158
+ * Network attachment method used to expose the interface to workloads.
4159
+ */
4160
+ declare const NetworkBackend: {
4161
+ readonly Macvlan: "macvlan";
4162
+ readonly Sriov: "sriov";
4163
+ };
4164
+ type NetworkBackend = typeof NetworkBackend[keyof typeof NetworkBackend];
3289
4165
  interface NetworkDevice {
3290
4166
  /**
3291
- * The IPv4 address assigned to the network device.
4167
+ * IPv4 address of the discovered device.
3292
4168
  */
3293
4169
  'ip': string;
3294
4170
  /**
3295
- * The MAC address of the network device.
4171
+ * MAC address of the discovered device.
3296
4172
  */
3297
4173
  'mac': string;
3298
4174
  /**
3299
- * The vendor of the network device.
4175
+ * Hardware manufacturer name derived from the MAC address, omitted when unknown.
3300
4176
  */
3301
4177
  'vendor'?: string;
3302
4178
  }
3303
4179
  interface NetworkInterface {
3304
4180
  /**
3305
- * The name of the network interface.
4181
+ * Host network interface name, e.g., enp0s31f6.
3306
4182
  */
3307
4183
  'name': string;
3308
4184
  /**
3309
- * The IPv4 address assigned to the network interface.
4185
+ * Stable identifier for this interface. Pass it as the `interface` field in ARP scan request, e.g., wandelbox-abc123-enp3s0.
3310
4186
  */
3311
- 'ip': string;
4187
+ 'interface': string;
3312
4188
  /**
3313
- * The MAC address of the network interface.
4189
+ * Hostname that exposes this interface.
3314
4190
  */
3315
- 'mac': string;
4191
+ 'node': string;
4192
+ 'backend': NetworkBackend;
4193
+ 'link': NetworkLinkState;
3316
4194
  /**
3317
- * The CIDR notation of the network interface. Example: \"192.168.1.0/24\"
4195
+ * IP/CIDR addresses currently assigned to the interface. Omitted when not available.
3318
4196
  */
3319
- 'cidr': string;
4197
+ 'addresses'?: Array<string>;
3320
4198
  }
4199
+ /**
4200
+ * Link state of the physical interface.
4201
+ */
4202
+ declare const NetworkLinkState: {
4203
+ readonly Up: "up";
4204
+ readonly Down: "down";
4205
+ };
4206
+ type NetworkLinkState = typeof NetworkLinkState[keyof typeof NetworkLinkState];
3321
4207
  interface NetworkState {
3322
4208
  /**
3323
4209
  * Indicates whether the system is connected to the internet.
3324
4210
  */
3325
4211
  'internet_connected': boolean;
3326
- /**
3327
- * Type of the active network link (e.g., ethernet, wifi, cellular, vpn, unknown).
3328
- */
3329
- 'connection_type'?: NetworkStateConnectionTypeEnum;
3330
- /**
3331
- * Received signal strength in dBm for wireless interfaces; negative values indicate weaker signals.
3332
- */
3333
- 'signal_strength'?: number;
3334
- /**
3335
- * Normalized link quality metric from 0 (poor) to 1 (excellent) when provided by the interface.
3336
- */
3337
- 'link_quality'?: number;
3338
4212
  /**
3339
4213
  * Round-trip latency to the probe endpoint measured in milliseconds.
3340
4214
  */
@@ -3344,14 +4218,6 @@ interface NetworkState {
3344
4218
  */
3345
4219
  'bandwidth_mbps'?: number;
3346
4220
  }
3347
- declare const NetworkStateConnectionTypeEnum: {
3348
- readonly Ethernet: "ethernet";
3349
- readonly Wifi: "wifi";
3350
- readonly Cellular: "cellular";
3351
- readonly Vpn: "vpn";
3352
- readonly Unknown: "unknown";
3353
- };
3354
- type NetworkStateConnectionTypeEnum = typeof NetworkStateConnectionTypeEnum[keyof typeof NetworkStateConnectionTypeEnum];
3355
4221
  /**
3356
4222
  * Controllers have two operating modes: AUTOMATIC and MANUAL. MANUAL mode is mainly used for teaching a robot application. To ensure safe operation the velocity of the robot is limited to 250 mm/s. Running the finished application is done in AUTOMATIC operating mode without the limited velocity of the MANUAL mode.
3357
4223
  */
@@ -3479,32 +4345,196 @@ interface PathDirectionConstrainedJointPTP {
3479
4345
  'constraint': DirectionConstraint;
3480
4346
  'path_definition_name': PathDirectionConstrainedJointPTPPathDefinitionNameEnum;
3481
4347
  }
3482
- declare const PathDirectionConstrainedJointPTPPathDefinitionNameEnum: {
3483
- readonly DirectionConstrainedJointPtp: "DirectionConstrainedJointPTP";
4348
+ declare const PathDirectionConstrainedJointPTPPathDefinitionNameEnum: {
4349
+ readonly DirectionConstrainedJointPtp: "DirectionConstrainedJointPTP";
4350
+ };
4351
+ type PathDirectionConstrainedJointPTPPathDefinitionNameEnum = typeof PathDirectionConstrainedJointPTPPathDefinitionNameEnum[keyof typeof PathDirectionConstrainedJointPTPPathDefinitionNameEnum];
4352
+ /**
4353
+ * Positions an overlay command at a fraction of the anchor motion segment.
4354
+ */
4355
+ interface PathFractionTrigger {
4356
+ /**
4357
+ * Identifies the path-fraction trigger variant.
4358
+ */
4359
+ 'type': PathFractionTriggerTypeEnum;
4360
+ /**
4361
+ * Specifies the fraction of the anchor motion segment in the half-open range from `zero` to `one`.
4362
+ */
4363
+ 'value': number;
4364
+ }
4365
+ declare const PathFractionTriggerTypeEnum: {
4366
+ readonly PathFraction: "path_fraction";
4367
+ };
4368
+ type PathFractionTriggerTypeEnum = typeof PathFractionTriggerTypeEnum[keyof typeof PathFractionTriggerTypeEnum];
4369
+ /**
4370
+ * A joint point-to-point represents a line in joint space. All joints will be moved synchronously.
4371
+ */
4372
+ interface PathJointPTP {
4373
+ 'target_joint_position': Array<number>;
4374
+ 'path_definition_name': PathJointPTPPathDefinitionNameEnum;
4375
+ }
4376
+ declare const PathJointPTPPathDefinitionNameEnum: {
4377
+ readonly PathJointPtp: "PathJointPTP";
4378
+ };
4379
+ type PathJointPTPPathDefinitionNameEnum = typeof PathJointPTPPathDefinitionNameEnum[keyof typeof PathJointPTPPathDefinitionNameEnum];
4380
+ /**
4381
+ * A line represents a straight line from start position to indicated target position. The orientation is calculated via a quaternion [slerp](https://en.wikipedia.org/wiki/Slerp) from start orientation to indicated target orientation.
4382
+ */
4383
+ interface PathLine {
4384
+ 'target_pose': Pose;
4385
+ 'path_definition_name': PathLinePathDefinitionNameEnum;
4386
+ }
4387
+ declare const PathLinePathDefinitionNameEnum: {
4388
+ readonly PathLine: "PathLine";
4389
+ };
4390
+ type PathLinePathDefinitionNameEnum = typeof PathLinePathDefinitionNameEnum[keyof typeof PathLinePathDefinitionNameEnum];
4391
+ /**
4392
+ * @type PathType
4393
+ * Defines the baseline path kind and path-specific parameters without an embedded target.
4394
+ */
4395
+ type PathType = {
4396
+ path_definition_name: 'PathCartesianPTP';
4397
+ } & PathTypeCartesianPTP | {
4398
+ path_definition_name: 'PathCircle';
4399
+ } & PathTypeCircle | {
4400
+ path_definition_name: 'PathCubicSpline';
4401
+ } & PathTypeCubicSpline | {
4402
+ path_definition_name: 'PathDirectionConstrainedCartesianPTP';
4403
+ } & PathTypeDirectionConstrainedCartesianPTP | {
4404
+ path_definition_name: 'PathDirectionConstrainedJointPTP';
4405
+ } & PathTypeDirectionConstrainedJointPTP | {
4406
+ path_definition_name: 'PathJointPTP';
4407
+ } & PathTypeJointPTP | {
4408
+ path_definition_name: 'PathLine';
4409
+ } & PathTypeLine;
4410
+ /**
4411
+ * Defines a Cartesian point-to-point path after lifting the target into the motion command. The kinematic configuration is not repeated here because the lifted target resolves to a configured pose that already carries it.
4412
+ */
4413
+ interface PathTypeCartesianPTP {
4414
+ /**
4415
+ * Identifies the Cartesian point-to-point path variant.
4416
+ */
4417
+ 'path_definition_name': PathTypeCartesianPTPPathDefinitionNameEnum;
4418
+ }
4419
+ declare const PathTypeCartesianPTPPathDefinitionNameEnum: {
4420
+ readonly PathCartesianPtp: "PathCartesianPTP";
4421
+ };
4422
+ type PathTypeCartesianPTPPathDefinitionNameEnum = typeof PathTypeCartesianPTPPathDefinitionNameEnum[keyof typeof PathTypeCartesianPTPPathDefinitionNameEnum];
4423
+ /**
4424
+ * Defines a circular Cartesian path after lifting the target into the motion command.
4425
+ */
4426
+ interface PathTypeCircle {
4427
+ /**
4428
+ * Identifies the circular Cartesian path variant.
4429
+ */
4430
+ 'path_definition_name': PathTypeCirclePathDefinitionNameEnum;
4431
+ /**
4432
+ * References the intermediate pose that shapes the circular path.
4433
+ */
4434
+ 'via_pose': PoseRef;
4435
+ }
4436
+ declare const PathTypeCirclePathDefinitionNameEnum: {
4437
+ readonly PathCircle: "PathCircle";
4438
+ };
4439
+ type PathTypeCirclePathDefinitionNameEnum = typeof PathTypeCirclePathDefinitionNameEnum[keyof typeof PathTypeCirclePathDefinitionNameEnum];
4440
+ /**
4441
+ * Defines a cubic-spline Cartesian path after lifting the target into the motion command.
4442
+ */
4443
+ interface PathTypeCubicSpline {
4444
+ /**
4445
+ * Identifies the cubic-spline Cartesian path variant.
4446
+ */
4447
+ 'path_definition_name': PathTypeCubicSplinePathDefinitionNameEnum;
4448
+ /**
4449
+ * Specifies the intermediate points of the spline.
4450
+ */
4451
+ 'via_points': Array<CubicSplineViaPoint>;
4452
+ }
4453
+ declare const PathTypeCubicSplinePathDefinitionNameEnum: {
4454
+ readonly PathCubicSpline: "PathCubicSpline";
4455
+ };
4456
+ type PathTypeCubicSplinePathDefinitionNameEnum = typeof PathTypeCubicSplinePathDefinitionNameEnum[keyof typeof PathTypeCubicSplinePathDefinitionNameEnum];
4457
+ /**
4458
+ * Defines a direction-constrained Cartesian path after lifting the target into the motion command.
4459
+ */
4460
+ interface PathTypeDirectionConstrainedCartesianPTP {
4461
+ /**
4462
+ * Identifies the direction-constrained Cartesian path variant.
4463
+ */
4464
+ 'path_definition_name': PathTypeDirectionConstrainedCartesianPTPPathDefinitionNameEnum;
4465
+ 'constraint': DirectionConstraint;
4466
+ }
4467
+ declare const PathTypeDirectionConstrainedCartesianPTPPathDefinitionNameEnum: {
4468
+ readonly PathDirectionConstrainedCartesianPtp: "PathDirectionConstrainedCartesianPTP";
4469
+ };
4470
+ type PathTypeDirectionConstrainedCartesianPTPPathDefinitionNameEnum = typeof PathTypeDirectionConstrainedCartesianPTPPathDefinitionNameEnum[keyof typeof PathTypeDirectionConstrainedCartesianPTPPathDefinitionNameEnum];
4471
+ /**
4472
+ * Defines a direction-constrained joint-space path after lifting the target into the motion command.
4473
+ */
4474
+ interface PathTypeDirectionConstrainedJointPTP {
4475
+ /**
4476
+ * Identifies the direction-constrained joint-space path variant.
4477
+ */
4478
+ 'path_definition_name': PathTypeDirectionConstrainedJointPTPPathDefinitionNameEnum;
4479
+ 'constraint': DirectionConstraint;
4480
+ }
4481
+ declare const PathTypeDirectionConstrainedJointPTPPathDefinitionNameEnum: {
4482
+ readonly PathDirectionConstrainedJointPtp: "PathDirectionConstrainedJointPTP";
4483
+ };
4484
+ type PathTypeDirectionConstrainedJointPTPPathDefinitionNameEnum = typeof PathTypeDirectionConstrainedJointPTPPathDefinitionNameEnum[keyof typeof PathTypeDirectionConstrainedJointPTPPathDefinitionNameEnum];
4485
+ /**
4486
+ * Defines a joint-space point-to-point path after lifting the target into the motion command.
4487
+ */
4488
+ interface PathTypeJointPTP {
4489
+ /**
4490
+ * Identifies the joint-space point-to-point path variant.
4491
+ */
4492
+ 'path_definition_name': PathTypeJointPTPPathDefinitionNameEnum;
4493
+ }
4494
+ declare const PathTypeJointPTPPathDefinitionNameEnum: {
4495
+ readonly PathJointPtp: "PathJointPTP";
4496
+ };
4497
+ type PathTypeJointPTPPathDefinitionNameEnum = typeof PathTypeJointPTPPathDefinitionNameEnum[keyof typeof PathTypeJointPTPPathDefinitionNameEnum];
4498
+ /**
4499
+ * Defines a straight Cartesian path after lifting the target into the motion command.
4500
+ */
4501
+ interface PathTypeLine {
4502
+ /**
4503
+ * Identifies the straight Cartesian path variant.
4504
+ */
4505
+ 'path_definition_name': PathTypeLinePathDefinitionNameEnum;
4506
+ }
4507
+ declare const PathTypeLinePathDefinitionNameEnum: {
4508
+ readonly PathLine: "PathLine";
3484
4509
  };
3485
- type PathDirectionConstrainedJointPTPPathDefinitionNameEnum = typeof PathDirectionConstrainedJointPTPPathDefinitionNameEnum[keyof typeof PathDirectionConstrainedJointPTPPathDefinitionNameEnum];
4510
+ type PathTypeLinePathDefinitionNameEnum = typeof PathTypeLinePathDefinitionNameEnum[keyof typeof PathTypeLinePathDefinitionNameEnum];
3486
4511
  /**
3487
- * A joint point-to-point represents a line in joint space. All joints will be moved synchronously.
4512
+ * Request to pause executing action chunks. If successful, `execute` jogging state in [MotionGroupState](MotionGroupState.yaml) is set to `PAUSED_BY_USER`.
3488
4513
  */
3489
- interface PathJointPTP {
3490
- 'target_joint_position': Array<number>;
3491
- 'path_definition_name': PathJointPTPPathDefinitionNameEnum;
4514
+ interface PauseActionChunksRequest {
4515
+ /**
4516
+ * Type specifier for server, set automatically.
4517
+ */
4518
+ 'message_type': PauseActionChunksRequestMessageTypeEnum;
3492
4519
  }
3493
- declare const PathJointPTPPathDefinitionNameEnum: {
3494
- readonly PathJointPtp: "PathJointPTP";
4520
+ declare const PauseActionChunksRequestMessageTypeEnum: {
4521
+ readonly PauseActionChunksRequest: "PauseActionChunksRequest";
3495
4522
  };
3496
- type PathJointPTPPathDefinitionNameEnum = typeof PathJointPTPPathDefinitionNameEnum[keyof typeof PathJointPTPPathDefinitionNameEnum];
4523
+ type PauseActionChunksRequestMessageTypeEnum = typeof PauseActionChunksRequestMessageTypeEnum[keyof typeof PauseActionChunksRequestMessageTypeEnum];
3497
4524
  /**
3498
- * A line represents a straight line from start position to indicated target position. The orientation is calculated via a quaternion [slerp](https://en.wikipedia.org/wiki/Slerp) from start orientation to indicated target orientation.
4525
+ * Acknowledgment to a PauseActionChunksRequest.
3499
4526
  */
3500
- interface PathLine {
3501
- 'target_pose': Pose;
3502
- 'path_definition_name': PathLinePathDefinitionNameEnum;
4527
+ interface PauseActionChunksResponse {
4528
+ /**
4529
+ * Error message in case of invalid PauseActionChunksRequest.
4530
+ */
4531
+ 'message'?: string;
4532
+ 'kind': PauseActionChunksResponseKindEnum;
3503
4533
  }
3504
- declare const PathLinePathDefinitionNameEnum: {
3505
- readonly PathLine: "PathLine";
4534
+ declare const PauseActionChunksResponseKindEnum: {
4535
+ readonly PauseReceived: "PAUSE_RECEIVED";
3506
4536
  };
3507
- type PathLinePathDefinitionNameEnum = typeof PathLinePathDefinitionNameEnum[keyof typeof PathLinePathDefinitionNameEnum];
4537
+ type PauseActionChunksResponseKindEnum = typeof PauseActionChunksResponseKindEnum[keyof typeof PauseActionChunksResponseKindEnum];
3508
4538
  /**
3509
4539
  * Request to pause jogging. If successful, `execute` jogging state in [MotionGroupState](MotionGroupState.yaml) is set to `PAUSED_BY_USER`.
3510
4540
  */
@@ -3570,6 +4600,31 @@ interface PauseOnIO {
3570
4600
  'comparator': Comparator;
3571
4601
  'io_origin': IOOrigin;
3572
4602
  }
4603
+ /**
4604
+ * Monitors an I/O expression from a trajectory location and pauses while it is `true`.
4605
+ */
4606
+ interface PauseOnIOCommand {
4607
+ /**
4608
+ * Identifies the conditionally pausing command variant.
4609
+ */
4610
+ 'type': PauseOnIOCommandTypeEnum;
4611
+ 'condition': IOExpression;
4612
+ 'at'?: AtTrigger;
4613
+ /**
4614
+ * Contains a free-form authoring annotation.
4615
+ */
4616
+ 'intent'?: string;
4617
+ /**
4618
+ * Contains string-valued annotations that are preserved on round-trip.
4619
+ */
4620
+ 'metadata'?: {
4621
+ [key: string]: string;
4622
+ };
4623
+ }
4624
+ declare const PauseOnIOCommandTypeEnum: {
4625
+ readonly PauseOnIo: "pause_on_io";
4626
+ };
4627
+ type PauseOnIOCommandTypeEnum = typeof PauseOnIOCommandTypeEnum[keyof typeof PauseOnIOCommandTypeEnum];
3573
4628
  interface Payload {
3574
4629
  'name': string;
3575
4630
  /**
@@ -3618,6 +4673,10 @@ interface PlanCollisionFreeRequest {
3618
4673
  */
3619
4674
  interface PlanCollisionFreeResponse {
3620
4675
  'response': PlanCollisionFreeResponseResponse;
4676
+ /**
4677
+ * The motion commands that produced the trajectory.
4678
+ */
4679
+ 'motion_commands'?: Array<MotionCommand>;
3621
4680
  }
3622
4681
  /**
3623
4682
  * @type PlanCollisionFreeResponseResponse
@@ -3648,6 +4707,10 @@ interface PlanTrajectoryRequest {
3648
4707
  * List of motion commands. A command consists of a path definition (line, circle, joint_ptp, cartesian_ptp, cubic_spline), blending, and limits override.
3649
4708
  */
3650
4709
  'motion_commands': Array<MotionCommand>;
4710
+ /**
4711
+ * <!-- theme: danger --> > > **Experimental** Strategy used to deal with wrist singularities along a cartesian path.
4712
+ */
4713
+ 'singularity_handling'?: SingularityHandling;
3651
4714
  }
3652
4715
  interface PlanTrajectoryResponse {
3653
4716
  'response': PlanTrajectoryResponseResponse;
@@ -3725,49 +4788,35 @@ interface Pose {
3725
4788
  'orientation'?: Array<number>;
3726
4789
  }
3727
4790
  /**
3728
- * A waypoint in Cartesian space for jogging. > **NOTE** > > This type is experimental and its behavior may change in future releases.
4791
+ * @type PoseRef
4792
+ * Defines a referenced, inline, or joint-position target for a motion command.
3729
4793
  */
3730
- interface PoseWaypoint {
3731
- /**
3732
- * Time since session start for when this waypoint should be reached [ms].
3733
- */
3734
- 'timestamp': number;
3735
- /**
3736
- * Cartesian pose for this waypoint.
3737
- */
3738
- 'pose': Pose;
3739
- }
4794
+ type PoseRef = {
4795
+ type: 'dataset_pose';
4796
+ } & DatasetPoseReference | {
4797
+ type: 'inline_pose';
4798
+ } & InlinePoseReference | {
4799
+ type: 'joint_position';
4800
+ } & JointPositionReference | {
4801
+ type: 'local_pose';
4802
+ } & LocalPoseReference;
3740
4803
  /**
3741
- * 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.
4804
+ * A pose waypoint for action chunk streaming. > **NOTE** > > This type is experimental and its behavior may change in future releases.
3742
4805
  */
3743
- interface PoseWaypointsRequest {
4806
+ interface PoseWaypoint {
3744
4807
  /**
3745
4808
  * Type specifier for server, set automatically.
3746
4809
  */
3747
- 'message_type': PoseWaypointsRequestMessageTypeEnum;
3748
- /**
3749
- * List of pose waypoints.
3750
- */
3751
- 'waypoints': Array<PoseWaypoint>;
3752
- }
3753
- declare const PoseWaypointsRequestMessageTypeEnum: {
3754
- readonly PoseWaypointsRequest: "PoseWaypointsRequest";
3755
- };
3756
- type PoseWaypointsRequestMessageTypeEnum = typeof PoseWaypointsRequestMessageTypeEnum[keyof typeof PoseWaypointsRequestMessageTypeEnum];
3757
- /**
3758
- * Acknowledgment to a PoseWaypointsRequest.
3759
- */
3760
- interface PoseWaypointsResponse {
4810
+ 'kind': PoseWaypointKindEnum;
3761
4811
  /**
3762
- * Error message in case of invalid PoseWaypointsRequest.
4812
+ * Cartesian pose for this waypoint.
3763
4813
  */
3764
- 'message'?: string;
3765
- 'kind': PoseWaypointsResponseKindEnum;
4814
+ 'pose': Pose;
3766
4815
  }
3767
- declare const PoseWaypointsResponseKindEnum: {
3768
- readonly PoseWaypointsReceived: "POSE_WAYPOINTS_RECEIVED";
4816
+ declare const PoseWaypointKindEnum: {
4817
+ readonly Pose: "POSE";
3769
4818
  };
3770
- type PoseWaypointsResponseKindEnum = typeof PoseWaypointsResponseKindEnum[keyof typeof PoseWaypointsResponseKindEnum];
4819
+ type PoseWaypointKindEnum = typeof PoseWaypointKindEnum[keyof typeof PoseWaypointKindEnum];
3771
4820
  interface ProfinetDescription {
3772
4821
  /**
3773
4822
  * The vendor identifier of the PROFINET device, identifying the manufacturer.
@@ -3795,7 +4844,7 @@ interface ProfinetIO {
3795
4844
  */
3796
4845
  'direction': ProfinetIODirection;
3797
4846
  /**
3798
- * 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
4847
+ * 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
3799
4848
  */
3800
4849
  'byte_address': number;
3801
4850
  /**
@@ -3818,7 +4867,7 @@ interface ProfinetIOData {
3818
4867
  */
3819
4868
  'direction': ProfinetIODirection;
3820
4869
  /**
3821
- * 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
4870
+ * 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
3822
4871
  */
3823
4872
  'byte_address': number;
3824
4873
  /**
@@ -3857,13 +4906,19 @@ interface ProfinetInputOutputConfig {
3857
4906
  */
3858
4907
  'config': string;
3859
4908
  /**
3860
- * 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.
4909
+ * 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.
3861
4910
  */
3862
- 'input_offset': number;
4911
+ 'offsets'?: Array<ProfinetSlotOffset>;
3863
4912
  /**
3864
- * 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.
4913
+ * 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.
4914
+ * @deprecated
3865
4915
  */
3866
- 'output_offset': number;
4916
+ 'input_offset'?: number;
4917
+ /**
4918
+ * 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.
4919
+ * @deprecated
4920
+ */
4921
+ 'output_offset'?: number;
3867
4922
  }
3868
4923
  /**
3869
4924
  * 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).
@@ -3882,6 +4937,20 @@ interface ProfinetSlotDescription {
3882
4937
  */
3883
4938
  'subslots': Array<ProfinetSubSlotDescription>;
3884
4939
  }
4940
+ interface ProfinetSlotOffset {
4941
+ /**
4942
+ * 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.
4943
+ */
4944
+ 'slot': number;
4945
+ /**
4946
+ * 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.
4947
+ */
4948
+ 'input_offset': number;
4949
+ /**
4950
+ * 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.
4951
+ */
4952
+ 'output_offset': number;
4953
+ }
3885
4954
  interface ProfinetSubSlotDescription {
3886
4955
  /**
3887
4956
  * The number/index of the PROFINET subslot.
@@ -4135,7 +5204,7 @@ interface RobotController {
4135
5204
  /**
4136
5205
  * @type RobotControllerConfiguration
4137
5206
  */
4138
- type RobotControllerConfiguration = AbbController | FanucController | KukaController | UniversalrobotsController | VirtualController | YaskawaController;
5207
+ type RobotControllerConfiguration = AbbController | BostondynamicsController | FanucController | KukaController | StaubliController | TechmanController | UnitreeController | UniversalrobotsController | VirtualController | YaskawaController;
4139
5208
  /**
4140
5209
  * Information to generate all robot controller configurations that match a given ARP scan result.
4141
5210
  */
@@ -4205,7 +5274,7 @@ interface RobotTcp {
4205
5274
  */
4206
5275
  'position': Array<number>;
4207
5276
  /**
4208
- * Describes an orientation in 3D space. A tree-to-four-dimensional vector [x, y, z, w] with double precision.
5277
+ * Describes an orientation in 3D space. A three-to-four-dimensional vector [x, y, z, w] with double precision.
4209
5278
  */
4210
5279
  'orientation'?: Array<number>;
4211
5280
  'orientation_type'?: OrientationType;
@@ -4225,7 +5294,7 @@ interface RobotTcpData {
4225
5294
  */
4226
5295
  'position': Array<number>;
4227
5296
  /**
4228
- * Describes an orientation in 3D space. A tree-to-four-dimensional vector [x, y, z, w] with double precision.
5297
+ * Describes an orientation in 3D space. A three-to-four-dimensional vector [x, y, z, w] with double precision.
4229
5298
  */
4230
5299
  'orientation'?: Array<number>;
4231
5300
  'orientation_type'?: OrientationType;
@@ -4521,6 +5590,32 @@ interface SetIO {
4521
5590
  'location': number;
4522
5591
  'io_origin': IOOrigin;
4523
5592
  }
5593
+ /**
5594
+ * Sets an I/O output without blocking trajectory execution.
5595
+ */
5596
+ interface SetIOCommand {
5597
+ /**
5598
+ * Identifies the set-output command variant.
5599
+ */
5600
+ 'type': SetIOCommandTypeEnum;
5601
+ 'io_value': IOValue;
5602
+ 'io_origin': IOOrigin;
5603
+ 'at'?: AtTrigger;
5604
+ /**
5605
+ * Contains a free-form authoring annotation.
5606
+ */
5607
+ 'intent'?: string;
5608
+ /**
5609
+ * Contains string-valued annotations that are preserved on round-trip.
5610
+ */
5611
+ 'metadata'?: {
5612
+ [key: string]: string;
5613
+ };
5614
+ }
5615
+ declare const SetIOCommandTypeEnum: {
5616
+ readonly SetIo: "set_io";
5617
+ };
5618
+ type SetIOCommandTypeEnum = typeof SetIOCommandTypeEnum[keyof typeof SetIOCommandTypeEnum];
4524
5619
  /**
4525
5620
  * Defines available system modes of the robot system. Short versions (no \"ROBOT_SYSTEM_\" prefix) are provided, reusing strings from [getMode](#/operations/getMode) responses.
4526
5621
  */
@@ -4531,6 +5626,15 @@ declare const SettableRobotSystemMode: {
4531
5626
  readonly ModeControl: "MODE_CONTROL";
4532
5627
  };
4533
5628
  type SettableRobotSystemMode = typeof SettableRobotSystemMode[keyof typeof SettableRobotSystemMode];
5629
+ /**
5630
+ * <!-- 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.
5631
+ */
5632
+ declare const SingularityHandling: {
5633
+ readonly None: "NONE";
5634
+ readonly PalletizingWrist: "PALLETIZING_WRIST";
5635
+ readonly AdaptiveSampling: "ADAPTIVE_SAMPLING";
5636
+ };
5637
+ type SingularityHandling = typeof SingularityHandling[keyof typeof SingularityHandling];
4534
5638
  declare const SingularityTypeEnum: {
4535
5639
  readonly Wrist: "WRIST";
4536
5640
  readonly Elbow: "ELBOW";
@@ -4692,6 +5796,55 @@ interface StartOnIO {
4692
5796
  'comparator': Comparator;
4693
5797
  'io_origin': IOOrigin;
4694
5798
  }
5799
+ /**
5800
+ * 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.
5801
+ */
5802
+ interface StaubliController {
5803
+ 'kind': StaubliControllerKindEnum;
5804
+ 'controller_ip': string;
5805
+ 'network_interface'?: ControllerNetworkInterface;
5806
+ 'controller_port': number;
5807
+ 'command_port': number;
5808
+ 'rti_server': StaubliControllerRtiServer;
5809
+ }
5810
+ declare const StaubliControllerKindEnum: {
5811
+ readonly StaubliController: "StaubliController";
5812
+ };
5813
+ type StaubliControllerKindEnum = typeof StaubliControllerKindEnum[keyof typeof StaubliControllerKindEnum];
5814
+ /**
5815
+ * The RTI server runs inside of the cell.
5816
+ */
5817
+ interface StaubliControllerRtiServer {
5818
+ 'ip': string;
5819
+ 'port': number;
5820
+ }
5821
+ /**
5822
+ * Request to stop executing action chunks. If successful, `execute` jogging state in [MotionGroupState](MotionGroupState.yaml) is set to `PAUSED_BY_USER`.
5823
+ */
5824
+ interface StopActionChunksRequest {
5825
+ /**
5826
+ * Type specifier for server, set automatically.
5827
+ */
5828
+ 'message_type': StopActionChunksRequestMessageTypeEnum;
5829
+ }
5830
+ declare const StopActionChunksRequestMessageTypeEnum: {
5831
+ readonly StopActionChunksRequest: "StopActionChunksRequest";
5832
+ };
5833
+ type StopActionChunksRequestMessageTypeEnum = typeof StopActionChunksRequestMessageTypeEnum[keyof typeof StopActionChunksRequestMessageTypeEnum];
5834
+ /**
5835
+ * Acknowledgment to a StopActionChunksRequest.
5836
+ */
5837
+ interface StopActionChunksResponse {
5838
+ /**
5839
+ * Error message in case of invalid StopActionChunksRequest.
5840
+ */
5841
+ 'message'?: string;
5842
+ 'kind': StopActionChunksResponseKindEnum;
5843
+ }
5844
+ declare const StopActionChunksResponseKindEnum: {
5845
+ readonly StopReceived: "STOP_RECEIVED";
5846
+ };
5847
+ type StopActionChunksResponseKindEnum = typeof StopActionChunksResponseKindEnum[keyof typeof StopActionChunksResponseKindEnum];
4695
5848
  /**
4696
5849
  * 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/).
4697
5850
  */
@@ -4780,6 +5933,59 @@ declare const TcpVelocityResponseKindEnum: {
4780
5933
  readonly TcpVelocityReceived: "TCP_VELOCITY_RECEIVED";
4781
5934
  };
4782
5935
  type TcpVelocityResponseKindEnum = typeof TcpVelocityResponseKindEnum[keyof typeof TcpVelocityResponseKindEnum];
5936
+ /**
5937
+ * The configuration of a physical Techman robot controller has to contain an IP address. Additionally an RTRS server configuration has to be specified to obtain state from the robot.
5938
+ */
5939
+ interface TechmanController {
5940
+ 'kind': TechmanControllerKindEnum;
5941
+ 'controller_ip': string;
5942
+ 'network_interface'?: ControllerNetworkInterface;
5943
+ /**
5944
+ * TCP port for the TMSVR channel on the robot controller.
5945
+ */
5946
+ 'tmsvr_port'?: number;
5947
+ /**
5948
+ * TCP port for the TMSCT channel on the robot controller.
5949
+ */
5950
+ 'tmsct_port'?: number;
5951
+ 'rtrs': TechmanControllerRtrs;
5952
+ }
5953
+ declare const TechmanControllerKindEnum: {
5954
+ readonly TechmanController: "TechmanController";
5955
+ };
5956
+ type TechmanControllerKindEnum = typeof TechmanControllerKindEnum[keyof typeof TechmanControllerKindEnum];
5957
+ /**
5958
+ * RTRS server configuration for real-time communication.
5959
+ */
5960
+ interface TechmanControllerRtrs {
5961
+ 'ip': string;
5962
+ /**
5963
+ * TCP port for the TMRTS state reporting channel.
5964
+ */
5965
+ 'tmrts_port'?: number;
5966
+ /**
5967
+ * TCP port for the TMRTC real-time control channel.
5968
+ */
5969
+ 'tmrtc_port'?: number;
5970
+ }
5971
+ /**
5972
+ * Positions an overlay command at a duration from a motion boundary.
5973
+ */
5974
+ interface TimeTrigger {
5975
+ /**
5976
+ * Identifies the time trigger variant.
5977
+ */
5978
+ 'type': TimeTriggerTypeEnum;
5979
+ /**
5980
+ * Specifies the non-negative duration in seconds.
5981
+ */
5982
+ 'seconds': number;
5983
+ 'reference': AtReference;
5984
+ }
5985
+ declare const TimeTriggerTypeEnum: {
5986
+ readonly Time: "time";
5987
+ };
5988
+ type TimeTriggerTypeEnum = typeof TimeTriggerTypeEnum[keyof typeof TimeTriggerTypeEnum];
4783
5989
  /**
4784
5990
  * An inline tool collider wrapped for discriminator support.
4785
5991
  */
@@ -4972,17 +6178,82 @@ declare const UnitType: {
4972
6178
  readonly UnitMeter: "UNIT_METER";
4973
6179
  };
4974
6180
  type UnitType = typeof UnitType[keyof typeof UnitType];
6181
+ /**
6182
+ * 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.
6183
+ */
6184
+ interface UnitreeController {
6185
+ 'kind': UnitreeControllerKindEnum;
6186
+ /**
6187
+ * The IP address of the Unitree robot.
6188
+ */
6189
+ 'controller_ip': string;
6190
+ /**
6191
+ * The Unitree robot model type.
6192
+ */
6193
+ 'robot_type': UnitreeControllerRobotTypeEnum;
6194
+ /**
6195
+ * The network interface used for DDS discovery.
6196
+ */
6197
+ 'network_interface'?: string;
6198
+ /**
6199
+ * Enable DDS unicast mode for environments where multicast is unavailable.
6200
+ */
6201
+ 'dds_unicast_mode'?: boolean;
6202
+ /**
6203
+ * Enable exclusive lease-based control of the robot.
6204
+ */
6205
+ 'enable_lease'?: boolean;
6206
+ }
6207
+ declare const UnitreeControllerKindEnum: {
6208
+ readonly UnitreeController: "UnitreeController";
6209
+ };
6210
+ type UnitreeControllerKindEnum = typeof UnitreeControllerKindEnum[keyof typeof UnitreeControllerKindEnum];
6211
+ declare const UnitreeControllerRobotTypeEnum: {
6212
+ readonly Go2: "go2";
6213
+ readonly G1: "g1";
6214
+ readonly B2: "b2";
6215
+ readonly H1: "h1";
6216
+ };
6217
+ type UnitreeControllerRobotTypeEnum = typeof UnitreeControllerRobotTypeEnum[keyof typeof UnitreeControllerRobotTypeEnum];
4975
6218
  /**
4976
6219
  * The configuration of a physical Universal Robots controller has to contain IP address of the controller.
4977
6220
  */
4978
6221
  interface UniversalrobotsController {
4979
6222
  'kind': UniversalrobotsControllerKindEnum;
4980
6223
  'controller_ip': string;
6224
+ 'network_interface'?: ControllerNetworkInterface;
4981
6225
  }
4982
6226
  declare const UniversalrobotsControllerKindEnum: {
4983
6227
  readonly UniversalrobotsController: "UniversalrobotsController";
4984
6228
  };
4985
6229
  type UniversalrobotsControllerKindEnum = typeof UniversalrobotsControllerKindEnum[keyof typeof UniversalrobotsControllerKindEnum];
6230
+ /**
6231
+ * Request to unpause executing action chunks. If successful, `execute` jogging state in [MotionGroupState](MotionGroupState.yaml) is set to `RUNNING`.
6232
+ */
6233
+ interface UnpauseActionChunksRequest {
6234
+ /**
6235
+ * Type specifier for server, set automatically.
6236
+ */
6237
+ 'message_type': UnpauseActionChunksRequestMessageTypeEnum;
6238
+ }
6239
+ declare const UnpauseActionChunksRequestMessageTypeEnum: {
6240
+ readonly UnpauseActionChunksRequest: "UnpauseActionChunksRequest";
6241
+ };
6242
+ type UnpauseActionChunksRequestMessageTypeEnum = typeof UnpauseActionChunksRequestMessageTypeEnum[keyof typeof UnpauseActionChunksRequestMessageTypeEnum];
6243
+ /**
6244
+ * Acknowledgment to an UnpauseActionChunksRequest.
6245
+ */
6246
+ interface UnpauseActionChunksResponse {
6247
+ /**
6248
+ * Error message in case of invalid UnpauseActionChunksRequest.
6249
+ */
6250
+ 'message'?: string;
6251
+ 'kind': UnpauseActionChunksResponseKindEnum;
6252
+ }
6253
+ declare const UnpauseActionChunksResponseKindEnum: {
6254
+ readonly UnpauseReceived: "UNPAUSE_RECEIVED";
6255
+ };
6256
+ type UnpauseActionChunksResponseKindEnum = typeof UnpauseActionChunksResponseKindEnum[keyof typeof UnpauseActionChunksResponseKindEnum];
4986
6257
  /**
4987
6258
  * Update a single cell\'s Foundation chart version based on the indicated release channel.
4988
6259
  */
@@ -5051,9 +6322,13 @@ interface VirtualController {
5051
6322
  */
5052
6323
  'json'?: string;
5053
6324
  /**
5054
- * 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.
6325
+ * 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.
5055
6326
  */
5056
6327
  'initial_joint_position'?: string;
6328
+ /**
6329
+ * 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
6330
+ */
6331
+ 'motion_groups'?: Array<AddVirtualControllerMotionGroupRequest>;
5057
6332
  }
5058
6333
  declare const VirtualControllerKindEnum: {
5059
6334
  readonly VirtualController: "VirtualController";
@@ -5069,6 +6344,35 @@ interface VirtualRobotConfiguration {
5069
6344
  */
5070
6345
  'content': string;
5071
6346
  }
6347
+ /**
6348
+ * Blocks at a trajectory location until an I/O expression becomes `true`.
6349
+ */
6350
+ interface WaitForIOCommand {
6351
+ /**
6352
+ * Identifies the blocking I/O-wait command variant.
6353
+ */
6354
+ 'type': WaitForIOCommandTypeEnum;
6355
+ 'condition': IOExpression;
6356
+ /**
6357
+ * Specifies the optional non-negative timeout in milliseconds. No specification means no timeout.
6358
+ */
6359
+ 'timeout_ms'?: number;
6360
+ 'at'?: AtTrigger;
6361
+ /**
6362
+ * Contains a free-form authoring annotation.
6363
+ */
6364
+ 'intent'?: string;
6365
+ /**
6366
+ * Contains string-valued annotations that are preserved on round-trip.
6367
+ */
6368
+ 'metadata'?: {
6369
+ [key: string]: string;
6370
+ };
6371
+ }
6372
+ declare const WaitForIOCommandTypeEnum: {
6373
+ readonly WaitForIo: "wait_for_io";
6374
+ };
6375
+ type WaitForIOCommandTypeEnum = typeof WaitForIOCommandTypeEnum[keyof typeof WaitForIOCommandTypeEnum];
5072
6376
  /**
5073
6377
  * The value to compare with the current value of the input/output.
5074
6378
  */
@@ -5079,12 +6383,63 @@ interface WaitForIOEventRequest {
5079
6383
  */
5080
6384
  'comparator': Comparator;
5081
6385
  }
6386
+ /**
6387
+ * Blocks at a trajectory location for a fixed duration.
6388
+ */
6389
+ interface WaitForTimeCommand {
6390
+ /**
6391
+ * Identifies the timed wait command variant.
6392
+ */
6393
+ 'type': WaitForTimeCommandTypeEnum;
6394
+ /**
6395
+ * Specifies the non-negative wait duration in milliseconds.
6396
+ */
6397
+ 'duration_ms': number;
6398
+ 'at'?: AtTrigger;
6399
+ /**
6400
+ * Contains a free-form authoring annotation.
6401
+ */
6402
+ 'intent'?: string;
6403
+ /**
6404
+ * Contains string-valued annotations that are preserved on round-trip.
6405
+ */
6406
+ 'metadata'?: {
6407
+ [key: string]: string;
6408
+ };
6409
+ }
6410
+ declare const WaitForTimeCommandTypeEnum: {
6411
+ readonly WaitForTime: "wait_for_time";
6412
+ };
6413
+ type WaitForTimeCommandTypeEnum = typeof WaitForTimeCommandTypeEnum[keyof typeof WaitForTimeCommandTypeEnum];
6414
+ /**
6415
+ * A waypoint for action chunk streaming. > **NOTE** > > This type is experimental and its behavior may change in future releases.
6416
+ */
6417
+ interface Waypoint {
6418
+ /**
6419
+ * Exact timestamp [ms] at which the waypoint should be reached, relative to the start of the session.
6420
+ */
6421
+ 'timestamp': number;
6422
+ /**
6423
+ * Coordinates for this waypoint.
6424
+ */
6425
+ 'waypoint': WaypointCoordinates;
6426
+ }
6427
+ /**
6428
+ * @type WaypointCoordinates
6429
+ * Coordinates for an action chunk streaming waypoint. > **NOTE** > > This type is experimental and its behavior may change in future releases.
6430
+ */
6431
+ type WaypointCoordinates = {
6432
+ kind: 'JOINTS';
6433
+ } & JointWaypoint | {
6434
+ kind: 'POSE';
6435
+ } & PoseWaypoint;
5082
6436
  /**
5083
6437
  * The configuration of a physical Yaskawa robot controller has to contain IP address of the controller.
5084
6438
  */
5085
6439
  interface YaskawaController {
5086
6440
  'kind': YaskawaControllerKindEnum;
5087
6441
  'controller_ip': string;
6442
+ 'network_interface'?: ControllerNetworkInterface;
5088
6443
  }
5089
6444
  declare const YaskawaControllerKindEnum: {
5090
6445
  readonly YaskawaController: "YaskawaController";
@@ -5102,21 +6457,81 @@ interface ZodValidationErrorError {
5102
6457
  /**
5103
6458
  * Array of Zod issue objects describing the validation errors
5104
6459
  */
5105
- 'details': Array<ZodValidationErrorErrorDetailsInner>;
5106
- }
5107
- declare const ZodValidationErrorErrorCodeEnum: {
5108
- readonly ValidationError: "validation_error";
6460
+ 'details': Array<ZodValidationErrorErrorDetailsInner>;
6461
+ }
6462
+ declare const ZodValidationErrorErrorCodeEnum: {
6463
+ readonly ValidationError: "validation_error";
6464
+ };
6465
+ type ZodValidationErrorErrorCodeEnum = typeof ZodValidationErrorErrorCodeEnum[keyof typeof ZodValidationErrorErrorCodeEnum];
6466
+ interface ZodValidationErrorErrorDetailsInner {
6467
+ 'code': string;
6468
+ 'path': Array<ZodValidationErrorErrorDetailsInnerPathInner>;
6469
+ 'message': string;
6470
+ }
6471
+ /**
6472
+ * @type ZodValidationErrorErrorDetailsInnerPathInner
6473
+ */
6474
+ type ZodValidationErrorErrorDetailsInnerPathInner = number | string;
6475
+ /**
6476
+ * ActionChunkStreamingApi - axios parameter creator
6477
+ */
6478
+ declare const ActionChunkStreamingApiAxiosParamCreator: (configuration?: Configuration) => {
6479
+ /**
6480
+ * **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.
6481
+ * @summary Execute Action Chunks
6482
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
6483
+ * @param {string} controller Unique identifier to address a controller in the cell.
6484
+ * @param {ExecuteActionChunksRequest} executeActionChunksRequest
6485
+ * @param {*} [options] Override http request option.
6486
+ * @throws {RequiredError}
6487
+ */
6488
+ executeActionChunks: (cell: string, controller: string, executeActionChunksRequest: ExecuteActionChunksRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6489
+ };
6490
+ /**
6491
+ * ActionChunkStreamingApi - functional programming interface
6492
+ */
6493
+ declare const ActionChunkStreamingApiFp: (configuration?: Configuration) => {
6494
+ /**
6495
+ * **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.
6496
+ * @summary Execute Action Chunks
6497
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
6498
+ * @param {string} controller Unique identifier to address a controller in the cell.
6499
+ * @param {ExecuteActionChunksRequest} executeActionChunksRequest
6500
+ * @param {*} [options] Override http request option.
6501
+ * @throws {RequiredError}
6502
+ */
6503
+ executeActionChunks(cell: string, controller: string, executeActionChunksRequest: ExecuteActionChunksRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ExecuteActionChunksResponse>>;
6504
+ };
6505
+ /**
6506
+ * ActionChunkStreamingApi - factory interface
6507
+ */
6508
+ declare const ActionChunkStreamingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
6509
+ /**
6510
+ * **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.
6511
+ * @summary Execute Action Chunks
6512
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
6513
+ * @param {string} controller Unique identifier to address a controller in the cell.
6514
+ * @param {ExecuteActionChunksRequest} executeActionChunksRequest
6515
+ * @param {*} [options] Override http request option.
6516
+ * @throws {RequiredError}
6517
+ */
6518
+ executeActionChunks(cell: string, controller: string, executeActionChunksRequest: ExecuteActionChunksRequest, options?: RawAxiosRequestConfig): AxiosPromise<ExecuteActionChunksResponse>;
5109
6519
  };
5110
- type ZodValidationErrorErrorCodeEnum = typeof ZodValidationErrorErrorCodeEnum[keyof typeof ZodValidationErrorErrorCodeEnum];
5111
- interface ZodValidationErrorErrorDetailsInner {
5112
- 'code': string;
5113
- 'path': Array<ZodValidationErrorErrorDetailsInnerPathInner>;
5114
- 'message': string;
5115
- }
5116
6520
  /**
5117
- * @type ZodValidationErrorErrorDetailsInnerPathInner
6521
+ * ActionChunkStreamingApi - object-oriented interface
5118
6522
  */
5119
- type ZodValidationErrorErrorDetailsInnerPathInner = number | string;
6523
+ declare class ActionChunkStreamingApi extends BaseAPI {
6524
+ /**
6525
+ * **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.
6526
+ * @summary Execute Action Chunks
6527
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
6528
+ * @param {string} controller Unique identifier to address a controller in the cell.
6529
+ * @param {ExecuteActionChunksRequest} executeActionChunksRequest
6530
+ * @param {*} [options] Override http request option.
6531
+ * @throws {RequiredError}
6532
+ */
6533
+ executeActionChunks(cell: string, controller: string, executeActionChunksRequest: ExecuteActionChunksRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ExecuteActionChunksResponse, any, {}>>;
6534
+ }
5120
6535
  /**
5121
6536
  * ApplicationApi - axios parameter creator
5122
6537
  */
@@ -5511,15 +6926,16 @@ declare const BUSInputsOutputsApiAxiosParamCreator: (configuration?: Configurati
5511
6926
  */
5512
6927
  getProfinetGSDML: (cell: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5513
6928
  /**
5514
- * **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.
6929
+ * **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.
5515
6930
  * @summary PROFINET Inputs/Outputs to File
5516
6931
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6932
+ * @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.
5517
6933
  * @param {number} [inputOffset]
5518
6934
  * @param {number} [outputOffset]
5519
6935
  * @param {*} [options] Override http request option.
5520
6936
  * @throws {RequiredError}
5521
6937
  */
5522
- getProfinetIOsFromFile: (cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6938
+ getProfinetIOsFromFile: (cell: string, offsets?: Array<ProfinetSlotOffset>, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5523
6939
  /**
5524
6940
  * **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.
5525
6941
  * @summary List Descriptions
@@ -5717,15 +7133,16 @@ declare const BUSInputsOutputsApiFp: (configuration?: Configuration) => {
5717
7133
  */
5718
7134
  getProfinetGSDML(cell: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
5719
7135
  /**
5720
- * **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.
7136
+ * **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.
5721
7137
  * @summary PROFINET Inputs/Outputs to File
5722
7138
  * @param {string} cell Unique identifier addressing a cell in all API calls.
7139
+ * @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.
5723
7140
  * @param {number} [inputOffset]
5724
7141
  * @param {number} [outputOffset]
5725
7142
  * @param {*} [options] Override http request option.
5726
7143
  * @throws {RequiredError}
5727
7144
  */
5728
- getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
7145
+ getProfinetIOsFromFile(cell: string, offsets?: Array<ProfinetSlotOffset>, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
5729
7146
  /**
5730
7147
  * **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.
5731
7148
  * @summary List Descriptions
@@ -5923,15 +7340,16 @@ declare const BUSInputsOutputsApiFactory: (configuration?: Configuration, basePa
5923
7340
  */
5924
7341
  getProfinetGSDML(cell: string, options?: RawAxiosRequestConfig): AxiosPromise<string>;
5925
7342
  /**
5926
- * **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.
7343
+ * **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.
5927
7344
  * @summary PROFINET Inputs/Outputs to File
5928
7345
  * @param {string} cell Unique identifier addressing a cell in all API calls.
7346
+ * @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.
5929
7347
  * @param {number} [inputOffset]
5930
7348
  * @param {number} [outputOffset]
5931
7349
  * @param {*} [options] Override http request option.
5932
7350
  * @throws {RequiredError}
5933
7351
  */
5934
- getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): AxiosPromise<string>;
7352
+ getProfinetIOsFromFile(cell: string, offsets?: Array<ProfinetSlotOffset>, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): AxiosPromise<string>;
5935
7353
  /**
5936
7354
  * **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.
5937
7355
  * @summary List Descriptions
@@ -6129,15 +7547,16 @@ declare class BUSInputsOutputsApi extends BaseAPI {
6129
7547
  */
6130
7548
  getProfinetGSDML(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string, any, {}>>;
6131
7549
  /**
6132
- * **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.
7550
+ * **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.
6133
7551
  * @summary PROFINET Inputs/Outputs to File
6134
7552
  * @param {string} cell Unique identifier addressing a cell in all API calls.
7553
+ * @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.
6135
7554
  * @param {number} [inputOffset]
6136
7555
  * @param {number} [outputOffset]
6137
7556
  * @param {*} [options] Override http request option.
6138
7557
  * @throws {RequiredError}
6139
7558
  */
6140
- getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string, any, {}>>;
7559
+ getProfinetIOsFromFile(cell: string, offsets?: Array<ProfinetSlotOffset>, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string, any, {}>>;
6141
7560
  /**
6142
7561
  * **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.
6143
7562
  * @summary List Descriptions
@@ -7318,59 +8737,125 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
7318
8737
  waitForIOEvent(cell: string, controller: string, waitForIOEventRequest: WaitForIOEventRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<boolean, any, {}>>;
7319
8738
  }
7320
8739
  /**
7321
- * JoggingApi - axios parameter creator
8740
+ * DatasetsApi - axios parameter creator
7322
8741
  */
7323
- declare const JoggingApiAxiosParamCreator: (configuration?: Configuration) => {
8742
+ declare const DatasetsApiAxiosParamCreator: (configuration?: Configuration) => {
7324
8743
  /**
7325
- * **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ <!-- theme: success --> > Websocket endpoint Provides execution control over a dynamically adaptable jogging motion for a motion group. Jogging describes controlling a motion group by sending real-time commands to move either its joints or the TCP. The commands contain target velocities that may change at any time during execution, so the resulting motion cannot be computed upfront. ### Preconditions The motion group is not moved by any other endpoint. ### Requests #### 1. Send `InitializeJoggingRequest` to configure the jogging. - Sets the robot controller mode to control mode. - Claims the motion group for jogging. For robotic arms, TCP is required to ensure that limits, including TCP limits, are respected. #### 2. Send `JointVelocityRequest` or `TcpVelocityRequest` to start the jogging motion. - Commands can only be processed in the cycle rate of the controller - Sending commands faster will not increase the responsiveness of the jogging motion, it will lead to dropped commands - It is recommended to couple sending commands with the [state stream](#/operations/streamMotionGroupState), which can be subscribed to via nats as well. #### 3. Change or stop the jogging motion - Change the jogging direction and/or velocity during the jogging motion with `JointVelocityRequest` or `TcpVelocityRequest`. - To stop the jogging motion, send zero velocities via either request or `PauseJoggingRequest`. ### Responses - Each request is acknowledged with a corresponding response: - `InitializeJoggingResponse` after `InitializeJoggingRequest` - `JointVelocityResponse` after `JointVelocityRequest` - `TcpVelocityResponse` after `TcpVelocityRequest` - `PauseJoggingResponse` after `PauseJoggingRequest` The responses confirm that the requests were received. They do not signal that the operation was successful; check the [motion group state](#/operations/streamMotionGroupState) for that. - `MovementErrorResponse` with error details is sent in case of an unexpected error, e.g., controller disconnects during jogging. ### Tips and Tricks - Ensure that the websocket connection remains open until the jogging motion is stopped to avoid unexpected stops.
7326
- * @summary Execute Jogging
8744
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ Localize a pose that is expressed in the `world` coordinate system into the given dataset coordinate system. This is the inverse of the resolve operation: the pose is transformed through the whole chain of parent coordinate systems within the dataset.
8745
+ * @summary Localize Pose from World (Dataset)
7327
8746
  * @param {string} cell Unique identifier addressing a cell in all API calls.
7328
- * @param {string} controller Unique identifier to address a controller in the cell.
7329
- * @param {ExecuteJoggingRequest} executeJoggingRequest
8747
+ * @param {string} dataset Specifies the dataset identifier.
8748
+ * @param {string} coordinateSystem Unique identifier addressing a coordinate system within a teaching dataset.
8749
+ * @param {Pose} pose The pose expressed in the &#x60;world&#x60; coordinate system.
8750
+ * @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
7330
8751
  * @param {*} [options] Override http request option.
7331
8752
  * @throws {RequiredError}
7332
8753
  */
7333
- executeJogging: (cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8754
+ localizeDatasetCoordinateSystemPose: (cell: string, dataset: string, coordinateSystem: string, pose: Pose, revision?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7334
8755
  /**
7335
- * **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.
7336
- * @summary Execute Waypoint Jogging
8756
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ Resolve a pose that is expressed relative to the given dataset coordinate system into the `world` coordinate system. The pose is transformed through the whole chain of parent coordinate systems within the dataset.
8757
+ * @summary Resolve Pose to World (Dataset)
7337
8758
  * @param {string} cell Unique identifier addressing a cell in all API calls.
7338
- * @param {string} controller Unique identifier to address a controller in the cell.
7339
- * @param {ExecuteWaypointJoggingRequest} executeWaypointJoggingRequest
8759
+ * @param {string} dataset Specifies the dataset identifier.
8760
+ * @param {string} coordinateSystem Unique identifier addressing a coordinate system within a teaching dataset.
8761
+ * @param {Pose} pose The pose expressed relative to the given coordinate system.
8762
+ * @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
7340
8763
  * @param {*} [options] Override http request option.
7341
8764
  * @throws {RequiredError}
7342
8765
  */
7343
- executeWaypointJogging: (cell: string, controller: string, executeWaypointJoggingRequest: ExecuteWaypointJoggingRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8766
+ resolveDatasetCoordinateSystemPose: (cell: string, dataset: string, coordinateSystem: string, pose: Pose, revision?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7344
8767
  };
7345
8768
  /**
7346
- * JoggingApi - functional programming interface
8769
+ * DatasetsApi - functional programming interface
7347
8770
  */
7348
- declare const JoggingApiFp: (configuration?: Configuration) => {
8771
+ declare const DatasetsApiFp: (configuration?: Configuration) => {
7349
8772
  /**
7350
- * **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ <!-- theme: success --> > Websocket endpoint Provides execution control over a dynamically adaptable jogging motion for a motion group. Jogging describes controlling a motion group by sending real-time commands to move either its joints or the TCP. The commands contain target velocities that may change at any time during execution, so the resulting motion cannot be computed upfront. ### Preconditions The motion group is not moved by any other endpoint. ### Requests #### 1. Send `InitializeJoggingRequest` to configure the jogging. - Sets the robot controller mode to control mode. - Claims the motion group for jogging. For robotic arms, TCP is required to ensure that limits, including TCP limits, are respected. #### 2. Send `JointVelocityRequest` or `TcpVelocityRequest` to start the jogging motion. - Commands can only be processed in the cycle rate of the controller - Sending commands faster will not increase the responsiveness of the jogging motion, it will lead to dropped commands - It is recommended to couple sending commands with the [state stream](#/operations/streamMotionGroupState), which can be subscribed to via nats as well. #### 3. Change or stop the jogging motion - Change the jogging direction and/or velocity during the jogging motion with `JointVelocityRequest` or `TcpVelocityRequest`. - To stop the jogging motion, send zero velocities via either request or `PauseJoggingRequest`. ### Responses - Each request is acknowledged with a corresponding response: - `InitializeJoggingResponse` after `InitializeJoggingRequest` - `JointVelocityResponse` after `JointVelocityRequest` - `TcpVelocityResponse` after `TcpVelocityRequest` - `PauseJoggingResponse` after `PauseJoggingRequest` The responses confirm that the requests were received. They do not signal that the operation was successful; check the [motion group state](#/operations/streamMotionGroupState) for that. - `MovementErrorResponse` with error details is sent in case of an unexpected error, e.g., controller disconnects during jogging. ### Tips and Tricks - Ensure that the websocket connection remains open until the jogging motion is stopped to avoid unexpected stops.
7351
- * @summary Execute Jogging
8773
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ Localize a pose that is expressed in the `world` coordinate system into the given dataset coordinate system. This is the inverse of the resolve operation: the pose is transformed through the whole chain of parent coordinate systems within the dataset.
8774
+ * @summary Localize Pose from World (Dataset)
7352
8775
  * @param {string} cell Unique identifier addressing a cell in all API calls.
7353
- * @param {string} controller Unique identifier to address a controller in the cell.
7354
- * @param {ExecuteJoggingRequest} executeJoggingRequest
8776
+ * @param {string} dataset Specifies the dataset identifier.
8777
+ * @param {string} coordinateSystem Unique identifier addressing a coordinate system within a teaching dataset.
8778
+ * @param {Pose} pose The pose expressed in the &#x60;world&#x60; coordinate system.
8779
+ * @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
7355
8780
  * @param {*} [options] Override http request option.
7356
8781
  * @throws {RequiredError}
7357
8782
  */
7358
- executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ExecuteJoggingResponse>>;
8783
+ localizeDatasetCoordinateSystemPose(cell: string, dataset: string, coordinateSystem: string, pose: Pose, revision?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Pose>>;
7359
8784
  /**
7360
- * **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.
7361
- * @summary Execute Waypoint Jogging
8785
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ Resolve a pose that is expressed relative to the given dataset coordinate system into the `world` coordinate system. The pose is transformed through the whole chain of parent coordinate systems within the dataset.
8786
+ * @summary Resolve Pose to World (Dataset)
7362
8787
  * @param {string} cell Unique identifier addressing a cell in all API calls.
7363
- * @param {string} controller Unique identifier to address a controller in the cell.
7364
- * @param {ExecuteWaypointJoggingRequest} executeWaypointJoggingRequest
8788
+ * @param {string} dataset Specifies the dataset identifier.
8789
+ * @param {string} coordinateSystem Unique identifier addressing a coordinate system within a teaching dataset.
8790
+ * @param {Pose} pose The pose expressed relative to the given coordinate system.
8791
+ * @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
7365
8792
  * @param {*} [options] Override http request option.
7366
8793
  * @throws {RequiredError}
7367
8794
  */
7368
- executeWaypointJogging(cell: string, controller: string, executeWaypointJoggingRequest: ExecuteWaypointJoggingRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ExecuteWaypointJoggingResponse>>;
8795
+ resolveDatasetCoordinateSystemPose(cell: string, dataset: string, coordinateSystem: string, pose: Pose, revision?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Pose>>;
7369
8796
  };
7370
8797
  /**
7371
- * JoggingApi - factory interface
8798
+ * DatasetsApi - factory interface
7372
8799
  */
7373
- declare const JoggingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
8800
+ declare const DatasetsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
8801
+ /**
8802
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ Localize a pose that is expressed in the `world` coordinate system into the given dataset coordinate system. This is the inverse of the resolve operation: the pose is transformed through the whole chain of parent coordinate systems within the dataset.
8803
+ * @summary Localize Pose from World (Dataset)
8804
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
8805
+ * @param {string} dataset Specifies the dataset identifier.
8806
+ * @param {string} coordinateSystem Unique identifier addressing a coordinate system within a teaching dataset.
8807
+ * @param {Pose} pose The pose expressed in the &#x60;world&#x60; coordinate system.
8808
+ * @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
8809
+ * @param {*} [options] Override http request option.
8810
+ * @throws {RequiredError}
8811
+ */
8812
+ localizeDatasetCoordinateSystemPose(cell: string, dataset: string, coordinateSystem: string, pose: Pose, revision?: number, options?: RawAxiosRequestConfig): AxiosPromise<Pose>;
8813
+ /**
8814
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ Resolve a pose that is expressed relative to the given dataset coordinate system into the `world` coordinate system. The pose is transformed through the whole chain of parent coordinate systems within the dataset.
8815
+ * @summary Resolve Pose to World (Dataset)
8816
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
8817
+ * @param {string} dataset Specifies the dataset identifier.
8818
+ * @param {string} coordinateSystem Unique identifier addressing a coordinate system within a teaching dataset.
8819
+ * @param {Pose} pose The pose expressed relative to the given coordinate system.
8820
+ * @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
8821
+ * @param {*} [options] Override http request option.
8822
+ * @throws {RequiredError}
8823
+ */
8824
+ resolveDatasetCoordinateSystemPose(cell: string, dataset: string, coordinateSystem: string, pose: Pose, revision?: number, options?: RawAxiosRequestConfig): AxiosPromise<Pose>;
8825
+ };
8826
+ /**
8827
+ * DatasetsApi - object-oriented interface
8828
+ */
8829
+ declare class DatasetsApi extends BaseAPI {
8830
+ /**
8831
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ Localize a pose that is expressed in the `world` coordinate system into the given dataset coordinate system. This is the inverse of the resolve operation: the pose is transformed through the whole chain of parent coordinate systems within the dataset.
8832
+ * @summary Localize Pose from World (Dataset)
8833
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
8834
+ * @param {string} dataset Specifies the dataset identifier.
8835
+ * @param {string} coordinateSystem Unique identifier addressing a coordinate system within a teaching dataset.
8836
+ * @param {Pose} pose The pose expressed in the &#x60;world&#x60; coordinate system.
8837
+ * @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
8838
+ * @param {*} [options] Override http request option.
8839
+ * @throws {RequiredError}
8840
+ */
8841
+ localizeDatasetCoordinateSystemPose(cell: string, dataset: string, coordinateSystem: string, pose: Pose, revision?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<Pose, any, {}>>;
8842
+ /**
8843
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ Resolve a pose that is expressed relative to the given dataset coordinate system into the `world` coordinate system. The pose is transformed through the whole chain of parent coordinate systems within the dataset.
8844
+ * @summary Resolve Pose to World (Dataset)
8845
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
8846
+ * @param {string} dataset Specifies the dataset identifier.
8847
+ * @param {string} coordinateSystem Unique identifier addressing a coordinate system within a teaching dataset.
8848
+ * @param {Pose} pose The pose expressed relative to the given coordinate system.
8849
+ * @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
8850
+ * @param {*} [options] Override http request option.
8851
+ * @throws {RequiredError}
8852
+ */
8853
+ resolveDatasetCoordinateSystemPose(cell: string, dataset: string, coordinateSystem: string, pose: Pose, revision?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<Pose, any, {}>>;
8854
+ }
8855
+ /**
8856
+ * JoggingApi - axios parameter creator
8857
+ */
8858
+ declare const JoggingApiAxiosParamCreator: (configuration?: Configuration) => {
7374
8859
  /**
7375
8860
  * **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ <!-- theme: success --> > Websocket endpoint Provides execution control over a dynamically adaptable jogging motion for a motion group. Jogging describes controlling a motion group by sending real-time commands to move either its joints or the TCP. The commands contain target velocities that may change at any time during execution, so the resulting motion cannot be computed upfront. ### Preconditions The motion group is not moved by any other endpoint. ### Requests #### 1. Send `InitializeJoggingRequest` to configure the jogging. - Sets the robot controller mode to control mode. - Claims the motion group for jogging. For robotic arms, TCP is required to ensure that limits, including TCP limits, are respected. #### 2. Send `JointVelocityRequest` or `TcpVelocityRequest` to start the jogging motion. - Commands can only be processed in the cycle rate of the controller - Sending commands faster will not increase the responsiveness of the jogging motion, it will lead to dropped commands - It is recommended to couple sending commands with the [state stream](#/operations/streamMotionGroupState), which can be subscribed to via nats as well. #### 3. Change or stop the jogging motion - Change the jogging direction and/or velocity during the jogging motion with `JointVelocityRequest` or `TcpVelocityRequest`. - To stop the jogging motion, send zero velocities via either request or `PauseJoggingRequest`. ### Responses - Each request is acknowledged with a corresponding response: - `InitializeJoggingResponse` after `InitializeJoggingRequest` - `JointVelocityResponse` after `JointVelocityRequest` - `TcpVelocityResponse` after `TcpVelocityRequest` - `PauseJoggingResponse` after `PauseJoggingRequest` The responses confirm that the requests were received. They do not signal that the operation was successful; check the [motion group state](#/operations/streamMotionGroupState) for that. - `MovementErrorResponse` with error details is sent in case of an unexpected error, e.g., controller disconnects during jogging. ### Tips and Tricks - Ensure that the websocket connection remains open until the jogging motion is stopped to avoid unexpected stops.
7376
8861
  * @summary Execute Jogging
@@ -7380,22 +8865,27 @@ declare const JoggingApiFactory: (configuration?: Configuration, basePath?: stri
7380
8865
  * @param {*} [options] Override http request option.
7381
8866
  * @throws {RequiredError}
7382
8867
  */
7383
- executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): AxiosPromise<ExecuteJoggingResponse>;
8868
+ executeJogging: (cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8869
+ };
8870
+ /**
8871
+ * JoggingApi - functional programming interface
8872
+ */
8873
+ declare const JoggingApiFp: (configuration?: Configuration) => {
7384
8874
  /**
7385
- * **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.
7386
- * @summary Execute Waypoint Jogging
8875
+ * **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ <!-- theme: success --> > Websocket endpoint Provides execution control over a dynamically adaptable jogging motion for a motion group. Jogging describes controlling a motion group by sending real-time commands to move either its joints or the TCP. The commands contain target velocities that may change at any time during execution, so the resulting motion cannot be computed upfront. ### Preconditions The motion group is not moved by any other endpoint. ### Requests #### 1. Send `InitializeJoggingRequest` to configure the jogging. - Sets the robot controller mode to control mode. - Claims the motion group for jogging. For robotic arms, TCP is required to ensure that limits, including TCP limits, are respected. #### 2. Send `JointVelocityRequest` or `TcpVelocityRequest` to start the jogging motion. - Commands can only be processed in the cycle rate of the controller - Sending commands faster will not increase the responsiveness of the jogging motion, it will lead to dropped commands - It is recommended to couple sending commands with the [state stream](#/operations/streamMotionGroupState), which can be subscribed to via nats as well. #### 3. Change or stop the jogging motion - Change the jogging direction and/or velocity during the jogging motion with `JointVelocityRequest` or `TcpVelocityRequest`. - To stop the jogging motion, send zero velocities via either request or `PauseJoggingRequest`. ### Responses - Each request is acknowledged with a corresponding response: - `InitializeJoggingResponse` after `InitializeJoggingRequest` - `JointVelocityResponse` after `JointVelocityRequest` - `TcpVelocityResponse` after `TcpVelocityRequest` - `PauseJoggingResponse` after `PauseJoggingRequest` The responses confirm that the requests were received. They do not signal that the operation was successful; check the [motion group state](#/operations/streamMotionGroupState) for that. - `MovementErrorResponse` with error details is sent in case of an unexpected error, e.g., controller disconnects during jogging. ### Tips and Tricks - Ensure that the websocket connection remains open until the jogging motion is stopped to avoid unexpected stops.
8876
+ * @summary Execute Jogging
7387
8877
  * @param {string} cell Unique identifier addressing a cell in all API calls.
7388
8878
  * @param {string} controller Unique identifier to address a controller in the cell.
7389
- * @param {ExecuteWaypointJoggingRequest} executeWaypointJoggingRequest
8879
+ * @param {ExecuteJoggingRequest} executeJoggingRequest
7390
8880
  * @param {*} [options] Override http request option.
7391
8881
  * @throws {RequiredError}
7392
8882
  */
7393
- executeWaypointJogging(cell: string, controller: string, executeWaypointJoggingRequest: ExecuteWaypointJoggingRequest, options?: RawAxiosRequestConfig): AxiosPromise<ExecuteWaypointJoggingResponse>;
8883
+ executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ExecuteJoggingResponse>>;
7394
8884
  };
7395
8885
  /**
7396
- * JoggingApi - object-oriented interface
8886
+ * JoggingApi - factory interface
7397
8887
  */
7398
- declare class JoggingApi extends BaseAPI {
8888
+ declare const JoggingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
7399
8889
  /**
7400
8890
  * **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ <!-- theme: success --> > Websocket endpoint Provides execution control over a dynamically adaptable jogging motion for a motion group. Jogging describes controlling a motion group by sending real-time commands to move either its joints or the TCP. The commands contain target velocities that may change at any time during execution, so the resulting motion cannot be computed upfront. ### Preconditions The motion group is not moved by any other endpoint. ### Requests #### 1. Send `InitializeJoggingRequest` to configure the jogging. - Sets the robot controller mode to control mode. - Claims the motion group for jogging. For robotic arms, TCP is required to ensure that limits, including TCP limits, are respected. #### 2. Send `JointVelocityRequest` or `TcpVelocityRequest` to start the jogging motion. - Commands can only be processed in the cycle rate of the controller - Sending commands faster will not increase the responsiveness of the jogging motion, it will lead to dropped commands - It is recommended to couple sending commands with the [state stream](#/operations/streamMotionGroupState), which can be subscribed to via nats as well. #### 3. Change or stop the jogging motion - Change the jogging direction and/or velocity during the jogging motion with `JointVelocityRequest` or `TcpVelocityRequest`. - To stop the jogging motion, send zero velocities via either request or `PauseJoggingRequest`. ### Responses - Each request is acknowledged with a corresponding response: - `InitializeJoggingResponse` after `InitializeJoggingRequest` - `JointVelocityResponse` after `JointVelocityRequest` - `TcpVelocityResponse` after `TcpVelocityRequest` - `PauseJoggingResponse` after `PauseJoggingRequest` The responses confirm that the requests were received. They do not signal that the operation was successful; check the [motion group state](#/operations/streamMotionGroupState) for that. - `MovementErrorResponse` with error details is sent in case of an unexpected error, e.g., controller disconnects during jogging. ### Tips and Tricks - Ensure that the websocket connection remains open until the jogging motion is stopped to avoid unexpected stops.
7401
8891
  * @summary Execute Jogging
@@ -7405,17 +8895,22 @@ declare class JoggingApi extends BaseAPI {
7405
8895
  * @param {*} [options] Override http request option.
7406
8896
  * @throws {RequiredError}
7407
8897
  */
7408
- executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ExecuteJoggingResponse, any, {}>>;
8898
+ executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): AxiosPromise<ExecuteJoggingResponse>;
8899
+ };
8900
+ /**
8901
+ * JoggingApi - object-oriented interface
8902
+ */
8903
+ declare class JoggingApi extends BaseAPI {
7409
8904
  /**
7410
- * **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.
7411
- * @summary Execute Waypoint Jogging
8905
+ * **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ <!-- theme: success --> > Websocket endpoint Provides execution control over a dynamically adaptable jogging motion for a motion group. Jogging describes controlling a motion group by sending real-time commands to move either its joints or the TCP. The commands contain target velocities that may change at any time during execution, so the resulting motion cannot be computed upfront. ### Preconditions The motion group is not moved by any other endpoint. ### Requests #### 1. Send `InitializeJoggingRequest` to configure the jogging. - Sets the robot controller mode to control mode. - Claims the motion group for jogging. For robotic arms, TCP is required to ensure that limits, including TCP limits, are respected. #### 2. Send `JointVelocityRequest` or `TcpVelocityRequest` to start the jogging motion. - Commands can only be processed in the cycle rate of the controller - Sending commands faster will not increase the responsiveness of the jogging motion, it will lead to dropped commands - It is recommended to couple sending commands with the [state stream](#/operations/streamMotionGroupState), which can be subscribed to via nats as well. #### 3. Change or stop the jogging motion - Change the jogging direction and/or velocity during the jogging motion with `JointVelocityRequest` or `TcpVelocityRequest`. - To stop the jogging motion, send zero velocities via either request or `PauseJoggingRequest`. ### Responses - Each request is acknowledged with a corresponding response: - `InitializeJoggingResponse` after `InitializeJoggingRequest` - `JointVelocityResponse` after `JointVelocityRequest` - `TcpVelocityResponse` after `TcpVelocityRequest` - `PauseJoggingResponse` after `PauseJoggingRequest` The responses confirm that the requests were received. They do not signal that the operation was successful; check the [motion group state](#/operations/streamMotionGroupState) for that. - `MovementErrorResponse` with error details is sent in case of an unexpected error, e.g., controller disconnects during jogging. ### Tips and Tricks - Ensure that the websocket connection remains open until the jogging motion is stopped to avoid unexpected stops.
8906
+ * @summary Execute Jogging
7412
8907
  * @param {string} cell Unique identifier addressing a cell in all API calls.
7413
8908
  * @param {string} controller Unique identifier to address a controller in the cell.
7414
- * @param {ExecuteWaypointJoggingRequest} executeWaypointJoggingRequest
8909
+ * @param {ExecuteJoggingRequest} executeJoggingRequest
7415
8910
  * @param {*} [options] Override http request option.
7416
8911
  * @throws {RequiredError}
7417
8912
  */
7418
- executeWaypointJogging(cell: string, controller: string, executeWaypointJoggingRequest: ExecuteWaypointJoggingRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ExecuteWaypointJoggingResponse, any, {}>>;
8913
+ executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ExecuteJoggingResponse, any, {}>>;
7419
8914
  }
7420
8915
  /**
7421
8916
  * KinematicsApi - axios parameter creator
@@ -7448,6 +8943,15 @@ declare const KinematicsApiAxiosParamCreator: (configuration?: Configuration) =>
7448
8943
  * @throws {RequiredError}
7449
8944
  */
7450
8945
  forwardKinematics: (cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8946
+ /**
8947
+ * **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.
8948
+ * @summary Get kinematic configuration
8949
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
8950
+ * @param {GetKinematicConfigurationRequest} getKinematicConfigurationRequest
8951
+ * @param {*} [options] Override http request option.
8952
+ * @throws {RequiredError}
8953
+ */
8954
+ getKinematicConfiguration: (cell: string, getKinematicConfigurationRequest: GetKinematicConfigurationRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7451
8955
  /**
7452
8956
  * **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the reachable joint positions for a list of given poses.
7453
8957
  * @summary Inverse kinematics
@@ -7498,6 +9002,15 @@ declare const KinematicsApiFp: (configuration?: Configuration) => {
7498
9002
  * @throws {RequiredError}
7499
9003
  */
7500
9004
  forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ForwardKinematicsResponse>>;
9005
+ /**
9006
+ * **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.
9007
+ * @summary Get kinematic configuration
9008
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
9009
+ * @param {GetKinematicConfigurationRequest} getKinematicConfigurationRequest
9010
+ * @param {*} [options] Override http request option.
9011
+ * @throws {RequiredError}
9012
+ */
9013
+ getKinematicConfiguration(cell: string, getKinematicConfigurationRequest: GetKinematicConfigurationRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetKinematicConfigurationResponse>>;
7501
9014
  /**
7502
9015
  * **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the reachable joint positions for a list of given poses.
7503
9016
  * @summary Inverse kinematics
@@ -7548,6 +9061,15 @@ declare const KinematicsApiFactory: (configuration?: Configuration, basePath?: s
7548
9061
  * @throws {RequiredError}
7549
9062
  */
7550
9063
  forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ForwardKinematicsResponse>;
9064
+ /**
9065
+ * **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.
9066
+ * @summary Get kinematic configuration
9067
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
9068
+ * @param {GetKinematicConfigurationRequest} getKinematicConfigurationRequest
9069
+ * @param {*} [options] Override http request option.
9070
+ * @throws {RequiredError}
9071
+ */
9072
+ getKinematicConfiguration(cell: string, getKinematicConfigurationRequest: GetKinematicConfigurationRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetKinematicConfigurationResponse>;
7551
9073
  /**
7552
9074
  * **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the reachable joint positions for a list of given poses.
7553
9075
  * @summary Inverse kinematics
@@ -7598,6 +9120,15 @@ declare class KinematicsApi extends BaseAPI {
7598
9120
  * @throws {RequiredError}
7599
9121
  */
7600
9122
  forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ForwardKinematicsResponse, any, {}>>;
9123
+ /**
9124
+ * **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.
9125
+ * @summary Get kinematic configuration
9126
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
9127
+ * @param {GetKinematicConfigurationRequest} getKinematicConfigurationRequest
9128
+ * @param {*} [options] Override http request option.
9129
+ * @throws {RequiredError}
9130
+ */
9131
+ getKinematicConfiguration(cell: string, getKinematicConfigurationRequest: GetKinematicConfigurationRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<GetKinematicConfigurationResponse, any, {}>>;
7601
9132
  /**
7602
9133
  * **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the reachable joint positions for a list of given poses.
7603
9134
  * @summary Inverse kinematics
@@ -7919,7 +9450,7 @@ declare const MotionGroupModelsApiAxiosParamCreator: (configuration?: Configurat
7919
9450
  */
7920
9451
  copyMotionGroupModel: (motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7921
9452
  /**
7922
- * **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.
9453
+ * **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.
7923
9454
  * @summary Delete Motion Group Model
7924
9455
  * @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).
7925
9456
  * @param {*} [options] Override http request option.
@@ -7934,6 +9465,14 @@ declare const MotionGroupModelsApiAxiosParamCreator: (configuration?: Configurat
7934
9465
  * @throws {RequiredError}
7935
9466
  */
7936
9467
  exportMotionGroupModel: (motionGroupModel: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9468
+ /**
9469
+ * **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.
9470
+ * @summary Get Configuration for Motion Group
9471
+ * @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).
9472
+ * @param {*} [options] Override http request option.
9473
+ * @throws {RequiredError}
9474
+ */
9475
+ getConfigurationForMotionGroup: (motionGroupModel: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7937
9476
  /**
7938
9477
  * **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.
7939
9478
  * @summary Get Collision Model
@@ -7989,6 +9528,13 @@ declare const MotionGroupModelsApiAxiosParamCreator: (configuration?: Configurat
7989
9528
  * @throws {RequiredError}
7990
9529
  */
7991
9530
  getMotionGroupModels: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9531
+ /**
9532
+ * **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.
9533
+ * @summary Motion Group Model Catalog
9534
+ * @param {*} [options] Override http request option.
9535
+ * @throws {RequiredError}
9536
+ */
9537
+ getMotionGroupModelsCatalog: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7992
9538
  /**
7993
9539
  * **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.
7994
9540
  * @summary Download USD Model
@@ -8020,7 +9566,7 @@ declare const MotionGroupModelsApiFp: (configuration?: Configuration) => {
8020
9566
  */
8021
9567
  copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MotionGroupModelDescription>>;
8022
9568
  /**
8023
- * **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.
9569
+ * **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.
8024
9570
  * @summary Delete Motion Group Model
8025
9571
  * @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).
8026
9572
  * @param {*} [options] Override http request option.
@@ -8035,6 +9581,14 @@ declare const MotionGroupModelsApiFp: (configuration?: Configuration) => {
8035
9581
  * @throws {RequiredError}
8036
9582
  */
8037
9583
  exportMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
9584
+ /**
9585
+ * **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.
9586
+ * @summary Get Configuration for Motion Group
9587
+ * @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).
9588
+ * @param {*} [options] Override http request option.
9589
+ * @throws {RequiredError}
9590
+ */
9591
+ getConfigurationForMotionGroup(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MotionGroupConfiguration>>;
8038
9592
  /**
8039
9593
  * **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.
8040
9594
  * @summary Get Collision Model
@@ -8092,6 +9646,13 @@ declare const MotionGroupModelsApiFp: (configuration?: Configuration) => {
8092
9646
  * @throws {RequiredError}
8093
9647
  */
8094
9648
  getMotionGroupModels(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<string>>>;
9649
+ /**
9650
+ * **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.
9651
+ * @summary Motion Group Model Catalog
9652
+ * @param {*} [options] Override http request option.
9653
+ * @throws {RequiredError}
9654
+ */
9655
+ getMotionGroupModelsCatalog(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MotionGroupModelCatalog>>>;
8095
9656
  /**
8096
9657
  * **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.
8097
9658
  * @summary Download USD Model
@@ -8123,7 +9684,7 @@ declare const MotionGroupModelsApiFactory: (configuration?: Configuration, baseP
8123
9684
  */
8124
9685
  copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig): AxiosPromise<MotionGroupModelDescription>;
8125
9686
  /**
8126
- * **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.
9687
+ * **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.
8127
9688
  * @summary Delete Motion Group Model
8128
9689
  * @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).
8129
9690
  * @param {*} [options] Override http request option.
@@ -8138,6 +9699,14 @@ declare const MotionGroupModelsApiFactory: (configuration?: Configuration, baseP
8138
9699
  * @throws {RequiredError}
8139
9700
  */
8140
9701
  exportMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): AxiosPromise<File>;
9702
+ /**
9703
+ * **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.
9704
+ * @summary Get Configuration for Motion Group
9705
+ * @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).
9706
+ * @param {*} [options] Override http request option.
9707
+ * @throws {RequiredError}
9708
+ */
9709
+ getConfigurationForMotionGroup(motionGroupModel: string, options?: RawAxiosRequestConfig): AxiosPromise<MotionGroupConfiguration>;
8141
9710
  /**
8142
9711
  * **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.
8143
9712
  * @summary Get Collision Model
@@ -8195,6 +9764,13 @@ declare const MotionGroupModelsApiFactory: (configuration?: Configuration, baseP
8195
9764
  * @throws {RequiredError}
8196
9765
  */
8197
9766
  getMotionGroupModels(options?: RawAxiosRequestConfig): AxiosPromise<Array<string>>;
9767
+ /**
9768
+ * **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.
9769
+ * @summary Motion Group Model Catalog
9770
+ * @param {*} [options] Override http request option.
9771
+ * @throws {RequiredError}
9772
+ */
9773
+ getMotionGroupModelsCatalog(options?: RawAxiosRequestConfig): AxiosPromise<Array<MotionGroupModelCatalog>>;
8198
9774
  /**
8199
9775
  * **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.
8200
9776
  * @summary Download USD Model
@@ -8226,7 +9802,7 @@ declare class MotionGroupModelsApi extends BaseAPI {
8226
9802
  */
8227
9803
  copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MotionGroupModelDescription, any, {}>>;
8228
9804
  /**
8229
- * **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.
9805
+ * **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.
8230
9806
  * @summary Delete Motion Group Model
8231
9807
  * @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).
8232
9808
  * @param {*} [options] Override http request option.
@@ -8241,6 +9817,14 @@ declare class MotionGroupModelsApi extends BaseAPI {
8241
9817
  * @throws {RequiredError}
8242
9818
  */
8243
9819
  exportMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<File, any, {}>>;
9820
+ /**
9821
+ * **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.
9822
+ * @summary Get Configuration for Motion Group
9823
+ * @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).
9824
+ * @param {*} [options] Override http request option.
9825
+ * @throws {RequiredError}
9826
+ */
9827
+ getConfigurationForMotionGroup(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MotionGroupConfiguration, any, {}>>;
8244
9828
  /**
8245
9829
  * **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.
8246
9830
  * @summary Get Collision Model
@@ -8298,6 +9882,13 @@ declare class MotionGroupModelsApi extends BaseAPI {
8298
9882
  * @throws {RequiredError}
8299
9883
  */
8300
9884
  getMotionGroupModels(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string[], any, {}>>;
9885
+ /**
9886
+ * **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.
9887
+ * @summary Motion Group Model Catalog
9888
+ * @param {*} [options] Override http request option.
9889
+ * @throws {RequiredError}
9890
+ */
9891
+ getMotionGroupModelsCatalog(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MotionGroupModelCatalog[], any, {}>>;
8301
9892
  /**
8302
9893
  * **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.
8303
9894
  * @summary Download USD Model
@@ -8336,6 +9927,13 @@ declare const NOVACloudApiAxiosParamCreator: (configuration?: Configuration) =>
8336
9927
  * @throws {RequiredError}
8337
9928
  */
8338
9929
  disconnectFromNovaCloud: (completionTimeout?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9930
+ /**
9931
+ * **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.
9932
+ * @summary Get Connection Status
9933
+ * @param {*} [options] Override http request option.
9934
+ * @throws {RequiredError}
9935
+ */
9936
+ getCloudStatus: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8339
9937
  /**
8340
9938
  * **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection config for this instance.
8341
9939
  * @summary Get Connection Config
@@ -8365,6 +9963,13 @@ declare const NOVACloudApiFp: (configuration?: Configuration) => {
8365
9963
  * @throws {RequiredError}
8366
9964
  */
8367
9965
  disconnectFromNovaCloud(completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CloudDisconnectionStatusDisconnected>>;
9966
+ /**
9967
+ * **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.
9968
+ * @summary Get Connection Status
9969
+ * @param {*} [options] Override http request option.
9970
+ * @throws {RequiredError}
9971
+ */
9972
+ getCloudStatus(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CloudStatus>>;
8368
9973
  /**
8369
9974
  * **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection config for this instance.
8370
9975
  * @summary Get Connection Config
@@ -8394,6 +9999,13 @@ declare const NOVACloudApiFactory: (configuration?: Configuration, basePath?: st
8394
9999
  * @throws {RequiredError}
8395
10000
  */
8396
10001
  disconnectFromNovaCloud(completionTimeout?: number, options?: RawAxiosRequestConfig): AxiosPromise<CloudDisconnectionStatusDisconnected>;
10002
+ /**
10003
+ * **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.
10004
+ * @summary Get Connection Status
10005
+ * @param {*} [options] Override http request option.
10006
+ * @throws {RequiredError}
10007
+ */
10008
+ getCloudStatus(options?: RawAxiosRequestConfig): AxiosPromise<CloudStatus>;
8397
10009
  /**
8398
10010
  * **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection config for this instance.
8399
10011
  * @summary Get Connection Config
@@ -8423,6 +10035,13 @@ declare class NOVACloudApi extends BaseAPI {
8423
10035
  * @throws {RequiredError}
8424
10036
  */
8425
10037
  disconnectFromNovaCloud(completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<CloudDisconnectionStatusDisconnected, any, {}>>;
10038
+ /**
10039
+ * **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.
10040
+ * @summary Get Connection Status
10041
+ * @param {*} [options] Override http request option.
10042
+ * @throws {RequiredError}
10043
+ */
10044
+ getCloudStatus(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<CloudStatus, any, {}>>;
8426
10045
  /**
8427
10046
  * **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection config for this instance.
8428
10047
  * @summary Get Connection Config
@@ -9811,15 +11430,15 @@ declare const SystemApiAxiosParamCreator: (configuration?: Configuration) => {
9811
11430
  */
9812
11431
  checkNovaVersionUpdate: (channel: ReleaseChannel, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9813
11432
  /**
9814
- * **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Performs an address resolution protocol (ARP) scan on the specified interface/classless inter-domain routing (CIDR) and returns all discovered devices on the network by CIDR notation.
11433
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ Runs an ARP scan on the target interface and returns all discovered devices.
9815
11434
  * @summary Get ARP-Scan
9816
- * @param {string} [_interface]
9817
- * @param {string} [cidr]
11435
+ * @param {string} _interface
11436
+ * @param {string} cidr
9818
11437
  * @param {number} [timeout]
9819
11438
  * @param {*} [options] Override http request option.
9820
11439
  * @throws {RequiredError}
9821
11440
  */
9822
- getArpScan: (_interface?: string, cidr?: string, timeout?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11441
+ getArpScan: (_interface: string, cidr: string, timeout?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9823
11442
  /**
9824
11443
  * **Required permissions:** `can_backup_system` - Create system backups ___ Retrieves the status of a configuration backup. The status can only be requested for 5 minutes after backup creation. After 5 minutes, 404 is returned.
9825
11444
  * @summary Retrieve Backup Status
@@ -9836,7 +11455,7 @@ declare const SystemApiAxiosParamCreator: (configuration?: Configuration) => {
9836
11455
  */
9837
11456
  getDiagnosePackage: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9838
11457
  /**
9839
- * **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the network interfaces of the system.
11458
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ Lists all managed network interfaces available for controller connections and ARP scanning.
9840
11459
  * @summary Network Interfaces
9841
11460
  * @param {*} [options] Override http request option.
9842
11461
  * @throws {RequiredError}
@@ -9912,15 +11531,15 @@ declare const SystemApiFp: (configuration?: Configuration) => {
9912
11531
  */
9913
11532
  checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
9914
11533
  /**
9915
- * **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Performs an address resolution protocol (ARP) scan on the specified interface/classless inter-domain routing (CIDR) and returns all discovered devices on the network by CIDR notation.
11534
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ Runs an ARP scan on the target interface and returns all discovered devices.
9916
11535
  * @summary Get ARP-Scan
9917
- * @param {string} [_interface]
9918
- * @param {string} [cidr]
11536
+ * @param {string} _interface
11537
+ * @param {string} cidr
9919
11538
  * @param {number} [timeout]
9920
11539
  * @param {*} [options] Override http request option.
9921
11540
  * @throws {RequiredError}
9922
11541
  */
9923
- getArpScan(_interface?: string, cidr?: string, timeout?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<NetworkDevice>>>;
11542
+ getArpScan(_interface: string, cidr: string, timeout?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<NetworkDevice>>>;
9924
11543
  /**
9925
11544
  * **Required permissions:** `can_backup_system` - Create system backups ___ Retrieves the status of a configuration backup. The status can only be requested for 5 minutes after backup creation. After 5 minutes, 404 is returned.
9926
11545
  * @summary Retrieve Backup Status
@@ -9937,7 +11556,7 @@ declare const SystemApiFp: (configuration?: Configuration) => {
9937
11556
  */
9938
11557
  getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
9939
11558
  /**
9940
- * **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the network interfaces of the system.
11559
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ Lists all managed network interfaces available for controller connections and ARP scanning.
9941
11560
  * @summary Network Interfaces
9942
11561
  * @param {*} [options] Override http request option.
9943
11562
  * @throws {RequiredError}
@@ -10013,15 +11632,15 @@ declare const SystemApiFactory: (configuration?: Configuration, basePath?: strin
10013
11632
  */
10014
11633
  checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): AxiosPromise<string>;
10015
11634
  /**
10016
- * **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Performs an address resolution protocol (ARP) scan on the specified interface/classless inter-domain routing (CIDR) and returns all discovered devices on the network by CIDR notation.
11635
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ Runs an ARP scan on the target interface and returns all discovered devices.
10017
11636
  * @summary Get ARP-Scan
10018
- * @param {string} [_interface]
10019
- * @param {string} [cidr]
11637
+ * @param {string} _interface
11638
+ * @param {string} cidr
10020
11639
  * @param {number} [timeout]
10021
11640
  * @param {*} [options] Override http request option.
10022
11641
  * @throws {RequiredError}
10023
11642
  */
10024
- getArpScan(_interface?: string, cidr?: string, timeout?: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<NetworkDevice>>;
11643
+ getArpScan(_interface: string, cidr: string, timeout?: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<NetworkDevice>>;
10025
11644
  /**
10026
11645
  * **Required permissions:** `can_backup_system` - Create system backups ___ Retrieves the status of a configuration backup. The status can only be requested for 5 minutes after backup creation. After 5 minutes, 404 is returned.
10027
11646
  * @summary Retrieve Backup Status
@@ -10038,7 +11657,7 @@ declare const SystemApiFactory: (configuration?: Configuration, basePath?: strin
10038
11657
  */
10039
11658
  getDiagnosePackage(options?: RawAxiosRequestConfig): AxiosPromise<File>;
10040
11659
  /**
10041
- * **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the network interfaces of the system.
11660
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ Lists all managed network interfaces available for controller connections and ARP scanning.
10042
11661
  * @summary Network Interfaces
10043
11662
  * @param {*} [options] Override http request option.
10044
11663
  * @throws {RequiredError}
@@ -10114,15 +11733,15 @@ declare class SystemApi extends BaseAPI {
10114
11733
  */
10115
11734
  checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string, any, {}>>;
10116
11735
  /**
10117
- * **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Performs an address resolution protocol (ARP) scan on the specified interface/classless inter-domain routing (CIDR) and returns all discovered devices on the network by CIDR notation.
11736
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ Runs an ARP scan on the target interface and returns all discovered devices.
10118
11737
  * @summary Get ARP-Scan
10119
- * @param {string} [_interface]
10120
- * @param {string} [cidr]
11738
+ * @param {string} _interface
11739
+ * @param {string} cidr
10121
11740
  * @param {number} [timeout]
10122
11741
  * @param {*} [options] Override http request option.
10123
11742
  * @throws {RequiredError}
10124
11743
  */
10125
- getArpScan(_interface?: string, cidr?: string, timeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<NetworkDevice[], any, {}>>;
11744
+ getArpScan(_interface: string, cidr: string, timeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<NetworkDevice[], any, {}>>;
10126
11745
  /**
10127
11746
  * **Required permissions:** `can_backup_system` - Create system backups ___ Retrieves the status of a configuration backup. The status can only be requested for 5 minutes after backup creation. After 5 minutes, 404 is returned.
10128
11747
  * @summary Retrieve Backup Status
@@ -10139,7 +11758,7 @@ declare class SystemApi extends BaseAPI {
10139
11758
  */
10140
11759
  getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<File, any, {}>>;
10141
11760
  /**
10142
- * **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the network interfaces of the system.
11761
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ Lists all managed network interfaces available for controller connections and ARP scanning.
10143
11762
  * @summary Network Interfaces
10144
11763
  * @param {*} [options] Override http request option.
10145
11764
  * @throws {RequiredError}
@@ -10191,6 +11810,182 @@ declare class SystemApi extends BaseAPI {
10191
11810
  */
10192
11811
  updateNovaVersion(updateNovaVersionRequest: UpdateNovaVersionRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
10193
11812
  }
11813
+ /**
11814
+ * TeachingApi - axios parameter creator
11815
+ */
11816
+ declare const TeachingApiAxiosParamCreator: (configuration?: Configuration) => {
11817
+ /**
11818
+ * Creates a new teaching dataset together with its poses and command routines.
11819
+ * @summary Create Dataset
11820
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
11821
+ * @param {CreateDatasetRequest} createDatasetRequest
11822
+ * @param {*} [options] Override http request option.
11823
+ * @throws {RequiredError}
11824
+ */
11825
+ createDataset: (cell: string, createDatasetRequest: CreateDatasetRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11826
+ /**
11827
+ * Deletes a teaching dataset together with its persisted poses and command routines. Deletes the requested revision when the `revision` query parameter is set; otherwise deletes the latest revision. <!-- theme: danger --> > This will delete persistently stored data.
11828
+ * @summary Delete Dataset
11829
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
11830
+ * @param {string} dataset Specifies the dataset identifier.
11831
+ * @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
11832
+ * @param {*} [options] Override http request option.
11833
+ * @throws {RequiredError}
11834
+ */
11835
+ deleteDataset: (cell: string, dataset: string, revision?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11836
+ /**
11837
+ * Returns a teaching dataset together with its persisted poses and command routines. Returns the requested revision when the `revision` query parameter is set; otherwise returns the latest revision.
11838
+ * @summary Get Dataset
11839
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
11840
+ * @param {string} dataset Specifies the dataset identifier.
11841
+ * @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
11842
+ * @param {*} [options] Override http request option.
11843
+ * @throws {RequiredError}
11844
+ */
11845
+ getDataset: (cell: string, dataset: string, revision?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11846
+ /**
11847
+ * Returns the list of available teaching datasets. Without query parameters, all datasets across all revisions are returned. Use `dataset` to return all revisions of a single dataset. Use `latest_only` to return only the latest revision of each dataset.
11848
+ * @summary List Datasets
11849
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
11850
+ * @param {string} [dataset] Restricts the result to all revisions of the given dataset.
11851
+ * @param {boolean} [latestOnly] When &#x60;true&#x60;, returns only the latest revision of each dataset.
11852
+ * @param {*} [options] Override http request option.
11853
+ * @throws {RequiredError}
11854
+ */
11855
+ getDatasets: (cell: string, dataset?: string, latestOnly?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11856
+ };
11857
+ /**
11858
+ * TeachingApi - functional programming interface
11859
+ */
11860
+ declare const TeachingApiFp: (configuration?: Configuration) => {
11861
+ /**
11862
+ * Creates a new teaching dataset together with its poses and command routines.
11863
+ * @summary Create Dataset
11864
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
11865
+ * @param {CreateDatasetRequest} createDatasetRequest
11866
+ * @param {*} [options] Override http request option.
11867
+ * @throws {RequiredError}
11868
+ */
11869
+ createDataset(cell: string, createDatasetRequest: CreateDatasetRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetDatasetResponse>>;
11870
+ /**
11871
+ * Deletes a teaching dataset together with its persisted poses and command routines. Deletes the requested revision when the `revision` query parameter is set; otherwise deletes the latest revision. <!-- theme: danger --> > This will delete persistently stored data.
11872
+ * @summary Delete Dataset
11873
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
11874
+ * @param {string} dataset Specifies the dataset identifier.
11875
+ * @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
11876
+ * @param {*} [options] Override http request option.
11877
+ * @throws {RequiredError}
11878
+ */
11879
+ deleteDataset(cell: string, dataset: string, revision?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
11880
+ /**
11881
+ * Returns a teaching dataset together with its persisted poses and command routines. Returns the requested revision when the `revision` query parameter is set; otherwise returns the latest revision.
11882
+ * @summary Get Dataset
11883
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
11884
+ * @param {string} dataset Specifies the dataset identifier.
11885
+ * @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
11886
+ * @param {*} [options] Override http request option.
11887
+ * @throws {RequiredError}
11888
+ */
11889
+ getDataset(cell: string, dataset: string, revision?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetDatasetResponse>>;
11890
+ /**
11891
+ * Returns the list of available teaching datasets. Without query parameters, all datasets across all revisions are returned. Use `dataset` to return all revisions of a single dataset. Use `latest_only` to return only the latest revision of each dataset.
11892
+ * @summary List Datasets
11893
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
11894
+ * @param {string} [dataset] Restricts the result to all revisions of the given dataset.
11895
+ * @param {boolean} [latestOnly] When &#x60;true&#x60;, returns only the latest revision of each dataset.
11896
+ * @param {*} [options] Override http request option.
11897
+ * @throws {RequiredError}
11898
+ */
11899
+ getDatasets(cell: string, dataset?: string, latestOnly?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Dataset>>>;
11900
+ };
11901
+ /**
11902
+ * TeachingApi - factory interface
11903
+ */
11904
+ declare const TeachingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
11905
+ /**
11906
+ * Creates a new teaching dataset together with its poses and command routines.
11907
+ * @summary Create Dataset
11908
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
11909
+ * @param {CreateDatasetRequest} createDatasetRequest
11910
+ * @param {*} [options] Override http request option.
11911
+ * @throws {RequiredError}
11912
+ */
11913
+ createDataset(cell: string, createDatasetRequest: CreateDatasetRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetDatasetResponse>;
11914
+ /**
11915
+ * Deletes a teaching dataset together with its persisted poses and command routines. Deletes the requested revision when the `revision` query parameter is set; otherwise deletes the latest revision. <!-- theme: danger --> > This will delete persistently stored data.
11916
+ * @summary Delete Dataset
11917
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
11918
+ * @param {string} dataset Specifies the dataset identifier.
11919
+ * @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
11920
+ * @param {*} [options] Override http request option.
11921
+ * @throws {RequiredError}
11922
+ */
11923
+ deleteDataset(cell: string, dataset: string, revision?: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
11924
+ /**
11925
+ * Returns a teaching dataset together with its persisted poses and command routines. Returns the requested revision when the `revision` query parameter is set; otherwise returns the latest revision.
11926
+ * @summary Get Dataset
11927
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
11928
+ * @param {string} dataset Specifies the dataset identifier.
11929
+ * @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
11930
+ * @param {*} [options] Override http request option.
11931
+ * @throws {RequiredError}
11932
+ */
11933
+ getDataset(cell: string, dataset: string, revision?: number, options?: RawAxiosRequestConfig): AxiosPromise<GetDatasetResponse>;
11934
+ /**
11935
+ * Returns the list of available teaching datasets. Without query parameters, all datasets across all revisions are returned. Use `dataset` to return all revisions of a single dataset. Use `latest_only` to return only the latest revision of each dataset.
11936
+ * @summary List Datasets
11937
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
11938
+ * @param {string} [dataset] Restricts the result to all revisions of the given dataset.
11939
+ * @param {boolean} [latestOnly] When &#x60;true&#x60;, returns only the latest revision of each dataset.
11940
+ * @param {*} [options] Override http request option.
11941
+ * @throws {RequiredError}
11942
+ */
11943
+ getDatasets(cell: string, dataset?: string, latestOnly?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<Array<Dataset>>;
11944
+ };
11945
+ /**
11946
+ * TeachingApi - object-oriented interface
11947
+ */
11948
+ declare class TeachingApi extends BaseAPI {
11949
+ /**
11950
+ * Creates a new teaching dataset together with its poses and command routines.
11951
+ * @summary Create Dataset
11952
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
11953
+ * @param {CreateDatasetRequest} createDatasetRequest
11954
+ * @param {*} [options] Override http request option.
11955
+ * @throws {RequiredError}
11956
+ */
11957
+ createDataset(cell: string, createDatasetRequest: CreateDatasetRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<GetDatasetResponse, any, {}>>;
11958
+ /**
11959
+ * Deletes a teaching dataset together with its persisted poses and command routines. Deletes the requested revision when the `revision` query parameter is set; otherwise deletes the latest revision. <!-- theme: danger --> > This will delete persistently stored data.
11960
+ * @summary Delete Dataset
11961
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
11962
+ * @param {string} dataset Specifies the dataset identifier.
11963
+ * @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
11964
+ * @param {*} [options] Override http request option.
11965
+ * @throws {RequiredError}
11966
+ */
11967
+ deleteDataset(cell: string, dataset: string, revision?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
11968
+ /**
11969
+ * Returns a teaching dataset together with its persisted poses and command routines. Returns the requested revision when the `revision` query parameter is set; otherwise returns the latest revision.
11970
+ * @summary Get Dataset
11971
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
11972
+ * @param {string} dataset Specifies the dataset identifier.
11973
+ * @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
11974
+ * @param {*} [options] Override http request option.
11975
+ * @throws {RequiredError}
11976
+ */
11977
+ getDataset(cell: string, dataset: string, revision?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<GetDatasetResponse, any, {}>>;
11978
+ /**
11979
+ * Returns the list of available teaching datasets. Without query parameters, all datasets across all revisions are returned. Use `dataset` to return all revisions of a single dataset. Use `latest_only` to return only the latest revision of each dataset.
11980
+ * @summary List Datasets
11981
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
11982
+ * @param {string} [dataset] Restricts the result to all revisions of the given dataset.
11983
+ * @param {boolean} [latestOnly] When &#x60;true&#x60;, returns only the latest revision of each dataset.
11984
+ * @param {*} [options] Override http request option.
11985
+ * @throws {RequiredError}
11986
+ */
11987
+ getDatasets(cell: string, dataset?: string, latestOnly?: boolean, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<Dataset[], any, {}>>;
11988
+ }
10194
11989
  /**
10195
11990
  * TrajectoryCachingApi - axios parameter creator
10196
11991
  */
@@ -11907,5 +13702,5 @@ declare class Nova {
11907
13702
  openReconnectingWebsocket(path: string): AutoReconnectingWebsocket;
11908
13703
  }
11909
13704
  //#endregion
11910
- 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 };
11911
- //# sourceMappingURL=Nova-DdbUm145.d.mts.map
13705
+ export { BoxShapeTypeEnum as $, InitializeMovementRequestTrajectory as $a, PathCubicSplinePathDefinitionNameEnum as $c, StoreCollisionSetupsApiAxiosParamCreator as $d, TrajectoryPausedOnIOKindEnum as $f, Flag as $i, Plane as $l, ContainerImage as $n, KinematicConfiguration as $o, ZodValidationError as $p, ErrorJointPositionCollisionErrorFeedbackNameEnum as $r, MotionGroupApiFp as $s, CloudConnectionErrorLeafnodeRestartTimeoutCodeEnum as $t, SafetyGeometry as $u, AtReference as A, IOFloatValueValueTypeEnum as Aa, MultiSearchCollisionFreeValidationErrorAllOfData as Ac, Snap7IODirection as Ad, TorqueExceededError as Af, FeedbackDirectionConstraintNoSolutionExistsErrorFeedbackNameEnum as Ai, PauseJoggingRequestMessageTypeEnum as Al, CollisionSetupValueOrKey as An, JoggingPausedNearSingularityKindEnum as Ao, VirtualControllerApi as Ap, DatasetCoordinateSystem as Ar, MergeTrajectories422Response as As, Cell as At, ProjectJointPositionDirectionConstraintValidationErrorAllOfData as Au, Blending as B, InconsistentTrajectorySizeErrorInconsistentTrajectorySize as Ba, NetworkInterface as Bc, StaubliControllerKindEnum as Bd, TrajectoryDetailsKindEnum as Bf, FeedbackInvalidSamplingTimeErrorFeedbackNameEnum as Bi, Payload as Bl, ConfigurationArchiveStatusErrorStatusEnum as Bn, JointPositionReferenceTypeEnum as Bo, VirtualControllerInputsOutputsApiFactory as Bp, DirectionConstraintConstraintNameEnum as Br, ModbusIO as Bs, CloudConfiguration as Bt, RequestArgs as Bu, AddVirtualControllerMotionGroupRequest as C, IOBoundary as Ca, MultiErrorJointPositionCollision as Cc, SetIOCommandTypeEnum as Cd, TechmanControllerKindEnum as Cf, FeedbackCommandsMissing as Ci, PathTypeLine as Cl, CollisionContact as Cn, JoggingPausedByUser as Co, ValidationError2 as Cp, CubicSplineParameter as Cr, LinkChainValueSourceEnum as Cs, BusIOsStateEnum as Ct, ProgramRun as Cu, ApplicationApiAxiosParamCreator as D, IODirection as Da, MultiSearchCollisionFreeResponse as Dc, Snap7IO as Dd, ToolValue as Df, FeedbackCubicSplineNotAtStartPose as Di, PauseActionChunksResponse as Dl, CollisionMotionGroup as Dn, JoggingPausedNearJointLimit as Do, VersionApiFactory as Dp, CylinderShapeTypeEnum as Dr, Manufacturer as Ds, CapsuleShapeTypeEnum as Dt, ProjectJointPositionDirectionConstraintRequest as Du, ApplicationApi as E, IODescription as Ea, MultiSearchCollisionFreeRequest as Ec, SingularityTypeEnum as Ed, TimeTriggerTypeEnum as Ef, FeedbackCubicSplineIsNotIncreasingErrorFeedbackNameEnum as Ei, PauseActionChunksRequestMessageTypeEnum as El, CollisionFreeAlgorithm as En, JoggingPausedNearCollisionKindEnum as Eo, VersionApiAxiosParamCreator as Ep, Cylinder as Er, LocalPoseReferenceTypeEnum as Es, Capsule as Et, ProjectJointPositionDirectionConstraint422Response as Eu, BUSInputsOutputsApiAxiosParamCreator as F, IOOrigin as Fa, NanValueError as Fc, StartMovementRequestMessageTypeEnum as Fd, TrajectoryCachingApiFactory as Ff, FeedbackInvalidDof as Fi, PauseMovementResponse as Fl, Configuration as Fn, JointLimitExceededError as Fo, VirtualControllerBehaviorApiAxiosParamCreator as Fp, DatasetsApiAxiosParamCreator as Fr, MergeTrajectoriesResponseFeedbackInner as Fs, CloudConfigStatus as Ft, Rectangle as Fu, BlendingSpace as G, InitializeActionChunksResponse as Ga, OperationLimits as Gc, StopActionChunksResponseKindEnum as Gd, TrajectoryExecutionApiAxiosParamCreator as Gf, FeedbackOutOfWorkspace as Gi, PlanCollisionFreeResponseResponse as Gl, ConfiguredPose as Gn, JointVelocityResponse as Go, WaitForIOCommandTypeEnum as Gp, ErrorDirectionConstraintNotMetErrorFeedbackNameEnum as Gr, ModelError as Gs, CloudConnectionErrorInvalidTokenDetails as Gt, RobotConfigurationsApiFp as Gu, BlendingAutoBlendingNameEnum as H, InertiaTensor as Ha, NetworkState as Hc, StopActionChunksRequest as Hd, TrajectoryEnded as Hf, FeedbackJointLimitExceededErrorFeedbackNameEnum as Hi, PlanCollisionFreeFailedResponse as Hl, ConfigurationArchiveStatusSuccessStatusEnum as Hn, JointTypeEnum as Ho, VirtualControllerKindEnum as Hp, DistanceTriggerTypeEnum as Hr, ModbusIOByteOrder as Hs, CloudConnectionErrorError as Ht, RobotConfigurationsApi as Hu, BUSInputsOutputsApiFactory as I, IOValue as Ia, NanValueErrorKindEnum as Ic, StartMovementResponse as Id, TrajectoryCachingApiFp as If, FeedbackInvalidDofErrorFeedbackNameEnum as Ii, PauseMovementResponseKindEnum as Il, ConfigurationArchiveStatus as In, JointLimitExceededErrorKindEnum as Io, VirtualControllerBehaviorApiFactory as Ip, DatasetsApiFactory as Ir, MergeTrajectoriesSegment as Is, CloudConfigStatusConfigured as It, RectangleShapeTypeEnum as Iu, BostondynamicsController as J, InitializeJoggingRequestMessageTypeEnum as Ja, PathCartesianPTP as Jc, StoreCollisionComponentsApi as Jd, TrajectoryId as Jf, FeedbackSingularityErrorFeedbackNameEnum as Ji, PlanTrajectoryRequest as Jl, ConfiguredPoseInverseRequest as Jn, JointWaypointKindEnum as Jo, WaitForTimeCommandTypeEnum as Jp, ErrorInvalidJointCount as Jr, MotionCommandPath as Js, CloudConnectionErrorLeafnodeConnectionErrorCodeEnum as Jt, RobotControllerConfigurationRequest as Ju, BooleanValue as K, InitializeActionChunksResponseKindEnum as Ka, OperationMode as Kc, StorageKey as Kd, TrajectoryExecutionApiFactory as Kf, FeedbackOutOfWorkspaceErrorFeedbackNameEnum as Ki, PlanTrajectoryFailedResponse as Kl, ConfiguredPoseInverse422Response as Kn, JointVelocityResponseKindEnum as Ko, WaitForIOEventRequest as Kp, ErrorDirectionConstraintNotNormalized as Kr, MotionCommand as Ks, CloudConnectionErrorInvalidTokenDetailsCloudResponse as Kt, RobotController as Ku, BUSInputsOutputsApiFp as L, IOValueType as La, NanValueErrorNanValue as Lc, StartMovementResponseKindEnum as Ld, TrajectoryData as Lf, FeedbackInvalidNanValue as Li, PauseOnIO as Ll, ConfigurationArchiveStatusCreating as Ln, JointLimits as Lo, VirtualControllerBehaviorApiFp as Lp, DatasetsApiFp as Lr, MergeTrajectoriesValidationError as Ls, CloudConfigStatusConfiguredStatusEnum as Lt, RectangularCapsule as Lu, AxisRange as M, IOIntegerValueValueTypeEnum as Ma, NOVACloudApiAxiosParamCreator as Mc, Sphere as Md, TorqueExceededErrorTorqueExceeded as Mf, FeedbackDirectionConstraintNotMetErrorFeedbackNameEnum as Mi, PauseJoggingResponseKindEnum as Ml, Command as Mn, JoggingPausedOnIOKindEnum as Mo, VirtualControllerApiFactory as Mp, DatasetPoseReference as Mr, MergeTrajectoriesErrorErrorFeedback as Ms, CellApiAxiosParamCreator as Mt, RRTConnectAlgorithmAlgorithmNameEnum as Mu, BASE_PATH as N, IONotExpression as Na, NOVACloudApiFactory as Nc, SphereShapeTypeEnum as Nd, TrajectoryCachingApi as Nf, FeedbackDirectionConstraintNotNormalized as Ni, PauseMovementRequest as Nl, CommandRoutine as Nn, JoggingRunning as No, VirtualControllerApiFp as Np, DatasetPoseReferenceTypeEnum as Nr, MergeTrajectoriesRequest as Ns, CellApiFactory as Nt, RRTConnectAlgorithmStepSize as Nu, ApplicationApiFactory as O, IOExpression as Oa, MultiSearchCollisionFreeResponseResponse as Oc, Snap7IOArea as Od, ToolValueOrKey as Of, FeedbackCubicSplineNotAtStartPoseErrorFeedbackNameEnum as Oi, PauseActionChunksResponseKindEnum as Ol, CollisionSetup as On, JoggingPausedNearJointLimitKindEnum as Oo, VersionApiFp as Op, DHParameter as Or, MarkerCommand as Os, CartesianLimits as Ot, ProjectJointPositionDirectionConstraintResponse as Ou, BUSInputsOutputsApi as P, IONotExpressionTypeEnum as Pa, NOVACloudApiFp as Pc, StartMovementRequest as Pd, TrajectoryCachingApiAxiosParamCreator as Pf, FeedbackDirectionConstraintNotNormalizedErrorFeedbackNameEnum as Pi, PauseMovementRequestMessageTypeEnum as Pl, Comparator as Pn, JoggingRunningKindEnum as Po, VirtualControllerBehaviorApi as Pp, DatasetsApi as Pr, MergeTrajectoriesResponse as Ps, CellApiFp as Pt, Range as Pu, BoxBoxTypeEnum as Q, InitializeMovementRequestMessageTypeEnum as Qa, PathCubicSpline as Qc, StoreCollisionSetupsApi as Qd, TrajectoryPausedOnIO as Qf, FeedbackTorqueExceededErrorFeedbackNameEnum as Qi, PlanValidationErrorAllOfData as Ql, ContainerEnvironmentInner as Qn, KinematicBranchWrist as Qo, YaskawaControllerKindEnum as Qp, ErrorJointPositionCollision as Qr, MotionGroupApiFactory as Qs, CloudConnectionErrorLeafnodeRestartTimeout as Qt, RobotTcpData as Qu, BaseAPI as R, ImageCredentials as Ra, NetworkBackend as Rc, StartOnIO as Rd, TrajectoryDataMessageTypeEnum as Rf, FeedbackInvalidNanValueErrorFeedbackNameEnum as Ri, PauseOnIOCommand as Rl, ConfigurationArchiveStatusCreatingStatusEnum as Rn, JointPTPMotion as Ro, VirtualControllerInputsOutputsApi as Rp, Direction as Rr, MidpointInsertionAlgorithm as Rs, CloudConfigStatusNotConfigured as Rt, RectangularCapsuleShapeTypeEnum as Ru, AddTrajectoryResponse as S, IOBooleanValueValueTypeEnum as Sa, MultiErrorJointLimitExceeded as Sc, SetIOCommand as Sd, TechmanController as Sf, FeedbackCollisionErrorFeedbackNameEnum as Si, PathTypeJointPTPPathDefinitionNameEnum as Sl, Collision as Sn, JoggingDetailsState as So, ValidationError as Sp, CreateDatasetRequest as Sr, LinkChainValueOrKey as Ss, BusIOsState as St, ProgramApiFp as Su, App as T, IOConditionExpressionTypeEnum as Ta, MultiSearchCollisionFree422Response as Tc, SingularityHandling as Td, TimeTrigger as Tf, FeedbackCubicSplineIsNotIncreasing as Ti, PauseActionChunksRequest as Tl, CollisionErrorKindEnum as Tn, JoggingPausedNearCollision as To, VersionApi as Tp, CycleTime as Tr, LocalPoseReference as Ts, CapabilityEntry as Tt, ProgramStartRequest as Tu, BlendingPosition as U, InitializeActionChunksRequest as Ua, OpMode as Uc, StopActionChunksRequestMessageTypeEnum as Ud, TrajectoryEndedKindEnum as Uf, FeedbackNoSolutionInCurrentConfiguration as Ui, PlanCollisionFreeRequest as Ul, ConfigurationParameters as Un, JointVelocityRequest as Uo, VirtualRobotConfiguration as Up, DynamicModel as Ur, ModbusIOData as Us, CloudConnectionErrorInvalidToken as Ut, RobotConfigurationsApiAxiosParamCreator as Uu, BlendingAuto as V, InconsistentTrajectorySizeErrorKindEnum as Va, NetworkLinkState as Vc, StaubliControllerRtiServer as Vd, TrajectoryDetailsState as Vf, FeedbackJointLimitExceeded as Vi, Plan422Response as Vl, ConfigurationArchiveStatusSuccess as Vn, JointTrajectory as Vo, VirtualControllerInputsOutputsApiFp as Vp, DistanceTrigger as Vr, ModbusIOArea as Vs, CloudConnectionError as Vt, RequiredError as Vu, BlendingPositionBlendingNameEnum as W, InitializeActionChunksRequestMessageTypeEnum as Wa, OperatingState as Wc, StopActionChunksResponse as Wd, TrajectoryExecutionApi as Wf, FeedbackNoSolutionInCurrentConfigurationErrorFeedbackNameEnum as Wi, PlanCollisionFreeResponse as Wl, ConfigurationResource as Wn, JointVelocityRequestMessageTypeEnum as Wo, WaitForIOCommand as Wp, ErrorDirectionConstraintNotMet as Wr, ModbusIOTypeEnum as Ws, CloudConnectionErrorInvalidTokenCodeEnum as Wt, RobotConfigurationsApiFactory as Wu, BostondynamicsControllerRobotTypeEnum as X, InitializeJoggingResponseKindEnum as Xa, PathCircle as Xc, StoreCollisionComponentsApiFactory as Xd, TrajectoryPausedByUser as Xf, FeedbackStartJointsMissingErrorFeedbackNameEnum as Xi, PlanTrajectoryResponseResponse as Xl, ConfiguredPoseInverseResponseResponse as Xn, KinematicBranchElbow as Xo, WaypointCoordinates as Xp, ErrorJointLimitExceeded as Xr, MotionGroupApi as Xs, CloudConnectionErrorLeafnodeConnectionTimeout as Xt, RobotSystemMode as Xu, BostondynamicsControllerKindEnum as Y, InitializeJoggingResponse as Ya, PathCartesianPTPPathDefinitionNameEnum as Yc, StoreCollisionComponentsApiAxiosParamCreator as Yd, TrajectoryIdMessageTypeEnum as Yf, FeedbackStartJointsMissing as Yi, PlanTrajectoryResponse as Yl, ConfiguredPoseInverseResponse as Yn, KinematicBranch as Yo, Waypoint as Yp, ErrorInvalidJointCountErrorFeedbackNameEnum as Yr, MotionGenerator as Ys, CloudConnectionErrorLeafnodeConnectionErrorDetails as Yt, RobotControllerState as Yu, Box as Z, InitializeMovementRequest as Za, PathCirclePathDefinitionNameEnum as Zc, StoreCollisionComponentsApiFp as Zd, TrajectoryPausedByUserKindEnum as Zf, FeedbackTorqueExceeded as Zi, PlanValidationError as Zl, ConstrainedPose as Zn, KinematicBranchShoulder as Zo, YaskawaController as Zp, ErrorJointLimitExceededErrorFeedbackNameEnum as Zr, MotionGroupApiAxiosParamCreator as Zs, CloudConnectionErrorLeafnodeConnectionTimeoutCodeEnum as Zt, RobotTcp as Zu, ActionChunkStreamingApiFp as _, IOAllOfExpression as _a, MotionSettings as _c, SessionApiAxiosParamCreator as _d, TcpVelocityResponseKindEnum as _f, FanucController as _i, PathTypeDirectionConstrainedCartesianPTP as _l, Collider as _n, JoggingApiAxiosParamCreator as _o, UnpauseActionChunksResponse as _p, ConvexHullShapeTypeEnum as _r, LicenseStatusEnum as _s, BusIOProfinetVirtual as _t, ProfinetSubSlotDescription as _u, AbbConfiguredPose as a, ForwardKinematicsResponse as aa, MotionGroupJoints as ac, SafetyGeometrySphere as ad, StoreObjectApiFp as af, Execute as ai, PathFractionTriggerTypeEnum as al, CloudConnectionErrorUnexpectedResponseDetails as an, IntegerValueValueTypeEnum as ao, TrajectoryRunningKindEnum as ap, ControllerApiFactory as ar, KukaConfiguredPose as as, BusIOModbusTCPClient as at, Pose as au, AddTrajectoryErrorData as b, IOAnyOfExpressionTypeEnum as ba, MultiCollisionSetup as bc, SessionResponse as bd, TeachingApiFactory as bf, FeedbackAxisRangeExceededErrorFeedbackNameEnum as bi, PathTypeDirectionConstrainedJointPTPPathDefinitionNameEnum as bl, ColliderValueOrKey as bn, JoggingDetails as bo, UpdateNovaVersionRequest as bp, CoordinateSystemData as br, LimitsOverride as bs, BusIOSnap7BusTypeEnum as bt, ProgramApiAxiosParamCreator as bu, AbbControllerKindEnum as c, GeneratedPathMotionCommandTypeEnum as ca, MotionGroupModelsApi as cc, SafetyZonePose as cd, SystemApiAxiosParamCreator as cf, ExecuteDetails as ci, PathLine as cl, CloudDisconnectionError as cn, InvalidDofErrorKindEnum as co, TrajectoryWaitForIOKindEnum as cp, ControllerInputsOutputsApi as cr, KukaControllerRsiServer as cs, BusIOModbusTCPServerNetworkTypeEnum as ct, PoseWaypointKindEnum as cu, ActionChunkRequestMessageTypeEnum as d, GetKinematicConfigurationRequest as da, MotionGroupModelsApiFp as dc, ServiceStatus as dd, TcpOffset as df, ExecuteTrajectoryRequest as di, PathTypeCartesianPTP as dl, CloudDisconnectionStatusDisconnecting as dn, InverseKinematics422Response as do, UnitreeControllerKindEnum as dp, ControllerInputsOutputsApiFp as dr, License as ds, BusIOProfinet as dt, ProfinetIOData as du, FlangePayload as ea, MotionGroupConfiguration as ec, SafetyGeometryBox as ed, StoreCollisionSetupsApiFactory as ef, ErrorMaxIterationsExceeded as ei, PathDirectionConstrainedCartesianPTP as el, ZodValidationErrorError as em, CloudConnectionErrorNatsFailed as en, InitializeMovementResponse as eo, TrajectoryPlanningApi as ep, ContainerImageSecretsInner as er, KinematicModel as es, BusIODescription as et, PlaneShapeTypeEnum as eu, ActionChunkResponse as f, GetKinematicConfigurationResponse as fa, MotionGroupReference as fc, ServiceStatusPhase as fd, TcpRequiredError as ff, ExecuteTrajectoryResponse as fi, PathTypeCartesianPTPPathDefinitionNameEnum as fl, CloudDisconnectionStatusDisconnectingStatusEnum as fn, InverseKinematicsRequest as fo, UnitreeControllerRobotTypeEnum as fp, ControllerNetworkInterface as fr, LicenseApi as fs, BusIOProfinetBusTypeEnum as ft, ProfinetIODirection as fu, ActionChunkStreamingApiFactory as g, HTTPValidationError as ga, MotionGroupStateJointLimitReached as gc, SessionApi as gd, TcpVelocityResponse as gf, ExternalJointStreamRequest as gi, PathTypeCubicSplinePathDefinitionNameEnum as gl, CloudStatusErrors as gn, JoggingApi as go, UnpauseActionChunksRequestMessageTypeEnum as gp, ConvexHull as gr, LicenseStatus as gs, BusIOProfinetSlot as gt, ProfinetSlotOffset as gu, ActionChunkStreamingApiAxiosParamCreator as h, GetTrajectoryResponse as ha, MotionGroupState as hc, ServiceStatusStatus as hd, TcpVelocityRequestMessageTypeEnum as hf, ExternalJointStreamDatapoint as hi, PathTypeCubicSpline as hl, CloudStatusChecks as hn, InverseKinematicsValidationErrorAllOfData as ho, UnpauseActionChunksRequest as hp, ConvertVendorConfiguredPoseRequestVendorConfiguredPoses as hr, LicenseApiFp as hs, BusIOProfinetNetwork as ht, ProfinetSlotDescription as hu, AbbConfdata as i, ForwardKinematicsRequest as ia, MotionGroupInfo as ic, SafetyGeometryPrism as id, StoreObjectApiFactory as if, ErrorUnsupportedOperationErrorFeedbackNameEnum as ii, PathFractionTrigger as il, operationServerMap as im, CloudConnectionErrorUnexpectedResponseCodeEnum as in, IntegerValue as io, TrajectoryRunning as ip, ControllerApiAxiosParamCreator as ir, KinematicsApiFp as is, BusIOModbusServerBusTypeEnum as it, PlaybackSpeedResponseKindEnum as iu, AtTrigger as j, IOIntegerValue as ja, NOVACloudApi as jc, Snap7IOTypeEnum as jd, TorqueExceededErrorKindEnum as jf, FeedbackDirectionConstraintNotMet as ji, PauseJoggingResponse as jl, CollisionSetupValueSourceEnum as jn, JoggingPausedOnIO as jo, VirtualControllerApiAxiosParamCreator as jp, DatasetPose as jr, MergeTrajectoriesError as js, CellApi as jt, RRTConnectAlgorithm as ju, ApplicationApiFp as k, IOFloatValue as ka, MultiSearchCollisionFreeValidationError as kc, Snap7IOData as kd, ToolValueSourceEnum as kf, FeedbackDirectionConstraintNoSolutionExists as ki, PauseJoggingRequest as kl, CollisionSetupValue as kn, JoggingPausedNearSingularity as ko, VirtualController as kp, Dataset as kr, MarkerCommandTypeEnum as ks, CartesianVelocity as kt, ProjectJointPositionDirectionConstraintValidationError as ku, AbbPose as l, GetDatasetResponse as la, MotionGroupModelsApiAxiosParamCreator as lc, SafetyZones as ld, SystemApiFactory as lf, ExecuteJoggingRequest as li, PathLinePathDefinitionNameEnum as ll, CloudDisconnectionStatusDisconnected as ln, InverseFeedbackAtIndex as lo, UnitType as lp, ControllerInputsOutputsApiAxiosParamCreator as lr, KukaPose as ls, BusIOModbusVirtual as lt, ProfinetDescription as lu, ActionChunkStreamingApi as m, GetKinematicConfigurationValidationErrorAllOfData as ma, MotionGroupSetup as mc, ServiceStatusSeverity as md, TcpVelocityRequest as mf, ExplicitPathMotionCommandTypeEnum as mi, PathTypeCirclePathDefinitionNameEnum as ml, CloudStatus as mn, InverseKinematicsValidationError as mo, UniversalrobotsControllerKindEnum as mp, ConvertVendorConfiguredPoseRequest as mr, LicenseApiFactory as ms, BusIOProfinetIpConfig as mt, ProfinetInputOutputConfig as mu, NovaConfig as n, FloatValueValueTypeEnum as na, MotionGroupFromJson as nc, SafetyGeometryLozenge as nd, StoreObjectApi as nf, ErrorMotionGroupKeyMismatch as ni, PathDirectionConstrainedJointPTP as nl, ZodValidationErrorErrorDetailsInner as nm, CloudConnectionErrorNatsFailedDetails as nn, InlinePoseReference as no, TrajectoryPlanningApiFactory as np, ContainerStorage as nr, KinematicsApiAxiosParamCreator as ns, BusIOModbusClientBusTypeEnum as nt, PlaybackSpeedRequestMessageTypeEnum as nu, AbbController as o, ForwardKinematicsValidationError as oa, MotionGroupModelCatalog as oc, SafetyStateType as od, StreamIOValuesResponse as of, ExecuteActionChunksRequest as oi, PathJointPTP as ol, CloudConnectionErrorUnexpectedResponseDetailsCloudResponse as on, InvalidDofError as oo, TrajectorySection as op, ControllerApiFp as or, KukaController as os, BusIOModbusTCPClientNetworkTypeEnum as ot, PoseRef as ou, ActionChunkResponseKindEnum as p, GetKinematicConfigurationValidationError as pa, MotionGroupReferenceTypeEnum as pc, ServiceStatusResponse as pd, TcpRequiredErrorKindEnum as pf, ExplicitPathMotionCommand as pi, PathTypeCircle as pl, CloudRegistrationSuccessResponse as pn, InverseKinematicsResponse as po, UniversalrobotsController as pp, ConvertVendorConfiguredPose422Response as pr, LicenseApiAxiosParamCreator as ps, BusIOProfinetDefaultRoute as pt, ProfinetIOTypeEnum as pu, BooleanValueValueTypeEnum as q, InitializeJoggingRequest as qa, OrientationType as qc, StorageKeySourceEnum as qd, TrajectoryExecutionApiFp as qf, FeedbackSingularity as qi, PlanTrajectoryFailedResponseErrorFeedback as ql, ConfiguredPoseInverseFailedResponse as qn, JointWaypoint as qo, WaitForTimeCommand as qp, ErrorDirectionConstraintNotNormalizedErrorFeedbackNameEnum as qr, MotionCommandBlending as qs, CloudConnectionErrorLeafnodeConnectionError as qt, RobotControllerConfiguration as qu, NovaAPIClient as r, ForwardKinematics422Response as ra, MotionGroupFromType as rc, SafetyGeometryPlane as rd, StoreObjectApiAxiosParamCreator as rf, ErrorUnsupportedOperation as ri, PathDirectionConstrainedJointPTPPathDefinitionNameEnum as rl, ZodValidationErrorErrorDetailsInnerPathInner as rm, CloudConnectionErrorUnexpectedResponse as rn, InlinePoseReferenceTypeEnum as ro, TrajectoryPlanningApiFp as rp, ControllerApi as rr, KinematicsApiFactory as rs, BusIOModbusServer as rt, PlaybackSpeedResponse as ru, AbbControllerEgmServer as s, GeneratedPathMotionCommand as sa, MotionGroupModelDescription as sc, SafetyZone as sd, SystemApi as sf, ExecuteActionChunksResponse as si, PathJointPTPPathDefinitionNameEnum as sl, CloudConnectionRequest as sn, InvalidDofErrorInvalidDof as so, TrajectoryWaitForIO as sp, ControllerDescription as sr, KukaControllerKindEnum as ss, BusIOModbusTCPServer as st, PoseWaypoint as su, Nova as t, FloatValue as ta, MotionGroupDescription as tc, SafetyGeometryCapsule as td, StoreCollisionSetupsApiFp as tf, ErrorMaxIterationsExceededErrorFeedbackNameEnum as ti, PathDirectionConstrainedCartesianPTPPathDefinitionNameEnum as tl, ZodValidationErrorErrorCodeEnum as tm, CloudConnectionErrorNatsFailedCodeEnum as tn, InitializeMovementResponseKindEnum as to, TrajectoryPlanningApiAxiosParamCreator as tp, ContainerResources as tr, KinematicsApi as ts, BusIOModbusClient as tt, PlaybackSpeedRequest as tu, ActionChunkRequest as u, GetKinematicConfiguration422Response as ua, MotionGroupModelsApiFactory as uc, ServiceGroup as ud, SystemApiFp as uf, ExecuteJoggingResponse as ui, PathType as ul, CloudDisconnectionStatusDisconnectedStatusEnum as un, InverseFeedbackAtIndexErrorFeedback as uo, UnitreeController as up, ControllerInputsOutputsApiFactory as ur, KukaStatusAndTurnBits as us, BusIOModbusVirtualBusTypeEnum as ut, ProfinetIO as uu, ActivateLicenseRequest as v, IOAllOfExpressionTypeEnum as va, MovementErrorResponse as vc, SessionApiFactory as vd, TeachingApi as vf, FanucControllerKindEnum as vi, PathTypeDirectionConstrainedCartesianPTPPathDefinitionNameEnum as vl, ColliderShape as vn, JoggingApiFactory as vo, UnpauseActionChunksResponseKindEnum as vp, CoordinateSystem as vr, LimitRange as vs, BusIOProfinetVirtualBusTypeEnum as vt, Program as vu, ApiVersion as w, IOConditionExpression as wa, MultiJointTrajectory as wc, SettableRobotSystemMode as wd, TechmanControllerRtrs as wf, FeedbackCommandsMissingErrorFeedbackNameEnum as wi, PathTypeLinePathDefinitionNameEnum as wl, CollisionError as wn, JoggingPausedByUserKindEnum as wo, ValidationErrorLocInner as wp, CubicSplineViaPoint as wr, ListTrajectoriesResponse as ws, COLLECTION_FORMATS as wt, ProgramRunState as wu, AddTrajectoryRequest as x, IOBooleanValue as xa, MultiErrorInvalidJointCount as xc, SetIO as xd, TeachingApiFp as xf, FeedbackCollision as xi, PathTypeJointPTP as xl, ColliderValueSourceEnum as xn, JoggingDetailsKindEnum as xo, User as xp, CopyMotionGroupModelRequest as xr, LinkChainValue as xs, BusIOType as xt, ProgramApiFactory as xu, AddTrajectoryError as y, IOAnyOfExpression as ya, MovementErrorResponseKindEnum as yc, SessionApiFp as yd, TeachingApiAxiosParamCreator as yf, FeedbackAxisRangeExceeded as yi, PathTypeDirectionConstrainedJointPTP as yl, ColliderValue as yn, JoggingApiFp as yo, UpdateCellVersionRequest as yp, CoordinateSystem2 as yr, LimitSet as ys, BusIOSnap7 as yt, ProgramApi as yu, Behavior as z, InconsistentTrajectorySizeError as za, NetworkDevice as zc, StaubliController as zd, TrajectoryDetails as zf, FeedbackInvalidSamplingTime as zi, PauseOnIOCommandTypeEnum as zl, ConfigurationArchiveStatusError as zn, JointPositionReference as zo, VirtualControllerInputsOutputsApiAxiosParamCreator as zp, DirectionConstraint as zr, MidpointInsertionAlgorithmAlgorithmNameEnum as zs, CloudConfigStatusNotConfiguredStatusEnum as zt, ReleaseChannel as zu };
13706
+ //# sourceMappingURL=Nova-BAeYlPIP.d.mts.map