@wandelbots/nova-api 26.7.0-dev.6 → 26.7.0-dev.60
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 +570 -314
- package/dist/v2/index.d.ts +570 -314
- package/dist/v2/index.js +666 -411
- package/package.json +1 -1
package/dist/v2/index.d.cts
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;
|
|
@@ -365,9 +365,9 @@ type Behavior = typeof Behavior[keyof typeof Behavior];
|
|
|
365
365
|
* Specifies baseline blending behavior for a motion command.
|
|
366
366
|
*/
|
|
367
367
|
type Blending = {
|
|
368
|
-
|
|
368
|
+
blending_name: 'BlendingAuto';
|
|
369
369
|
} & BlendingAuto | {
|
|
370
|
-
|
|
370
|
+
blending_name: 'BlendingPosition';
|
|
371
371
|
} & BlendingPosition;
|
|
372
372
|
interface BlendingAuto {
|
|
373
373
|
/**
|
|
@@ -528,6 +528,10 @@ interface BusIODescription {
|
|
|
528
528
|
interface BusIOModbusClient {
|
|
529
529
|
'bus_type': BusIOModbusClientBusTypeEnum;
|
|
530
530
|
'network': BusIOModbusTCPClient;
|
|
531
|
+
/**
|
|
532
|
+
* Direct network access to a physical port for this bus I/O service. When set, the service is assigned a dedicated DRA-managed network interface instead of using the node\'s shared network. The addresses are assigned to the interface so it can route to the target device\'s segment.
|
|
533
|
+
*/
|
|
534
|
+
'network_interface'?: BusIOsNetworkInterfaceWithAddresses;
|
|
531
535
|
}
|
|
532
536
|
declare const BusIOModbusClientBusTypeEnum: {
|
|
533
537
|
readonly ModbusClient: "modbus_client";
|
|
@@ -559,6 +563,10 @@ interface BusIOModbusServer {
|
|
|
559
563
|
* Size of the Input Registers memory area.
|
|
560
564
|
*/
|
|
561
565
|
'input_registers_size': number;
|
|
566
|
+
/**
|
|
567
|
+
* Direct network access to a physical port for this bus I/O service. When set, the service is assigned a dedicated DRA-managed network interface instead of using the node\'s shared network. The server binds to the given addresses, which are therefore required here.
|
|
568
|
+
*/
|
|
569
|
+
'network_interface'?: BusIOsNetworkInterfaceWithAddresses;
|
|
562
570
|
}
|
|
563
571
|
declare const BusIOModbusServerBusTypeEnum: {
|
|
564
572
|
readonly ModbusServer: "modbus_server";
|
|
@@ -625,6 +633,10 @@ interface BusIOProfinet {
|
|
|
625
633
|
* @deprecated
|
|
626
634
|
*/
|
|
627
635
|
'default_route'?: BusIOProfinetDefaultRoute;
|
|
636
|
+
/**
|
|
637
|
+
* Direct network access to a physical port for this bus I/O service. When set, the service is assigned a dedicated DRA-managed network interface instead of using the node\'s shared network. Profinet configures its own IP via `network_config`, so addresses are not required here.
|
|
638
|
+
*/
|
|
639
|
+
'network_interface'?: BusIOsNetworkInterface;
|
|
628
640
|
}
|
|
629
641
|
declare const BusIOProfinetBusTypeEnum: {
|
|
630
642
|
readonly Profinet: "profinet";
|
|
@@ -736,6 +748,32 @@ type BusIOType = {
|
|
|
736
748
|
} & BusIOProfinetVirtual | {
|
|
737
749
|
bus_type: 'snap7';
|
|
738
750
|
} & BusIOSnap7;
|
|
751
|
+
/**
|
|
752
|
+
* Direct network interface for the bus I/O service. When set, the service gets its own interface on the specified port to reach the bus device\'s network.
|
|
753
|
+
*/
|
|
754
|
+
interface BusIOsNetworkInterface {
|
|
755
|
+
/**
|
|
756
|
+
* Network port identifier. Either a bare port name, e.g., `enp3s0` or a node-qualified identifier, e.g., `wandelbox-abc123-enp3s0`. Use the node-qualified form on multi-node clusters to pin the interface to a specific node. Cannot be changed in-place. Delete and add the Bus I/O service again to another port.
|
|
757
|
+
*/
|
|
758
|
+
'interface': string;
|
|
759
|
+
/**
|
|
760
|
+
* IPv4 addresses to assign to the interface, in address/prefix format, e.g., `192.168.1.10/24`.
|
|
761
|
+
*/
|
|
762
|
+
'addresses'?: Array<string>;
|
|
763
|
+
}
|
|
764
|
+
/**
|
|
765
|
+
* BusIOsNetworkInterface, but with addresses required. Used by bus I/O kinds that don\'t self-configure their IP and need it assigned via the network interface instead (e.g. Modbus TCP server, which must bind to a known IP).
|
|
766
|
+
*/
|
|
767
|
+
interface BusIOsNetworkInterfaceWithAddresses {
|
|
768
|
+
/**
|
|
769
|
+
* Network port identifier. Either a bare port name, e.g., `enp3s0` or a node-qualified identifier, e.g., `wandelbox-abc123-enp3s0`. Use the node-qualified form on multi-node clusters to pin the interface to a specific node. Cannot be changed in-place. Delete and add the Bus I/O service again to another port.
|
|
770
|
+
*/
|
|
771
|
+
'interface': string;
|
|
772
|
+
/**
|
|
773
|
+
* IPv4 addresses to assign to the interface, in address/prefix format, e.g., `192.168.1.10/24`.
|
|
774
|
+
*/
|
|
775
|
+
'addresses'?: Array<string>;
|
|
776
|
+
}
|
|
739
777
|
interface BusIOsState {
|
|
740
778
|
'state': BusIOsStateEnum;
|
|
741
779
|
/**
|
|
@@ -965,7 +1003,7 @@ interface CloudConnectionErrorUnexpectedResponseDetails {
|
|
|
965
1003
|
interface CloudConnectionErrorUnexpectedResponseDetailsCloudResponse {
|
|
966
1004
|
'status': number;
|
|
967
1005
|
'headers': {
|
|
968
|
-
[key: string]: any;
|
|
1006
|
+
[key: string]: any | null;
|
|
969
1007
|
};
|
|
970
1008
|
'body': string;
|
|
971
1009
|
}
|
|
@@ -1130,13 +1168,13 @@ type CollisionErrorKindEnum = typeof CollisionErrorKindEnum[keyof typeof Collisi
|
|
|
1130
1168
|
type CollisionFreeAlgorithm = MidpointInsertionAlgorithm | RRTConnectAlgorithm;
|
|
1131
1169
|
interface CollisionMotionGroup {
|
|
1132
1170
|
/**
|
|
1133
|
-
*
|
|
1171
|
+
* 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
1172
|
*/
|
|
1135
1173
|
'link_chain'?: Array<{
|
|
1136
1174
|
[key: string]: Collider;
|
|
1137
1175
|
}>;
|
|
1138
1176
|
/**
|
|
1139
|
-
*
|
|
1177
|
+
* Shape of the tool to validate against colliders.
|
|
1140
1178
|
*/
|
|
1141
1179
|
'tool'?: {
|
|
1142
1180
|
[key: string]: Collider;
|
|
@@ -1148,19 +1186,19 @@ interface CollisionMotionGroup {
|
|
|
1148
1186
|
}
|
|
1149
1187
|
interface CollisionSetup {
|
|
1150
1188
|
/**
|
|
1151
|
-
*
|
|
1189
|
+
* Colliders are checked against links and tool.
|
|
1152
1190
|
*/
|
|
1153
1191
|
'colliders'?: {
|
|
1154
1192
|
[key: string]: Collider;
|
|
1155
1193
|
};
|
|
1156
1194
|
/**
|
|
1157
|
-
*
|
|
1195
|
+
* 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
1196
|
*/
|
|
1159
1197
|
'link_chain'?: Array<{
|
|
1160
1198
|
[key: string]: Collider;
|
|
1161
1199
|
}>;
|
|
1162
1200
|
/**
|
|
1163
|
-
*
|
|
1201
|
+
* Shape of the tool to validate against colliders.
|
|
1164
1202
|
*/
|
|
1165
1203
|
'tool'?: {
|
|
1166
1204
|
[key: string]: Collider;
|
|
@@ -1179,7 +1217,7 @@ interface CollisionSetupValue {
|
|
|
1179
1217
|
*/
|
|
1180
1218
|
'source': CollisionSetupValueSourceEnum;
|
|
1181
1219
|
/**
|
|
1182
|
-
*
|
|
1220
|
+
* Colliders checked against links and tool. Each value is either an inline Collider or a store key.
|
|
1183
1221
|
*/
|
|
1184
1222
|
'colliders'?: {
|
|
1185
1223
|
[key: string]: ColliderValueOrKey;
|
|
@@ -1216,7 +1254,7 @@ type CollisionSetupValueOrKey = {
|
|
|
1216
1254
|
*/
|
|
1217
1255
|
type Command = ExplicitPathMotionCommand | GeneratedPathMotionCommand | MarkerCommand | PauseOnIOCommand | SetIOCommand | WaitForIOCommand | WaitForTimeCommand;
|
|
1218
1256
|
/**
|
|
1219
|
-
* Defines an ordered, persistable command routine that belongs to a
|
|
1257
|
+
* Defines an ordered, persistable command routine that belongs to a dataset.
|
|
1220
1258
|
*/
|
|
1221
1259
|
interface CommandRoutine {
|
|
1222
1260
|
/**
|
|
@@ -1224,7 +1262,7 @@ interface CommandRoutine {
|
|
|
1224
1262
|
*/
|
|
1225
1263
|
'command_routine': string;
|
|
1226
1264
|
/**
|
|
1227
|
-
*
|
|
1265
|
+
* Specifies the owning dataset identifier. It is absent while the routine is not persisted in a dataset.
|
|
1228
1266
|
*/
|
|
1229
1267
|
'dataset'?: string;
|
|
1230
1268
|
/**
|
|
@@ -1239,11 +1277,17 @@ interface CommandRoutine {
|
|
|
1239
1277
|
* References the motion group that executes this routine. It is absent when no motion group context exists.
|
|
1240
1278
|
*/
|
|
1241
1279
|
'motion_group'?: MotionGroupReference;
|
|
1280
|
+
/**
|
|
1281
|
+
* Specifies the baseline motion group setup or declares an I/O-only routine when set to `null`.
|
|
1282
|
+
*/
|
|
1242
1283
|
'motion_group_setup': MotionGroupSetup | null;
|
|
1243
1284
|
/**
|
|
1244
1285
|
* Specifies the routine-level tool-center-point identifier. It is absent when no motion group context exists.
|
|
1245
1286
|
*/
|
|
1246
1287
|
'tcp'?: string;
|
|
1288
|
+
/**
|
|
1289
|
+
* Specifies the starting joints that a motion routine requires. It is absent when no motion group context exists.
|
|
1290
|
+
*/
|
|
1247
1291
|
'start_joint_position'?: Array<number>;
|
|
1248
1292
|
'default_motion_settings'?: MotionSettings;
|
|
1249
1293
|
/**
|
|
@@ -1341,15 +1385,15 @@ interface ConfigurationResource {
|
|
|
1341
1385
|
'children'?: Array<ConfigurationResource>;
|
|
1342
1386
|
}
|
|
1343
1387
|
/**
|
|
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
|
|
1388
|
+
* 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
1389
|
*/
|
|
1346
1390
|
interface ConfiguredPose {
|
|
1347
1391
|
'pose': Pose;
|
|
1348
1392
|
'kinematic_configuration'?: KinematicConfiguration;
|
|
1349
1393
|
/**
|
|
1350
|
-
*
|
|
1394
|
+
* Optional identifier of the frame the pose is expressed in. If this is null or omitted, the pose is referenced in `world`.
|
|
1351
1395
|
*/
|
|
1352
|
-
'
|
|
1396
|
+
'frame'?: string;
|
|
1353
1397
|
}
|
|
1354
1398
|
interface ConfiguredPoseInverse422Response {
|
|
1355
1399
|
'detail'?: Array<ValidationError>;
|
|
@@ -1363,6 +1407,9 @@ interface ConfiguredPoseInverseRequest {
|
|
|
1363
1407
|
* Identifies a single motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported types.
|
|
1364
1408
|
*/
|
|
1365
1409
|
'motion_group_model': string;
|
|
1410
|
+
/**
|
|
1411
|
+
* List of TCP poses for which the inverse solutions are computed.
|
|
1412
|
+
*/
|
|
1366
1413
|
'tcp_poses': Array<ConfiguredPose>;
|
|
1367
1414
|
'tcp_offset'?: Pose;
|
|
1368
1415
|
/**
|
|
@@ -1437,7 +1484,7 @@ interface ContainerResources {
|
|
|
1437
1484
|
interface ContainerStorage {
|
|
1438
1485
|
'mount_path': string;
|
|
1439
1486
|
/**
|
|
1440
|
-
* The amount of
|
|
1487
|
+
* The amount of local storage available for the application. **NOTE:** The capacity can NEVER be reduced!
|
|
1441
1488
|
*/
|
|
1442
1489
|
'capacity': string;
|
|
1443
1490
|
}
|
|
@@ -1519,24 +1566,6 @@ interface CoordinateSystem {
|
|
|
1519
1566
|
*/
|
|
1520
1567
|
'coordinate_system': string;
|
|
1521
1568
|
}
|
|
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
1569
|
interface CoordinateSystemData {
|
|
1541
1570
|
/**
|
|
1542
1571
|
* Human readable name of this coordinate system.
|
|
@@ -1566,7 +1595,7 @@ interface CopyMotionGroupModelRequest {
|
|
|
1566
1595
|
'name': string;
|
|
1567
1596
|
}
|
|
1568
1597
|
/**
|
|
1569
|
-
* Creates a new
|
|
1598
|
+
* Creates a new dataset together with its poses and command routines in a single request.
|
|
1570
1599
|
*/
|
|
1571
1600
|
interface CreateDatasetRequest {
|
|
1572
1601
|
/**
|
|
@@ -1586,9 +1615,9 @@ interface CreateDatasetRequest {
|
|
|
1586
1615
|
*/
|
|
1587
1616
|
'poses'?: Array<DatasetPose>;
|
|
1588
1617
|
/**
|
|
1589
|
-
* Contains the
|
|
1618
|
+
* Contains the frames that are created together with the dataset. Server-managed identifiers are assigned on creation.
|
|
1590
1619
|
*/
|
|
1591
|
-
'
|
|
1620
|
+
'frames'?: Array<DatasetFrame>;
|
|
1592
1621
|
/**
|
|
1593
1622
|
* Contains the command routines that are created together with the dataset. Server-managed identifiers are assigned on creation.
|
|
1594
1623
|
*/
|
|
@@ -1691,21 +1720,21 @@ interface Dataset {
|
|
|
1691
1720
|
'updated_at': string;
|
|
1692
1721
|
}
|
|
1693
1722
|
/**
|
|
1694
|
-
* A dataset
|
|
1723
|
+
* 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
1724
|
*/
|
|
1696
|
-
interface
|
|
1725
|
+
interface DatasetFrame {
|
|
1697
1726
|
/**
|
|
1698
|
-
* Unique identifier of a
|
|
1727
|
+
* Unique identifier of a frame.
|
|
1699
1728
|
*/
|
|
1700
|
-
'
|
|
1729
|
+
'frame': string;
|
|
1701
1730
|
/**
|
|
1702
|
-
* Human-readable name for the
|
|
1731
|
+
* Human-readable name for the frame that is shown in the user interface.
|
|
1703
1732
|
*/
|
|
1704
1733
|
'name'?: string;
|
|
1705
1734
|
/**
|
|
1706
|
-
*
|
|
1735
|
+
* 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
1736
|
*/
|
|
1708
|
-
'
|
|
1737
|
+
'reference_frame'?: string;
|
|
1709
1738
|
'pose': Pose;
|
|
1710
1739
|
/**
|
|
1711
1740
|
* Unique identifier of the dataset. Must start with a letter and may only contain letters, digits, and hyphens.
|
|
@@ -1719,9 +1748,9 @@ interface DatasetPose {
|
|
|
1719
1748
|
'pose': Pose;
|
|
1720
1749
|
'kinematic_configuration'?: KinematicConfiguration;
|
|
1721
1750
|
/**
|
|
1722
|
-
*
|
|
1751
|
+
* Optional identifier of the frame the pose is expressed in. If this is null or omitted, the pose is referenced in `world`.
|
|
1723
1752
|
*/
|
|
1724
|
-
'
|
|
1753
|
+
'frame'?: string;
|
|
1725
1754
|
/**
|
|
1726
1755
|
* Unique identifier of the pose within the dataset. Must start with a letter and may only contain letters, digits, and hyphens.
|
|
1727
1756
|
*/
|
|
@@ -1806,11 +1835,11 @@ type Direction = typeof Direction[keyof typeof Direction];
|
|
|
1806
1835
|
*/
|
|
1807
1836
|
interface DirectionConstraint {
|
|
1808
1837
|
/**
|
|
1809
|
-
*
|
|
1838
|
+
* The direction constraint vector in world frame.
|
|
1810
1839
|
*/
|
|
1811
1840
|
'world': Array<number>;
|
|
1812
1841
|
/**
|
|
1813
|
-
*
|
|
1842
|
+
* The direction constraint vector in the TCP frame.
|
|
1814
1843
|
*/
|
|
1815
1844
|
'tcp': Array<number>;
|
|
1816
1845
|
/**
|
|
@@ -1868,6 +1897,9 @@ interface DynamicModel {
|
|
|
1868
1897
|
* A reference joint position (start or target) violates the direction constraint.
|
|
1869
1898
|
*/
|
|
1870
1899
|
interface ErrorDirectionConstraintNotMet {
|
|
1900
|
+
/**
|
|
1901
|
+
* The joint position violating the direction constraint.
|
|
1902
|
+
*/
|
|
1871
1903
|
'joint_position'?: Array<number>;
|
|
1872
1904
|
'error_feedback_name': ErrorDirectionConstraintNotMetErrorFeedbackNameEnum;
|
|
1873
1905
|
}
|
|
@@ -1880,7 +1912,7 @@ type ErrorDirectionConstraintNotMetErrorFeedbackNameEnum = typeof ErrorDirection
|
|
|
1880
1912
|
*/
|
|
1881
1913
|
interface ErrorDirectionConstraintNotNormalized {
|
|
1882
1914
|
/**
|
|
1883
|
-
*
|
|
1915
|
+
* The direction constraint that is not normalized.
|
|
1884
1916
|
*/
|
|
1885
1917
|
'direction_constraint'?: Array<number>;
|
|
1886
1918
|
'error_feedback_name': ErrorDirectionConstraintNotNormalizedErrorFeedbackNameEnum;
|
|
@@ -1915,6 +1947,9 @@ interface ErrorJointLimitExceeded {
|
|
|
1915
1947
|
* Index of the joint exceeding its limits (0-based).
|
|
1916
1948
|
*/
|
|
1917
1949
|
'joint_index'?: number;
|
|
1950
|
+
/**
|
|
1951
|
+
* The joint position violating the limits.
|
|
1952
|
+
*/
|
|
1918
1953
|
'joint_position'?: Array<number>;
|
|
1919
1954
|
'error_feedback_name': ErrorJointLimitExceededErrorFeedbackNameEnum;
|
|
1920
1955
|
}
|
|
@@ -1927,6 +1962,9 @@ type ErrorJointLimitExceededErrorFeedbackNameEnum = typeof ErrorJointLimitExceed
|
|
|
1927
1962
|
*/
|
|
1928
1963
|
interface ErrorJointPositionCollision {
|
|
1929
1964
|
'collisions'?: Array<Collision>;
|
|
1965
|
+
/**
|
|
1966
|
+
* The joint position that collides.
|
|
1967
|
+
*/
|
|
1930
1968
|
'joint_position'?: Array<number>;
|
|
1931
1969
|
'error_feedback_name': ErrorJointPositionCollisionErrorFeedbackNameEnum;
|
|
1932
1970
|
}
|
|
@@ -2177,7 +2215,7 @@ type FeedbackDirectionConstraintNotMetErrorFeedbackNameEnum = typeof FeedbackDir
|
|
|
2177
2215
|
*/
|
|
2178
2216
|
interface FeedbackDirectionConstraintNotNormalized {
|
|
2179
2217
|
/**
|
|
2180
|
-
*
|
|
2218
|
+
* The direction constraint that is not normalized.
|
|
2181
2219
|
*/
|
|
2182
2220
|
'direction_constraint'?: Array<number>;
|
|
2183
2221
|
'error_feedback_name': FeedbackDirectionConstraintNotNormalizedErrorFeedbackNameEnum;
|
|
@@ -2306,11 +2344,11 @@ interface FlangePayload {
|
|
|
2306
2344
|
*/
|
|
2307
2345
|
'mass': number;
|
|
2308
2346
|
/**
|
|
2309
|
-
*
|
|
2347
|
+
* Center of mass of payload as a three-dimensional position vector [x, y, z] in [mm].
|
|
2310
2348
|
*/
|
|
2311
2349
|
'center_of_mass'?: Array<number>;
|
|
2312
2350
|
/**
|
|
2313
|
-
*
|
|
2351
|
+
* Principal moments of inertia of payload as three-dimensional vector [I_xx, I_yy, I_zz] in [kg·m²].
|
|
2314
2352
|
*/
|
|
2315
2353
|
'moment_of_inertia'?: Array<number>;
|
|
2316
2354
|
}
|
|
@@ -2350,7 +2388,7 @@ interface ForwardKinematicsResponse {
|
|
|
2350
2388
|
'tcp_poses': Array<Pose>;
|
|
2351
2389
|
}
|
|
2352
2390
|
interface ForwardKinematicsValidationError {
|
|
2353
|
-
'loc': Array<
|
|
2391
|
+
'loc': Array<Location1Inner>;
|
|
2354
2392
|
'msg': string;
|
|
2355
2393
|
'type': string;
|
|
2356
2394
|
'input': {
|
|
@@ -2358,6 +2396,24 @@ interface ForwardKinematicsValidationError {
|
|
|
2358
2396
|
};
|
|
2359
2397
|
'data'?: ErrorInvalidJointCount;
|
|
2360
2398
|
}
|
|
2399
|
+
/**
|
|
2400
|
+
* A frame defines a reference in 3D space. Its pose is expressed relative to its parent frame, which allows building a hierarchy of frames.
|
|
2401
|
+
*/
|
|
2402
|
+
interface Frame {
|
|
2403
|
+
/**
|
|
2404
|
+
* Unique identifier of a frame.
|
|
2405
|
+
*/
|
|
2406
|
+
'frame': string;
|
|
2407
|
+
/**
|
|
2408
|
+
* Human-readable name for the frame that is shown in the user interface.
|
|
2409
|
+
*/
|
|
2410
|
+
'name'?: string;
|
|
2411
|
+
/**
|
|
2412
|
+
* 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`.
|
|
2413
|
+
*/
|
|
2414
|
+
'reference_frame'?: string;
|
|
2415
|
+
'pose': Pose;
|
|
2416
|
+
}
|
|
2361
2417
|
/**
|
|
2362
2418
|
* Defines a motion command whose path the planner generates from a generator specification.
|
|
2363
2419
|
*/
|
|
@@ -2385,7 +2441,7 @@ declare const GeneratedPathMotionCommandTypeEnum: {
|
|
|
2385
2441
|
};
|
|
2386
2442
|
type GeneratedPathMotionCommandTypeEnum = typeof GeneratedPathMotionCommandTypeEnum[keyof typeof GeneratedPathMotionCommandTypeEnum];
|
|
2387
2443
|
/**
|
|
2388
|
-
* Returns a
|
|
2444
|
+
* Returns a dataset resolved together with its persisted poses and command routines.
|
|
2389
2445
|
*/
|
|
2390
2446
|
interface GetDatasetResponse {
|
|
2391
2447
|
/**
|
|
@@ -2417,9 +2473,9 @@ interface GetDatasetResponse {
|
|
|
2417
2473
|
*/
|
|
2418
2474
|
'poses': Array<DatasetPose>;
|
|
2419
2475
|
/**
|
|
2420
|
-
* Contains the
|
|
2476
|
+
* Contains the frames that belong to this dataset.
|
|
2421
2477
|
*/
|
|
2422
|
-
'
|
|
2478
|
+
'frames': Array<DatasetFrame>;
|
|
2423
2479
|
/**
|
|
2424
2480
|
* Contains the command routines that belong to this dataset.
|
|
2425
2481
|
*/
|
|
@@ -2445,7 +2501,7 @@ interface GetKinematicConfigurationResponse {
|
|
|
2445
2501
|
'kinematic_configurations': Array<KinematicConfiguration>;
|
|
2446
2502
|
}
|
|
2447
2503
|
interface GetKinematicConfigurationValidationError {
|
|
2448
|
-
'loc': Array<
|
|
2504
|
+
'loc': Array<Location1Inner>;
|
|
2449
2505
|
'msg': string;
|
|
2450
2506
|
'type': string;
|
|
2451
2507
|
'input': {
|
|
@@ -2801,7 +2857,7 @@ interface InitializeMovementRequest {
|
|
|
2801
2857
|
'message_type': InitializeMovementRequestMessageTypeEnum;
|
|
2802
2858
|
'trajectory': InitializeMovementRequestTrajectory;
|
|
2803
2859
|
/**
|
|
2804
|
-
*
|
|
2860
|
+
* 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
2861
|
*/
|
|
2806
2862
|
'initial_location'?: number;
|
|
2807
2863
|
/**
|
|
@@ -2847,9 +2903,9 @@ interface InlinePoseReference {
|
|
|
2847
2903
|
'pose': Pose;
|
|
2848
2904
|
'kinematic_configuration'?: KinematicConfiguration;
|
|
2849
2905
|
/**
|
|
2850
|
-
*
|
|
2906
|
+
* Optional identifier of the frame the pose is expressed in. If this is null or omitted, the pose is referenced in `world`.
|
|
2851
2907
|
*/
|
|
2852
|
-
'
|
|
2908
|
+
'frame'?: string;
|
|
2853
2909
|
/**
|
|
2854
2910
|
* Identifies the inline pose-reference variant.
|
|
2855
2911
|
*/
|
|
@@ -2933,13 +2989,16 @@ interface InverseKinematicsRequest {
|
|
|
2933
2989
|
'collision_setups'?: {
|
|
2934
2990
|
[key: string]: CollisionSetup;
|
|
2935
2991
|
};
|
|
2992
|
+
/**
|
|
2993
|
+
* 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.
|
|
2994
|
+
*/
|
|
2936
2995
|
'reference_joint_position'?: Array<number>;
|
|
2937
2996
|
}
|
|
2938
2997
|
interface InverseKinematicsResponse {
|
|
2939
2998
|
'joints': Array<Array<Array<number>>>;
|
|
2940
2999
|
}
|
|
2941
3000
|
interface InverseKinematicsValidationError {
|
|
2942
|
-
'loc': Array<
|
|
3001
|
+
'loc': Array<Location1Inner>;
|
|
2943
3002
|
'msg': string;
|
|
2944
3003
|
'type': string;
|
|
2945
3004
|
'input': {
|
|
@@ -3077,7 +3136,13 @@ interface JointLimits {
|
|
|
3077
3136
|
'torque'?: number;
|
|
3078
3137
|
}
|
|
3079
3138
|
interface JointPTPMotion {
|
|
3139
|
+
/**
|
|
3140
|
+
* 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).
|
|
3141
|
+
*/
|
|
3080
3142
|
'start_joint_position': Array<number>;
|
|
3143
|
+
/**
|
|
3144
|
+
* 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).
|
|
3145
|
+
*/
|
|
3081
3146
|
'target_joint_position': Array<number>;
|
|
3082
3147
|
'limits_override'?: LimitsOverride;
|
|
3083
3148
|
}
|
|
@@ -3126,7 +3191,7 @@ interface JointVelocityRequest {
|
|
|
3126
3191
|
*/
|
|
3127
3192
|
'message_type': JointVelocityRequestMessageTypeEnum;
|
|
3128
3193
|
/**
|
|
3129
|
-
*
|
|
3194
|
+
* in [rad/s]
|
|
3130
3195
|
*/
|
|
3131
3196
|
'velocity': Array<number>;
|
|
3132
3197
|
}
|
|
@@ -3157,7 +3222,7 @@ interface JointWaypoint {
|
|
|
3157
3222
|
*/
|
|
3158
3223
|
'kind': JointWaypointKindEnum;
|
|
3159
3224
|
/**
|
|
3160
|
-
*
|
|
3225
|
+
* Joint positions for this waypoint.
|
|
3161
3226
|
*/
|
|
3162
3227
|
'joints': Array<number>;
|
|
3163
3228
|
}
|
|
@@ -3416,7 +3481,7 @@ interface LinkChainValue {
|
|
|
3416
3481
|
*/
|
|
3417
3482
|
'source': LinkChainValueSourceEnum;
|
|
3418
3483
|
/**
|
|
3419
|
-
*
|
|
3484
|
+
* The inline link chain definition.
|
|
3420
3485
|
*/
|
|
3421
3486
|
'link_chain': Array<{
|
|
3422
3487
|
[key: string]: Collider;
|
|
@@ -3464,6 +3529,10 @@ declare const LocalPoseReferenceTypeEnum: {
|
|
|
3464
3529
|
readonly LocalPose: "local_pose";
|
|
3465
3530
|
};
|
|
3466
3531
|
type LocalPoseReferenceTypeEnum = typeof LocalPoseReferenceTypeEnum[keyof typeof LocalPoseReferenceTypeEnum];
|
|
3532
|
+
/**
|
|
3533
|
+
* @type Location1Inner
|
|
3534
|
+
*/
|
|
3535
|
+
type Location1Inner = number | string;
|
|
3467
3536
|
declare const Manufacturer: {
|
|
3468
3537
|
readonly Abb: "abb";
|
|
3469
3538
|
readonly Bostondynamics: "bostondynamics";
|
|
@@ -3562,14 +3631,14 @@ interface MergeTrajectoriesSegment {
|
|
|
3562
3631
|
*/
|
|
3563
3632
|
'blending'?: BlendingPosition;
|
|
3564
3633
|
/**
|
|
3565
|
-
* Collision
|
|
3634
|
+
* 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
3635
|
*/
|
|
3567
3636
|
'collision_setups'?: {
|
|
3568
3637
|
[key: string]: CollisionSetup;
|
|
3569
3638
|
};
|
|
3570
3639
|
}
|
|
3571
3640
|
interface MergeTrajectoriesValidationError {
|
|
3572
|
-
'loc': Array<
|
|
3641
|
+
'loc': Array<Location1Inner>;
|
|
3573
3642
|
'msg': string;
|
|
3574
3643
|
'type': string;
|
|
3575
3644
|
'input': {
|
|
@@ -3736,7 +3805,7 @@ interface MotionGroupDescription {
|
|
|
3736
3805
|
[key: string]: TcpOffset;
|
|
3737
3806
|
};
|
|
3738
3807
|
/**
|
|
3739
|
-
*
|
|
3808
|
+
* SafetyZones are areas which cannot be entered or where certain limits apply. SafetyZones are defined in the world coordinate system.
|
|
3740
3809
|
*/
|
|
3741
3810
|
'safety_zones'?: {
|
|
3742
3811
|
[key: string]: Collider;
|
|
@@ -3946,7 +4015,7 @@ interface MotionGroupState {
|
|
|
3946
4015
|
*/
|
|
3947
4016
|
'controller': string;
|
|
3948
4017
|
/**
|
|
3949
|
-
*
|
|
4018
|
+
* 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
4019
|
*/
|
|
3951
4020
|
'joint_position': Array<number>;
|
|
3952
4021
|
/**
|
|
@@ -3954,11 +4023,11 @@ interface MotionGroupState {
|
|
|
3954
4023
|
*/
|
|
3955
4024
|
'joint_limit_reached': MotionGroupStateJointLimitReached;
|
|
3956
4025
|
/**
|
|
3957
|
-
*
|
|
4026
|
+
* Current joint torque of each joint in [Nm]. Is only available if the robot controller supports it, e.g., available for UR controllers.
|
|
3958
4027
|
*/
|
|
3959
4028
|
'joint_torque'?: Array<number>;
|
|
3960
4029
|
/**
|
|
3961
|
-
*
|
|
4030
|
+
* Current at TCP in [A]. Is only available if the robot controller supports it, e.g., available for UR controllers.
|
|
3962
4031
|
*/
|
|
3963
4032
|
'joint_current'?: Array<number>;
|
|
3964
4033
|
/**
|
|
@@ -4015,7 +4084,13 @@ interface MotionGroupStateJointLimitReached {
|
|
|
4015
4084
|
* Groups inheritable baseline blending and motion limit settings.
|
|
4016
4085
|
*/
|
|
4017
4086
|
interface MotionSettings {
|
|
4087
|
+
/**
|
|
4088
|
+
* Specifies blending or explicitly suppresses inherited blending when set to `null`.
|
|
4089
|
+
*/
|
|
4018
4090
|
'blending'?: Blending | null;
|
|
4091
|
+
/**
|
|
4092
|
+
* Specifies motion limit overrides or skips routine defaults when set to `null`.
|
|
4093
|
+
*/
|
|
4019
4094
|
'limits_override'?: LimitsOverride | null;
|
|
4020
4095
|
}
|
|
4021
4096
|
/**
|
|
@@ -4034,13 +4109,13 @@ declare const MovementErrorResponseKindEnum: {
|
|
|
4034
4109
|
type MovementErrorResponseKindEnum = typeof MovementErrorResponseKindEnum[keyof typeof MovementErrorResponseKindEnum];
|
|
4035
4110
|
interface MultiCollisionSetup {
|
|
4036
4111
|
/**
|
|
4037
|
-
*
|
|
4112
|
+
* Dictionary of motion group collision motion groups containing link chain and tool colliders.
|
|
4038
4113
|
*/
|
|
4039
4114
|
'collision_motion_groups_by_motion_group_key'?: {
|
|
4040
4115
|
[key: string]: CollisionMotionGroup;
|
|
4041
4116
|
};
|
|
4042
4117
|
/**
|
|
4043
|
-
*
|
|
4118
|
+
* Colliders are checked against links and tool.
|
|
4044
4119
|
*/
|
|
4045
4120
|
'colliders'?: {
|
|
4046
4121
|
[key: string]: Collider;
|
|
@@ -4068,7 +4143,7 @@ interface MultiErrorJointLimitExceeded {
|
|
|
4068
4143
|
interface MultiErrorJointPositionCollision {
|
|
4069
4144
|
'collisions'?: Array<Collision>;
|
|
4070
4145
|
/**
|
|
4071
|
-
*
|
|
4146
|
+
* The joint positions of all motion groups as the collision occurs.
|
|
4072
4147
|
*/
|
|
4073
4148
|
'joint_positions_by_motion_group_key'?: {
|
|
4074
4149
|
[key: string]: Array<number>;
|
|
@@ -4076,7 +4151,7 @@ interface MultiErrorJointPositionCollision {
|
|
|
4076
4151
|
}
|
|
4077
4152
|
interface MultiJointTrajectory {
|
|
4078
4153
|
/**
|
|
4079
|
-
*
|
|
4154
|
+
* 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
4155
|
*/
|
|
4081
4156
|
'joint_positions_by_motion_group_key': {
|
|
4082
4157
|
[key: string]: Array<Array<number>>;
|
|
@@ -4092,19 +4167,19 @@ interface MultiSearchCollisionFree422Response {
|
|
|
4092
4167
|
}
|
|
4093
4168
|
interface MultiSearchCollisionFreeRequest {
|
|
4094
4169
|
/**
|
|
4095
|
-
*
|
|
4170
|
+
* Dictionary of motion group setups.
|
|
4096
4171
|
*/
|
|
4097
4172
|
'motion_group_setups_by_motion_group_key': {
|
|
4098
4173
|
[key: string]: MotionGroupSetup;
|
|
4099
4174
|
};
|
|
4100
4175
|
/**
|
|
4101
|
-
*
|
|
4176
|
+
* Dictionary of path definitions. The keys must match the ones in `motion_group_setups_by_motion_group_key`.
|
|
4102
4177
|
*/
|
|
4103
4178
|
'path_definitions_by_motion_group_key': {
|
|
4104
4179
|
[key: string]: JointPTPMotion;
|
|
4105
4180
|
};
|
|
4106
4181
|
/**
|
|
4107
|
-
*
|
|
4182
|
+
* 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
4183
|
*/
|
|
4109
4184
|
'collision_setups'?: {
|
|
4110
4185
|
[key: string]: MultiCollisionSetup;
|
|
@@ -4123,7 +4198,7 @@ interface MultiSearchCollisionFreeResponse {
|
|
|
4123
4198
|
*/
|
|
4124
4199
|
type MultiSearchCollisionFreeResponseResponse = MultiJointTrajectory | PlanCollisionFreeFailedResponse;
|
|
4125
4200
|
interface MultiSearchCollisionFreeValidationError {
|
|
4126
|
-
'loc': Array<
|
|
4201
|
+
'loc': Array<Location1Inner>;
|
|
4127
4202
|
'msg': string;
|
|
4128
4203
|
'type': string;
|
|
4129
4204
|
'input': {
|
|
@@ -4257,6 +4332,106 @@ declare const OperationMode: {
|
|
|
4257
4332
|
readonly OperationModeRecovery: "OPERATION_MODE_RECOVERY";
|
|
4258
4333
|
};
|
|
4259
4334
|
type OperationMode = typeof OperationMode[keyof typeof OperationMode];
|
|
4335
|
+
/**
|
|
4336
|
+
* Algorithm parameters for the duration optimizer. These control how the optimization runs. All fields are optional. If omitted, server-side defaults are used.
|
|
4337
|
+
*/
|
|
4338
|
+
interface OptimizeMotionCommandsParameter {
|
|
4339
|
+
/**
|
|
4340
|
+
* Number of perturbation attempts.
|
|
4341
|
+
*/
|
|
4342
|
+
'max_iterations'?: number;
|
|
4343
|
+
/**
|
|
4344
|
+
* Initial joint-space perturbation step size in radians.
|
|
4345
|
+
*/
|
|
4346
|
+
'step_size'?: number;
|
|
4347
|
+
/**
|
|
4348
|
+
* Random seed for reproducibility.
|
|
4349
|
+
*/
|
|
4350
|
+
'seed'?: number | null;
|
|
4351
|
+
/**
|
|
4352
|
+
* Command indices excluded from perturbation.
|
|
4353
|
+
*/
|
|
4354
|
+
'frozen_command_indices'?: Array<number>;
|
|
4355
|
+
/**
|
|
4356
|
+
* Relative duration improvement threshold. Stops when periodic time checks show less than `ftol` improvement (relative to baseline) for several consecutive checks.
|
|
4357
|
+
*/
|
|
4358
|
+
'ftol'?: number;
|
|
4359
|
+
/**
|
|
4360
|
+
* Optional elapsed real-time limit in seconds for the optimization.
|
|
4361
|
+
*/
|
|
4362
|
+
'time_budget'?: number | null;
|
|
4363
|
+
}
|
|
4364
|
+
interface OptimizeMotionCommandsRequest {
|
|
4365
|
+
/**
|
|
4366
|
+
* The data to assemble the robot setup can be retrieved from [getMotionGroupDescription](#/operations/getMotionGroupDescription) endpoint.
|
|
4367
|
+
*/
|
|
4368
|
+
'motion_group_setup': MotionGroupSetup;
|
|
4369
|
+
/**
|
|
4370
|
+
* 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).
|
|
4371
|
+
*/
|
|
4372
|
+
'start_joint_position': Array<number>;
|
|
4373
|
+
/**
|
|
4374
|
+
* 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.
|
|
4375
|
+
*/
|
|
4376
|
+
'motion_commands': Array<MotionCommand>;
|
|
4377
|
+
/**
|
|
4378
|
+
* 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.
|
|
4379
|
+
*/
|
|
4380
|
+
'optimization_parameters'?: OptimizeMotionCommandsParameter;
|
|
4381
|
+
}
|
|
4382
|
+
/**
|
|
4383
|
+
* Response from motion command optimization. Contains either a successful joint trajectory or failure information.
|
|
4384
|
+
*/
|
|
4385
|
+
interface OptimizeMotionCommandsResponse {
|
|
4386
|
+
'response': PlanTrajectoryResponseResponse;
|
|
4387
|
+
/**
|
|
4388
|
+
* The optimized motion commands that produced the trajectory. Can be used to re-plan the same path using the [planTrajectory](#/operations/planTrajectory) endpoint.
|
|
4389
|
+
*/
|
|
4390
|
+
'motion_commands'?: Array<MotionCommand>;
|
|
4391
|
+
/**
|
|
4392
|
+
* Optimization metrics: - baseline durations - optimized durations - improvement percentage - iteration count - wall-clock computation time
|
|
4393
|
+
*/
|
|
4394
|
+
'statistics': OptimizeMotionCommandsStatistics;
|
|
4395
|
+
}
|
|
4396
|
+
/**
|
|
4397
|
+
* Metrics collected during a duration-optimization run.
|
|
4398
|
+
*/
|
|
4399
|
+
interface OptimizeMotionCommandsStatistics {
|
|
4400
|
+
/**
|
|
4401
|
+
* Trajectory duration before optimization in seconds.
|
|
4402
|
+
*/
|
|
4403
|
+
'baseline_duration': number;
|
|
4404
|
+
/**
|
|
4405
|
+
* Trajectory duration after optimization in seconds.
|
|
4406
|
+
*/
|
|
4407
|
+
'optimized_duration': number;
|
|
4408
|
+
/**
|
|
4409
|
+
* Relative duration improvement as a percentage. Positive means faster, e.g., 12.5 means 12.5% quicker than baseline.
|
|
4410
|
+
*/
|
|
4411
|
+
'improvement': number;
|
|
4412
|
+
/**
|
|
4413
|
+
* Number of iterations required until termination.
|
|
4414
|
+
*/
|
|
4415
|
+
'iterations': number;
|
|
4416
|
+
/**
|
|
4417
|
+
* Wall-clock time spent in the optimization in seconds.
|
|
4418
|
+
*/
|
|
4419
|
+
'computation_time': number;
|
|
4420
|
+
/**
|
|
4421
|
+
* 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.
|
|
4422
|
+
*/
|
|
4423
|
+
'termination_reason': OptimizeMotionCommandsStatisticsTerminationReasonEnum;
|
|
4424
|
+
/**
|
|
4425
|
+
* Human-readable detail string, e.g., \"ftol=0.01, 20 checks without improvement\" for `CONVERGED`.
|
|
4426
|
+
*/
|
|
4427
|
+
'termination_detail': string;
|
|
4428
|
+
}
|
|
4429
|
+
declare const OptimizeMotionCommandsStatisticsTerminationReasonEnum: {
|
|
4430
|
+
readonly MaxIterations: "MAX_ITERATIONS";
|
|
4431
|
+
readonly Converged: "CONVERGED";
|
|
4432
|
+
readonly TimeBudget: "TIME_BUDGET";
|
|
4433
|
+
};
|
|
4434
|
+
type OptimizeMotionCommandsStatisticsTerminationReasonEnum = typeof OptimizeMotionCommandsStatisticsTerminationReasonEnum[keyof typeof OptimizeMotionCommandsStatisticsTerminationReasonEnum];
|
|
4260
4435
|
/**
|
|
4261
4436
|
* 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
4437
|
*/
|
|
@@ -4631,11 +4806,11 @@ interface Payload {
|
|
|
4631
4806
|
*/
|
|
4632
4807
|
'payload': number;
|
|
4633
4808
|
/**
|
|
4634
|
-
*
|
|
4809
|
+
* Center of mass of payload as a three-dimensional position vector [x, y, z] in [mm].
|
|
4635
4810
|
*/
|
|
4636
4811
|
'center_of_mass'?: Array<number>;
|
|
4637
4812
|
/**
|
|
4638
|
-
*
|
|
4813
|
+
* Principal moments of inertia of payload as three-dimensional vector [I_xx, I_yy, I_zz] in [kg·m²].
|
|
4639
4814
|
*/
|
|
4640
4815
|
'moment_of_inertia'?: Array<number>;
|
|
4641
4816
|
}
|
|
@@ -4654,12 +4829,18 @@ interface PlanCollisionFreeRequest {
|
|
|
4654
4829
|
*/
|
|
4655
4830
|
'motion_group_setup': MotionGroupSetup;
|
|
4656
4831
|
/**
|
|
4657
|
-
*
|
|
4832
|
+
* 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
4833
|
*/
|
|
4659
4834
|
'collision_setups'?: {
|
|
4660
4835
|
[key: string]: CollisionSetupValueOrKey;
|
|
4661
4836
|
};
|
|
4837
|
+
/**
|
|
4838
|
+
* 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).
|
|
4839
|
+
*/
|
|
4662
4840
|
'start_joint_position': Array<number>;
|
|
4841
|
+
/**
|
|
4842
|
+
* 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).
|
|
4843
|
+
*/
|
|
4663
4844
|
'target': Array<number>;
|
|
4664
4845
|
/**
|
|
4665
4846
|
* 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 +4882,9 @@ interface PlanTrajectoryRequest {
|
|
|
4701
4882
|
* The data to assemble the robot setup can be retrieved from [getMotionGroupDescription](#/operations/getMotionGroupDescription) endpoint.
|
|
4702
4883
|
*/
|
|
4703
4884
|
'motion_group_setup': MotionGroupSetup;
|
|
4885
|
+
/**
|
|
4886
|
+
* 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).
|
|
4887
|
+
*/
|
|
4704
4888
|
'start_joint_position': Array<number>;
|
|
4705
4889
|
/**
|
|
4706
4890
|
* 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 +4903,7 @@ interface PlanTrajectoryResponse {
|
|
|
4719
4903
|
*/
|
|
4720
4904
|
type PlanTrajectoryResponseResponse = JointTrajectory | PlanTrajectoryFailedResponse;
|
|
4721
4905
|
interface PlanValidationError {
|
|
4722
|
-
'loc': Array<
|
|
4906
|
+
'loc': Array<Location1Inner>;
|
|
4723
4907
|
'msg': string;
|
|
4724
4908
|
'type': string;
|
|
4725
4909
|
'input': {
|
|
@@ -5081,10 +5265,10 @@ interface ProjectJointPositionDirectionConstraintResponse {
|
|
|
5081
5265
|
/**
|
|
5082
5266
|
* List of projected joint positions. If the resulting joint position is in collision or violates joint limits, the corresponding entry is null.
|
|
5083
5267
|
*/
|
|
5084
|
-
'projected_joint_positions': Array<Array
|
|
5268
|
+
'projected_joint_positions': Array<Array | null>;
|
|
5085
5269
|
}
|
|
5086
5270
|
interface ProjectJointPositionDirectionConstraintValidationError {
|
|
5087
|
-
'loc': Array<
|
|
5271
|
+
'loc': Array<Location1Inner>;
|
|
5088
5272
|
'msg': string;
|
|
5089
5273
|
'type': string;
|
|
5090
5274
|
'input': {
|
|
@@ -5190,6 +5374,30 @@ declare const ReleaseChannel: {
|
|
|
5190
5374
|
readonly Next: "next";
|
|
5191
5375
|
};
|
|
5192
5376
|
type ReleaseChannel = typeof ReleaseChannel[keyof typeof ReleaseChannel];
|
|
5377
|
+
interface RerunLoggingConfigurationRequest {
|
|
5378
|
+
/**
|
|
5379
|
+
* Whether new Rerun logging sessions should be enabled.
|
|
5380
|
+
*/
|
|
5381
|
+
'enabled': boolean;
|
|
5382
|
+
/**
|
|
5383
|
+
* 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.
|
|
5384
|
+
*/
|
|
5385
|
+
'rerun_url'?: string | null;
|
|
5386
|
+
}
|
|
5387
|
+
interface RerunLoggingConfigurationResponse {
|
|
5388
|
+
/**
|
|
5389
|
+
* Whether Rerun logging is currently enabled for new operations.
|
|
5390
|
+
*/
|
|
5391
|
+
'enabled': boolean;
|
|
5392
|
+
/**
|
|
5393
|
+
* Raw value of the `RERUN` environment variable in the service process.
|
|
5394
|
+
*/
|
|
5395
|
+
'rerun'?: string | null;
|
|
5396
|
+
/**
|
|
5397
|
+
* Current Rerun gRPC URL used by the service process, if any.
|
|
5398
|
+
*/
|
|
5399
|
+
'rerun_url'?: string | null;
|
|
5400
|
+
}
|
|
5193
5401
|
/**
|
|
5194
5402
|
* The configuration of a physical or virtual robot controller.
|
|
5195
5403
|
*/
|
|
@@ -5750,7 +5958,7 @@ interface StartMovementRequest {
|
|
|
5750
5958
|
'message_type': StartMovementRequestMessageTypeEnum;
|
|
5751
5959
|
'direction'?: Direction;
|
|
5752
5960
|
/**
|
|
5753
|
-
*
|
|
5961
|
+
* 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
5962
|
*/
|
|
5755
5963
|
'target_location'?: number;
|
|
5756
5964
|
/**
|
|
@@ -5994,7 +6202,7 @@ interface ToolValue {
|
|
|
5994
6202
|
*/
|
|
5995
6203
|
'source': ToolValueSourceEnum;
|
|
5996
6204
|
/**
|
|
5997
|
-
*
|
|
6205
|
+
* The inline tool collider definition.
|
|
5998
6206
|
*/
|
|
5999
6207
|
'tool': {
|
|
6000
6208
|
[key: string]: Collider;
|
|
@@ -6062,7 +6270,7 @@ interface TrajectoryDetails {
|
|
|
6062
6270
|
*/
|
|
6063
6271
|
'trajectory': string;
|
|
6064
6272
|
/**
|
|
6065
|
-
*
|
|
6273
|
+
* Location of current joint position commmand on the trajectory being executed.
|
|
6066
6274
|
*/
|
|
6067
6275
|
'location': number;
|
|
6068
6276
|
'state': TrajectoryDetailsState;
|
|
@@ -6254,7 +6462,7 @@ declare const UnpauseActionChunksResponseKindEnum: {
|
|
|
6254
6462
|
};
|
|
6255
6463
|
type UnpauseActionChunksResponseKindEnum = typeof UnpauseActionChunksResponseKindEnum[keyof typeof UnpauseActionChunksResponseKindEnum];
|
|
6256
6464
|
/**
|
|
6257
|
-
* Update a single cell\'s
|
|
6465
|
+
* Update a single cell\'s foundation chart version based on the indicated release channel.
|
|
6258
6466
|
*/
|
|
6259
6467
|
interface UpdateCellVersionRequest {
|
|
6260
6468
|
'channel': ReleaseChannel;
|
|
@@ -6287,7 +6495,7 @@ interface User {
|
|
|
6287
6495
|
'email': string;
|
|
6288
6496
|
}
|
|
6289
6497
|
interface ValidationError {
|
|
6290
|
-
'loc': Array<
|
|
6498
|
+
'loc': Array<Location1Inner>;
|
|
6291
6499
|
'msg': string;
|
|
6292
6500
|
'type': string;
|
|
6293
6501
|
'input': {
|
|
@@ -6302,10 +6510,6 @@ interface ValidationError2 {
|
|
|
6302
6510
|
'msg': string;
|
|
6303
6511
|
'type': string;
|
|
6304
6512
|
}
|
|
6305
|
-
/**
|
|
6306
|
-
* @type ValidationErrorLocInner
|
|
6307
|
-
*/
|
|
6308
|
-
type ValidationErrorLocInner = number | string;
|
|
6309
6513
|
/**
|
|
6310
6514
|
* 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
6515
|
*/
|
|
@@ -7681,7 +7885,7 @@ declare const CellApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
7681
7885
|
*/
|
|
7682
7886
|
updateCell: (cell: string, cell2: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7683
7887
|
/**
|
|
7684
|
-
* **Required permissions:** `can_manage_cells` - Create, update, or delete cells ___ Update the
|
|
7888
|
+
* **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
7889
|
* @summary Update Cell Version
|
|
7686
7890
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7687
7891
|
* @param {UpdateCellVersionRequest} updateCellVersionRequest
|
|
@@ -7764,7 +7968,7 @@ declare const CellApiFp: (configuration?: Configuration) => {
|
|
|
7764
7968
|
*/
|
|
7765
7969
|
updateCell(cell: string, cell2: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
7766
7970
|
/**
|
|
7767
|
-
* **Required permissions:** `can_manage_cells` - Create, update, or delete cells ___ Update the
|
|
7971
|
+
* **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
7972
|
* @summary Update Cell Version
|
|
7769
7973
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7770
7974
|
* @param {UpdateCellVersionRequest} updateCellVersionRequest
|
|
@@ -7847,7 +8051,7 @@ declare const CellApiFactory: (configuration?: Configuration, basePath?: string,
|
|
|
7847
8051
|
*/
|
|
7848
8052
|
updateCell(cell: string, cell2: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
7849
8053
|
/**
|
|
7850
|
-
* **Required permissions:** `can_manage_cells` - Create, update, or delete cells ___ Update the
|
|
8054
|
+
* **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
8055
|
* @summary Update Cell Version
|
|
7852
8056
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7853
8057
|
* @param {UpdateCellVersionRequest} updateCellVersionRequest
|
|
@@ -7930,7 +8134,7 @@ declare class CellApi extends BaseAPI {
|
|
|
7930
8134
|
*/
|
|
7931
8135
|
updateCell(cell: string, cell2: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
|
|
7932
8136
|
/**
|
|
7933
|
-
* **Required permissions:** `can_manage_cells` - Create, update, or delete cells ___ Update the
|
|
8137
|
+
* **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
8138
|
* @summary Update Cell Version
|
|
7935
8139
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7936
8140
|
* @param {UpdateCellVersionRequest} updateCellVersionRequest
|
|
@@ -8740,116 +8944,272 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
|
|
|
8740
8944
|
*/
|
|
8741
8945
|
declare const DatasetsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
8742
8946
|
/**
|
|
8743
|
-
* **Required permissions:** `
|
|
8744
|
-
* @summary
|
|
8947
|
+
* **Required permissions:** `can_write_datasets` - Write stored datasets ___ <!-- theme: danger --> > **Experimental** Creates a new dataset together with its poses and command routines.
|
|
8948
|
+
* @summary Create Dataset
|
|
8949
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8950
|
+
* @param {CreateDatasetRequest} createDatasetRequest
|
|
8951
|
+
* @param {*} [options] Override http request option.
|
|
8952
|
+
* @throws {RequiredError}
|
|
8953
|
+
*/
|
|
8954
|
+
createDataset: (cell: string, createDatasetRequest: CreateDatasetRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8955
|
+
/**
|
|
8956
|
+
* **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.
|
|
8957
|
+
* @summary Delete Dataset
|
|
8958
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8959
|
+
* @param {string} dataset Specifies the dataset identifier.
|
|
8960
|
+
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
8961
|
+
* @param {*} [options] Override http request option.
|
|
8962
|
+
* @throws {RequiredError}
|
|
8963
|
+
*/
|
|
8964
|
+
deleteDataset: (cell: string, dataset: string, revision?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8965
|
+
/**
|
|
8966
|
+
* **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.
|
|
8967
|
+
* @summary Get Dataset
|
|
8968
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8969
|
+
* @param {string} dataset Specifies the dataset identifier.
|
|
8970
|
+
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
8971
|
+
* @param {*} [options] Override http request option.
|
|
8972
|
+
* @throws {RequiredError}
|
|
8973
|
+
*/
|
|
8974
|
+
getDataset: (cell: string, dataset: string, revision?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8975
|
+
/**
|
|
8976
|
+
* **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.
|
|
8977
|
+
* @summary List Datasets
|
|
8978
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8979
|
+
* @param {string} [dataset] Restricts the result to all revisions of the given dataset.
|
|
8980
|
+
* @param {boolean} [latestOnly] When `true`, returns only the latest revision of each dataset.
|
|
8981
|
+
* @param {*} [options] Override http request option.
|
|
8982
|
+
* @throws {RequiredError}
|
|
8983
|
+
*/
|
|
8984
|
+
getDatasets: (cell: string, dataset?: string, latestOnly?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8985
|
+
/**
|
|
8986
|
+
* **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.
|
|
8987
|
+
* @summary Localize Poses from World (Dataset)
|
|
8745
8988
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8746
8989
|
* @param {string} dataset Specifies the dataset identifier.
|
|
8747
|
-
* @param {string}
|
|
8748
|
-
* @param {Pose}
|
|
8990
|
+
* @param {string} frame Unique identifier addressing a frame within a dataset.
|
|
8991
|
+
* @param {Array<Pose>} poses The poses expressed in the `world` frame.
|
|
8749
8992
|
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
8750
8993
|
* @param {*} [options] Override http request option.
|
|
8751
8994
|
* @throws {RequiredError}
|
|
8752
8995
|
*/
|
|
8753
|
-
|
|
8996
|
+
localizeDatasetFramePose: (cell: string, dataset: string, frame: string, poses: Array<Pose>, revision?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8754
8997
|
/**
|
|
8755
|
-
* **Required permissions:** `
|
|
8756
|
-
* @summary Resolve
|
|
8998
|
+
* **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.
|
|
8999
|
+
* @summary Resolve Poses to World (Dataset)
|
|
8757
9000
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8758
9001
|
* @param {string} dataset Specifies the dataset identifier.
|
|
8759
|
-
* @param {string}
|
|
8760
|
-
* @param {Pose}
|
|
9002
|
+
* @param {string} frame Unique identifier addressing a frame within a dataset.
|
|
9003
|
+
* @param {Array<Pose>} poses The poses expressed relative to the given frame.
|
|
8761
9004
|
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
8762
9005
|
* @param {*} [options] Override http request option.
|
|
8763
9006
|
* @throws {RequiredError}
|
|
8764
9007
|
*/
|
|
8765
|
-
|
|
9008
|
+
resolveDatasetFramePose: (cell: string, dataset: string, frame: string, poses: Array<Pose>, revision?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8766
9009
|
};
|
|
8767
9010
|
/**
|
|
8768
9011
|
* DatasetsApi - functional programming interface
|
|
8769
9012
|
*/
|
|
8770
9013
|
declare const DatasetsApiFp: (configuration?: Configuration) => {
|
|
8771
9014
|
/**
|
|
8772
|
-
* **Required permissions:** `
|
|
8773
|
-
* @summary
|
|
9015
|
+
* **Required permissions:** `can_write_datasets` - Write stored datasets ___ <!-- theme: danger --> > **Experimental** Creates a new dataset together with its poses and command routines.
|
|
9016
|
+
* @summary Create Dataset
|
|
9017
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9018
|
+
* @param {CreateDatasetRequest} createDatasetRequest
|
|
9019
|
+
* @param {*} [options] Override http request option.
|
|
9020
|
+
* @throws {RequiredError}
|
|
9021
|
+
*/
|
|
9022
|
+
createDataset(cell: string, createDatasetRequest: CreateDatasetRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetDatasetResponse>>;
|
|
9023
|
+
/**
|
|
9024
|
+
* **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.
|
|
9025
|
+
* @summary Delete Dataset
|
|
8774
9026
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8775
9027
|
* @param {string} dataset Specifies the dataset identifier.
|
|
8776
|
-
* @param {string} coordinateSystem Unique identifier addressing a coordinate system within a teaching dataset.
|
|
8777
|
-
* @param {Pose} pose The pose expressed in the `world` coordinate system.
|
|
8778
9028
|
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
8779
9029
|
* @param {*} [options] Override http request option.
|
|
8780
9030
|
* @throws {RequiredError}
|
|
8781
9031
|
*/
|
|
8782
|
-
|
|
9032
|
+
deleteDataset(cell: string, dataset: string, revision?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
8783
9033
|
/**
|
|
8784
|
-
* **Required permissions:** `
|
|
8785
|
-
* @summary
|
|
9034
|
+
* **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.
|
|
9035
|
+
* @summary Get Dataset
|
|
8786
9036
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8787
9037
|
* @param {string} dataset Specifies the dataset identifier.
|
|
8788
|
-
* @param {string} coordinateSystem Unique identifier addressing a coordinate system within a teaching dataset.
|
|
8789
|
-
* @param {Pose} pose The pose expressed relative to the given coordinate system.
|
|
8790
9038
|
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
8791
9039
|
* @param {*} [options] Override http request option.
|
|
8792
9040
|
* @throws {RequiredError}
|
|
8793
9041
|
*/
|
|
8794
|
-
|
|
9042
|
+
getDataset(cell: string, dataset: string, revision?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetDatasetResponse>>;
|
|
9043
|
+
/**
|
|
9044
|
+
* **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.
|
|
9045
|
+
* @summary List Datasets
|
|
9046
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9047
|
+
* @param {string} [dataset] Restricts the result to all revisions of the given dataset.
|
|
9048
|
+
* @param {boolean} [latestOnly] When `true`, returns only the latest revision of each dataset.
|
|
9049
|
+
* @param {*} [options] Override http request option.
|
|
9050
|
+
* @throws {RequiredError}
|
|
9051
|
+
*/
|
|
9052
|
+
getDatasets(cell: string, dataset?: string, latestOnly?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Dataset>>>;
|
|
9053
|
+
/**
|
|
9054
|
+
* **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.
|
|
9055
|
+
* @summary Localize Poses from World (Dataset)
|
|
9056
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9057
|
+
* @param {string} dataset Specifies the dataset identifier.
|
|
9058
|
+
* @param {string} frame Unique identifier addressing a frame within a dataset.
|
|
9059
|
+
* @param {Array<Pose>} poses The poses expressed in the `world` frame.
|
|
9060
|
+
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
9061
|
+
* @param {*} [options] Override http request option.
|
|
9062
|
+
* @throws {RequiredError}
|
|
9063
|
+
*/
|
|
9064
|
+
localizeDatasetFramePose(cell: string, dataset: string, frame: string, poses: Array<Pose>, revision?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Pose>>>;
|
|
9065
|
+
/**
|
|
9066
|
+
* **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.
|
|
9067
|
+
* @summary Resolve Poses to World (Dataset)
|
|
9068
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9069
|
+
* @param {string} dataset Specifies the dataset identifier.
|
|
9070
|
+
* @param {string} frame Unique identifier addressing a frame within a dataset.
|
|
9071
|
+
* @param {Array<Pose>} poses The poses expressed relative to the given frame.
|
|
9072
|
+
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
9073
|
+
* @param {*} [options] Override http request option.
|
|
9074
|
+
* @throws {RequiredError}
|
|
9075
|
+
*/
|
|
9076
|
+
resolveDatasetFramePose(cell: string, dataset: string, frame: string, poses: Array<Pose>, revision?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Pose>>>;
|
|
8795
9077
|
};
|
|
8796
9078
|
/**
|
|
8797
9079
|
* DatasetsApi - factory interface
|
|
8798
9080
|
*/
|
|
8799
9081
|
declare const DatasetsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
8800
9082
|
/**
|
|
8801
|
-
* **Required permissions:** `
|
|
8802
|
-
* @summary
|
|
9083
|
+
* **Required permissions:** `can_write_datasets` - Write stored datasets ___ <!-- theme: danger --> > **Experimental** Creates a new dataset together with its poses and command routines.
|
|
9084
|
+
* @summary Create Dataset
|
|
9085
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9086
|
+
* @param {CreateDatasetRequest} createDatasetRequest
|
|
9087
|
+
* @param {*} [options] Override http request option.
|
|
9088
|
+
* @throws {RequiredError}
|
|
9089
|
+
*/
|
|
9090
|
+
createDataset(cell: string, createDatasetRequest: CreateDatasetRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetDatasetResponse>;
|
|
9091
|
+
/**
|
|
9092
|
+
* **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.
|
|
9093
|
+
* @summary Delete Dataset
|
|
9094
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9095
|
+
* @param {string} dataset Specifies the dataset identifier.
|
|
9096
|
+
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
9097
|
+
* @param {*} [options] Override http request option.
|
|
9098
|
+
* @throws {RequiredError}
|
|
9099
|
+
*/
|
|
9100
|
+
deleteDataset(cell: string, dataset: string, revision?: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
9101
|
+
/**
|
|
9102
|
+
* **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.
|
|
9103
|
+
* @summary Get Dataset
|
|
9104
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9105
|
+
* @param {string} dataset Specifies the dataset identifier.
|
|
9106
|
+
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
9107
|
+
* @param {*} [options] Override http request option.
|
|
9108
|
+
* @throws {RequiredError}
|
|
9109
|
+
*/
|
|
9110
|
+
getDataset(cell: string, dataset: string, revision?: number, options?: RawAxiosRequestConfig): AxiosPromise<GetDatasetResponse>;
|
|
9111
|
+
/**
|
|
9112
|
+
* **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.
|
|
9113
|
+
* @summary List Datasets
|
|
9114
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9115
|
+
* @param {string} [dataset] Restricts the result to all revisions of the given dataset.
|
|
9116
|
+
* @param {boolean} [latestOnly] When `true`, returns only the latest revision of each dataset.
|
|
9117
|
+
* @param {*} [options] Override http request option.
|
|
9118
|
+
* @throws {RequiredError}
|
|
9119
|
+
*/
|
|
9120
|
+
getDatasets(cell: string, dataset?: string, latestOnly?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<Array<Dataset>>;
|
|
9121
|
+
/**
|
|
9122
|
+
* **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.
|
|
9123
|
+
* @summary Localize Poses from World (Dataset)
|
|
8803
9124
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8804
9125
|
* @param {string} dataset Specifies the dataset identifier.
|
|
8805
|
-
* @param {string}
|
|
8806
|
-
* @param {Pose}
|
|
9126
|
+
* @param {string} frame Unique identifier addressing a frame within a dataset.
|
|
9127
|
+
* @param {Array<Pose>} poses The poses expressed in the `world` frame.
|
|
8807
9128
|
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
8808
9129
|
* @param {*} [options] Override http request option.
|
|
8809
9130
|
* @throws {RequiredError}
|
|
8810
9131
|
*/
|
|
8811
|
-
|
|
9132
|
+
localizeDatasetFramePose(cell: string, dataset: string, frame: string, poses: Array<Pose>, revision?: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<Pose>>;
|
|
8812
9133
|
/**
|
|
8813
|
-
* **Required permissions:** `
|
|
8814
|
-
* @summary Resolve
|
|
9134
|
+
* **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.
|
|
9135
|
+
* @summary Resolve Poses to World (Dataset)
|
|
8815
9136
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8816
9137
|
* @param {string} dataset Specifies the dataset identifier.
|
|
8817
|
-
* @param {string}
|
|
8818
|
-
* @param {Pose}
|
|
9138
|
+
* @param {string} frame Unique identifier addressing a frame within a dataset.
|
|
9139
|
+
* @param {Array<Pose>} poses The poses expressed relative to the given frame.
|
|
8819
9140
|
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
8820
9141
|
* @param {*} [options] Override http request option.
|
|
8821
9142
|
* @throws {RequiredError}
|
|
8822
9143
|
*/
|
|
8823
|
-
|
|
9144
|
+
resolveDatasetFramePose(cell: string, dataset: string, frame: string, poses: Array<Pose>, revision?: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<Pose>>;
|
|
8824
9145
|
};
|
|
8825
9146
|
/**
|
|
8826
9147
|
* DatasetsApi - object-oriented interface
|
|
8827
9148
|
*/
|
|
8828
9149
|
declare class DatasetsApi extends BaseAPI {
|
|
8829
9150
|
/**
|
|
8830
|
-
* **Required permissions:** `
|
|
8831
|
-
* @summary
|
|
9151
|
+
* **Required permissions:** `can_write_datasets` - Write stored datasets ___ <!-- theme: danger --> > **Experimental** Creates a new dataset together with its poses and command routines.
|
|
9152
|
+
* @summary Create Dataset
|
|
9153
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9154
|
+
* @param {CreateDatasetRequest} createDatasetRequest
|
|
9155
|
+
* @param {*} [options] Override http request option.
|
|
9156
|
+
* @throws {RequiredError}
|
|
9157
|
+
*/
|
|
9158
|
+
createDataset(cell: string, createDatasetRequest: CreateDatasetRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<GetDatasetResponse, any, {}>>;
|
|
9159
|
+
/**
|
|
9160
|
+
* **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.
|
|
9161
|
+
* @summary Delete Dataset
|
|
9162
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9163
|
+
* @param {string} dataset Specifies the dataset identifier.
|
|
9164
|
+
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
9165
|
+
* @param {*} [options] Override http request option.
|
|
9166
|
+
* @throws {RequiredError}
|
|
9167
|
+
*/
|
|
9168
|
+
deleteDataset(cell: string, dataset: string, revision?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
|
|
9169
|
+
/**
|
|
9170
|
+
* **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.
|
|
9171
|
+
* @summary Get Dataset
|
|
9172
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9173
|
+
* @param {string} dataset Specifies the dataset identifier.
|
|
9174
|
+
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
9175
|
+
* @param {*} [options] Override http request option.
|
|
9176
|
+
* @throws {RequiredError}
|
|
9177
|
+
*/
|
|
9178
|
+
getDataset(cell: string, dataset: string, revision?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<GetDatasetResponse, any, {}>>;
|
|
9179
|
+
/**
|
|
9180
|
+
* **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.
|
|
9181
|
+
* @summary List Datasets
|
|
9182
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9183
|
+
* @param {string} [dataset] Restricts the result to all revisions of the given dataset.
|
|
9184
|
+
* @param {boolean} [latestOnly] When `true`, returns only the latest revision of each dataset.
|
|
9185
|
+
* @param {*} [options] Override http request option.
|
|
9186
|
+
* @throws {RequiredError}
|
|
9187
|
+
*/
|
|
9188
|
+
getDatasets(cell: string, dataset?: string, latestOnly?: boolean, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<Dataset[], any, {}>>;
|
|
9189
|
+
/**
|
|
9190
|
+
* **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.
|
|
9191
|
+
* @summary Localize Poses from World (Dataset)
|
|
8832
9192
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8833
9193
|
* @param {string} dataset Specifies the dataset identifier.
|
|
8834
|
-
* @param {string}
|
|
8835
|
-
* @param {Pose}
|
|
9194
|
+
* @param {string} frame Unique identifier addressing a frame within a dataset.
|
|
9195
|
+
* @param {Array<Pose>} poses The poses expressed in the `world` frame.
|
|
8836
9196
|
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
8837
9197
|
* @param {*} [options] Override http request option.
|
|
8838
9198
|
* @throws {RequiredError}
|
|
8839
9199
|
*/
|
|
8840
|
-
|
|
9200
|
+
localizeDatasetFramePose(cell: string, dataset: string, frame: string, poses: Array<Pose>, revision?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<Pose[], any, {}>>;
|
|
8841
9201
|
/**
|
|
8842
|
-
* **Required permissions:** `
|
|
8843
|
-
* @summary Resolve
|
|
9202
|
+
* **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.
|
|
9203
|
+
* @summary Resolve Poses to World (Dataset)
|
|
8844
9204
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8845
9205
|
* @param {string} dataset Specifies the dataset identifier.
|
|
8846
|
-
* @param {string}
|
|
8847
|
-
* @param {Pose}
|
|
9206
|
+
* @param {string} frame Unique identifier addressing a frame within a dataset.
|
|
9207
|
+
* @param {Array<Pose>} poses The poses expressed relative to the given frame.
|
|
8848
9208
|
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
8849
9209
|
* @param {*} [options] Override http request option.
|
|
8850
9210
|
* @throws {RequiredError}
|
|
8851
9211
|
*/
|
|
8852
|
-
|
|
9212
|
+
resolveDatasetFramePose(cell: string, dataset: string, frame: string, poses: Array<Pose>, revision?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<Pose[], any, {}>>;
|
|
8853
9213
|
}
|
|
8854
9214
|
/**
|
|
8855
9215
|
* JoggingApi - axios parameter creator
|
|
@@ -11809,182 +12169,6 @@ declare class SystemApi extends BaseAPI {
|
|
|
11809
12169
|
*/
|
|
11810
12170
|
updateNovaVersion(updateNovaVersionRequest: UpdateNovaVersionRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
|
|
11811
12171
|
}
|
|
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
12172
|
/**
|
|
11989
12173
|
* TrajectoryCachingApi - axios parameter creator
|
|
11990
12174
|
*/
|
|
@@ -12261,6 +12445,15 @@ declare class TrajectoryExecutionApi extends BaseAPI {
|
|
|
12261
12445
|
* TrajectoryPlanningApi - axios parameter creator
|
|
12262
12446
|
*/
|
|
12263
12447
|
declare const TrajectoryPlanningApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
12448
|
+
/**
|
|
12449
|
+
* **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.
|
|
12450
|
+
* @summary Configure Rerun Logging
|
|
12451
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
12452
|
+
* @param {RerunLoggingConfigurationRequest} rerunLoggingConfigurationRequest
|
|
12453
|
+
* @param {*} [options] Override http request option.
|
|
12454
|
+
* @throws {RequiredError}
|
|
12455
|
+
*/
|
|
12456
|
+
configureRerunLogging: (cell: string, rerunLoggingConfigurationRequest: RerunLoggingConfigurationRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12264
12457
|
/**
|
|
12265
12458
|
* **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
12459
|
* @summary Merge Trajectories
|
|
@@ -12270,6 +12463,15 @@ declare const TrajectoryPlanningApiAxiosParamCreator: (configuration?: Configura
|
|
|
12270
12463
|
* @throws {RequiredError}
|
|
12271
12464
|
*/
|
|
12272
12465
|
mergeTrajectories: (cell: string, mergeTrajectoriesRequest: MergeTrajectoriesRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12466
|
+
/**
|
|
12467
|
+
* **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.
|
|
12468
|
+
* @summary Optimize Motion Commands
|
|
12469
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
12470
|
+
* @param {OptimizeMotionCommandsRequest} optimizeMotionCommandsRequest
|
|
12471
|
+
* @param {*} [options] Override http request option.
|
|
12472
|
+
* @throws {RequiredError}
|
|
12473
|
+
*/
|
|
12474
|
+
optimizeMotionCommands: (cell: string, optimizeMotionCommandsRequest: OptimizeMotionCommandsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12273
12475
|
/**
|
|
12274
12476
|
* **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
12477
|
* @summary Plan Collision-Free Trajectory
|
|
@@ -12302,6 +12504,15 @@ declare const TrajectoryPlanningApiAxiosParamCreator: (configuration?: Configura
|
|
|
12302
12504
|
* TrajectoryPlanningApi - functional programming interface
|
|
12303
12505
|
*/
|
|
12304
12506
|
declare const TrajectoryPlanningApiFp: (configuration?: Configuration) => {
|
|
12507
|
+
/**
|
|
12508
|
+
* **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.
|
|
12509
|
+
* @summary Configure Rerun Logging
|
|
12510
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
12511
|
+
* @param {RerunLoggingConfigurationRequest} rerunLoggingConfigurationRequest
|
|
12512
|
+
* @param {*} [options] Override http request option.
|
|
12513
|
+
* @throws {RequiredError}
|
|
12514
|
+
*/
|
|
12515
|
+
configureRerunLogging(cell: string, rerunLoggingConfigurationRequest: RerunLoggingConfigurationRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RerunLoggingConfigurationResponse>>;
|
|
12305
12516
|
/**
|
|
12306
12517
|
* **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
12518
|
* @summary Merge Trajectories
|
|
@@ -12311,6 +12522,15 @@ declare const TrajectoryPlanningApiFp: (configuration?: Configuration) => {
|
|
|
12311
12522
|
* @throws {RequiredError}
|
|
12312
12523
|
*/
|
|
12313
12524
|
mergeTrajectories(cell: string, mergeTrajectoriesRequest: MergeTrajectoriesRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MergeTrajectoriesResponse>>;
|
|
12525
|
+
/**
|
|
12526
|
+
* **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.
|
|
12527
|
+
* @summary Optimize Motion Commands
|
|
12528
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
12529
|
+
* @param {OptimizeMotionCommandsRequest} optimizeMotionCommandsRequest
|
|
12530
|
+
* @param {*} [options] Override http request option.
|
|
12531
|
+
* @throws {RequiredError}
|
|
12532
|
+
*/
|
|
12533
|
+
optimizeMotionCommands(cell: string, optimizeMotionCommandsRequest: OptimizeMotionCommandsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OptimizeMotionCommandsResponse>>;
|
|
12314
12534
|
/**
|
|
12315
12535
|
* **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
12536
|
* @summary Plan Collision-Free Trajectory
|
|
@@ -12343,6 +12563,15 @@ declare const TrajectoryPlanningApiFp: (configuration?: Configuration) => {
|
|
|
12343
12563
|
* TrajectoryPlanningApi - factory interface
|
|
12344
12564
|
*/
|
|
12345
12565
|
declare const TrajectoryPlanningApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
12566
|
+
/**
|
|
12567
|
+
* **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.
|
|
12568
|
+
* @summary Configure Rerun Logging
|
|
12569
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
12570
|
+
* @param {RerunLoggingConfigurationRequest} rerunLoggingConfigurationRequest
|
|
12571
|
+
* @param {*} [options] Override http request option.
|
|
12572
|
+
* @throws {RequiredError}
|
|
12573
|
+
*/
|
|
12574
|
+
configureRerunLogging(cell: string, rerunLoggingConfigurationRequest: RerunLoggingConfigurationRequest, options?: RawAxiosRequestConfig): AxiosPromise<RerunLoggingConfigurationResponse>;
|
|
12346
12575
|
/**
|
|
12347
12576
|
* **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
12577
|
* @summary Merge Trajectories
|
|
@@ -12352,6 +12581,15 @@ declare const TrajectoryPlanningApiFactory: (configuration?: Configuration, base
|
|
|
12352
12581
|
* @throws {RequiredError}
|
|
12353
12582
|
*/
|
|
12354
12583
|
mergeTrajectories(cell: string, mergeTrajectoriesRequest: MergeTrajectoriesRequest, options?: RawAxiosRequestConfig): AxiosPromise<MergeTrajectoriesResponse>;
|
|
12584
|
+
/**
|
|
12585
|
+
* **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.
|
|
12586
|
+
* @summary Optimize Motion Commands
|
|
12587
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
12588
|
+
* @param {OptimizeMotionCommandsRequest} optimizeMotionCommandsRequest
|
|
12589
|
+
* @param {*} [options] Override http request option.
|
|
12590
|
+
* @throws {RequiredError}
|
|
12591
|
+
*/
|
|
12592
|
+
optimizeMotionCommands(cell: string, optimizeMotionCommandsRequest: OptimizeMotionCommandsRequest, options?: RawAxiosRequestConfig): AxiosPromise<OptimizeMotionCommandsResponse>;
|
|
12355
12593
|
/**
|
|
12356
12594
|
* **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
12595
|
* @summary Plan Collision-Free Trajectory
|
|
@@ -12384,6 +12622,15 @@ declare const TrajectoryPlanningApiFactory: (configuration?: Configuration, base
|
|
|
12384
12622
|
* TrajectoryPlanningApi - object-oriented interface
|
|
12385
12623
|
*/
|
|
12386
12624
|
declare class TrajectoryPlanningApi extends BaseAPI {
|
|
12625
|
+
/**
|
|
12626
|
+
* **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.
|
|
12627
|
+
* @summary Configure Rerun Logging
|
|
12628
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
12629
|
+
* @param {RerunLoggingConfigurationRequest} rerunLoggingConfigurationRequest
|
|
12630
|
+
* @param {*} [options] Override http request option.
|
|
12631
|
+
* @throws {RequiredError}
|
|
12632
|
+
*/
|
|
12633
|
+
configureRerunLogging(cell: string, rerunLoggingConfigurationRequest: RerunLoggingConfigurationRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<RerunLoggingConfigurationResponse, any, {}>>;
|
|
12387
12634
|
/**
|
|
12388
12635
|
* **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
12636
|
* @summary Merge Trajectories
|
|
@@ -12393,6 +12640,15 @@ declare class TrajectoryPlanningApi extends BaseAPI {
|
|
|
12393
12640
|
* @throws {RequiredError}
|
|
12394
12641
|
*/
|
|
12395
12642
|
mergeTrajectories(cell: string, mergeTrajectoriesRequest: MergeTrajectoriesRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MergeTrajectoriesResponse, any, {}>>;
|
|
12643
|
+
/**
|
|
12644
|
+
* **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.
|
|
12645
|
+
* @summary Optimize Motion Commands
|
|
12646
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
12647
|
+
* @param {OptimizeMotionCommandsRequest} optimizeMotionCommandsRequest
|
|
12648
|
+
* @param {*} [options] Override http request option.
|
|
12649
|
+
* @throws {RequiredError}
|
|
12650
|
+
*/
|
|
12651
|
+
optimizeMotionCommands(cell: string, optimizeMotionCommandsRequest: OptimizeMotionCommandsRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<OptimizeMotionCommandsResponse, any, {}>>;
|
|
12396
12652
|
/**
|
|
12397
12653
|
* **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
12654
|
* @summary Plan Collision-Free Trajectory
|
|
@@ -13622,4 +13878,4 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
|
|
|
13622
13878
|
setIOValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
|
|
13623
13879
|
}
|
|
13624
13880
|
//#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 };
|
|
13881
|
+
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, BusIOsNetworkInterface, BusIOsNetworkInterfaceWithAddresses, 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 };
|