@wandelbots/nova-api 26.7.0-dev.5 → 26.7.0-dev.51
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/v2/index.cjs +918 -666
- package/dist/v2/index.d.cts +530 -312
- package/dist/v2/index.d.ts +530 -312
- package/dist/v2/index.js +666 -411
- package/package.json +1 -1
package/dist/v2/index.d.ts
CHANGED
|
@@ -232,7 +232,7 @@ interface ActivateLicenseRequest {
|
|
|
232
232
|
interface AddTrajectoryError {
|
|
233
233
|
'message'?: string;
|
|
234
234
|
/**
|
|
235
|
-
*
|
|
235
|
+
* Location on trajectory where the error occurred.
|
|
236
236
|
*/
|
|
237
237
|
'location'?: number;
|
|
238
238
|
'data'?: AddTrajectoryErrorData;
|
|
@@ -965,7 +965,7 @@ interface CloudConnectionErrorUnexpectedResponseDetails {
|
|
|
965
965
|
interface CloudConnectionErrorUnexpectedResponseDetailsCloudResponse {
|
|
966
966
|
'status': number;
|
|
967
967
|
'headers': {
|
|
968
|
-
[key: string]: any;
|
|
968
|
+
[key: string]: any | null;
|
|
969
969
|
};
|
|
970
970
|
'body': string;
|
|
971
971
|
}
|
|
@@ -1130,13 +1130,13 @@ type CollisionErrorKindEnum = typeof CollisionErrorKindEnum[keyof typeof Collisi
|
|
|
1130
1130
|
type CollisionFreeAlgorithm = MidpointInsertionAlgorithm | RRTConnectAlgorithm;
|
|
1131
1131
|
interface CollisionMotionGroup {
|
|
1132
1132
|
/**
|
|
1133
|
-
*
|
|
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.
|
|
1134
1134
|
*/
|
|
1135
1135
|
'link_chain'?: Array<{
|
|
1136
1136
|
[key: string]: Collider;
|
|
1137
1137
|
}>;
|
|
1138
1138
|
/**
|
|
1139
|
-
*
|
|
1139
|
+
* Shape of the tool to validate against colliders.
|
|
1140
1140
|
*/
|
|
1141
1141
|
'tool'?: {
|
|
1142
1142
|
[key: string]: Collider;
|
|
@@ -1148,19 +1148,19 @@ interface CollisionMotionGroup {
|
|
|
1148
1148
|
}
|
|
1149
1149
|
interface CollisionSetup {
|
|
1150
1150
|
/**
|
|
1151
|
-
*
|
|
1151
|
+
* Colliders are checked against links and tool.
|
|
1152
1152
|
*/
|
|
1153
1153
|
'colliders'?: {
|
|
1154
1154
|
[key: string]: Collider;
|
|
1155
1155
|
};
|
|
1156
1156
|
/**
|
|
1157
|
-
*
|
|
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.
|
|
1158
1158
|
*/
|
|
1159
1159
|
'link_chain'?: Array<{
|
|
1160
1160
|
[key: string]: Collider;
|
|
1161
1161
|
}>;
|
|
1162
1162
|
/**
|
|
1163
|
-
*
|
|
1163
|
+
* Shape of the tool to validate against colliders.
|
|
1164
1164
|
*/
|
|
1165
1165
|
'tool'?: {
|
|
1166
1166
|
[key: string]: Collider;
|
|
@@ -1179,7 +1179,7 @@ interface CollisionSetupValue {
|
|
|
1179
1179
|
*/
|
|
1180
1180
|
'source': CollisionSetupValueSourceEnum;
|
|
1181
1181
|
/**
|
|
1182
|
-
*
|
|
1182
|
+
* Colliders checked against links and tool. Each value is either an inline Collider or a store key.
|
|
1183
1183
|
*/
|
|
1184
1184
|
'colliders'?: {
|
|
1185
1185
|
[key: string]: ColliderValueOrKey;
|
|
@@ -1216,7 +1216,7 @@ type CollisionSetupValueOrKey = {
|
|
|
1216
1216
|
*/
|
|
1217
1217
|
type Command = ExplicitPathMotionCommand | GeneratedPathMotionCommand | MarkerCommand | PauseOnIOCommand | SetIOCommand | WaitForIOCommand | WaitForTimeCommand;
|
|
1218
1218
|
/**
|
|
1219
|
-
* Defines an ordered, persistable command routine that belongs to a
|
|
1219
|
+
* Defines an ordered, persistable command routine that belongs to a dataset.
|
|
1220
1220
|
*/
|
|
1221
1221
|
interface CommandRoutine {
|
|
1222
1222
|
/**
|
|
@@ -1224,7 +1224,7 @@ interface CommandRoutine {
|
|
|
1224
1224
|
*/
|
|
1225
1225
|
'command_routine': string;
|
|
1226
1226
|
/**
|
|
1227
|
-
*
|
|
1227
|
+
* Specifies the owning dataset identifier. It is absent while the routine is not persisted in a dataset.
|
|
1228
1228
|
*/
|
|
1229
1229
|
'dataset'?: string;
|
|
1230
1230
|
/**
|
|
@@ -1239,11 +1239,17 @@ interface CommandRoutine {
|
|
|
1239
1239
|
* References the motion group that executes this routine. It is absent when no motion group context exists.
|
|
1240
1240
|
*/
|
|
1241
1241
|
'motion_group'?: MotionGroupReference;
|
|
1242
|
+
/**
|
|
1243
|
+
* Specifies the baseline motion group setup or declares an I/O-only routine when set to `null`.
|
|
1244
|
+
*/
|
|
1242
1245
|
'motion_group_setup': MotionGroupSetup | null;
|
|
1243
1246
|
/**
|
|
1244
1247
|
* Specifies the routine-level tool-center-point identifier. It is absent when no motion group context exists.
|
|
1245
1248
|
*/
|
|
1246
1249
|
'tcp'?: string;
|
|
1250
|
+
/**
|
|
1251
|
+
* Specifies the starting joints that a motion routine requires. It is absent when no motion group context exists.
|
|
1252
|
+
*/
|
|
1247
1253
|
'start_joint_position'?: Array<number>;
|
|
1248
1254
|
'default_motion_settings'?: MotionSettings;
|
|
1249
1255
|
/**
|
|
@@ -1341,15 +1347,15 @@ interface ConfigurationResource {
|
|
|
1341
1347
|
'children'?: Array<ConfigurationResource>;
|
|
1342
1348
|
}
|
|
1343
1349
|
/**
|
|
1344
|
-
* A pose together with an optional kinematic configuration that resolves it to a unique robot posture. Optionally, the pose can be expressed relative to a
|
|
1350
|
+
* A pose together with an optional kinematic configuration that resolves it to a unique robot posture. Optionally, the pose can be expressed relative to a frame. The kinematic configuration is optional because it is currently not supported for all robot types, e.g., cuspidal robots.
|
|
1345
1351
|
*/
|
|
1346
1352
|
interface ConfiguredPose {
|
|
1347
1353
|
'pose': Pose;
|
|
1348
1354
|
'kinematic_configuration'?: KinematicConfiguration;
|
|
1349
1355
|
/**
|
|
1350
|
-
*
|
|
1356
|
+
* Optional identifier of the frame the pose is expressed in. If this is null or omitted, the pose is referenced in `world`.
|
|
1351
1357
|
*/
|
|
1352
|
-
'
|
|
1358
|
+
'frame'?: string;
|
|
1353
1359
|
}
|
|
1354
1360
|
interface ConfiguredPoseInverse422Response {
|
|
1355
1361
|
'detail'?: Array<ValidationError>;
|
|
@@ -1363,6 +1369,9 @@ interface ConfiguredPoseInverseRequest {
|
|
|
1363
1369
|
* Identifies a single motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported types.
|
|
1364
1370
|
*/
|
|
1365
1371
|
'motion_group_model': string;
|
|
1372
|
+
/**
|
|
1373
|
+
* List of TCP poses for which the inverse solutions are computed.
|
|
1374
|
+
*/
|
|
1366
1375
|
'tcp_poses': Array<ConfiguredPose>;
|
|
1367
1376
|
'tcp_offset'?: Pose;
|
|
1368
1377
|
/**
|
|
@@ -1437,7 +1446,7 @@ interface ContainerResources {
|
|
|
1437
1446
|
interface ContainerStorage {
|
|
1438
1447
|
'mount_path': string;
|
|
1439
1448
|
/**
|
|
1440
|
-
* The amount of
|
|
1449
|
+
* The amount of local storage available for the application. **NOTE:** The capacity can NEVER be reduced!
|
|
1441
1450
|
*/
|
|
1442
1451
|
'capacity': string;
|
|
1443
1452
|
}
|
|
@@ -1519,24 +1528,6 @@ interface CoordinateSystem {
|
|
|
1519
1528
|
*/
|
|
1520
1529
|
'coordinate_system': string;
|
|
1521
1530
|
}
|
|
1522
|
-
/**
|
|
1523
|
-
* 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.
|
|
1524
|
-
*/
|
|
1525
|
-
interface CoordinateSystem2 {
|
|
1526
|
-
/**
|
|
1527
|
-
* Unique identifier of a coordinate system.
|
|
1528
|
-
*/
|
|
1529
|
-
'coordinate_system': string;
|
|
1530
|
-
/**
|
|
1531
|
-
* Human-readable name for the coordinate system that is shown in the user interface.
|
|
1532
|
-
*/
|
|
1533
|
-
'name'?: string;
|
|
1534
|
-
/**
|
|
1535
|
-
* Unique identifier of a coordinate system.
|
|
1536
|
-
*/
|
|
1537
|
-
'parent'?: string;
|
|
1538
|
-
'pose': Pose;
|
|
1539
|
-
}
|
|
1540
1531
|
interface CoordinateSystemData {
|
|
1541
1532
|
/**
|
|
1542
1533
|
* Human readable name of this coordinate system.
|
|
@@ -1566,7 +1557,7 @@ interface CopyMotionGroupModelRequest {
|
|
|
1566
1557
|
'name': string;
|
|
1567
1558
|
}
|
|
1568
1559
|
/**
|
|
1569
|
-
* Creates a new
|
|
1560
|
+
* Creates a new dataset together with its poses and command routines in a single request.
|
|
1570
1561
|
*/
|
|
1571
1562
|
interface CreateDatasetRequest {
|
|
1572
1563
|
/**
|
|
@@ -1586,9 +1577,9 @@ interface CreateDatasetRequest {
|
|
|
1586
1577
|
*/
|
|
1587
1578
|
'poses'?: Array<DatasetPose>;
|
|
1588
1579
|
/**
|
|
1589
|
-
* Contains the
|
|
1580
|
+
* Contains the frames that are created together with the dataset. Server-managed identifiers are assigned on creation.
|
|
1590
1581
|
*/
|
|
1591
|
-
'
|
|
1582
|
+
'frames'?: Array<DatasetFrame>;
|
|
1592
1583
|
/**
|
|
1593
1584
|
* Contains the command routines that are created together with the dataset. Server-managed identifiers are assigned on creation.
|
|
1594
1585
|
*/
|
|
@@ -1691,21 +1682,21 @@ interface Dataset {
|
|
|
1691
1682
|
'updated_at': string;
|
|
1692
1683
|
}
|
|
1693
1684
|
/**
|
|
1694
|
-
* A dataset
|
|
1685
|
+
* A dataset frame is a frame that belongs to a dataset. It extends the shared `Frame` with a reference to the dataset it belongs to.
|
|
1695
1686
|
*/
|
|
1696
|
-
interface
|
|
1687
|
+
interface DatasetFrame {
|
|
1697
1688
|
/**
|
|
1698
|
-
* Unique identifier of a
|
|
1689
|
+
* Unique identifier of a frame.
|
|
1699
1690
|
*/
|
|
1700
|
-
'
|
|
1691
|
+
'frame': string;
|
|
1701
1692
|
/**
|
|
1702
|
-
* Human-readable name for the
|
|
1693
|
+
* Human-readable name for the frame that is shown in the user interface.
|
|
1703
1694
|
*/
|
|
1704
1695
|
'name'?: string;
|
|
1705
1696
|
/**
|
|
1706
|
-
*
|
|
1697
|
+
* Optional identifier of the reference frame. The pose of this frame is expressed relative to its reference. If this is null or omitted, the frame is referenced in `world`.
|
|
1707
1698
|
*/
|
|
1708
|
-
'
|
|
1699
|
+
'reference_frame'?: string;
|
|
1709
1700
|
'pose': Pose;
|
|
1710
1701
|
/**
|
|
1711
1702
|
* Unique identifier of the dataset. Must start with a letter and may only contain letters, digits, and hyphens.
|
|
@@ -1719,9 +1710,9 @@ interface DatasetPose {
|
|
|
1719
1710
|
'pose': Pose;
|
|
1720
1711
|
'kinematic_configuration'?: KinematicConfiguration;
|
|
1721
1712
|
/**
|
|
1722
|
-
*
|
|
1713
|
+
* Optional identifier of the frame the pose is expressed in. If this is null or omitted, the pose is referenced in `world`.
|
|
1723
1714
|
*/
|
|
1724
|
-
'
|
|
1715
|
+
'frame'?: string;
|
|
1725
1716
|
/**
|
|
1726
1717
|
* Unique identifier of the pose within the dataset. Must start with a letter and may only contain letters, digits, and hyphens.
|
|
1727
1718
|
*/
|
|
@@ -1806,11 +1797,11 @@ type Direction = typeof Direction[keyof typeof Direction];
|
|
|
1806
1797
|
*/
|
|
1807
1798
|
interface DirectionConstraint {
|
|
1808
1799
|
/**
|
|
1809
|
-
*
|
|
1800
|
+
* The direction constraint vector in world frame.
|
|
1810
1801
|
*/
|
|
1811
1802
|
'world': Array<number>;
|
|
1812
1803
|
/**
|
|
1813
|
-
*
|
|
1804
|
+
* The direction constraint vector in the TCP frame.
|
|
1814
1805
|
*/
|
|
1815
1806
|
'tcp': Array<number>;
|
|
1816
1807
|
/**
|
|
@@ -1868,6 +1859,9 @@ interface DynamicModel {
|
|
|
1868
1859
|
* A reference joint position (start or target) violates the direction constraint.
|
|
1869
1860
|
*/
|
|
1870
1861
|
interface ErrorDirectionConstraintNotMet {
|
|
1862
|
+
/**
|
|
1863
|
+
* The joint position violating the direction constraint.
|
|
1864
|
+
*/
|
|
1871
1865
|
'joint_position'?: Array<number>;
|
|
1872
1866
|
'error_feedback_name': ErrorDirectionConstraintNotMetErrorFeedbackNameEnum;
|
|
1873
1867
|
}
|
|
@@ -1880,7 +1874,7 @@ type ErrorDirectionConstraintNotMetErrorFeedbackNameEnum = typeof ErrorDirection
|
|
|
1880
1874
|
*/
|
|
1881
1875
|
interface ErrorDirectionConstraintNotNormalized {
|
|
1882
1876
|
/**
|
|
1883
|
-
*
|
|
1877
|
+
* The direction constraint that is not normalized.
|
|
1884
1878
|
*/
|
|
1885
1879
|
'direction_constraint'?: Array<number>;
|
|
1886
1880
|
'error_feedback_name': ErrorDirectionConstraintNotNormalizedErrorFeedbackNameEnum;
|
|
@@ -1915,6 +1909,9 @@ interface ErrorJointLimitExceeded {
|
|
|
1915
1909
|
* Index of the joint exceeding its limits (0-based).
|
|
1916
1910
|
*/
|
|
1917
1911
|
'joint_index'?: number;
|
|
1912
|
+
/**
|
|
1913
|
+
* The joint position violating the limits.
|
|
1914
|
+
*/
|
|
1918
1915
|
'joint_position'?: Array<number>;
|
|
1919
1916
|
'error_feedback_name': ErrorJointLimitExceededErrorFeedbackNameEnum;
|
|
1920
1917
|
}
|
|
@@ -1927,6 +1924,9 @@ type ErrorJointLimitExceededErrorFeedbackNameEnum = typeof ErrorJointLimitExceed
|
|
|
1927
1924
|
*/
|
|
1928
1925
|
interface ErrorJointPositionCollision {
|
|
1929
1926
|
'collisions'?: Array<Collision>;
|
|
1927
|
+
/**
|
|
1928
|
+
* The joint position that collides.
|
|
1929
|
+
*/
|
|
1930
1930
|
'joint_position'?: Array<number>;
|
|
1931
1931
|
'error_feedback_name': ErrorJointPositionCollisionErrorFeedbackNameEnum;
|
|
1932
1932
|
}
|
|
@@ -2177,7 +2177,7 @@ type FeedbackDirectionConstraintNotMetErrorFeedbackNameEnum = typeof FeedbackDir
|
|
|
2177
2177
|
*/
|
|
2178
2178
|
interface FeedbackDirectionConstraintNotNormalized {
|
|
2179
2179
|
/**
|
|
2180
|
-
*
|
|
2180
|
+
* The direction constraint that is not normalized.
|
|
2181
2181
|
*/
|
|
2182
2182
|
'direction_constraint'?: Array<number>;
|
|
2183
2183
|
'error_feedback_name': FeedbackDirectionConstraintNotNormalizedErrorFeedbackNameEnum;
|
|
@@ -2306,11 +2306,11 @@ interface FlangePayload {
|
|
|
2306
2306
|
*/
|
|
2307
2307
|
'mass': number;
|
|
2308
2308
|
/**
|
|
2309
|
-
*
|
|
2309
|
+
* Center of mass of payload as a three-dimensional position vector [x, y, z] in [mm].
|
|
2310
2310
|
*/
|
|
2311
2311
|
'center_of_mass'?: Array<number>;
|
|
2312
2312
|
/**
|
|
2313
|
-
*
|
|
2313
|
+
* Principal moments of inertia of payload as three-dimensional vector [I_xx, I_yy, I_zz] in [kg·m²].
|
|
2314
2314
|
*/
|
|
2315
2315
|
'moment_of_inertia'?: Array<number>;
|
|
2316
2316
|
}
|
|
@@ -2350,7 +2350,7 @@ interface ForwardKinematicsResponse {
|
|
|
2350
2350
|
'tcp_poses': Array<Pose>;
|
|
2351
2351
|
}
|
|
2352
2352
|
interface ForwardKinematicsValidationError {
|
|
2353
|
-
'loc': Array<
|
|
2353
|
+
'loc': Array<Location1Inner>;
|
|
2354
2354
|
'msg': string;
|
|
2355
2355
|
'type': string;
|
|
2356
2356
|
'input': {
|
|
@@ -2358,6 +2358,24 @@ interface ForwardKinematicsValidationError {
|
|
|
2358
2358
|
};
|
|
2359
2359
|
'data'?: ErrorInvalidJointCount;
|
|
2360
2360
|
}
|
|
2361
|
+
/**
|
|
2362
|
+
* A frame defines a reference in 3D space. Its pose is expressed relative to its parent frame, which allows building a hierarchy of frames.
|
|
2363
|
+
*/
|
|
2364
|
+
interface Frame {
|
|
2365
|
+
/**
|
|
2366
|
+
* Unique identifier of a frame.
|
|
2367
|
+
*/
|
|
2368
|
+
'frame': string;
|
|
2369
|
+
/**
|
|
2370
|
+
* Human-readable name for the frame that is shown in the user interface.
|
|
2371
|
+
*/
|
|
2372
|
+
'name'?: string;
|
|
2373
|
+
/**
|
|
2374
|
+
* Optional identifier of the reference frame. The pose of this frame is expressed relative to its reference. If this is null or omitted, the frame is referenced in `world`.
|
|
2375
|
+
*/
|
|
2376
|
+
'reference_frame'?: string;
|
|
2377
|
+
'pose': Pose;
|
|
2378
|
+
}
|
|
2361
2379
|
/**
|
|
2362
2380
|
* Defines a motion command whose path the planner generates from a generator specification.
|
|
2363
2381
|
*/
|
|
@@ -2385,7 +2403,7 @@ declare const GeneratedPathMotionCommandTypeEnum: {
|
|
|
2385
2403
|
};
|
|
2386
2404
|
type GeneratedPathMotionCommandTypeEnum = typeof GeneratedPathMotionCommandTypeEnum[keyof typeof GeneratedPathMotionCommandTypeEnum];
|
|
2387
2405
|
/**
|
|
2388
|
-
* Returns a
|
|
2406
|
+
* Returns a dataset resolved together with its persisted poses and command routines.
|
|
2389
2407
|
*/
|
|
2390
2408
|
interface GetDatasetResponse {
|
|
2391
2409
|
/**
|
|
@@ -2417,9 +2435,9 @@ interface GetDatasetResponse {
|
|
|
2417
2435
|
*/
|
|
2418
2436
|
'poses': Array<DatasetPose>;
|
|
2419
2437
|
/**
|
|
2420
|
-
* Contains the
|
|
2438
|
+
* Contains the frames that belong to this dataset.
|
|
2421
2439
|
*/
|
|
2422
|
-
'
|
|
2440
|
+
'frames': Array<DatasetFrame>;
|
|
2423
2441
|
/**
|
|
2424
2442
|
* Contains the command routines that belong to this dataset.
|
|
2425
2443
|
*/
|
|
@@ -2445,7 +2463,7 @@ interface GetKinematicConfigurationResponse {
|
|
|
2445
2463
|
'kinematic_configurations': Array<KinematicConfiguration>;
|
|
2446
2464
|
}
|
|
2447
2465
|
interface GetKinematicConfigurationValidationError {
|
|
2448
|
-
'loc': Array<
|
|
2466
|
+
'loc': Array<Location1Inner>;
|
|
2449
2467
|
'msg': string;
|
|
2450
2468
|
'type': string;
|
|
2451
2469
|
'input': {
|
|
@@ -2801,7 +2819,7 @@ interface InitializeMovementRequest {
|
|
|
2801
2819
|
'message_type': InitializeMovementRequestMessageTypeEnum;
|
|
2802
2820
|
'trajectory': InitializeMovementRequestTrajectory;
|
|
2803
2821
|
/**
|
|
2804
|
-
*
|
|
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.
|
|
2805
2823
|
*/
|
|
2806
2824
|
'initial_location'?: number;
|
|
2807
2825
|
/**
|
|
@@ -2847,9 +2865,9 @@ interface InlinePoseReference {
|
|
|
2847
2865
|
'pose': Pose;
|
|
2848
2866
|
'kinematic_configuration'?: KinematicConfiguration;
|
|
2849
2867
|
/**
|
|
2850
|
-
*
|
|
2868
|
+
* Optional identifier of the frame the pose is expressed in. If this is null or omitted, the pose is referenced in `world`.
|
|
2851
2869
|
*/
|
|
2852
|
-
'
|
|
2870
|
+
'frame'?: string;
|
|
2853
2871
|
/**
|
|
2854
2872
|
* Identifies the inline pose-reference variant.
|
|
2855
2873
|
*/
|
|
@@ -2933,13 +2951,16 @@ interface InverseKinematicsRequest {
|
|
|
2933
2951
|
'collision_setups'?: {
|
|
2934
2952
|
[key: string]: CollisionSetup;
|
|
2935
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
|
+
*/
|
|
2936
2957
|
'reference_joint_position'?: Array<number>;
|
|
2937
2958
|
}
|
|
2938
2959
|
interface InverseKinematicsResponse {
|
|
2939
2960
|
'joints': Array<Array<Array<number>>>;
|
|
2940
2961
|
}
|
|
2941
2962
|
interface InverseKinematicsValidationError {
|
|
2942
|
-
'loc': Array<
|
|
2963
|
+
'loc': Array<Location1Inner>;
|
|
2943
2964
|
'msg': string;
|
|
2944
2965
|
'type': string;
|
|
2945
2966
|
'input': {
|
|
@@ -3077,7 +3098,13 @@ interface JointLimits {
|
|
|
3077
3098
|
'torque'?: number;
|
|
3078
3099
|
}
|
|
3079
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
|
+
*/
|
|
3080
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
|
+
*/
|
|
3081
3108
|
'target_joint_position': Array<number>;
|
|
3082
3109
|
'limits_override'?: LimitsOverride;
|
|
3083
3110
|
}
|
|
@@ -3126,7 +3153,7 @@ interface JointVelocityRequest {
|
|
|
3126
3153
|
*/
|
|
3127
3154
|
'message_type': JointVelocityRequestMessageTypeEnum;
|
|
3128
3155
|
/**
|
|
3129
|
-
*
|
|
3156
|
+
* in [rad/s]
|
|
3130
3157
|
*/
|
|
3131
3158
|
'velocity': Array<number>;
|
|
3132
3159
|
}
|
|
@@ -3157,7 +3184,7 @@ interface JointWaypoint {
|
|
|
3157
3184
|
*/
|
|
3158
3185
|
'kind': JointWaypointKindEnum;
|
|
3159
3186
|
/**
|
|
3160
|
-
*
|
|
3187
|
+
* Joint positions for this waypoint.
|
|
3161
3188
|
*/
|
|
3162
3189
|
'joints': Array<number>;
|
|
3163
3190
|
}
|
|
@@ -3416,7 +3443,7 @@ interface LinkChainValue {
|
|
|
3416
3443
|
*/
|
|
3417
3444
|
'source': LinkChainValueSourceEnum;
|
|
3418
3445
|
/**
|
|
3419
|
-
*
|
|
3446
|
+
* The inline link chain definition.
|
|
3420
3447
|
*/
|
|
3421
3448
|
'link_chain': Array<{
|
|
3422
3449
|
[key: string]: Collider;
|
|
@@ -3464,6 +3491,10 @@ declare const LocalPoseReferenceTypeEnum: {
|
|
|
3464
3491
|
readonly LocalPose: "local_pose";
|
|
3465
3492
|
};
|
|
3466
3493
|
type LocalPoseReferenceTypeEnum = typeof LocalPoseReferenceTypeEnum[keyof typeof LocalPoseReferenceTypeEnum];
|
|
3494
|
+
/**
|
|
3495
|
+
* @type Location1Inner
|
|
3496
|
+
*/
|
|
3497
|
+
type Location1Inner = number | string;
|
|
3467
3498
|
declare const Manufacturer: {
|
|
3468
3499
|
readonly Abb: "abb";
|
|
3469
3500
|
readonly Bostondynamics: "bostondynamics";
|
|
@@ -3562,14 +3593,14 @@ interface MergeTrajectoriesSegment {
|
|
|
3562
3593
|
*/
|
|
3563
3594
|
'blending'?: BlendingPosition;
|
|
3564
3595
|
/**
|
|
3565
|
-
* Collision
|
|
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.
|
|
3566
3597
|
*/
|
|
3567
3598
|
'collision_setups'?: {
|
|
3568
3599
|
[key: string]: CollisionSetup;
|
|
3569
3600
|
};
|
|
3570
3601
|
}
|
|
3571
3602
|
interface MergeTrajectoriesValidationError {
|
|
3572
|
-
'loc': Array<
|
|
3603
|
+
'loc': Array<Location1Inner>;
|
|
3573
3604
|
'msg': string;
|
|
3574
3605
|
'type': string;
|
|
3575
3606
|
'input': {
|
|
@@ -3736,7 +3767,7 @@ interface MotionGroupDescription {
|
|
|
3736
3767
|
[key: string]: TcpOffset;
|
|
3737
3768
|
};
|
|
3738
3769
|
/**
|
|
3739
|
-
*
|
|
3770
|
+
* SafetyZones are areas which cannot be entered or where certain limits apply. SafetyZones are defined in the world coordinate system.
|
|
3740
3771
|
*/
|
|
3741
3772
|
'safety_zones'?: {
|
|
3742
3773
|
[key: string]: Collider;
|
|
@@ -3946,7 +3977,7 @@ interface MotionGroupState {
|
|
|
3946
3977
|
*/
|
|
3947
3978
|
'controller': string;
|
|
3948
3979
|
/**
|
|
3949
|
-
*
|
|
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].
|
|
3950
3981
|
*/
|
|
3951
3982
|
'joint_position': Array<number>;
|
|
3952
3983
|
/**
|
|
@@ -3954,11 +3985,11 @@ interface MotionGroupState {
|
|
|
3954
3985
|
*/
|
|
3955
3986
|
'joint_limit_reached': MotionGroupStateJointLimitReached;
|
|
3956
3987
|
/**
|
|
3957
|
-
*
|
|
3988
|
+
* Current joint torque of each joint in [Nm]. Is only available if the robot controller supports it, e.g., available for UR controllers.
|
|
3958
3989
|
*/
|
|
3959
3990
|
'joint_torque'?: Array<number>;
|
|
3960
3991
|
/**
|
|
3961
|
-
*
|
|
3992
|
+
* Current at TCP in [A]. Is only available if the robot controller supports it, e.g., available for UR controllers.
|
|
3962
3993
|
*/
|
|
3963
3994
|
'joint_current'?: Array<number>;
|
|
3964
3995
|
/**
|
|
@@ -4015,7 +4046,13 @@ interface MotionGroupStateJointLimitReached {
|
|
|
4015
4046
|
* Groups inheritable baseline blending and motion limit settings.
|
|
4016
4047
|
*/
|
|
4017
4048
|
interface MotionSettings {
|
|
4049
|
+
/**
|
|
4050
|
+
* Specifies blending or explicitly suppresses inherited blending when set to `null`.
|
|
4051
|
+
*/
|
|
4018
4052
|
'blending'?: Blending | null;
|
|
4053
|
+
/**
|
|
4054
|
+
* Specifies motion limit overrides or skips routine defaults when set to `null`.
|
|
4055
|
+
*/
|
|
4019
4056
|
'limits_override'?: LimitsOverride | null;
|
|
4020
4057
|
}
|
|
4021
4058
|
/**
|
|
@@ -4034,13 +4071,13 @@ declare const MovementErrorResponseKindEnum: {
|
|
|
4034
4071
|
type MovementErrorResponseKindEnum = typeof MovementErrorResponseKindEnum[keyof typeof MovementErrorResponseKindEnum];
|
|
4035
4072
|
interface MultiCollisionSetup {
|
|
4036
4073
|
/**
|
|
4037
|
-
*
|
|
4074
|
+
* Dictionary of motion group collision motion groups containing link chain and tool colliders.
|
|
4038
4075
|
*/
|
|
4039
4076
|
'collision_motion_groups_by_motion_group_key'?: {
|
|
4040
4077
|
[key: string]: CollisionMotionGroup;
|
|
4041
4078
|
};
|
|
4042
4079
|
/**
|
|
4043
|
-
*
|
|
4080
|
+
* Colliders are checked against links and tool.
|
|
4044
4081
|
*/
|
|
4045
4082
|
'colliders'?: {
|
|
4046
4083
|
[key: string]: Collider;
|
|
@@ -4068,7 +4105,7 @@ interface MultiErrorJointLimitExceeded {
|
|
|
4068
4105
|
interface MultiErrorJointPositionCollision {
|
|
4069
4106
|
'collisions'?: Array<Collision>;
|
|
4070
4107
|
/**
|
|
4071
|
-
*
|
|
4108
|
+
* The joint positions of all motion groups as the collision occurs.
|
|
4072
4109
|
*/
|
|
4073
4110
|
'joint_positions_by_motion_group_key'?: {
|
|
4074
4111
|
[key: string]: Array<number>;
|
|
@@ -4076,7 +4113,7 @@ interface MultiErrorJointPositionCollision {
|
|
|
4076
4113
|
}
|
|
4077
4114
|
interface MultiJointTrajectory {
|
|
4078
4115
|
/**
|
|
4079
|
-
*
|
|
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].
|
|
4080
4117
|
*/
|
|
4081
4118
|
'joint_positions_by_motion_group_key': {
|
|
4082
4119
|
[key: string]: Array<Array<number>>;
|
|
@@ -4092,19 +4129,19 @@ interface MultiSearchCollisionFree422Response {
|
|
|
4092
4129
|
}
|
|
4093
4130
|
interface MultiSearchCollisionFreeRequest {
|
|
4094
4131
|
/**
|
|
4095
|
-
*
|
|
4132
|
+
* Dictionary of motion group setups.
|
|
4096
4133
|
*/
|
|
4097
4134
|
'motion_group_setups_by_motion_group_key': {
|
|
4098
4135
|
[key: string]: MotionGroupSetup;
|
|
4099
4136
|
};
|
|
4100
4137
|
/**
|
|
4101
|
-
*
|
|
4138
|
+
* Dictionary of path definitions. The keys must match the ones in `motion_group_setups_by_motion_group_key`.
|
|
4102
4139
|
*/
|
|
4103
4140
|
'path_definitions_by_motion_group_key': {
|
|
4104
4141
|
[key: string]: JointPTPMotion;
|
|
4105
4142
|
};
|
|
4106
4143
|
/**
|
|
4107
|
-
*
|
|
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.
|
|
4108
4145
|
*/
|
|
4109
4146
|
'collision_setups'?: {
|
|
4110
4147
|
[key: string]: MultiCollisionSetup;
|
|
@@ -4123,7 +4160,7 @@ interface MultiSearchCollisionFreeResponse {
|
|
|
4123
4160
|
*/
|
|
4124
4161
|
type MultiSearchCollisionFreeResponseResponse = MultiJointTrajectory | PlanCollisionFreeFailedResponse;
|
|
4125
4162
|
interface MultiSearchCollisionFreeValidationError {
|
|
4126
|
-
'loc': Array<
|
|
4163
|
+
'loc': Array<Location1Inner>;
|
|
4127
4164
|
'msg': string;
|
|
4128
4165
|
'type': string;
|
|
4129
4166
|
'input': {
|
|
@@ -4257,6 +4294,106 @@ declare const OperationMode: {
|
|
|
4257
4294
|
readonly OperationModeRecovery: "OPERATION_MODE_RECOVERY";
|
|
4258
4295
|
};
|
|
4259
4296
|
type OperationMode = typeof OperationMode[keyof typeof OperationMode];
|
|
4297
|
+
/**
|
|
4298
|
+
* Algorithm parameters for the duration optimizer. These control how the optimization runs. All fields are optional. If omitted, server-side defaults are used.
|
|
4299
|
+
*/
|
|
4300
|
+
interface OptimizeMotionCommandsParameter {
|
|
4301
|
+
/**
|
|
4302
|
+
* Number of perturbation attempts.
|
|
4303
|
+
*/
|
|
4304
|
+
'max_iterations'?: number;
|
|
4305
|
+
/**
|
|
4306
|
+
* Initial joint-space perturbation step size in radians.
|
|
4307
|
+
*/
|
|
4308
|
+
'step_size'?: number;
|
|
4309
|
+
/**
|
|
4310
|
+
* Random seed for reproducibility.
|
|
4311
|
+
*/
|
|
4312
|
+
'seed'?: number | null;
|
|
4313
|
+
/**
|
|
4314
|
+
* Command indices excluded from perturbation.
|
|
4315
|
+
*/
|
|
4316
|
+
'frozen_command_indices'?: Array<number>;
|
|
4317
|
+
/**
|
|
4318
|
+
* Relative duration improvement threshold. Stops when periodic time checks show less than `ftol` improvement (relative to baseline) for several consecutive checks.
|
|
4319
|
+
*/
|
|
4320
|
+
'ftol'?: number;
|
|
4321
|
+
/**
|
|
4322
|
+
* Optional elapsed real-time limit in seconds for the optimization.
|
|
4323
|
+
*/
|
|
4324
|
+
'time_budget'?: number | null;
|
|
4325
|
+
}
|
|
4326
|
+
interface OptimizeMotionCommandsRequest {
|
|
4327
|
+
/**
|
|
4328
|
+
* The data to assemble the robot setup can be retrieved from [getMotionGroupDescription](#/operations/getMotionGroupDescription) endpoint.
|
|
4329
|
+
*/
|
|
4330
|
+
'motion_group_setup': MotionGroupSetup;
|
|
4331
|
+
/**
|
|
4332
|
+
* 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 P2P 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).
|
|
4333
|
+
*/
|
|
4334
|
+
'start_joint_position': Array<number>;
|
|
4335
|
+
/**
|
|
4336
|
+
* List of collision-free motion commands to optimize. A command consists of a path definition (`line`, `circle`, `joint_ptp`, `cartesian_ptp`, `cubic_spline`), blending, and limits override. > **NOTE** This endpoint does not repair colliding paths. The commands used must already be collision-free.
|
|
4337
|
+
*/
|
|
4338
|
+
'motion_commands': Array<MotionCommand>;
|
|
4339
|
+
/**
|
|
4340
|
+
* Optional tuning parameters that control how the optimization runs including iterations, step size, convergence tolerance, and time budget. If omitted, server-side defaults apply: `max_iterations=10000`, `step_size=0.1 rad`, `ftol=0.01`, no time budget.
|
|
4341
|
+
*/
|
|
4342
|
+
'optimization_parameters'?: OptimizeMotionCommandsParameter;
|
|
4343
|
+
}
|
|
4344
|
+
/**
|
|
4345
|
+
* Response from motion command optimization. Contains either a successful joint trajectory or failure information.
|
|
4346
|
+
*/
|
|
4347
|
+
interface OptimizeMotionCommandsResponse {
|
|
4348
|
+
'response': PlanTrajectoryResponseResponse;
|
|
4349
|
+
/**
|
|
4350
|
+
* The optimized motion commands that produced the trajectory. Can be used to re-plan the same path using the [planTrajectory](#/operations/planTrajectory) endpoint.
|
|
4351
|
+
*/
|
|
4352
|
+
'motion_commands'?: Array<MotionCommand>;
|
|
4353
|
+
/**
|
|
4354
|
+
* Optimization metrics: - baseline durations - optimized durations - improvement percentage - iteration count - wall-clock computation time
|
|
4355
|
+
*/
|
|
4356
|
+
'statistics': OptimizeMotionCommandsStatistics;
|
|
4357
|
+
}
|
|
4358
|
+
/**
|
|
4359
|
+
* Metrics collected during a duration-optimization run.
|
|
4360
|
+
*/
|
|
4361
|
+
interface OptimizeMotionCommandsStatistics {
|
|
4362
|
+
/**
|
|
4363
|
+
* Trajectory duration before optimization in seconds.
|
|
4364
|
+
*/
|
|
4365
|
+
'baseline_duration': number;
|
|
4366
|
+
/**
|
|
4367
|
+
* Trajectory duration after optimization in seconds.
|
|
4368
|
+
*/
|
|
4369
|
+
'optimized_duration': number;
|
|
4370
|
+
/**
|
|
4371
|
+
* Relative duration improvement as a percentage. Positive means faster, e.g., 12.5 means 12.5% quicker than baseline.
|
|
4372
|
+
*/
|
|
4373
|
+
'improvement': number;
|
|
4374
|
+
/**
|
|
4375
|
+
* Number of iterations required until termination.
|
|
4376
|
+
*/
|
|
4377
|
+
'iterations': number;
|
|
4378
|
+
/**
|
|
4379
|
+
* Wall-clock time spent in the optimization in seconds.
|
|
4380
|
+
*/
|
|
4381
|
+
'computation_time': number;
|
|
4382
|
+
/**
|
|
4383
|
+
* Why the optimization loop stopped. - `MAX_ITERATIONS`: the maximum number of iterations was reached. - `CONVERGED`: ftol patience was exhausted — no meaningful improvement. - `TIME_BUDGET`: the wall-clock time budget was exceeded.
|
|
4384
|
+
*/
|
|
4385
|
+
'termination_reason': OptimizeMotionCommandsStatisticsTerminationReasonEnum;
|
|
4386
|
+
/**
|
|
4387
|
+
* Human-readable detail string, e.g., \"ftol=0.01, 20 checks without improvement\" for `CONVERGED`.
|
|
4388
|
+
*/
|
|
4389
|
+
'termination_detail': string;
|
|
4390
|
+
}
|
|
4391
|
+
declare const OptimizeMotionCommandsStatisticsTerminationReasonEnum: {
|
|
4392
|
+
readonly MaxIterations: "MAX_ITERATIONS";
|
|
4393
|
+
readonly Converged: "CONVERGED";
|
|
4394
|
+
readonly TimeBudget: "TIME_BUDGET";
|
|
4395
|
+
};
|
|
4396
|
+
type OptimizeMotionCommandsStatisticsTerminationReasonEnum = typeof OptimizeMotionCommandsStatisticsTerminationReasonEnum[keyof typeof OptimizeMotionCommandsStatisticsTerminationReasonEnum];
|
|
4260
4397
|
/**
|
|
4261
4398
|
* The type of rotation description that is used to specify the orientation. **Rotation Vector notation** * The rotation is represented using an axis-angle representation: > axis = Vector[0:2] > angle = |axis| in [rad] > axis.normalized * angle **Quaternion notation** * The rotation is represented using a unit quaternion: [x, y, z, w]. * The vector part [x, y, z] is the imaginary part of the quaternion, and the scalar part [w] is the real part. **Euler notation** * *extrinsic* fixed external reference system * *intrinsic* reference system fixed to rotation body > angles = Vector[0:2] in [rad]. * ZYX, ZXZ,... - mapping of the given angles values to the (either intrinsic or extrinsic) axes in the stated order. > Example ZYX: Z = Vector[0], Y = Vector[1], X = Vector[2].
|
|
4262
4399
|
*/
|
|
@@ -4631,11 +4768,11 @@ interface Payload {
|
|
|
4631
4768
|
*/
|
|
4632
4769
|
'payload': number;
|
|
4633
4770
|
/**
|
|
4634
|
-
*
|
|
4771
|
+
* Center of mass of payload as a three-dimensional position vector [x, y, z] in [mm].
|
|
4635
4772
|
*/
|
|
4636
4773
|
'center_of_mass'?: Array<number>;
|
|
4637
4774
|
/**
|
|
4638
|
-
*
|
|
4775
|
+
* Principal moments of inertia of payload as three-dimensional vector [I_xx, I_yy, I_zz] in [kg·m²].
|
|
4639
4776
|
*/
|
|
4640
4777
|
'moment_of_inertia'?: Array<number>;
|
|
4641
4778
|
}
|
|
@@ -4654,12 +4791,18 @@ interface PlanCollisionFreeRequest {
|
|
|
4654
4791
|
*/
|
|
4655
4792
|
'motion_group_setup': MotionGroupSetup;
|
|
4656
4793
|
/**
|
|
4657
|
-
*
|
|
4794
|
+
* 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.
|
|
4658
4795
|
*/
|
|
4659
4796
|
'collision_setups'?: {
|
|
4660
4797
|
[key: string]: CollisionSetupValueOrKey;
|
|
4661
4798
|
};
|
|
4799
|
+
/**
|
|
4800
|
+
* 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).
|
|
4801
|
+
*/
|
|
4662
4802
|
'start_joint_position': Array<number>;
|
|
4803
|
+
/**
|
|
4804
|
+
* 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).
|
|
4805
|
+
*/
|
|
4663
4806
|
'target': Array<number>;
|
|
4664
4807
|
/**
|
|
4665
4808
|
* 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.
|
|
@@ -4701,6 +4844,9 @@ interface PlanTrajectoryRequest {
|
|
|
4701
4844
|
* The data to assemble the robot setup can be retrieved from [getMotionGroupDescription](#/operations/getMotionGroupDescription) endpoint.
|
|
4702
4845
|
*/
|
|
4703
4846
|
'motion_group_setup': MotionGroupSetup;
|
|
4847
|
+
/**
|
|
4848
|
+
* 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).
|
|
4849
|
+
*/
|
|
4704
4850
|
'start_joint_position': Array<number>;
|
|
4705
4851
|
/**
|
|
4706
4852
|
* List of motion commands. A command consists of a path definition (line, circle, joint_ptp, cartesian_ptp, cubic_spline), blending, and limits override.
|
|
@@ -4719,7 +4865,7 @@ interface PlanTrajectoryResponse {
|
|
|
4719
4865
|
*/
|
|
4720
4866
|
type PlanTrajectoryResponseResponse = JointTrajectory | PlanTrajectoryFailedResponse;
|
|
4721
4867
|
interface PlanValidationError {
|
|
4722
|
-
'loc': Array<
|
|
4868
|
+
'loc': Array<Location1Inner>;
|
|
4723
4869
|
'msg': string;
|
|
4724
4870
|
'type': string;
|
|
4725
4871
|
'input': {
|
|
@@ -5081,10 +5227,10 @@ interface ProjectJointPositionDirectionConstraintResponse {
|
|
|
5081
5227
|
/**
|
|
5082
5228
|
* List of projected joint positions. If the resulting joint position is in collision or violates joint limits, the corresponding entry is null.
|
|
5083
5229
|
*/
|
|
5084
|
-
'projected_joint_positions': Array<Array
|
|
5230
|
+
'projected_joint_positions': Array<Array | null>;
|
|
5085
5231
|
}
|
|
5086
5232
|
interface ProjectJointPositionDirectionConstraintValidationError {
|
|
5087
|
-
'loc': Array<
|
|
5233
|
+
'loc': Array<Location1Inner>;
|
|
5088
5234
|
'msg': string;
|
|
5089
5235
|
'type': string;
|
|
5090
5236
|
'input': {
|
|
@@ -5190,6 +5336,30 @@ declare const ReleaseChannel: {
|
|
|
5190
5336
|
readonly Next: "next";
|
|
5191
5337
|
};
|
|
5192
5338
|
type ReleaseChannel = typeof ReleaseChannel[keyof typeof ReleaseChannel];
|
|
5339
|
+
interface RerunLoggingConfigurationRequest {
|
|
5340
|
+
/**
|
|
5341
|
+
* Whether new Rerun logging sessions should be enabled.
|
|
5342
|
+
*/
|
|
5343
|
+
'enabled': boolean;
|
|
5344
|
+
/**
|
|
5345
|
+
* 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.
|
|
5346
|
+
*/
|
|
5347
|
+
'rerun_url'?: string | null;
|
|
5348
|
+
}
|
|
5349
|
+
interface RerunLoggingConfigurationResponse {
|
|
5350
|
+
/**
|
|
5351
|
+
* Whether Rerun logging is currently enabled for new operations.
|
|
5352
|
+
*/
|
|
5353
|
+
'enabled': boolean;
|
|
5354
|
+
/**
|
|
5355
|
+
* Raw value of the `RERUN` environment variable in the service process.
|
|
5356
|
+
*/
|
|
5357
|
+
'rerun'?: string | null;
|
|
5358
|
+
/**
|
|
5359
|
+
* Current Rerun gRPC URL used by the service process, if any.
|
|
5360
|
+
*/
|
|
5361
|
+
'rerun_url'?: string | null;
|
|
5362
|
+
}
|
|
5193
5363
|
/**
|
|
5194
5364
|
* The configuration of a physical or virtual robot controller.
|
|
5195
5365
|
*/
|
|
@@ -5750,7 +5920,7 @@ interface StartMovementRequest {
|
|
|
5750
5920
|
'message_type': StartMovementRequestMessageTypeEnum;
|
|
5751
5921
|
'direction'?: Direction;
|
|
5752
5922
|
/**
|
|
5753
|
-
*
|
|
5923
|
+
* 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`.
|
|
5754
5924
|
*/
|
|
5755
5925
|
'target_location'?: number;
|
|
5756
5926
|
/**
|
|
@@ -5994,7 +6164,7 @@ interface ToolValue {
|
|
|
5994
6164
|
*/
|
|
5995
6165
|
'source': ToolValueSourceEnum;
|
|
5996
6166
|
/**
|
|
5997
|
-
*
|
|
6167
|
+
* The inline tool collider definition.
|
|
5998
6168
|
*/
|
|
5999
6169
|
'tool': {
|
|
6000
6170
|
[key: string]: Collider;
|
|
@@ -6062,7 +6232,7 @@ interface TrajectoryDetails {
|
|
|
6062
6232
|
*/
|
|
6063
6233
|
'trajectory': string;
|
|
6064
6234
|
/**
|
|
6065
|
-
*
|
|
6235
|
+
* Location of current joint position commmand on the trajectory being executed.
|
|
6066
6236
|
*/
|
|
6067
6237
|
'location': number;
|
|
6068
6238
|
'state': TrajectoryDetailsState;
|
|
@@ -6254,7 +6424,7 @@ declare const UnpauseActionChunksResponseKindEnum: {
|
|
|
6254
6424
|
};
|
|
6255
6425
|
type UnpauseActionChunksResponseKindEnum = typeof UnpauseActionChunksResponseKindEnum[keyof typeof UnpauseActionChunksResponseKindEnum];
|
|
6256
6426
|
/**
|
|
6257
|
-
* Update a single cell\'s
|
|
6427
|
+
* Update a single cell\'s foundation chart version based on the indicated release channel.
|
|
6258
6428
|
*/
|
|
6259
6429
|
interface UpdateCellVersionRequest {
|
|
6260
6430
|
'channel': ReleaseChannel;
|
|
@@ -6287,7 +6457,7 @@ interface User {
|
|
|
6287
6457
|
'email': string;
|
|
6288
6458
|
}
|
|
6289
6459
|
interface ValidationError {
|
|
6290
|
-
'loc': Array<
|
|
6460
|
+
'loc': Array<Location1Inner>;
|
|
6291
6461
|
'msg': string;
|
|
6292
6462
|
'type': string;
|
|
6293
6463
|
'input': {
|
|
@@ -6302,10 +6472,6 @@ interface ValidationError2 {
|
|
|
6302
6472
|
'msg': string;
|
|
6303
6473
|
'type': string;
|
|
6304
6474
|
}
|
|
6305
|
-
/**
|
|
6306
|
-
* @type ValidationErrorLocInner
|
|
6307
|
-
*/
|
|
6308
|
-
type ValidationErrorLocInner = number | string;
|
|
6309
6475
|
/**
|
|
6310
6476
|
* 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.
|
|
6311
6477
|
*/
|
|
@@ -7681,7 +7847,7 @@ declare const CellApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
7681
7847
|
*/
|
|
7682
7848
|
updateCell: (cell: string, cell2: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7683
7849
|
/**
|
|
7684
|
-
* **Required permissions:** `can_manage_cells` - Create, update, or delete cells ___ Update the
|
|
7850
|
+
* **Required permissions:** `can_manage_cells` - Create, update, or delete cells ___ Update the foundation chart version for a single cell based on a release channel. The resulting version is capped at the current system version.
|
|
7685
7851
|
* @summary Update Cell Version
|
|
7686
7852
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7687
7853
|
* @param {UpdateCellVersionRequest} updateCellVersionRequest
|
|
@@ -7764,7 +7930,7 @@ declare const CellApiFp: (configuration?: Configuration) => {
|
|
|
7764
7930
|
*/
|
|
7765
7931
|
updateCell(cell: string, cell2: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
7766
7932
|
/**
|
|
7767
|
-
* **Required permissions:** `can_manage_cells` - Create, update, or delete cells ___ Update the
|
|
7933
|
+
* **Required permissions:** `can_manage_cells` - Create, update, or delete cells ___ Update the foundation chart version for a single cell based on a release channel. The resulting version is capped at the current system version.
|
|
7768
7934
|
* @summary Update Cell Version
|
|
7769
7935
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7770
7936
|
* @param {UpdateCellVersionRequest} updateCellVersionRequest
|
|
@@ -7847,7 +8013,7 @@ declare const CellApiFactory: (configuration?: Configuration, basePath?: string,
|
|
|
7847
8013
|
*/
|
|
7848
8014
|
updateCell(cell: string, cell2: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
7849
8015
|
/**
|
|
7850
|
-
* **Required permissions:** `can_manage_cells` - Create, update, or delete cells ___ Update the
|
|
8016
|
+
* **Required permissions:** `can_manage_cells` - Create, update, or delete cells ___ Update the foundation chart version for a single cell based on a release channel. The resulting version is capped at the current system version.
|
|
7851
8017
|
* @summary Update Cell Version
|
|
7852
8018
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7853
8019
|
* @param {UpdateCellVersionRequest} updateCellVersionRequest
|
|
@@ -7930,7 +8096,7 @@ declare class CellApi extends BaseAPI {
|
|
|
7930
8096
|
*/
|
|
7931
8097
|
updateCell(cell: string, cell2: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
|
|
7932
8098
|
/**
|
|
7933
|
-
* **Required permissions:** `can_manage_cells` - Create, update, or delete cells ___ Update the
|
|
8099
|
+
* **Required permissions:** `can_manage_cells` - Create, update, or delete cells ___ Update the foundation chart version for a single cell based on a release channel. The resulting version is capped at the current system version.
|
|
7934
8100
|
* @summary Update Cell Version
|
|
7935
8101
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7936
8102
|
* @param {UpdateCellVersionRequest} updateCellVersionRequest
|
|
@@ -8740,116 +8906,272 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
|
|
|
8740
8906
|
*/
|
|
8741
8907
|
declare const DatasetsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
8742
8908
|
/**
|
|
8743
|
-
* **Required permissions:** `
|
|
8744
|
-
* @summary
|
|
8909
|
+
* **Required permissions:** `can_write_datasets` - Write stored datasets ___ <!-- theme: danger --> > **Experimental** Creates a new dataset together with its poses and command routines.
|
|
8910
|
+
* @summary Create Dataset
|
|
8911
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8912
|
+
* @param {CreateDatasetRequest} createDatasetRequest
|
|
8913
|
+
* @param {*} [options] Override http request option.
|
|
8914
|
+
* @throws {RequiredError}
|
|
8915
|
+
*/
|
|
8916
|
+
createDataset: (cell: string, createDatasetRequest: CreateDatasetRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8917
|
+
/**
|
|
8918
|
+
* **Required permissions:** `can_write_datasets` - Write stored datasets ___ <!-- theme: danger --> > **Experimental** Deletes a 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.
|
|
8919
|
+
* @summary Delete Dataset
|
|
8920
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8921
|
+
* @param {string} dataset Specifies the dataset identifier.
|
|
8922
|
+
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
8923
|
+
* @param {*} [options] Override http request option.
|
|
8924
|
+
* @throws {RequiredError}
|
|
8925
|
+
*/
|
|
8926
|
+
deleteDataset: (cell: string, dataset: string, revision?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8927
|
+
/**
|
|
8928
|
+
* **Required permissions:** `can_read_datasets` - Read stored datasets ___ <!-- theme: danger --> > **Experimental** Returns a 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.
|
|
8929
|
+
* @summary Get Dataset
|
|
8930
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8931
|
+
* @param {string} dataset Specifies the dataset identifier.
|
|
8932
|
+
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
8933
|
+
* @param {*} [options] Override http request option.
|
|
8934
|
+
* @throws {RequiredError}
|
|
8935
|
+
*/
|
|
8936
|
+
getDataset: (cell: string, dataset: string, revision?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8937
|
+
/**
|
|
8938
|
+
* **Required permissions:** `can_read_datasets` - Read stored datasets ___ <!-- theme: danger --> > **Experimental** Returns the list of available 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.
|
|
8939
|
+
* @summary List Datasets
|
|
8940
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8941
|
+
* @param {string} [dataset] Restricts the result to all revisions of the given dataset.
|
|
8942
|
+
* @param {boolean} [latestOnly] When `true`, returns only the latest revision of each dataset.
|
|
8943
|
+
* @param {*} [options] Override http request option.
|
|
8944
|
+
* @throws {RequiredError}
|
|
8945
|
+
*/
|
|
8946
|
+
getDatasets: (cell: string, dataset?: string, latestOnly?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8947
|
+
/**
|
|
8948
|
+
* **Required permissions:** `can_read_datasets` - Read stored datasets ___ <!-- theme: danger --> > **Experimental** Localize a list of pose that are expressed in the `world` frame into the given dataset frame. This is the inverse of the resolve operation: the poses are transformed through the whole chain of reference frames within the dataset.
|
|
8949
|
+
* @summary Localize Poses from World (Dataset)
|
|
8745
8950
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8746
8951
|
* @param {string} dataset Specifies the dataset identifier.
|
|
8747
|
-
* @param {string}
|
|
8748
|
-
* @param {Pose}
|
|
8952
|
+
* @param {string} frame Unique identifier addressing a frame within a dataset.
|
|
8953
|
+
* @param {Array<Pose>} poses The poses expressed in the `world` frame.
|
|
8749
8954
|
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
8750
8955
|
* @param {*} [options] Override http request option.
|
|
8751
8956
|
* @throws {RequiredError}
|
|
8752
8957
|
*/
|
|
8753
|
-
|
|
8958
|
+
localizeDatasetFramePose: (cell: string, dataset: string, frame: string, poses: Array<Pose>, revision?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8754
8959
|
/**
|
|
8755
|
-
* **Required permissions:** `
|
|
8756
|
-
* @summary Resolve
|
|
8960
|
+
* **Required permissions:** `can_read_datasets` - Read stored datasets ___ <!-- theme: danger --> > **Experimental** Resolve a list of poses that are expressed relative to the given dataset coordinate system into the `world` frame. The poses are transformed through the whole chain of reference frames within the dataset.
|
|
8961
|
+
* @summary Resolve Poses to World (Dataset)
|
|
8757
8962
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8758
8963
|
* @param {string} dataset Specifies the dataset identifier.
|
|
8759
|
-
* @param {string}
|
|
8760
|
-
* @param {Pose}
|
|
8964
|
+
* @param {string} frame Unique identifier addressing a frame within a dataset.
|
|
8965
|
+
* @param {Array<Pose>} poses The poses expressed relative to the given frame.
|
|
8761
8966
|
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
8762
8967
|
* @param {*} [options] Override http request option.
|
|
8763
8968
|
* @throws {RequiredError}
|
|
8764
8969
|
*/
|
|
8765
|
-
|
|
8970
|
+
resolveDatasetFramePose: (cell: string, dataset: string, frame: string, poses: Array<Pose>, revision?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8766
8971
|
};
|
|
8767
8972
|
/**
|
|
8768
8973
|
* DatasetsApi - functional programming interface
|
|
8769
8974
|
*/
|
|
8770
8975
|
declare const DatasetsApiFp: (configuration?: Configuration) => {
|
|
8771
8976
|
/**
|
|
8772
|
-
* **Required permissions:** `
|
|
8773
|
-
* @summary
|
|
8977
|
+
* **Required permissions:** `can_write_datasets` - Write stored datasets ___ <!-- theme: danger --> > **Experimental** Creates a new dataset together with its poses and command routines.
|
|
8978
|
+
* @summary Create Dataset
|
|
8979
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8980
|
+
* @param {CreateDatasetRequest} createDatasetRequest
|
|
8981
|
+
* @param {*} [options] Override http request option.
|
|
8982
|
+
* @throws {RequiredError}
|
|
8983
|
+
*/
|
|
8984
|
+
createDataset(cell: string, createDatasetRequest: CreateDatasetRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetDatasetResponse>>;
|
|
8985
|
+
/**
|
|
8986
|
+
* **Required permissions:** `can_write_datasets` - Write stored datasets ___ <!-- theme: danger --> > **Experimental** Deletes a 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.
|
|
8987
|
+
* @summary Delete Dataset
|
|
8988
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8989
|
+
* @param {string} dataset Specifies the dataset identifier.
|
|
8990
|
+
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
8991
|
+
* @param {*} [options] Override http request option.
|
|
8992
|
+
* @throws {RequiredError}
|
|
8993
|
+
*/
|
|
8994
|
+
deleteDataset(cell: string, dataset: string, revision?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
8995
|
+
/**
|
|
8996
|
+
* **Required permissions:** `can_read_datasets` - Read stored datasets ___ <!-- theme: danger --> > **Experimental** Returns a 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.
|
|
8997
|
+
* @summary Get Dataset
|
|
8998
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8999
|
+
* @param {string} dataset Specifies the dataset identifier.
|
|
9000
|
+
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
9001
|
+
* @param {*} [options] Override http request option.
|
|
9002
|
+
* @throws {RequiredError}
|
|
9003
|
+
*/
|
|
9004
|
+
getDataset(cell: string, dataset: string, revision?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetDatasetResponse>>;
|
|
9005
|
+
/**
|
|
9006
|
+
* **Required permissions:** `can_read_datasets` - Read stored datasets ___ <!-- theme: danger --> > **Experimental** Returns the list of available 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.
|
|
9007
|
+
* @summary List Datasets
|
|
9008
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9009
|
+
* @param {string} [dataset] Restricts the result to all revisions of the given dataset.
|
|
9010
|
+
* @param {boolean} [latestOnly] When `true`, returns only the latest revision of each dataset.
|
|
9011
|
+
* @param {*} [options] Override http request option.
|
|
9012
|
+
* @throws {RequiredError}
|
|
9013
|
+
*/
|
|
9014
|
+
getDatasets(cell: string, dataset?: string, latestOnly?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Dataset>>>;
|
|
9015
|
+
/**
|
|
9016
|
+
* **Required permissions:** `can_read_datasets` - Read stored datasets ___ <!-- theme: danger --> > **Experimental** Localize a list of pose that are expressed in the `world` frame into the given dataset frame. This is the inverse of the resolve operation: the poses are transformed through the whole chain of reference frames within the dataset.
|
|
9017
|
+
* @summary Localize Poses from World (Dataset)
|
|
8774
9018
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8775
9019
|
* @param {string} dataset Specifies the dataset identifier.
|
|
8776
|
-
* @param {string}
|
|
8777
|
-
* @param {Pose}
|
|
9020
|
+
* @param {string} frame Unique identifier addressing a frame within a dataset.
|
|
9021
|
+
* @param {Array<Pose>} poses The poses expressed in the `world` frame.
|
|
8778
9022
|
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
8779
9023
|
* @param {*} [options] Override http request option.
|
|
8780
9024
|
* @throws {RequiredError}
|
|
8781
9025
|
*/
|
|
8782
|
-
|
|
9026
|
+
localizeDatasetFramePose(cell: string, dataset: string, frame: string, poses: Array<Pose>, revision?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Pose>>>;
|
|
8783
9027
|
/**
|
|
8784
|
-
* **Required permissions:** `
|
|
8785
|
-
* @summary Resolve
|
|
9028
|
+
* **Required permissions:** `can_read_datasets` - Read stored datasets ___ <!-- theme: danger --> > **Experimental** Resolve a list of poses that are expressed relative to the given dataset coordinate system into the `world` frame. The poses are transformed through the whole chain of reference frames within the dataset.
|
|
9029
|
+
* @summary Resolve Poses to World (Dataset)
|
|
8786
9030
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8787
9031
|
* @param {string} dataset Specifies the dataset identifier.
|
|
8788
|
-
* @param {string}
|
|
8789
|
-
* @param {Pose}
|
|
9032
|
+
* @param {string} frame Unique identifier addressing a frame within a dataset.
|
|
9033
|
+
* @param {Array<Pose>} poses The poses expressed relative to the given frame.
|
|
8790
9034
|
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
8791
9035
|
* @param {*} [options] Override http request option.
|
|
8792
9036
|
* @throws {RequiredError}
|
|
8793
9037
|
*/
|
|
8794
|
-
|
|
9038
|
+
resolveDatasetFramePose(cell: string, dataset: string, frame: string, poses: Array<Pose>, revision?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Pose>>>;
|
|
8795
9039
|
};
|
|
8796
9040
|
/**
|
|
8797
9041
|
* DatasetsApi - factory interface
|
|
8798
9042
|
*/
|
|
8799
9043
|
declare const DatasetsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
8800
9044
|
/**
|
|
8801
|
-
* **Required permissions:** `
|
|
8802
|
-
* @summary
|
|
9045
|
+
* **Required permissions:** `can_write_datasets` - Write stored datasets ___ <!-- theme: danger --> > **Experimental** Creates a new dataset together with its poses and command routines.
|
|
9046
|
+
* @summary Create Dataset
|
|
9047
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9048
|
+
* @param {CreateDatasetRequest} createDatasetRequest
|
|
9049
|
+
* @param {*} [options] Override http request option.
|
|
9050
|
+
* @throws {RequiredError}
|
|
9051
|
+
*/
|
|
9052
|
+
createDataset(cell: string, createDatasetRequest: CreateDatasetRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetDatasetResponse>;
|
|
9053
|
+
/**
|
|
9054
|
+
* **Required permissions:** `can_write_datasets` - Write stored datasets ___ <!-- theme: danger --> > **Experimental** Deletes a 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.
|
|
9055
|
+
* @summary Delete Dataset
|
|
9056
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9057
|
+
* @param {string} dataset Specifies the dataset identifier.
|
|
9058
|
+
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
9059
|
+
* @param {*} [options] Override http request option.
|
|
9060
|
+
* @throws {RequiredError}
|
|
9061
|
+
*/
|
|
9062
|
+
deleteDataset(cell: string, dataset: string, revision?: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
9063
|
+
/**
|
|
9064
|
+
* **Required permissions:** `can_read_datasets` - Read stored datasets ___ <!-- theme: danger --> > **Experimental** Returns a 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.
|
|
9065
|
+
* @summary Get Dataset
|
|
9066
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9067
|
+
* @param {string} dataset Specifies the dataset identifier.
|
|
9068
|
+
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
9069
|
+
* @param {*} [options] Override http request option.
|
|
9070
|
+
* @throws {RequiredError}
|
|
9071
|
+
*/
|
|
9072
|
+
getDataset(cell: string, dataset: string, revision?: number, options?: RawAxiosRequestConfig): AxiosPromise<GetDatasetResponse>;
|
|
9073
|
+
/**
|
|
9074
|
+
* **Required permissions:** `can_read_datasets` - Read stored datasets ___ <!-- theme: danger --> > **Experimental** Returns the list of available 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.
|
|
9075
|
+
* @summary List Datasets
|
|
9076
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9077
|
+
* @param {string} [dataset] Restricts the result to all revisions of the given dataset.
|
|
9078
|
+
* @param {boolean} [latestOnly] When `true`, returns only the latest revision of each dataset.
|
|
9079
|
+
* @param {*} [options] Override http request option.
|
|
9080
|
+
* @throws {RequiredError}
|
|
9081
|
+
*/
|
|
9082
|
+
getDatasets(cell: string, dataset?: string, latestOnly?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<Array<Dataset>>;
|
|
9083
|
+
/**
|
|
9084
|
+
* **Required permissions:** `can_read_datasets` - Read stored datasets ___ <!-- theme: danger --> > **Experimental** Localize a list of pose that are expressed in the `world` frame into the given dataset frame. This is the inverse of the resolve operation: the poses are transformed through the whole chain of reference frames within the dataset.
|
|
9085
|
+
* @summary Localize Poses from World (Dataset)
|
|
8803
9086
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8804
9087
|
* @param {string} dataset Specifies the dataset identifier.
|
|
8805
|
-
* @param {string}
|
|
8806
|
-
* @param {Pose}
|
|
9088
|
+
* @param {string} frame Unique identifier addressing a frame within a dataset.
|
|
9089
|
+
* @param {Array<Pose>} poses The poses expressed in the `world` frame.
|
|
8807
9090
|
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
8808
9091
|
* @param {*} [options] Override http request option.
|
|
8809
9092
|
* @throws {RequiredError}
|
|
8810
9093
|
*/
|
|
8811
|
-
|
|
9094
|
+
localizeDatasetFramePose(cell: string, dataset: string, frame: string, poses: Array<Pose>, revision?: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<Pose>>;
|
|
8812
9095
|
/**
|
|
8813
|
-
* **Required permissions:** `
|
|
8814
|
-
* @summary Resolve
|
|
9096
|
+
* **Required permissions:** `can_read_datasets` - Read stored datasets ___ <!-- theme: danger --> > **Experimental** Resolve a list of poses that are expressed relative to the given dataset coordinate system into the `world` frame. The poses are transformed through the whole chain of reference frames within the dataset.
|
|
9097
|
+
* @summary Resolve Poses to World (Dataset)
|
|
8815
9098
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8816
9099
|
* @param {string} dataset Specifies the dataset identifier.
|
|
8817
|
-
* @param {string}
|
|
8818
|
-
* @param {Pose}
|
|
9100
|
+
* @param {string} frame Unique identifier addressing a frame within a dataset.
|
|
9101
|
+
* @param {Array<Pose>} poses The poses expressed relative to the given frame.
|
|
8819
9102
|
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
8820
9103
|
* @param {*} [options] Override http request option.
|
|
8821
9104
|
* @throws {RequiredError}
|
|
8822
9105
|
*/
|
|
8823
|
-
|
|
9106
|
+
resolveDatasetFramePose(cell: string, dataset: string, frame: string, poses: Array<Pose>, revision?: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<Pose>>;
|
|
8824
9107
|
};
|
|
8825
9108
|
/**
|
|
8826
9109
|
* DatasetsApi - object-oriented interface
|
|
8827
9110
|
*/
|
|
8828
9111
|
declare class DatasetsApi extends BaseAPI {
|
|
8829
9112
|
/**
|
|
8830
|
-
* **Required permissions:** `
|
|
8831
|
-
* @summary
|
|
9113
|
+
* **Required permissions:** `can_write_datasets` - Write stored datasets ___ <!-- theme: danger --> > **Experimental** Creates a new dataset together with its poses and command routines.
|
|
9114
|
+
* @summary Create Dataset
|
|
9115
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9116
|
+
* @param {CreateDatasetRequest} createDatasetRequest
|
|
9117
|
+
* @param {*} [options] Override http request option.
|
|
9118
|
+
* @throws {RequiredError}
|
|
9119
|
+
*/
|
|
9120
|
+
createDataset(cell: string, createDatasetRequest: CreateDatasetRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<GetDatasetResponse, any, {}>>;
|
|
9121
|
+
/**
|
|
9122
|
+
* **Required permissions:** `can_write_datasets` - Write stored datasets ___ <!-- theme: danger --> > **Experimental** Deletes a 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.
|
|
9123
|
+
* @summary Delete Dataset
|
|
9124
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9125
|
+
* @param {string} dataset Specifies the dataset identifier.
|
|
9126
|
+
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
9127
|
+
* @param {*} [options] Override http request option.
|
|
9128
|
+
* @throws {RequiredError}
|
|
9129
|
+
*/
|
|
9130
|
+
deleteDataset(cell: string, dataset: string, revision?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
|
|
9131
|
+
/**
|
|
9132
|
+
* **Required permissions:** `can_read_datasets` - Read stored datasets ___ <!-- theme: danger --> > **Experimental** Returns a 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.
|
|
9133
|
+
* @summary Get Dataset
|
|
9134
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9135
|
+
* @param {string} dataset Specifies the dataset identifier.
|
|
9136
|
+
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
9137
|
+
* @param {*} [options] Override http request option.
|
|
9138
|
+
* @throws {RequiredError}
|
|
9139
|
+
*/
|
|
9140
|
+
getDataset(cell: string, dataset: string, revision?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<GetDatasetResponse, any, {}>>;
|
|
9141
|
+
/**
|
|
9142
|
+
* **Required permissions:** `can_read_datasets` - Read stored datasets ___ <!-- theme: danger --> > **Experimental** Returns the list of available 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.
|
|
9143
|
+
* @summary List Datasets
|
|
9144
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9145
|
+
* @param {string} [dataset] Restricts the result to all revisions of the given dataset.
|
|
9146
|
+
* @param {boolean} [latestOnly] When `true`, returns only the latest revision of each dataset.
|
|
9147
|
+
* @param {*} [options] Override http request option.
|
|
9148
|
+
* @throws {RequiredError}
|
|
9149
|
+
*/
|
|
9150
|
+
getDatasets(cell: string, dataset?: string, latestOnly?: boolean, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<Dataset[], any, {}>>;
|
|
9151
|
+
/**
|
|
9152
|
+
* **Required permissions:** `can_read_datasets` - Read stored datasets ___ <!-- theme: danger --> > **Experimental** Localize a list of pose that are expressed in the `world` frame into the given dataset frame. This is the inverse of the resolve operation: the poses are transformed through the whole chain of reference frames within the dataset.
|
|
9153
|
+
* @summary Localize Poses from World (Dataset)
|
|
8832
9154
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8833
9155
|
* @param {string} dataset Specifies the dataset identifier.
|
|
8834
|
-
* @param {string}
|
|
8835
|
-
* @param {Pose}
|
|
9156
|
+
* @param {string} frame Unique identifier addressing a frame within a dataset.
|
|
9157
|
+
* @param {Array<Pose>} poses The poses expressed in the `world` frame.
|
|
8836
9158
|
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
8837
9159
|
* @param {*} [options] Override http request option.
|
|
8838
9160
|
* @throws {RequiredError}
|
|
8839
9161
|
*/
|
|
8840
|
-
|
|
9162
|
+
localizeDatasetFramePose(cell: string, dataset: string, frame: string, poses: Array<Pose>, revision?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<Pose[], any, {}>>;
|
|
8841
9163
|
/**
|
|
8842
|
-
* **Required permissions:** `
|
|
8843
|
-
* @summary Resolve
|
|
9164
|
+
* **Required permissions:** `can_read_datasets` - Read stored datasets ___ <!-- theme: danger --> > **Experimental** Resolve a list of poses that are expressed relative to the given dataset coordinate system into the `world` frame. The poses are transformed through the whole chain of reference frames within the dataset.
|
|
9165
|
+
* @summary Resolve Poses to World (Dataset)
|
|
8844
9166
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8845
9167
|
* @param {string} dataset Specifies the dataset identifier.
|
|
8846
|
-
* @param {string}
|
|
8847
|
-
* @param {Pose}
|
|
9168
|
+
* @param {string} frame Unique identifier addressing a frame within a dataset.
|
|
9169
|
+
* @param {Array<Pose>} poses The poses expressed relative to the given frame.
|
|
8848
9170
|
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
8849
9171
|
* @param {*} [options] Override http request option.
|
|
8850
9172
|
* @throws {RequiredError}
|
|
8851
9173
|
*/
|
|
8852
|
-
|
|
9174
|
+
resolveDatasetFramePose(cell: string, dataset: string, frame: string, poses: Array<Pose>, revision?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<Pose[], any, {}>>;
|
|
8853
9175
|
}
|
|
8854
9176
|
/**
|
|
8855
9177
|
* JoggingApi - axios parameter creator
|
|
@@ -11809,182 +12131,6 @@ declare class SystemApi extends BaseAPI {
|
|
|
11809
12131
|
*/
|
|
11810
12132
|
updateNovaVersion(updateNovaVersionRequest: UpdateNovaVersionRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
|
|
11811
12133
|
}
|
|
11812
|
-
/**
|
|
11813
|
-
* TeachingApi - axios parameter creator
|
|
11814
|
-
*/
|
|
11815
|
-
declare const TeachingApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
11816
|
-
/**
|
|
11817
|
-
* Creates a new teaching dataset together with its poses and command routines.
|
|
11818
|
-
* @summary Create Dataset
|
|
11819
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
11820
|
-
* @param {CreateDatasetRequest} createDatasetRequest
|
|
11821
|
-
* @param {*} [options] Override http request option.
|
|
11822
|
-
* @throws {RequiredError}
|
|
11823
|
-
*/
|
|
11824
|
-
createDataset: (cell: string, createDatasetRequest: CreateDatasetRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11825
|
-
/**
|
|
11826
|
-
* 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.
|
|
11827
|
-
* @summary Delete Dataset
|
|
11828
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
11829
|
-
* @param {string} dataset Specifies the dataset identifier.
|
|
11830
|
-
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
11831
|
-
* @param {*} [options] Override http request option.
|
|
11832
|
-
* @throws {RequiredError}
|
|
11833
|
-
*/
|
|
11834
|
-
deleteDataset: (cell: string, dataset: string, revision?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11835
|
-
/**
|
|
11836
|
-
* 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.
|
|
11837
|
-
* @summary Get Dataset
|
|
11838
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
11839
|
-
* @param {string} dataset Specifies the dataset identifier.
|
|
11840
|
-
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
11841
|
-
* @param {*} [options] Override http request option.
|
|
11842
|
-
* @throws {RequiredError}
|
|
11843
|
-
*/
|
|
11844
|
-
getDataset: (cell: string, dataset: string, revision?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11845
|
-
/**
|
|
11846
|
-
* 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.
|
|
11847
|
-
* @summary List Datasets
|
|
11848
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
11849
|
-
* @param {string} [dataset] Restricts the result to all revisions of the given dataset.
|
|
11850
|
-
* @param {boolean} [latestOnly] When `true`, returns only the latest revision of each dataset.
|
|
11851
|
-
* @param {*} [options] Override http request option.
|
|
11852
|
-
* @throws {RequiredError}
|
|
11853
|
-
*/
|
|
11854
|
-
getDatasets: (cell: string, dataset?: string, latestOnly?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11855
|
-
};
|
|
11856
|
-
/**
|
|
11857
|
-
* TeachingApi - functional programming interface
|
|
11858
|
-
*/
|
|
11859
|
-
declare const TeachingApiFp: (configuration?: Configuration) => {
|
|
11860
|
-
/**
|
|
11861
|
-
* Creates a new teaching dataset together with its poses and command routines.
|
|
11862
|
-
* @summary Create Dataset
|
|
11863
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
11864
|
-
* @param {CreateDatasetRequest} createDatasetRequest
|
|
11865
|
-
* @param {*} [options] Override http request option.
|
|
11866
|
-
* @throws {RequiredError}
|
|
11867
|
-
*/
|
|
11868
|
-
createDataset(cell: string, createDatasetRequest: CreateDatasetRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetDatasetResponse>>;
|
|
11869
|
-
/**
|
|
11870
|
-
* 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.
|
|
11871
|
-
* @summary Delete Dataset
|
|
11872
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
11873
|
-
* @param {string} dataset Specifies the dataset identifier.
|
|
11874
|
-
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
11875
|
-
* @param {*} [options] Override http request option.
|
|
11876
|
-
* @throws {RequiredError}
|
|
11877
|
-
*/
|
|
11878
|
-
deleteDataset(cell: string, dataset: string, revision?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
11879
|
-
/**
|
|
11880
|
-
* 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.
|
|
11881
|
-
* @summary Get Dataset
|
|
11882
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
11883
|
-
* @param {string} dataset Specifies the dataset identifier.
|
|
11884
|
-
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
11885
|
-
* @param {*} [options] Override http request option.
|
|
11886
|
-
* @throws {RequiredError}
|
|
11887
|
-
*/
|
|
11888
|
-
getDataset(cell: string, dataset: string, revision?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetDatasetResponse>>;
|
|
11889
|
-
/**
|
|
11890
|
-
* 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.
|
|
11891
|
-
* @summary List Datasets
|
|
11892
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
11893
|
-
* @param {string} [dataset] Restricts the result to all revisions of the given dataset.
|
|
11894
|
-
* @param {boolean} [latestOnly] When `true`, returns only the latest revision of each dataset.
|
|
11895
|
-
* @param {*} [options] Override http request option.
|
|
11896
|
-
* @throws {RequiredError}
|
|
11897
|
-
*/
|
|
11898
|
-
getDatasets(cell: string, dataset?: string, latestOnly?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Dataset>>>;
|
|
11899
|
-
};
|
|
11900
|
-
/**
|
|
11901
|
-
* TeachingApi - factory interface
|
|
11902
|
-
*/
|
|
11903
|
-
declare const TeachingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
11904
|
-
/**
|
|
11905
|
-
* Creates a new teaching dataset together with its poses and command routines.
|
|
11906
|
-
* @summary Create Dataset
|
|
11907
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
11908
|
-
* @param {CreateDatasetRequest} createDatasetRequest
|
|
11909
|
-
* @param {*} [options] Override http request option.
|
|
11910
|
-
* @throws {RequiredError}
|
|
11911
|
-
*/
|
|
11912
|
-
createDataset(cell: string, createDatasetRequest: CreateDatasetRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetDatasetResponse>;
|
|
11913
|
-
/**
|
|
11914
|
-
* 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.
|
|
11915
|
-
* @summary Delete Dataset
|
|
11916
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
11917
|
-
* @param {string} dataset Specifies the dataset identifier.
|
|
11918
|
-
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
11919
|
-
* @param {*} [options] Override http request option.
|
|
11920
|
-
* @throws {RequiredError}
|
|
11921
|
-
*/
|
|
11922
|
-
deleteDataset(cell: string, dataset: string, revision?: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
11923
|
-
/**
|
|
11924
|
-
* 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.
|
|
11925
|
-
* @summary Get Dataset
|
|
11926
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
11927
|
-
* @param {string} dataset Specifies the dataset identifier.
|
|
11928
|
-
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
11929
|
-
* @param {*} [options] Override http request option.
|
|
11930
|
-
* @throws {RequiredError}
|
|
11931
|
-
*/
|
|
11932
|
-
getDataset(cell: string, dataset: string, revision?: number, options?: RawAxiosRequestConfig): AxiosPromise<GetDatasetResponse>;
|
|
11933
|
-
/**
|
|
11934
|
-
* 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.
|
|
11935
|
-
* @summary List Datasets
|
|
11936
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
11937
|
-
* @param {string} [dataset] Restricts the result to all revisions of the given dataset.
|
|
11938
|
-
* @param {boolean} [latestOnly] When `true`, returns only the latest revision of each dataset.
|
|
11939
|
-
* @param {*} [options] Override http request option.
|
|
11940
|
-
* @throws {RequiredError}
|
|
11941
|
-
*/
|
|
11942
|
-
getDatasets(cell: string, dataset?: string, latestOnly?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<Array<Dataset>>;
|
|
11943
|
-
};
|
|
11944
|
-
/**
|
|
11945
|
-
* TeachingApi - object-oriented interface
|
|
11946
|
-
*/
|
|
11947
|
-
declare class TeachingApi extends BaseAPI {
|
|
11948
|
-
/**
|
|
11949
|
-
* Creates a new teaching dataset together with its poses and command routines.
|
|
11950
|
-
* @summary Create Dataset
|
|
11951
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
11952
|
-
* @param {CreateDatasetRequest} createDatasetRequest
|
|
11953
|
-
* @param {*} [options] Override http request option.
|
|
11954
|
-
* @throws {RequiredError}
|
|
11955
|
-
*/
|
|
11956
|
-
createDataset(cell: string, createDatasetRequest: CreateDatasetRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<GetDatasetResponse, any, {}>>;
|
|
11957
|
-
/**
|
|
11958
|
-
* 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.
|
|
11959
|
-
* @summary Delete Dataset
|
|
11960
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
11961
|
-
* @param {string} dataset Specifies the dataset identifier.
|
|
11962
|
-
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
11963
|
-
* @param {*} [options] Override http request option.
|
|
11964
|
-
* @throws {RequiredError}
|
|
11965
|
-
*/
|
|
11966
|
-
deleteDataset(cell: string, dataset: string, revision?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
|
|
11967
|
-
/**
|
|
11968
|
-
* 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.
|
|
11969
|
-
* @summary Get Dataset
|
|
11970
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
11971
|
-
* @param {string} dataset Specifies the dataset identifier.
|
|
11972
|
-
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
11973
|
-
* @param {*} [options] Override http request option.
|
|
11974
|
-
* @throws {RequiredError}
|
|
11975
|
-
*/
|
|
11976
|
-
getDataset(cell: string, dataset: string, revision?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<GetDatasetResponse, any, {}>>;
|
|
11977
|
-
/**
|
|
11978
|
-
* 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.
|
|
11979
|
-
* @summary List Datasets
|
|
11980
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
11981
|
-
* @param {string} [dataset] Restricts the result to all revisions of the given dataset.
|
|
11982
|
-
* @param {boolean} [latestOnly] When `true`, returns only the latest revision of each dataset.
|
|
11983
|
-
* @param {*} [options] Override http request option.
|
|
11984
|
-
* @throws {RequiredError}
|
|
11985
|
-
*/
|
|
11986
|
-
getDatasets(cell: string, dataset?: string, latestOnly?: boolean, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<Dataset[], any, {}>>;
|
|
11987
|
-
}
|
|
11988
12134
|
/**
|
|
11989
12135
|
* TrajectoryCachingApi - axios parameter creator
|
|
11990
12136
|
*/
|
|
@@ -12261,6 +12407,15 @@ declare class TrajectoryExecutionApi extends BaseAPI {
|
|
|
12261
12407
|
* TrajectoryPlanningApi - axios parameter creator
|
|
12262
12408
|
*/
|
|
12263
12409
|
declare const TrajectoryPlanningApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
12410
|
+
/**
|
|
12411
|
+
* **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.
|
|
12412
|
+
* @summary Configure Rerun Logging
|
|
12413
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
12414
|
+
* @param {RerunLoggingConfigurationRequest} rerunLoggingConfigurationRequest
|
|
12415
|
+
* @param {*} [options] Override http request option.
|
|
12416
|
+
* @throws {RequiredError}
|
|
12417
|
+
*/
|
|
12418
|
+
configureRerunLogging: (cell: string, rerunLoggingConfigurationRequest: RerunLoggingConfigurationRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12264
12419
|
/**
|
|
12265
12420
|
* **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.
|
|
12266
12421
|
* @summary Merge Trajectories
|
|
@@ -12270,6 +12425,15 @@ declare const TrajectoryPlanningApiAxiosParamCreator: (configuration?: Configura
|
|
|
12270
12425
|
* @throws {RequiredError}
|
|
12271
12426
|
*/
|
|
12272
12427
|
mergeTrajectories: (cell: string, mergeTrajectoriesRequest: MergeTrajectoriesRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12428
|
+
/**
|
|
12429
|
+
* **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Optimizes an existing collision-free motion command sequence with respect to time. The optimizer shifts waypoints in joint space to reduce the total trajectory duration, while preserving each command\'s type (a line stays a line, a circle stays a circle), the exact end pose of the trajectory, and collision-free execution. **Prerequisites:** The motion commands must already be collision-free; this endpoint does not repair colliding paths. Use the following workflow to plan and execute an optimized trajectory: 1. Plan a collision-free path, e.g. using the [planCollisionFree](#/operations/planCollisionFree) endpoint. 2. Optimize the motion commands using this endpoint. 3. Either: - Use the optimized motion commands from the response to re-plan using the [planTrajectory](#/operations/planTrajectory) endpoint. - Use the trajectory from the plan result. 4. Optional: Load the trajectory into the cache using the [addTrajectory](#/operations/addTrajectory) endpoint. 5. Execute the trajectory using the [executeTrajectory](#/operations/executeTrajectory) endpoint. If the trajectory is not executable, the response will contain the joint trajectory up until the error, e.g., all samples until a collision occurs.
|
|
12430
|
+
* @summary Optimize Motion Commands
|
|
12431
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
12432
|
+
* @param {OptimizeMotionCommandsRequest} optimizeMotionCommandsRequest
|
|
12433
|
+
* @param {*} [options] Override http request option.
|
|
12434
|
+
* @throws {RequiredError}
|
|
12435
|
+
*/
|
|
12436
|
+
optimizeMotionCommands: (cell: string, optimizeMotionCommandsRequest: OptimizeMotionCommandsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12273
12437
|
/**
|
|
12274
12438
|
* **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Plans a collision-free trajectory for a single motion group using point-to-point (PTP) motions. This endpoint is specifically designed for collision-free path planning algorithms that find a trajectory from a start joint position to a target position while avoiding obstacles. Use the following workflow to execute a planned collision-free trajectory: 1. Plan a collision-free trajectory. 2. Optional: Load the planned trajectory into the cache using the [addTrajectory](#/operations/addTrajectory) endpoint. 3. Execute the (cached) trajectory using the [executeTrajectory](#/operations/executeTrajectory) endpoint. If the trajectory planning fails due to collision or algorithm constraints, the response will contain error information about the failure.
|
|
12275
12439
|
* @summary Plan Collision-Free Trajectory
|
|
@@ -12302,6 +12466,15 @@ declare const TrajectoryPlanningApiAxiosParamCreator: (configuration?: Configura
|
|
|
12302
12466
|
* TrajectoryPlanningApi - functional programming interface
|
|
12303
12467
|
*/
|
|
12304
12468
|
declare const TrajectoryPlanningApiFp: (configuration?: Configuration) => {
|
|
12469
|
+
/**
|
|
12470
|
+
* **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.
|
|
12471
|
+
* @summary Configure Rerun Logging
|
|
12472
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
12473
|
+
* @param {RerunLoggingConfigurationRequest} rerunLoggingConfigurationRequest
|
|
12474
|
+
* @param {*} [options] Override http request option.
|
|
12475
|
+
* @throws {RequiredError}
|
|
12476
|
+
*/
|
|
12477
|
+
configureRerunLogging(cell: string, rerunLoggingConfigurationRequest: RerunLoggingConfigurationRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RerunLoggingConfigurationResponse>>;
|
|
12305
12478
|
/**
|
|
12306
12479
|
* **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.
|
|
12307
12480
|
* @summary Merge Trajectories
|
|
@@ -12311,6 +12484,15 @@ declare const TrajectoryPlanningApiFp: (configuration?: Configuration) => {
|
|
|
12311
12484
|
* @throws {RequiredError}
|
|
12312
12485
|
*/
|
|
12313
12486
|
mergeTrajectories(cell: string, mergeTrajectoriesRequest: MergeTrajectoriesRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MergeTrajectoriesResponse>>;
|
|
12487
|
+
/**
|
|
12488
|
+
* **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Optimizes an existing collision-free motion command sequence with respect to time. The optimizer shifts waypoints in joint space to reduce the total trajectory duration, while preserving each command\'s type (a line stays a line, a circle stays a circle), the exact end pose of the trajectory, and collision-free execution. **Prerequisites:** The motion commands must already be collision-free; this endpoint does not repair colliding paths. Use the following workflow to plan and execute an optimized trajectory: 1. Plan a collision-free path, e.g. using the [planCollisionFree](#/operations/planCollisionFree) endpoint. 2. Optimize the motion commands using this endpoint. 3. Either: - Use the optimized motion commands from the response to re-plan using the [planTrajectory](#/operations/planTrajectory) endpoint. - Use the trajectory from the plan result. 4. Optional: Load the trajectory into the cache using the [addTrajectory](#/operations/addTrajectory) endpoint. 5. Execute the trajectory using the [executeTrajectory](#/operations/executeTrajectory) endpoint. If the trajectory is not executable, the response will contain the joint trajectory up until the error, e.g., all samples until a collision occurs.
|
|
12489
|
+
* @summary Optimize Motion Commands
|
|
12490
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
12491
|
+
* @param {OptimizeMotionCommandsRequest} optimizeMotionCommandsRequest
|
|
12492
|
+
* @param {*} [options] Override http request option.
|
|
12493
|
+
* @throws {RequiredError}
|
|
12494
|
+
*/
|
|
12495
|
+
optimizeMotionCommands(cell: string, optimizeMotionCommandsRequest: OptimizeMotionCommandsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OptimizeMotionCommandsResponse>>;
|
|
12314
12496
|
/**
|
|
12315
12497
|
* **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Plans a collision-free trajectory for a single motion group using point-to-point (PTP) motions. This endpoint is specifically designed for collision-free path planning algorithms that find a trajectory from a start joint position to a target position while avoiding obstacles. Use the following workflow to execute a planned collision-free trajectory: 1. Plan a collision-free trajectory. 2. Optional: Load the planned trajectory into the cache using the [addTrajectory](#/operations/addTrajectory) endpoint. 3. Execute the (cached) trajectory using the [executeTrajectory](#/operations/executeTrajectory) endpoint. If the trajectory planning fails due to collision or algorithm constraints, the response will contain error information about the failure.
|
|
12316
12498
|
* @summary Plan Collision-Free Trajectory
|
|
@@ -12343,6 +12525,15 @@ declare const TrajectoryPlanningApiFp: (configuration?: Configuration) => {
|
|
|
12343
12525
|
* TrajectoryPlanningApi - factory interface
|
|
12344
12526
|
*/
|
|
12345
12527
|
declare const TrajectoryPlanningApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
12528
|
+
/**
|
|
12529
|
+
* **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.
|
|
12530
|
+
* @summary Configure Rerun Logging
|
|
12531
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
12532
|
+
* @param {RerunLoggingConfigurationRequest} rerunLoggingConfigurationRequest
|
|
12533
|
+
* @param {*} [options] Override http request option.
|
|
12534
|
+
* @throws {RequiredError}
|
|
12535
|
+
*/
|
|
12536
|
+
configureRerunLogging(cell: string, rerunLoggingConfigurationRequest: RerunLoggingConfigurationRequest, options?: RawAxiosRequestConfig): AxiosPromise<RerunLoggingConfigurationResponse>;
|
|
12346
12537
|
/**
|
|
12347
12538
|
* **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.
|
|
12348
12539
|
* @summary Merge Trajectories
|
|
@@ -12352,6 +12543,15 @@ declare const TrajectoryPlanningApiFactory: (configuration?: Configuration, base
|
|
|
12352
12543
|
* @throws {RequiredError}
|
|
12353
12544
|
*/
|
|
12354
12545
|
mergeTrajectories(cell: string, mergeTrajectoriesRequest: MergeTrajectoriesRequest, options?: RawAxiosRequestConfig): AxiosPromise<MergeTrajectoriesResponse>;
|
|
12546
|
+
/**
|
|
12547
|
+
* **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Optimizes an existing collision-free motion command sequence with respect to time. The optimizer shifts waypoints in joint space to reduce the total trajectory duration, while preserving each command\'s type (a line stays a line, a circle stays a circle), the exact end pose of the trajectory, and collision-free execution. **Prerequisites:** The motion commands must already be collision-free; this endpoint does not repair colliding paths. Use the following workflow to plan and execute an optimized trajectory: 1. Plan a collision-free path, e.g. using the [planCollisionFree](#/operations/planCollisionFree) endpoint. 2. Optimize the motion commands using this endpoint. 3. Either: - Use the optimized motion commands from the response to re-plan using the [planTrajectory](#/operations/planTrajectory) endpoint. - Use the trajectory from the plan result. 4. Optional: Load the trajectory into the cache using the [addTrajectory](#/operations/addTrajectory) endpoint. 5. Execute the trajectory using the [executeTrajectory](#/operations/executeTrajectory) endpoint. If the trajectory is not executable, the response will contain the joint trajectory up until the error, e.g., all samples until a collision occurs.
|
|
12548
|
+
* @summary Optimize Motion Commands
|
|
12549
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
12550
|
+
* @param {OptimizeMotionCommandsRequest} optimizeMotionCommandsRequest
|
|
12551
|
+
* @param {*} [options] Override http request option.
|
|
12552
|
+
* @throws {RequiredError}
|
|
12553
|
+
*/
|
|
12554
|
+
optimizeMotionCommands(cell: string, optimizeMotionCommandsRequest: OptimizeMotionCommandsRequest, options?: RawAxiosRequestConfig): AxiosPromise<OptimizeMotionCommandsResponse>;
|
|
12355
12555
|
/**
|
|
12356
12556
|
* **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Plans a collision-free trajectory for a single motion group using point-to-point (PTP) motions. This endpoint is specifically designed for collision-free path planning algorithms that find a trajectory from a start joint position to a target position while avoiding obstacles. Use the following workflow to execute a planned collision-free trajectory: 1. Plan a collision-free trajectory. 2. Optional: Load the planned trajectory into the cache using the [addTrajectory](#/operations/addTrajectory) endpoint. 3. Execute the (cached) trajectory using the [executeTrajectory](#/operations/executeTrajectory) endpoint. If the trajectory planning fails due to collision or algorithm constraints, the response will contain error information about the failure.
|
|
12357
12557
|
* @summary Plan Collision-Free Trajectory
|
|
@@ -12384,6 +12584,15 @@ declare const TrajectoryPlanningApiFactory: (configuration?: Configuration, base
|
|
|
12384
12584
|
* TrajectoryPlanningApi - object-oriented interface
|
|
12385
12585
|
*/
|
|
12386
12586
|
declare class TrajectoryPlanningApi extends BaseAPI {
|
|
12587
|
+
/**
|
|
12588
|
+
* **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.
|
|
12589
|
+
* @summary Configure Rerun Logging
|
|
12590
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
12591
|
+
* @param {RerunLoggingConfigurationRequest} rerunLoggingConfigurationRequest
|
|
12592
|
+
* @param {*} [options] Override http request option.
|
|
12593
|
+
* @throws {RequiredError}
|
|
12594
|
+
*/
|
|
12595
|
+
configureRerunLogging(cell: string, rerunLoggingConfigurationRequest: RerunLoggingConfigurationRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<RerunLoggingConfigurationResponse, any, {}>>;
|
|
12387
12596
|
/**
|
|
12388
12597
|
* **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.
|
|
12389
12598
|
* @summary Merge Trajectories
|
|
@@ -12393,6 +12602,15 @@ declare class TrajectoryPlanningApi extends BaseAPI {
|
|
|
12393
12602
|
* @throws {RequiredError}
|
|
12394
12603
|
*/
|
|
12395
12604
|
mergeTrajectories(cell: string, mergeTrajectoriesRequest: MergeTrajectoriesRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MergeTrajectoriesResponse, any, {}>>;
|
|
12605
|
+
/**
|
|
12606
|
+
* **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Optimizes an existing collision-free motion command sequence with respect to time. The optimizer shifts waypoints in joint space to reduce the total trajectory duration, while preserving each command\'s type (a line stays a line, a circle stays a circle), the exact end pose of the trajectory, and collision-free execution. **Prerequisites:** The motion commands must already be collision-free; this endpoint does not repair colliding paths. Use the following workflow to plan and execute an optimized trajectory: 1. Plan a collision-free path, e.g. using the [planCollisionFree](#/operations/planCollisionFree) endpoint. 2. Optimize the motion commands using this endpoint. 3. Either: - Use the optimized motion commands from the response to re-plan using the [planTrajectory](#/operations/planTrajectory) endpoint. - Use the trajectory from the plan result. 4. Optional: Load the trajectory into the cache using the [addTrajectory](#/operations/addTrajectory) endpoint. 5. Execute the trajectory using the [executeTrajectory](#/operations/executeTrajectory) endpoint. If the trajectory is not executable, the response will contain the joint trajectory up until the error, e.g., all samples until a collision occurs.
|
|
12607
|
+
* @summary Optimize Motion Commands
|
|
12608
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
12609
|
+
* @param {OptimizeMotionCommandsRequest} optimizeMotionCommandsRequest
|
|
12610
|
+
* @param {*} [options] Override http request option.
|
|
12611
|
+
* @throws {RequiredError}
|
|
12612
|
+
*/
|
|
12613
|
+
optimizeMotionCommands(cell: string, optimizeMotionCommandsRequest: OptimizeMotionCommandsRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<OptimizeMotionCommandsResponse, any, {}>>;
|
|
12396
12614
|
/**
|
|
12397
12615
|
* **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Plans a collision-free trajectory for a single motion group using point-to-point (PTP) motions. This endpoint is specifically designed for collision-free path planning algorithms that find a trajectory from a start joint position to a target position while avoiding obstacles. Use the following workflow to execute a planned collision-free trajectory: 1. Plan a collision-free trajectory. 2. Optional: Load the planned trajectory into the cache using the [addTrajectory](#/operations/addTrajectory) endpoint. 3. Execute the (cached) trajectory using the [executeTrajectory](#/operations/executeTrajectory) endpoint. If the trajectory planning fails due to collision or algorithm constraints, the response will contain error information about the failure.
|
|
12398
12616
|
* @summary Plan Collision-Free Trajectory
|
|
@@ -13622,4 +13840,4 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
|
|
|
13622
13840
|
setIOValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
|
|
13623
13841
|
}
|
|
13624
13842
|
//#endregion
|
|
13625
|
-
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, 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, 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, ValidationErrorLocInner, 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 };
|
|
13843
|
+
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, CoordinateSystemData, CopyMotionGroupModelRequest, CreateDatasetRequest, CubicSplineParameter, CubicSplineViaPoint, CycleTime, Cylinder, CylinderShapeTypeEnum, DHParameter, Dataset, DatasetFrame, 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, Frame, 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, OptimizeMotionCommandsParameter, OptimizeMotionCommandsRequest, OptimizeMotionCommandsResponse, OptimizeMotionCommandsStatistics, OptimizeMotionCommandsStatisticsTerminationReasonEnum, 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, 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 };
|