@wandelbots/nova-api 26.7.0-dev.4 → 26.7.0-dev.6
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 +682 -252
- package/dist/v2/index.d.cts +1210 -38
- package/dist/v2/index.d.ts +1210 -38
- package/dist/v2/index.js +396 -1
- package/package.json +1 -1
package/dist/v2/index.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ import { AxiosInstance, AxiosPromise, RawAxiosRequestConfig } from "axios";
|
|
|
6
6
|
* Wandelbots NOVA API
|
|
7
7
|
* Interact with robots in an easy and intuitive way.
|
|
8
8
|
*
|
|
9
|
-
* The version of the OpenAPI document: 2.
|
|
9
|
+
* The version of the OpenAPI document: 2.7.0 dev
|
|
10
10
|
*
|
|
11
11
|
*
|
|
12
12
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -325,6 +325,25 @@ interface App {
|
|
|
325
325
|
*/
|
|
326
326
|
'diagnosis_path'?: string;
|
|
327
327
|
}
|
|
328
|
+
/**
|
|
329
|
+
* Indicates which motion boundary an offset is measured from.
|
|
330
|
+
*/
|
|
331
|
+
declare const AtReference: {
|
|
332
|
+
readonly Previous: "previous";
|
|
333
|
+
readonly Next: "next";
|
|
334
|
+
};
|
|
335
|
+
type AtReference = typeof AtReference[keyof typeof AtReference];
|
|
336
|
+
/**
|
|
337
|
+
* @type AtTrigger
|
|
338
|
+
* Positions an overlay command relative to its nearest preceding motion command.
|
|
339
|
+
*/
|
|
340
|
+
type AtTrigger = {
|
|
341
|
+
type: 'distance';
|
|
342
|
+
} & DistanceTrigger | {
|
|
343
|
+
type: 'path_fraction';
|
|
344
|
+
} & PathFractionTrigger | {
|
|
345
|
+
type: 'time';
|
|
346
|
+
} & TimeTrigger;
|
|
328
347
|
/**
|
|
329
348
|
* Per-joint constraint beyond the 8 inverse kinematic branches. Maps a joint index (0-based) to an allowed angle interval (in radians).
|
|
330
349
|
*/
|
|
@@ -341,6 +360,15 @@ declare const Behavior: {
|
|
|
341
360
|
readonly BehaviorExternalSource: "BEHAVIOR_EXTERNAL_SOURCE";
|
|
342
361
|
};
|
|
343
362
|
type Behavior = typeof Behavior[keyof typeof Behavior];
|
|
363
|
+
/**
|
|
364
|
+
* @type Blending
|
|
365
|
+
* Specifies baseline blending behavior for a motion command.
|
|
366
|
+
*/
|
|
367
|
+
type Blending = {
|
|
368
|
+
type: 'blending_auto';
|
|
369
|
+
} & BlendingAuto | {
|
|
370
|
+
type: 'blending_position';
|
|
371
|
+
} & BlendingPosition;
|
|
344
372
|
interface BlendingAuto {
|
|
345
373
|
/**
|
|
346
374
|
* Auto-blending is used to keep a constant velocity when blending between two motion commands. To use auto-blending, the TCP velocity limit must be set. It changes the TCP path around the target point of the motion command. The value represents the percentage of the original velocity. Auto-blending is always performed in cartesian space.
|
|
@@ -1182,6 +1210,61 @@ type CollisionSetupValueOrKey = {
|
|
|
1182
1210
|
} & StorageKey | {
|
|
1183
1211
|
source: 'value';
|
|
1184
1212
|
} & CollisionSetupValue;
|
|
1213
|
+
/**
|
|
1214
|
+
* @type Command
|
|
1215
|
+
* Defines one planning or execution-overlay command in a command routine.
|
|
1216
|
+
*/
|
|
1217
|
+
type Command = ExplicitPathMotionCommand | GeneratedPathMotionCommand | MarkerCommand | PauseOnIOCommand | SetIOCommand | WaitForIOCommand | WaitForTimeCommand;
|
|
1218
|
+
/**
|
|
1219
|
+
* Defines an ordered, persistable command routine that belongs to a teaching dataset.
|
|
1220
|
+
*/
|
|
1221
|
+
interface CommandRoutine {
|
|
1222
|
+
/**
|
|
1223
|
+
* Unique identifier of the command routine within the dataset. Must start with a letter and may only contain letters, digits, and hyphens.
|
|
1224
|
+
*/
|
|
1225
|
+
'command_routine': string;
|
|
1226
|
+
/**
|
|
1227
|
+
* Unique identifier of the dataset. Must start with a letter and may only contain letters, digits, and hyphens.
|
|
1228
|
+
*/
|
|
1229
|
+
'dataset'?: string;
|
|
1230
|
+
/**
|
|
1231
|
+
* Specifies the human-readable command-routine name.
|
|
1232
|
+
*/
|
|
1233
|
+
'name'?: string;
|
|
1234
|
+
/**
|
|
1235
|
+
* Describes the command routine.
|
|
1236
|
+
*/
|
|
1237
|
+
'description'?: string;
|
|
1238
|
+
/**
|
|
1239
|
+
* References the motion group that executes this routine. It is absent when no motion group context exists.
|
|
1240
|
+
*/
|
|
1241
|
+
'motion_group'?: MotionGroupReference;
|
|
1242
|
+
'motion_group_setup': MotionGroupSetup | null;
|
|
1243
|
+
/**
|
|
1244
|
+
* Specifies the routine-level tool-center-point identifier. It is absent when no motion group context exists.
|
|
1245
|
+
*/
|
|
1246
|
+
'tcp'?: string;
|
|
1247
|
+
'start_joint_position'?: Array<number>;
|
|
1248
|
+
'default_motion_settings'?: MotionSettings;
|
|
1249
|
+
/**
|
|
1250
|
+
* Contains the ordered planning and execution-overlay commands.
|
|
1251
|
+
*/
|
|
1252
|
+
'commands': Array<Command>;
|
|
1253
|
+
/**
|
|
1254
|
+
* Contains string-valued annotations that are preserved on round-trip.
|
|
1255
|
+
*/
|
|
1256
|
+
'metadata'?: {
|
|
1257
|
+
[key: string]: string;
|
|
1258
|
+
};
|
|
1259
|
+
/**
|
|
1260
|
+
* Records when the command routine was created.
|
|
1261
|
+
*/
|
|
1262
|
+
'created_at'?: string;
|
|
1263
|
+
/**
|
|
1264
|
+
* Records when the command routine was last updated.
|
|
1265
|
+
*/
|
|
1266
|
+
'updated_at'?: string;
|
|
1267
|
+
}
|
|
1185
1268
|
/**
|
|
1186
1269
|
* Comparator for the comparison of two values. The comparator is used to compare two values and return a boolean result. The default comparator is unknown.
|
|
1187
1270
|
*/
|
|
@@ -1264,9 +1347,9 @@ interface ConfiguredPose {
|
|
|
1264
1347
|
'pose': Pose;
|
|
1265
1348
|
'kinematic_configuration'?: KinematicConfiguration;
|
|
1266
1349
|
/**
|
|
1267
|
-
*
|
|
1350
|
+
* Unique identifier of a coordinate system.
|
|
1268
1351
|
*/
|
|
1269
|
-
'
|
|
1352
|
+
'coordinate_system'?: string;
|
|
1270
1353
|
}
|
|
1271
1354
|
interface ConfiguredPoseInverse422Response {
|
|
1272
1355
|
'detail'?: Array<ValidationError>;
|
|
@@ -1436,6 +1519,24 @@ interface CoordinateSystem {
|
|
|
1436
1519
|
*/
|
|
1437
1520
|
'coordinate_system': string;
|
|
1438
1521
|
}
|
|
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
|
+
}
|
|
1439
1540
|
interface CoordinateSystemData {
|
|
1440
1541
|
/**
|
|
1441
1542
|
* Human readable name of this coordinate system.
|
|
@@ -1464,10 +1565,52 @@ interface CopyMotionGroupModelRequest {
|
|
|
1464
1565
|
*/
|
|
1465
1566
|
'name': string;
|
|
1466
1567
|
}
|
|
1568
|
+
/**
|
|
1569
|
+
* Creates a new teaching dataset together with its poses and command routines in a single request.
|
|
1570
|
+
*/
|
|
1571
|
+
interface CreateDatasetRequest {
|
|
1572
|
+
/**
|
|
1573
|
+
* Unique identifier of the dataset. Must start with a letter and may only contain letters, digits, and hyphens.
|
|
1574
|
+
*/
|
|
1575
|
+
'dataset': string;
|
|
1576
|
+
/**
|
|
1577
|
+
* Human-readable name for the dataset that is shown in the user interface. The slug is derived from this name on download.
|
|
1578
|
+
*/
|
|
1579
|
+
'name'?: string;
|
|
1580
|
+
/**
|
|
1581
|
+
* Free-form text that describes the purpose of the dataset.
|
|
1582
|
+
*/
|
|
1583
|
+
'description'?: string;
|
|
1584
|
+
/**
|
|
1585
|
+
* Contains the poses that are created together with the dataset. Server-managed identifiers are assigned on creation.
|
|
1586
|
+
*/
|
|
1587
|
+
'poses'?: Array<DatasetPose>;
|
|
1588
|
+
/**
|
|
1589
|
+
* Contains the coordinate systems that are created together with the dataset. Server-managed identifiers are assigned on creation.
|
|
1590
|
+
*/
|
|
1591
|
+
'coordinate_systems'?: Array<DatasetCoordinateSystem>;
|
|
1592
|
+
/**
|
|
1593
|
+
* Contains the command routines that are created together with the dataset. Server-managed identifiers are assigned on creation.
|
|
1594
|
+
*/
|
|
1595
|
+
'command_routines'?: Array<CommandRoutine>;
|
|
1596
|
+
}
|
|
1467
1597
|
interface CubicSplineParameter {
|
|
1468
1598
|
'pose': Pose;
|
|
1469
1599
|
'path_parameter': number;
|
|
1470
1600
|
}
|
|
1601
|
+
/**
|
|
1602
|
+
* Defines one intermediate point of a cubic spline path. It mirrors the baseline cubic spline parameter but references the pose instead of inlining it, so spline points can be taught and shared like any other pose.
|
|
1603
|
+
*/
|
|
1604
|
+
interface CubicSplineViaPoint {
|
|
1605
|
+
/**
|
|
1606
|
+
* References the intermediate pose of the spline.
|
|
1607
|
+
*/
|
|
1608
|
+
'pose': PoseRef;
|
|
1609
|
+
/**
|
|
1610
|
+
* Specifies the baseline path parameter of this intermediate point.
|
|
1611
|
+
*/
|
|
1612
|
+
'path_parameter': number;
|
|
1613
|
+
}
|
|
1471
1614
|
interface CycleTime {
|
|
1472
1615
|
/**
|
|
1473
1616
|
* Cycle time of controller communication in [ms].
|
|
@@ -1518,6 +1661,138 @@ interface DHParameter {
|
|
|
1518
1661
|
'reverse_rotation_direction'?: boolean;
|
|
1519
1662
|
'type'?: JointTypeEnum;
|
|
1520
1663
|
}
|
|
1664
|
+
/**
|
|
1665
|
+
* A dataset is a collection of poses that you can group and manage together.
|
|
1666
|
+
*/
|
|
1667
|
+
interface Dataset {
|
|
1668
|
+
/**
|
|
1669
|
+
* Unique identifier of the dataset. Must start with a letter and may only contain letters, digits, and hyphens.
|
|
1670
|
+
*/
|
|
1671
|
+
'dataset': string;
|
|
1672
|
+
/**
|
|
1673
|
+
* Human-readable name for the dataset that is shown in the user interface. The slug is derived from this name on download.
|
|
1674
|
+
*/
|
|
1675
|
+
'name'?: string;
|
|
1676
|
+
/**
|
|
1677
|
+
* Revision number of the dataset. NOVA increments this on every change to the dataset.
|
|
1678
|
+
*/
|
|
1679
|
+
'revision': number;
|
|
1680
|
+
/**
|
|
1681
|
+
* Free-form text that describes the purpose of the dataset.
|
|
1682
|
+
*/
|
|
1683
|
+
'description'?: string;
|
|
1684
|
+
/**
|
|
1685
|
+
* Timestamp when the dataset was created, in RFC3339 format.
|
|
1686
|
+
*/
|
|
1687
|
+
'created_at': string;
|
|
1688
|
+
/**
|
|
1689
|
+
* Timestamp when the dataset was last updated, in RFC3339 format.
|
|
1690
|
+
*/
|
|
1691
|
+
'updated_at': string;
|
|
1692
|
+
}
|
|
1693
|
+
/**
|
|
1694
|
+
* A dataset coordinate system is a coordinate system that belongs to a dataset. It extends the shared `CoordinateSystem` with a reference to the dataset it belongs to.
|
|
1695
|
+
*/
|
|
1696
|
+
interface DatasetCoordinateSystem {
|
|
1697
|
+
/**
|
|
1698
|
+
* Unique identifier of a coordinate system.
|
|
1699
|
+
*/
|
|
1700
|
+
'coordinate_system': string;
|
|
1701
|
+
/**
|
|
1702
|
+
* Human-readable name for the coordinate system that is shown in the user interface.
|
|
1703
|
+
*/
|
|
1704
|
+
'name'?: string;
|
|
1705
|
+
/**
|
|
1706
|
+
* Unique identifier of a coordinate system.
|
|
1707
|
+
*/
|
|
1708
|
+
'parent'?: string;
|
|
1709
|
+
'pose': Pose;
|
|
1710
|
+
/**
|
|
1711
|
+
* Unique identifier of the dataset. Must start with a letter and may only contain letters, digits, and hyphens.
|
|
1712
|
+
*/
|
|
1713
|
+
'dataset': string;
|
|
1714
|
+
}
|
|
1715
|
+
/**
|
|
1716
|
+
* A dataset pose is a taught pose that belongs to a dataset. It extends the shared `ConfiguredPose` with dataset-specific fields such as an identifier, human-readable name, timestamps, and metadata.
|
|
1717
|
+
*/
|
|
1718
|
+
interface DatasetPose {
|
|
1719
|
+
'pose': Pose;
|
|
1720
|
+
'kinematic_configuration'?: KinematicConfiguration;
|
|
1721
|
+
/**
|
|
1722
|
+
* Unique identifier of a coordinate system.
|
|
1723
|
+
*/
|
|
1724
|
+
'coordinate_system'?: string;
|
|
1725
|
+
/**
|
|
1726
|
+
* Unique identifier of the pose within the dataset. Must start with a letter and may only contain letters, digits, and hyphens.
|
|
1727
|
+
*/
|
|
1728
|
+
'dataset_pose': string;
|
|
1729
|
+
/**
|
|
1730
|
+
* Unique identifier of the dataset. Must start with a letter and may only contain letters, digits, and hyphens.
|
|
1731
|
+
*/
|
|
1732
|
+
'dataset': string;
|
|
1733
|
+
/**
|
|
1734
|
+
* Human-readable name for the pose that is shown in the user interface.
|
|
1735
|
+
*/
|
|
1736
|
+
'name'?: string;
|
|
1737
|
+
/**
|
|
1738
|
+
* Free-form text that describes the purpose of the pose.
|
|
1739
|
+
*/
|
|
1740
|
+
'description'?: string;
|
|
1741
|
+
/**
|
|
1742
|
+
* Timestamp when the pose was created, in RFC3339 format.
|
|
1743
|
+
*/
|
|
1744
|
+
'created_at'?: string;
|
|
1745
|
+
/**
|
|
1746
|
+
* Timestamp when the pose was last updated, in RFC3339 format.
|
|
1747
|
+
*/
|
|
1748
|
+
'updated_at'?: string;
|
|
1749
|
+
/**
|
|
1750
|
+
* Additional key-value pairs that can be attached to the pose.
|
|
1751
|
+
*/
|
|
1752
|
+
'metadata'?: {
|
|
1753
|
+
[key: string]: string;
|
|
1754
|
+
};
|
|
1755
|
+
}
|
|
1756
|
+
/**
|
|
1757
|
+
* References a persisted pose in a dataset and may carry an offline resolution cache.
|
|
1758
|
+
*/
|
|
1759
|
+
interface DatasetPoseReference {
|
|
1760
|
+
/**
|
|
1761
|
+
* Identifies the cross-dataset pose-reference variant.
|
|
1762
|
+
*/
|
|
1763
|
+
'type': DatasetPoseReferenceTypeEnum;
|
|
1764
|
+
/**
|
|
1765
|
+
* Specifies the NOVA cell identifier used to locate the dataset.
|
|
1766
|
+
*/
|
|
1767
|
+
'cell': string;
|
|
1768
|
+
/**
|
|
1769
|
+
* Unique identifier of the dataset. Must start with a letter and may only contain letters, digits, and hyphens.
|
|
1770
|
+
*/
|
|
1771
|
+
'dataset': string;
|
|
1772
|
+
/**
|
|
1773
|
+
* Unique identifier of the pose within the dataset. Must start with a letter and may only contain letters, digits, and hyphens.
|
|
1774
|
+
*/
|
|
1775
|
+
'dataset_pose': string;
|
|
1776
|
+
'resolved_pose'?: ConfiguredPose;
|
|
1777
|
+
/**
|
|
1778
|
+
* Records when the cached pose was resolved.
|
|
1779
|
+
*/
|
|
1780
|
+
'resolved_at'?: string;
|
|
1781
|
+
/**
|
|
1782
|
+
* Records the source revision used to resolve the cached pose.
|
|
1783
|
+
*/
|
|
1784
|
+
'source_revision'?: string;
|
|
1785
|
+
/**
|
|
1786
|
+
* Contains string-valued annotations that are preserved on round-trip.
|
|
1787
|
+
*/
|
|
1788
|
+
'metadata'?: {
|
|
1789
|
+
[key: string]: string;
|
|
1790
|
+
};
|
|
1791
|
+
}
|
|
1792
|
+
declare const DatasetPoseReferenceTypeEnum: {
|
|
1793
|
+
readonly DatasetPose: "dataset_pose";
|
|
1794
|
+
};
|
|
1795
|
+
type DatasetPoseReferenceTypeEnum = typeof DatasetPoseReferenceTypeEnum[keyof typeof DatasetPoseReferenceTypeEnum];
|
|
1521
1796
|
/**
|
|
1522
1797
|
* The direction in which the trajectory is executed. Default: Forward.
|
|
1523
1798
|
*/
|
|
@@ -1548,6 +1823,24 @@ declare const DirectionConstraintConstraintNameEnum: {
|
|
|
1548
1823
|
readonly DirectionConstraint: "DirectionConstraint";
|
|
1549
1824
|
};
|
|
1550
1825
|
type DirectionConstraintConstraintNameEnum = typeof DirectionConstraintConstraintNameEnum[keyof typeof DirectionConstraintConstraintNameEnum];
|
|
1826
|
+
/**
|
|
1827
|
+
* Positions an overlay command at a Cartesian distance from a motion boundary.
|
|
1828
|
+
*/
|
|
1829
|
+
interface DistanceTrigger {
|
|
1830
|
+
/**
|
|
1831
|
+
* Identifies the distance trigger variant.
|
|
1832
|
+
*/
|
|
1833
|
+
'type': DistanceTriggerTypeEnum;
|
|
1834
|
+
/**
|
|
1835
|
+
* Specifies the non-negative Cartesian distance in millimeters.
|
|
1836
|
+
*/
|
|
1837
|
+
'millimeters': number;
|
|
1838
|
+
'reference': AtReference;
|
|
1839
|
+
}
|
|
1840
|
+
declare const DistanceTriggerTypeEnum: {
|
|
1841
|
+
readonly Distance: "distance";
|
|
1842
|
+
};
|
|
1843
|
+
type DistanceTriggerTypeEnum = typeof DistanceTriggerTypeEnum[keyof typeof DistanceTriggerTypeEnum];
|
|
1551
1844
|
interface DynamicModel {
|
|
1552
1845
|
/**
|
|
1553
1846
|
* Mass of the link in kg
|
|
@@ -1745,6 +2038,32 @@ type ExecuteTrajectoryResponse = {
|
|
|
1745
2038
|
} & PlaybackSpeedResponse | {
|
|
1746
2039
|
kind: 'START_RECEIVED';
|
|
1747
2040
|
} & StartMovementResponse;
|
|
2041
|
+
/**
|
|
2042
|
+
* Defines a motion command whose path is authored explicitly.
|
|
2043
|
+
*/
|
|
2044
|
+
interface ExplicitPathMotionCommand {
|
|
2045
|
+
/**
|
|
2046
|
+
* Identifies the motion command variant.
|
|
2047
|
+
*/
|
|
2048
|
+
'type': ExplicitPathMotionCommandTypeEnum;
|
|
2049
|
+
'target': PoseRef;
|
|
2050
|
+
'path_type': PathType;
|
|
2051
|
+
'motion_settings'?: MotionSettings;
|
|
2052
|
+
/**
|
|
2053
|
+
* Contains a free-form authoring annotation.
|
|
2054
|
+
*/
|
|
2055
|
+
'intent'?: string;
|
|
2056
|
+
/**
|
|
2057
|
+
* Contains string-valued annotations that are preserved on round-trip.
|
|
2058
|
+
*/
|
|
2059
|
+
'metadata'?: {
|
|
2060
|
+
[key: string]: string;
|
|
2061
|
+
};
|
|
2062
|
+
}
|
|
2063
|
+
declare const ExplicitPathMotionCommandTypeEnum: {
|
|
2064
|
+
readonly MotionCommand: "motion_command";
|
|
2065
|
+
};
|
|
2066
|
+
type ExplicitPathMotionCommandTypeEnum = typeof ExplicitPathMotionCommandTypeEnum[keyof typeof ExplicitPathMotionCommandTypeEnum];
|
|
1748
2067
|
/**
|
|
1749
2068
|
* A datapoint inside external joint stream.
|
|
1750
2069
|
*/
|
|
@@ -2039,6 +2358,73 @@ interface ForwardKinematicsValidationError {
|
|
|
2039
2358
|
};
|
|
2040
2359
|
'data'?: ErrorInvalidJointCount;
|
|
2041
2360
|
}
|
|
2361
|
+
/**
|
|
2362
|
+
* Defines a motion command whose path the planner generates from a generator specification.
|
|
2363
|
+
*/
|
|
2364
|
+
interface GeneratedPathMotionCommand {
|
|
2365
|
+
/**
|
|
2366
|
+
* Identifies the motion command variant.
|
|
2367
|
+
*/
|
|
2368
|
+
'type': GeneratedPathMotionCommandTypeEnum;
|
|
2369
|
+
'target': PoseRef;
|
|
2370
|
+
'generator': MotionGenerator;
|
|
2371
|
+
'motion_settings'?: MotionSettings;
|
|
2372
|
+
/**
|
|
2373
|
+
* Contains a free-form authoring annotation.
|
|
2374
|
+
*/
|
|
2375
|
+
'intent'?: string;
|
|
2376
|
+
/**
|
|
2377
|
+
* Contains string-valued annotations that are preserved on round-trip.
|
|
2378
|
+
*/
|
|
2379
|
+
'metadata'?: {
|
|
2380
|
+
[key: string]: string;
|
|
2381
|
+
};
|
|
2382
|
+
}
|
|
2383
|
+
declare const GeneratedPathMotionCommandTypeEnum: {
|
|
2384
|
+
readonly MotionCommand: "motion_command";
|
|
2385
|
+
};
|
|
2386
|
+
type GeneratedPathMotionCommandTypeEnum = typeof GeneratedPathMotionCommandTypeEnum[keyof typeof GeneratedPathMotionCommandTypeEnum];
|
|
2387
|
+
/**
|
|
2388
|
+
* Returns a teaching dataset resolved together with its persisted poses and command routines.
|
|
2389
|
+
*/
|
|
2390
|
+
interface GetDatasetResponse {
|
|
2391
|
+
/**
|
|
2392
|
+
* Unique identifier of the dataset. Must start with a letter and may only contain letters, digits, and hyphens.
|
|
2393
|
+
*/
|
|
2394
|
+
'dataset': string;
|
|
2395
|
+
/**
|
|
2396
|
+
* Human-readable name for the dataset that is shown in the user interface. The slug is derived from this name on download.
|
|
2397
|
+
*/
|
|
2398
|
+
'name'?: string;
|
|
2399
|
+
/**
|
|
2400
|
+
* Revision number of the dataset. NOVA increments this on every change to the dataset.
|
|
2401
|
+
*/
|
|
2402
|
+
'revision': number;
|
|
2403
|
+
/**
|
|
2404
|
+
* Free-form text that describes the purpose of the dataset.
|
|
2405
|
+
*/
|
|
2406
|
+
'description'?: string;
|
|
2407
|
+
/**
|
|
2408
|
+
* Timestamp when the dataset was created, in RFC3339 format.
|
|
2409
|
+
*/
|
|
2410
|
+
'created_at': string;
|
|
2411
|
+
/**
|
|
2412
|
+
* Timestamp when the dataset was last updated, in RFC3339 format.
|
|
2413
|
+
*/
|
|
2414
|
+
'updated_at': string;
|
|
2415
|
+
/**
|
|
2416
|
+
* Contains the persisted poses that belong to this dataset.
|
|
2417
|
+
*/
|
|
2418
|
+
'poses': Array<DatasetPose>;
|
|
2419
|
+
/**
|
|
2420
|
+
* Contains the coordinate systems that belong to this dataset.
|
|
2421
|
+
*/
|
|
2422
|
+
'coordinate_systems': Array<DatasetCoordinateSystem>;
|
|
2423
|
+
/**
|
|
2424
|
+
* Contains the command routines that belong to this dataset.
|
|
2425
|
+
*/
|
|
2426
|
+
'command_routines': Array<CommandRoutine>;
|
|
2427
|
+
}
|
|
2042
2428
|
interface GetKinematicConfiguration422Response {
|
|
2043
2429
|
'detail'?: Array<GetKinematicConfigurationValidationError>;
|
|
2044
2430
|
}
|
|
@@ -2089,6 +2475,40 @@ interface GetTrajectoryResponse {
|
|
|
2089
2475
|
interface HTTPValidationError {
|
|
2090
2476
|
'detail'?: Array<ValidationError2>;
|
|
2091
2477
|
}
|
|
2478
|
+
/**
|
|
2479
|
+
* Defines a conjunction of two or more I/O expressions.
|
|
2480
|
+
*/
|
|
2481
|
+
interface IOAllOfExpression {
|
|
2482
|
+
/**
|
|
2483
|
+
* Identifies the conjunction-expression variant.
|
|
2484
|
+
*/
|
|
2485
|
+
'type': IOAllOfExpressionTypeEnum;
|
|
2486
|
+
/**
|
|
2487
|
+
* Contains the expressions that must all evaluate to `true`.
|
|
2488
|
+
*/
|
|
2489
|
+
'operands': Array<IOExpression>;
|
|
2490
|
+
}
|
|
2491
|
+
declare const IOAllOfExpressionTypeEnum: {
|
|
2492
|
+
readonly AllOf: "all_of";
|
|
2493
|
+
};
|
|
2494
|
+
type IOAllOfExpressionTypeEnum = typeof IOAllOfExpressionTypeEnum[keyof typeof IOAllOfExpressionTypeEnum];
|
|
2495
|
+
/**
|
|
2496
|
+
* Defines a disjunction of two or more I/O expressions.
|
|
2497
|
+
*/
|
|
2498
|
+
interface IOAnyOfExpression {
|
|
2499
|
+
/**
|
|
2500
|
+
* Identifies the disjunction-expression variant.
|
|
2501
|
+
*/
|
|
2502
|
+
'type': IOAnyOfExpressionTypeEnum;
|
|
2503
|
+
/**
|
|
2504
|
+
* Contains the expressions of which at least one must evaluate to `true`.
|
|
2505
|
+
*/
|
|
2506
|
+
'operands': Array<IOExpression>;
|
|
2507
|
+
}
|
|
2508
|
+
declare const IOAnyOfExpressionTypeEnum: {
|
|
2509
|
+
readonly AnyOf: "any_of";
|
|
2510
|
+
};
|
|
2511
|
+
type IOAnyOfExpressionTypeEnum = typeof IOAnyOfExpressionTypeEnum[keyof typeof IOAnyOfExpressionTypeEnum];
|
|
2092
2512
|
/**
|
|
2093
2513
|
* Input/Output boolean value representation.
|
|
2094
2514
|
*/
|
|
@@ -2117,6 +2537,26 @@ type IOBoundary = {
|
|
|
2117
2537
|
} & FloatValue | {
|
|
2118
2538
|
value_type: 'integer';
|
|
2119
2539
|
} & IntegerValue;
|
|
2540
|
+
/**
|
|
2541
|
+
* Defines one baseline-shaped I/O comparison in a boolean expression.
|
|
2542
|
+
*/
|
|
2543
|
+
interface IOConditionExpression {
|
|
2544
|
+
/**
|
|
2545
|
+
* Identifies the condition-expression variant.
|
|
2546
|
+
*/
|
|
2547
|
+
'type': IOConditionExpressionTypeEnum;
|
|
2548
|
+
'io': IOValue;
|
|
2549
|
+
'comparator': Comparator;
|
|
2550
|
+
/**
|
|
2551
|
+
* Inverts this comparison when set to `true`.
|
|
2552
|
+
*/
|
|
2553
|
+
'negate'?: boolean;
|
|
2554
|
+
'io_origin'?: IOOrigin;
|
|
2555
|
+
}
|
|
2556
|
+
declare const IOConditionExpressionTypeEnum: {
|
|
2557
|
+
readonly Condition: "condition";
|
|
2558
|
+
};
|
|
2559
|
+
type IOConditionExpressionTypeEnum = typeof IOConditionExpressionTypeEnum[keyof typeof IOConditionExpressionTypeEnum];
|
|
2120
2560
|
interface IODescription {
|
|
2121
2561
|
/**
|
|
2122
2562
|
* Unique identifier of the input/output.
|
|
@@ -2144,6 +2584,19 @@ declare const IODirection: {
|
|
|
2144
2584
|
readonly IoTypeOutput: "IO_TYPE_OUTPUT";
|
|
2145
2585
|
};
|
|
2146
2586
|
type IODirection = typeof IODirection[keyof typeof IODirection];
|
|
2587
|
+
/**
|
|
2588
|
+
* @type IOExpression
|
|
2589
|
+
* Defines a recursive boolean expression over baseline-shaped I/O comparisons.
|
|
2590
|
+
*/
|
|
2591
|
+
type IOExpression = {
|
|
2592
|
+
type: 'all_of';
|
|
2593
|
+
} & IOAllOfExpression | {
|
|
2594
|
+
type: 'any_of';
|
|
2595
|
+
} & IOAnyOfExpression | {
|
|
2596
|
+
type: 'condition';
|
|
2597
|
+
} & IOConditionExpression | {
|
|
2598
|
+
type: 'not';
|
|
2599
|
+
} & IONotExpression;
|
|
2147
2600
|
interface IOFloatValue {
|
|
2148
2601
|
/**
|
|
2149
2602
|
* Unique identifier of the input/output.
|
|
@@ -2174,6 +2627,20 @@ declare const IOIntegerValueValueTypeEnum: {
|
|
|
2174
2627
|
readonly Integer: "integer";
|
|
2175
2628
|
};
|
|
2176
2629
|
type IOIntegerValueValueTypeEnum = typeof IOIntegerValueValueTypeEnum[keyof typeof IOIntegerValueValueTypeEnum];
|
|
2630
|
+
/**
|
|
2631
|
+
* Defines the negation of one I/O expression.
|
|
2632
|
+
*/
|
|
2633
|
+
interface IONotExpression {
|
|
2634
|
+
/**
|
|
2635
|
+
* Identifies the negation-expression variant.
|
|
2636
|
+
*/
|
|
2637
|
+
'type': IONotExpressionTypeEnum;
|
|
2638
|
+
'operand': IOExpression;
|
|
2639
|
+
}
|
|
2640
|
+
declare const IONotExpressionTypeEnum: {
|
|
2641
|
+
readonly Not: "not";
|
|
2642
|
+
};
|
|
2643
|
+
type IONotExpressionTypeEnum = typeof IONotExpressionTypeEnum[keyof typeof IONotExpressionTypeEnum];
|
|
2177
2644
|
/**
|
|
2178
2645
|
* States the source of the input/output signal.
|
|
2179
2646
|
*/
|
|
@@ -2373,6 +2840,35 @@ declare const InitializeMovementResponseKindEnum: {
|
|
|
2373
2840
|
readonly InitializeReceived: "INITIALIZE_RECEIVED";
|
|
2374
2841
|
};
|
|
2375
2842
|
type InitializeMovementResponseKindEnum = typeof InitializeMovementResponseKindEnum[keyof typeof InitializeMovementResponseKindEnum];
|
|
2843
|
+
/**
|
|
2844
|
+
* Defines a configured pose inline with an optional tool-center-point override.
|
|
2845
|
+
*/
|
|
2846
|
+
interface InlinePoseReference {
|
|
2847
|
+
'pose': Pose;
|
|
2848
|
+
'kinematic_configuration'?: KinematicConfiguration;
|
|
2849
|
+
/**
|
|
2850
|
+
* Unique identifier of a coordinate system.
|
|
2851
|
+
*/
|
|
2852
|
+
'coordinate_system'?: string;
|
|
2853
|
+
/**
|
|
2854
|
+
* Identifies the inline pose-reference variant.
|
|
2855
|
+
*/
|
|
2856
|
+
'type': InlinePoseReferenceTypeEnum;
|
|
2857
|
+
/**
|
|
2858
|
+
* Specifies the tool-center-point identifier for this target.
|
|
2859
|
+
*/
|
|
2860
|
+
'tcp'?: string;
|
|
2861
|
+
/**
|
|
2862
|
+
* Contains string-valued annotations that are preserved on round-trip.
|
|
2863
|
+
*/
|
|
2864
|
+
'metadata'?: {
|
|
2865
|
+
[key: string]: string;
|
|
2866
|
+
};
|
|
2867
|
+
}
|
|
2868
|
+
declare const InlinePoseReferenceTypeEnum: {
|
|
2869
|
+
readonly InlinePose: "inline_pose";
|
|
2870
|
+
};
|
|
2871
|
+
type InlinePoseReferenceTypeEnum = typeof InlinePoseReferenceTypeEnum[keyof typeof InlinePoseReferenceTypeEnum];
|
|
2376
2872
|
/**
|
|
2377
2873
|
* Value of an input/output with integer representation. > The integral value is transmitted as a string to avoid precision loss during conversion to JSON. > Recommended: Use int64 in your implementation. If you want to interact with int64 in numbers, > JS bigint libraries can help you to parse the string into an integral value.
|
|
2378
2874
|
*/
|
|
@@ -2585,6 +3081,26 @@ interface JointPTPMotion {
|
|
|
2585
3081
|
'target_joint_position': Array<number>;
|
|
2586
3082
|
'limits_override'?: LimitsOverride;
|
|
2587
3083
|
}
|
|
3084
|
+
/**
|
|
3085
|
+
* Defines a motion target as a joint configuration in radians.
|
|
3086
|
+
*/
|
|
3087
|
+
interface JointPositionReference {
|
|
3088
|
+
/**
|
|
3089
|
+
* Identifies the joint-position reference variant.
|
|
3090
|
+
*/
|
|
3091
|
+
'type': JointPositionReferenceTypeEnum;
|
|
3092
|
+
'joints': Array<number>;
|
|
3093
|
+
/**
|
|
3094
|
+
* Contains string-valued annotations that are preserved on round-trip.
|
|
3095
|
+
*/
|
|
3096
|
+
'metadata'?: {
|
|
3097
|
+
[key: string]: string;
|
|
3098
|
+
};
|
|
3099
|
+
}
|
|
3100
|
+
declare const JointPositionReferenceTypeEnum: {
|
|
3101
|
+
readonly JointPosition: "joint_position";
|
|
3102
|
+
};
|
|
3103
|
+
type JointPositionReferenceTypeEnum = typeof JointPositionReferenceTypeEnum[keyof typeof JointPositionReferenceTypeEnum];
|
|
2588
3104
|
interface JointTrajectory {
|
|
2589
3105
|
/**
|
|
2590
3106
|
* 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].
|
|
@@ -2925,6 +3441,29 @@ interface ListTrajectoriesResponse {
|
|
|
2925
3441
|
*/
|
|
2926
3442
|
'trajectories'?: Array<string>;
|
|
2927
3443
|
}
|
|
3444
|
+
/**
|
|
3445
|
+
* References a pose from the enclosing dataset.
|
|
3446
|
+
*/
|
|
3447
|
+
interface LocalPoseReference {
|
|
3448
|
+
/**
|
|
3449
|
+
* Identifies the local pose reference variant.
|
|
3450
|
+
*/
|
|
3451
|
+
'type': LocalPoseReferenceTypeEnum;
|
|
3452
|
+
/**
|
|
3453
|
+
* Specifies the referenced pose identifier within the enclosing dataset.
|
|
3454
|
+
*/
|
|
3455
|
+
'pose_id': string;
|
|
3456
|
+
/**
|
|
3457
|
+
* Contains string-valued annotations that are preserved on round-trip.
|
|
3458
|
+
*/
|
|
3459
|
+
'metadata'?: {
|
|
3460
|
+
[key: string]: string;
|
|
3461
|
+
};
|
|
3462
|
+
}
|
|
3463
|
+
declare const LocalPoseReferenceTypeEnum: {
|
|
3464
|
+
readonly LocalPose: "local_pose";
|
|
3465
|
+
};
|
|
3466
|
+
type LocalPoseReferenceTypeEnum = typeof LocalPoseReferenceTypeEnum[keyof typeof LocalPoseReferenceTypeEnum];
|
|
2928
3467
|
declare const Manufacturer: {
|
|
2929
3468
|
readonly Abb: "abb";
|
|
2930
3469
|
readonly Bostondynamics: "bostondynamics";
|
|
@@ -2937,6 +3476,40 @@ declare const Manufacturer: {
|
|
|
2937
3476
|
readonly Yaskawa: "yaskawa";
|
|
2938
3477
|
};
|
|
2939
3478
|
type Manufacturer = typeof Manufacturer[keyof typeof Manufacturer];
|
|
3479
|
+
/**
|
|
3480
|
+
* Emits a named point of interest when execution crosses a trajectory location.
|
|
3481
|
+
*/
|
|
3482
|
+
interface MarkerCommand {
|
|
3483
|
+
/**
|
|
3484
|
+
* Identifies the marker command variant.
|
|
3485
|
+
*/
|
|
3486
|
+
'type': MarkerCommandTypeEnum;
|
|
3487
|
+
/**
|
|
3488
|
+
* Specifies the marker name.
|
|
3489
|
+
*/
|
|
3490
|
+
'name': string;
|
|
3491
|
+
/**
|
|
3492
|
+
* Contains arbitrary structured data emitted with the marker.
|
|
3493
|
+
*/
|
|
3494
|
+
'payload'?: {
|
|
3495
|
+
[key: string]: any;
|
|
3496
|
+
};
|
|
3497
|
+
'at'?: AtTrigger;
|
|
3498
|
+
/**
|
|
3499
|
+
* Contains a free-form authoring annotation.
|
|
3500
|
+
*/
|
|
3501
|
+
'intent'?: string;
|
|
3502
|
+
/**
|
|
3503
|
+
* Contains string-valued annotations that are preserved on round-trip.
|
|
3504
|
+
*/
|
|
3505
|
+
'metadata'?: {
|
|
3506
|
+
[key: string]: string;
|
|
3507
|
+
};
|
|
3508
|
+
}
|
|
3509
|
+
declare const MarkerCommandTypeEnum: {
|
|
3510
|
+
readonly Marker: "marker";
|
|
3511
|
+
};
|
|
3512
|
+
type MarkerCommandTypeEnum = typeof MarkerCommandTypeEnum[keyof typeof MarkerCommandTypeEnum];
|
|
2940
3513
|
interface MergeTrajectories422Response {
|
|
2941
3514
|
'detail'?: Array<MergeTrajectoriesValidationError>;
|
|
2942
3515
|
}
|
|
@@ -3116,6 +3689,13 @@ type MotionCommandBlending = BlendingAuto | BlendingPosition;
|
|
|
3116
3689
|
* @type MotionCommandPath
|
|
3117
3690
|
*/
|
|
3118
3691
|
type MotionCommandPath = PathCartesianPTP | PathCircle | PathCubicSpline | PathDirectionConstrainedCartesianPTP | PathDirectionConstrainedJointPTP | PathJointPTP | PathLine;
|
|
3692
|
+
/**
|
|
3693
|
+
* Defines a planner-generated path to a motion target.
|
|
3694
|
+
*/
|
|
3695
|
+
interface MotionGenerator {
|
|
3696
|
+
'algorithm': CollisionFreeAlgorithm;
|
|
3697
|
+
'constraint'?: DirectionConstraint;
|
|
3698
|
+
}
|
|
3119
3699
|
/**
|
|
3120
3700
|
* Response for motion group configuration lookup.
|
|
3121
3701
|
*/
|
|
@@ -3305,6 +3885,23 @@ interface MotionGroupModelDescription {
|
|
|
3305
3885
|
*/
|
|
3306
3886
|
'is_custom': boolean;
|
|
3307
3887
|
}
|
|
3888
|
+
/**
|
|
3889
|
+
* References the motion group that executes a command routine.
|
|
3890
|
+
*/
|
|
3891
|
+
interface MotionGroupReference {
|
|
3892
|
+
/**
|
|
3893
|
+
* Identifies the motion group reference variant.
|
|
3894
|
+
*/
|
|
3895
|
+
'type': MotionGroupReferenceTypeEnum;
|
|
3896
|
+
/**
|
|
3897
|
+
* Specifies the motion group identifier.
|
|
3898
|
+
*/
|
|
3899
|
+
'id': string;
|
|
3900
|
+
}
|
|
3901
|
+
declare const MotionGroupReferenceTypeEnum: {
|
|
3902
|
+
readonly Id: "id";
|
|
3903
|
+
};
|
|
3904
|
+
type MotionGroupReferenceTypeEnum = typeof MotionGroupReferenceTypeEnum[keyof typeof MotionGroupReferenceTypeEnum];
|
|
3308
3905
|
interface MotionGroupSetup {
|
|
3309
3906
|
/**
|
|
3310
3907
|
* Identifies a single motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported types.
|
|
@@ -3414,6 +4011,13 @@ interface MotionGroupStateJointLimitReached {
|
|
|
3414
4011
|
*/
|
|
3415
4012
|
'limit_reached': Array<boolean>;
|
|
3416
4013
|
}
|
|
4014
|
+
/**
|
|
4015
|
+
* Groups inheritable baseline blending and motion limit settings.
|
|
4016
|
+
*/
|
|
4017
|
+
interface MotionSettings {
|
|
4018
|
+
'blending'?: Blending | null;
|
|
4019
|
+
'limits_override'?: LimitsOverride | null;
|
|
4020
|
+
}
|
|
3417
4021
|
/**
|
|
3418
4022
|
* Error message in case an error occurs during movement execution.
|
|
3419
4023
|
*/
|
|
@@ -3705,67 +4309,204 @@ interface PathCircle {
|
|
|
3705
4309
|
'target_pose': Pose;
|
|
3706
4310
|
'path_definition_name': PathCirclePathDefinitionNameEnum;
|
|
3707
4311
|
}
|
|
3708
|
-
declare const PathCirclePathDefinitionNameEnum: {
|
|
4312
|
+
declare const PathCirclePathDefinitionNameEnum: {
|
|
4313
|
+
readonly PathCircle: "PathCircle";
|
|
4314
|
+
};
|
|
4315
|
+
type PathCirclePathDefinitionNameEnum = typeof PathCirclePathDefinitionNameEnum[keyof typeof PathCirclePathDefinitionNameEnum];
|
|
4316
|
+
/**
|
|
4317
|
+
* A [cubic spline](https://de.wikipedia.org/wiki/Spline-Interpolation) represents a cartesian cubic spline in translative and orientational space from start point to indicated target pose via control points.
|
|
4318
|
+
*/
|
|
4319
|
+
interface PathCubicSpline {
|
|
4320
|
+
'parameters': Array<CubicSplineParameter>;
|
|
4321
|
+
'path_definition_name': PathCubicSplinePathDefinitionNameEnum;
|
|
4322
|
+
}
|
|
4323
|
+
declare const PathCubicSplinePathDefinitionNameEnum: {
|
|
4324
|
+
readonly PathCubicSpline: "PathCubicSpline";
|
|
4325
|
+
};
|
|
4326
|
+
type PathCubicSplinePathDefinitionNameEnum = typeof PathCubicSplinePathDefinitionNameEnum[keyof typeof PathCubicSplinePathDefinitionNameEnum];
|
|
4327
|
+
/**
|
|
4328
|
+
* A direction-constrained cartesian point-to-point motion is a joint point-to-point motion to a target pose in cartesian space while satisfying a direction constraint. The direction constraint is defined by a vector in the world frame and a vector in the TCP frame. The constraint is satisfied when the vectors are aligned with each other. The vectors must be normalized. > **NOTE** > > This motion type is experimental and its behavior may change in future releases.
|
|
4329
|
+
*/
|
|
4330
|
+
interface PathDirectionConstrainedCartesianPTP {
|
|
4331
|
+
'target_pose': ConstrainedPose;
|
|
4332
|
+
'constraint': DirectionConstraint;
|
|
4333
|
+
'path_definition_name': PathDirectionConstrainedCartesianPTPPathDefinitionNameEnum;
|
|
4334
|
+
}
|
|
4335
|
+
declare const PathDirectionConstrainedCartesianPTPPathDefinitionNameEnum: {
|
|
4336
|
+
readonly DirectionConstrainedCartesianPtp: "DirectionConstrainedCartesianPTP";
|
|
4337
|
+
};
|
|
4338
|
+
type PathDirectionConstrainedCartesianPTPPathDefinitionNameEnum = typeof PathDirectionConstrainedCartesianPTPPathDefinitionNameEnum[keyof typeof PathDirectionConstrainedCartesianPTPPathDefinitionNameEnum];
|
|
4339
|
+
/**
|
|
4340
|
+
* A direction-constrained joint point-to-point motion is a direct motion in joint space while satisfying a direction constraint. The direction constraint is defined by a vector in the world frame and a vector in the TCP frame. The constraint is satisfied when the vectors are aligned with each other. The vectors must be normalized. > **NOTE** > > This motion type is experimental and its behavior may change in future releases.
|
|
4341
|
+
*/
|
|
4342
|
+
interface PathDirectionConstrainedJointPTP {
|
|
4343
|
+
'target_joint_position': Array<number>;
|
|
4344
|
+
'constraint': DirectionConstraint;
|
|
4345
|
+
'path_definition_name': PathDirectionConstrainedJointPTPPathDefinitionNameEnum;
|
|
4346
|
+
}
|
|
4347
|
+
declare const PathDirectionConstrainedJointPTPPathDefinitionNameEnum: {
|
|
4348
|
+
readonly DirectionConstrainedJointPtp: "DirectionConstrainedJointPTP";
|
|
4349
|
+
};
|
|
4350
|
+
type PathDirectionConstrainedJointPTPPathDefinitionNameEnum = typeof PathDirectionConstrainedJointPTPPathDefinitionNameEnum[keyof typeof PathDirectionConstrainedJointPTPPathDefinitionNameEnum];
|
|
4351
|
+
/**
|
|
4352
|
+
* Positions an overlay command at a fraction of the anchor motion segment.
|
|
4353
|
+
*/
|
|
4354
|
+
interface PathFractionTrigger {
|
|
4355
|
+
/**
|
|
4356
|
+
* Identifies the path-fraction trigger variant.
|
|
4357
|
+
*/
|
|
4358
|
+
'type': PathFractionTriggerTypeEnum;
|
|
4359
|
+
/**
|
|
4360
|
+
* Specifies the fraction of the anchor motion segment in the half-open range from `zero` to `one`.
|
|
4361
|
+
*/
|
|
4362
|
+
'value': number;
|
|
4363
|
+
}
|
|
4364
|
+
declare const PathFractionTriggerTypeEnum: {
|
|
4365
|
+
readonly PathFraction: "path_fraction";
|
|
4366
|
+
};
|
|
4367
|
+
type PathFractionTriggerTypeEnum = typeof PathFractionTriggerTypeEnum[keyof typeof PathFractionTriggerTypeEnum];
|
|
4368
|
+
/**
|
|
4369
|
+
* A joint point-to-point represents a line in joint space. All joints will be moved synchronously.
|
|
4370
|
+
*/
|
|
4371
|
+
interface PathJointPTP {
|
|
4372
|
+
'target_joint_position': Array<number>;
|
|
4373
|
+
'path_definition_name': PathJointPTPPathDefinitionNameEnum;
|
|
4374
|
+
}
|
|
4375
|
+
declare const PathJointPTPPathDefinitionNameEnum: {
|
|
4376
|
+
readonly PathJointPtp: "PathJointPTP";
|
|
4377
|
+
};
|
|
4378
|
+
type PathJointPTPPathDefinitionNameEnum = typeof PathJointPTPPathDefinitionNameEnum[keyof typeof PathJointPTPPathDefinitionNameEnum];
|
|
4379
|
+
/**
|
|
4380
|
+
* A line represents a straight line from start position to indicated target position. The orientation is calculated via a quaternion [slerp](https://en.wikipedia.org/wiki/Slerp) from start orientation to indicated target orientation.
|
|
4381
|
+
*/
|
|
4382
|
+
interface PathLine {
|
|
4383
|
+
'target_pose': Pose;
|
|
4384
|
+
'path_definition_name': PathLinePathDefinitionNameEnum;
|
|
4385
|
+
}
|
|
4386
|
+
declare const PathLinePathDefinitionNameEnum: {
|
|
4387
|
+
readonly PathLine: "PathLine";
|
|
4388
|
+
};
|
|
4389
|
+
type PathLinePathDefinitionNameEnum = typeof PathLinePathDefinitionNameEnum[keyof typeof PathLinePathDefinitionNameEnum];
|
|
4390
|
+
/**
|
|
4391
|
+
* @type PathType
|
|
4392
|
+
* Defines the baseline path kind and path-specific parameters without an embedded target.
|
|
4393
|
+
*/
|
|
4394
|
+
type PathType = {
|
|
4395
|
+
path_definition_name: 'PathCartesianPTP';
|
|
4396
|
+
} & PathTypeCartesianPTP | {
|
|
4397
|
+
path_definition_name: 'PathCircle';
|
|
4398
|
+
} & PathTypeCircle | {
|
|
4399
|
+
path_definition_name: 'PathCubicSpline';
|
|
4400
|
+
} & PathTypeCubicSpline | {
|
|
4401
|
+
path_definition_name: 'PathDirectionConstrainedCartesianPTP';
|
|
4402
|
+
} & PathTypeDirectionConstrainedCartesianPTP | {
|
|
4403
|
+
path_definition_name: 'PathDirectionConstrainedJointPTP';
|
|
4404
|
+
} & PathTypeDirectionConstrainedJointPTP | {
|
|
4405
|
+
path_definition_name: 'PathJointPTP';
|
|
4406
|
+
} & PathTypeJointPTP | {
|
|
4407
|
+
path_definition_name: 'PathLine';
|
|
4408
|
+
} & PathTypeLine;
|
|
4409
|
+
/**
|
|
4410
|
+
* Defines a Cartesian point-to-point path after lifting the target into the motion command. The kinematic configuration is not repeated here because the lifted target resolves to a configured pose that already carries it.
|
|
4411
|
+
*/
|
|
4412
|
+
interface PathTypeCartesianPTP {
|
|
4413
|
+
/**
|
|
4414
|
+
* Identifies the Cartesian point-to-point path variant.
|
|
4415
|
+
*/
|
|
4416
|
+
'path_definition_name': PathTypeCartesianPTPPathDefinitionNameEnum;
|
|
4417
|
+
}
|
|
4418
|
+
declare const PathTypeCartesianPTPPathDefinitionNameEnum: {
|
|
4419
|
+
readonly PathCartesianPtp: "PathCartesianPTP";
|
|
4420
|
+
};
|
|
4421
|
+
type PathTypeCartesianPTPPathDefinitionNameEnum = typeof PathTypeCartesianPTPPathDefinitionNameEnum[keyof typeof PathTypeCartesianPTPPathDefinitionNameEnum];
|
|
4422
|
+
/**
|
|
4423
|
+
* Defines a circular Cartesian path after lifting the target into the motion command.
|
|
4424
|
+
*/
|
|
4425
|
+
interface PathTypeCircle {
|
|
4426
|
+
/**
|
|
4427
|
+
* Identifies the circular Cartesian path variant.
|
|
4428
|
+
*/
|
|
4429
|
+
'path_definition_name': PathTypeCirclePathDefinitionNameEnum;
|
|
4430
|
+
/**
|
|
4431
|
+
* References the intermediate pose that shapes the circular path.
|
|
4432
|
+
*/
|
|
4433
|
+
'via_pose': PoseRef;
|
|
4434
|
+
}
|
|
4435
|
+
declare const PathTypeCirclePathDefinitionNameEnum: {
|
|
3709
4436
|
readonly PathCircle: "PathCircle";
|
|
3710
4437
|
};
|
|
3711
|
-
type
|
|
4438
|
+
type PathTypeCirclePathDefinitionNameEnum = typeof PathTypeCirclePathDefinitionNameEnum[keyof typeof PathTypeCirclePathDefinitionNameEnum];
|
|
3712
4439
|
/**
|
|
3713
|
-
*
|
|
4440
|
+
* Defines a cubic-spline Cartesian path after lifting the target into the motion command.
|
|
3714
4441
|
*/
|
|
3715
|
-
interface
|
|
3716
|
-
|
|
3717
|
-
|
|
4442
|
+
interface PathTypeCubicSpline {
|
|
4443
|
+
/**
|
|
4444
|
+
* Identifies the cubic-spline Cartesian path variant.
|
|
4445
|
+
*/
|
|
4446
|
+
'path_definition_name': PathTypeCubicSplinePathDefinitionNameEnum;
|
|
4447
|
+
/**
|
|
4448
|
+
* Specifies the intermediate points of the spline.
|
|
4449
|
+
*/
|
|
4450
|
+
'via_points': Array<CubicSplineViaPoint>;
|
|
3718
4451
|
}
|
|
3719
|
-
declare const
|
|
4452
|
+
declare const PathTypeCubicSplinePathDefinitionNameEnum: {
|
|
3720
4453
|
readonly PathCubicSpline: "PathCubicSpline";
|
|
3721
4454
|
};
|
|
3722
|
-
type
|
|
4455
|
+
type PathTypeCubicSplinePathDefinitionNameEnum = typeof PathTypeCubicSplinePathDefinitionNameEnum[keyof typeof PathTypeCubicSplinePathDefinitionNameEnum];
|
|
3723
4456
|
/**
|
|
3724
|
-
*
|
|
4457
|
+
* Defines a direction-constrained Cartesian path after lifting the target into the motion command.
|
|
3725
4458
|
*/
|
|
3726
|
-
interface
|
|
3727
|
-
|
|
4459
|
+
interface PathTypeDirectionConstrainedCartesianPTP {
|
|
4460
|
+
/**
|
|
4461
|
+
* Identifies the direction-constrained Cartesian path variant.
|
|
4462
|
+
*/
|
|
4463
|
+
'path_definition_name': PathTypeDirectionConstrainedCartesianPTPPathDefinitionNameEnum;
|
|
3728
4464
|
'constraint': DirectionConstraint;
|
|
3729
|
-
'path_definition_name': PathDirectionConstrainedCartesianPTPPathDefinitionNameEnum;
|
|
3730
4465
|
}
|
|
3731
|
-
declare const
|
|
3732
|
-
readonly
|
|
4466
|
+
declare const PathTypeDirectionConstrainedCartesianPTPPathDefinitionNameEnum: {
|
|
4467
|
+
readonly PathDirectionConstrainedCartesianPtp: "PathDirectionConstrainedCartesianPTP";
|
|
3733
4468
|
};
|
|
3734
|
-
type
|
|
4469
|
+
type PathTypeDirectionConstrainedCartesianPTPPathDefinitionNameEnum = typeof PathTypeDirectionConstrainedCartesianPTPPathDefinitionNameEnum[keyof typeof PathTypeDirectionConstrainedCartesianPTPPathDefinitionNameEnum];
|
|
3735
4470
|
/**
|
|
3736
|
-
*
|
|
4471
|
+
* Defines a direction-constrained joint-space path after lifting the target into the motion command.
|
|
3737
4472
|
*/
|
|
3738
|
-
interface
|
|
3739
|
-
|
|
4473
|
+
interface PathTypeDirectionConstrainedJointPTP {
|
|
4474
|
+
/**
|
|
4475
|
+
* Identifies the direction-constrained joint-space path variant.
|
|
4476
|
+
*/
|
|
4477
|
+
'path_definition_name': PathTypeDirectionConstrainedJointPTPPathDefinitionNameEnum;
|
|
3740
4478
|
'constraint': DirectionConstraint;
|
|
3741
|
-
'path_definition_name': PathDirectionConstrainedJointPTPPathDefinitionNameEnum;
|
|
3742
4479
|
}
|
|
3743
|
-
declare const
|
|
3744
|
-
readonly
|
|
4480
|
+
declare const PathTypeDirectionConstrainedJointPTPPathDefinitionNameEnum: {
|
|
4481
|
+
readonly PathDirectionConstrainedJointPtp: "PathDirectionConstrainedJointPTP";
|
|
3745
4482
|
};
|
|
3746
|
-
type
|
|
4483
|
+
type PathTypeDirectionConstrainedJointPTPPathDefinitionNameEnum = typeof PathTypeDirectionConstrainedJointPTPPathDefinitionNameEnum[keyof typeof PathTypeDirectionConstrainedJointPTPPathDefinitionNameEnum];
|
|
3747
4484
|
/**
|
|
3748
|
-
*
|
|
4485
|
+
* Defines a joint-space point-to-point path after lifting the target into the motion command.
|
|
3749
4486
|
*/
|
|
3750
|
-
interface
|
|
3751
|
-
|
|
3752
|
-
|
|
4487
|
+
interface PathTypeJointPTP {
|
|
4488
|
+
/**
|
|
4489
|
+
* Identifies the joint-space point-to-point path variant.
|
|
4490
|
+
*/
|
|
4491
|
+
'path_definition_name': PathTypeJointPTPPathDefinitionNameEnum;
|
|
3753
4492
|
}
|
|
3754
|
-
declare const
|
|
4493
|
+
declare const PathTypeJointPTPPathDefinitionNameEnum: {
|
|
3755
4494
|
readonly PathJointPtp: "PathJointPTP";
|
|
3756
4495
|
};
|
|
3757
|
-
type
|
|
4496
|
+
type PathTypeJointPTPPathDefinitionNameEnum = typeof PathTypeJointPTPPathDefinitionNameEnum[keyof typeof PathTypeJointPTPPathDefinitionNameEnum];
|
|
3758
4497
|
/**
|
|
3759
|
-
*
|
|
4498
|
+
* Defines a straight Cartesian path after lifting the target into the motion command.
|
|
3760
4499
|
*/
|
|
3761
|
-
interface
|
|
3762
|
-
|
|
3763
|
-
|
|
4500
|
+
interface PathTypeLine {
|
|
4501
|
+
/**
|
|
4502
|
+
* Identifies the straight Cartesian path variant.
|
|
4503
|
+
*/
|
|
4504
|
+
'path_definition_name': PathTypeLinePathDefinitionNameEnum;
|
|
3764
4505
|
}
|
|
3765
|
-
declare const
|
|
4506
|
+
declare const PathTypeLinePathDefinitionNameEnum: {
|
|
3766
4507
|
readonly PathLine: "PathLine";
|
|
3767
4508
|
};
|
|
3768
|
-
type
|
|
4509
|
+
type PathTypeLinePathDefinitionNameEnum = typeof PathTypeLinePathDefinitionNameEnum[keyof typeof PathTypeLinePathDefinitionNameEnum];
|
|
3769
4510
|
/**
|
|
3770
4511
|
* Request to pause executing action chunks. If successful, `execute` jogging state in [MotionGroupState](MotionGroupState.yaml) is set to `PAUSED_BY_USER`.
|
|
3771
4512
|
*/
|
|
@@ -3858,6 +4599,31 @@ interface PauseOnIO {
|
|
|
3858
4599
|
'comparator': Comparator;
|
|
3859
4600
|
'io_origin': IOOrigin;
|
|
3860
4601
|
}
|
|
4602
|
+
/**
|
|
4603
|
+
* Monitors an I/O expression from a trajectory location and pauses while it is `true`.
|
|
4604
|
+
*/
|
|
4605
|
+
interface PauseOnIOCommand {
|
|
4606
|
+
/**
|
|
4607
|
+
* Identifies the conditionally pausing command variant.
|
|
4608
|
+
*/
|
|
4609
|
+
'type': PauseOnIOCommandTypeEnum;
|
|
4610
|
+
'condition': IOExpression;
|
|
4611
|
+
'at'?: AtTrigger;
|
|
4612
|
+
/**
|
|
4613
|
+
* Contains a free-form authoring annotation.
|
|
4614
|
+
*/
|
|
4615
|
+
'intent'?: string;
|
|
4616
|
+
/**
|
|
4617
|
+
* Contains string-valued annotations that are preserved on round-trip.
|
|
4618
|
+
*/
|
|
4619
|
+
'metadata'?: {
|
|
4620
|
+
[key: string]: string;
|
|
4621
|
+
};
|
|
4622
|
+
}
|
|
4623
|
+
declare const PauseOnIOCommandTypeEnum: {
|
|
4624
|
+
readonly PauseOnIo: "pause_on_io";
|
|
4625
|
+
};
|
|
4626
|
+
type PauseOnIOCommandTypeEnum = typeof PauseOnIOCommandTypeEnum[keyof typeof PauseOnIOCommandTypeEnum];
|
|
3861
4627
|
interface Payload {
|
|
3862
4628
|
'name': string;
|
|
3863
4629
|
/**
|
|
@@ -4020,6 +4786,19 @@ interface Pose {
|
|
|
4020
4786
|
*/
|
|
4021
4787
|
'orientation'?: Array<number>;
|
|
4022
4788
|
}
|
|
4789
|
+
/**
|
|
4790
|
+
* @type PoseRef
|
|
4791
|
+
* Defines a referenced, inline, or joint-position target for a motion command.
|
|
4792
|
+
*/
|
|
4793
|
+
type PoseRef = {
|
|
4794
|
+
type: 'dataset_pose';
|
|
4795
|
+
} & DatasetPoseReference | {
|
|
4796
|
+
type: 'inline_pose';
|
|
4797
|
+
} & InlinePoseReference | {
|
|
4798
|
+
type: 'joint_position';
|
|
4799
|
+
} & JointPositionReference | {
|
|
4800
|
+
type: 'local_pose';
|
|
4801
|
+
} & LocalPoseReference;
|
|
4023
4802
|
/**
|
|
4024
4803
|
* A pose waypoint for action chunk streaming. > **NOTE** > > This type is experimental and its behavior may change in future releases.
|
|
4025
4804
|
*/
|
|
@@ -4810,6 +5589,32 @@ interface SetIO {
|
|
|
4810
5589
|
'location': number;
|
|
4811
5590
|
'io_origin': IOOrigin;
|
|
4812
5591
|
}
|
|
5592
|
+
/**
|
|
5593
|
+
* Sets an I/O output without blocking trajectory execution.
|
|
5594
|
+
*/
|
|
5595
|
+
interface SetIOCommand {
|
|
5596
|
+
/**
|
|
5597
|
+
* Identifies the set-output command variant.
|
|
5598
|
+
*/
|
|
5599
|
+
'type': SetIOCommandTypeEnum;
|
|
5600
|
+
'io_value': IOValue;
|
|
5601
|
+
'io_origin': IOOrigin;
|
|
5602
|
+
'at'?: AtTrigger;
|
|
5603
|
+
/**
|
|
5604
|
+
* Contains a free-form authoring annotation.
|
|
5605
|
+
*/
|
|
5606
|
+
'intent'?: string;
|
|
5607
|
+
/**
|
|
5608
|
+
* Contains string-valued annotations that are preserved on round-trip.
|
|
5609
|
+
*/
|
|
5610
|
+
'metadata'?: {
|
|
5611
|
+
[key: string]: string;
|
|
5612
|
+
};
|
|
5613
|
+
}
|
|
5614
|
+
declare const SetIOCommandTypeEnum: {
|
|
5615
|
+
readonly SetIo: "set_io";
|
|
5616
|
+
};
|
|
5617
|
+
type SetIOCommandTypeEnum = typeof SetIOCommandTypeEnum[keyof typeof SetIOCommandTypeEnum];
|
|
4813
5618
|
/**
|
|
4814
5619
|
* Defines available system modes of the robot system. Short versions (no \"ROBOT_SYSTEM_\" prefix) are provided, reusing strings from [getMode](#/operations/getMode) responses.
|
|
4815
5620
|
*/
|
|
@@ -5162,6 +5967,24 @@ interface TechmanControllerRtrs {
|
|
|
5162
5967
|
*/
|
|
5163
5968
|
'tmrtc_port'?: number;
|
|
5164
5969
|
}
|
|
5970
|
+
/**
|
|
5971
|
+
* Positions an overlay command at a duration from a motion boundary.
|
|
5972
|
+
*/
|
|
5973
|
+
interface TimeTrigger {
|
|
5974
|
+
/**
|
|
5975
|
+
* Identifies the time trigger variant.
|
|
5976
|
+
*/
|
|
5977
|
+
'type': TimeTriggerTypeEnum;
|
|
5978
|
+
/**
|
|
5979
|
+
* Specifies the non-negative duration in seconds.
|
|
5980
|
+
*/
|
|
5981
|
+
'seconds': number;
|
|
5982
|
+
'reference': AtReference;
|
|
5983
|
+
}
|
|
5984
|
+
declare const TimeTriggerTypeEnum: {
|
|
5985
|
+
readonly Time: "time";
|
|
5986
|
+
};
|
|
5987
|
+
type TimeTriggerTypeEnum = typeof TimeTriggerTypeEnum[keyof typeof TimeTriggerTypeEnum];
|
|
5165
5988
|
/**
|
|
5166
5989
|
* An inline tool collider wrapped for discriminator support.
|
|
5167
5990
|
*/
|
|
@@ -5520,6 +6343,35 @@ interface VirtualRobotConfiguration {
|
|
|
5520
6343
|
*/
|
|
5521
6344
|
'content': string;
|
|
5522
6345
|
}
|
|
6346
|
+
/**
|
|
6347
|
+
* Blocks at a trajectory location until an I/O expression becomes `true`.
|
|
6348
|
+
*/
|
|
6349
|
+
interface WaitForIOCommand {
|
|
6350
|
+
/**
|
|
6351
|
+
* Identifies the blocking I/O-wait command variant.
|
|
6352
|
+
*/
|
|
6353
|
+
'type': WaitForIOCommandTypeEnum;
|
|
6354
|
+
'condition': IOExpression;
|
|
6355
|
+
/**
|
|
6356
|
+
* Specifies the optional non-negative timeout in milliseconds. No specification means no timeout.
|
|
6357
|
+
*/
|
|
6358
|
+
'timeout_ms'?: number;
|
|
6359
|
+
'at'?: AtTrigger;
|
|
6360
|
+
/**
|
|
6361
|
+
* Contains a free-form authoring annotation.
|
|
6362
|
+
*/
|
|
6363
|
+
'intent'?: string;
|
|
6364
|
+
/**
|
|
6365
|
+
* Contains string-valued annotations that are preserved on round-trip.
|
|
6366
|
+
*/
|
|
6367
|
+
'metadata'?: {
|
|
6368
|
+
[key: string]: string;
|
|
6369
|
+
};
|
|
6370
|
+
}
|
|
6371
|
+
declare const WaitForIOCommandTypeEnum: {
|
|
6372
|
+
readonly WaitForIo: "wait_for_io";
|
|
6373
|
+
};
|
|
6374
|
+
type WaitForIOCommandTypeEnum = typeof WaitForIOCommandTypeEnum[keyof typeof WaitForIOCommandTypeEnum];
|
|
5523
6375
|
/**
|
|
5524
6376
|
* The value to compare with the current value of the input/output.
|
|
5525
6377
|
*/
|
|
@@ -5530,6 +6382,34 @@ interface WaitForIOEventRequest {
|
|
|
5530
6382
|
*/
|
|
5531
6383
|
'comparator': Comparator;
|
|
5532
6384
|
}
|
|
6385
|
+
/**
|
|
6386
|
+
* Blocks at a trajectory location for a fixed duration.
|
|
6387
|
+
*/
|
|
6388
|
+
interface WaitForTimeCommand {
|
|
6389
|
+
/**
|
|
6390
|
+
* Identifies the timed wait command variant.
|
|
6391
|
+
*/
|
|
6392
|
+
'type': WaitForTimeCommandTypeEnum;
|
|
6393
|
+
/**
|
|
6394
|
+
* Specifies the non-negative wait duration in milliseconds.
|
|
6395
|
+
*/
|
|
6396
|
+
'duration_ms': number;
|
|
6397
|
+
'at'?: AtTrigger;
|
|
6398
|
+
/**
|
|
6399
|
+
* Contains a free-form authoring annotation.
|
|
6400
|
+
*/
|
|
6401
|
+
'intent'?: string;
|
|
6402
|
+
/**
|
|
6403
|
+
* Contains string-valued annotations that are preserved on round-trip.
|
|
6404
|
+
*/
|
|
6405
|
+
'metadata'?: {
|
|
6406
|
+
[key: string]: string;
|
|
6407
|
+
};
|
|
6408
|
+
}
|
|
6409
|
+
declare const WaitForTimeCommandTypeEnum: {
|
|
6410
|
+
readonly WaitForTime: "wait_for_time";
|
|
6411
|
+
};
|
|
6412
|
+
type WaitForTimeCommandTypeEnum = typeof WaitForTimeCommandTypeEnum[keyof typeof WaitForTimeCommandTypeEnum];
|
|
5533
6413
|
/**
|
|
5534
6414
|
* A waypoint for action chunk streaming. > **NOTE** > > This type is experimental and its behavior may change in future releases.
|
|
5535
6415
|
*/
|
|
@@ -7855,6 +8735,122 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
|
|
|
7855
8735
|
*/
|
|
7856
8736
|
waitForIOEvent(cell: string, controller: string, waitForIOEventRequest: WaitForIOEventRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<boolean, any, {}>>;
|
|
7857
8737
|
}
|
|
8738
|
+
/**
|
|
8739
|
+
* DatasetsApi - axios parameter creator
|
|
8740
|
+
*/
|
|
8741
|
+
declare const DatasetsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
8742
|
+
/**
|
|
8743
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Localize a pose that is expressed in the `world` coordinate system into the given dataset coordinate system. This is the inverse of the resolve operation: the pose is transformed through the whole chain of parent coordinate systems within the dataset.
|
|
8744
|
+
* @summary Localize Pose from World (Dataset)
|
|
8745
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8746
|
+
* @param {string} dataset Specifies the dataset identifier.
|
|
8747
|
+
* @param {string} coordinateSystem Unique identifier addressing a coordinate system within a teaching dataset.
|
|
8748
|
+
* @param {Pose} pose The pose expressed in the `world` coordinate system.
|
|
8749
|
+
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
8750
|
+
* @param {*} [options] Override http request option.
|
|
8751
|
+
* @throws {RequiredError}
|
|
8752
|
+
*/
|
|
8753
|
+
localizeDatasetCoordinateSystemPose: (cell: string, dataset: string, coordinateSystem: string, pose: Pose, revision?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8754
|
+
/**
|
|
8755
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Resolve a pose that is expressed relative to the given dataset coordinate system into the `world` coordinate system. The pose is transformed through the whole chain of parent coordinate systems within the dataset.
|
|
8756
|
+
* @summary Resolve Pose to World (Dataset)
|
|
8757
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8758
|
+
* @param {string} dataset Specifies the dataset identifier.
|
|
8759
|
+
* @param {string} coordinateSystem Unique identifier addressing a coordinate system within a teaching dataset.
|
|
8760
|
+
* @param {Pose} pose The pose expressed relative to the given coordinate system.
|
|
8761
|
+
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
8762
|
+
* @param {*} [options] Override http request option.
|
|
8763
|
+
* @throws {RequiredError}
|
|
8764
|
+
*/
|
|
8765
|
+
resolveDatasetCoordinateSystemPose: (cell: string, dataset: string, coordinateSystem: string, pose: Pose, revision?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8766
|
+
};
|
|
8767
|
+
/**
|
|
8768
|
+
* DatasetsApi - functional programming interface
|
|
8769
|
+
*/
|
|
8770
|
+
declare const DatasetsApiFp: (configuration?: Configuration) => {
|
|
8771
|
+
/**
|
|
8772
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Localize a pose that is expressed in the `world` coordinate system into the given dataset coordinate system. This is the inverse of the resolve operation: the pose is transformed through the whole chain of parent coordinate systems within the dataset.
|
|
8773
|
+
* @summary Localize Pose from World (Dataset)
|
|
8774
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8775
|
+
* @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
|
+
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
8779
|
+
* @param {*} [options] Override http request option.
|
|
8780
|
+
* @throws {RequiredError}
|
|
8781
|
+
*/
|
|
8782
|
+
localizeDatasetCoordinateSystemPose(cell: string, dataset: string, coordinateSystem: string, pose: Pose, revision?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Pose>>;
|
|
8783
|
+
/**
|
|
8784
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Resolve a pose that is expressed relative to the given dataset coordinate system into the `world` coordinate system. The pose is transformed through the whole chain of parent coordinate systems within the dataset.
|
|
8785
|
+
* @summary Resolve Pose to World (Dataset)
|
|
8786
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8787
|
+
* @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
|
+
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
8791
|
+
* @param {*} [options] Override http request option.
|
|
8792
|
+
* @throws {RequiredError}
|
|
8793
|
+
*/
|
|
8794
|
+
resolveDatasetCoordinateSystemPose(cell: string, dataset: string, coordinateSystem: string, pose: Pose, revision?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Pose>>;
|
|
8795
|
+
};
|
|
8796
|
+
/**
|
|
8797
|
+
* DatasetsApi - factory interface
|
|
8798
|
+
*/
|
|
8799
|
+
declare const DatasetsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
8800
|
+
/**
|
|
8801
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Localize a pose that is expressed in the `world` coordinate system into the given dataset coordinate system. This is the inverse of the resolve operation: the pose is transformed through the whole chain of parent coordinate systems within the dataset.
|
|
8802
|
+
* @summary Localize Pose from World (Dataset)
|
|
8803
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8804
|
+
* @param {string} dataset Specifies the dataset identifier.
|
|
8805
|
+
* @param {string} coordinateSystem Unique identifier addressing a coordinate system within a teaching dataset.
|
|
8806
|
+
* @param {Pose} pose The pose expressed in the `world` coordinate system.
|
|
8807
|
+
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
8808
|
+
* @param {*} [options] Override http request option.
|
|
8809
|
+
* @throws {RequiredError}
|
|
8810
|
+
*/
|
|
8811
|
+
localizeDatasetCoordinateSystemPose(cell: string, dataset: string, coordinateSystem: string, pose: Pose, revision?: number, options?: RawAxiosRequestConfig): AxiosPromise<Pose>;
|
|
8812
|
+
/**
|
|
8813
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Resolve a pose that is expressed relative to the given dataset coordinate system into the `world` coordinate system. The pose is transformed through the whole chain of parent coordinate systems within the dataset.
|
|
8814
|
+
* @summary Resolve Pose to World (Dataset)
|
|
8815
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8816
|
+
* @param {string} dataset Specifies the dataset identifier.
|
|
8817
|
+
* @param {string} coordinateSystem Unique identifier addressing a coordinate system within a teaching dataset.
|
|
8818
|
+
* @param {Pose} pose The pose expressed relative to the given coordinate system.
|
|
8819
|
+
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
8820
|
+
* @param {*} [options] Override http request option.
|
|
8821
|
+
* @throws {RequiredError}
|
|
8822
|
+
*/
|
|
8823
|
+
resolveDatasetCoordinateSystemPose(cell: string, dataset: string, coordinateSystem: string, pose: Pose, revision?: number, options?: RawAxiosRequestConfig): AxiosPromise<Pose>;
|
|
8824
|
+
};
|
|
8825
|
+
/**
|
|
8826
|
+
* DatasetsApi - object-oriented interface
|
|
8827
|
+
*/
|
|
8828
|
+
declare class DatasetsApi extends BaseAPI {
|
|
8829
|
+
/**
|
|
8830
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Localize a pose that is expressed in the `world` coordinate system into the given dataset coordinate system. This is the inverse of the resolve operation: the pose is transformed through the whole chain of parent coordinate systems within the dataset.
|
|
8831
|
+
* @summary Localize Pose from World (Dataset)
|
|
8832
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8833
|
+
* @param {string} dataset Specifies the dataset identifier.
|
|
8834
|
+
* @param {string} coordinateSystem Unique identifier addressing a coordinate system within a teaching dataset.
|
|
8835
|
+
* @param {Pose} pose The pose expressed in the `world` coordinate system.
|
|
8836
|
+
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
8837
|
+
* @param {*} [options] Override http request option.
|
|
8838
|
+
* @throws {RequiredError}
|
|
8839
|
+
*/
|
|
8840
|
+
localizeDatasetCoordinateSystemPose(cell: string, dataset: string, coordinateSystem: string, pose: Pose, revision?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<Pose, any, {}>>;
|
|
8841
|
+
/**
|
|
8842
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Resolve a pose that is expressed relative to the given dataset coordinate system into the `world` coordinate system. The pose is transformed through the whole chain of parent coordinate systems within the dataset.
|
|
8843
|
+
* @summary Resolve Pose to World (Dataset)
|
|
8844
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8845
|
+
* @param {string} dataset Specifies the dataset identifier.
|
|
8846
|
+
* @param {string} coordinateSystem Unique identifier addressing a coordinate system within a teaching dataset.
|
|
8847
|
+
* @param {Pose} pose The pose expressed relative to the given coordinate system.
|
|
8848
|
+
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
8849
|
+
* @param {*} [options] Override http request option.
|
|
8850
|
+
* @throws {RequiredError}
|
|
8851
|
+
*/
|
|
8852
|
+
resolveDatasetCoordinateSystemPose(cell: string, dataset: string, coordinateSystem: string, pose: Pose, revision?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<Pose, any, {}>>;
|
|
8853
|
+
}
|
|
7858
8854
|
/**
|
|
7859
8855
|
* JoggingApi - axios parameter creator
|
|
7860
8856
|
*/
|
|
@@ -10813,6 +11809,182 @@ declare class SystemApi extends BaseAPI {
|
|
|
10813
11809
|
*/
|
|
10814
11810
|
updateNovaVersion(updateNovaVersionRequest: UpdateNovaVersionRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
|
|
10815
11811
|
}
|
|
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
|
+
}
|
|
10816
11988
|
/**
|
|
10817
11989
|
* TrajectoryCachingApi - axios parameter creator
|
|
10818
11990
|
*/
|
|
@@ -12450,4 +13622,4 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
|
|
|
12450
13622
|
setIOValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
|
|
12451
13623
|
}
|
|
12452
13624
|
//#endregion
|
|
12453
|
-
export { AbbConfdata, AbbConfiguredPose, AbbController, AbbControllerEgmServer, AbbControllerKindEnum, AbbPose, ActionChunkRequest, ActionChunkRequestMessageTypeEnum, ActionChunkResponse, ActionChunkResponseKindEnum, ActionChunkStreamingApi, ActionChunkStreamingApiAxiosParamCreator, ActionChunkStreamingApiFactory, ActionChunkStreamingApiFp, ActivateLicenseRequest, AddTrajectoryError, AddTrajectoryErrorData, AddTrajectoryRequest, AddTrajectoryResponse, AddVirtualControllerMotionGroupRequest, ApiVersion, App, ApplicationApi, ApplicationApiAxiosParamCreator, ApplicationApiFactory, ApplicationApiFp, AxisRange, BASE_PATH, BUSInputsOutputsApi, BUSInputsOutputsApiAxiosParamCreator, BUSInputsOutputsApiFactory, BUSInputsOutputsApiFp, BaseAPI, Behavior, BlendingAuto, BlendingAutoBlendingNameEnum, BlendingPosition, BlendingPositionBlendingNameEnum, BlendingSpace, BooleanValue, BooleanValueValueTypeEnum, BostondynamicsController, BostondynamicsControllerKindEnum, BostondynamicsControllerRobotTypeEnum, Box, BoxBoxTypeEnum, BoxShapeTypeEnum, BusIODescription, BusIOModbusClient, BusIOModbusClientBusTypeEnum, BusIOModbusServer, BusIOModbusServerBusTypeEnum, BusIOModbusTCPClient, BusIOModbusTCPClientNetworkTypeEnum, BusIOModbusTCPServer, BusIOModbusTCPServerNetworkTypeEnum, BusIOModbusVirtual, BusIOModbusVirtualBusTypeEnum, BusIOProfinet, BusIOProfinetBusTypeEnum, BusIOProfinetDefaultRoute, BusIOProfinetIpConfig, BusIOProfinetNetwork, BusIOProfinetSlot, BusIOProfinetVirtual, BusIOProfinetVirtualBusTypeEnum, BusIOSnap7, BusIOSnap7BusTypeEnum, BusIOType, BusIOsState, BusIOsStateEnum, COLLECTION_FORMATS, CapabilityEntry, Capsule, CapsuleShapeTypeEnum, CartesianLimits, CartesianVelocity, Cell, CellApi, CellApiAxiosParamCreator, CellApiFactory, CellApiFp, CloudConfigStatus, CloudConfigStatusConfigured, CloudConfigStatusConfiguredStatusEnum, CloudConfigStatusNotConfigured, CloudConfigStatusNotConfiguredStatusEnum, CloudConfiguration, CloudConnectionError, CloudConnectionErrorError, CloudConnectionErrorInvalidToken, CloudConnectionErrorInvalidTokenCodeEnum, CloudConnectionErrorInvalidTokenDetails, CloudConnectionErrorInvalidTokenDetailsCloudResponse, CloudConnectionErrorLeafnodeConnectionError, CloudConnectionErrorLeafnodeConnectionErrorCodeEnum, CloudConnectionErrorLeafnodeConnectionErrorDetails, CloudConnectionErrorLeafnodeConnectionTimeout, CloudConnectionErrorLeafnodeConnectionTimeoutCodeEnum, CloudConnectionErrorLeafnodeRestartTimeout, CloudConnectionErrorLeafnodeRestartTimeoutCodeEnum, CloudConnectionErrorNatsFailed, CloudConnectionErrorNatsFailedCodeEnum, CloudConnectionErrorNatsFailedDetails, CloudConnectionErrorUnexpectedResponse, CloudConnectionErrorUnexpectedResponseCodeEnum, CloudConnectionErrorUnexpectedResponseDetails, CloudConnectionErrorUnexpectedResponseDetailsCloudResponse, CloudConnectionRequest, CloudDisconnectionError, CloudDisconnectionStatusDisconnected, CloudDisconnectionStatusDisconnectedStatusEnum, CloudDisconnectionStatusDisconnecting, CloudDisconnectionStatusDisconnectingStatusEnum, CloudRegistrationSuccessResponse, CloudStatus, CloudStatusChecks, CloudStatusErrors, Collider, ColliderShape, ColliderValue, ColliderValueOrKey, ColliderValueSourceEnum, Collision, CollisionContact, CollisionError, CollisionErrorKindEnum, CollisionFreeAlgorithm, CollisionMotionGroup, CollisionSetup, CollisionSetupValue, CollisionSetupValueOrKey, CollisionSetupValueSourceEnum, Comparator, Configuration, ConfigurationArchiveStatus, ConfigurationArchiveStatusCreating, ConfigurationArchiveStatusCreatingStatusEnum, ConfigurationArchiveStatusError, ConfigurationArchiveStatusErrorStatusEnum, ConfigurationArchiveStatusSuccess, ConfigurationArchiveStatusSuccessStatusEnum, ConfigurationParameters, ConfigurationResource, ConfiguredPose, ConfiguredPoseInverse422Response, ConfiguredPoseInverseFailedResponse, ConfiguredPoseInverseRequest, ConfiguredPoseInverseResponse, ConfiguredPoseInverseResponseResponse, ConstrainedPose, ContainerEnvironmentInner, ContainerImage, ContainerImageSecretsInner, ContainerResources, ContainerStorage, ControllerApi, ControllerApiAxiosParamCreator, ControllerApiFactory, ControllerApiFp, ControllerDescription, ControllerInputsOutputsApi, ControllerInputsOutputsApiAxiosParamCreator, ControllerInputsOutputsApiFactory, ControllerInputsOutputsApiFp, ControllerNetworkInterface, ConvertVendorConfiguredPose422Response, ConvertVendorConfiguredPoseRequest, ConvertVendorConfiguredPoseRequestVendorConfiguredPoses, ConvexHull, ConvexHullShapeTypeEnum, CoordinateSystem, CoordinateSystemData, CopyMotionGroupModelRequest, CubicSplineParameter, CycleTime, Cylinder, CylinderShapeTypeEnum, DHParameter, Direction, DirectionConstraint, DirectionConstraintConstraintNameEnum, DynamicModel, ErrorDirectionConstraintNotMet, ErrorDirectionConstraintNotMetErrorFeedbackNameEnum, ErrorDirectionConstraintNotNormalized, ErrorDirectionConstraintNotNormalizedErrorFeedbackNameEnum, ErrorInvalidJointCount, ErrorInvalidJointCountErrorFeedbackNameEnum, ErrorJointLimitExceeded, ErrorJointLimitExceededErrorFeedbackNameEnum, ErrorJointPositionCollision, ErrorJointPositionCollisionErrorFeedbackNameEnum, ErrorMaxIterationsExceeded, ErrorMaxIterationsExceededErrorFeedbackNameEnum, ErrorMotionGroupKeyMismatch, ErrorUnsupportedOperation, ErrorUnsupportedOperationErrorFeedbackNameEnum, Execute, ExecuteActionChunksRequest, ExecuteActionChunksResponse, ExecuteDetails, ExecuteJoggingRequest, ExecuteJoggingResponse, ExecuteTrajectoryRequest, ExecuteTrajectoryResponse, ExternalJointStreamDatapoint, ExternalJointStreamRequest, FanucController, FanucControllerKindEnum, FeedbackAxisRangeExceeded, FeedbackAxisRangeExceededErrorFeedbackNameEnum, FeedbackCollision, FeedbackCollisionErrorFeedbackNameEnum, FeedbackCommandsMissing, FeedbackCommandsMissingErrorFeedbackNameEnum, FeedbackCubicSplineIsNotIncreasing, FeedbackCubicSplineIsNotIncreasingErrorFeedbackNameEnum, FeedbackCubicSplineNotAtStartPose, FeedbackCubicSplineNotAtStartPoseErrorFeedbackNameEnum, FeedbackDirectionConstraintNoSolutionExists, FeedbackDirectionConstraintNoSolutionExistsErrorFeedbackNameEnum, FeedbackDirectionConstraintNotMet, FeedbackDirectionConstraintNotMetErrorFeedbackNameEnum, FeedbackDirectionConstraintNotNormalized, FeedbackDirectionConstraintNotNormalizedErrorFeedbackNameEnum, FeedbackInvalidDof, FeedbackInvalidDofErrorFeedbackNameEnum, FeedbackInvalidNanValue, FeedbackInvalidNanValueErrorFeedbackNameEnum, FeedbackInvalidSamplingTime, FeedbackInvalidSamplingTimeErrorFeedbackNameEnum, FeedbackJointLimitExceeded, FeedbackJointLimitExceededErrorFeedbackNameEnum, FeedbackNoSolutionInCurrentConfiguration, FeedbackNoSolutionInCurrentConfigurationErrorFeedbackNameEnum, FeedbackOutOfWorkspace, FeedbackOutOfWorkspaceErrorFeedbackNameEnum, FeedbackSingularity, FeedbackSingularityErrorFeedbackNameEnum, FeedbackStartJointsMissing, FeedbackStartJointsMissingErrorFeedbackNameEnum, FeedbackTorqueExceeded, FeedbackTorqueExceededErrorFeedbackNameEnum, Flag, FlangePayload, FloatValue, FloatValueValueTypeEnum, ForwardKinematics422Response, ForwardKinematicsRequest, ForwardKinematicsResponse, ForwardKinematicsValidationError, GetKinematicConfiguration422Response, GetKinematicConfigurationRequest, GetKinematicConfigurationResponse, GetKinematicConfigurationValidationError, GetKinematicConfigurationValidationErrorAllOfData, GetTrajectoryResponse, HTTPValidationError, IOBooleanValue, IOBooleanValueValueTypeEnum, IOBoundary, IODescription, IODirection, IOFloatValue, IOFloatValueValueTypeEnum, IOIntegerValue, IOIntegerValueValueTypeEnum, IOOrigin, IOValue, IOValueType, ImageCredentials, InconsistentTrajectorySizeError, InconsistentTrajectorySizeErrorInconsistentTrajectorySize, InconsistentTrajectorySizeErrorKindEnum, InertiaTensor, InitializeActionChunksRequest, InitializeActionChunksRequestMessageTypeEnum, InitializeActionChunksResponse, InitializeActionChunksResponseKindEnum, InitializeJoggingRequest, InitializeJoggingRequestMessageTypeEnum, InitializeJoggingResponse, InitializeJoggingResponseKindEnum, InitializeMovementRequest, InitializeMovementRequestMessageTypeEnum, InitializeMovementRequestTrajectory, InitializeMovementResponse, InitializeMovementResponseKindEnum, IntegerValue, IntegerValueValueTypeEnum, InvalidDofError, InvalidDofErrorInvalidDof, InvalidDofErrorKindEnum, InverseFeedbackAtIndex, InverseFeedbackAtIndexErrorFeedback, InverseKinematics422Response, InverseKinematicsRequest, InverseKinematicsResponse, InverseKinematicsValidationError, InverseKinematicsValidationErrorAllOfData, JoggingApi, JoggingApiAxiosParamCreator, JoggingApiFactory, JoggingApiFp, JoggingDetails, JoggingDetailsKindEnum, JoggingDetailsState, JoggingPausedByUser, JoggingPausedByUserKindEnum, JoggingPausedNearCollision, JoggingPausedNearCollisionKindEnum, JoggingPausedNearJointLimit, JoggingPausedNearJointLimitKindEnum, JoggingPausedNearSingularity, JoggingPausedNearSingularityKindEnum, JoggingPausedOnIO, JoggingPausedOnIOKindEnum, JoggingRunning, JoggingRunningKindEnum, JointLimitExceededError, JointLimitExceededErrorKindEnum, JointLimits, JointPTPMotion, JointTrajectory, JointTypeEnum, JointVelocityRequest, JointVelocityRequestMessageTypeEnum, JointVelocityResponse, JointVelocityResponseKindEnum, JointWaypoint, JointWaypointKindEnum, KinematicBranch, KinematicBranchElbow, KinematicBranchShoulder, KinematicBranchWrist, KinematicConfiguration, KinematicModel, KinematicsApi, KinematicsApiAxiosParamCreator, KinematicsApiFactory, KinematicsApiFp, KukaConfiguredPose, KukaController, KukaControllerKindEnum, KukaControllerRsiServer, KukaPose, KukaStatusAndTurnBits, License, LicenseApi, LicenseApiAxiosParamCreator, LicenseApiFactory, LicenseApiFp, LicenseStatus, LicenseStatusEnum, LimitRange, LimitSet, LimitsOverride, LinkChainValue, LinkChainValueOrKey, LinkChainValueSourceEnum, ListTrajectoriesResponse, Manufacturer, MergeTrajectories422Response, MergeTrajectoriesError, MergeTrajectoriesErrorErrorFeedback, MergeTrajectoriesRequest, MergeTrajectoriesResponse, MergeTrajectoriesResponseFeedbackInner, MergeTrajectoriesSegment, MergeTrajectoriesValidationError, MidpointInsertionAlgorithm, MidpointInsertionAlgorithmAlgorithmNameEnum, ModbusIO, ModbusIOArea, ModbusIOByteOrder, ModbusIOData, ModbusIOTypeEnum, ModelError, MotionCommand, MotionCommandBlending, MotionCommandPath, MotionGroupApi, MotionGroupApiAxiosParamCreator, MotionGroupApiFactory, MotionGroupApiFp, MotionGroupConfiguration, MotionGroupDescription, MotionGroupFromJson, MotionGroupFromType, MotionGroupInfo, MotionGroupJoints, MotionGroupModelCatalog, MotionGroupModelDescription, MotionGroupModelsApi, MotionGroupModelsApiAxiosParamCreator, MotionGroupModelsApiFactory, MotionGroupModelsApiFp, MotionGroupSetup, MotionGroupState, MotionGroupStateJointLimitReached, MovementErrorResponse, MovementErrorResponseKindEnum, MultiCollisionSetup, MultiErrorInvalidJointCount, MultiErrorJointLimitExceeded, MultiErrorJointPositionCollision, MultiJointTrajectory, MultiSearchCollisionFree422Response, MultiSearchCollisionFreeRequest, MultiSearchCollisionFreeResponse, MultiSearchCollisionFreeResponseResponse, MultiSearchCollisionFreeValidationError, MultiSearchCollisionFreeValidationErrorAllOfData, NOVACloudApi, NOVACloudApiAxiosParamCreator, NOVACloudApiFactory, NOVACloudApiFp, NanValueError, NanValueErrorKindEnum, NanValueErrorNanValue, NetworkBackend, NetworkDevice, NetworkInterface, NetworkLinkState, NetworkState, OpMode, OperatingState, OperationLimits, OperationMode, OrientationType, PathCartesianPTP, PathCartesianPTPPathDefinitionNameEnum, PathCircle, PathCirclePathDefinitionNameEnum, PathCubicSpline, PathCubicSplinePathDefinitionNameEnum, PathDirectionConstrainedCartesianPTP, PathDirectionConstrainedCartesianPTPPathDefinitionNameEnum, PathDirectionConstrainedJointPTP, PathDirectionConstrainedJointPTPPathDefinitionNameEnum, PathJointPTP, PathJointPTPPathDefinitionNameEnum, PathLine, PathLinePathDefinitionNameEnum, PauseActionChunksRequest, PauseActionChunksRequestMessageTypeEnum, PauseActionChunksResponse, PauseActionChunksResponseKindEnum, PauseJoggingRequest, PauseJoggingRequestMessageTypeEnum, PauseJoggingResponse, PauseJoggingResponseKindEnum, PauseMovementRequest, PauseMovementRequestMessageTypeEnum, PauseMovementResponse, PauseMovementResponseKindEnum, PauseOnIO, Payload, Plan422Response, PlanCollisionFreeFailedResponse, PlanCollisionFreeRequest, PlanCollisionFreeResponse, PlanCollisionFreeResponseResponse, PlanTrajectoryFailedResponse, PlanTrajectoryFailedResponseErrorFeedback, PlanTrajectoryRequest, PlanTrajectoryResponse, PlanTrajectoryResponseResponse, PlanValidationError, PlanValidationErrorAllOfData, Plane, PlaneShapeTypeEnum, PlaybackSpeedRequest, PlaybackSpeedRequestMessageTypeEnum, PlaybackSpeedResponse, PlaybackSpeedResponseKindEnum, Pose, PoseWaypoint, PoseWaypointKindEnum, ProfinetDescription, ProfinetIO, ProfinetIOData, ProfinetIODirection, ProfinetIOTypeEnum, ProfinetInputOutputConfig, ProfinetSlotDescription, ProfinetSlotOffset, ProfinetSubSlotDescription, Program, ProgramApi, ProgramApiAxiosParamCreator, ProgramApiFactory, ProgramApiFp, ProgramRun, ProgramRunState, ProgramStartRequest, ProjectJointPositionDirectionConstraint422Response, ProjectJointPositionDirectionConstraintRequest, ProjectJointPositionDirectionConstraintResponse, ProjectJointPositionDirectionConstraintValidationError, ProjectJointPositionDirectionConstraintValidationErrorAllOfData, RRTConnectAlgorithm, RRTConnectAlgorithmAlgorithmNameEnum, RRTConnectAlgorithmStepSize, Range, Rectangle, RectangleShapeTypeEnum, RectangularCapsule, RectangularCapsuleShapeTypeEnum, ReleaseChannel, RequestArgs, RequiredError, RobotConfigurationsApi, RobotConfigurationsApiAxiosParamCreator, RobotConfigurationsApiFactory, RobotConfigurationsApiFp, RobotController, RobotControllerConfiguration, RobotControllerConfigurationRequest, RobotControllerState, RobotSystemMode, RobotTcp, RobotTcpData, SafetyGeometry, SafetyGeometryBox, SafetyGeometryCapsule, SafetyGeometryLozenge, SafetyGeometryPlane, SafetyGeometryPrism, SafetyGeometrySphere, SafetyStateType, SafetyZone, SafetyZonePose, SafetyZones, ServiceGroup, ServiceStatus, ServiceStatusPhase, ServiceStatusResponse, ServiceStatusSeverity, ServiceStatusStatus, SessionApi, SessionApiAxiosParamCreator, SessionApiFactory, SessionApiFp, SessionResponse, SetIO, SettableRobotSystemMode, SingularityHandling, SingularityTypeEnum, Snap7IO, Snap7IOArea, Snap7IOData, Snap7IODirection, Snap7IOTypeEnum, Sphere, SphereShapeTypeEnum, StartMovementRequest, StartMovementRequestMessageTypeEnum, StartMovementResponse, StartMovementResponseKindEnum, StartOnIO, StaubliController, StaubliControllerKindEnum, StaubliControllerRtiServer, StopActionChunksRequest, StopActionChunksRequestMessageTypeEnum, StopActionChunksResponse, StopActionChunksResponseKindEnum, StorageKey, StorageKeySourceEnum, StoreCollisionComponentsApi, StoreCollisionComponentsApiAxiosParamCreator, StoreCollisionComponentsApiFactory, StoreCollisionComponentsApiFp, StoreCollisionSetupsApi, StoreCollisionSetupsApiAxiosParamCreator, StoreCollisionSetupsApiFactory, StoreCollisionSetupsApiFp, StoreObjectApi, StoreObjectApiAxiosParamCreator, StoreObjectApiFactory, StoreObjectApiFp, StreamIOValuesResponse, SystemApi, SystemApiAxiosParamCreator, SystemApiFactory, SystemApiFp, TcpOffset, TcpRequiredError, TcpRequiredErrorKindEnum, TcpVelocityRequest, TcpVelocityRequestMessageTypeEnum, TcpVelocityResponse, TcpVelocityResponseKindEnum, TechmanController, TechmanControllerKindEnum, TechmanControllerRtrs, ToolValue, ToolValueOrKey, ToolValueSourceEnum, TorqueExceededError, TorqueExceededErrorKindEnum, TorqueExceededErrorTorqueExceeded, TrajectoryCachingApi, TrajectoryCachingApiAxiosParamCreator, TrajectoryCachingApiFactory, TrajectoryCachingApiFp, TrajectoryData, TrajectoryDataMessageTypeEnum, TrajectoryDetails, TrajectoryDetailsKindEnum, TrajectoryDetailsState, TrajectoryEnded, TrajectoryEndedKindEnum, TrajectoryExecutionApi, TrajectoryExecutionApiAxiosParamCreator, TrajectoryExecutionApiFactory, TrajectoryExecutionApiFp, TrajectoryId, TrajectoryIdMessageTypeEnum, TrajectoryPausedByUser, TrajectoryPausedByUserKindEnum, TrajectoryPausedOnIO, TrajectoryPausedOnIOKindEnum, TrajectoryPlanningApi, TrajectoryPlanningApiAxiosParamCreator, TrajectoryPlanningApiFactory, TrajectoryPlanningApiFp, TrajectoryRunning, TrajectoryRunningKindEnum, TrajectorySection, TrajectoryWaitForIO, TrajectoryWaitForIOKindEnum, UnitType, UnitreeController, UnitreeControllerKindEnum, UnitreeControllerRobotTypeEnum, UniversalrobotsController, UniversalrobotsControllerKindEnum, UnpauseActionChunksRequest, UnpauseActionChunksRequestMessageTypeEnum, UnpauseActionChunksResponse, UnpauseActionChunksResponseKindEnum, UpdateCellVersionRequest, UpdateNovaVersionRequest, User, ValidationError, ValidationError2, ValidationErrorLocInner, VersionApi, VersionApiAxiosParamCreator, VersionApiFactory, VersionApiFp, VirtualController, VirtualControllerApi, VirtualControllerApiAxiosParamCreator, VirtualControllerApiFactory, VirtualControllerApiFp, VirtualControllerBehaviorApi, VirtualControllerBehaviorApiAxiosParamCreator, VirtualControllerBehaviorApiFactory, VirtualControllerBehaviorApiFp, VirtualControllerInputsOutputsApi, VirtualControllerInputsOutputsApiAxiosParamCreator, VirtualControllerInputsOutputsApiFactory, VirtualControllerInputsOutputsApiFp, VirtualControllerKindEnum, VirtualRobotConfiguration, WaitForIOEventRequest, Waypoint, WaypointCoordinates, YaskawaController, YaskawaControllerKindEnum, ZodValidationError, ZodValidationErrorError, ZodValidationErrorErrorCodeEnum, ZodValidationErrorErrorDetailsInner, ZodValidationErrorErrorDetailsInnerPathInner, operationServerMap };
|
|
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 };
|