@wandelbots/nova-api 26.7.0-dev.4 → 26.7.0-dev.40

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.
@@ -6,7 +6,7 @@ import { AxiosInstance, AxiosPromise, RawAxiosRequestConfig } from "axios";
6
6
  * Wandelbots NOVA API
7
7
  * Interact with robots in an easy and intuitive way.
8
8
  *
9
- * The version of the OpenAPI document: 2.6.0
9
+ * The version of the OpenAPI document: 2.7.0 dev
10
10
  *
11
11
  *
12
12
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -232,7 +232,7 @@ interface ActivateLicenseRequest {
232
232
  interface AddTrajectoryError {
233
233
  'message'?: string;
234
234
  /**
235
- * - The location is a scalar value that defines a position along a path, typically ranging from 0 to `n`, where `n` denotes the number of motion commands - Each integer value of the location corresponds to a specific motion command, while non-integer values interpolate positions within the segments. - The location is calculated from the joint path
235
+ * Location on trajectory where the error occurred.
236
236
  */
237
237
  'location'?: number;
238
238
  'data'?: AddTrajectoryErrorData;
@@ -325,6 +325,25 @@ interface App {
325
325
  */
326
326
  'diagnosis_path'?: string;
327
327
  }
328
+ /**
329
+ * Indicates which motion boundary an offset is measured from.
330
+ */
331
+ declare const AtReference: {
332
+ readonly Previous: "previous";
333
+ readonly Next: "next";
334
+ };
335
+ type AtReference = typeof AtReference[keyof typeof AtReference];
336
+ /**
337
+ * @type AtTrigger
338
+ * Positions an overlay command relative to its nearest preceding motion command.
339
+ */
340
+ type AtTrigger = {
341
+ type: 'distance';
342
+ } & DistanceTrigger | {
343
+ type: 'path_fraction';
344
+ } & PathFractionTrigger | {
345
+ type: 'time';
346
+ } & TimeTrigger;
328
347
  /**
329
348
  * Per-joint constraint beyond the 8 inverse kinematic branches. Maps a joint index (0-based) to an allowed angle interval (in radians).
330
349
  */
@@ -341,6 +360,15 @@ declare const Behavior: {
341
360
  readonly BehaviorExternalSource: "BEHAVIOR_EXTERNAL_SOURCE";
342
361
  };
343
362
  type Behavior = typeof Behavior[keyof typeof Behavior];
363
+ /**
364
+ * @type Blending
365
+ * Specifies baseline blending behavior for a motion command.
366
+ */
367
+ type Blending = {
368
+ type: 'blending_auto';
369
+ } & BlendingAuto | {
370
+ type: 'blending_position';
371
+ } & BlendingPosition;
344
372
  interface BlendingAuto {
345
373
  /**
346
374
  * 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.
@@ -937,7 +965,7 @@ interface CloudConnectionErrorUnexpectedResponseDetails {
937
965
  interface CloudConnectionErrorUnexpectedResponseDetailsCloudResponse {
938
966
  'status': number;
939
967
  'headers': {
940
- [key: string]: any;
968
+ [key: string]: any | null;
941
969
  };
942
970
  'body': string;
943
971
  }
@@ -1102,13 +1130,13 @@ type CollisionErrorKindEnum = typeof CollisionErrorKindEnum[keyof typeof Collisi
1102
1130
  type CollisionFreeAlgorithm = MidpointInsertionAlgorithm | RRTConnectAlgorithm;
1103
1131
  interface CollisionMotionGroup {
1104
1132
  /**
1105
- * A link chain is a kinematic chain of links that is connected via joints. A motion group can be used to control the motion of the joints in a link chain. A link is a group of colliders that is attached to the link reference frame. The reference frame of a link is obtained after applying all sets of Denavit-Hartenberg-parameters from base to (including) the link index. This means that the reference frame of the link is on the rotation axis of the next joint in the kinematic chain. Example: For a motion group with 2 joints, the collider reference frame (CRF) for link 1 is on the rotation axis of joint 2. The chain looks like: - Origin >> Mounting >> Base >> (CRF Base) Joint 0 >> Link 0 >> (CRF Link 0) Joint 1 >> Link 1 >> (CRF Link 1) Flange (CRF Tool) >> TCP Adjacent links in the kinematic chain of the motion group are not checked for mutual collision.
1133
+ * The shape of the motion groups links to validate against colliders. Indexed along the kinematic chain, starting with a static base shape before first joint. The base of the motion group is not checked for collision against the environment.
1106
1134
  */
1107
1135
  'link_chain'?: Array<{
1108
1136
  [key: string]: Collider;
1109
1137
  }>;
1110
1138
  /**
1111
- * Defines the shape of a tool. A tool is a dictionary of colliders. All colliders that make up a tool are attached to the flange frame of the motion group.
1139
+ * Shape of the tool to validate against colliders.
1112
1140
  */
1113
1141
  'tool'?: {
1114
1142
  [key: string]: Collider;
@@ -1120,19 +1148,19 @@ interface CollisionMotionGroup {
1120
1148
  }
1121
1149
  interface CollisionSetup {
1122
1150
  /**
1123
- * A collection of identifiable colliders.
1151
+ * Colliders are checked against links and tool.
1124
1152
  */
1125
1153
  'colliders'?: {
1126
1154
  [key: string]: Collider;
1127
1155
  };
1128
1156
  /**
1129
- * A link chain is a kinematic chain of links that is connected via joints. A motion group can be used to control the motion of the joints in a link chain. A link is a group of colliders that is attached to the link reference frame. The reference frame of a link is obtained after applying all sets of Denavit-Hartenberg-parameters from base to (including) the link index. This means that the reference frame of the link is on the rotation axis of the next joint in the kinematic chain. Example: For a motion group with 2 joints, the collider reference frame (CRF) for link 1 is on the rotation axis of joint 2. The chain looks like: - Origin >> Mounting >> Base >> (CRF Base) Joint 0 >> Link 0 >> (CRF Link 0) Joint 1 >> Link 1 >> (CRF Link 1) Flange (CRF Tool) >> TCP Adjacent links in the kinematic chain of the motion group are not checked for mutual collision.
1157
+ * The shape of the motion groups links to validate against colliders. Indexed along the kinematic chain, starting with a static base shape before first joint. The base of the motion group is not checked for collision against the environment.
1130
1158
  */
1131
1159
  'link_chain'?: Array<{
1132
1160
  [key: string]: Collider;
1133
1161
  }>;
1134
1162
  /**
1135
- * Defines the shape of a tool. A tool is a dictionary of colliders. All colliders that make up a tool are attached to the flange frame of the motion group.
1163
+ * Shape of the tool to validate against colliders.
1136
1164
  */
1137
1165
  'tool'?: {
1138
1166
  [key: string]: Collider;
@@ -1151,7 +1179,7 @@ interface CollisionSetupValue {
1151
1179
  */
1152
1180
  'source': CollisionSetupValueSourceEnum;
1153
1181
  /**
1154
- * A dictionary of colliders where each value is either an inline Collider object or a string key referencing a stored Collider.
1182
+ * Colliders checked against links and tool. Each value is either an inline Collider or a store key.
1155
1183
  */
1156
1184
  'colliders'?: {
1157
1185
  [key: string]: ColliderValueOrKey;
@@ -1182,6 +1210,67 @@ type CollisionSetupValueOrKey = {
1182
1210
  } & StorageKey | {
1183
1211
  source: 'value';
1184
1212
  } & CollisionSetupValue;
1213
+ /**
1214
+ * @type Command
1215
+ * Defines one planning or execution-overlay command in a command routine.
1216
+ */
1217
+ type Command = ExplicitPathMotionCommand | GeneratedPathMotionCommand | MarkerCommand | PauseOnIOCommand | SetIOCommand | WaitForIOCommand | WaitForTimeCommand;
1218
+ /**
1219
+ * Defines an ordered, persistable command routine that belongs to a teaching dataset.
1220
+ */
1221
+ interface CommandRoutine {
1222
+ /**
1223
+ * Unique identifier of the command routine within the dataset. Must start with a letter and may only contain letters, digits, and hyphens.
1224
+ */
1225
+ 'command_routine': string;
1226
+ /**
1227
+ * Specifies the owning dataset identifier. It is absent while the routine is not persisted in a dataset.
1228
+ */
1229
+ 'dataset'?: string;
1230
+ /**
1231
+ * Specifies the human-readable command-routine name.
1232
+ */
1233
+ 'name'?: string;
1234
+ /**
1235
+ * Describes the command routine.
1236
+ */
1237
+ 'description'?: string;
1238
+ /**
1239
+ * References the motion group that executes this routine. It is absent when no motion group context exists.
1240
+ */
1241
+ 'motion_group'?: MotionGroupReference;
1242
+ /**
1243
+ * Specifies the baseline motion group setup or declares an I/O-only routine when set to `null`.
1244
+ */
1245
+ 'motion_group_setup': MotionGroupSetup | null;
1246
+ /**
1247
+ * Specifies the routine-level tool-center-point identifier. It is absent when no motion group context exists.
1248
+ */
1249
+ 'tcp'?: string;
1250
+ /**
1251
+ * Specifies the starting joints that a motion routine requires. It is absent when no motion group context exists.
1252
+ */
1253
+ 'start_joint_position'?: Array<number>;
1254
+ 'default_motion_settings'?: MotionSettings;
1255
+ /**
1256
+ * Contains the ordered planning and execution-overlay commands.
1257
+ */
1258
+ 'commands': Array<Command>;
1259
+ /**
1260
+ * Contains string-valued annotations that are preserved on round-trip.
1261
+ */
1262
+ 'metadata'?: {
1263
+ [key: string]: string;
1264
+ };
1265
+ /**
1266
+ * Records when the command routine was created.
1267
+ */
1268
+ 'created_at'?: string;
1269
+ /**
1270
+ * Records when the command routine was last updated.
1271
+ */
1272
+ 'updated_at'?: string;
1273
+ }
1185
1274
  /**
1186
1275
  * 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.
1187
1276
  */
@@ -1266,7 +1355,7 @@ interface ConfiguredPose {
1266
1355
  /**
1267
1356
  * Optional identifier of the coordinate system the pose is expressed in. If this is null or omitted, the pose is referenced in `world`.
1268
1357
  */
1269
- 'coordinate_system_id'?: string;
1358
+ 'coordinate_system'?: string;
1270
1359
  }
1271
1360
  interface ConfiguredPoseInverse422Response {
1272
1361
  'detail'?: Array<ValidationError>;
@@ -1280,6 +1369,9 @@ interface ConfiguredPoseInverseRequest {
1280
1369
  * Identifies a single motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported types.
1281
1370
  */
1282
1371
  'motion_group_model': string;
1372
+ /**
1373
+ * List of TCP poses for which the inverse solutions are computed.
1374
+ */
1283
1375
  'tcp_poses': Array<ConfiguredPose>;
1284
1376
  'tcp_offset'?: Pose;
1285
1377
  /**
@@ -1354,7 +1446,7 @@ interface ContainerResources {
1354
1446
  interface ContainerStorage {
1355
1447
  'mount_path': string;
1356
1448
  /**
1357
- * The amount of requested storage capacity.
1449
+ * The amount of local storage available for the application. **NOTE:** The capacity can NEVER be reduced!
1358
1450
  */
1359
1451
  'capacity': string;
1360
1452
  }
@@ -1436,6 +1528,24 @@ interface CoordinateSystem {
1436
1528
  */
1437
1529
  'coordinate_system': string;
1438
1530
  }
1531
+ /**
1532
+ * 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.
1533
+ */
1534
+ interface CoordinateSystem2 {
1535
+ /**
1536
+ * Unique identifier of a coordinate system.
1537
+ */
1538
+ 'coordinate_system': string;
1539
+ /**
1540
+ * Human-readable name for the coordinate system that is shown in the user interface.
1541
+ */
1542
+ 'name'?: string;
1543
+ /**
1544
+ * Optional identifier of the parent coordinate system. The pose of this coordinate system is expressed relative to its parent. If this is null or omitted, the coordinate system is referenced in `world`.
1545
+ */
1546
+ 'parent'?: string;
1547
+ 'pose': Pose;
1548
+ }
1439
1549
  interface CoordinateSystemData {
1440
1550
  /**
1441
1551
  * Human readable name of this coordinate system.
@@ -1464,10 +1574,52 @@ interface CopyMotionGroupModelRequest {
1464
1574
  */
1465
1575
  'name': string;
1466
1576
  }
1577
+ /**
1578
+ * Creates a new teaching dataset together with its poses and command routines in a single request.
1579
+ */
1580
+ interface CreateDatasetRequest {
1581
+ /**
1582
+ * Unique identifier of the dataset. Must start with a letter and may only contain letters, digits, and hyphens.
1583
+ */
1584
+ 'dataset': string;
1585
+ /**
1586
+ * Human-readable name for the dataset that is shown in the user interface. The slug is derived from this name on download.
1587
+ */
1588
+ 'name'?: string;
1589
+ /**
1590
+ * Free-form text that describes the purpose of the dataset.
1591
+ */
1592
+ 'description'?: string;
1593
+ /**
1594
+ * Contains the poses that are created together with the dataset. Server-managed identifiers are assigned on creation.
1595
+ */
1596
+ 'poses'?: Array<DatasetPose>;
1597
+ /**
1598
+ * Contains the coordinate systems that are created together with the dataset. Server-managed identifiers are assigned on creation.
1599
+ */
1600
+ 'coordinate_systems'?: Array<DatasetCoordinateSystem>;
1601
+ /**
1602
+ * Contains the command routines that are created together with the dataset. Server-managed identifiers are assigned on creation.
1603
+ */
1604
+ 'command_routines'?: Array<CommandRoutine>;
1605
+ }
1467
1606
  interface CubicSplineParameter {
1468
1607
  'pose': Pose;
1469
1608
  'path_parameter': number;
1470
1609
  }
1610
+ /**
1611
+ * 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.
1612
+ */
1613
+ interface CubicSplineViaPoint {
1614
+ /**
1615
+ * References the intermediate pose of the spline.
1616
+ */
1617
+ 'pose': PoseRef;
1618
+ /**
1619
+ * Specifies the baseline path parameter of this intermediate point.
1620
+ */
1621
+ 'path_parameter': number;
1622
+ }
1471
1623
  interface CycleTime {
1472
1624
  /**
1473
1625
  * Cycle time of controller communication in [ms].
@@ -1518,6 +1670,138 @@ interface DHParameter {
1518
1670
  'reverse_rotation_direction'?: boolean;
1519
1671
  'type'?: JointTypeEnum;
1520
1672
  }
1673
+ /**
1674
+ * A dataset is a collection of poses that you can group and manage together.
1675
+ */
1676
+ interface Dataset {
1677
+ /**
1678
+ * Unique identifier of the dataset. Must start with a letter and may only contain letters, digits, and hyphens.
1679
+ */
1680
+ 'dataset': string;
1681
+ /**
1682
+ * Human-readable name for the dataset that is shown in the user interface. The slug is derived from this name on download.
1683
+ */
1684
+ 'name'?: string;
1685
+ /**
1686
+ * Revision number of the dataset. NOVA increments this on every change to the dataset.
1687
+ */
1688
+ 'revision': number;
1689
+ /**
1690
+ * Free-form text that describes the purpose of the dataset.
1691
+ */
1692
+ 'description'?: string;
1693
+ /**
1694
+ * Timestamp when the dataset was created, in RFC3339 format.
1695
+ */
1696
+ 'created_at': string;
1697
+ /**
1698
+ * Timestamp when the dataset was last updated, in RFC3339 format.
1699
+ */
1700
+ 'updated_at': string;
1701
+ }
1702
+ /**
1703
+ * 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.
1704
+ */
1705
+ interface DatasetCoordinateSystem {
1706
+ /**
1707
+ * Unique identifier of a coordinate system.
1708
+ */
1709
+ 'coordinate_system': string;
1710
+ /**
1711
+ * Human-readable name for the coordinate system that is shown in the user interface.
1712
+ */
1713
+ 'name'?: string;
1714
+ /**
1715
+ * Optional identifier of the parent coordinate system. The pose of this coordinate system is expressed relative to its parent. If this is null or omitted, the coordinate system is referenced in `world`.
1716
+ */
1717
+ 'parent'?: string;
1718
+ 'pose': Pose;
1719
+ /**
1720
+ * Unique identifier of the dataset. Must start with a letter and may only contain letters, digits, and hyphens.
1721
+ */
1722
+ 'dataset': string;
1723
+ }
1724
+ /**
1725
+ * 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.
1726
+ */
1727
+ interface DatasetPose {
1728
+ 'pose': Pose;
1729
+ 'kinematic_configuration'?: KinematicConfiguration;
1730
+ /**
1731
+ * Optional identifier of the coordinate system the pose is expressed in. If this is null or omitted, the pose is referenced in `world`.
1732
+ */
1733
+ 'coordinate_system'?: string;
1734
+ /**
1735
+ * Unique identifier of the pose within the dataset. Must start with a letter and may only contain letters, digits, and hyphens.
1736
+ */
1737
+ 'dataset_pose': string;
1738
+ /**
1739
+ * Unique identifier of the dataset. Must start with a letter and may only contain letters, digits, and hyphens.
1740
+ */
1741
+ 'dataset': string;
1742
+ /**
1743
+ * Human-readable name for the pose that is shown in the user interface.
1744
+ */
1745
+ 'name'?: string;
1746
+ /**
1747
+ * Free-form text that describes the purpose of the pose.
1748
+ */
1749
+ 'description'?: string;
1750
+ /**
1751
+ * Timestamp when the pose was created, in RFC3339 format.
1752
+ */
1753
+ 'created_at'?: string;
1754
+ /**
1755
+ * Timestamp when the pose was last updated, in RFC3339 format.
1756
+ */
1757
+ 'updated_at'?: string;
1758
+ /**
1759
+ * Additional key-value pairs that can be attached to the pose.
1760
+ */
1761
+ 'metadata'?: {
1762
+ [key: string]: string;
1763
+ };
1764
+ }
1765
+ /**
1766
+ * References a persisted pose in a dataset and may carry an offline resolution cache.
1767
+ */
1768
+ interface DatasetPoseReference {
1769
+ /**
1770
+ * Identifies the cross-dataset pose-reference variant.
1771
+ */
1772
+ 'type': DatasetPoseReferenceTypeEnum;
1773
+ /**
1774
+ * Specifies the NOVA cell identifier used to locate the dataset.
1775
+ */
1776
+ 'cell': string;
1777
+ /**
1778
+ * Unique identifier of the dataset. Must start with a letter and may only contain letters, digits, and hyphens.
1779
+ */
1780
+ 'dataset': string;
1781
+ /**
1782
+ * Unique identifier of the pose within the dataset. Must start with a letter and may only contain letters, digits, and hyphens.
1783
+ */
1784
+ 'dataset_pose': string;
1785
+ 'resolved_pose'?: ConfiguredPose;
1786
+ /**
1787
+ * Records when the cached pose was resolved.
1788
+ */
1789
+ 'resolved_at'?: string;
1790
+ /**
1791
+ * Records the source revision used to resolve the cached pose.
1792
+ */
1793
+ 'source_revision'?: string;
1794
+ /**
1795
+ * Contains string-valued annotations that are preserved on round-trip.
1796
+ */
1797
+ 'metadata'?: {
1798
+ [key: string]: string;
1799
+ };
1800
+ }
1801
+ declare const DatasetPoseReferenceTypeEnum: {
1802
+ readonly DatasetPose: "dataset_pose";
1803
+ };
1804
+ type DatasetPoseReferenceTypeEnum = typeof DatasetPoseReferenceTypeEnum[keyof typeof DatasetPoseReferenceTypeEnum];
1521
1805
  /**
1522
1806
  * The direction in which the trajectory is executed. Default: Forward.
1523
1807
  */
@@ -1531,11 +1815,11 @@ type Direction = typeof Direction[keyof typeof Direction];
1531
1815
  */
1532
1816
  interface DirectionConstraint {
1533
1817
  /**
1534
- * A three-dimensional vector [x, y, z] with double precision.
1818
+ * The direction constraint vector in world frame.
1535
1819
  */
1536
1820
  'world': Array<number>;
1537
1821
  /**
1538
- * A three-dimensional vector [x, y, z] with double precision.
1822
+ * The direction constraint vector in the TCP frame.
1539
1823
  */
1540
1824
  'tcp': Array<number>;
1541
1825
  /**
@@ -1548,6 +1832,24 @@ declare const DirectionConstraintConstraintNameEnum: {
1548
1832
  readonly DirectionConstraint: "DirectionConstraint";
1549
1833
  };
1550
1834
  type DirectionConstraintConstraintNameEnum = typeof DirectionConstraintConstraintNameEnum[keyof typeof DirectionConstraintConstraintNameEnum];
1835
+ /**
1836
+ * Positions an overlay command at a Cartesian distance from a motion boundary.
1837
+ */
1838
+ interface DistanceTrigger {
1839
+ /**
1840
+ * Identifies the distance trigger variant.
1841
+ */
1842
+ 'type': DistanceTriggerTypeEnum;
1843
+ /**
1844
+ * Specifies the non-negative Cartesian distance in millimeters.
1845
+ */
1846
+ 'millimeters': number;
1847
+ 'reference': AtReference;
1848
+ }
1849
+ declare const DistanceTriggerTypeEnum: {
1850
+ readonly Distance: "distance";
1851
+ };
1852
+ type DistanceTriggerTypeEnum = typeof DistanceTriggerTypeEnum[keyof typeof DistanceTriggerTypeEnum];
1551
1853
  interface DynamicModel {
1552
1854
  /**
1553
1855
  * Mass of the link in kg
@@ -1575,6 +1877,9 @@ interface DynamicModel {
1575
1877
  * A reference joint position (start or target) violates the direction constraint.
1576
1878
  */
1577
1879
  interface ErrorDirectionConstraintNotMet {
1880
+ /**
1881
+ * The joint position violating the direction constraint.
1882
+ */
1578
1883
  'joint_position'?: Array<number>;
1579
1884
  'error_feedback_name': ErrorDirectionConstraintNotMetErrorFeedbackNameEnum;
1580
1885
  }
@@ -1587,7 +1892,7 @@ type ErrorDirectionConstraintNotMetErrorFeedbackNameEnum = typeof ErrorDirection
1587
1892
  */
1588
1893
  interface ErrorDirectionConstraintNotNormalized {
1589
1894
  /**
1590
- * A three-dimensional vector [x, y, z] with double precision.
1895
+ * The direction constraint that is not normalized.
1591
1896
  */
1592
1897
  'direction_constraint'?: Array<number>;
1593
1898
  'error_feedback_name': ErrorDirectionConstraintNotNormalizedErrorFeedbackNameEnum;
@@ -1622,6 +1927,9 @@ interface ErrorJointLimitExceeded {
1622
1927
  * Index of the joint exceeding its limits (0-based).
1623
1928
  */
1624
1929
  'joint_index'?: number;
1930
+ /**
1931
+ * The joint position violating the limits.
1932
+ */
1625
1933
  'joint_position'?: Array<number>;
1626
1934
  'error_feedback_name': ErrorJointLimitExceededErrorFeedbackNameEnum;
1627
1935
  }
@@ -1634,6 +1942,9 @@ type ErrorJointLimitExceededErrorFeedbackNameEnum = typeof ErrorJointLimitExceed
1634
1942
  */
1635
1943
  interface ErrorJointPositionCollision {
1636
1944
  'collisions'?: Array<Collision>;
1945
+ /**
1946
+ * The joint position that collides.
1947
+ */
1637
1948
  'joint_position'?: Array<number>;
1638
1949
  'error_feedback_name': ErrorJointPositionCollisionErrorFeedbackNameEnum;
1639
1950
  }
@@ -1745,6 +2056,32 @@ type ExecuteTrajectoryResponse = {
1745
2056
  } & PlaybackSpeedResponse | {
1746
2057
  kind: 'START_RECEIVED';
1747
2058
  } & StartMovementResponse;
2059
+ /**
2060
+ * Defines a motion command whose path is authored explicitly.
2061
+ */
2062
+ interface ExplicitPathMotionCommand {
2063
+ /**
2064
+ * Identifies the motion command variant.
2065
+ */
2066
+ 'type': ExplicitPathMotionCommandTypeEnum;
2067
+ 'target': PoseRef;
2068
+ 'path_type': PathType;
2069
+ 'motion_settings'?: MotionSettings;
2070
+ /**
2071
+ * Contains a free-form authoring annotation.
2072
+ */
2073
+ 'intent'?: string;
2074
+ /**
2075
+ * Contains string-valued annotations that are preserved on round-trip.
2076
+ */
2077
+ 'metadata'?: {
2078
+ [key: string]: string;
2079
+ };
2080
+ }
2081
+ declare const ExplicitPathMotionCommandTypeEnum: {
2082
+ readonly MotionCommand: "motion_command";
2083
+ };
2084
+ type ExplicitPathMotionCommandTypeEnum = typeof ExplicitPathMotionCommandTypeEnum[keyof typeof ExplicitPathMotionCommandTypeEnum];
1748
2085
  /**
1749
2086
  * A datapoint inside external joint stream.
1750
2087
  */
@@ -1858,7 +2195,7 @@ type FeedbackDirectionConstraintNotMetErrorFeedbackNameEnum = typeof FeedbackDir
1858
2195
  */
1859
2196
  interface FeedbackDirectionConstraintNotNormalized {
1860
2197
  /**
1861
- * A three-dimensional vector [x, y, z] with double precision.
2198
+ * The direction constraint that is not normalized.
1862
2199
  */
1863
2200
  'direction_constraint'?: Array<number>;
1864
2201
  'error_feedback_name': FeedbackDirectionConstraintNotNormalizedErrorFeedbackNameEnum;
@@ -1987,11 +2324,11 @@ interface FlangePayload {
1987
2324
  */
1988
2325
  'mass': number;
1989
2326
  /**
1990
- * A three-dimensional vector [x, y, z] with double precision.
2327
+ * Center of mass of payload as a three-dimensional position vector [x, y, z] in [mm].
1991
2328
  */
1992
2329
  'center_of_mass'?: Array<number>;
1993
2330
  /**
1994
- * A three-dimensional vector [x, y, z] with double precision.
2331
+ * Principal moments of inertia of payload as three-dimensional vector [I_xx, I_yy, I_zz] in [kg·m²].
1995
2332
  */
1996
2333
  'moment_of_inertia'?: Array<number>;
1997
2334
  }
@@ -2031,7 +2368,7 @@ interface ForwardKinematicsResponse {
2031
2368
  'tcp_poses': Array<Pose>;
2032
2369
  }
2033
2370
  interface ForwardKinematicsValidationError {
2034
- 'loc': Array<ValidationErrorLocInner>;
2371
+ 'loc': Array<Location1Inner>;
2035
2372
  'msg': string;
2036
2373
  'type': string;
2037
2374
  'input': {
@@ -2039,6 +2376,73 @@ interface ForwardKinematicsValidationError {
2039
2376
  };
2040
2377
  'data'?: ErrorInvalidJointCount;
2041
2378
  }
2379
+ /**
2380
+ * Defines a motion command whose path the planner generates from a generator specification.
2381
+ */
2382
+ interface GeneratedPathMotionCommand {
2383
+ /**
2384
+ * Identifies the motion command variant.
2385
+ */
2386
+ 'type': GeneratedPathMotionCommandTypeEnum;
2387
+ 'target': PoseRef;
2388
+ 'generator': MotionGenerator;
2389
+ 'motion_settings'?: MotionSettings;
2390
+ /**
2391
+ * Contains a free-form authoring annotation.
2392
+ */
2393
+ 'intent'?: string;
2394
+ /**
2395
+ * Contains string-valued annotations that are preserved on round-trip.
2396
+ */
2397
+ 'metadata'?: {
2398
+ [key: string]: string;
2399
+ };
2400
+ }
2401
+ declare const GeneratedPathMotionCommandTypeEnum: {
2402
+ readonly MotionCommand: "motion_command";
2403
+ };
2404
+ type GeneratedPathMotionCommandTypeEnum = typeof GeneratedPathMotionCommandTypeEnum[keyof typeof GeneratedPathMotionCommandTypeEnum];
2405
+ /**
2406
+ * Returns a teaching dataset resolved together with its persisted poses and command routines.
2407
+ */
2408
+ interface GetDatasetResponse {
2409
+ /**
2410
+ * Unique identifier of the dataset. Must start with a letter and may only contain letters, digits, and hyphens.
2411
+ */
2412
+ 'dataset': string;
2413
+ /**
2414
+ * Human-readable name for the dataset that is shown in the user interface. The slug is derived from this name on download.
2415
+ */
2416
+ 'name'?: string;
2417
+ /**
2418
+ * Revision number of the dataset. NOVA increments this on every change to the dataset.
2419
+ */
2420
+ 'revision': number;
2421
+ /**
2422
+ * Free-form text that describes the purpose of the dataset.
2423
+ */
2424
+ 'description'?: string;
2425
+ /**
2426
+ * Timestamp when the dataset was created, in RFC3339 format.
2427
+ */
2428
+ 'created_at': string;
2429
+ /**
2430
+ * Timestamp when the dataset was last updated, in RFC3339 format.
2431
+ */
2432
+ 'updated_at': string;
2433
+ /**
2434
+ * Contains the persisted poses that belong to this dataset.
2435
+ */
2436
+ 'poses': Array<DatasetPose>;
2437
+ /**
2438
+ * Contains the coordinate systems that belong to this dataset.
2439
+ */
2440
+ 'coordinate_systems': Array<DatasetCoordinateSystem>;
2441
+ /**
2442
+ * Contains the command routines that belong to this dataset.
2443
+ */
2444
+ 'command_routines': Array<CommandRoutine>;
2445
+ }
2042
2446
  interface GetKinematicConfiguration422Response {
2043
2447
  'detail'?: Array<GetKinematicConfigurationValidationError>;
2044
2448
  }
@@ -2059,7 +2463,7 @@ interface GetKinematicConfigurationResponse {
2059
2463
  'kinematic_configurations': Array<KinematicConfiguration>;
2060
2464
  }
2061
2465
  interface GetKinematicConfigurationValidationError {
2062
- 'loc': Array<ValidationErrorLocInner>;
2466
+ 'loc': Array<Location1Inner>;
2063
2467
  'msg': string;
2064
2468
  'type': string;
2065
2469
  'input': {
@@ -2089,6 +2493,40 @@ interface GetTrajectoryResponse {
2089
2493
  interface HTTPValidationError {
2090
2494
  'detail'?: Array<ValidationError2>;
2091
2495
  }
2496
+ /**
2497
+ * Defines a conjunction of two or more I/O expressions.
2498
+ */
2499
+ interface IOAllOfExpression {
2500
+ /**
2501
+ * Identifies the conjunction-expression variant.
2502
+ */
2503
+ 'type': IOAllOfExpressionTypeEnum;
2504
+ /**
2505
+ * Contains the expressions that must all evaluate to `true`.
2506
+ */
2507
+ 'operands': Array<IOExpression>;
2508
+ }
2509
+ declare const IOAllOfExpressionTypeEnum: {
2510
+ readonly AllOf: "all_of";
2511
+ };
2512
+ type IOAllOfExpressionTypeEnum = typeof IOAllOfExpressionTypeEnum[keyof typeof IOAllOfExpressionTypeEnum];
2513
+ /**
2514
+ * Defines a disjunction of two or more I/O expressions.
2515
+ */
2516
+ interface IOAnyOfExpression {
2517
+ /**
2518
+ * Identifies the disjunction-expression variant.
2519
+ */
2520
+ 'type': IOAnyOfExpressionTypeEnum;
2521
+ /**
2522
+ * Contains the expressions of which at least one must evaluate to `true`.
2523
+ */
2524
+ 'operands': Array<IOExpression>;
2525
+ }
2526
+ declare const IOAnyOfExpressionTypeEnum: {
2527
+ readonly AnyOf: "any_of";
2528
+ };
2529
+ type IOAnyOfExpressionTypeEnum = typeof IOAnyOfExpressionTypeEnum[keyof typeof IOAnyOfExpressionTypeEnum];
2092
2530
  /**
2093
2531
  * Input/Output boolean value representation.
2094
2532
  */
@@ -2117,6 +2555,26 @@ type IOBoundary = {
2117
2555
  } & FloatValue | {
2118
2556
  value_type: 'integer';
2119
2557
  } & IntegerValue;
2558
+ /**
2559
+ * Defines one baseline-shaped I/O comparison in a boolean expression.
2560
+ */
2561
+ interface IOConditionExpression {
2562
+ /**
2563
+ * Identifies the condition-expression variant.
2564
+ */
2565
+ 'type': IOConditionExpressionTypeEnum;
2566
+ 'io': IOValue;
2567
+ 'comparator': Comparator;
2568
+ /**
2569
+ * Inverts this comparison when set to `true`.
2570
+ */
2571
+ 'negate'?: boolean;
2572
+ 'io_origin'?: IOOrigin;
2573
+ }
2574
+ declare const IOConditionExpressionTypeEnum: {
2575
+ readonly Condition: "condition";
2576
+ };
2577
+ type IOConditionExpressionTypeEnum = typeof IOConditionExpressionTypeEnum[keyof typeof IOConditionExpressionTypeEnum];
2120
2578
  interface IODescription {
2121
2579
  /**
2122
2580
  * Unique identifier of the input/output.
@@ -2144,6 +2602,19 @@ declare const IODirection: {
2144
2602
  readonly IoTypeOutput: "IO_TYPE_OUTPUT";
2145
2603
  };
2146
2604
  type IODirection = typeof IODirection[keyof typeof IODirection];
2605
+ /**
2606
+ * @type IOExpression
2607
+ * Defines a recursive boolean expression over baseline-shaped I/O comparisons.
2608
+ */
2609
+ type IOExpression = {
2610
+ type: 'all_of';
2611
+ } & IOAllOfExpression | {
2612
+ type: 'any_of';
2613
+ } & IOAnyOfExpression | {
2614
+ type: 'condition';
2615
+ } & IOConditionExpression | {
2616
+ type: 'not';
2617
+ } & IONotExpression;
2147
2618
  interface IOFloatValue {
2148
2619
  /**
2149
2620
  * Unique identifier of the input/output.
@@ -2174,6 +2645,20 @@ declare const IOIntegerValueValueTypeEnum: {
2174
2645
  readonly Integer: "integer";
2175
2646
  };
2176
2647
  type IOIntegerValueValueTypeEnum = typeof IOIntegerValueValueTypeEnum[keyof typeof IOIntegerValueValueTypeEnum];
2648
+ /**
2649
+ * Defines the negation of one I/O expression.
2650
+ */
2651
+ interface IONotExpression {
2652
+ /**
2653
+ * Identifies the negation-expression variant.
2654
+ */
2655
+ 'type': IONotExpressionTypeEnum;
2656
+ 'operand': IOExpression;
2657
+ }
2658
+ declare const IONotExpressionTypeEnum: {
2659
+ readonly Not: "not";
2660
+ };
2661
+ type IONotExpressionTypeEnum = typeof IONotExpressionTypeEnum[keyof typeof IONotExpressionTypeEnum];
2177
2662
  /**
2178
2663
  * States the source of the input/output signal.
2179
2664
  */
@@ -2334,7 +2819,7 @@ interface InitializeMovementRequest {
2334
2819
  'message_type': InitializeMovementRequestMessageTypeEnum;
2335
2820
  'trajectory': InitializeMovementRequestTrajectory;
2336
2821
  /**
2337
- * - The location is a scalar value that defines a position along a path, typically ranging from 0 to `n`, where `n` denotes the number of motion commands - Each integer value of the location corresponds to a specific motion command, while non-integer values interpolate positions within the segments. - The location is calculated from the joint path
2822
+ * Location on trajectory where the execution will start. Defaults to 0.0, start of the trajectory. ATTENTION: The robot has to be at the position of the initial location when initializing the movement. If not, an error is returned.
2338
2823
  */
2339
2824
  'initial_location'?: number;
2340
2825
  /**
@@ -2373,6 +2858,35 @@ declare const InitializeMovementResponseKindEnum: {
2373
2858
  readonly InitializeReceived: "INITIALIZE_RECEIVED";
2374
2859
  };
2375
2860
  type InitializeMovementResponseKindEnum = typeof InitializeMovementResponseKindEnum[keyof typeof InitializeMovementResponseKindEnum];
2861
+ /**
2862
+ * Defines a configured pose inline with an optional tool-center-point override.
2863
+ */
2864
+ interface InlinePoseReference {
2865
+ 'pose': Pose;
2866
+ 'kinematic_configuration'?: KinematicConfiguration;
2867
+ /**
2868
+ * Optional identifier of the coordinate system the pose is expressed in. If this is null or omitted, the pose is referenced in `world`.
2869
+ */
2870
+ 'coordinate_system'?: string;
2871
+ /**
2872
+ * Identifies the inline pose-reference variant.
2873
+ */
2874
+ 'type': InlinePoseReferenceTypeEnum;
2875
+ /**
2876
+ * Specifies the tool-center-point identifier for this target.
2877
+ */
2878
+ 'tcp'?: string;
2879
+ /**
2880
+ * Contains string-valued annotations that are preserved on round-trip.
2881
+ */
2882
+ 'metadata'?: {
2883
+ [key: string]: string;
2884
+ };
2885
+ }
2886
+ declare const InlinePoseReferenceTypeEnum: {
2887
+ readonly InlinePose: "inline_pose";
2888
+ };
2889
+ type InlinePoseReferenceTypeEnum = typeof InlinePoseReferenceTypeEnum[keyof typeof InlinePoseReferenceTypeEnum];
2376
2890
  /**
2377
2891
  * 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.
2378
2892
  */
@@ -2437,13 +2951,16 @@ interface InverseKinematicsRequest {
2437
2951
  'collision_setups'?: {
2438
2952
  [key: string]: CollisionSetup;
2439
2953
  };
2954
+ /**
2955
+ * If present, all solutions are shifted to the same periodicity as the reference: Each individual joint angle is shifted by integer multiples of 2 pi (whole revolutions) until it\'s as close to the reference as possible. The solutions are sorted by ascending distance (L2 norm) from the reference.
2956
+ */
2440
2957
  'reference_joint_position'?: Array<number>;
2441
2958
  }
2442
2959
  interface InverseKinematicsResponse {
2443
2960
  'joints': Array<Array<Array<number>>>;
2444
2961
  }
2445
2962
  interface InverseKinematicsValidationError {
2446
- 'loc': Array<ValidationErrorLocInner>;
2963
+ 'loc': Array<Location1Inner>;
2447
2964
  'msg': string;
2448
2965
  'type': string;
2449
2966
  'input': {
@@ -2581,10 +3098,36 @@ interface JointLimits {
2581
3098
  'torque'?: number;
2582
3099
  }
2583
3100
  interface JointPTPMotion {
3101
+ /**
3102
+ * Starting joint position for the collision-free motion. Must contain exactly the same number of values as joints in the motion group. To retrieve the current joint position, use the endpoint [getCurrentMotionGroupState](#/operations/getCurrentMotionGroupState).
3103
+ */
2584
3104
  'start_joint_position': Array<number>;
3105
+ /**
3106
+ * The target joint position of the motion. Must contain exactly the same number of values as joints in the motion group. To compute target joint position from a TCP pose, use the endpoint [inverseKinematics](#/operations/inverseKinematics).
3107
+ */
2585
3108
  'target_joint_position': Array<number>;
2586
3109
  'limits_override'?: LimitsOverride;
2587
3110
  }
3111
+ /**
3112
+ * Defines a motion target as a joint configuration in radians.
3113
+ */
3114
+ interface JointPositionReference {
3115
+ /**
3116
+ * Identifies the joint-position reference variant.
3117
+ */
3118
+ 'type': JointPositionReferenceTypeEnum;
3119
+ 'joints': Array<number>;
3120
+ /**
3121
+ * Contains string-valued annotations that are preserved on round-trip.
3122
+ */
3123
+ 'metadata'?: {
3124
+ [key: string]: string;
3125
+ };
3126
+ }
3127
+ declare const JointPositionReferenceTypeEnum: {
3128
+ readonly JointPosition: "joint_position";
3129
+ };
3130
+ type JointPositionReferenceTypeEnum = typeof JointPositionReferenceTypeEnum[keyof typeof JointPositionReferenceTypeEnum];
2588
3131
  interface JointTrajectory {
2589
3132
  /**
2590
3133
  * 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].
@@ -2610,7 +3153,7 @@ interface JointVelocityRequest {
2610
3153
  */
2611
3154
  'message_type': JointVelocityRequestMessageTypeEnum;
2612
3155
  /**
2613
- * This structure describes a set of joint values, e.g., positions, currents, torques, of a motion group. Float precision is the default.
3156
+ * in [rad/s]
2614
3157
  */
2615
3158
  'velocity': Array<number>;
2616
3159
  }
@@ -2641,7 +3184,7 @@ interface JointWaypoint {
2641
3184
  */
2642
3185
  'kind': JointWaypointKindEnum;
2643
3186
  /**
2644
- * This structure describes a set of joint values, e.g., positions, currents, torques, of a motion group. Float precision is the default.
3187
+ * Joint positions for this waypoint.
2645
3188
  */
2646
3189
  'joints': Array<number>;
2647
3190
  }
@@ -2900,7 +3443,7 @@ interface LinkChainValue {
2900
3443
  */
2901
3444
  'source': LinkChainValueSourceEnum;
2902
3445
  /**
2903
- * A link chain is a kinematic chain of links that is connected via joints. A motion group can be used to control the motion of the joints in a link chain. A link is a group of colliders that is attached to the link reference frame. The reference frame of a link is obtained after applying all sets of Denavit-Hartenberg-parameters from base to (including) the link index. This means that the reference frame of the link is on the rotation axis of the next joint in the kinematic chain. Example: For a motion group with 2 joints, the collider reference frame (CRF) for link 1 is on the rotation axis of joint 2. The chain looks like: - Origin >> Mounting >> Base >> (CRF Base) Joint 0 >> Link 0 >> (CRF Link 0) Joint 1 >> Link 1 >> (CRF Link 1) Flange (CRF Tool) >> TCP Adjacent links in the kinematic chain of the motion group are not checked for mutual collision.
3446
+ * The inline link chain definition.
2904
3447
  */
2905
3448
  'link_chain': Array<{
2906
3449
  [key: string]: Collider;
@@ -2925,6 +3468,33 @@ interface ListTrajectoriesResponse {
2925
3468
  */
2926
3469
  'trajectories'?: Array<string>;
2927
3470
  }
3471
+ /**
3472
+ * References a pose from the enclosing dataset.
3473
+ */
3474
+ interface LocalPoseReference {
3475
+ /**
3476
+ * Identifies the local pose reference variant.
3477
+ */
3478
+ 'type': LocalPoseReferenceTypeEnum;
3479
+ /**
3480
+ * Specifies the referenced pose identifier within the enclosing dataset.
3481
+ */
3482
+ 'pose_id': string;
3483
+ /**
3484
+ * Contains string-valued annotations that are preserved on round-trip.
3485
+ */
3486
+ 'metadata'?: {
3487
+ [key: string]: string;
3488
+ };
3489
+ }
3490
+ declare const LocalPoseReferenceTypeEnum: {
3491
+ readonly LocalPose: "local_pose";
3492
+ };
3493
+ type LocalPoseReferenceTypeEnum = typeof LocalPoseReferenceTypeEnum[keyof typeof LocalPoseReferenceTypeEnum];
3494
+ /**
3495
+ * @type Location1Inner
3496
+ */
3497
+ type Location1Inner = number | string;
2928
3498
  declare const Manufacturer: {
2929
3499
  readonly Abb: "abb";
2930
3500
  readonly Bostondynamics: "bostondynamics";
@@ -2937,6 +3507,40 @@ declare const Manufacturer: {
2937
3507
  readonly Yaskawa: "yaskawa";
2938
3508
  };
2939
3509
  type Manufacturer = typeof Manufacturer[keyof typeof Manufacturer];
3510
+ /**
3511
+ * Emits a named point of interest when execution crosses a trajectory location.
3512
+ */
3513
+ interface MarkerCommand {
3514
+ /**
3515
+ * Identifies the marker command variant.
3516
+ */
3517
+ 'type': MarkerCommandTypeEnum;
3518
+ /**
3519
+ * Specifies the marker name.
3520
+ */
3521
+ 'name': string;
3522
+ /**
3523
+ * Contains arbitrary structured data emitted with the marker.
3524
+ */
3525
+ 'payload'?: {
3526
+ [key: string]: any;
3527
+ };
3528
+ 'at'?: AtTrigger;
3529
+ /**
3530
+ * Contains a free-form authoring annotation.
3531
+ */
3532
+ 'intent'?: string;
3533
+ /**
3534
+ * Contains string-valued annotations that are preserved on round-trip.
3535
+ */
3536
+ 'metadata'?: {
3537
+ [key: string]: string;
3538
+ };
3539
+ }
3540
+ declare const MarkerCommandTypeEnum: {
3541
+ readonly Marker: "marker";
3542
+ };
3543
+ type MarkerCommandTypeEnum = typeof MarkerCommandTypeEnum[keyof typeof MarkerCommandTypeEnum];
2940
3544
  interface MergeTrajectories422Response {
2941
3545
  'detail'?: Array<MergeTrajectoriesValidationError>;
2942
3546
  }
@@ -2989,14 +3593,14 @@ interface MergeTrajectoriesSegment {
2989
3593
  */
2990
3594
  'blending'?: BlendingPosition;
2991
3595
  /**
2992
- * Collision layers to be respected by the motion planner when planning for a single motion group. Each setup represents one layer, e.g., the safety zones and shapes or a fine grained tool and workpiece model. Layers are checked individually along the trajectory and independently of other layers. To respect the safety zones of the controller and check for collision: 1. Fetch the safety zones, link and tool shapes from the controller. 2. Add the fetched zones, links and tools to a layer. 3. Create other layers from your own 3D data as needed. 4. Plan trajectory. 5. The response highlights the layer in which a collision was detected by key.
3596
+ * Collision setups set here override the collsion setups of the Motion Group Configuration. Collisions are checked only on the trajectory section that deviates from the original path due to blending.
2993
3597
  */
2994
3598
  'collision_setups'?: {
2995
3599
  [key: string]: CollisionSetup;
2996
3600
  };
2997
3601
  }
2998
3602
  interface MergeTrajectoriesValidationError {
2999
- 'loc': Array<ValidationErrorLocInner>;
3603
+ 'loc': Array<Location1Inner>;
3000
3604
  'msg': string;
3001
3605
  'type': string;
3002
3606
  'input': {
@@ -3116,6 +3720,13 @@ type MotionCommandBlending = BlendingAuto | BlendingPosition;
3116
3720
  * @type MotionCommandPath
3117
3721
  */
3118
3722
  type MotionCommandPath = PathCartesianPTP | PathCircle | PathCubicSpline | PathDirectionConstrainedCartesianPTP | PathDirectionConstrainedJointPTP | PathJointPTP | PathLine;
3723
+ /**
3724
+ * Defines a planner-generated path to a motion target.
3725
+ */
3726
+ interface MotionGenerator {
3727
+ 'algorithm': CollisionFreeAlgorithm;
3728
+ 'constraint'?: DirectionConstraint;
3729
+ }
3119
3730
  /**
3120
3731
  * Response for motion group configuration lookup.
3121
3732
  */
@@ -3156,7 +3767,7 @@ interface MotionGroupDescription {
3156
3767
  [key: string]: TcpOffset;
3157
3768
  };
3158
3769
  /**
3159
- * A collection of identifiable colliders.
3770
+ * SafetyZones are areas which cannot be entered or where certain limits apply. SafetyZones are defined in the world coordinate system.
3160
3771
  */
3161
3772
  'safety_zones'?: {
3162
3773
  [key: string]: Collider;
@@ -3305,6 +3916,23 @@ interface MotionGroupModelDescription {
3305
3916
  */
3306
3917
  'is_custom': boolean;
3307
3918
  }
3919
+ /**
3920
+ * References the motion group that executes a command routine.
3921
+ */
3922
+ interface MotionGroupReference {
3923
+ /**
3924
+ * Identifies the motion group reference variant.
3925
+ */
3926
+ 'type': MotionGroupReferenceTypeEnum;
3927
+ /**
3928
+ * Specifies the motion group identifier.
3929
+ */
3930
+ 'id': string;
3931
+ }
3932
+ declare const MotionGroupReferenceTypeEnum: {
3933
+ readonly Id: "id";
3934
+ };
3935
+ type MotionGroupReferenceTypeEnum = typeof MotionGroupReferenceTypeEnum[keyof typeof MotionGroupReferenceTypeEnum];
3308
3936
  interface MotionGroupSetup {
3309
3937
  /**
3310
3938
  * Identifies a single motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported types.
@@ -3349,7 +3977,7 @@ interface MotionGroupState {
3349
3977
  */
3350
3978
  'controller': string;
3351
3979
  /**
3352
- * This structure describes a set of joint values, e.g., positions, currents, torques, of a motion group. Float precision is the default.
3980
+ * Current joint position of each joint. 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].
3353
3981
  */
3354
3982
  'joint_position': Array<number>;
3355
3983
  /**
@@ -3357,11 +3985,11 @@ interface MotionGroupState {
3357
3985
  */
3358
3986
  'joint_limit_reached': MotionGroupStateJointLimitReached;
3359
3987
  /**
3360
- * This structure describes a set of joint values, e.g., positions, currents, torques, of a motion group. Float precision is the default.
3988
+ * Current joint torque of each joint in [Nm]. Is only available if the robot controller supports it, e.g., available for UR controllers.
3361
3989
  */
3362
3990
  'joint_torque'?: Array<number>;
3363
3991
  /**
3364
- * This structure describes a set of joint values, e.g., positions, currents, torques, of a motion group. Float precision is the default.
3992
+ * Current at TCP in [A]. Is only available if the robot controller supports it, e.g., available for UR controllers.
3365
3993
  */
3366
3994
  'joint_current'?: Array<number>;
3367
3995
  /**
@@ -3414,6 +4042,19 @@ interface MotionGroupStateJointLimitReached {
3414
4042
  */
3415
4043
  'limit_reached': Array<boolean>;
3416
4044
  }
4045
+ /**
4046
+ * Groups inheritable baseline blending and motion limit settings.
4047
+ */
4048
+ interface MotionSettings {
4049
+ /**
4050
+ * Specifies blending or explicitly suppresses inherited blending when set to `null`.
4051
+ */
4052
+ 'blending'?: Blending | null;
4053
+ /**
4054
+ * Specifies motion limit overrides or skips routine defaults when set to `null`.
4055
+ */
4056
+ 'limits_override'?: LimitsOverride | null;
4057
+ }
3417
4058
  /**
3418
4059
  * Error message in case an error occurs during movement execution.
3419
4060
  */
@@ -3430,13 +4071,13 @@ declare const MovementErrorResponseKindEnum: {
3430
4071
  type MovementErrorResponseKindEnum = typeof MovementErrorResponseKindEnum[keyof typeof MovementErrorResponseKindEnum];
3431
4072
  interface MultiCollisionSetup {
3432
4073
  /**
3433
- * A collection of collision motion groups.
4074
+ * Dictionary of motion group collision motion groups containing link chain and tool colliders.
3434
4075
  */
3435
4076
  'collision_motion_groups_by_motion_group_key'?: {
3436
4077
  [key: string]: CollisionMotionGroup;
3437
4078
  };
3438
4079
  /**
3439
- * A collection of identifiable colliders.
4080
+ * Colliders are checked against links and tool.
3440
4081
  */
3441
4082
  'colliders'?: {
3442
4083
  [key: string]: Collider;
@@ -3464,7 +4105,7 @@ interface MultiErrorJointLimitExceeded {
3464
4105
  interface MultiErrorJointPositionCollision {
3465
4106
  'collisions'?: Array<Collision>;
3466
4107
  /**
3467
- * A collection of single joint positions.
4108
+ * The joint positions of all motion groups as the collision occurs.
3468
4109
  */
3469
4110
  'joint_positions_by_motion_group_key'?: {
3470
4111
  [key: string]: Array<number>;
@@ -3472,7 +4113,7 @@ interface MultiErrorJointPositionCollision {
3472
4113
  }
3473
4114
  interface MultiJointTrajectory {
3474
4115
  /**
3475
- * A collection of joint position arrays.
4116
+ * For each motion group, this dictionary contains a 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].
3476
4117
  */
3477
4118
  'joint_positions_by_motion_group_key': {
3478
4119
  [key: string]: Array<Array<number>>;
@@ -3488,19 +4129,19 @@ interface MultiSearchCollisionFree422Response {
3488
4129
  }
3489
4130
  interface MultiSearchCollisionFreeRequest {
3490
4131
  /**
3491
- * A collection of motion group setups.
4132
+ * Dictionary of motion group setups.
3492
4133
  */
3493
4134
  'motion_group_setups_by_motion_group_key': {
3494
4135
  [key: string]: MotionGroupSetup;
3495
4136
  };
3496
4137
  /**
3497
- * A collection of joint PTP path definitions.
4138
+ * Dictionary of path definitions. The keys must match the ones in `motion_group_setups_by_motion_group_key`.
3498
4139
  */
3499
4140
  'path_definitions_by_motion_group_key': {
3500
4141
  [key: string]: JointPTPMotion;
3501
4142
  };
3502
4143
  /**
3503
- * A collection of multi collision setups.
4144
+ * Dictionary of collision setups. Defines cross-group collision checking: which link-chain/tool colliders from each motion group to consider, plus static environment colliders.
3504
4145
  */
3505
4146
  'collision_setups'?: {
3506
4147
  [key: string]: MultiCollisionSetup;
@@ -3519,7 +4160,7 @@ interface MultiSearchCollisionFreeResponse {
3519
4160
  */
3520
4161
  type MultiSearchCollisionFreeResponseResponse = MultiJointTrajectory | PlanCollisionFreeFailedResponse;
3521
4162
  interface MultiSearchCollisionFreeValidationError {
3522
- 'loc': Array<ValidationErrorLocInner>;
4163
+ 'loc': Array<Location1Inner>;
3523
4164
  'msg': string;
3524
4165
  'type': string;
3525
4166
  'input': {
@@ -3744,6 +4385,23 @@ declare const PathDirectionConstrainedJointPTPPathDefinitionNameEnum: {
3744
4385
  readonly DirectionConstrainedJointPtp: "DirectionConstrainedJointPTP";
3745
4386
  };
3746
4387
  type PathDirectionConstrainedJointPTPPathDefinitionNameEnum = typeof PathDirectionConstrainedJointPTPPathDefinitionNameEnum[keyof typeof PathDirectionConstrainedJointPTPPathDefinitionNameEnum];
4388
+ /**
4389
+ * Positions an overlay command at a fraction of the anchor motion segment.
4390
+ */
4391
+ interface PathFractionTrigger {
4392
+ /**
4393
+ * Identifies the path-fraction trigger variant.
4394
+ */
4395
+ 'type': PathFractionTriggerTypeEnum;
4396
+ /**
4397
+ * Specifies the fraction of the anchor motion segment in the half-open range from `zero` to `one`.
4398
+ */
4399
+ 'value': number;
4400
+ }
4401
+ declare const PathFractionTriggerTypeEnum: {
4402
+ readonly PathFraction: "path_fraction";
4403
+ };
4404
+ type PathFractionTriggerTypeEnum = typeof PathFractionTriggerTypeEnum[keyof typeof PathFractionTriggerTypeEnum];
3747
4405
  /**
3748
4406
  * A joint point-to-point represents a line in joint space. All joints will be moved synchronously.
3749
4407
  */
@@ -3762,10 +4420,130 @@ interface PathLine {
3762
4420
  'target_pose': Pose;
3763
4421
  'path_definition_name': PathLinePathDefinitionNameEnum;
3764
4422
  }
3765
- declare const PathLinePathDefinitionNameEnum: {
4423
+ declare const PathLinePathDefinitionNameEnum: {
4424
+ readonly PathLine: "PathLine";
4425
+ };
4426
+ type PathLinePathDefinitionNameEnum = typeof PathLinePathDefinitionNameEnum[keyof typeof PathLinePathDefinitionNameEnum];
4427
+ /**
4428
+ * @type PathType
4429
+ * Defines the baseline path kind and path-specific parameters without an embedded target.
4430
+ */
4431
+ type PathType = {
4432
+ path_definition_name: 'PathCartesianPTP';
4433
+ } & PathTypeCartesianPTP | {
4434
+ path_definition_name: 'PathCircle';
4435
+ } & PathTypeCircle | {
4436
+ path_definition_name: 'PathCubicSpline';
4437
+ } & PathTypeCubicSpline | {
4438
+ path_definition_name: 'PathDirectionConstrainedCartesianPTP';
4439
+ } & PathTypeDirectionConstrainedCartesianPTP | {
4440
+ path_definition_name: 'PathDirectionConstrainedJointPTP';
4441
+ } & PathTypeDirectionConstrainedJointPTP | {
4442
+ path_definition_name: 'PathJointPTP';
4443
+ } & PathTypeJointPTP | {
4444
+ path_definition_name: 'PathLine';
4445
+ } & PathTypeLine;
4446
+ /**
4447
+ * 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.
4448
+ */
4449
+ interface PathTypeCartesianPTP {
4450
+ /**
4451
+ * Identifies the Cartesian point-to-point path variant.
4452
+ */
4453
+ 'path_definition_name': PathTypeCartesianPTPPathDefinitionNameEnum;
4454
+ }
4455
+ declare const PathTypeCartesianPTPPathDefinitionNameEnum: {
4456
+ readonly PathCartesianPtp: "PathCartesianPTP";
4457
+ };
4458
+ type PathTypeCartesianPTPPathDefinitionNameEnum = typeof PathTypeCartesianPTPPathDefinitionNameEnum[keyof typeof PathTypeCartesianPTPPathDefinitionNameEnum];
4459
+ /**
4460
+ * Defines a circular Cartesian path after lifting the target into the motion command.
4461
+ */
4462
+ interface PathTypeCircle {
4463
+ /**
4464
+ * Identifies the circular Cartesian path variant.
4465
+ */
4466
+ 'path_definition_name': PathTypeCirclePathDefinitionNameEnum;
4467
+ /**
4468
+ * References the intermediate pose that shapes the circular path.
4469
+ */
4470
+ 'via_pose': PoseRef;
4471
+ }
4472
+ declare const PathTypeCirclePathDefinitionNameEnum: {
4473
+ readonly PathCircle: "PathCircle";
4474
+ };
4475
+ type PathTypeCirclePathDefinitionNameEnum = typeof PathTypeCirclePathDefinitionNameEnum[keyof typeof PathTypeCirclePathDefinitionNameEnum];
4476
+ /**
4477
+ * Defines a cubic-spline Cartesian path after lifting the target into the motion command.
4478
+ */
4479
+ interface PathTypeCubicSpline {
4480
+ /**
4481
+ * Identifies the cubic-spline Cartesian path variant.
4482
+ */
4483
+ 'path_definition_name': PathTypeCubicSplinePathDefinitionNameEnum;
4484
+ /**
4485
+ * Specifies the intermediate points of the spline.
4486
+ */
4487
+ 'via_points': Array<CubicSplineViaPoint>;
4488
+ }
4489
+ declare const PathTypeCubicSplinePathDefinitionNameEnum: {
4490
+ readonly PathCubicSpline: "PathCubicSpline";
4491
+ };
4492
+ type PathTypeCubicSplinePathDefinitionNameEnum = typeof PathTypeCubicSplinePathDefinitionNameEnum[keyof typeof PathTypeCubicSplinePathDefinitionNameEnum];
4493
+ /**
4494
+ * Defines a direction-constrained Cartesian path after lifting the target into the motion command.
4495
+ */
4496
+ interface PathTypeDirectionConstrainedCartesianPTP {
4497
+ /**
4498
+ * Identifies the direction-constrained Cartesian path variant.
4499
+ */
4500
+ 'path_definition_name': PathTypeDirectionConstrainedCartesianPTPPathDefinitionNameEnum;
4501
+ 'constraint': DirectionConstraint;
4502
+ }
4503
+ declare const PathTypeDirectionConstrainedCartesianPTPPathDefinitionNameEnum: {
4504
+ readonly PathDirectionConstrainedCartesianPtp: "PathDirectionConstrainedCartesianPTP";
4505
+ };
4506
+ type PathTypeDirectionConstrainedCartesianPTPPathDefinitionNameEnum = typeof PathTypeDirectionConstrainedCartesianPTPPathDefinitionNameEnum[keyof typeof PathTypeDirectionConstrainedCartesianPTPPathDefinitionNameEnum];
4507
+ /**
4508
+ * Defines a direction-constrained joint-space path after lifting the target into the motion command.
4509
+ */
4510
+ interface PathTypeDirectionConstrainedJointPTP {
4511
+ /**
4512
+ * Identifies the direction-constrained joint-space path variant.
4513
+ */
4514
+ 'path_definition_name': PathTypeDirectionConstrainedJointPTPPathDefinitionNameEnum;
4515
+ 'constraint': DirectionConstraint;
4516
+ }
4517
+ declare const PathTypeDirectionConstrainedJointPTPPathDefinitionNameEnum: {
4518
+ readonly PathDirectionConstrainedJointPtp: "PathDirectionConstrainedJointPTP";
4519
+ };
4520
+ type PathTypeDirectionConstrainedJointPTPPathDefinitionNameEnum = typeof PathTypeDirectionConstrainedJointPTPPathDefinitionNameEnum[keyof typeof PathTypeDirectionConstrainedJointPTPPathDefinitionNameEnum];
4521
+ /**
4522
+ * Defines a joint-space point-to-point path after lifting the target into the motion command.
4523
+ */
4524
+ interface PathTypeJointPTP {
4525
+ /**
4526
+ * Identifies the joint-space point-to-point path variant.
4527
+ */
4528
+ 'path_definition_name': PathTypeJointPTPPathDefinitionNameEnum;
4529
+ }
4530
+ declare const PathTypeJointPTPPathDefinitionNameEnum: {
4531
+ readonly PathJointPtp: "PathJointPTP";
4532
+ };
4533
+ type PathTypeJointPTPPathDefinitionNameEnum = typeof PathTypeJointPTPPathDefinitionNameEnum[keyof typeof PathTypeJointPTPPathDefinitionNameEnum];
4534
+ /**
4535
+ * Defines a straight Cartesian path after lifting the target into the motion command.
4536
+ */
4537
+ interface PathTypeLine {
4538
+ /**
4539
+ * Identifies the straight Cartesian path variant.
4540
+ */
4541
+ 'path_definition_name': PathTypeLinePathDefinitionNameEnum;
4542
+ }
4543
+ declare const PathTypeLinePathDefinitionNameEnum: {
3766
4544
  readonly PathLine: "PathLine";
3767
4545
  };
3768
- type PathLinePathDefinitionNameEnum = typeof PathLinePathDefinitionNameEnum[keyof typeof PathLinePathDefinitionNameEnum];
4546
+ type PathTypeLinePathDefinitionNameEnum = typeof PathTypeLinePathDefinitionNameEnum[keyof typeof PathTypeLinePathDefinitionNameEnum];
3769
4547
  /**
3770
4548
  * Request to pause executing action chunks. If successful, `execute` jogging state in [MotionGroupState](MotionGroupState.yaml) is set to `PAUSED_BY_USER`.
3771
4549
  */
@@ -3858,6 +4636,31 @@ interface PauseOnIO {
3858
4636
  'comparator': Comparator;
3859
4637
  'io_origin': IOOrigin;
3860
4638
  }
4639
+ /**
4640
+ * Monitors an I/O expression from a trajectory location and pauses while it is `true`.
4641
+ */
4642
+ interface PauseOnIOCommand {
4643
+ /**
4644
+ * Identifies the conditionally pausing command variant.
4645
+ */
4646
+ 'type': PauseOnIOCommandTypeEnum;
4647
+ 'condition': IOExpression;
4648
+ 'at'?: AtTrigger;
4649
+ /**
4650
+ * Contains a free-form authoring annotation.
4651
+ */
4652
+ 'intent'?: string;
4653
+ /**
4654
+ * Contains string-valued annotations that are preserved on round-trip.
4655
+ */
4656
+ 'metadata'?: {
4657
+ [key: string]: string;
4658
+ };
4659
+ }
4660
+ declare const PauseOnIOCommandTypeEnum: {
4661
+ readonly PauseOnIo: "pause_on_io";
4662
+ };
4663
+ type PauseOnIOCommandTypeEnum = typeof PauseOnIOCommandTypeEnum[keyof typeof PauseOnIOCommandTypeEnum];
3861
4664
  interface Payload {
3862
4665
  'name': string;
3863
4666
  /**
@@ -3865,11 +4668,11 @@ interface Payload {
3865
4668
  */
3866
4669
  'payload': number;
3867
4670
  /**
3868
- * A three-dimensional vector [x, y, z] with double precision.
4671
+ * Center of mass of payload as a three-dimensional position vector [x, y, z] in [mm].
3869
4672
  */
3870
4673
  'center_of_mass'?: Array<number>;
3871
4674
  /**
3872
- * A three-dimensional vector [x, y, z] with double precision.
4675
+ * Principal moments of inertia of payload as three-dimensional vector [I_xx, I_yy, I_zz] in [kg·m²].
3873
4676
  */
3874
4677
  'moment_of_inertia'?: Array<number>;
3875
4678
  }
@@ -3888,12 +4691,18 @@ interface PlanCollisionFreeRequest {
3888
4691
  */
3889
4692
  'motion_group_setup': MotionGroupSetup;
3890
4693
  /**
3891
- * Collision layers with support for storage references. Each value is either a store key referencing a stored CollisionSetup, or an inline collision setup object with optional store key references. All storage keys are resolved against the {cell} path parameter of the request URL, which determines the storage bucket. If set on the request, overrides motion_group_setup.collision_setups.
4694
+ * Optional collision setups with support for store keys. If set, overrides motion_group_setup.collision_setups. Each value is either an inline CollisionSetup object or a storage key reference. Storage keys are resolved against the {cell} path parameter of the request URL, which determines the storage bucket.
3892
4695
  */
3893
4696
  'collision_setups'?: {
3894
4697
  [key: string]: CollisionSetupValueOrKey;
3895
4698
  };
4699
+ /**
4700
+ * Starting joint position for the collision-free motion. Must contain exactly the same number of values as joints in the motion group. To retrieve the current joint position, use the endpoint [getCurrentMotionGroupState](#/operations/getCurrentMotionGroupState).
4701
+ */
3896
4702
  'start_joint_position': Array<number>;
4703
+ /**
4704
+ * The target joint position of the motion. Must contain exactly the same number of values as joints in the motion group. To compute target joint position from a TCP pose, use the endpoint [inverseKinematics](#/operations/inverseKinematics).
4705
+ */
3897
4706
  'target': Array<number>;
3898
4707
  /**
3899
4708
  * Optional constraint for the motion. If provided, the motion will be constrained accordingly. > **NOTE** > > Constraints are experimental and their behavior may change in future releases.
@@ -3935,6 +4744,9 @@ interface PlanTrajectoryRequest {
3935
4744
  * The data to assemble the robot setup can be retrieved from [getMotionGroupDescription](#/operations/getMotionGroupDescription) endpoint.
3936
4745
  */
3937
4746
  'motion_group_setup': MotionGroupSetup;
4747
+ /**
4748
+ * To define a motion the start joints have to be indicated. Cartesian movements will be in the same kinematic configuration as the start joint position until the first joint point-to-point motion. Motions can only be executed if the start joint position is the current joint position of the motion group. To retrieve the current joint position use the endpoint [getCurrentMotionGroupState](#/operations/getCurrentMotionGroupState). To move the robot to the start joint position use the endpoint [streamMoveToTrajectoryViaJointP2P](#/operations/streamMoveToTrajectoryViaJointP2P).
4749
+ */
3938
4750
  'start_joint_position': Array<number>;
3939
4751
  /**
3940
4752
  * List of motion commands. A command consists of a path definition (line, circle, joint_ptp, cartesian_ptp, cubic_spline), blending, and limits override.
@@ -3953,7 +4765,7 @@ interface PlanTrajectoryResponse {
3953
4765
  */
3954
4766
  type PlanTrajectoryResponseResponse = JointTrajectory | PlanTrajectoryFailedResponse;
3955
4767
  interface PlanValidationError {
3956
- 'loc': Array<ValidationErrorLocInner>;
4768
+ 'loc': Array<Location1Inner>;
3957
4769
  'msg': string;
3958
4770
  'type': string;
3959
4771
  'input': {
@@ -4020,6 +4832,19 @@ interface Pose {
4020
4832
  */
4021
4833
  'orientation'?: Array<number>;
4022
4834
  }
4835
+ /**
4836
+ * @type PoseRef
4837
+ * Defines a referenced, inline, or joint-position target for a motion command.
4838
+ */
4839
+ type PoseRef = {
4840
+ type: 'dataset_pose';
4841
+ } & DatasetPoseReference | {
4842
+ type: 'inline_pose';
4843
+ } & InlinePoseReference | {
4844
+ type: 'joint_position';
4845
+ } & JointPositionReference | {
4846
+ type: 'local_pose';
4847
+ } & LocalPoseReference;
4023
4848
  /**
4024
4849
  * A pose waypoint for action chunk streaming. > **NOTE** > > This type is experimental and its behavior may change in future releases.
4025
4850
  */
@@ -4302,10 +5127,10 @@ interface ProjectJointPositionDirectionConstraintResponse {
4302
5127
  /**
4303
5128
  * List of projected joint positions. If the resulting joint position is in collision or violates joint limits, the corresponding entry is null.
4304
5129
  */
4305
- 'projected_joint_positions': Array<Array<number> | null>;
5130
+ 'projected_joint_positions': Array<Array | null>;
4306
5131
  }
4307
5132
  interface ProjectJointPositionDirectionConstraintValidationError {
4308
- 'loc': Array<ValidationErrorLocInner>;
5133
+ 'loc': Array<Location1Inner>;
4309
5134
  'msg': string;
4310
5135
  'type': string;
4311
5136
  'input': {
@@ -4411,6 +5236,30 @@ declare const ReleaseChannel: {
4411
5236
  readonly Next: "next";
4412
5237
  };
4413
5238
  type ReleaseChannel = typeof ReleaseChannel[keyof typeof ReleaseChannel];
5239
+ interface RerunLoggingConfigurationRequest {
5240
+ /**
5241
+ * Whether new Rerun logging sessions should be enabled.
5242
+ */
5243
+ 'enabled': boolean;
5244
+ /**
5245
+ * Optional gRPC URL for the Rerun viewer. Omit this field to keep the current URL. Set it to `null` or an empty string to clear the current URL.
5246
+ */
5247
+ 'rerun_url'?: string | null;
5248
+ }
5249
+ interface RerunLoggingConfigurationResponse {
5250
+ /**
5251
+ * Whether Rerun logging is currently enabled for new operations.
5252
+ */
5253
+ 'enabled': boolean;
5254
+ /**
5255
+ * Raw value of the `RERUN` environment variable in the service process.
5256
+ */
5257
+ 'rerun'?: string | null;
5258
+ /**
5259
+ * Current Rerun gRPC URL used by the service process, if any.
5260
+ */
5261
+ 'rerun_url'?: string | null;
5262
+ }
4414
5263
  /**
4415
5264
  * The configuration of a physical or virtual robot controller.
4416
5265
  */
@@ -4810,6 +5659,32 @@ interface SetIO {
4810
5659
  'location': number;
4811
5660
  'io_origin': IOOrigin;
4812
5661
  }
5662
+ /**
5663
+ * Sets an I/O output without blocking trajectory execution.
5664
+ */
5665
+ interface SetIOCommand {
5666
+ /**
5667
+ * Identifies the set-output command variant.
5668
+ */
5669
+ 'type': SetIOCommandTypeEnum;
5670
+ 'io_value': IOValue;
5671
+ 'io_origin': IOOrigin;
5672
+ 'at'?: AtTrigger;
5673
+ /**
5674
+ * Contains a free-form authoring annotation.
5675
+ */
5676
+ 'intent'?: string;
5677
+ /**
5678
+ * Contains string-valued annotations that are preserved on round-trip.
5679
+ */
5680
+ 'metadata'?: {
5681
+ [key: string]: string;
5682
+ };
5683
+ }
5684
+ declare const SetIOCommandTypeEnum: {
5685
+ readonly SetIo: "set_io";
5686
+ };
5687
+ type SetIOCommandTypeEnum = typeof SetIOCommandTypeEnum[keyof typeof SetIOCommandTypeEnum];
4813
5688
  /**
4814
5689
  * Defines available system modes of the robot system. Short versions (no \"ROBOT_SYSTEM_\" prefix) are provided, reusing strings from [getMode](#/operations/getMode) responses.
4815
5690
  */
@@ -4945,7 +5820,7 @@ interface StartMovementRequest {
4945
5820
  'message_type': StartMovementRequestMessageTypeEnum;
4946
5821
  'direction'?: Direction;
4947
5822
  /**
4948
- * - The location is a scalar value that defines a position along a path, typically ranging from 0 to `n`, where `n` denotes the number of motion commands - Each integer value of the location corresponds to a specific motion command, while non-integer values interpolate positions within the segments. - The location is calculated from the joint path
5823
+ * The target location to which the motion group moves along the trajectory to. If `direction` and `target_location` are both specified, target location takes precedence. If neither is specified, the default is `DIRECTION_FORWARD`.
4949
5824
  */
4950
5825
  'target_location'?: number;
4951
5826
  /**
@@ -5162,6 +6037,24 @@ interface TechmanControllerRtrs {
5162
6037
  */
5163
6038
  'tmrtc_port'?: number;
5164
6039
  }
6040
+ /**
6041
+ * Positions an overlay command at a duration from a motion boundary.
6042
+ */
6043
+ interface TimeTrigger {
6044
+ /**
6045
+ * Identifies the time trigger variant.
6046
+ */
6047
+ 'type': TimeTriggerTypeEnum;
6048
+ /**
6049
+ * Specifies the non-negative duration in seconds.
6050
+ */
6051
+ 'seconds': number;
6052
+ 'reference': AtReference;
6053
+ }
6054
+ declare const TimeTriggerTypeEnum: {
6055
+ readonly Time: "time";
6056
+ };
6057
+ type TimeTriggerTypeEnum = typeof TimeTriggerTypeEnum[keyof typeof TimeTriggerTypeEnum];
5165
6058
  /**
5166
6059
  * An inline tool collider wrapped for discriminator support.
5167
6060
  */
@@ -5171,7 +6064,7 @@ interface ToolValue {
5171
6064
  */
5172
6065
  'source': ToolValueSourceEnum;
5173
6066
  /**
5174
- * Defines the shape of a tool. A tool is a dictionary of colliders. All colliders that make up a tool are attached to the flange frame of the motion group.
6067
+ * The inline tool collider definition.
5175
6068
  */
5176
6069
  'tool': {
5177
6070
  [key: string]: Collider;
@@ -5239,7 +6132,7 @@ interface TrajectoryDetails {
5239
6132
  */
5240
6133
  'trajectory': string;
5241
6134
  /**
5242
- * - The location is a scalar value that defines a position along a path, typically ranging from 0 to `n`, where `n` denotes the number of motion commands - Each integer value of the location corresponds to a specific motion command, while non-integer values interpolate positions within the segments. - The location is calculated from the joint path
6135
+ * Location of current joint position commmand on the trajectory being executed.
5243
6136
  */
5244
6137
  'location': number;
5245
6138
  'state': TrajectoryDetailsState;
@@ -5464,7 +6357,7 @@ interface User {
5464
6357
  'email': string;
5465
6358
  }
5466
6359
  interface ValidationError {
5467
- 'loc': Array<ValidationErrorLocInner>;
6360
+ 'loc': Array<Location1Inner>;
5468
6361
  'msg': string;
5469
6362
  'type': string;
5470
6363
  'input': {
@@ -5479,10 +6372,6 @@ interface ValidationError2 {
5479
6372
  'msg': string;
5480
6373
  'type': string;
5481
6374
  }
5482
- /**
5483
- * @type ValidationErrorLocInner
5484
- */
5485
- type ValidationErrorLocInner = number | string;
5486
6375
  /**
5487
6376
  * The configuration of a virtual robot controller has to contain the manufacturer string, an optional joint position string array, and either a preset `type` **or** the complete JSON configuration.
5488
6377
  */
@@ -5520,6 +6409,35 @@ interface VirtualRobotConfiguration {
5520
6409
  */
5521
6410
  'content': string;
5522
6411
  }
6412
+ /**
6413
+ * Blocks at a trajectory location until an I/O expression becomes `true`.
6414
+ */
6415
+ interface WaitForIOCommand {
6416
+ /**
6417
+ * Identifies the blocking I/O-wait command variant.
6418
+ */
6419
+ 'type': WaitForIOCommandTypeEnum;
6420
+ 'condition': IOExpression;
6421
+ /**
6422
+ * Specifies the optional non-negative timeout in milliseconds. No specification means no timeout.
6423
+ */
6424
+ 'timeout_ms'?: number;
6425
+ 'at'?: AtTrigger;
6426
+ /**
6427
+ * Contains a free-form authoring annotation.
6428
+ */
6429
+ 'intent'?: string;
6430
+ /**
6431
+ * Contains string-valued annotations that are preserved on round-trip.
6432
+ */
6433
+ 'metadata'?: {
6434
+ [key: string]: string;
6435
+ };
6436
+ }
6437
+ declare const WaitForIOCommandTypeEnum: {
6438
+ readonly WaitForIo: "wait_for_io";
6439
+ };
6440
+ type WaitForIOCommandTypeEnum = typeof WaitForIOCommandTypeEnum[keyof typeof WaitForIOCommandTypeEnum];
5523
6441
  /**
5524
6442
  * The value to compare with the current value of the input/output.
5525
6443
  */
@@ -5530,6 +6448,34 @@ interface WaitForIOEventRequest {
5530
6448
  */
5531
6449
  'comparator': Comparator;
5532
6450
  }
6451
+ /**
6452
+ * Blocks at a trajectory location for a fixed duration.
6453
+ */
6454
+ interface WaitForTimeCommand {
6455
+ /**
6456
+ * Identifies the timed wait command variant.
6457
+ */
6458
+ 'type': WaitForTimeCommandTypeEnum;
6459
+ /**
6460
+ * Specifies the non-negative wait duration in milliseconds.
6461
+ */
6462
+ 'duration_ms': number;
6463
+ 'at'?: AtTrigger;
6464
+ /**
6465
+ * Contains a free-form authoring annotation.
6466
+ */
6467
+ 'intent'?: string;
6468
+ /**
6469
+ * Contains string-valued annotations that are preserved on round-trip.
6470
+ */
6471
+ 'metadata'?: {
6472
+ [key: string]: string;
6473
+ };
6474
+ }
6475
+ declare const WaitForTimeCommandTypeEnum: {
6476
+ readonly WaitForTime: "wait_for_time";
6477
+ };
6478
+ type WaitForTimeCommandTypeEnum = typeof WaitForTimeCommandTypeEnum[keyof typeof WaitForTimeCommandTypeEnum];
5533
6479
  /**
5534
6480
  * A waypoint for action chunk streaming. > **NOTE** > > This type is experimental and its behavior may change in future releases.
5535
6481
  */
@@ -7855,6 +8801,122 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
7855
8801
  */
7856
8802
  waitForIOEvent(cell: string, controller: string, waitForIOEventRequest: WaitForIOEventRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<boolean, any, {}>>;
7857
8803
  }
8804
+ /**
8805
+ * DatasetsApi - axios parameter creator
8806
+ */
8807
+ declare const DatasetsApiAxiosParamCreator: (configuration?: Configuration) => {
8808
+ /**
8809
+ * **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.
8810
+ * @summary Localize Pose from World (Dataset)
8811
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
8812
+ * @param {string} dataset Specifies the dataset identifier.
8813
+ * @param {string} coordinateSystem Unique identifier addressing a coordinate system within a teaching dataset.
8814
+ * @param {Pose} pose The pose expressed in the &#x60;world&#x60; coordinate system.
8815
+ * @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
8816
+ * @param {*} [options] Override http request option.
8817
+ * @throws {RequiredError}
8818
+ */
8819
+ localizeDatasetCoordinateSystemPose: (cell: string, dataset: string, coordinateSystem: string, pose: Pose, revision?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8820
+ /**
8821
+ * **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.
8822
+ * @summary Resolve Pose to World (Dataset)
8823
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
8824
+ * @param {string} dataset Specifies the dataset identifier.
8825
+ * @param {string} coordinateSystem Unique identifier addressing a coordinate system within a teaching dataset.
8826
+ * @param {Pose} pose The pose expressed relative to the given coordinate system.
8827
+ * @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
8828
+ * @param {*} [options] Override http request option.
8829
+ * @throws {RequiredError}
8830
+ */
8831
+ resolveDatasetCoordinateSystemPose: (cell: string, dataset: string, coordinateSystem: string, pose: Pose, revision?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8832
+ };
8833
+ /**
8834
+ * DatasetsApi - functional programming interface
8835
+ */
8836
+ declare const DatasetsApiFp: (configuration?: Configuration) => {
8837
+ /**
8838
+ * **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.
8839
+ * @summary Localize Pose from World (Dataset)
8840
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
8841
+ * @param {string} dataset Specifies the dataset identifier.
8842
+ * @param {string} coordinateSystem Unique identifier addressing a coordinate system within a teaching dataset.
8843
+ * @param {Pose} pose The pose expressed in the &#x60;world&#x60; coordinate system.
8844
+ * @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
8845
+ * @param {*} [options] Override http request option.
8846
+ * @throws {RequiredError}
8847
+ */
8848
+ localizeDatasetCoordinateSystemPose(cell: string, dataset: string, coordinateSystem: string, pose: Pose, revision?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Pose>>;
8849
+ /**
8850
+ * **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.
8851
+ * @summary Resolve Pose to World (Dataset)
8852
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
8853
+ * @param {string} dataset Specifies the dataset identifier.
8854
+ * @param {string} coordinateSystem Unique identifier addressing a coordinate system within a teaching dataset.
8855
+ * @param {Pose} pose The pose expressed relative to the given coordinate system.
8856
+ * @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
8857
+ * @param {*} [options] Override http request option.
8858
+ * @throws {RequiredError}
8859
+ */
8860
+ resolveDatasetCoordinateSystemPose(cell: string, dataset: string, coordinateSystem: string, pose: Pose, revision?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Pose>>;
8861
+ };
8862
+ /**
8863
+ * DatasetsApi - factory interface
8864
+ */
8865
+ declare const DatasetsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
8866
+ /**
8867
+ * **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.
8868
+ * @summary Localize Pose from World (Dataset)
8869
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
8870
+ * @param {string} dataset Specifies the dataset identifier.
8871
+ * @param {string} coordinateSystem Unique identifier addressing a coordinate system within a teaching dataset.
8872
+ * @param {Pose} pose The pose expressed in the &#x60;world&#x60; coordinate system.
8873
+ * @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
8874
+ * @param {*} [options] Override http request option.
8875
+ * @throws {RequiredError}
8876
+ */
8877
+ localizeDatasetCoordinateSystemPose(cell: string, dataset: string, coordinateSystem: string, pose: Pose, revision?: number, options?: RawAxiosRequestConfig): AxiosPromise<Pose>;
8878
+ /**
8879
+ * **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.
8880
+ * @summary Resolve Pose to World (Dataset)
8881
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
8882
+ * @param {string} dataset Specifies the dataset identifier.
8883
+ * @param {string} coordinateSystem Unique identifier addressing a coordinate system within a teaching dataset.
8884
+ * @param {Pose} pose The pose expressed relative to the given coordinate system.
8885
+ * @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
8886
+ * @param {*} [options] Override http request option.
8887
+ * @throws {RequiredError}
8888
+ */
8889
+ resolveDatasetCoordinateSystemPose(cell: string, dataset: string, coordinateSystem: string, pose: Pose, revision?: number, options?: RawAxiosRequestConfig): AxiosPromise<Pose>;
8890
+ };
8891
+ /**
8892
+ * DatasetsApi - object-oriented interface
8893
+ */
8894
+ declare class DatasetsApi extends BaseAPI {
8895
+ /**
8896
+ * **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.
8897
+ * @summary Localize Pose from World (Dataset)
8898
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
8899
+ * @param {string} dataset Specifies the dataset identifier.
8900
+ * @param {string} coordinateSystem Unique identifier addressing a coordinate system within a teaching dataset.
8901
+ * @param {Pose} pose The pose expressed in the &#x60;world&#x60; coordinate system.
8902
+ * @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
8903
+ * @param {*} [options] Override http request option.
8904
+ * @throws {RequiredError}
8905
+ */
8906
+ localizeDatasetCoordinateSystemPose(cell: string, dataset: string, coordinateSystem: string, pose: Pose, revision?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<Pose, any, {}>>;
8907
+ /**
8908
+ * **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.
8909
+ * @summary Resolve Pose to World (Dataset)
8910
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
8911
+ * @param {string} dataset Specifies the dataset identifier.
8912
+ * @param {string} coordinateSystem Unique identifier addressing a coordinate system within a teaching dataset.
8913
+ * @param {Pose} pose The pose expressed relative to the given coordinate system.
8914
+ * @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
8915
+ * @param {*} [options] Override http request option.
8916
+ * @throws {RequiredError}
8917
+ */
8918
+ resolveDatasetCoordinateSystemPose(cell: string, dataset: string, coordinateSystem: string, pose: Pose, revision?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<Pose, any, {}>>;
8919
+ }
7858
8920
  /**
7859
8921
  * JoggingApi - axios parameter creator
7860
8922
  */
@@ -10813,6 +11875,182 @@ declare class SystemApi extends BaseAPI {
10813
11875
  */
10814
11876
  updateNovaVersion(updateNovaVersionRequest: UpdateNovaVersionRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
10815
11877
  }
11878
+ /**
11879
+ * TeachingApi - axios parameter creator
11880
+ */
11881
+ declare const TeachingApiAxiosParamCreator: (configuration?: Configuration) => {
11882
+ /**
11883
+ * Creates a new teaching dataset together with its poses and command routines.
11884
+ * @summary Create Dataset
11885
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
11886
+ * @param {CreateDatasetRequest} createDatasetRequest
11887
+ * @param {*} [options] Override http request option.
11888
+ * @throws {RequiredError}
11889
+ */
11890
+ createDataset: (cell: string, createDatasetRequest: CreateDatasetRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11891
+ /**
11892
+ * 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.
11893
+ * @summary Delete Dataset
11894
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
11895
+ * @param {string} dataset Specifies the dataset identifier.
11896
+ * @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
11897
+ * @param {*} [options] Override http request option.
11898
+ * @throws {RequiredError}
11899
+ */
11900
+ deleteDataset: (cell: string, dataset: string, revision?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11901
+ /**
11902
+ * 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.
11903
+ * @summary Get Dataset
11904
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
11905
+ * @param {string} dataset Specifies the dataset identifier.
11906
+ * @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
11907
+ * @param {*} [options] Override http request option.
11908
+ * @throws {RequiredError}
11909
+ */
11910
+ getDataset: (cell: string, dataset: string, revision?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11911
+ /**
11912
+ * 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.
11913
+ * @summary List Datasets
11914
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
11915
+ * @param {string} [dataset] Restricts the result to all revisions of the given dataset.
11916
+ * @param {boolean} [latestOnly] When &#x60;true&#x60;, returns only the latest revision of each dataset.
11917
+ * @param {*} [options] Override http request option.
11918
+ * @throws {RequiredError}
11919
+ */
11920
+ getDatasets: (cell: string, dataset?: string, latestOnly?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11921
+ };
11922
+ /**
11923
+ * TeachingApi - functional programming interface
11924
+ */
11925
+ declare const TeachingApiFp: (configuration?: Configuration) => {
11926
+ /**
11927
+ * Creates a new teaching dataset together with its poses and command routines.
11928
+ * @summary Create Dataset
11929
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
11930
+ * @param {CreateDatasetRequest} createDatasetRequest
11931
+ * @param {*} [options] Override http request option.
11932
+ * @throws {RequiredError}
11933
+ */
11934
+ createDataset(cell: string, createDatasetRequest: CreateDatasetRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetDatasetResponse>>;
11935
+ /**
11936
+ * 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.
11937
+ * @summary Delete Dataset
11938
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
11939
+ * @param {string} dataset Specifies the dataset identifier.
11940
+ * @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
11941
+ * @param {*} [options] Override http request option.
11942
+ * @throws {RequiredError}
11943
+ */
11944
+ deleteDataset(cell: string, dataset: string, revision?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
11945
+ /**
11946
+ * 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.
11947
+ * @summary Get Dataset
11948
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
11949
+ * @param {string} dataset Specifies the dataset identifier.
11950
+ * @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
11951
+ * @param {*} [options] Override http request option.
11952
+ * @throws {RequiredError}
11953
+ */
11954
+ getDataset(cell: string, dataset: string, revision?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetDatasetResponse>>;
11955
+ /**
11956
+ * 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.
11957
+ * @summary List Datasets
11958
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
11959
+ * @param {string} [dataset] Restricts the result to all revisions of the given dataset.
11960
+ * @param {boolean} [latestOnly] When &#x60;true&#x60;, returns only the latest revision of each dataset.
11961
+ * @param {*} [options] Override http request option.
11962
+ * @throws {RequiredError}
11963
+ */
11964
+ getDatasets(cell: string, dataset?: string, latestOnly?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Dataset>>>;
11965
+ };
11966
+ /**
11967
+ * TeachingApi - factory interface
11968
+ */
11969
+ declare const TeachingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
11970
+ /**
11971
+ * Creates a new teaching dataset together with its poses and command routines.
11972
+ * @summary Create Dataset
11973
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
11974
+ * @param {CreateDatasetRequest} createDatasetRequest
11975
+ * @param {*} [options] Override http request option.
11976
+ * @throws {RequiredError}
11977
+ */
11978
+ createDataset(cell: string, createDatasetRequest: CreateDatasetRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetDatasetResponse>;
11979
+ /**
11980
+ * 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.
11981
+ * @summary Delete Dataset
11982
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
11983
+ * @param {string} dataset Specifies the dataset identifier.
11984
+ * @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
11985
+ * @param {*} [options] Override http request option.
11986
+ * @throws {RequiredError}
11987
+ */
11988
+ deleteDataset(cell: string, dataset: string, revision?: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
11989
+ /**
11990
+ * 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.
11991
+ * @summary Get Dataset
11992
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
11993
+ * @param {string} dataset Specifies the dataset identifier.
11994
+ * @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
11995
+ * @param {*} [options] Override http request option.
11996
+ * @throws {RequiredError}
11997
+ */
11998
+ getDataset(cell: string, dataset: string, revision?: number, options?: RawAxiosRequestConfig): AxiosPromise<GetDatasetResponse>;
11999
+ /**
12000
+ * 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.
12001
+ * @summary List Datasets
12002
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
12003
+ * @param {string} [dataset] Restricts the result to all revisions of the given dataset.
12004
+ * @param {boolean} [latestOnly] When &#x60;true&#x60;, returns only the latest revision of each dataset.
12005
+ * @param {*} [options] Override http request option.
12006
+ * @throws {RequiredError}
12007
+ */
12008
+ getDatasets(cell: string, dataset?: string, latestOnly?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<Array<Dataset>>;
12009
+ };
12010
+ /**
12011
+ * TeachingApi - object-oriented interface
12012
+ */
12013
+ declare class TeachingApi extends BaseAPI {
12014
+ /**
12015
+ * Creates a new teaching dataset together with its poses and command routines.
12016
+ * @summary Create Dataset
12017
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
12018
+ * @param {CreateDatasetRequest} createDatasetRequest
12019
+ * @param {*} [options] Override http request option.
12020
+ * @throws {RequiredError}
12021
+ */
12022
+ createDataset(cell: string, createDatasetRequest: CreateDatasetRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<GetDatasetResponse, any, {}>>;
12023
+ /**
12024
+ * 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.
12025
+ * @summary Delete Dataset
12026
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
12027
+ * @param {string} dataset Specifies the dataset identifier.
12028
+ * @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
12029
+ * @param {*} [options] Override http request option.
12030
+ * @throws {RequiredError}
12031
+ */
12032
+ deleteDataset(cell: string, dataset: string, revision?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
12033
+ /**
12034
+ * 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.
12035
+ * @summary Get Dataset
12036
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
12037
+ * @param {string} dataset Specifies the dataset identifier.
12038
+ * @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
12039
+ * @param {*} [options] Override http request option.
12040
+ * @throws {RequiredError}
12041
+ */
12042
+ getDataset(cell: string, dataset: string, revision?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<GetDatasetResponse, any, {}>>;
12043
+ /**
12044
+ * 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.
12045
+ * @summary List Datasets
12046
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
12047
+ * @param {string} [dataset] Restricts the result to all revisions of the given dataset.
12048
+ * @param {boolean} [latestOnly] When &#x60;true&#x60;, returns only the latest revision of each dataset.
12049
+ * @param {*} [options] Override http request option.
12050
+ * @throws {RequiredError}
12051
+ */
12052
+ getDatasets(cell: string, dataset?: string, latestOnly?: boolean, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<Dataset[], any, {}>>;
12053
+ }
10816
12054
  /**
10817
12055
  * TrajectoryCachingApi - axios parameter creator
10818
12056
  */
@@ -11089,6 +12327,15 @@ declare class TrajectoryExecutionApi extends BaseAPI {
11089
12327
  * TrajectoryPlanningApi - axios parameter creator
11090
12328
  */
11091
12329
  declare const TrajectoryPlanningApiAxiosParamCreator: (configuration?: Configuration) => {
12330
+ /**
12331
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: warning --> > **Experimental** Updates the process-wide Rerun logging configuration used by planner debug visualization. The viewer URL defaults to the rerun-gateway app from the NOVA app store. Activating logging will impact the performance of all trajectory-planning endpoints. Set `enabled=true` to turn logging on for new operations. Set `rerun_url` only if your setup diverges from the default.
12332
+ * @summary Configure Rerun Logging
12333
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
12334
+ * @param {RerunLoggingConfigurationRequest} rerunLoggingConfigurationRequest
12335
+ * @param {*} [options] Override http request option.
12336
+ * @throws {RequiredError}
12337
+ */
12338
+ configureRerunLogging: (cell: string, rerunLoggingConfigurationRequest: RerunLoggingConfigurationRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11092
12339
  /**
11093
12340
  * **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ <!-- theme: danger --> > **Experimental** Merges a list of joint trajectories into a single trajectory with collision-aware blending. This endpoint merges a list of separate trajectories by connecting them via blending. The blending is performed with collision checking to ensure the merged trajectory is safe to execute. Timescaling will be applied to the blended area to ensure all limits are respected.
11094
12341
  * @summary Merge Trajectories
@@ -11130,6 +12377,15 @@ declare const TrajectoryPlanningApiAxiosParamCreator: (configuration?: Configura
11130
12377
  * TrajectoryPlanningApi - functional programming interface
11131
12378
  */
11132
12379
  declare const TrajectoryPlanningApiFp: (configuration?: Configuration) => {
12380
+ /**
12381
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: warning --> > **Experimental** Updates the process-wide Rerun logging configuration used by planner debug visualization. The viewer URL defaults to the rerun-gateway app from the NOVA app store. Activating logging will impact the performance of all trajectory-planning endpoints. Set `enabled=true` to turn logging on for new operations. Set `rerun_url` only if your setup diverges from the default.
12382
+ * @summary Configure Rerun Logging
12383
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
12384
+ * @param {RerunLoggingConfigurationRequest} rerunLoggingConfigurationRequest
12385
+ * @param {*} [options] Override http request option.
12386
+ * @throws {RequiredError}
12387
+ */
12388
+ configureRerunLogging(cell: string, rerunLoggingConfigurationRequest: RerunLoggingConfigurationRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RerunLoggingConfigurationResponse>>;
11133
12389
  /**
11134
12390
  * **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ <!-- theme: danger --> > **Experimental** Merges a list of joint trajectories into a single trajectory with collision-aware blending. This endpoint merges a list of separate trajectories by connecting them via blending. The blending is performed with collision checking to ensure the merged trajectory is safe to execute. Timescaling will be applied to the blended area to ensure all limits are respected.
11135
12391
  * @summary Merge Trajectories
@@ -11171,6 +12427,15 @@ declare const TrajectoryPlanningApiFp: (configuration?: Configuration) => {
11171
12427
  * TrajectoryPlanningApi - factory interface
11172
12428
  */
11173
12429
  declare const TrajectoryPlanningApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
12430
+ /**
12431
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: warning --> > **Experimental** Updates the process-wide Rerun logging configuration used by planner debug visualization. The viewer URL defaults to the rerun-gateway app from the NOVA app store. Activating logging will impact the performance of all trajectory-planning endpoints. Set `enabled=true` to turn logging on for new operations. Set `rerun_url` only if your setup diverges from the default.
12432
+ * @summary Configure Rerun Logging
12433
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
12434
+ * @param {RerunLoggingConfigurationRequest} rerunLoggingConfigurationRequest
12435
+ * @param {*} [options] Override http request option.
12436
+ * @throws {RequiredError}
12437
+ */
12438
+ configureRerunLogging(cell: string, rerunLoggingConfigurationRequest: RerunLoggingConfigurationRequest, options?: RawAxiosRequestConfig): AxiosPromise<RerunLoggingConfigurationResponse>;
11174
12439
  /**
11175
12440
  * **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ <!-- theme: danger --> > **Experimental** Merges a list of joint trajectories into a single trajectory with collision-aware blending. This endpoint merges a list of separate trajectories by connecting them via blending. The blending is performed with collision checking to ensure the merged trajectory is safe to execute. Timescaling will be applied to the blended area to ensure all limits are respected.
11176
12441
  * @summary Merge Trajectories
@@ -11212,6 +12477,15 @@ declare const TrajectoryPlanningApiFactory: (configuration?: Configuration, base
11212
12477
  * TrajectoryPlanningApi - object-oriented interface
11213
12478
  */
11214
12479
  declare class TrajectoryPlanningApi extends BaseAPI {
12480
+ /**
12481
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: warning --> > **Experimental** Updates the process-wide Rerun logging configuration used by planner debug visualization. The viewer URL defaults to the rerun-gateway app from the NOVA app store. Activating logging will impact the performance of all trajectory-planning endpoints. Set `enabled=true` to turn logging on for new operations. Set `rerun_url` only if your setup diverges from the default.
12482
+ * @summary Configure Rerun Logging
12483
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
12484
+ * @param {RerunLoggingConfigurationRequest} rerunLoggingConfigurationRequest
12485
+ * @param {*} [options] Override http request option.
12486
+ * @throws {RequiredError}
12487
+ */
12488
+ configureRerunLogging(cell: string, rerunLoggingConfigurationRequest: RerunLoggingConfigurationRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<RerunLoggingConfigurationResponse, any, {}>>;
11215
12489
  /**
11216
12490
  * **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ <!-- theme: danger --> > **Experimental** Merges a list of joint trajectories into a single trajectory with collision-aware blending. This endpoint merges a list of separate trajectories by connecting them via blending. The blending is performed with collision checking to ensure the merged trajectory is safe to execute. Timescaling will be applied to the blended area to ensure all limits are respected.
11217
12491
  * @summary Merge Trajectories
@@ -12450,4 +13724,4 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
12450
13724
  setIOValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
12451
13725
  }
12452
13726
  //#endregion
12453
- export { AbbConfdata, AbbConfiguredPose, AbbController, AbbControllerEgmServer, AbbControllerKindEnum, AbbPose, ActionChunkRequest, ActionChunkRequestMessageTypeEnum, ActionChunkResponse, ActionChunkResponseKindEnum, ActionChunkStreamingApi, ActionChunkStreamingApiAxiosParamCreator, ActionChunkStreamingApiFactory, ActionChunkStreamingApiFp, ActivateLicenseRequest, AddTrajectoryError, AddTrajectoryErrorData, AddTrajectoryRequest, AddTrajectoryResponse, AddVirtualControllerMotionGroupRequest, ApiVersion, App, ApplicationApi, ApplicationApiAxiosParamCreator, ApplicationApiFactory, ApplicationApiFp, AxisRange, BASE_PATH, BUSInputsOutputsApi, BUSInputsOutputsApiAxiosParamCreator, BUSInputsOutputsApiFactory, BUSInputsOutputsApiFp, BaseAPI, Behavior, BlendingAuto, BlendingAutoBlendingNameEnum, BlendingPosition, BlendingPositionBlendingNameEnum, BlendingSpace, BooleanValue, BooleanValueValueTypeEnum, BostondynamicsController, BostondynamicsControllerKindEnum, BostondynamicsControllerRobotTypeEnum, Box, BoxBoxTypeEnum, BoxShapeTypeEnum, BusIODescription, BusIOModbusClient, BusIOModbusClientBusTypeEnum, BusIOModbusServer, BusIOModbusServerBusTypeEnum, BusIOModbusTCPClient, BusIOModbusTCPClientNetworkTypeEnum, BusIOModbusTCPServer, BusIOModbusTCPServerNetworkTypeEnum, BusIOModbusVirtual, BusIOModbusVirtualBusTypeEnum, BusIOProfinet, BusIOProfinetBusTypeEnum, BusIOProfinetDefaultRoute, BusIOProfinetIpConfig, BusIOProfinetNetwork, BusIOProfinetSlot, BusIOProfinetVirtual, BusIOProfinetVirtualBusTypeEnum, BusIOSnap7, BusIOSnap7BusTypeEnum, BusIOType, BusIOsState, BusIOsStateEnum, COLLECTION_FORMATS, CapabilityEntry, Capsule, CapsuleShapeTypeEnum, CartesianLimits, CartesianVelocity, Cell, CellApi, CellApiAxiosParamCreator, CellApiFactory, CellApiFp, CloudConfigStatus, CloudConfigStatusConfigured, CloudConfigStatusConfiguredStatusEnum, CloudConfigStatusNotConfigured, CloudConfigStatusNotConfiguredStatusEnum, CloudConfiguration, CloudConnectionError, CloudConnectionErrorError, CloudConnectionErrorInvalidToken, CloudConnectionErrorInvalidTokenCodeEnum, CloudConnectionErrorInvalidTokenDetails, CloudConnectionErrorInvalidTokenDetailsCloudResponse, CloudConnectionErrorLeafnodeConnectionError, CloudConnectionErrorLeafnodeConnectionErrorCodeEnum, CloudConnectionErrorLeafnodeConnectionErrorDetails, CloudConnectionErrorLeafnodeConnectionTimeout, CloudConnectionErrorLeafnodeConnectionTimeoutCodeEnum, CloudConnectionErrorLeafnodeRestartTimeout, CloudConnectionErrorLeafnodeRestartTimeoutCodeEnum, CloudConnectionErrorNatsFailed, CloudConnectionErrorNatsFailedCodeEnum, CloudConnectionErrorNatsFailedDetails, CloudConnectionErrorUnexpectedResponse, CloudConnectionErrorUnexpectedResponseCodeEnum, CloudConnectionErrorUnexpectedResponseDetails, CloudConnectionErrorUnexpectedResponseDetailsCloudResponse, CloudConnectionRequest, CloudDisconnectionError, CloudDisconnectionStatusDisconnected, CloudDisconnectionStatusDisconnectedStatusEnum, CloudDisconnectionStatusDisconnecting, CloudDisconnectionStatusDisconnectingStatusEnum, CloudRegistrationSuccessResponse, CloudStatus, CloudStatusChecks, CloudStatusErrors, Collider, ColliderShape, ColliderValue, ColliderValueOrKey, ColliderValueSourceEnum, Collision, CollisionContact, CollisionError, CollisionErrorKindEnum, CollisionFreeAlgorithm, CollisionMotionGroup, CollisionSetup, CollisionSetupValue, CollisionSetupValueOrKey, CollisionSetupValueSourceEnum, Comparator, Configuration, ConfigurationArchiveStatus, ConfigurationArchiveStatusCreating, ConfigurationArchiveStatusCreatingStatusEnum, ConfigurationArchiveStatusError, ConfigurationArchiveStatusErrorStatusEnum, ConfigurationArchiveStatusSuccess, ConfigurationArchiveStatusSuccessStatusEnum, ConfigurationParameters, ConfigurationResource, ConfiguredPose, ConfiguredPoseInverse422Response, ConfiguredPoseInverseFailedResponse, ConfiguredPoseInverseRequest, ConfiguredPoseInverseResponse, ConfiguredPoseInverseResponseResponse, ConstrainedPose, ContainerEnvironmentInner, ContainerImage, ContainerImageSecretsInner, ContainerResources, ContainerStorage, ControllerApi, ControllerApiAxiosParamCreator, ControllerApiFactory, ControllerApiFp, ControllerDescription, ControllerInputsOutputsApi, ControllerInputsOutputsApiAxiosParamCreator, ControllerInputsOutputsApiFactory, ControllerInputsOutputsApiFp, ControllerNetworkInterface, ConvertVendorConfiguredPose422Response, ConvertVendorConfiguredPoseRequest, ConvertVendorConfiguredPoseRequestVendorConfiguredPoses, ConvexHull, ConvexHullShapeTypeEnum, CoordinateSystem, CoordinateSystemData, CopyMotionGroupModelRequest, CubicSplineParameter, CycleTime, Cylinder, CylinderShapeTypeEnum, DHParameter, Direction, DirectionConstraint, DirectionConstraintConstraintNameEnum, DynamicModel, ErrorDirectionConstraintNotMet, ErrorDirectionConstraintNotMetErrorFeedbackNameEnum, ErrorDirectionConstraintNotNormalized, ErrorDirectionConstraintNotNormalizedErrorFeedbackNameEnum, ErrorInvalidJointCount, ErrorInvalidJointCountErrorFeedbackNameEnum, ErrorJointLimitExceeded, ErrorJointLimitExceededErrorFeedbackNameEnum, ErrorJointPositionCollision, ErrorJointPositionCollisionErrorFeedbackNameEnum, ErrorMaxIterationsExceeded, ErrorMaxIterationsExceededErrorFeedbackNameEnum, ErrorMotionGroupKeyMismatch, ErrorUnsupportedOperation, ErrorUnsupportedOperationErrorFeedbackNameEnum, Execute, ExecuteActionChunksRequest, ExecuteActionChunksResponse, ExecuteDetails, ExecuteJoggingRequest, ExecuteJoggingResponse, ExecuteTrajectoryRequest, ExecuteTrajectoryResponse, ExternalJointStreamDatapoint, ExternalJointStreamRequest, FanucController, FanucControllerKindEnum, FeedbackAxisRangeExceeded, FeedbackAxisRangeExceededErrorFeedbackNameEnum, FeedbackCollision, FeedbackCollisionErrorFeedbackNameEnum, FeedbackCommandsMissing, FeedbackCommandsMissingErrorFeedbackNameEnum, FeedbackCubicSplineIsNotIncreasing, FeedbackCubicSplineIsNotIncreasingErrorFeedbackNameEnum, FeedbackCubicSplineNotAtStartPose, FeedbackCubicSplineNotAtStartPoseErrorFeedbackNameEnum, FeedbackDirectionConstraintNoSolutionExists, FeedbackDirectionConstraintNoSolutionExistsErrorFeedbackNameEnum, FeedbackDirectionConstraintNotMet, FeedbackDirectionConstraintNotMetErrorFeedbackNameEnum, FeedbackDirectionConstraintNotNormalized, FeedbackDirectionConstraintNotNormalizedErrorFeedbackNameEnum, FeedbackInvalidDof, FeedbackInvalidDofErrorFeedbackNameEnum, FeedbackInvalidNanValue, FeedbackInvalidNanValueErrorFeedbackNameEnum, FeedbackInvalidSamplingTime, FeedbackInvalidSamplingTimeErrorFeedbackNameEnum, FeedbackJointLimitExceeded, FeedbackJointLimitExceededErrorFeedbackNameEnum, FeedbackNoSolutionInCurrentConfiguration, FeedbackNoSolutionInCurrentConfigurationErrorFeedbackNameEnum, FeedbackOutOfWorkspace, FeedbackOutOfWorkspaceErrorFeedbackNameEnum, FeedbackSingularity, FeedbackSingularityErrorFeedbackNameEnum, FeedbackStartJointsMissing, FeedbackStartJointsMissingErrorFeedbackNameEnum, FeedbackTorqueExceeded, FeedbackTorqueExceededErrorFeedbackNameEnum, Flag, FlangePayload, FloatValue, FloatValueValueTypeEnum, ForwardKinematics422Response, ForwardKinematicsRequest, ForwardKinematicsResponse, ForwardKinematicsValidationError, GetKinematicConfiguration422Response, GetKinematicConfigurationRequest, GetKinematicConfigurationResponse, GetKinematicConfigurationValidationError, GetKinematicConfigurationValidationErrorAllOfData, GetTrajectoryResponse, HTTPValidationError, IOBooleanValue, IOBooleanValueValueTypeEnum, IOBoundary, IODescription, IODirection, IOFloatValue, IOFloatValueValueTypeEnum, IOIntegerValue, IOIntegerValueValueTypeEnum, IOOrigin, IOValue, IOValueType, ImageCredentials, InconsistentTrajectorySizeError, InconsistentTrajectorySizeErrorInconsistentTrajectorySize, InconsistentTrajectorySizeErrorKindEnum, InertiaTensor, InitializeActionChunksRequest, InitializeActionChunksRequestMessageTypeEnum, InitializeActionChunksResponse, InitializeActionChunksResponseKindEnum, InitializeJoggingRequest, InitializeJoggingRequestMessageTypeEnum, InitializeJoggingResponse, InitializeJoggingResponseKindEnum, InitializeMovementRequest, InitializeMovementRequestMessageTypeEnum, InitializeMovementRequestTrajectory, InitializeMovementResponse, InitializeMovementResponseKindEnum, IntegerValue, IntegerValueValueTypeEnum, InvalidDofError, InvalidDofErrorInvalidDof, InvalidDofErrorKindEnum, InverseFeedbackAtIndex, InverseFeedbackAtIndexErrorFeedback, InverseKinematics422Response, InverseKinematicsRequest, InverseKinematicsResponse, InverseKinematicsValidationError, InverseKinematicsValidationErrorAllOfData, JoggingApi, JoggingApiAxiosParamCreator, JoggingApiFactory, JoggingApiFp, JoggingDetails, JoggingDetailsKindEnum, JoggingDetailsState, JoggingPausedByUser, JoggingPausedByUserKindEnum, JoggingPausedNearCollision, JoggingPausedNearCollisionKindEnum, JoggingPausedNearJointLimit, JoggingPausedNearJointLimitKindEnum, JoggingPausedNearSingularity, JoggingPausedNearSingularityKindEnum, JoggingPausedOnIO, JoggingPausedOnIOKindEnum, JoggingRunning, JoggingRunningKindEnum, JointLimitExceededError, JointLimitExceededErrorKindEnum, JointLimits, JointPTPMotion, JointTrajectory, JointTypeEnum, JointVelocityRequest, JointVelocityRequestMessageTypeEnum, JointVelocityResponse, JointVelocityResponseKindEnum, JointWaypoint, JointWaypointKindEnum, KinematicBranch, KinematicBranchElbow, KinematicBranchShoulder, KinematicBranchWrist, KinematicConfiguration, KinematicModel, KinematicsApi, KinematicsApiAxiosParamCreator, KinematicsApiFactory, KinematicsApiFp, KukaConfiguredPose, KukaController, KukaControllerKindEnum, KukaControllerRsiServer, KukaPose, KukaStatusAndTurnBits, License, LicenseApi, LicenseApiAxiosParamCreator, LicenseApiFactory, LicenseApiFp, LicenseStatus, LicenseStatusEnum, LimitRange, LimitSet, LimitsOverride, LinkChainValue, LinkChainValueOrKey, LinkChainValueSourceEnum, ListTrajectoriesResponse, Manufacturer, MergeTrajectories422Response, MergeTrajectoriesError, MergeTrajectoriesErrorErrorFeedback, MergeTrajectoriesRequest, MergeTrajectoriesResponse, MergeTrajectoriesResponseFeedbackInner, MergeTrajectoriesSegment, MergeTrajectoriesValidationError, MidpointInsertionAlgorithm, MidpointInsertionAlgorithmAlgorithmNameEnum, ModbusIO, ModbusIOArea, ModbusIOByteOrder, ModbusIOData, ModbusIOTypeEnum, ModelError, MotionCommand, MotionCommandBlending, MotionCommandPath, MotionGroupApi, MotionGroupApiAxiosParamCreator, MotionGroupApiFactory, MotionGroupApiFp, MotionGroupConfiguration, MotionGroupDescription, MotionGroupFromJson, MotionGroupFromType, MotionGroupInfo, MotionGroupJoints, MotionGroupModelCatalog, MotionGroupModelDescription, MotionGroupModelsApi, MotionGroupModelsApiAxiosParamCreator, MotionGroupModelsApiFactory, MotionGroupModelsApiFp, MotionGroupSetup, MotionGroupState, MotionGroupStateJointLimitReached, MovementErrorResponse, MovementErrorResponseKindEnum, MultiCollisionSetup, MultiErrorInvalidJointCount, MultiErrorJointLimitExceeded, MultiErrorJointPositionCollision, MultiJointTrajectory, MultiSearchCollisionFree422Response, MultiSearchCollisionFreeRequest, MultiSearchCollisionFreeResponse, MultiSearchCollisionFreeResponseResponse, MultiSearchCollisionFreeValidationError, MultiSearchCollisionFreeValidationErrorAllOfData, NOVACloudApi, NOVACloudApiAxiosParamCreator, NOVACloudApiFactory, NOVACloudApiFp, NanValueError, NanValueErrorKindEnum, NanValueErrorNanValue, NetworkBackend, NetworkDevice, NetworkInterface, NetworkLinkState, NetworkState, OpMode, OperatingState, OperationLimits, OperationMode, OrientationType, PathCartesianPTP, PathCartesianPTPPathDefinitionNameEnum, PathCircle, PathCirclePathDefinitionNameEnum, PathCubicSpline, PathCubicSplinePathDefinitionNameEnum, PathDirectionConstrainedCartesianPTP, PathDirectionConstrainedCartesianPTPPathDefinitionNameEnum, PathDirectionConstrainedJointPTP, PathDirectionConstrainedJointPTPPathDefinitionNameEnum, PathJointPTP, PathJointPTPPathDefinitionNameEnum, PathLine, PathLinePathDefinitionNameEnum, PauseActionChunksRequest, PauseActionChunksRequestMessageTypeEnum, PauseActionChunksResponse, PauseActionChunksResponseKindEnum, PauseJoggingRequest, PauseJoggingRequestMessageTypeEnum, PauseJoggingResponse, PauseJoggingResponseKindEnum, PauseMovementRequest, PauseMovementRequestMessageTypeEnum, PauseMovementResponse, PauseMovementResponseKindEnum, PauseOnIO, Payload, Plan422Response, PlanCollisionFreeFailedResponse, PlanCollisionFreeRequest, PlanCollisionFreeResponse, PlanCollisionFreeResponseResponse, PlanTrajectoryFailedResponse, PlanTrajectoryFailedResponseErrorFeedback, PlanTrajectoryRequest, PlanTrajectoryResponse, PlanTrajectoryResponseResponse, PlanValidationError, PlanValidationErrorAllOfData, Plane, PlaneShapeTypeEnum, PlaybackSpeedRequest, PlaybackSpeedRequestMessageTypeEnum, PlaybackSpeedResponse, PlaybackSpeedResponseKindEnum, Pose, PoseWaypoint, PoseWaypointKindEnum, ProfinetDescription, ProfinetIO, ProfinetIOData, ProfinetIODirection, ProfinetIOTypeEnum, ProfinetInputOutputConfig, ProfinetSlotDescription, ProfinetSlotOffset, ProfinetSubSlotDescription, Program, ProgramApi, ProgramApiAxiosParamCreator, ProgramApiFactory, ProgramApiFp, ProgramRun, ProgramRunState, ProgramStartRequest, ProjectJointPositionDirectionConstraint422Response, ProjectJointPositionDirectionConstraintRequest, ProjectJointPositionDirectionConstraintResponse, ProjectJointPositionDirectionConstraintValidationError, ProjectJointPositionDirectionConstraintValidationErrorAllOfData, RRTConnectAlgorithm, RRTConnectAlgorithmAlgorithmNameEnum, RRTConnectAlgorithmStepSize, Range, Rectangle, RectangleShapeTypeEnum, RectangularCapsule, RectangularCapsuleShapeTypeEnum, ReleaseChannel, RequestArgs, RequiredError, RobotConfigurationsApi, RobotConfigurationsApiAxiosParamCreator, RobotConfigurationsApiFactory, RobotConfigurationsApiFp, RobotController, RobotControllerConfiguration, RobotControllerConfigurationRequest, RobotControllerState, RobotSystemMode, RobotTcp, RobotTcpData, SafetyGeometry, SafetyGeometryBox, SafetyGeometryCapsule, SafetyGeometryLozenge, SafetyGeometryPlane, SafetyGeometryPrism, SafetyGeometrySphere, SafetyStateType, SafetyZone, SafetyZonePose, SafetyZones, ServiceGroup, ServiceStatus, ServiceStatusPhase, ServiceStatusResponse, ServiceStatusSeverity, ServiceStatusStatus, SessionApi, SessionApiAxiosParamCreator, SessionApiFactory, SessionApiFp, SessionResponse, SetIO, SettableRobotSystemMode, SingularityHandling, SingularityTypeEnum, Snap7IO, Snap7IOArea, Snap7IOData, Snap7IODirection, Snap7IOTypeEnum, Sphere, SphereShapeTypeEnum, StartMovementRequest, StartMovementRequestMessageTypeEnum, StartMovementResponse, StartMovementResponseKindEnum, StartOnIO, StaubliController, StaubliControllerKindEnum, StaubliControllerRtiServer, StopActionChunksRequest, StopActionChunksRequestMessageTypeEnum, StopActionChunksResponse, StopActionChunksResponseKindEnum, StorageKey, StorageKeySourceEnum, StoreCollisionComponentsApi, StoreCollisionComponentsApiAxiosParamCreator, StoreCollisionComponentsApiFactory, StoreCollisionComponentsApiFp, StoreCollisionSetupsApi, StoreCollisionSetupsApiAxiosParamCreator, StoreCollisionSetupsApiFactory, StoreCollisionSetupsApiFp, StoreObjectApi, StoreObjectApiAxiosParamCreator, StoreObjectApiFactory, StoreObjectApiFp, StreamIOValuesResponse, SystemApi, SystemApiAxiosParamCreator, SystemApiFactory, SystemApiFp, TcpOffset, TcpRequiredError, TcpRequiredErrorKindEnum, TcpVelocityRequest, TcpVelocityRequestMessageTypeEnum, TcpVelocityResponse, TcpVelocityResponseKindEnum, TechmanController, TechmanControllerKindEnum, TechmanControllerRtrs, ToolValue, ToolValueOrKey, ToolValueSourceEnum, TorqueExceededError, TorqueExceededErrorKindEnum, TorqueExceededErrorTorqueExceeded, TrajectoryCachingApi, TrajectoryCachingApiAxiosParamCreator, TrajectoryCachingApiFactory, TrajectoryCachingApiFp, TrajectoryData, TrajectoryDataMessageTypeEnum, TrajectoryDetails, TrajectoryDetailsKindEnum, TrajectoryDetailsState, TrajectoryEnded, TrajectoryEndedKindEnum, TrajectoryExecutionApi, TrajectoryExecutionApiAxiosParamCreator, TrajectoryExecutionApiFactory, TrajectoryExecutionApiFp, TrajectoryId, TrajectoryIdMessageTypeEnum, TrajectoryPausedByUser, TrajectoryPausedByUserKindEnum, TrajectoryPausedOnIO, TrajectoryPausedOnIOKindEnum, TrajectoryPlanningApi, TrajectoryPlanningApiAxiosParamCreator, TrajectoryPlanningApiFactory, TrajectoryPlanningApiFp, TrajectoryRunning, TrajectoryRunningKindEnum, TrajectorySection, TrajectoryWaitForIO, TrajectoryWaitForIOKindEnum, UnitType, UnitreeController, UnitreeControllerKindEnum, UnitreeControllerRobotTypeEnum, UniversalrobotsController, UniversalrobotsControllerKindEnum, UnpauseActionChunksRequest, UnpauseActionChunksRequestMessageTypeEnum, UnpauseActionChunksResponse, UnpauseActionChunksResponseKindEnum, UpdateCellVersionRequest, UpdateNovaVersionRequest, User, ValidationError, ValidationError2, ValidationErrorLocInner, VersionApi, VersionApiAxiosParamCreator, VersionApiFactory, VersionApiFp, VirtualController, VirtualControllerApi, VirtualControllerApiAxiosParamCreator, VirtualControllerApiFactory, VirtualControllerApiFp, VirtualControllerBehaviorApi, VirtualControllerBehaviorApiAxiosParamCreator, VirtualControllerBehaviorApiFactory, VirtualControllerBehaviorApiFp, VirtualControllerInputsOutputsApi, VirtualControllerInputsOutputsApiAxiosParamCreator, VirtualControllerInputsOutputsApiFactory, VirtualControllerInputsOutputsApiFp, VirtualControllerKindEnum, VirtualRobotConfiguration, WaitForIOEventRequest, Waypoint, WaypointCoordinates, YaskawaController, YaskawaControllerKindEnum, ZodValidationError, ZodValidationErrorError, ZodValidationErrorErrorCodeEnum, ZodValidationErrorErrorDetailsInner, ZodValidationErrorErrorDetailsInnerPathInner, operationServerMap };
13727
+ export { AbbConfdata, AbbConfiguredPose, AbbController, AbbControllerEgmServer, AbbControllerKindEnum, AbbPose, ActionChunkRequest, ActionChunkRequestMessageTypeEnum, ActionChunkResponse, ActionChunkResponseKindEnum, ActionChunkStreamingApi, ActionChunkStreamingApiAxiosParamCreator, ActionChunkStreamingApiFactory, ActionChunkStreamingApiFp, ActivateLicenseRequest, AddTrajectoryError, AddTrajectoryErrorData, AddTrajectoryRequest, AddTrajectoryResponse, AddVirtualControllerMotionGroupRequest, ApiVersion, App, ApplicationApi, ApplicationApiAxiosParamCreator, ApplicationApiFactory, ApplicationApiFp, AtReference, AtTrigger, AxisRange, BASE_PATH, BUSInputsOutputsApi, BUSInputsOutputsApiAxiosParamCreator, BUSInputsOutputsApiFactory, BUSInputsOutputsApiFp, BaseAPI, Behavior, Blending, BlendingAuto, BlendingAutoBlendingNameEnum, BlendingPosition, BlendingPositionBlendingNameEnum, BlendingSpace, BooleanValue, BooleanValueValueTypeEnum, BostondynamicsController, BostondynamicsControllerKindEnum, BostondynamicsControllerRobotTypeEnum, Box, BoxBoxTypeEnum, BoxShapeTypeEnum, BusIODescription, BusIOModbusClient, BusIOModbusClientBusTypeEnum, BusIOModbusServer, BusIOModbusServerBusTypeEnum, BusIOModbusTCPClient, BusIOModbusTCPClientNetworkTypeEnum, BusIOModbusTCPServer, BusIOModbusTCPServerNetworkTypeEnum, BusIOModbusVirtual, BusIOModbusVirtualBusTypeEnum, BusIOProfinet, BusIOProfinetBusTypeEnum, BusIOProfinetDefaultRoute, BusIOProfinetIpConfig, BusIOProfinetNetwork, BusIOProfinetSlot, BusIOProfinetVirtual, BusIOProfinetVirtualBusTypeEnum, BusIOSnap7, BusIOSnap7BusTypeEnum, BusIOType, BusIOsState, BusIOsStateEnum, COLLECTION_FORMATS, CapabilityEntry, Capsule, CapsuleShapeTypeEnum, CartesianLimits, CartesianVelocity, Cell, CellApi, CellApiAxiosParamCreator, CellApiFactory, CellApiFp, CloudConfigStatus, CloudConfigStatusConfigured, CloudConfigStatusConfiguredStatusEnum, CloudConfigStatusNotConfigured, CloudConfigStatusNotConfiguredStatusEnum, CloudConfiguration, CloudConnectionError, CloudConnectionErrorError, CloudConnectionErrorInvalidToken, CloudConnectionErrorInvalidTokenCodeEnum, CloudConnectionErrorInvalidTokenDetails, CloudConnectionErrorInvalidTokenDetailsCloudResponse, CloudConnectionErrorLeafnodeConnectionError, CloudConnectionErrorLeafnodeConnectionErrorCodeEnum, CloudConnectionErrorLeafnodeConnectionErrorDetails, CloudConnectionErrorLeafnodeConnectionTimeout, CloudConnectionErrorLeafnodeConnectionTimeoutCodeEnum, CloudConnectionErrorLeafnodeRestartTimeout, CloudConnectionErrorLeafnodeRestartTimeoutCodeEnum, CloudConnectionErrorNatsFailed, CloudConnectionErrorNatsFailedCodeEnum, CloudConnectionErrorNatsFailedDetails, CloudConnectionErrorUnexpectedResponse, CloudConnectionErrorUnexpectedResponseCodeEnum, CloudConnectionErrorUnexpectedResponseDetails, CloudConnectionErrorUnexpectedResponseDetailsCloudResponse, CloudConnectionRequest, CloudDisconnectionError, CloudDisconnectionStatusDisconnected, CloudDisconnectionStatusDisconnectedStatusEnum, CloudDisconnectionStatusDisconnecting, CloudDisconnectionStatusDisconnectingStatusEnum, CloudRegistrationSuccessResponse, CloudStatus, CloudStatusChecks, CloudStatusErrors, Collider, ColliderShape, ColliderValue, ColliderValueOrKey, ColliderValueSourceEnum, Collision, CollisionContact, CollisionError, CollisionErrorKindEnum, CollisionFreeAlgorithm, CollisionMotionGroup, CollisionSetup, CollisionSetupValue, CollisionSetupValueOrKey, CollisionSetupValueSourceEnum, Command, CommandRoutine, Comparator, Configuration, ConfigurationArchiveStatus, ConfigurationArchiveStatusCreating, ConfigurationArchiveStatusCreatingStatusEnum, ConfigurationArchiveStatusError, ConfigurationArchiveStatusErrorStatusEnum, ConfigurationArchiveStatusSuccess, ConfigurationArchiveStatusSuccessStatusEnum, ConfigurationParameters, ConfigurationResource, ConfiguredPose, ConfiguredPoseInverse422Response, ConfiguredPoseInverseFailedResponse, ConfiguredPoseInverseRequest, ConfiguredPoseInverseResponse, ConfiguredPoseInverseResponseResponse, ConstrainedPose, ContainerEnvironmentInner, ContainerImage, ContainerImageSecretsInner, ContainerResources, ContainerStorage, ControllerApi, ControllerApiAxiosParamCreator, ControllerApiFactory, ControllerApiFp, ControllerDescription, ControllerInputsOutputsApi, ControllerInputsOutputsApiAxiosParamCreator, ControllerInputsOutputsApiFactory, ControllerInputsOutputsApiFp, ControllerNetworkInterface, ConvertVendorConfiguredPose422Response, ConvertVendorConfiguredPoseRequest, ConvertVendorConfiguredPoseRequestVendorConfiguredPoses, ConvexHull, ConvexHullShapeTypeEnum, CoordinateSystem, CoordinateSystem2, CoordinateSystemData, CopyMotionGroupModelRequest, CreateDatasetRequest, CubicSplineParameter, CubicSplineViaPoint, CycleTime, Cylinder, CylinderShapeTypeEnum, DHParameter, Dataset, DatasetCoordinateSystem, DatasetPose, DatasetPoseReference, DatasetPoseReferenceTypeEnum, DatasetsApi, DatasetsApiAxiosParamCreator, DatasetsApiFactory, DatasetsApiFp, Direction, DirectionConstraint, DirectionConstraintConstraintNameEnum, DistanceTrigger, DistanceTriggerTypeEnum, DynamicModel, ErrorDirectionConstraintNotMet, ErrorDirectionConstraintNotMetErrorFeedbackNameEnum, ErrorDirectionConstraintNotNormalized, ErrorDirectionConstraintNotNormalizedErrorFeedbackNameEnum, ErrorInvalidJointCount, ErrorInvalidJointCountErrorFeedbackNameEnum, ErrorJointLimitExceeded, ErrorJointLimitExceededErrorFeedbackNameEnum, ErrorJointPositionCollision, ErrorJointPositionCollisionErrorFeedbackNameEnum, ErrorMaxIterationsExceeded, ErrorMaxIterationsExceededErrorFeedbackNameEnum, ErrorMotionGroupKeyMismatch, ErrorUnsupportedOperation, ErrorUnsupportedOperationErrorFeedbackNameEnum, Execute, ExecuteActionChunksRequest, ExecuteActionChunksResponse, ExecuteDetails, ExecuteJoggingRequest, ExecuteJoggingResponse, ExecuteTrajectoryRequest, ExecuteTrajectoryResponse, ExplicitPathMotionCommand, ExplicitPathMotionCommandTypeEnum, ExternalJointStreamDatapoint, ExternalJointStreamRequest, FanucController, FanucControllerKindEnum, FeedbackAxisRangeExceeded, FeedbackAxisRangeExceededErrorFeedbackNameEnum, FeedbackCollision, FeedbackCollisionErrorFeedbackNameEnum, FeedbackCommandsMissing, FeedbackCommandsMissingErrorFeedbackNameEnum, FeedbackCubicSplineIsNotIncreasing, FeedbackCubicSplineIsNotIncreasingErrorFeedbackNameEnum, FeedbackCubicSplineNotAtStartPose, FeedbackCubicSplineNotAtStartPoseErrorFeedbackNameEnum, FeedbackDirectionConstraintNoSolutionExists, FeedbackDirectionConstraintNoSolutionExistsErrorFeedbackNameEnum, FeedbackDirectionConstraintNotMet, FeedbackDirectionConstraintNotMetErrorFeedbackNameEnum, FeedbackDirectionConstraintNotNormalized, FeedbackDirectionConstraintNotNormalizedErrorFeedbackNameEnum, FeedbackInvalidDof, FeedbackInvalidDofErrorFeedbackNameEnum, FeedbackInvalidNanValue, FeedbackInvalidNanValueErrorFeedbackNameEnum, FeedbackInvalidSamplingTime, FeedbackInvalidSamplingTimeErrorFeedbackNameEnum, FeedbackJointLimitExceeded, FeedbackJointLimitExceededErrorFeedbackNameEnum, FeedbackNoSolutionInCurrentConfiguration, FeedbackNoSolutionInCurrentConfigurationErrorFeedbackNameEnum, FeedbackOutOfWorkspace, FeedbackOutOfWorkspaceErrorFeedbackNameEnum, FeedbackSingularity, FeedbackSingularityErrorFeedbackNameEnum, FeedbackStartJointsMissing, FeedbackStartJointsMissingErrorFeedbackNameEnum, FeedbackTorqueExceeded, FeedbackTorqueExceededErrorFeedbackNameEnum, Flag, FlangePayload, FloatValue, FloatValueValueTypeEnum, ForwardKinematics422Response, ForwardKinematicsRequest, ForwardKinematicsResponse, ForwardKinematicsValidationError, GeneratedPathMotionCommand, GeneratedPathMotionCommandTypeEnum, GetDatasetResponse, GetKinematicConfiguration422Response, GetKinematicConfigurationRequest, GetKinematicConfigurationResponse, GetKinematicConfigurationValidationError, GetKinematicConfigurationValidationErrorAllOfData, GetTrajectoryResponse, HTTPValidationError, IOAllOfExpression, IOAllOfExpressionTypeEnum, IOAnyOfExpression, IOAnyOfExpressionTypeEnum, IOBooleanValue, IOBooleanValueValueTypeEnum, IOBoundary, IOConditionExpression, IOConditionExpressionTypeEnum, IODescription, IODirection, IOExpression, IOFloatValue, IOFloatValueValueTypeEnum, IOIntegerValue, IOIntegerValueValueTypeEnum, IONotExpression, IONotExpressionTypeEnum, IOOrigin, IOValue, IOValueType, ImageCredentials, InconsistentTrajectorySizeError, InconsistentTrajectorySizeErrorInconsistentTrajectorySize, InconsistentTrajectorySizeErrorKindEnum, InertiaTensor, InitializeActionChunksRequest, InitializeActionChunksRequestMessageTypeEnum, InitializeActionChunksResponse, InitializeActionChunksResponseKindEnum, InitializeJoggingRequest, InitializeJoggingRequestMessageTypeEnum, InitializeJoggingResponse, InitializeJoggingResponseKindEnum, InitializeMovementRequest, InitializeMovementRequestMessageTypeEnum, InitializeMovementRequestTrajectory, InitializeMovementResponse, InitializeMovementResponseKindEnum, InlinePoseReference, InlinePoseReferenceTypeEnum, IntegerValue, IntegerValueValueTypeEnum, InvalidDofError, InvalidDofErrorInvalidDof, InvalidDofErrorKindEnum, InverseFeedbackAtIndex, InverseFeedbackAtIndexErrorFeedback, InverseKinematics422Response, InverseKinematicsRequest, InverseKinematicsResponse, InverseKinematicsValidationError, InverseKinematicsValidationErrorAllOfData, JoggingApi, JoggingApiAxiosParamCreator, JoggingApiFactory, JoggingApiFp, JoggingDetails, JoggingDetailsKindEnum, JoggingDetailsState, JoggingPausedByUser, JoggingPausedByUserKindEnum, JoggingPausedNearCollision, JoggingPausedNearCollisionKindEnum, JoggingPausedNearJointLimit, JoggingPausedNearJointLimitKindEnum, JoggingPausedNearSingularity, JoggingPausedNearSingularityKindEnum, JoggingPausedOnIO, JoggingPausedOnIOKindEnum, JoggingRunning, JoggingRunningKindEnum, JointLimitExceededError, JointLimitExceededErrorKindEnum, JointLimits, JointPTPMotion, JointPositionReference, JointPositionReferenceTypeEnum, JointTrajectory, JointTypeEnum, JointVelocityRequest, JointVelocityRequestMessageTypeEnum, JointVelocityResponse, JointVelocityResponseKindEnum, JointWaypoint, JointWaypointKindEnum, KinematicBranch, KinematicBranchElbow, KinematicBranchShoulder, KinematicBranchWrist, KinematicConfiguration, KinematicModel, KinematicsApi, KinematicsApiAxiosParamCreator, KinematicsApiFactory, KinematicsApiFp, KukaConfiguredPose, KukaController, KukaControllerKindEnum, KukaControllerRsiServer, KukaPose, KukaStatusAndTurnBits, License, LicenseApi, LicenseApiAxiosParamCreator, LicenseApiFactory, LicenseApiFp, LicenseStatus, LicenseStatusEnum, LimitRange, LimitSet, LimitsOverride, LinkChainValue, LinkChainValueOrKey, LinkChainValueSourceEnum, ListTrajectoriesResponse, LocalPoseReference, LocalPoseReferenceTypeEnum, Location1Inner, Manufacturer, MarkerCommand, MarkerCommandTypeEnum, MergeTrajectories422Response, MergeTrajectoriesError, MergeTrajectoriesErrorErrorFeedback, MergeTrajectoriesRequest, MergeTrajectoriesResponse, MergeTrajectoriesResponseFeedbackInner, MergeTrajectoriesSegment, MergeTrajectoriesValidationError, MidpointInsertionAlgorithm, MidpointInsertionAlgorithmAlgorithmNameEnum, ModbusIO, ModbusIOArea, ModbusIOByteOrder, ModbusIOData, ModbusIOTypeEnum, ModelError, MotionCommand, MotionCommandBlending, MotionCommandPath, MotionGenerator, MotionGroupApi, MotionGroupApiAxiosParamCreator, MotionGroupApiFactory, MotionGroupApiFp, MotionGroupConfiguration, MotionGroupDescription, MotionGroupFromJson, MotionGroupFromType, MotionGroupInfo, MotionGroupJoints, MotionGroupModelCatalog, MotionGroupModelDescription, MotionGroupModelsApi, MotionGroupModelsApiAxiosParamCreator, MotionGroupModelsApiFactory, MotionGroupModelsApiFp, MotionGroupReference, MotionGroupReferenceTypeEnum, MotionGroupSetup, MotionGroupState, MotionGroupStateJointLimitReached, MotionSettings, MovementErrorResponse, MovementErrorResponseKindEnum, MultiCollisionSetup, MultiErrorInvalidJointCount, MultiErrorJointLimitExceeded, MultiErrorJointPositionCollision, MultiJointTrajectory, MultiSearchCollisionFree422Response, MultiSearchCollisionFreeRequest, MultiSearchCollisionFreeResponse, MultiSearchCollisionFreeResponseResponse, MultiSearchCollisionFreeValidationError, MultiSearchCollisionFreeValidationErrorAllOfData, NOVACloudApi, NOVACloudApiAxiosParamCreator, NOVACloudApiFactory, NOVACloudApiFp, NanValueError, NanValueErrorKindEnum, NanValueErrorNanValue, NetworkBackend, NetworkDevice, NetworkInterface, NetworkLinkState, NetworkState, OpMode, OperatingState, OperationLimits, OperationMode, OrientationType, PathCartesianPTP, PathCartesianPTPPathDefinitionNameEnum, PathCircle, PathCirclePathDefinitionNameEnum, PathCubicSpline, PathCubicSplinePathDefinitionNameEnum, PathDirectionConstrainedCartesianPTP, PathDirectionConstrainedCartesianPTPPathDefinitionNameEnum, PathDirectionConstrainedJointPTP, PathDirectionConstrainedJointPTPPathDefinitionNameEnum, PathFractionTrigger, PathFractionTriggerTypeEnum, PathJointPTP, PathJointPTPPathDefinitionNameEnum, PathLine, PathLinePathDefinitionNameEnum, PathType, PathTypeCartesianPTP, PathTypeCartesianPTPPathDefinitionNameEnum, PathTypeCircle, PathTypeCirclePathDefinitionNameEnum, PathTypeCubicSpline, PathTypeCubicSplinePathDefinitionNameEnum, PathTypeDirectionConstrainedCartesianPTP, PathTypeDirectionConstrainedCartesianPTPPathDefinitionNameEnum, PathTypeDirectionConstrainedJointPTP, PathTypeDirectionConstrainedJointPTPPathDefinitionNameEnum, PathTypeJointPTP, PathTypeJointPTPPathDefinitionNameEnum, PathTypeLine, PathTypeLinePathDefinitionNameEnum, PauseActionChunksRequest, PauseActionChunksRequestMessageTypeEnum, PauseActionChunksResponse, PauseActionChunksResponseKindEnum, PauseJoggingRequest, PauseJoggingRequestMessageTypeEnum, PauseJoggingResponse, PauseJoggingResponseKindEnum, PauseMovementRequest, PauseMovementRequestMessageTypeEnum, PauseMovementResponse, PauseMovementResponseKindEnum, PauseOnIO, PauseOnIOCommand, PauseOnIOCommandTypeEnum, Payload, Plan422Response, PlanCollisionFreeFailedResponse, PlanCollisionFreeRequest, PlanCollisionFreeResponse, PlanCollisionFreeResponseResponse, PlanTrajectoryFailedResponse, PlanTrajectoryFailedResponseErrorFeedback, PlanTrajectoryRequest, PlanTrajectoryResponse, PlanTrajectoryResponseResponse, PlanValidationError, PlanValidationErrorAllOfData, Plane, PlaneShapeTypeEnum, PlaybackSpeedRequest, PlaybackSpeedRequestMessageTypeEnum, PlaybackSpeedResponse, PlaybackSpeedResponseKindEnum, Pose, PoseRef, PoseWaypoint, PoseWaypointKindEnum, ProfinetDescription, ProfinetIO, ProfinetIOData, ProfinetIODirection, ProfinetIOTypeEnum, ProfinetInputOutputConfig, ProfinetSlotDescription, ProfinetSlotOffset, ProfinetSubSlotDescription, Program, ProgramApi, ProgramApiAxiosParamCreator, ProgramApiFactory, ProgramApiFp, ProgramRun, ProgramRunState, ProgramStartRequest, ProjectJointPositionDirectionConstraint422Response, ProjectJointPositionDirectionConstraintRequest, ProjectJointPositionDirectionConstraintResponse, ProjectJointPositionDirectionConstraintValidationError, ProjectJointPositionDirectionConstraintValidationErrorAllOfData, RRTConnectAlgorithm, RRTConnectAlgorithmAlgorithmNameEnum, RRTConnectAlgorithmStepSize, Range, Rectangle, RectangleShapeTypeEnum, RectangularCapsule, RectangularCapsuleShapeTypeEnum, ReleaseChannel, RequestArgs, RequiredError, RerunLoggingConfigurationRequest, RerunLoggingConfigurationResponse, RobotConfigurationsApi, RobotConfigurationsApiAxiosParamCreator, RobotConfigurationsApiFactory, RobotConfigurationsApiFp, RobotController, RobotControllerConfiguration, RobotControllerConfigurationRequest, RobotControllerState, RobotSystemMode, RobotTcp, RobotTcpData, SafetyGeometry, SafetyGeometryBox, SafetyGeometryCapsule, SafetyGeometryLozenge, SafetyGeometryPlane, SafetyGeometryPrism, SafetyGeometrySphere, SafetyStateType, SafetyZone, SafetyZonePose, SafetyZones, ServiceGroup, ServiceStatus, ServiceStatusPhase, ServiceStatusResponse, ServiceStatusSeverity, ServiceStatusStatus, SessionApi, SessionApiAxiosParamCreator, SessionApiFactory, SessionApiFp, SessionResponse, SetIO, SetIOCommand, SetIOCommandTypeEnum, SettableRobotSystemMode, SingularityHandling, SingularityTypeEnum, Snap7IO, Snap7IOArea, Snap7IOData, Snap7IODirection, Snap7IOTypeEnum, Sphere, SphereShapeTypeEnum, StartMovementRequest, StartMovementRequestMessageTypeEnum, StartMovementResponse, StartMovementResponseKindEnum, StartOnIO, StaubliController, StaubliControllerKindEnum, StaubliControllerRtiServer, StopActionChunksRequest, StopActionChunksRequestMessageTypeEnum, StopActionChunksResponse, StopActionChunksResponseKindEnum, StorageKey, StorageKeySourceEnum, StoreCollisionComponentsApi, StoreCollisionComponentsApiAxiosParamCreator, StoreCollisionComponentsApiFactory, StoreCollisionComponentsApiFp, StoreCollisionSetupsApi, StoreCollisionSetupsApiAxiosParamCreator, StoreCollisionSetupsApiFactory, StoreCollisionSetupsApiFp, StoreObjectApi, StoreObjectApiAxiosParamCreator, StoreObjectApiFactory, StoreObjectApiFp, StreamIOValuesResponse, SystemApi, SystemApiAxiosParamCreator, SystemApiFactory, SystemApiFp, TcpOffset, TcpRequiredError, TcpRequiredErrorKindEnum, TcpVelocityRequest, TcpVelocityRequestMessageTypeEnum, TcpVelocityResponse, TcpVelocityResponseKindEnum, TeachingApi, TeachingApiAxiosParamCreator, TeachingApiFactory, TeachingApiFp, TechmanController, TechmanControllerKindEnum, TechmanControllerRtrs, TimeTrigger, TimeTriggerTypeEnum, ToolValue, ToolValueOrKey, ToolValueSourceEnum, TorqueExceededError, TorqueExceededErrorKindEnum, TorqueExceededErrorTorqueExceeded, TrajectoryCachingApi, TrajectoryCachingApiAxiosParamCreator, TrajectoryCachingApiFactory, TrajectoryCachingApiFp, TrajectoryData, TrajectoryDataMessageTypeEnum, TrajectoryDetails, TrajectoryDetailsKindEnum, TrajectoryDetailsState, TrajectoryEnded, TrajectoryEndedKindEnum, TrajectoryExecutionApi, TrajectoryExecutionApiAxiosParamCreator, TrajectoryExecutionApiFactory, TrajectoryExecutionApiFp, TrajectoryId, TrajectoryIdMessageTypeEnum, TrajectoryPausedByUser, TrajectoryPausedByUserKindEnum, TrajectoryPausedOnIO, TrajectoryPausedOnIOKindEnum, TrajectoryPlanningApi, TrajectoryPlanningApiAxiosParamCreator, TrajectoryPlanningApiFactory, TrajectoryPlanningApiFp, TrajectoryRunning, TrajectoryRunningKindEnum, TrajectorySection, TrajectoryWaitForIO, TrajectoryWaitForIOKindEnum, UnitType, UnitreeController, UnitreeControllerKindEnum, UnitreeControllerRobotTypeEnum, UniversalrobotsController, UniversalrobotsControllerKindEnum, UnpauseActionChunksRequest, UnpauseActionChunksRequestMessageTypeEnum, UnpauseActionChunksResponse, UnpauseActionChunksResponseKindEnum, UpdateCellVersionRequest, UpdateNovaVersionRequest, User, ValidationError, ValidationError2, VersionApi, VersionApiAxiosParamCreator, VersionApiFactory, VersionApiFp, VirtualController, VirtualControllerApi, VirtualControllerApiAxiosParamCreator, VirtualControllerApiFactory, VirtualControllerApiFp, VirtualControllerBehaviorApi, VirtualControllerBehaviorApiAxiosParamCreator, VirtualControllerBehaviorApiFactory, VirtualControllerBehaviorApiFp, VirtualControllerInputsOutputsApi, VirtualControllerInputsOutputsApiAxiosParamCreator, VirtualControllerInputsOutputsApiFactory, VirtualControllerInputsOutputsApiFp, VirtualControllerKindEnum, VirtualRobotConfiguration, WaitForIOCommand, WaitForIOCommandTypeEnum, WaitForIOEventRequest, WaitForTimeCommand, WaitForTimeCommandTypeEnum, Waypoint, WaypointCoordinates, YaskawaController, YaskawaControllerKindEnum, ZodValidationError, ZodValidationErrorError, ZodValidationErrorErrorCodeEnum, ZodValidationErrorErrorDetailsInner, ZodValidationErrorErrorDetailsInnerPathInner, operationServerMap };