@wandelbots/nova-js 4.4.0-nova-api-dev.26-7-0-dev-4 → 4.4.0-nova-api-dev.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/{Nova-asaP_dDy.d.mts → Nova-CYiZje7Y.d.mts} +1212 -40
- package/dist/Nova-CYiZje7Y.d.mts.map +1 -0
- package/dist/experimental/math/index.d.mts +1 -1
- package/dist/experimental/nats/index.d.mts +1 -1
- package/dist/v2/index.d.mts +2 -2
- package/dist/v2/index.mjs +397 -2
- package/dist/v2/index.mjs.map +1 -1
- package/package.json +2 -2
- package/dist/Nova-asaP_dDy.d.mts.map +0 -1
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { n as MockNovaInstance, t as AutoReconnectingWebsocket } from "./AutoReconnectingWebsocket-NVyczzLi.mjs";
|
|
2
2
|
import * as _$axios from "axios";
|
|
3
3
|
import { AxiosInstance, AxiosPromise, RawAxiosRequestConfig } from "axios";
|
|
4
|
-
//#region node_modules/.pnpm/@wandelbots+nova-api@26.7.0-dev.
|
|
4
|
+
//#region node_modules/.pnpm/@wandelbots+nova-api@26.7.0-dev.6/node_modules/@wandelbots/nova-api/dist/v2/index.d.ts
|
|
5
5
|
//#region v2/configuration.d.ts
|
|
6
6
|
/**
|
|
7
7
|
* Wandelbots NOVA API
|
|
8
8
|
* Interact with robots in an easy and intuitive way.
|
|
9
9
|
*
|
|
10
|
-
* The version of the OpenAPI document: 2.
|
|
10
|
+
* The version of the OpenAPI document: 2.7.0 dev
|
|
11
11
|
*
|
|
12
12
|
*
|
|
13
13
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -326,6 +326,25 @@ interface App {
|
|
|
326
326
|
*/
|
|
327
327
|
'diagnosis_path'?: string;
|
|
328
328
|
}
|
|
329
|
+
/**
|
|
330
|
+
* Indicates which motion boundary an offset is measured from.
|
|
331
|
+
*/
|
|
332
|
+
declare const AtReference: {
|
|
333
|
+
readonly Previous: "previous";
|
|
334
|
+
readonly Next: "next";
|
|
335
|
+
};
|
|
336
|
+
type AtReference = typeof AtReference[keyof typeof AtReference];
|
|
337
|
+
/**
|
|
338
|
+
* @type AtTrigger
|
|
339
|
+
* Positions an overlay command relative to its nearest preceding motion command.
|
|
340
|
+
*/
|
|
341
|
+
type AtTrigger = {
|
|
342
|
+
type: 'distance';
|
|
343
|
+
} & DistanceTrigger | {
|
|
344
|
+
type: 'path_fraction';
|
|
345
|
+
} & PathFractionTrigger | {
|
|
346
|
+
type: 'time';
|
|
347
|
+
} & TimeTrigger;
|
|
329
348
|
/**
|
|
330
349
|
* Per-joint constraint beyond the 8 inverse kinematic branches. Maps a joint index (0-based) to an allowed angle interval (in radians).
|
|
331
350
|
*/
|
|
@@ -342,6 +361,15 @@ declare const Behavior: {
|
|
|
342
361
|
readonly BehaviorExternalSource: "BEHAVIOR_EXTERNAL_SOURCE";
|
|
343
362
|
};
|
|
344
363
|
type Behavior = typeof Behavior[keyof typeof Behavior];
|
|
364
|
+
/**
|
|
365
|
+
* @type Blending
|
|
366
|
+
* Specifies baseline blending behavior for a motion command.
|
|
367
|
+
*/
|
|
368
|
+
type Blending = {
|
|
369
|
+
type: 'blending_auto';
|
|
370
|
+
} & BlendingAuto | {
|
|
371
|
+
type: 'blending_position';
|
|
372
|
+
} & BlendingPosition;
|
|
345
373
|
interface BlendingAuto {
|
|
346
374
|
/**
|
|
347
375
|
* Auto-blending is used to keep a constant velocity when blending between two motion commands. To use auto-blending, the TCP velocity limit must be set. It changes the TCP path around the target point of the motion command. The value represents the percentage of the original velocity. Auto-blending is always performed in cartesian space.
|
|
@@ -1183,6 +1211,61 @@ type CollisionSetupValueOrKey = {
|
|
|
1183
1211
|
} & StorageKey | {
|
|
1184
1212
|
source: 'value';
|
|
1185
1213
|
} & CollisionSetupValue;
|
|
1214
|
+
/**
|
|
1215
|
+
* @type Command
|
|
1216
|
+
* Defines one planning or execution-overlay command in a command routine.
|
|
1217
|
+
*/
|
|
1218
|
+
type Command = ExplicitPathMotionCommand | GeneratedPathMotionCommand | MarkerCommand | PauseOnIOCommand | SetIOCommand | WaitForIOCommand | WaitForTimeCommand;
|
|
1219
|
+
/**
|
|
1220
|
+
* Defines an ordered, persistable command routine that belongs to a teaching dataset.
|
|
1221
|
+
*/
|
|
1222
|
+
interface CommandRoutine {
|
|
1223
|
+
/**
|
|
1224
|
+
* Unique identifier of the command routine within the dataset. Must start with a letter and may only contain letters, digits, and hyphens.
|
|
1225
|
+
*/
|
|
1226
|
+
'command_routine': string;
|
|
1227
|
+
/**
|
|
1228
|
+
* Unique identifier of the dataset. Must start with a letter and may only contain letters, digits, and hyphens.
|
|
1229
|
+
*/
|
|
1230
|
+
'dataset'?: string;
|
|
1231
|
+
/**
|
|
1232
|
+
* Specifies the human-readable command-routine name.
|
|
1233
|
+
*/
|
|
1234
|
+
'name'?: string;
|
|
1235
|
+
/**
|
|
1236
|
+
* Describes the command routine.
|
|
1237
|
+
*/
|
|
1238
|
+
'description'?: string;
|
|
1239
|
+
/**
|
|
1240
|
+
* References the motion group that executes this routine. It is absent when no motion group context exists.
|
|
1241
|
+
*/
|
|
1242
|
+
'motion_group'?: MotionGroupReference;
|
|
1243
|
+
'motion_group_setup': MotionGroupSetup | null;
|
|
1244
|
+
/**
|
|
1245
|
+
* Specifies the routine-level tool-center-point identifier. It is absent when no motion group context exists.
|
|
1246
|
+
*/
|
|
1247
|
+
'tcp'?: string;
|
|
1248
|
+
'start_joint_position'?: Array<number>;
|
|
1249
|
+
'default_motion_settings'?: MotionSettings;
|
|
1250
|
+
/**
|
|
1251
|
+
* Contains the ordered planning and execution-overlay commands.
|
|
1252
|
+
*/
|
|
1253
|
+
'commands': Array<Command>;
|
|
1254
|
+
/**
|
|
1255
|
+
* Contains string-valued annotations that are preserved on round-trip.
|
|
1256
|
+
*/
|
|
1257
|
+
'metadata'?: {
|
|
1258
|
+
[key: string]: string;
|
|
1259
|
+
};
|
|
1260
|
+
/**
|
|
1261
|
+
* Records when the command routine was created.
|
|
1262
|
+
*/
|
|
1263
|
+
'created_at'?: string;
|
|
1264
|
+
/**
|
|
1265
|
+
* Records when the command routine was last updated.
|
|
1266
|
+
*/
|
|
1267
|
+
'updated_at'?: string;
|
|
1268
|
+
}
|
|
1186
1269
|
/**
|
|
1187
1270
|
* Comparator for the comparison of two values. The comparator is used to compare two values and return a boolean result. The default comparator is unknown.
|
|
1188
1271
|
*/
|
|
@@ -1265,9 +1348,9 @@ interface ConfiguredPose {
|
|
|
1265
1348
|
'pose': Pose;
|
|
1266
1349
|
'kinematic_configuration'?: KinematicConfiguration;
|
|
1267
1350
|
/**
|
|
1268
|
-
*
|
|
1351
|
+
* Unique identifier of a coordinate system.
|
|
1269
1352
|
*/
|
|
1270
|
-
'
|
|
1353
|
+
'coordinate_system'?: string;
|
|
1271
1354
|
}
|
|
1272
1355
|
interface ConfiguredPoseInverse422Response {
|
|
1273
1356
|
'detail'?: Array<ValidationError>;
|
|
@@ -1437,6 +1520,24 @@ interface CoordinateSystem {
|
|
|
1437
1520
|
*/
|
|
1438
1521
|
'coordinate_system': string;
|
|
1439
1522
|
}
|
|
1523
|
+
/**
|
|
1524
|
+
* A coordinate system defines a frame of reference in 3D space. Its pose is expressed relative to its parent coordinate system, which allows building a hierarchy of frames.
|
|
1525
|
+
*/
|
|
1526
|
+
interface CoordinateSystem2 {
|
|
1527
|
+
/**
|
|
1528
|
+
* Unique identifier of a coordinate system.
|
|
1529
|
+
*/
|
|
1530
|
+
'coordinate_system': string;
|
|
1531
|
+
/**
|
|
1532
|
+
* Human-readable name for the coordinate system that is shown in the user interface.
|
|
1533
|
+
*/
|
|
1534
|
+
'name'?: string;
|
|
1535
|
+
/**
|
|
1536
|
+
* Unique identifier of a coordinate system.
|
|
1537
|
+
*/
|
|
1538
|
+
'parent'?: string;
|
|
1539
|
+
'pose': Pose;
|
|
1540
|
+
}
|
|
1440
1541
|
interface CoordinateSystemData {
|
|
1441
1542
|
/**
|
|
1442
1543
|
* Human readable name of this coordinate system.
|
|
@@ -1465,10 +1566,52 @@ interface CopyMotionGroupModelRequest {
|
|
|
1465
1566
|
*/
|
|
1466
1567
|
'name': string;
|
|
1467
1568
|
}
|
|
1569
|
+
/**
|
|
1570
|
+
* Creates a new teaching dataset together with its poses and command routines in a single request.
|
|
1571
|
+
*/
|
|
1572
|
+
interface CreateDatasetRequest {
|
|
1573
|
+
/**
|
|
1574
|
+
* Unique identifier of the dataset. Must start with a letter and may only contain letters, digits, and hyphens.
|
|
1575
|
+
*/
|
|
1576
|
+
'dataset': string;
|
|
1577
|
+
/**
|
|
1578
|
+
* Human-readable name for the dataset that is shown in the user interface. The slug is derived from this name on download.
|
|
1579
|
+
*/
|
|
1580
|
+
'name'?: string;
|
|
1581
|
+
/**
|
|
1582
|
+
* Free-form text that describes the purpose of the dataset.
|
|
1583
|
+
*/
|
|
1584
|
+
'description'?: string;
|
|
1585
|
+
/**
|
|
1586
|
+
* Contains the poses that are created together with the dataset. Server-managed identifiers are assigned on creation.
|
|
1587
|
+
*/
|
|
1588
|
+
'poses'?: Array<DatasetPose>;
|
|
1589
|
+
/**
|
|
1590
|
+
* Contains the coordinate systems that are created together with the dataset. Server-managed identifiers are assigned on creation.
|
|
1591
|
+
*/
|
|
1592
|
+
'coordinate_systems'?: Array<DatasetCoordinateSystem>;
|
|
1593
|
+
/**
|
|
1594
|
+
* Contains the command routines that are created together with the dataset. Server-managed identifiers are assigned on creation.
|
|
1595
|
+
*/
|
|
1596
|
+
'command_routines'?: Array<CommandRoutine>;
|
|
1597
|
+
}
|
|
1468
1598
|
interface CubicSplineParameter {
|
|
1469
1599
|
'pose': Pose;
|
|
1470
1600
|
'path_parameter': number;
|
|
1471
1601
|
}
|
|
1602
|
+
/**
|
|
1603
|
+
* Defines one intermediate point of a cubic spline path. It mirrors the baseline cubic spline parameter but references the pose instead of inlining it, so spline points can be taught and shared like any other pose.
|
|
1604
|
+
*/
|
|
1605
|
+
interface CubicSplineViaPoint {
|
|
1606
|
+
/**
|
|
1607
|
+
* References the intermediate pose of the spline.
|
|
1608
|
+
*/
|
|
1609
|
+
'pose': PoseRef;
|
|
1610
|
+
/**
|
|
1611
|
+
* Specifies the baseline path parameter of this intermediate point.
|
|
1612
|
+
*/
|
|
1613
|
+
'path_parameter': number;
|
|
1614
|
+
}
|
|
1472
1615
|
interface CycleTime {
|
|
1473
1616
|
/**
|
|
1474
1617
|
* Cycle time of controller communication in [ms].
|
|
@@ -1519,6 +1662,138 @@ interface DHParameter {
|
|
|
1519
1662
|
'reverse_rotation_direction'?: boolean;
|
|
1520
1663
|
'type'?: JointTypeEnum;
|
|
1521
1664
|
}
|
|
1665
|
+
/**
|
|
1666
|
+
* A dataset is a collection of poses that you can group and manage together.
|
|
1667
|
+
*/
|
|
1668
|
+
interface Dataset {
|
|
1669
|
+
/**
|
|
1670
|
+
* Unique identifier of the dataset. Must start with a letter and may only contain letters, digits, and hyphens.
|
|
1671
|
+
*/
|
|
1672
|
+
'dataset': string;
|
|
1673
|
+
/**
|
|
1674
|
+
* Human-readable name for the dataset that is shown in the user interface. The slug is derived from this name on download.
|
|
1675
|
+
*/
|
|
1676
|
+
'name'?: string;
|
|
1677
|
+
/**
|
|
1678
|
+
* Revision number of the dataset. NOVA increments this on every change to the dataset.
|
|
1679
|
+
*/
|
|
1680
|
+
'revision': number;
|
|
1681
|
+
/**
|
|
1682
|
+
* Free-form text that describes the purpose of the dataset.
|
|
1683
|
+
*/
|
|
1684
|
+
'description'?: string;
|
|
1685
|
+
/**
|
|
1686
|
+
* Timestamp when the dataset was created, in RFC3339 format.
|
|
1687
|
+
*/
|
|
1688
|
+
'created_at': string;
|
|
1689
|
+
/**
|
|
1690
|
+
* Timestamp when the dataset was last updated, in RFC3339 format.
|
|
1691
|
+
*/
|
|
1692
|
+
'updated_at': string;
|
|
1693
|
+
}
|
|
1694
|
+
/**
|
|
1695
|
+
* A dataset coordinate system is a coordinate system that belongs to a dataset. It extends the shared `CoordinateSystem` with a reference to the dataset it belongs to.
|
|
1696
|
+
*/
|
|
1697
|
+
interface DatasetCoordinateSystem {
|
|
1698
|
+
/**
|
|
1699
|
+
* Unique identifier of a coordinate system.
|
|
1700
|
+
*/
|
|
1701
|
+
'coordinate_system': string;
|
|
1702
|
+
/**
|
|
1703
|
+
* Human-readable name for the coordinate system that is shown in the user interface.
|
|
1704
|
+
*/
|
|
1705
|
+
'name'?: string;
|
|
1706
|
+
/**
|
|
1707
|
+
* Unique identifier of a coordinate system.
|
|
1708
|
+
*/
|
|
1709
|
+
'parent'?: string;
|
|
1710
|
+
'pose': Pose;
|
|
1711
|
+
/**
|
|
1712
|
+
* Unique identifier of the dataset. Must start with a letter and may only contain letters, digits, and hyphens.
|
|
1713
|
+
*/
|
|
1714
|
+
'dataset': string;
|
|
1715
|
+
}
|
|
1716
|
+
/**
|
|
1717
|
+
* A dataset pose is a taught pose that belongs to a dataset. It extends the shared `ConfiguredPose` with dataset-specific fields such as an identifier, human-readable name, timestamps, and metadata.
|
|
1718
|
+
*/
|
|
1719
|
+
interface DatasetPose {
|
|
1720
|
+
'pose': Pose;
|
|
1721
|
+
'kinematic_configuration'?: KinematicConfiguration;
|
|
1722
|
+
/**
|
|
1723
|
+
* Unique identifier of a coordinate system.
|
|
1724
|
+
*/
|
|
1725
|
+
'coordinate_system'?: string;
|
|
1726
|
+
/**
|
|
1727
|
+
* Unique identifier of the pose within the dataset. Must start with a letter and may only contain letters, digits, and hyphens.
|
|
1728
|
+
*/
|
|
1729
|
+
'dataset_pose': string;
|
|
1730
|
+
/**
|
|
1731
|
+
* Unique identifier of the dataset. Must start with a letter and may only contain letters, digits, and hyphens.
|
|
1732
|
+
*/
|
|
1733
|
+
'dataset': string;
|
|
1734
|
+
/**
|
|
1735
|
+
* Human-readable name for the pose that is shown in the user interface.
|
|
1736
|
+
*/
|
|
1737
|
+
'name'?: string;
|
|
1738
|
+
/**
|
|
1739
|
+
* Free-form text that describes the purpose of the pose.
|
|
1740
|
+
*/
|
|
1741
|
+
'description'?: string;
|
|
1742
|
+
/**
|
|
1743
|
+
* Timestamp when the pose was created, in RFC3339 format.
|
|
1744
|
+
*/
|
|
1745
|
+
'created_at'?: string;
|
|
1746
|
+
/**
|
|
1747
|
+
* Timestamp when the pose was last updated, in RFC3339 format.
|
|
1748
|
+
*/
|
|
1749
|
+
'updated_at'?: string;
|
|
1750
|
+
/**
|
|
1751
|
+
* Additional key-value pairs that can be attached to the pose.
|
|
1752
|
+
*/
|
|
1753
|
+
'metadata'?: {
|
|
1754
|
+
[key: string]: string;
|
|
1755
|
+
};
|
|
1756
|
+
}
|
|
1757
|
+
/**
|
|
1758
|
+
* References a persisted pose in a dataset and may carry an offline resolution cache.
|
|
1759
|
+
*/
|
|
1760
|
+
interface DatasetPoseReference {
|
|
1761
|
+
/**
|
|
1762
|
+
* Identifies the cross-dataset pose-reference variant.
|
|
1763
|
+
*/
|
|
1764
|
+
'type': DatasetPoseReferenceTypeEnum;
|
|
1765
|
+
/**
|
|
1766
|
+
* Specifies the NOVA cell identifier used to locate the dataset.
|
|
1767
|
+
*/
|
|
1768
|
+
'cell': string;
|
|
1769
|
+
/**
|
|
1770
|
+
* Unique identifier of the dataset. Must start with a letter and may only contain letters, digits, and hyphens.
|
|
1771
|
+
*/
|
|
1772
|
+
'dataset': string;
|
|
1773
|
+
/**
|
|
1774
|
+
* Unique identifier of the pose within the dataset. Must start with a letter and may only contain letters, digits, and hyphens.
|
|
1775
|
+
*/
|
|
1776
|
+
'dataset_pose': string;
|
|
1777
|
+
'resolved_pose'?: ConfiguredPose;
|
|
1778
|
+
/**
|
|
1779
|
+
* Records when the cached pose was resolved.
|
|
1780
|
+
*/
|
|
1781
|
+
'resolved_at'?: string;
|
|
1782
|
+
/**
|
|
1783
|
+
* Records the source revision used to resolve the cached pose.
|
|
1784
|
+
*/
|
|
1785
|
+
'source_revision'?: string;
|
|
1786
|
+
/**
|
|
1787
|
+
* Contains string-valued annotations that are preserved on round-trip.
|
|
1788
|
+
*/
|
|
1789
|
+
'metadata'?: {
|
|
1790
|
+
[key: string]: string;
|
|
1791
|
+
};
|
|
1792
|
+
}
|
|
1793
|
+
declare const DatasetPoseReferenceTypeEnum: {
|
|
1794
|
+
readonly DatasetPose: "dataset_pose";
|
|
1795
|
+
};
|
|
1796
|
+
type DatasetPoseReferenceTypeEnum = typeof DatasetPoseReferenceTypeEnum[keyof typeof DatasetPoseReferenceTypeEnum];
|
|
1522
1797
|
/**
|
|
1523
1798
|
* The direction in which the trajectory is executed. Default: Forward.
|
|
1524
1799
|
*/
|
|
@@ -1549,6 +1824,24 @@ declare const DirectionConstraintConstraintNameEnum: {
|
|
|
1549
1824
|
readonly DirectionConstraint: "DirectionConstraint";
|
|
1550
1825
|
};
|
|
1551
1826
|
type DirectionConstraintConstraintNameEnum = typeof DirectionConstraintConstraintNameEnum[keyof typeof DirectionConstraintConstraintNameEnum];
|
|
1827
|
+
/**
|
|
1828
|
+
* Positions an overlay command at a Cartesian distance from a motion boundary.
|
|
1829
|
+
*/
|
|
1830
|
+
interface DistanceTrigger {
|
|
1831
|
+
/**
|
|
1832
|
+
* Identifies the distance trigger variant.
|
|
1833
|
+
*/
|
|
1834
|
+
'type': DistanceTriggerTypeEnum;
|
|
1835
|
+
/**
|
|
1836
|
+
* Specifies the non-negative Cartesian distance in millimeters.
|
|
1837
|
+
*/
|
|
1838
|
+
'millimeters': number;
|
|
1839
|
+
'reference': AtReference;
|
|
1840
|
+
}
|
|
1841
|
+
declare const DistanceTriggerTypeEnum: {
|
|
1842
|
+
readonly Distance: "distance";
|
|
1843
|
+
};
|
|
1844
|
+
type DistanceTriggerTypeEnum = typeof DistanceTriggerTypeEnum[keyof typeof DistanceTriggerTypeEnum];
|
|
1552
1845
|
interface DynamicModel {
|
|
1553
1846
|
/**
|
|
1554
1847
|
* Mass of the link in kg
|
|
@@ -1746,6 +2039,32 @@ type ExecuteTrajectoryResponse = {
|
|
|
1746
2039
|
} & PlaybackSpeedResponse | {
|
|
1747
2040
|
kind: 'START_RECEIVED';
|
|
1748
2041
|
} & StartMovementResponse;
|
|
2042
|
+
/**
|
|
2043
|
+
* Defines a motion command whose path is authored explicitly.
|
|
2044
|
+
*/
|
|
2045
|
+
interface ExplicitPathMotionCommand {
|
|
2046
|
+
/**
|
|
2047
|
+
* Identifies the motion command variant.
|
|
2048
|
+
*/
|
|
2049
|
+
'type': ExplicitPathMotionCommandTypeEnum;
|
|
2050
|
+
'target': PoseRef;
|
|
2051
|
+
'path_type': PathType;
|
|
2052
|
+
'motion_settings'?: MotionSettings;
|
|
2053
|
+
/**
|
|
2054
|
+
* Contains a free-form authoring annotation.
|
|
2055
|
+
*/
|
|
2056
|
+
'intent'?: string;
|
|
2057
|
+
/**
|
|
2058
|
+
* Contains string-valued annotations that are preserved on round-trip.
|
|
2059
|
+
*/
|
|
2060
|
+
'metadata'?: {
|
|
2061
|
+
[key: string]: string;
|
|
2062
|
+
};
|
|
2063
|
+
}
|
|
2064
|
+
declare const ExplicitPathMotionCommandTypeEnum: {
|
|
2065
|
+
readonly MotionCommand: "motion_command";
|
|
2066
|
+
};
|
|
2067
|
+
type ExplicitPathMotionCommandTypeEnum = typeof ExplicitPathMotionCommandTypeEnum[keyof typeof ExplicitPathMotionCommandTypeEnum];
|
|
1749
2068
|
/**
|
|
1750
2069
|
* A datapoint inside external joint stream.
|
|
1751
2070
|
*/
|
|
@@ -2040,6 +2359,73 @@ interface ForwardKinematicsValidationError {
|
|
|
2040
2359
|
};
|
|
2041
2360
|
'data'?: ErrorInvalidJointCount;
|
|
2042
2361
|
}
|
|
2362
|
+
/**
|
|
2363
|
+
* Defines a motion command whose path the planner generates from a generator specification.
|
|
2364
|
+
*/
|
|
2365
|
+
interface GeneratedPathMotionCommand {
|
|
2366
|
+
/**
|
|
2367
|
+
* Identifies the motion command variant.
|
|
2368
|
+
*/
|
|
2369
|
+
'type': GeneratedPathMotionCommandTypeEnum;
|
|
2370
|
+
'target': PoseRef;
|
|
2371
|
+
'generator': MotionGenerator;
|
|
2372
|
+
'motion_settings'?: MotionSettings;
|
|
2373
|
+
/**
|
|
2374
|
+
* Contains a free-form authoring annotation.
|
|
2375
|
+
*/
|
|
2376
|
+
'intent'?: string;
|
|
2377
|
+
/**
|
|
2378
|
+
* Contains string-valued annotations that are preserved on round-trip.
|
|
2379
|
+
*/
|
|
2380
|
+
'metadata'?: {
|
|
2381
|
+
[key: string]: string;
|
|
2382
|
+
};
|
|
2383
|
+
}
|
|
2384
|
+
declare const GeneratedPathMotionCommandTypeEnum: {
|
|
2385
|
+
readonly MotionCommand: "motion_command";
|
|
2386
|
+
};
|
|
2387
|
+
type GeneratedPathMotionCommandTypeEnum = typeof GeneratedPathMotionCommandTypeEnum[keyof typeof GeneratedPathMotionCommandTypeEnum];
|
|
2388
|
+
/**
|
|
2389
|
+
* Returns a teaching dataset resolved together with its persisted poses and command routines.
|
|
2390
|
+
*/
|
|
2391
|
+
interface GetDatasetResponse {
|
|
2392
|
+
/**
|
|
2393
|
+
* Unique identifier of the dataset. Must start with a letter and may only contain letters, digits, and hyphens.
|
|
2394
|
+
*/
|
|
2395
|
+
'dataset': string;
|
|
2396
|
+
/**
|
|
2397
|
+
* Human-readable name for the dataset that is shown in the user interface. The slug is derived from this name on download.
|
|
2398
|
+
*/
|
|
2399
|
+
'name'?: string;
|
|
2400
|
+
/**
|
|
2401
|
+
* Revision number of the dataset. NOVA increments this on every change to the dataset.
|
|
2402
|
+
*/
|
|
2403
|
+
'revision': number;
|
|
2404
|
+
/**
|
|
2405
|
+
* Free-form text that describes the purpose of the dataset.
|
|
2406
|
+
*/
|
|
2407
|
+
'description'?: string;
|
|
2408
|
+
/**
|
|
2409
|
+
* Timestamp when the dataset was created, in RFC3339 format.
|
|
2410
|
+
*/
|
|
2411
|
+
'created_at': string;
|
|
2412
|
+
/**
|
|
2413
|
+
* Timestamp when the dataset was last updated, in RFC3339 format.
|
|
2414
|
+
*/
|
|
2415
|
+
'updated_at': string;
|
|
2416
|
+
/**
|
|
2417
|
+
* Contains the persisted poses that belong to this dataset.
|
|
2418
|
+
*/
|
|
2419
|
+
'poses': Array<DatasetPose>;
|
|
2420
|
+
/**
|
|
2421
|
+
* Contains the coordinate systems that belong to this dataset.
|
|
2422
|
+
*/
|
|
2423
|
+
'coordinate_systems': Array<DatasetCoordinateSystem>;
|
|
2424
|
+
/**
|
|
2425
|
+
* Contains the command routines that belong to this dataset.
|
|
2426
|
+
*/
|
|
2427
|
+
'command_routines': Array<CommandRoutine>;
|
|
2428
|
+
}
|
|
2043
2429
|
interface GetKinematicConfiguration422Response {
|
|
2044
2430
|
'detail'?: Array<GetKinematicConfigurationValidationError>;
|
|
2045
2431
|
}
|
|
@@ -2090,6 +2476,40 @@ interface GetTrajectoryResponse {
|
|
|
2090
2476
|
interface HTTPValidationError {
|
|
2091
2477
|
'detail'?: Array<ValidationError2>;
|
|
2092
2478
|
}
|
|
2479
|
+
/**
|
|
2480
|
+
* Defines a conjunction of two or more I/O expressions.
|
|
2481
|
+
*/
|
|
2482
|
+
interface IOAllOfExpression {
|
|
2483
|
+
/**
|
|
2484
|
+
* Identifies the conjunction-expression variant.
|
|
2485
|
+
*/
|
|
2486
|
+
'type': IOAllOfExpressionTypeEnum;
|
|
2487
|
+
/**
|
|
2488
|
+
* Contains the expressions that must all evaluate to `true`.
|
|
2489
|
+
*/
|
|
2490
|
+
'operands': Array<IOExpression>;
|
|
2491
|
+
}
|
|
2492
|
+
declare const IOAllOfExpressionTypeEnum: {
|
|
2493
|
+
readonly AllOf: "all_of";
|
|
2494
|
+
};
|
|
2495
|
+
type IOAllOfExpressionTypeEnum = typeof IOAllOfExpressionTypeEnum[keyof typeof IOAllOfExpressionTypeEnum];
|
|
2496
|
+
/**
|
|
2497
|
+
* Defines a disjunction of two or more I/O expressions.
|
|
2498
|
+
*/
|
|
2499
|
+
interface IOAnyOfExpression {
|
|
2500
|
+
/**
|
|
2501
|
+
* Identifies the disjunction-expression variant.
|
|
2502
|
+
*/
|
|
2503
|
+
'type': IOAnyOfExpressionTypeEnum;
|
|
2504
|
+
/**
|
|
2505
|
+
* Contains the expressions of which at least one must evaluate to `true`.
|
|
2506
|
+
*/
|
|
2507
|
+
'operands': Array<IOExpression>;
|
|
2508
|
+
}
|
|
2509
|
+
declare const IOAnyOfExpressionTypeEnum: {
|
|
2510
|
+
readonly AnyOf: "any_of";
|
|
2511
|
+
};
|
|
2512
|
+
type IOAnyOfExpressionTypeEnum = typeof IOAnyOfExpressionTypeEnum[keyof typeof IOAnyOfExpressionTypeEnum];
|
|
2093
2513
|
/**
|
|
2094
2514
|
* Input/Output boolean value representation.
|
|
2095
2515
|
*/
|
|
@@ -2118,6 +2538,26 @@ type IOBoundary = {
|
|
|
2118
2538
|
} & FloatValue | {
|
|
2119
2539
|
value_type: 'integer';
|
|
2120
2540
|
} & IntegerValue;
|
|
2541
|
+
/**
|
|
2542
|
+
* Defines one baseline-shaped I/O comparison in a boolean expression.
|
|
2543
|
+
*/
|
|
2544
|
+
interface IOConditionExpression {
|
|
2545
|
+
/**
|
|
2546
|
+
* Identifies the condition-expression variant.
|
|
2547
|
+
*/
|
|
2548
|
+
'type': IOConditionExpressionTypeEnum;
|
|
2549
|
+
'io': IOValue;
|
|
2550
|
+
'comparator': Comparator;
|
|
2551
|
+
/**
|
|
2552
|
+
* Inverts this comparison when set to `true`.
|
|
2553
|
+
*/
|
|
2554
|
+
'negate'?: boolean;
|
|
2555
|
+
'io_origin'?: IOOrigin;
|
|
2556
|
+
}
|
|
2557
|
+
declare const IOConditionExpressionTypeEnum: {
|
|
2558
|
+
readonly Condition: "condition";
|
|
2559
|
+
};
|
|
2560
|
+
type IOConditionExpressionTypeEnum = typeof IOConditionExpressionTypeEnum[keyof typeof IOConditionExpressionTypeEnum];
|
|
2121
2561
|
interface IODescription {
|
|
2122
2562
|
/**
|
|
2123
2563
|
* Unique identifier of the input/output.
|
|
@@ -2145,6 +2585,19 @@ declare const IODirection: {
|
|
|
2145
2585
|
readonly IoTypeOutput: "IO_TYPE_OUTPUT";
|
|
2146
2586
|
};
|
|
2147
2587
|
type IODirection = typeof IODirection[keyof typeof IODirection];
|
|
2588
|
+
/**
|
|
2589
|
+
* @type IOExpression
|
|
2590
|
+
* Defines a recursive boolean expression over baseline-shaped I/O comparisons.
|
|
2591
|
+
*/
|
|
2592
|
+
type IOExpression = {
|
|
2593
|
+
type: 'all_of';
|
|
2594
|
+
} & IOAllOfExpression | {
|
|
2595
|
+
type: 'any_of';
|
|
2596
|
+
} & IOAnyOfExpression | {
|
|
2597
|
+
type: 'condition';
|
|
2598
|
+
} & IOConditionExpression | {
|
|
2599
|
+
type: 'not';
|
|
2600
|
+
} & IONotExpression;
|
|
2148
2601
|
interface IOFloatValue {
|
|
2149
2602
|
/**
|
|
2150
2603
|
* Unique identifier of the input/output.
|
|
@@ -2175,6 +2628,20 @@ declare const IOIntegerValueValueTypeEnum: {
|
|
|
2175
2628
|
readonly Integer: "integer";
|
|
2176
2629
|
};
|
|
2177
2630
|
type IOIntegerValueValueTypeEnum = typeof IOIntegerValueValueTypeEnum[keyof typeof IOIntegerValueValueTypeEnum];
|
|
2631
|
+
/**
|
|
2632
|
+
* Defines the negation of one I/O expression.
|
|
2633
|
+
*/
|
|
2634
|
+
interface IONotExpression {
|
|
2635
|
+
/**
|
|
2636
|
+
* Identifies the negation-expression variant.
|
|
2637
|
+
*/
|
|
2638
|
+
'type': IONotExpressionTypeEnum;
|
|
2639
|
+
'operand': IOExpression;
|
|
2640
|
+
}
|
|
2641
|
+
declare const IONotExpressionTypeEnum: {
|
|
2642
|
+
readonly Not: "not";
|
|
2643
|
+
};
|
|
2644
|
+
type IONotExpressionTypeEnum = typeof IONotExpressionTypeEnum[keyof typeof IONotExpressionTypeEnum];
|
|
2178
2645
|
/**
|
|
2179
2646
|
* States the source of the input/output signal.
|
|
2180
2647
|
*/
|
|
@@ -2374,6 +2841,35 @@ declare const InitializeMovementResponseKindEnum: {
|
|
|
2374
2841
|
readonly InitializeReceived: "INITIALIZE_RECEIVED";
|
|
2375
2842
|
};
|
|
2376
2843
|
type InitializeMovementResponseKindEnum = typeof InitializeMovementResponseKindEnum[keyof typeof InitializeMovementResponseKindEnum];
|
|
2844
|
+
/**
|
|
2845
|
+
* Defines a configured pose inline with an optional tool-center-point override.
|
|
2846
|
+
*/
|
|
2847
|
+
interface InlinePoseReference {
|
|
2848
|
+
'pose': Pose;
|
|
2849
|
+
'kinematic_configuration'?: KinematicConfiguration;
|
|
2850
|
+
/**
|
|
2851
|
+
* Unique identifier of a coordinate system.
|
|
2852
|
+
*/
|
|
2853
|
+
'coordinate_system'?: string;
|
|
2854
|
+
/**
|
|
2855
|
+
* Identifies the inline pose-reference variant.
|
|
2856
|
+
*/
|
|
2857
|
+
'type': InlinePoseReferenceTypeEnum;
|
|
2858
|
+
/**
|
|
2859
|
+
* Specifies the tool-center-point identifier for this target.
|
|
2860
|
+
*/
|
|
2861
|
+
'tcp'?: string;
|
|
2862
|
+
/**
|
|
2863
|
+
* Contains string-valued annotations that are preserved on round-trip.
|
|
2864
|
+
*/
|
|
2865
|
+
'metadata'?: {
|
|
2866
|
+
[key: string]: string;
|
|
2867
|
+
};
|
|
2868
|
+
}
|
|
2869
|
+
declare const InlinePoseReferenceTypeEnum: {
|
|
2870
|
+
readonly InlinePose: "inline_pose";
|
|
2871
|
+
};
|
|
2872
|
+
type InlinePoseReferenceTypeEnum = typeof InlinePoseReferenceTypeEnum[keyof typeof InlinePoseReferenceTypeEnum];
|
|
2377
2873
|
/**
|
|
2378
2874
|
* Value of an input/output with integer representation. > The integral value is transmitted as a string to avoid precision loss during conversion to JSON. > Recommended: Use int64 in your implementation. If you want to interact with int64 in numbers, > JS bigint libraries can help you to parse the string into an integral value.
|
|
2379
2875
|
*/
|
|
@@ -2586,6 +3082,26 @@ interface JointPTPMotion {
|
|
|
2586
3082
|
'target_joint_position': Array<number>;
|
|
2587
3083
|
'limits_override'?: LimitsOverride;
|
|
2588
3084
|
}
|
|
3085
|
+
/**
|
|
3086
|
+
* Defines a motion target as a joint configuration in radians.
|
|
3087
|
+
*/
|
|
3088
|
+
interface JointPositionReference {
|
|
3089
|
+
/**
|
|
3090
|
+
* Identifies the joint-position reference variant.
|
|
3091
|
+
*/
|
|
3092
|
+
'type': JointPositionReferenceTypeEnum;
|
|
3093
|
+
'joints': Array<number>;
|
|
3094
|
+
/**
|
|
3095
|
+
* Contains string-valued annotations that are preserved on round-trip.
|
|
3096
|
+
*/
|
|
3097
|
+
'metadata'?: {
|
|
3098
|
+
[key: string]: string;
|
|
3099
|
+
};
|
|
3100
|
+
}
|
|
3101
|
+
declare const JointPositionReferenceTypeEnum: {
|
|
3102
|
+
readonly JointPosition: "joint_position";
|
|
3103
|
+
};
|
|
3104
|
+
type JointPositionReferenceTypeEnum = typeof JointPositionReferenceTypeEnum[keyof typeof JointPositionReferenceTypeEnum];
|
|
2589
3105
|
interface JointTrajectory {
|
|
2590
3106
|
/**
|
|
2591
3107
|
* List of joint positions for each sample. The number of samples must match the number of timestamps provided in the times field. The unit depends on the type of joint: For revolute joints, the angle is given in [rad]; for prismatic joints, the displacement is given in [mm].
|
|
@@ -2926,6 +3442,29 @@ interface ListTrajectoriesResponse {
|
|
|
2926
3442
|
*/
|
|
2927
3443
|
'trajectories'?: Array<string>;
|
|
2928
3444
|
}
|
|
3445
|
+
/**
|
|
3446
|
+
* References a pose from the enclosing dataset.
|
|
3447
|
+
*/
|
|
3448
|
+
interface LocalPoseReference {
|
|
3449
|
+
/**
|
|
3450
|
+
* Identifies the local pose reference variant.
|
|
3451
|
+
*/
|
|
3452
|
+
'type': LocalPoseReferenceTypeEnum;
|
|
3453
|
+
/**
|
|
3454
|
+
* Specifies the referenced pose identifier within the enclosing dataset.
|
|
3455
|
+
*/
|
|
3456
|
+
'pose_id': string;
|
|
3457
|
+
/**
|
|
3458
|
+
* Contains string-valued annotations that are preserved on round-trip.
|
|
3459
|
+
*/
|
|
3460
|
+
'metadata'?: {
|
|
3461
|
+
[key: string]: string;
|
|
3462
|
+
};
|
|
3463
|
+
}
|
|
3464
|
+
declare const LocalPoseReferenceTypeEnum: {
|
|
3465
|
+
readonly LocalPose: "local_pose";
|
|
3466
|
+
};
|
|
3467
|
+
type LocalPoseReferenceTypeEnum = typeof LocalPoseReferenceTypeEnum[keyof typeof LocalPoseReferenceTypeEnum];
|
|
2929
3468
|
declare const Manufacturer: {
|
|
2930
3469
|
readonly Abb: "abb";
|
|
2931
3470
|
readonly Bostondynamics: "bostondynamics";
|
|
@@ -2938,6 +3477,40 @@ declare const Manufacturer: {
|
|
|
2938
3477
|
readonly Yaskawa: "yaskawa";
|
|
2939
3478
|
};
|
|
2940
3479
|
type Manufacturer = typeof Manufacturer[keyof typeof Manufacturer];
|
|
3480
|
+
/**
|
|
3481
|
+
* Emits a named point of interest when execution crosses a trajectory location.
|
|
3482
|
+
*/
|
|
3483
|
+
interface MarkerCommand {
|
|
3484
|
+
/**
|
|
3485
|
+
* Identifies the marker command variant.
|
|
3486
|
+
*/
|
|
3487
|
+
'type': MarkerCommandTypeEnum;
|
|
3488
|
+
/**
|
|
3489
|
+
* Specifies the marker name.
|
|
3490
|
+
*/
|
|
3491
|
+
'name': string;
|
|
3492
|
+
/**
|
|
3493
|
+
* Contains arbitrary structured data emitted with the marker.
|
|
3494
|
+
*/
|
|
3495
|
+
'payload'?: {
|
|
3496
|
+
[key: string]: any;
|
|
3497
|
+
};
|
|
3498
|
+
'at'?: AtTrigger;
|
|
3499
|
+
/**
|
|
3500
|
+
* Contains a free-form authoring annotation.
|
|
3501
|
+
*/
|
|
3502
|
+
'intent'?: string;
|
|
3503
|
+
/**
|
|
3504
|
+
* Contains string-valued annotations that are preserved on round-trip.
|
|
3505
|
+
*/
|
|
3506
|
+
'metadata'?: {
|
|
3507
|
+
[key: string]: string;
|
|
3508
|
+
};
|
|
3509
|
+
}
|
|
3510
|
+
declare const MarkerCommandTypeEnum: {
|
|
3511
|
+
readonly Marker: "marker";
|
|
3512
|
+
};
|
|
3513
|
+
type MarkerCommandTypeEnum = typeof MarkerCommandTypeEnum[keyof typeof MarkerCommandTypeEnum];
|
|
2941
3514
|
interface MergeTrajectories422Response {
|
|
2942
3515
|
'detail'?: Array<MergeTrajectoriesValidationError>;
|
|
2943
3516
|
}
|
|
@@ -3117,6 +3690,13 @@ type MotionCommandBlending = BlendingAuto | BlendingPosition;
|
|
|
3117
3690
|
* @type MotionCommandPath
|
|
3118
3691
|
*/
|
|
3119
3692
|
type MotionCommandPath = PathCartesianPTP | PathCircle | PathCubicSpline | PathDirectionConstrainedCartesianPTP | PathDirectionConstrainedJointPTP | PathJointPTP | PathLine;
|
|
3693
|
+
/**
|
|
3694
|
+
* Defines a planner-generated path to a motion target.
|
|
3695
|
+
*/
|
|
3696
|
+
interface MotionGenerator {
|
|
3697
|
+
'algorithm': CollisionFreeAlgorithm;
|
|
3698
|
+
'constraint'?: DirectionConstraint;
|
|
3699
|
+
}
|
|
3120
3700
|
/**
|
|
3121
3701
|
* Response for motion group configuration lookup.
|
|
3122
3702
|
*/
|
|
@@ -3306,6 +3886,23 @@ interface MotionGroupModelDescription {
|
|
|
3306
3886
|
*/
|
|
3307
3887
|
'is_custom': boolean;
|
|
3308
3888
|
}
|
|
3889
|
+
/**
|
|
3890
|
+
* References the motion group that executes a command routine.
|
|
3891
|
+
*/
|
|
3892
|
+
interface MotionGroupReference {
|
|
3893
|
+
/**
|
|
3894
|
+
* Identifies the motion group reference variant.
|
|
3895
|
+
*/
|
|
3896
|
+
'type': MotionGroupReferenceTypeEnum;
|
|
3897
|
+
/**
|
|
3898
|
+
* Specifies the motion group identifier.
|
|
3899
|
+
*/
|
|
3900
|
+
'id': string;
|
|
3901
|
+
}
|
|
3902
|
+
declare const MotionGroupReferenceTypeEnum: {
|
|
3903
|
+
readonly Id: "id";
|
|
3904
|
+
};
|
|
3905
|
+
type MotionGroupReferenceTypeEnum = typeof MotionGroupReferenceTypeEnum[keyof typeof MotionGroupReferenceTypeEnum];
|
|
3309
3906
|
interface MotionGroupSetup {
|
|
3310
3907
|
/**
|
|
3311
3908
|
* Identifies a single motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported types.
|
|
@@ -3415,6 +4012,13 @@ interface MotionGroupStateJointLimitReached {
|
|
|
3415
4012
|
*/
|
|
3416
4013
|
'limit_reached': Array<boolean>;
|
|
3417
4014
|
}
|
|
4015
|
+
/**
|
|
4016
|
+
* Groups inheritable baseline blending and motion limit settings.
|
|
4017
|
+
*/
|
|
4018
|
+
interface MotionSettings {
|
|
4019
|
+
'blending'?: Blending | null;
|
|
4020
|
+
'limits_override'?: LimitsOverride | null;
|
|
4021
|
+
}
|
|
3418
4022
|
/**
|
|
3419
4023
|
* Error message in case an error occurs during movement execution.
|
|
3420
4024
|
*/
|
|
@@ -3706,67 +4310,204 @@ interface PathCircle {
|
|
|
3706
4310
|
'target_pose': Pose;
|
|
3707
4311
|
'path_definition_name': PathCirclePathDefinitionNameEnum;
|
|
3708
4312
|
}
|
|
3709
|
-
declare const PathCirclePathDefinitionNameEnum: {
|
|
4313
|
+
declare const PathCirclePathDefinitionNameEnum: {
|
|
4314
|
+
readonly PathCircle: "PathCircle";
|
|
4315
|
+
};
|
|
4316
|
+
type PathCirclePathDefinitionNameEnum = typeof PathCirclePathDefinitionNameEnum[keyof typeof PathCirclePathDefinitionNameEnum];
|
|
4317
|
+
/**
|
|
4318
|
+
* 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.
|
|
4319
|
+
*/
|
|
4320
|
+
interface PathCubicSpline {
|
|
4321
|
+
'parameters': Array<CubicSplineParameter>;
|
|
4322
|
+
'path_definition_name': PathCubicSplinePathDefinitionNameEnum;
|
|
4323
|
+
}
|
|
4324
|
+
declare const PathCubicSplinePathDefinitionNameEnum: {
|
|
4325
|
+
readonly PathCubicSpline: "PathCubicSpline";
|
|
4326
|
+
};
|
|
4327
|
+
type PathCubicSplinePathDefinitionNameEnum = typeof PathCubicSplinePathDefinitionNameEnum[keyof typeof PathCubicSplinePathDefinitionNameEnum];
|
|
4328
|
+
/**
|
|
4329
|
+
* 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.
|
|
4330
|
+
*/
|
|
4331
|
+
interface PathDirectionConstrainedCartesianPTP {
|
|
4332
|
+
'target_pose': ConstrainedPose;
|
|
4333
|
+
'constraint': DirectionConstraint;
|
|
4334
|
+
'path_definition_name': PathDirectionConstrainedCartesianPTPPathDefinitionNameEnum;
|
|
4335
|
+
}
|
|
4336
|
+
declare const PathDirectionConstrainedCartesianPTPPathDefinitionNameEnum: {
|
|
4337
|
+
readonly DirectionConstrainedCartesianPtp: "DirectionConstrainedCartesianPTP";
|
|
4338
|
+
};
|
|
4339
|
+
type PathDirectionConstrainedCartesianPTPPathDefinitionNameEnum = typeof PathDirectionConstrainedCartesianPTPPathDefinitionNameEnum[keyof typeof PathDirectionConstrainedCartesianPTPPathDefinitionNameEnum];
|
|
4340
|
+
/**
|
|
4341
|
+
* 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.
|
|
4342
|
+
*/
|
|
4343
|
+
interface PathDirectionConstrainedJointPTP {
|
|
4344
|
+
'target_joint_position': Array<number>;
|
|
4345
|
+
'constraint': DirectionConstraint;
|
|
4346
|
+
'path_definition_name': PathDirectionConstrainedJointPTPPathDefinitionNameEnum;
|
|
4347
|
+
}
|
|
4348
|
+
declare const PathDirectionConstrainedJointPTPPathDefinitionNameEnum: {
|
|
4349
|
+
readonly DirectionConstrainedJointPtp: "DirectionConstrainedJointPTP";
|
|
4350
|
+
};
|
|
4351
|
+
type PathDirectionConstrainedJointPTPPathDefinitionNameEnum = typeof PathDirectionConstrainedJointPTPPathDefinitionNameEnum[keyof typeof PathDirectionConstrainedJointPTPPathDefinitionNameEnum];
|
|
4352
|
+
/**
|
|
4353
|
+
* Positions an overlay command at a fraction of the anchor motion segment.
|
|
4354
|
+
*/
|
|
4355
|
+
interface PathFractionTrigger {
|
|
4356
|
+
/**
|
|
4357
|
+
* Identifies the path-fraction trigger variant.
|
|
4358
|
+
*/
|
|
4359
|
+
'type': PathFractionTriggerTypeEnum;
|
|
4360
|
+
/**
|
|
4361
|
+
* Specifies the fraction of the anchor motion segment in the half-open range from `zero` to `one`.
|
|
4362
|
+
*/
|
|
4363
|
+
'value': number;
|
|
4364
|
+
}
|
|
4365
|
+
declare const PathFractionTriggerTypeEnum: {
|
|
4366
|
+
readonly PathFraction: "path_fraction";
|
|
4367
|
+
};
|
|
4368
|
+
type PathFractionTriggerTypeEnum = typeof PathFractionTriggerTypeEnum[keyof typeof PathFractionTriggerTypeEnum];
|
|
4369
|
+
/**
|
|
4370
|
+
* A joint point-to-point represents a line in joint space. All joints will be moved synchronously.
|
|
4371
|
+
*/
|
|
4372
|
+
interface PathJointPTP {
|
|
4373
|
+
'target_joint_position': Array<number>;
|
|
4374
|
+
'path_definition_name': PathJointPTPPathDefinitionNameEnum;
|
|
4375
|
+
}
|
|
4376
|
+
declare const PathJointPTPPathDefinitionNameEnum: {
|
|
4377
|
+
readonly PathJointPtp: "PathJointPTP";
|
|
4378
|
+
};
|
|
4379
|
+
type PathJointPTPPathDefinitionNameEnum = typeof PathJointPTPPathDefinitionNameEnum[keyof typeof PathJointPTPPathDefinitionNameEnum];
|
|
4380
|
+
/**
|
|
4381
|
+
* A line represents a straight line from start position to indicated target position. The orientation is calculated via a quaternion [slerp](https://en.wikipedia.org/wiki/Slerp) from start orientation to indicated target orientation.
|
|
4382
|
+
*/
|
|
4383
|
+
interface PathLine {
|
|
4384
|
+
'target_pose': Pose;
|
|
4385
|
+
'path_definition_name': PathLinePathDefinitionNameEnum;
|
|
4386
|
+
}
|
|
4387
|
+
declare const PathLinePathDefinitionNameEnum: {
|
|
4388
|
+
readonly PathLine: "PathLine";
|
|
4389
|
+
};
|
|
4390
|
+
type PathLinePathDefinitionNameEnum = typeof PathLinePathDefinitionNameEnum[keyof typeof PathLinePathDefinitionNameEnum];
|
|
4391
|
+
/**
|
|
4392
|
+
* @type PathType
|
|
4393
|
+
* Defines the baseline path kind and path-specific parameters without an embedded target.
|
|
4394
|
+
*/
|
|
4395
|
+
type PathType = {
|
|
4396
|
+
path_definition_name: 'PathCartesianPTP';
|
|
4397
|
+
} & PathTypeCartesianPTP | {
|
|
4398
|
+
path_definition_name: 'PathCircle';
|
|
4399
|
+
} & PathTypeCircle | {
|
|
4400
|
+
path_definition_name: 'PathCubicSpline';
|
|
4401
|
+
} & PathTypeCubicSpline | {
|
|
4402
|
+
path_definition_name: 'PathDirectionConstrainedCartesianPTP';
|
|
4403
|
+
} & PathTypeDirectionConstrainedCartesianPTP | {
|
|
4404
|
+
path_definition_name: 'PathDirectionConstrainedJointPTP';
|
|
4405
|
+
} & PathTypeDirectionConstrainedJointPTP | {
|
|
4406
|
+
path_definition_name: 'PathJointPTP';
|
|
4407
|
+
} & PathTypeJointPTP | {
|
|
4408
|
+
path_definition_name: 'PathLine';
|
|
4409
|
+
} & PathTypeLine;
|
|
4410
|
+
/**
|
|
4411
|
+
* Defines a Cartesian point-to-point path after lifting the target into the motion command. The kinematic configuration is not repeated here because the lifted target resolves to a configured pose that already carries it.
|
|
4412
|
+
*/
|
|
4413
|
+
interface PathTypeCartesianPTP {
|
|
4414
|
+
/**
|
|
4415
|
+
* Identifies the Cartesian point-to-point path variant.
|
|
4416
|
+
*/
|
|
4417
|
+
'path_definition_name': PathTypeCartesianPTPPathDefinitionNameEnum;
|
|
4418
|
+
}
|
|
4419
|
+
declare const PathTypeCartesianPTPPathDefinitionNameEnum: {
|
|
4420
|
+
readonly PathCartesianPtp: "PathCartesianPTP";
|
|
4421
|
+
};
|
|
4422
|
+
type PathTypeCartesianPTPPathDefinitionNameEnum = typeof PathTypeCartesianPTPPathDefinitionNameEnum[keyof typeof PathTypeCartesianPTPPathDefinitionNameEnum];
|
|
4423
|
+
/**
|
|
4424
|
+
* Defines a circular Cartesian path after lifting the target into the motion command.
|
|
4425
|
+
*/
|
|
4426
|
+
interface PathTypeCircle {
|
|
4427
|
+
/**
|
|
4428
|
+
* Identifies the circular Cartesian path variant.
|
|
4429
|
+
*/
|
|
4430
|
+
'path_definition_name': PathTypeCirclePathDefinitionNameEnum;
|
|
4431
|
+
/**
|
|
4432
|
+
* References the intermediate pose that shapes the circular path.
|
|
4433
|
+
*/
|
|
4434
|
+
'via_pose': PoseRef;
|
|
4435
|
+
}
|
|
4436
|
+
declare const PathTypeCirclePathDefinitionNameEnum: {
|
|
3710
4437
|
readonly PathCircle: "PathCircle";
|
|
3711
4438
|
};
|
|
3712
|
-
type
|
|
4439
|
+
type PathTypeCirclePathDefinitionNameEnum = typeof PathTypeCirclePathDefinitionNameEnum[keyof typeof PathTypeCirclePathDefinitionNameEnum];
|
|
3713
4440
|
/**
|
|
3714
|
-
*
|
|
4441
|
+
* Defines a cubic-spline Cartesian path after lifting the target into the motion command.
|
|
3715
4442
|
*/
|
|
3716
|
-
interface
|
|
3717
|
-
|
|
3718
|
-
|
|
4443
|
+
interface PathTypeCubicSpline {
|
|
4444
|
+
/**
|
|
4445
|
+
* Identifies the cubic-spline Cartesian path variant.
|
|
4446
|
+
*/
|
|
4447
|
+
'path_definition_name': PathTypeCubicSplinePathDefinitionNameEnum;
|
|
4448
|
+
/**
|
|
4449
|
+
* Specifies the intermediate points of the spline.
|
|
4450
|
+
*/
|
|
4451
|
+
'via_points': Array<CubicSplineViaPoint>;
|
|
3719
4452
|
}
|
|
3720
|
-
declare const
|
|
4453
|
+
declare const PathTypeCubicSplinePathDefinitionNameEnum: {
|
|
3721
4454
|
readonly PathCubicSpline: "PathCubicSpline";
|
|
3722
4455
|
};
|
|
3723
|
-
type
|
|
4456
|
+
type PathTypeCubicSplinePathDefinitionNameEnum = typeof PathTypeCubicSplinePathDefinitionNameEnum[keyof typeof PathTypeCubicSplinePathDefinitionNameEnum];
|
|
3724
4457
|
/**
|
|
3725
|
-
*
|
|
4458
|
+
* Defines a direction-constrained Cartesian path after lifting the target into the motion command.
|
|
3726
4459
|
*/
|
|
3727
|
-
interface
|
|
3728
|
-
|
|
4460
|
+
interface PathTypeDirectionConstrainedCartesianPTP {
|
|
4461
|
+
/**
|
|
4462
|
+
* Identifies the direction-constrained Cartesian path variant.
|
|
4463
|
+
*/
|
|
4464
|
+
'path_definition_name': PathTypeDirectionConstrainedCartesianPTPPathDefinitionNameEnum;
|
|
3729
4465
|
'constraint': DirectionConstraint;
|
|
3730
|
-
'path_definition_name': PathDirectionConstrainedCartesianPTPPathDefinitionNameEnum;
|
|
3731
4466
|
}
|
|
3732
|
-
declare const
|
|
3733
|
-
readonly
|
|
4467
|
+
declare const PathTypeDirectionConstrainedCartesianPTPPathDefinitionNameEnum: {
|
|
4468
|
+
readonly PathDirectionConstrainedCartesianPtp: "PathDirectionConstrainedCartesianPTP";
|
|
3734
4469
|
};
|
|
3735
|
-
type
|
|
4470
|
+
type PathTypeDirectionConstrainedCartesianPTPPathDefinitionNameEnum = typeof PathTypeDirectionConstrainedCartesianPTPPathDefinitionNameEnum[keyof typeof PathTypeDirectionConstrainedCartesianPTPPathDefinitionNameEnum];
|
|
3736
4471
|
/**
|
|
3737
|
-
*
|
|
4472
|
+
* Defines a direction-constrained joint-space path after lifting the target into the motion command.
|
|
3738
4473
|
*/
|
|
3739
|
-
interface
|
|
3740
|
-
|
|
4474
|
+
interface PathTypeDirectionConstrainedJointPTP {
|
|
4475
|
+
/**
|
|
4476
|
+
* Identifies the direction-constrained joint-space path variant.
|
|
4477
|
+
*/
|
|
4478
|
+
'path_definition_name': PathTypeDirectionConstrainedJointPTPPathDefinitionNameEnum;
|
|
3741
4479
|
'constraint': DirectionConstraint;
|
|
3742
|
-
'path_definition_name': PathDirectionConstrainedJointPTPPathDefinitionNameEnum;
|
|
3743
4480
|
}
|
|
3744
|
-
declare const
|
|
3745
|
-
readonly
|
|
4481
|
+
declare const PathTypeDirectionConstrainedJointPTPPathDefinitionNameEnum: {
|
|
4482
|
+
readonly PathDirectionConstrainedJointPtp: "PathDirectionConstrainedJointPTP";
|
|
3746
4483
|
};
|
|
3747
|
-
type
|
|
4484
|
+
type PathTypeDirectionConstrainedJointPTPPathDefinitionNameEnum = typeof PathTypeDirectionConstrainedJointPTPPathDefinitionNameEnum[keyof typeof PathTypeDirectionConstrainedJointPTPPathDefinitionNameEnum];
|
|
3748
4485
|
/**
|
|
3749
|
-
*
|
|
4486
|
+
* Defines a joint-space point-to-point path after lifting the target into the motion command.
|
|
3750
4487
|
*/
|
|
3751
|
-
interface
|
|
3752
|
-
|
|
3753
|
-
|
|
4488
|
+
interface PathTypeJointPTP {
|
|
4489
|
+
/**
|
|
4490
|
+
* Identifies the joint-space point-to-point path variant.
|
|
4491
|
+
*/
|
|
4492
|
+
'path_definition_name': PathTypeJointPTPPathDefinitionNameEnum;
|
|
3754
4493
|
}
|
|
3755
|
-
declare const
|
|
4494
|
+
declare const PathTypeJointPTPPathDefinitionNameEnum: {
|
|
3756
4495
|
readonly PathJointPtp: "PathJointPTP";
|
|
3757
4496
|
};
|
|
3758
|
-
type
|
|
4497
|
+
type PathTypeJointPTPPathDefinitionNameEnum = typeof PathTypeJointPTPPathDefinitionNameEnum[keyof typeof PathTypeJointPTPPathDefinitionNameEnum];
|
|
3759
4498
|
/**
|
|
3760
|
-
*
|
|
4499
|
+
* Defines a straight Cartesian path after lifting the target into the motion command.
|
|
3761
4500
|
*/
|
|
3762
|
-
interface
|
|
3763
|
-
|
|
3764
|
-
|
|
4501
|
+
interface PathTypeLine {
|
|
4502
|
+
/**
|
|
4503
|
+
* Identifies the straight Cartesian path variant.
|
|
4504
|
+
*/
|
|
4505
|
+
'path_definition_name': PathTypeLinePathDefinitionNameEnum;
|
|
3765
4506
|
}
|
|
3766
|
-
declare const
|
|
4507
|
+
declare const PathTypeLinePathDefinitionNameEnum: {
|
|
3767
4508
|
readonly PathLine: "PathLine";
|
|
3768
4509
|
};
|
|
3769
|
-
type
|
|
4510
|
+
type PathTypeLinePathDefinitionNameEnum = typeof PathTypeLinePathDefinitionNameEnum[keyof typeof PathTypeLinePathDefinitionNameEnum];
|
|
3770
4511
|
/**
|
|
3771
4512
|
* Request to pause executing action chunks. If successful, `execute` jogging state in [MotionGroupState](MotionGroupState.yaml) is set to `PAUSED_BY_USER`.
|
|
3772
4513
|
*/
|
|
@@ -3859,6 +4600,31 @@ interface PauseOnIO {
|
|
|
3859
4600
|
'comparator': Comparator;
|
|
3860
4601
|
'io_origin': IOOrigin;
|
|
3861
4602
|
}
|
|
4603
|
+
/**
|
|
4604
|
+
* Monitors an I/O expression from a trajectory location and pauses while it is `true`.
|
|
4605
|
+
*/
|
|
4606
|
+
interface PauseOnIOCommand {
|
|
4607
|
+
/**
|
|
4608
|
+
* Identifies the conditionally pausing command variant.
|
|
4609
|
+
*/
|
|
4610
|
+
'type': PauseOnIOCommandTypeEnum;
|
|
4611
|
+
'condition': IOExpression;
|
|
4612
|
+
'at'?: AtTrigger;
|
|
4613
|
+
/**
|
|
4614
|
+
* Contains a free-form authoring annotation.
|
|
4615
|
+
*/
|
|
4616
|
+
'intent'?: string;
|
|
4617
|
+
/**
|
|
4618
|
+
* Contains string-valued annotations that are preserved on round-trip.
|
|
4619
|
+
*/
|
|
4620
|
+
'metadata'?: {
|
|
4621
|
+
[key: string]: string;
|
|
4622
|
+
};
|
|
4623
|
+
}
|
|
4624
|
+
declare const PauseOnIOCommandTypeEnum: {
|
|
4625
|
+
readonly PauseOnIo: "pause_on_io";
|
|
4626
|
+
};
|
|
4627
|
+
type PauseOnIOCommandTypeEnum = typeof PauseOnIOCommandTypeEnum[keyof typeof PauseOnIOCommandTypeEnum];
|
|
3862
4628
|
interface Payload {
|
|
3863
4629
|
'name': string;
|
|
3864
4630
|
/**
|
|
@@ -4021,6 +4787,19 @@ interface Pose {
|
|
|
4021
4787
|
*/
|
|
4022
4788
|
'orientation'?: Array<number>;
|
|
4023
4789
|
}
|
|
4790
|
+
/**
|
|
4791
|
+
* @type PoseRef
|
|
4792
|
+
* Defines a referenced, inline, or joint-position target for a motion command.
|
|
4793
|
+
*/
|
|
4794
|
+
type PoseRef = {
|
|
4795
|
+
type: 'dataset_pose';
|
|
4796
|
+
} & DatasetPoseReference | {
|
|
4797
|
+
type: 'inline_pose';
|
|
4798
|
+
} & InlinePoseReference | {
|
|
4799
|
+
type: 'joint_position';
|
|
4800
|
+
} & JointPositionReference | {
|
|
4801
|
+
type: 'local_pose';
|
|
4802
|
+
} & LocalPoseReference;
|
|
4024
4803
|
/**
|
|
4025
4804
|
* A pose waypoint for action chunk streaming. > **NOTE** > > This type is experimental and its behavior may change in future releases.
|
|
4026
4805
|
*/
|
|
@@ -4811,6 +5590,32 @@ interface SetIO {
|
|
|
4811
5590
|
'location': number;
|
|
4812
5591
|
'io_origin': IOOrigin;
|
|
4813
5592
|
}
|
|
5593
|
+
/**
|
|
5594
|
+
* Sets an I/O output without blocking trajectory execution.
|
|
5595
|
+
*/
|
|
5596
|
+
interface SetIOCommand {
|
|
5597
|
+
/**
|
|
5598
|
+
* Identifies the set-output command variant.
|
|
5599
|
+
*/
|
|
5600
|
+
'type': SetIOCommandTypeEnum;
|
|
5601
|
+
'io_value': IOValue;
|
|
5602
|
+
'io_origin': IOOrigin;
|
|
5603
|
+
'at'?: AtTrigger;
|
|
5604
|
+
/**
|
|
5605
|
+
* Contains a free-form authoring annotation.
|
|
5606
|
+
*/
|
|
5607
|
+
'intent'?: string;
|
|
5608
|
+
/**
|
|
5609
|
+
* Contains string-valued annotations that are preserved on round-trip.
|
|
5610
|
+
*/
|
|
5611
|
+
'metadata'?: {
|
|
5612
|
+
[key: string]: string;
|
|
5613
|
+
};
|
|
5614
|
+
}
|
|
5615
|
+
declare const SetIOCommandTypeEnum: {
|
|
5616
|
+
readonly SetIo: "set_io";
|
|
5617
|
+
};
|
|
5618
|
+
type SetIOCommandTypeEnum = typeof SetIOCommandTypeEnum[keyof typeof SetIOCommandTypeEnum];
|
|
4814
5619
|
/**
|
|
4815
5620
|
* Defines available system modes of the robot system. Short versions (no \"ROBOT_SYSTEM_\" prefix) are provided, reusing strings from [getMode](#/operations/getMode) responses.
|
|
4816
5621
|
*/
|
|
@@ -5163,6 +5968,24 @@ interface TechmanControllerRtrs {
|
|
|
5163
5968
|
*/
|
|
5164
5969
|
'tmrtc_port'?: number;
|
|
5165
5970
|
}
|
|
5971
|
+
/**
|
|
5972
|
+
* Positions an overlay command at a duration from a motion boundary.
|
|
5973
|
+
*/
|
|
5974
|
+
interface TimeTrigger {
|
|
5975
|
+
/**
|
|
5976
|
+
* Identifies the time trigger variant.
|
|
5977
|
+
*/
|
|
5978
|
+
'type': TimeTriggerTypeEnum;
|
|
5979
|
+
/**
|
|
5980
|
+
* Specifies the non-negative duration in seconds.
|
|
5981
|
+
*/
|
|
5982
|
+
'seconds': number;
|
|
5983
|
+
'reference': AtReference;
|
|
5984
|
+
}
|
|
5985
|
+
declare const TimeTriggerTypeEnum: {
|
|
5986
|
+
readonly Time: "time";
|
|
5987
|
+
};
|
|
5988
|
+
type TimeTriggerTypeEnum = typeof TimeTriggerTypeEnum[keyof typeof TimeTriggerTypeEnum];
|
|
5166
5989
|
/**
|
|
5167
5990
|
* An inline tool collider wrapped for discriminator support.
|
|
5168
5991
|
*/
|
|
@@ -5521,6 +6344,35 @@ interface VirtualRobotConfiguration {
|
|
|
5521
6344
|
*/
|
|
5522
6345
|
'content': string;
|
|
5523
6346
|
}
|
|
6347
|
+
/**
|
|
6348
|
+
* Blocks at a trajectory location until an I/O expression becomes `true`.
|
|
6349
|
+
*/
|
|
6350
|
+
interface WaitForIOCommand {
|
|
6351
|
+
/**
|
|
6352
|
+
* Identifies the blocking I/O-wait command variant.
|
|
6353
|
+
*/
|
|
6354
|
+
'type': WaitForIOCommandTypeEnum;
|
|
6355
|
+
'condition': IOExpression;
|
|
6356
|
+
/**
|
|
6357
|
+
* Specifies the optional non-negative timeout in milliseconds. No specification means no timeout.
|
|
6358
|
+
*/
|
|
6359
|
+
'timeout_ms'?: number;
|
|
6360
|
+
'at'?: AtTrigger;
|
|
6361
|
+
/**
|
|
6362
|
+
* Contains a free-form authoring annotation.
|
|
6363
|
+
*/
|
|
6364
|
+
'intent'?: string;
|
|
6365
|
+
/**
|
|
6366
|
+
* Contains string-valued annotations that are preserved on round-trip.
|
|
6367
|
+
*/
|
|
6368
|
+
'metadata'?: {
|
|
6369
|
+
[key: string]: string;
|
|
6370
|
+
};
|
|
6371
|
+
}
|
|
6372
|
+
declare const WaitForIOCommandTypeEnum: {
|
|
6373
|
+
readonly WaitForIo: "wait_for_io";
|
|
6374
|
+
};
|
|
6375
|
+
type WaitForIOCommandTypeEnum = typeof WaitForIOCommandTypeEnum[keyof typeof WaitForIOCommandTypeEnum];
|
|
5524
6376
|
/**
|
|
5525
6377
|
* The value to compare with the current value of the input/output.
|
|
5526
6378
|
*/
|
|
@@ -5531,6 +6383,34 @@ interface WaitForIOEventRequest {
|
|
|
5531
6383
|
*/
|
|
5532
6384
|
'comparator': Comparator;
|
|
5533
6385
|
}
|
|
6386
|
+
/**
|
|
6387
|
+
* Blocks at a trajectory location for a fixed duration.
|
|
6388
|
+
*/
|
|
6389
|
+
interface WaitForTimeCommand {
|
|
6390
|
+
/**
|
|
6391
|
+
* Identifies the timed wait command variant.
|
|
6392
|
+
*/
|
|
6393
|
+
'type': WaitForTimeCommandTypeEnum;
|
|
6394
|
+
/**
|
|
6395
|
+
* Specifies the non-negative wait duration in milliseconds.
|
|
6396
|
+
*/
|
|
6397
|
+
'duration_ms': number;
|
|
6398
|
+
'at'?: AtTrigger;
|
|
6399
|
+
/**
|
|
6400
|
+
* Contains a free-form authoring annotation.
|
|
6401
|
+
*/
|
|
6402
|
+
'intent'?: string;
|
|
6403
|
+
/**
|
|
6404
|
+
* Contains string-valued annotations that are preserved on round-trip.
|
|
6405
|
+
*/
|
|
6406
|
+
'metadata'?: {
|
|
6407
|
+
[key: string]: string;
|
|
6408
|
+
};
|
|
6409
|
+
}
|
|
6410
|
+
declare const WaitForTimeCommandTypeEnum: {
|
|
6411
|
+
readonly WaitForTime: "wait_for_time";
|
|
6412
|
+
};
|
|
6413
|
+
type WaitForTimeCommandTypeEnum = typeof WaitForTimeCommandTypeEnum[keyof typeof WaitForTimeCommandTypeEnum];
|
|
5534
6414
|
/**
|
|
5535
6415
|
* A waypoint for action chunk streaming. > **NOTE** > > This type is experimental and its behavior may change in future releases.
|
|
5536
6416
|
*/
|
|
@@ -7856,6 +8736,122 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
|
|
|
7856
8736
|
*/
|
|
7857
8737
|
waitForIOEvent(cell: string, controller: string, waitForIOEventRequest: WaitForIOEventRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<boolean, any, {}>>;
|
|
7858
8738
|
}
|
|
8739
|
+
/**
|
|
8740
|
+
* DatasetsApi - axios parameter creator
|
|
8741
|
+
*/
|
|
8742
|
+
declare const DatasetsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
8743
|
+
/**
|
|
8744
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Localize a pose that is expressed in the `world` coordinate system into the given dataset coordinate system. This is the inverse of the resolve operation: the pose is transformed through the whole chain of parent coordinate systems within the dataset.
|
|
8745
|
+
* @summary Localize Pose from World (Dataset)
|
|
8746
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8747
|
+
* @param {string} dataset Specifies the dataset identifier.
|
|
8748
|
+
* @param {string} coordinateSystem Unique identifier addressing a coordinate system within a teaching dataset.
|
|
8749
|
+
* @param {Pose} pose The pose expressed in the `world` coordinate system.
|
|
8750
|
+
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
8751
|
+
* @param {*} [options] Override http request option.
|
|
8752
|
+
* @throws {RequiredError}
|
|
8753
|
+
*/
|
|
8754
|
+
localizeDatasetCoordinateSystemPose: (cell: string, dataset: string, coordinateSystem: string, pose: Pose, revision?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8755
|
+
/**
|
|
8756
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Resolve a pose that is expressed relative to the given dataset coordinate system into the `world` coordinate system. The pose is transformed through the whole chain of parent coordinate systems within the dataset.
|
|
8757
|
+
* @summary Resolve Pose to World (Dataset)
|
|
8758
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8759
|
+
* @param {string} dataset Specifies the dataset identifier.
|
|
8760
|
+
* @param {string} coordinateSystem Unique identifier addressing a coordinate system within a teaching dataset.
|
|
8761
|
+
* @param {Pose} pose The pose expressed relative to the given coordinate system.
|
|
8762
|
+
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
8763
|
+
* @param {*} [options] Override http request option.
|
|
8764
|
+
* @throws {RequiredError}
|
|
8765
|
+
*/
|
|
8766
|
+
resolveDatasetCoordinateSystemPose: (cell: string, dataset: string, coordinateSystem: string, pose: Pose, revision?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8767
|
+
};
|
|
8768
|
+
/**
|
|
8769
|
+
* DatasetsApi - functional programming interface
|
|
8770
|
+
*/
|
|
8771
|
+
declare const DatasetsApiFp: (configuration?: Configuration) => {
|
|
8772
|
+
/**
|
|
8773
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Localize a pose that is expressed in the `world` coordinate system into the given dataset coordinate system. This is the inverse of the resolve operation: the pose is transformed through the whole chain of parent coordinate systems within the dataset.
|
|
8774
|
+
* @summary Localize Pose from World (Dataset)
|
|
8775
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8776
|
+
* @param {string} dataset Specifies the dataset identifier.
|
|
8777
|
+
* @param {string} coordinateSystem Unique identifier addressing a coordinate system within a teaching dataset.
|
|
8778
|
+
* @param {Pose} pose The pose expressed in the `world` coordinate system.
|
|
8779
|
+
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
8780
|
+
* @param {*} [options] Override http request option.
|
|
8781
|
+
* @throws {RequiredError}
|
|
8782
|
+
*/
|
|
8783
|
+
localizeDatasetCoordinateSystemPose(cell: string, dataset: string, coordinateSystem: string, pose: Pose, revision?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Pose>>;
|
|
8784
|
+
/**
|
|
8785
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Resolve a pose that is expressed relative to the given dataset coordinate system into the `world` coordinate system. The pose is transformed through the whole chain of parent coordinate systems within the dataset.
|
|
8786
|
+
* @summary Resolve Pose to World (Dataset)
|
|
8787
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8788
|
+
* @param {string} dataset Specifies the dataset identifier.
|
|
8789
|
+
* @param {string} coordinateSystem Unique identifier addressing a coordinate system within a teaching dataset.
|
|
8790
|
+
* @param {Pose} pose The pose expressed relative to the given coordinate system.
|
|
8791
|
+
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
8792
|
+
* @param {*} [options] Override http request option.
|
|
8793
|
+
* @throws {RequiredError}
|
|
8794
|
+
*/
|
|
8795
|
+
resolveDatasetCoordinateSystemPose(cell: string, dataset: string, coordinateSystem: string, pose: Pose, revision?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Pose>>;
|
|
8796
|
+
};
|
|
8797
|
+
/**
|
|
8798
|
+
* DatasetsApi - factory interface
|
|
8799
|
+
*/
|
|
8800
|
+
declare const DatasetsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
8801
|
+
/**
|
|
8802
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Localize a pose that is expressed in the `world` coordinate system into the given dataset coordinate system. This is the inverse of the resolve operation: the pose is transformed through the whole chain of parent coordinate systems within the dataset.
|
|
8803
|
+
* @summary Localize Pose from World (Dataset)
|
|
8804
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8805
|
+
* @param {string} dataset Specifies the dataset identifier.
|
|
8806
|
+
* @param {string} coordinateSystem Unique identifier addressing a coordinate system within a teaching dataset.
|
|
8807
|
+
* @param {Pose} pose The pose expressed in the `world` coordinate system.
|
|
8808
|
+
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
8809
|
+
* @param {*} [options] Override http request option.
|
|
8810
|
+
* @throws {RequiredError}
|
|
8811
|
+
*/
|
|
8812
|
+
localizeDatasetCoordinateSystemPose(cell: string, dataset: string, coordinateSystem: string, pose: Pose, revision?: number, options?: RawAxiosRequestConfig): AxiosPromise<Pose>;
|
|
8813
|
+
/**
|
|
8814
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Resolve a pose that is expressed relative to the given dataset coordinate system into the `world` coordinate system. The pose is transformed through the whole chain of parent coordinate systems within the dataset.
|
|
8815
|
+
* @summary Resolve Pose to World (Dataset)
|
|
8816
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8817
|
+
* @param {string} dataset Specifies the dataset identifier.
|
|
8818
|
+
* @param {string} coordinateSystem Unique identifier addressing a coordinate system within a teaching dataset.
|
|
8819
|
+
* @param {Pose} pose The pose expressed relative to the given coordinate system.
|
|
8820
|
+
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
8821
|
+
* @param {*} [options] Override http request option.
|
|
8822
|
+
* @throws {RequiredError}
|
|
8823
|
+
*/
|
|
8824
|
+
resolveDatasetCoordinateSystemPose(cell: string, dataset: string, coordinateSystem: string, pose: Pose, revision?: number, options?: RawAxiosRequestConfig): AxiosPromise<Pose>;
|
|
8825
|
+
};
|
|
8826
|
+
/**
|
|
8827
|
+
* DatasetsApi - object-oriented interface
|
|
8828
|
+
*/
|
|
8829
|
+
declare class DatasetsApi extends BaseAPI {
|
|
8830
|
+
/**
|
|
8831
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Localize a pose that is expressed in the `world` coordinate system into the given dataset coordinate system. This is the inverse of the resolve operation: the pose is transformed through the whole chain of parent coordinate systems within the dataset.
|
|
8832
|
+
* @summary Localize Pose from World (Dataset)
|
|
8833
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8834
|
+
* @param {string} dataset Specifies the dataset identifier.
|
|
8835
|
+
* @param {string} coordinateSystem Unique identifier addressing a coordinate system within a teaching dataset.
|
|
8836
|
+
* @param {Pose} pose The pose expressed in the `world` coordinate system.
|
|
8837
|
+
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
8838
|
+
* @param {*} [options] Override http request option.
|
|
8839
|
+
* @throws {RequiredError}
|
|
8840
|
+
*/
|
|
8841
|
+
localizeDatasetCoordinateSystemPose(cell: string, dataset: string, coordinateSystem: string, pose: Pose, revision?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<Pose, any, {}>>;
|
|
8842
|
+
/**
|
|
8843
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Resolve a pose that is expressed relative to the given dataset coordinate system into the `world` coordinate system. The pose is transformed through the whole chain of parent coordinate systems within the dataset.
|
|
8844
|
+
* @summary Resolve Pose to World (Dataset)
|
|
8845
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8846
|
+
* @param {string} dataset Specifies the dataset identifier.
|
|
8847
|
+
* @param {string} coordinateSystem Unique identifier addressing a coordinate system within a teaching dataset.
|
|
8848
|
+
* @param {Pose} pose The pose expressed relative to the given coordinate system.
|
|
8849
|
+
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
8850
|
+
* @param {*} [options] Override http request option.
|
|
8851
|
+
* @throws {RequiredError}
|
|
8852
|
+
*/
|
|
8853
|
+
resolveDatasetCoordinateSystemPose(cell: string, dataset: string, coordinateSystem: string, pose: Pose, revision?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<Pose, any, {}>>;
|
|
8854
|
+
}
|
|
7859
8855
|
/**
|
|
7860
8856
|
* JoggingApi - axios parameter creator
|
|
7861
8857
|
*/
|
|
@@ -10814,6 +11810,182 @@ declare class SystemApi extends BaseAPI {
|
|
|
10814
11810
|
*/
|
|
10815
11811
|
updateNovaVersion(updateNovaVersionRequest: UpdateNovaVersionRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
|
|
10816
11812
|
}
|
|
11813
|
+
/**
|
|
11814
|
+
* TeachingApi - axios parameter creator
|
|
11815
|
+
*/
|
|
11816
|
+
declare const TeachingApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
11817
|
+
/**
|
|
11818
|
+
* Creates a new teaching dataset together with its poses and command routines.
|
|
11819
|
+
* @summary Create Dataset
|
|
11820
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
11821
|
+
* @param {CreateDatasetRequest} createDatasetRequest
|
|
11822
|
+
* @param {*} [options] Override http request option.
|
|
11823
|
+
* @throws {RequiredError}
|
|
11824
|
+
*/
|
|
11825
|
+
createDataset: (cell: string, createDatasetRequest: CreateDatasetRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11826
|
+
/**
|
|
11827
|
+
* Deletes a teaching dataset together with its persisted poses and command routines. Deletes the requested revision when the `revision` query parameter is set; otherwise deletes the latest revision. <!-- theme: danger --> > This will delete persistently stored data.
|
|
11828
|
+
* @summary Delete Dataset
|
|
11829
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
11830
|
+
* @param {string} dataset Specifies the dataset identifier.
|
|
11831
|
+
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
11832
|
+
* @param {*} [options] Override http request option.
|
|
11833
|
+
* @throws {RequiredError}
|
|
11834
|
+
*/
|
|
11835
|
+
deleteDataset: (cell: string, dataset: string, revision?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11836
|
+
/**
|
|
11837
|
+
* Returns a teaching dataset together with its persisted poses and command routines. Returns the requested revision when the `revision` query parameter is set; otherwise returns the latest revision.
|
|
11838
|
+
* @summary Get Dataset
|
|
11839
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
11840
|
+
* @param {string} dataset Specifies the dataset identifier.
|
|
11841
|
+
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
11842
|
+
* @param {*} [options] Override http request option.
|
|
11843
|
+
* @throws {RequiredError}
|
|
11844
|
+
*/
|
|
11845
|
+
getDataset: (cell: string, dataset: string, revision?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11846
|
+
/**
|
|
11847
|
+
* Returns the list of available teaching datasets. Without query parameters, all datasets across all revisions are returned. Use `dataset` to return all revisions of a single dataset. Use `latest_only` to return only the latest revision of each dataset.
|
|
11848
|
+
* @summary List Datasets
|
|
11849
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
11850
|
+
* @param {string} [dataset] Restricts the result to all revisions of the given dataset.
|
|
11851
|
+
* @param {boolean} [latestOnly] When `true`, returns only the latest revision of each dataset.
|
|
11852
|
+
* @param {*} [options] Override http request option.
|
|
11853
|
+
* @throws {RequiredError}
|
|
11854
|
+
*/
|
|
11855
|
+
getDatasets: (cell: string, dataset?: string, latestOnly?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11856
|
+
};
|
|
11857
|
+
/**
|
|
11858
|
+
* TeachingApi - functional programming interface
|
|
11859
|
+
*/
|
|
11860
|
+
declare const TeachingApiFp: (configuration?: Configuration) => {
|
|
11861
|
+
/**
|
|
11862
|
+
* Creates a new teaching dataset together with its poses and command routines.
|
|
11863
|
+
* @summary Create Dataset
|
|
11864
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
11865
|
+
* @param {CreateDatasetRequest} createDatasetRequest
|
|
11866
|
+
* @param {*} [options] Override http request option.
|
|
11867
|
+
* @throws {RequiredError}
|
|
11868
|
+
*/
|
|
11869
|
+
createDataset(cell: string, createDatasetRequest: CreateDatasetRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetDatasetResponse>>;
|
|
11870
|
+
/**
|
|
11871
|
+
* Deletes a teaching dataset together with its persisted poses and command routines. Deletes the requested revision when the `revision` query parameter is set; otherwise deletes the latest revision. <!-- theme: danger --> > This will delete persistently stored data.
|
|
11872
|
+
* @summary Delete Dataset
|
|
11873
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
11874
|
+
* @param {string} dataset Specifies the dataset identifier.
|
|
11875
|
+
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
11876
|
+
* @param {*} [options] Override http request option.
|
|
11877
|
+
* @throws {RequiredError}
|
|
11878
|
+
*/
|
|
11879
|
+
deleteDataset(cell: string, dataset: string, revision?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
11880
|
+
/**
|
|
11881
|
+
* Returns a teaching dataset together with its persisted poses and command routines. Returns the requested revision when the `revision` query parameter is set; otherwise returns the latest revision.
|
|
11882
|
+
* @summary Get Dataset
|
|
11883
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
11884
|
+
* @param {string} dataset Specifies the dataset identifier.
|
|
11885
|
+
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
11886
|
+
* @param {*} [options] Override http request option.
|
|
11887
|
+
* @throws {RequiredError}
|
|
11888
|
+
*/
|
|
11889
|
+
getDataset(cell: string, dataset: string, revision?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetDatasetResponse>>;
|
|
11890
|
+
/**
|
|
11891
|
+
* Returns the list of available teaching datasets. Without query parameters, all datasets across all revisions are returned. Use `dataset` to return all revisions of a single dataset. Use `latest_only` to return only the latest revision of each dataset.
|
|
11892
|
+
* @summary List Datasets
|
|
11893
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
11894
|
+
* @param {string} [dataset] Restricts the result to all revisions of the given dataset.
|
|
11895
|
+
* @param {boolean} [latestOnly] When `true`, returns only the latest revision of each dataset.
|
|
11896
|
+
* @param {*} [options] Override http request option.
|
|
11897
|
+
* @throws {RequiredError}
|
|
11898
|
+
*/
|
|
11899
|
+
getDatasets(cell: string, dataset?: string, latestOnly?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Dataset>>>;
|
|
11900
|
+
};
|
|
11901
|
+
/**
|
|
11902
|
+
* TeachingApi - factory interface
|
|
11903
|
+
*/
|
|
11904
|
+
declare const TeachingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
11905
|
+
/**
|
|
11906
|
+
* Creates a new teaching dataset together with its poses and command routines.
|
|
11907
|
+
* @summary Create Dataset
|
|
11908
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
11909
|
+
* @param {CreateDatasetRequest} createDatasetRequest
|
|
11910
|
+
* @param {*} [options] Override http request option.
|
|
11911
|
+
* @throws {RequiredError}
|
|
11912
|
+
*/
|
|
11913
|
+
createDataset(cell: string, createDatasetRequest: CreateDatasetRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetDatasetResponse>;
|
|
11914
|
+
/**
|
|
11915
|
+
* Deletes a teaching dataset together with its persisted poses and command routines. Deletes the requested revision when the `revision` query parameter is set; otherwise deletes the latest revision. <!-- theme: danger --> > This will delete persistently stored data.
|
|
11916
|
+
* @summary Delete Dataset
|
|
11917
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
11918
|
+
* @param {string} dataset Specifies the dataset identifier.
|
|
11919
|
+
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
11920
|
+
* @param {*} [options] Override http request option.
|
|
11921
|
+
* @throws {RequiredError}
|
|
11922
|
+
*/
|
|
11923
|
+
deleteDataset(cell: string, dataset: string, revision?: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
11924
|
+
/**
|
|
11925
|
+
* Returns a teaching dataset together with its persisted poses and command routines. Returns the requested revision when the `revision` query parameter is set; otherwise returns the latest revision.
|
|
11926
|
+
* @summary Get Dataset
|
|
11927
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
11928
|
+
* @param {string} dataset Specifies the dataset identifier.
|
|
11929
|
+
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
11930
|
+
* @param {*} [options] Override http request option.
|
|
11931
|
+
* @throws {RequiredError}
|
|
11932
|
+
*/
|
|
11933
|
+
getDataset(cell: string, dataset: string, revision?: number, options?: RawAxiosRequestConfig): AxiosPromise<GetDatasetResponse>;
|
|
11934
|
+
/**
|
|
11935
|
+
* Returns the list of available teaching datasets. Without query parameters, all datasets across all revisions are returned. Use `dataset` to return all revisions of a single dataset. Use `latest_only` to return only the latest revision of each dataset.
|
|
11936
|
+
* @summary List Datasets
|
|
11937
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
11938
|
+
* @param {string} [dataset] Restricts the result to all revisions of the given dataset.
|
|
11939
|
+
* @param {boolean} [latestOnly] When `true`, returns only the latest revision of each dataset.
|
|
11940
|
+
* @param {*} [options] Override http request option.
|
|
11941
|
+
* @throws {RequiredError}
|
|
11942
|
+
*/
|
|
11943
|
+
getDatasets(cell: string, dataset?: string, latestOnly?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<Array<Dataset>>;
|
|
11944
|
+
};
|
|
11945
|
+
/**
|
|
11946
|
+
* TeachingApi - object-oriented interface
|
|
11947
|
+
*/
|
|
11948
|
+
declare class TeachingApi extends BaseAPI {
|
|
11949
|
+
/**
|
|
11950
|
+
* Creates a new teaching dataset together with its poses and command routines.
|
|
11951
|
+
* @summary Create Dataset
|
|
11952
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
11953
|
+
* @param {CreateDatasetRequest} createDatasetRequest
|
|
11954
|
+
* @param {*} [options] Override http request option.
|
|
11955
|
+
* @throws {RequiredError}
|
|
11956
|
+
*/
|
|
11957
|
+
createDataset(cell: string, createDatasetRequest: CreateDatasetRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<GetDatasetResponse, any, {}>>;
|
|
11958
|
+
/**
|
|
11959
|
+
* Deletes a teaching dataset together with its persisted poses and command routines. Deletes the requested revision when the `revision` query parameter is set; otherwise deletes the latest revision. <!-- theme: danger --> > This will delete persistently stored data.
|
|
11960
|
+
* @summary Delete Dataset
|
|
11961
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
11962
|
+
* @param {string} dataset Specifies the dataset identifier.
|
|
11963
|
+
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
11964
|
+
* @param {*} [options] Override http request option.
|
|
11965
|
+
* @throws {RequiredError}
|
|
11966
|
+
*/
|
|
11967
|
+
deleteDataset(cell: string, dataset: string, revision?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
|
|
11968
|
+
/**
|
|
11969
|
+
* Returns a teaching dataset together with its persisted poses and command routines. Returns the requested revision when the `revision` query parameter is set; otherwise returns the latest revision.
|
|
11970
|
+
* @summary Get Dataset
|
|
11971
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
11972
|
+
* @param {string} dataset Specifies the dataset identifier.
|
|
11973
|
+
* @param {number} [revision] Specifies the dataset revision. If omitted, the latest revision is used.
|
|
11974
|
+
* @param {*} [options] Override http request option.
|
|
11975
|
+
* @throws {RequiredError}
|
|
11976
|
+
*/
|
|
11977
|
+
getDataset(cell: string, dataset: string, revision?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<GetDatasetResponse, any, {}>>;
|
|
11978
|
+
/**
|
|
11979
|
+
* Returns the list of available teaching datasets. Without query parameters, all datasets across all revisions are returned. Use `dataset` to return all revisions of a single dataset. Use `latest_only` to return only the latest revision of each dataset.
|
|
11980
|
+
* @summary List Datasets
|
|
11981
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
11982
|
+
* @param {string} [dataset] Restricts the result to all revisions of the given dataset.
|
|
11983
|
+
* @param {boolean} [latestOnly] When `true`, returns only the latest revision of each dataset.
|
|
11984
|
+
* @param {*} [options] Override http request option.
|
|
11985
|
+
* @throws {RequiredError}
|
|
11986
|
+
*/
|
|
11987
|
+
getDatasets(cell: string, dataset?: string, latestOnly?: boolean, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<Dataset[], any, {}>>;
|
|
11988
|
+
}
|
|
10817
11989
|
/**
|
|
10818
11990
|
* TrajectoryCachingApi - axios parameter creator
|
|
10819
11991
|
*/
|
|
@@ -12530,5 +13702,5 @@ declare class Nova {
|
|
|
12530
13702
|
openReconnectingWebsocket(path: string): AutoReconnectingWebsocket;
|
|
12531
13703
|
}
|
|
12532
13704
|
//#endregion
|
|
12533
|
-
export { BusIOModbusClientBusTypeEnum as $, JoggingRunningKindEnum as $a, ProfinetIO as $c, UnpauseActionChunksResponseKindEnum as $d, IOFloatValueValueTypeEnum as $i, ServiceGroup as $l, ControllerApiAxiosParamCreator as $n, ModbusIO as $o, FeedbackAxisRangeExceededErrorFeedbackNameEnum as $r, OperatingState as $s, CloudConnectionErrorNatsFailedDetails as $t, TcpRequiredError as $u, AxisRange as A, InverseKinematics422Response as Aa, Payload as Ac, TrajectoryIdMessageTypeEnum as Ad, ZodValidationError as Af, FeedbackTorqueExceeded as Ai, RequiredError as Al, Configuration as An, LicenseApiAxiosParamCreator as Ao, ErrorInvalidJointCountErrorFeedbackNameEnum as Ar, MultiErrorInvalidJointCount as As, CellApiFactory as At, StopActionChunksRequestMessageTypeEnum as Au, BlendingPosition as B, JoggingDetailsKindEnum as Ba, PlanTrajectoryResponseResponse as Bc, TrajectoryRunningKindEnum as Bd, GetKinematicConfiguration422Response as Bi, RobotTcp as Bl, ConfiguredPose as Bn, LinkChainValueSourceEnum as Bo, Execute as Br, NOVACloudApi as Bs, CloudConnectionErrorInvalidToken as Bt, StoreCollisionSetupsApiAxiosParamCreator as Bu, AddVirtualControllerMotionGroupRequest as C, IntegerValue as Ca, PauseJoggingResponse as Cc, TrajectoryEnded as Cd, VirtualControllerKindEnum as Cf, FeedbackNoSolutionInCurrentConfigurationErrorFeedbackNameEnum as Ci, Range as Cl, CollisionFreeAlgorithm as Cn, KukaController as Co, DirectionConstraintConstraintNameEnum as Cr, MotionGroupModelsApiFp as Cs, Capsule as Ct, StartMovementResponse as Cu, ApplicationApiAxiosParamCreator as D, InvalidDofErrorKindEnum as Da, PauseMovementResponse as Dc, TrajectoryExecutionApiFactory as Dd, WaypointCoordinates as Df, FeedbackSingularityErrorFeedbackNameEnum as Di, RectangularCapsuleShapeTypeEnum as Dl, CollisionSetupValueOrKey as Dn, KukaStatusAndTurnBits as Do, ErrorDirectionConstraintNotNormalized as Dr, MovementErrorResponse as Ds, Cell as Dt, StaubliControllerKindEnum as Du, ApplicationApi as E, InvalidDofErrorInvalidDof as Ea, PauseMovementRequestMessageTypeEnum as Ec, TrajectoryExecutionApiAxiosParamCreator as Ed, Waypoint as Ef, FeedbackSingularity as Ei, RectangularCapsule as El, CollisionSetupValue as En, KukaPose as Eo, ErrorDirectionConstraintNotMetErrorFeedbackNameEnum as Er, MotionGroupStateJointLimitReached as Es, CartesianVelocity as Et, StaubliController as Eu, BUSInputsOutputsApiFp as F, JoggingApi as Fa, PlanCollisionFreeResponseResponse as Fc, TrajectoryPlanningApi as Fd, operationServerMap as Ff, FloatValueValueTypeEnum as Fi, RobotController as Fl, ConfigurationArchiveStatusErrorStatusEnum as Fn, LimitRange as Fo, ErrorMaxIterationsExceeded as Fr, MultiSearchCollisionFreeRequest as Fs, CloudConfigStatusNotConfigured as Ft, StoreCollisionComponentsApi as Fu, BostondynamicsController as G, JoggingPausedNearCollisionKindEnum as Ga, PlaybackSpeedRequest as Gc, UnitreeController as Gd, GetTrajectoryResponse as Gi, SafetyGeometryLozenge as Gl, ConfiguredPoseInverseResponseResponse as Gn, MergeTrajectoriesErrorErrorFeedback as Go, ExecuteJoggingResponse as Gr, NanValueErrorKindEnum as Gs, CloudConnectionErrorLeafnodeConnectionErrorCodeEnum as Gt, StoreObjectApiFactory as Gu, BlendingSpace as H, JoggingPausedByUser as Ha, PlanValidationErrorAllOfData as Hc, TrajectoryWaitForIO as Hd, GetKinematicConfigurationResponse as Hi, SafetyGeometry as Hl, ConfiguredPoseInverseFailedResponse as Hn, Manufacturer as Ho, ExecuteActionChunksResponse as Hr, NOVACloudApiFactory as Hs, CloudConnectionErrorInvalidTokenDetails as Ht, StoreCollisionSetupsApiFp as Hu, BaseAPI as I, JoggingApiAxiosParamCreator as Ia, PlanTrajectoryFailedResponse as Ic, TrajectoryPlanningApiAxiosParamCreator as Id, ForwardKinematics422Response as Ii, RobotControllerConfiguration as Il, ConfigurationArchiveStatusSuccess as In, LimitSet as Io, ErrorMaxIterationsExceededErrorFeedbackNameEnum as Ir, MultiSearchCollisionFreeResponse as Is, CloudConfigStatusNotConfiguredStatusEnum as It, StoreCollisionComponentsApiAxiosParamCreator as Iu, Box as J, JoggingPausedNearSingularity as Ja, PlaybackSpeedResponseKindEnum as Jc, UniversalrobotsController as Jd, IOBooleanValueValueTypeEnum as Ji, SafetyGeometrySphere as Jl, ContainerImage as Jn, MergeTrajectoriesResponseFeedbackInner as Jo, ExternalJointStreamDatapoint as Jr, NetworkDevice as Js, CloudConnectionErrorLeafnodeConnectionTimeoutCodeEnum as Jt, SystemApi as Ju, BostondynamicsControllerKindEnum as K, JoggingPausedNearJointLimit as Ka, PlaybackSpeedRequestMessageTypeEnum as Kc, UnitreeControllerKindEnum as Kd, HTTPValidationError as Ki, SafetyGeometryPlane as Kl, ConstrainedPose as Kn, MergeTrajectoriesRequest as Ko, ExecuteTrajectoryRequest as Kr, NanValueErrorNanValue as Ks, CloudConnectionErrorLeafnodeConnectionErrorDetails as Kt, StoreObjectApiFp as Ku, Behavior as L, JoggingApiFactory as La, PlanTrajectoryFailedResponseErrorFeedback as Lc, TrajectoryPlanningApiFactory as Ld, ForwardKinematicsRequest as Li, RobotControllerConfigurationRequest as Ll, ConfigurationArchiveStatusSuccessStatusEnum as Ln, LimitsOverride as Lo, ErrorMotionGroupKeyMismatch as Lr, MultiSearchCollisionFreeResponseResponse as Ls, CloudConfiguration as Lt, StoreCollisionComponentsApiFactory as Lu, BUSInputsOutputsApi as M, InverseKinematicsResponse as Ma, PlanCollisionFreeFailedResponse as Mc, TrajectoryPausedByUserKindEnum as Md, ZodValidationErrorErrorCodeEnum as Mf, Flag as Mi, RobotConfigurationsApiAxiosParamCreator as Ml, ConfigurationArchiveStatusCreating as Mn, LicenseApiFp as Mo, ErrorJointLimitExceededErrorFeedbackNameEnum as Mr, MultiErrorJointPositionCollision as Ms, CloudConfigStatus as Mt, StopActionChunksResponseKindEnum as Mu, BUSInputsOutputsApiAxiosParamCreator as N, InverseKinematicsValidationError as Na, PlanCollisionFreeRequest as Nc, TrajectoryPausedOnIO as Nd, ZodValidationErrorErrorDetailsInner as Nf, FlangePayload as Ni, RobotConfigurationsApiFactory as Nl, ConfigurationArchiveStatusCreatingStatusEnum as Nn, LicenseStatus as No, ErrorJointPositionCollision as Nr, MultiJointTrajectory as Ns, CloudConfigStatusConfigured as Nt, StorageKey as Nu, ApplicationApiFactory as O, InverseFeedbackAtIndex as Oa, PauseMovementResponseKindEnum as Oc, TrajectoryExecutionApiFp as Od, YaskawaController as Of, FeedbackStartJointsMissing as Oi, ReleaseChannel as Ol, CollisionSetupValueSourceEnum as On, License as Oo, ErrorDirectionConstraintNotNormalizedErrorFeedbackNameEnum as Or, MovementErrorResponseKindEnum as Os, CellApi as Ot, StaubliControllerRtiServer as Ou, BUSInputsOutputsApiFactory as P, InverseKinematicsValidationErrorAllOfData as Pa, PlanCollisionFreeResponse as Pc, TrajectoryPausedOnIOKindEnum as Pd, ZodValidationErrorErrorDetailsInnerPathInner as Pf, FloatValue as Pi, RobotConfigurationsApiFp as Pl, ConfigurationArchiveStatusError as Pn, LicenseStatusEnum as Po, ErrorJointPositionCollisionErrorFeedbackNameEnum as Pr, MultiSearchCollisionFree422Response as Ps, CloudConfigStatusConfiguredStatusEnum as Pt, StorageKeySourceEnum as Pu, BusIOModbusClient as Q, JoggingRunning as Qa, ProfinetDescription as Qc, UnpauseActionChunksResponse as Qd, IOFloatValue as Qi, SafetyZones as Ql, ControllerApi as Qn, MidpointInsertionAlgorithmAlgorithmNameEnum as Qo, FeedbackAxisRangeExceeded as Qr, OpMode as Qs, CloudConnectionErrorNatsFailedCodeEnum as Qt, TcpOffset as Qu, BlendingAuto as R, JoggingApiFp as Ra, PlanTrajectoryRequest as Rc, TrajectoryPlanningApiFp as Rd, ForwardKinematicsResponse as Ri, RobotControllerState as Rl, ConfigurationParameters as Rn, LinkChainValue as Ro, ErrorUnsupportedOperation as Rr, MultiSearchCollisionFreeValidationError as Rs, CloudConnectionError as Rt, StoreCollisionComponentsApiFp as Ru, AddTrajectoryResponse as S, InitializeMovementResponseKindEnum as Sa, PauseJoggingRequestMessageTypeEnum as Sc, TrajectoryDetailsState as Sd, VirtualControllerInputsOutputsApiFp as Sf, FeedbackNoSolutionInCurrentConfiguration as Si, RRTConnectAlgorithmStepSize as Sl, CollisionErrorKindEnum as Sn, KukaConfiguredPose as So, DirectionConstraint as Sr, MotionGroupModelsApiFactory as Ss, CapabilityEntry as St, StartMovementRequestMessageTypeEnum as Su, App as T, InvalidDofError as Ta, PauseMovementRequest as Tc, TrajectoryExecutionApi as Td, WaitForIOEventRequest as Tf, FeedbackOutOfWorkspaceErrorFeedbackNameEnum as Ti, RectangleShapeTypeEnum as Tl, CollisionSetup as Tn, KukaControllerRsiServer as To, ErrorDirectionConstraintNotMet as Tr, MotionGroupState as Ts, CartesianLimits as Tt, StartOnIO as Tu, BooleanValue as U, JoggingPausedByUserKindEnum as Ua, Plane as Uc, TrajectoryWaitForIOKindEnum as Ud, GetKinematicConfigurationValidationError as Ui, SafetyGeometryBox as Ul, ConfiguredPoseInverseRequest as Un, MergeTrajectories422Response as Uo, ExecuteDetails as Ur, NOVACloudApiFp as Us, CloudConnectionErrorInvalidTokenDetailsCloudResponse as Ut, StoreObjectApi as Uu, BlendingPositionBlendingNameEnum as V, JoggingDetailsState as Va, PlanValidationError as Vc, TrajectorySection as Vd, GetKinematicConfigurationRequest as Vi, RobotTcpData as Vl, ConfiguredPoseInverse422Response as Vn, ListTrajectoriesResponse as Vo, ExecuteActionChunksRequest as Vr, NOVACloudApiAxiosParamCreator as Vs, CloudConnectionErrorInvalidTokenCodeEnum as Vt, StoreCollisionSetupsApiFactory as Vu, BooleanValueValueTypeEnum as W, JoggingPausedNearCollision as Wa, PlaneShapeTypeEnum as Wc, UnitType as Wd, GetKinematicConfigurationValidationErrorAllOfData as Wi, SafetyGeometryCapsule as Wl, ConfiguredPoseInverseResponse as Wn, MergeTrajectoriesError as Wo, ExecuteJoggingRequest as Wr, NanValueError as Ws, CloudConnectionErrorLeafnodeConnectionError as Wt, StoreObjectApiAxiosParamCreator as Wu, BoxShapeTypeEnum as X, JoggingPausedOnIO as Xa, PoseWaypoint as Xc, UnpauseActionChunksRequest as Xd, IODescription as Xi, SafetyZone as Xl, ContainerResources as Xn, MergeTrajectoriesValidationError as Xo, FanucController as Xr, NetworkLinkState as Xs, CloudConnectionErrorLeafnodeRestartTimeoutCodeEnum as Xt, SystemApiFactory as Xu, BoxBoxTypeEnum as Y, JoggingPausedNearSingularityKindEnum as Ya, Pose as Yc, UniversalrobotsControllerKindEnum as Yd, IOBoundary as Yi, SafetyStateType as Yl, ContainerImageSecretsInner as Yn, MergeTrajectoriesSegment as Yo, ExternalJointStreamRequest as Yr, NetworkInterface as Ys, CloudConnectionErrorLeafnodeRestartTimeout as Yt, SystemApiAxiosParamCreator as Yu, BusIODescription as Z, JoggingPausedOnIOKindEnum as Za, PoseWaypointKindEnum as Zc, UnpauseActionChunksRequestMessageTypeEnum as Zd, IODirection as Zi, SafetyZonePose as Zl, ContainerStorage as Zn, MidpointInsertionAlgorithm as Zo, FanucControllerKindEnum as Zr, NetworkState as Zs, CloudConnectionErrorNatsFailed as Zt, SystemApiFp as Zu, ActionChunkStreamingApiFp as _, InitializeJoggingResponseKindEnum as _a, PauseActionChunksRequest as _c, TrajectoryCachingApiFp as _d, VirtualControllerBehaviorApiFactory as _f, FeedbackInvalidNanValueErrorFeedbackNameEnum as _i, ProjectJointPositionDirectionConstraintResponse as _l, ColliderValueOrKey as _n, KinematicModel as _o, CycleTime as _r, MotionGroupJoints as _s, BusIOSnap7BusTypeEnum as _t, Snap7IODirection as _u, AbbConfiguredPose as a, ImageCredentials as aa, PathCircle as ac, TechmanController as ad, ValidationErrorLocInner as af, FeedbackCubicSplineIsNotIncreasingErrorFeedbackNameEnum as ai, ProfinetSlotOffset as al, CloudDisconnectionError as an, JointTypeEnum as ao, ControllerInputsOutputsApiFactory as ar, MotionCommand as as, BusIOModbusTCPServerNetworkTypeEnum as at, SessionApi as au, AddTrajectoryErrorData as b, InitializeMovementRequestTrajectory as ba, PauseActionChunksResponseKindEnum as bc, TrajectoryDetails as bd, VirtualControllerInputsOutputsApiAxiosParamCreator as bf, FeedbackJointLimitExceeded as bi, RRTConnectAlgorithm as bl, CollisionContact as bn, KinematicsApiFactory as bo, DHParameter as br, MotionGroupModelsApi as bs, BusIOsStateEnum as bt, SphereShapeTypeEnum as bu, AbbControllerKindEnum as c, InconsistentTrajectorySizeErrorKindEnum as ca, PathCubicSplinePathDefinitionNameEnum as cc, ToolValue as cd, VersionApiFactory as cf, FeedbackDirectionConstraintNoSolutionExists as ci, ProgramApi as cl, CloudDisconnectionStatusDisconnecting as cn, JointVelocityResponse as co, ConvertVendorConfiguredPose422Response as cr, MotionGroupApi as cs, BusIOProfinet as ct, SessionApiFp as cu, ActionChunkRequestMessageTypeEnum as d, InitializeActionChunksRequestMessageTypeEnum as da, PathDirectionConstrainedJointPTP as dc, TorqueExceededError as dd, VirtualControllerApi as df, FeedbackDirectionConstraintNotMetErrorFeedbackNameEnum as di, ProgramApiFp as dl, CloudStatus as dn, JointWaypointKindEnum as do, ConvexHull as dr, MotionGroupApiFp as ds, BusIOProfinetIpConfig as dt, SettableRobotSystemMode as du, IOIntegerValue as ea, OperationLimits as ec, TcpRequiredErrorKindEnum as ed, UpdateCellVersionRequest as ef, FeedbackCollision as ei, ProfinetIOData as el, CloudConnectionErrorUnexpectedResponse as en, JointLimitExceededError as eo, ControllerApiFactory as er, ModbusIOArea as es, BusIOModbusServer as et, ServiceStatus as eu, ActionChunkResponse as f, InitializeActionChunksResponse as fa, PathDirectionConstrainedJointPTPPathDefinitionNameEnum as fc, TorqueExceededErrorKindEnum as fd, VirtualControllerApiAxiosParamCreator as ff, FeedbackDirectionConstraintNotNormalized as fi, ProgramRun as fl, CloudStatusChecks as fn, KinematicBranch as fo, ConvexHullShapeTypeEnum as fr, MotionGroupConfiguration as fs, BusIOProfinetNetwork as ft, SingularityHandling as fu, ActionChunkStreamingApiFactory as g, InitializeJoggingResponse as ga, PathLinePathDefinitionNameEnum as gc, TrajectoryCachingApiFactory as gd, VirtualControllerBehaviorApiAxiosParamCreator as gf, FeedbackInvalidNanValue as gi, ProjectJointPositionDirectionConstraintRequest as gl, ColliderValue as gn, KinematicConfiguration as go, CubicSplineParameter as gr, MotionGroupInfo as gs, BusIOSnap7 as gt, Snap7IOData as gu, ActionChunkStreamingApiAxiosParamCreator as h, InitializeJoggingRequestMessageTypeEnum as ha, PathLine as hc, TrajectoryCachingApiAxiosParamCreator as hd, VirtualControllerBehaviorApi as hf, FeedbackInvalidDofErrorFeedbackNameEnum as hi, ProjectJointPositionDirectionConstraint422Response as hl, ColliderShape as hn, KinematicBranchWrist as ho, CopyMotionGroupModelRequest as hr, MotionGroupFromType as hs, BusIOProfinetVirtualBusTypeEnum as ht, Snap7IOArea as hu, AbbConfdata as i, IOValueType as ia, PathCartesianPTPPathDefinitionNameEnum as ic, TcpVelocityResponseKindEnum as id, ValidationError2 as if, FeedbackCubicSplineIsNotIncreasing as ii, ProfinetSlotDescription as il, CloudConnectionRequest as in, JointTrajectory as io, ControllerInputsOutputsApiAxiosParamCreator as ir, ModelError as is, BusIOModbusTCPServer as it, ServiceStatusStatus as iu, BASE_PATH as j, InverseKinematicsRequest as ja, Plan422Response as jc, TrajectoryPausedByUser as jd, ZodValidationErrorError as jf, FeedbackTorqueExceededErrorFeedbackNameEnum as ji, RobotConfigurationsApi as jl, ConfigurationArchiveStatus as jn, LicenseApiFactory as jo, ErrorJointLimitExceeded as jr, MultiErrorJointLimitExceeded as js, CellApiFp as jt, StopActionChunksResponse as ju, ApplicationApiFp as k, InverseFeedbackAtIndexErrorFeedback as ka, PauseOnIO as kc, TrajectoryId as kd, YaskawaControllerKindEnum as kf, FeedbackStartJointsMissingErrorFeedbackNameEnum as ki, RequestArgs as kl, Comparator as kn, LicenseApi as ko, ErrorInvalidJointCount as kr, MultiCollisionSetup as ks, CellApiAxiosParamCreator as kt, StopActionChunksRequest as ku, AbbPose as l, InertiaTensor as la, PathDirectionConstrainedCartesianPTP as lc, ToolValueOrKey as ld, VersionApiFp as lf, FeedbackDirectionConstraintNoSolutionExistsErrorFeedbackNameEnum as li, ProgramApiAxiosParamCreator as ll, CloudDisconnectionStatusDisconnectingStatusEnum as ln, JointVelocityResponseKindEnum as lo, ConvertVendorConfiguredPoseRequest as lr, MotionGroupApiAxiosParamCreator as ls, BusIOProfinetBusTypeEnum as lt, SessionResponse as lu, ActionChunkStreamingApi as m, InitializeJoggingRequest as ma, PathJointPTPPathDefinitionNameEnum as mc, TrajectoryCachingApi as md, VirtualControllerApiFp as mf, FeedbackInvalidDof as mi, ProgramStartRequest as ml, Collider as mn, KinematicBranchShoulder as mo, CoordinateSystemData as mr, MotionGroupFromJson as ms, BusIOProfinetVirtual as mt, Snap7IO as mu, NovaConfig as n, IOOrigin as na, OrientationType as nc, TcpVelocityRequestMessageTypeEnum as nd, User as nf, FeedbackCommandsMissing as ni, ProfinetIOTypeEnum as nl, CloudConnectionErrorUnexpectedResponseDetails as nn, JointLimits as no, ControllerDescription as nr, ModbusIOData as ns, BusIOModbusTCPClient as nt, ServiceStatusResponse as nu, AbbController as o, InconsistentTrajectorySizeError as oa, PathCirclePathDefinitionNameEnum as oc, TechmanControllerKindEnum as od, VersionApi as of, FeedbackCubicSplineNotAtStartPose as oi, ProfinetSubSlotDescription as ol, CloudDisconnectionStatusDisconnected as on, JointVelocityRequest as oo, ControllerInputsOutputsApiFp as or, MotionCommandBlending as os, BusIOModbusVirtual as ot, SessionApiAxiosParamCreator as ou, ActionChunkResponseKindEnum as p, InitializeActionChunksResponseKindEnum as pa, PathJointPTP as pc, TorqueExceededErrorTorqueExceeded as pd, VirtualControllerApiFactory as pf, FeedbackDirectionConstraintNotNormalizedErrorFeedbackNameEnum as pi, ProgramRunState as pl, CloudStatusErrors as pn, KinematicBranchElbow as po, CoordinateSystem as pr, MotionGroupDescription as ps, BusIOProfinetSlot as pt, SingularityTypeEnum as pu, BostondynamicsControllerRobotTypeEnum as q, JoggingPausedNearJointLimitKindEnum as qa, PlaybackSpeedResponse as qc, UnitreeControllerRobotTypeEnum as qd, IOBooleanValue as qi, SafetyGeometryPrism as ql, ContainerEnvironmentInner as qn, MergeTrajectoriesResponse as qo, ExecuteTrajectoryResponse as qr, NetworkBackend as qs, CloudConnectionErrorLeafnodeConnectionTimeout as qt, StreamIOValuesResponse as qu, NovaAPIClient as r, IOValue as ra, PathCartesianPTP as rc, TcpVelocityResponse as rd, ValidationError as rf, FeedbackCommandsMissingErrorFeedbackNameEnum as ri, ProfinetInputOutputConfig as rl, CloudConnectionErrorUnexpectedResponseDetailsCloudResponse as rn, JointPTPMotion as ro, ControllerInputsOutputsApi as rr, ModbusIOTypeEnum as rs, BusIOModbusTCPClientNetworkTypeEnum as rt, ServiceStatusSeverity as ru, AbbControllerEgmServer as s, InconsistentTrajectorySizeErrorInconsistentTrajectorySize as sa, PathCubicSpline as sc, TechmanControllerRtrs as sd, VersionApiAxiosParamCreator as sf, FeedbackCubicSplineNotAtStartPoseErrorFeedbackNameEnum as si, Program as sl, CloudDisconnectionStatusDisconnectedStatusEnum as sn, JointVelocityRequestMessageTypeEnum as so, ControllerNetworkInterface as sr, MotionCommandPath as ss, BusIOModbusVirtualBusTypeEnum as st, SessionApiFactory as su, Nova as t, IOIntegerValueValueTypeEnum as ta, OperationMode as tc, TcpVelocityRequest as td, UpdateNovaVersionRequest as tf, FeedbackCollisionErrorFeedbackNameEnum as ti, ProfinetIODirection as tl, CloudConnectionErrorUnexpectedResponseCodeEnum as tn, JointLimitExceededErrorKindEnum as to, ControllerApiFp as tr, ModbusIOByteOrder as ts, BusIOModbusServerBusTypeEnum as tt, ServiceStatusPhase as tu, ActionChunkRequest as u, InitializeActionChunksRequest as ua, PathDirectionConstrainedCartesianPTPPathDefinitionNameEnum as uc, ToolValueSourceEnum as ud, VirtualController as uf, FeedbackDirectionConstraintNotMet as ui, ProgramApiFactory as ul, CloudRegistrationSuccessResponse as un, JointWaypoint as uo, ConvertVendorConfiguredPoseRequestVendorConfiguredPoses as ur, MotionGroupApiFactory as us, BusIOProfinetDefaultRoute as ut, SetIO as uu, ActivateLicenseRequest as v, InitializeMovementRequest as va, PauseActionChunksRequestMessageTypeEnum as vc, TrajectoryData as vd, VirtualControllerBehaviorApiFp as vf, FeedbackInvalidSamplingTime as vi, ProjectJointPositionDirectionConstraintValidationError as vl, ColliderValueSourceEnum as vn, KinematicsApi as vo, Cylinder as vr, MotionGroupModelCatalog as vs, BusIOType as vt, Snap7IOTypeEnum as vu, ApiVersion as w, IntegerValueValueTypeEnum as wa, PauseJoggingResponseKindEnum as wc, TrajectoryEndedKindEnum as wd, VirtualRobotConfiguration as wf, FeedbackOutOfWorkspace as wi, Rectangle as wl, CollisionMotionGroup as wn, KukaControllerKindEnum as wo, DynamicModel as wr, MotionGroupSetup as ws, CapsuleShapeTypeEnum as wt, StartMovementResponseKindEnum as wu, AddTrajectoryRequest as x, InitializeMovementResponse as xa, PauseJoggingRequest as xc, TrajectoryDetailsKindEnum as xd, VirtualControllerInputsOutputsApiFactory as xf, FeedbackJointLimitExceededErrorFeedbackNameEnum as xi, RRTConnectAlgorithmAlgorithmNameEnum as xl, CollisionError as xn, KinematicsApiFp as xo, Direction as xr, MotionGroupModelsApiAxiosParamCreator as xs, COLLECTION_FORMATS as xt, StartMovementRequest as xu, AddTrajectoryError as y, InitializeMovementRequestMessageTypeEnum as ya, PauseActionChunksResponse as yc, TrajectoryDataMessageTypeEnum as yd, VirtualControllerInputsOutputsApi as yf, FeedbackInvalidSamplingTimeErrorFeedbackNameEnum as yi, ProjectJointPositionDirectionConstraintValidationErrorAllOfData as yl, Collision as yn, KinematicsApiAxiosParamCreator as yo, CylinderShapeTypeEnum as yr, MotionGroupModelDescription as ys, BusIOsState as yt, Sphere as yu, BlendingAutoBlendingNameEnum as z, JoggingDetails as za, PlanTrajectoryResponse as zc, TrajectoryRunning as zd, ForwardKinematicsValidationError as zi, RobotSystemMode as zl, ConfigurationResource as zn, LinkChainValueOrKey as zo, ErrorUnsupportedOperationErrorFeedbackNameEnum as zr, MultiSearchCollisionFreeValidationErrorAllOfData as zs, CloudConnectionErrorError as zt, StoreCollisionSetupsApi as zu };
|
|
12534
|
-
//# sourceMappingURL=Nova-
|
|
13705
|
+
export { BoxShapeTypeEnum as $, InitializeMovementRequestTrajectory as $a, PathCubicSplinePathDefinitionNameEnum as $c, StoreCollisionSetupsApiAxiosParamCreator as $d, TrajectoryPausedOnIOKindEnum as $f, Flag as $i, Plane as $l, ContainerImage as $n, KinematicConfiguration as $o, ZodValidationError as $p, ErrorJointPositionCollisionErrorFeedbackNameEnum as $r, MotionGroupApiFp as $s, CloudConnectionErrorLeafnodeRestartTimeoutCodeEnum as $t, SafetyGeometry as $u, AtReference as A, IOFloatValueValueTypeEnum as Aa, MultiSearchCollisionFreeValidationErrorAllOfData as Ac, Snap7IODirection as Ad, TorqueExceededError as Af, FeedbackDirectionConstraintNoSolutionExistsErrorFeedbackNameEnum as Ai, PauseJoggingRequestMessageTypeEnum as Al, CollisionSetupValueOrKey as An, JoggingPausedNearSingularityKindEnum as Ao, VirtualControllerApi as Ap, DatasetCoordinateSystem as Ar, MergeTrajectories422Response as As, Cell as At, ProjectJointPositionDirectionConstraintValidationErrorAllOfData as Au, Blending as B, InconsistentTrajectorySizeErrorInconsistentTrajectorySize as Ba, NetworkInterface as Bc, StaubliControllerKindEnum as Bd, TrajectoryDetailsKindEnum as Bf, FeedbackInvalidSamplingTimeErrorFeedbackNameEnum as Bi, Payload as Bl, ConfigurationArchiveStatusErrorStatusEnum as Bn, JointPositionReferenceTypeEnum as Bo, VirtualControllerInputsOutputsApiFactory as Bp, DirectionConstraintConstraintNameEnum as Br, ModbusIO as Bs, CloudConfiguration as Bt, RequestArgs as Bu, AddVirtualControllerMotionGroupRequest as C, IOBoundary as Ca, MultiErrorJointPositionCollision as Cc, SetIOCommandTypeEnum as Cd, TechmanControllerKindEnum as Cf, FeedbackCommandsMissing as Ci, PathTypeLine as Cl, CollisionContact as Cn, JoggingPausedByUser as Co, ValidationError2 as Cp, CubicSplineParameter as Cr, LinkChainValueSourceEnum as Cs, BusIOsStateEnum as Ct, ProgramRun as Cu, ApplicationApiAxiosParamCreator as D, IODirection as Da, MultiSearchCollisionFreeResponse as Dc, Snap7IO as Dd, ToolValue as Df, FeedbackCubicSplineNotAtStartPose as Di, PauseActionChunksResponse as Dl, CollisionMotionGroup as Dn, JoggingPausedNearJointLimit as Do, VersionApiFactory as Dp, CylinderShapeTypeEnum as Dr, Manufacturer as Ds, CapsuleShapeTypeEnum as Dt, ProjectJointPositionDirectionConstraintRequest as Du, ApplicationApi as E, IODescription as Ea, MultiSearchCollisionFreeRequest as Ec, SingularityTypeEnum as Ed, TimeTriggerTypeEnum as Ef, FeedbackCubicSplineIsNotIncreasingErrorFeedbackNameEnum as Ei, PauseActionChunksRequestMessageTypeEnum as El, CollisionFreeAlgorithm as En, JoggingPausedNearCollisionKindEnum as Eo, VersionApiAxiosParamCreator as Ep, Cylinder as Er, LocalPoseReferenceTypeEnum as Es, Capsule as Et, ProjectJointPositionDirectionConstraint422Response as Eu, BUSInputsOutputsApiAxiosParamCreator as F, IOOrigin as Fa, NanValueError as Fc, StartMovementRequestMessageTypeEnum as Fd, TrajectoryCachingApiFactory as Ff, FeedbackInvalidDof as Fi, PauseMovementResponse as Fl, Configuration as Fn, JointLimitExceededError as Fo, VirtualControllerBehaviorApiAxiosParamCreator as Fp, DatasetsApiAxiosParamCreator as Fr, MergeTrajectoriesResponseFeedbackInner as Fs, CloudConfigStatus as Ft, Rectangle as Fu, BlendingSpace as G, InitializeActionChunksResponse as Ga, OperationLimits as Gc, StopActionChunksResponseKindEnum as Gd, TrajectoryExecutionApiAxiosParamCreator as Gf, FeedbackOutOfWorkspace as Gi, PlanCollisionFreeResponseResponse as Gl, ConfiguredPose as Gn, JointVelocityResponse as Go, WaitForIOCommandTypeEnum as Gp, ErrorDirectionConstraintNotMetErrorFeedbackNameEnum as Gr, ModelError as Gs, CloudConnectionErrorInvalidTokenDetails as Gt, RobotConfigurationsApiFp as Gu, BlendingAutoBlendingNameEnum as H, InertiaTensor as Ha, NetworkState as Hc, StopActionChunksRequest as Hd, TrajectoryEnded as Hf, FeedbackJointLimitExceededErrorFeedbackNameEnum as Hi, PlanCollisionFreeFailedResponse as Hl, ConfigurationArchiveStatusSuccessStatusEnum as Hn, JointTypeEnum as Ho, VirtualControllerKindEnum as Hp, DistanceTriggerTypeEnum as Hr, ModbusIOByteOrder as Hs, CloudConnectionErrorError as Ht, RobotConfigurationsApi as Hu, BUSInputsOutputsApiFactory as I, IOValue as Ia, NanValueErrorKindEnum as Ic, StartMovementResponse as Id, TrajectoryCachingApiFp as If, FeedbackInvalidDofErrorFeedbackNameEnum as Ii, PauseMovementResponseKindEnum as Il, ConfigurationArchiveStatus as In, JointLimitExceededErrorKindEnum as Io, VirtualControllerBehaviorApiFactory as Ip, DatasetsApiFactory as Ir, MergeTrajectoriesSegment as Is, CloudConfigStatusConfigured as It, RectangleShapeTypeEnum as Iu, BostondynamicsController as J, InitializeJoggingRequestMessageTypeEnum as Ja, PathCartesianPTP as Jc, StoreCollisionComponentsApi as Jd, TrajectoryId as Jf, FeedbackSingularityErrorFeedbackNameEnum as Ji, PlanTrajectoryRequest as Jl, ConfiguredPoseInverseRequest as Jn, JointWaypointKindEnum as Jo, WaitForTimeCommandTypeEnum as Jp, ErrorInvalidJointCount as Jr, MotionCommandPath as Js, CloudConnectionErrorLeafnodeConnectionErrorCodeEnum as Jt, RobotControllerConfigurationRequest as Ju, BooleanValue as K, InitializeActionChunksResponseKindEnum as Ka, OperationMode as Kc, StorageKey as Kd, TrajectoryExecutionApiFactory as Kf, FeedbackOutOfWorkspaceErrorFeedbackNameEnum as Ki, PlanTrajectoryFailedResponse as Kl, ConfiguredPoseInverse422Response as Kn, JointVelocityResponseKindEnum as Ko, WaitForIOEventRequest as Kp, ErrorDirectionConstraintNotNormalized as Kr, MotionCommand as Ks, CloudConnectionErrorInvalidTokenDetailsCloudResponse as Kt, RobotController as Ku, BUSInputsOutputsApiFp as L, IOValueType as La, NanValueErrorNanValue as Lc, StartMovementResponseKindEnum as Ld, TrajectoryData as Lf, FeedbackInvalidNanValue as Li, PauseOnIO as Ll, ConfigurationArchiveStatusCreating as Ln, JointLimits as Lo, VirtualControllerBehaviorApiFp as Lp, DatasetsApiFp as Lr, MergeTrajectoriesValidationError as Ls, CloudConfigStatusConfiguredStatusEnum as Lt, RectangularCapsule as Lu, AxisRange as M, IOIntegerValueValueTypeEnum as Ma, NOVACloudApiAxiosParamCreator as Mc, Sphere as Md, TorqueExceededErrorTorqueExceeded as Mf, FeedbackDirectionConstraintNotMetErrorFeedbackNameEnum as Mi, PauseJoggingResponseKindEnum as Ml, Command as Mn, JoggingPausedOnIOKindEnum as Mo, VirtualControllerApiFactory as Mp, DatasetPoseReference as Mr, MergeTrajectoriesErrorErrorFeedback as Ms, CellApiAxiosParamCreator as Mt, RRTConnectAlgorithmAlgorithmNameEnum as Mu, BASE_PATH as N, IONotExpression as Na, NOVACloudApiFactory as Nc, SphereShapeTypeEnum as Nd, TrajectoryCachingApi as Nf, FeedbackDirectionConstraintNotNormalized as Ni, PauseMovementRequest as Nl, CommandRoutine as Nn, JoggingRunning as No, VirtualControllerApiFp as Np, DatasetPoseReferenceTypeEnum as Nr, MergeTrajectoriesRequest as Ns, CellApiFactory as Nt, RRTConnectAlgorithmStepSize as Nu, ApplicationApiFactory as O, IOExpression as Oa, MultiSearchCollisionFreeResponseResponse as Oc, Snap7IOArea as Od, ToolValueOrKey as Of, FeedbackCubicSplineNotAtStartPoseErrorFeedbackNameEnum as Oi, PauseActionChunksResponseKindEnum as Ol, CollisionSetup as On, JoggingPausedNearJointLimitKindEnum as Oo, VersionApiFp as Op, DHParameter as Or, MarkerCommand as Os, CartesianLimits as Ot, ProjectJointPositionDirectionConstraintResponse as Ou, BUSInputsOutputsApi as P, IONotExpressionTypeEnum as Pa, NOVACloudApiFp as Pc, StartMovementRequest as Pd, TrajectoryCachingApiAxiosParamCreator as Pf, FeedbackDirectionConstraintNotNormalizedErrorFeedbackNameEnum as Pi, PauseMovementRequestMessageTypeEnum as Pl, Comparator as Pn, JoggingRunningKindEnum as Po, VirtualControllerBehaviorApi as Pp, DatasetsApi as Pr, MergeTrajectoriesResponse as Ps, CellApiFp as Pt, Range as Pu, BoxBoxTypeEnum as Q, InitializeMovementRequestMessageTypeEnum as Qa, PathCubicSpline as Qc, StoreCollisionSetupsApi as Qd, TrajectoryPausedOnIO as Qf, FeedbackTorqueExceededErrorFeedbackNameEnum as Qi, PlanValidationErrorAllOfData as Ql, ContainerEnvironmentInner as Qn, KinematicBranchWrist as Qo, YaskawaControllerKindEnum as Qp, ErrorJointPositionCollision as Qr, MotionGroupApiFactory as Qs, CloudConnectionErrorLeafnodeRestartTimeout as Qt, RobotTcpData as Qu, BaseAPI as R, ImageCredentials as Ra, NetworkBackend as Rc, StartOnIO as Rd, TrajectoryDataMessageTypeEnum as Rf, FeedbackInvalidNanValueErrorFeedbackNameEnum as Ri, PauseOnIOCommand as Rl, ConfigurationArchiveStatusCreatingStatusEnum as Rn, JointPTPMotion as Ro, VirtualControllerInputsOutputsApi as Rp, Direction as Rr, MidpointInsertionAlgorithm as Rs, CloudConfigStatusNotConfigured as Rt, RectangularCapsuleShapeTypeEnum as Ru, AddTrajectoryResponse as S, IOBooleanValueValueTypeEnum as Sa, MultiErrorJointLimitExceeded as Sc, SetIOCommand as Sd, TechmanController as Sf, FeedbackCollisionErrorFeedbackNameEnum as Si, PathTypeJointPTPPathDefinitionNameEnum as Sl, Collision as Sn, JoggingDetailsState as So, ValidationError as Sp, CreateDatasetRequest as Sr, LinkChainValueOrKey as Ss, BusIOsState as St, ProgramApiFp as Su, App as T, IOConditionExpressionTypeEnum as Ta, MultiSearchCollisionFree422Response as Tc, SingularityHandling as Td, TimeTrigger as Tf, FeedbackCubicSplineIsNotIncreasing as Ti, PauseActionChunksRequest as Tl, CollisionErrorKindEnum as Tn, JoggingPausedNearCollision as To, VersionApi as Tp, CycleTime as Tr, LocalPoseReference as Ts, CapabilityEntry as Tt, ProgramStartRequest as Tu, BlendingPosition as U, InitializeActionChunksRequest as Ua, OpMode as Uc, StopActionChunksRequestMessageTypeEnum as Ud, TrajectoryEndedKindEnum as Uf, FeedbackNoSolutionInCurrentConfiguration as Ui, PlanCollisionFreeRequest as Ul, ConfigurationParameters as Un, JointVelocityRequest as Uo, VirtualRobotConfiguration as Up, DynamicModel as Ur, ModbusIOData as Us, CloudConnectionErrorInvalidToken as Ut, RobotConfigurationsApiAxiosParamCreator as Uu, BlendingAuto as V, InconsistentTrajectorySizeErrorKindEnum as Va, NetworkLinkState as Vc, StaubliControllerRtiServer as Vd, TrajectoryDetailsState as Vf, FeedbackJointLimitExceeded as Vi, Plan422Response as Vl, ConfigurationArchiveStatusSuccess as Vn, JointTrajectory as Vo, VirtualControllerInputsOutputsApiFp as Vp, DistanceTrigger as Vr, ModbusIOArea as Vs, CloudConnectionError as Vt, RequiredError as Vu, BlendingPositionBlendingNameEnum as W, InitializeActionChunksRequestMessageTypeEnum as Wa, OperatingState as Wc, StopActionChunksResponse as Wd, TrajectoryExecutionApi as Wf, FeedbackNoSolutionInCurrentConfigurationErrorFeedbackNameEnum as Wi, PlanCollisionFreeResponse as Wl, ConfigurationResource as Wn, JointVelocityRequestMessageTypeEnum as Wo, WaitForIOCommand as Wp, ErrorDirectionConstraintNotMet as Wr, ModbusIOTypeEnum as Ws, CloudConnectionErrorInvalidTokenCodeEnum as Wt, RobotConfigurationsApiFactory as Wu, BostondynamicsControllerRobotTypeEnum as X, InitializeJoggingResponseKindEnum as Xa, PathCircle as Xc, StoreCollisionComponentsApiFactory as Xd, TrajectoryPausedByUser as Xf, FeedbackStartJointsMissingErrorFeedbackNameEnum as Xi, PlanTrajectoryResponseResponse as Xl, ConfiguredPoseInverseResponseResponse as Xn, KinematicBranchElbow as Xo, WaypointCoordinates as Xp, ErrorJointLimitExceeded as Xr, MotionGroupApi as Xs, CloudConnectionErrorLeafnodeConnectionTimeout as Xt, RobotSystemMode as Xu, BostondynamicsControllerKindEnum as Y, InitializeJoggingResponse as Ya, PathCartesianPTPPathDefinitionNameEnum as Yc, StoreCollisionComponentsApiAxiosParamCreator as Yd, TrajectoryIdMessageTypeEnum as Yf, FeedbackStartJointsMissing as Yi, PlanTrajectoryResponse as Yl, ConfiguredPoseInverseResponse as Yn, KinematicBranch as Yo, Waypoint as Yp, ErrorInvalidJointCountErrorFeedbackNameEnum as Yr, MotionGenerator as Ys, CloudConnectionErrorLeafnodeConnectionErrorDetails as Yt, RobotControllerState as Yu, Box as Z, InitializeMovementRequest as Za, PathCirclePathDefinitionNameEnum as Zc, StoreCollisionComponentsApiFp as Zd, TrajectoryPausedByUserKindEnum as Zf, FeedbackTorqueExceeded as Zi, PlanValidationError as Zl, ConstrainedPose as Zn, KinematicBranchShoulder as Zo, YaskawaController as Zp, ErrorJointLimitExceededErrorFeedbackNameEnum as Zr, MotionGroupApiAxiosParamCreator as Zs, CloudConnectionErrorLeafnodeConnectionTimeoutCodeEnum as Zt, RobotTcp as Zu, ActionChunkStreamingApiFp as _, IOAllOfExpression as _a, MotionSettings as _c, SessionApiAxiosParamCreator as _d, TcpVelocityResponseKindEnum as _f, FanucController as _i, PathTypeDirectionConstrainedCartesianPTP as _l, Collider as _n, JoggingApiAxiosParamCreator as _o, UnpauseActionChunksResponse as _p, ConvexHullShapeTypeEnum as _r, LicenseStatusEnum as _s, BusIOProfinetVirtual as _t, ProfinetSubSlotDescription as _u, AbbConfiguredPose as a, ForwardKinematicsResponse as aa, MotionGroupJoints as ac, SafetyGeometrySphere as ad, StoreObjectApiFp as af, Execute as ai, PathFractionTriggerTypeEnum as al, CloudConnectionErrorUnexpectedResponseDetails as an, IntegerValueValueTypeEnum as ao, TrajectoryRunningKindEnum as ap, ControllerApiFactory as ar, KukaConfiguredPose as as, BusIOModbusTCPClient as at, Pose as au, AddTrajectoryErrorData as b, IOAnyOfExpressionTypeEnum as ba, MultiCollisionSetup as bc, SessionResponse as bd, TeachingApiFactory as bf, FeedbackAxisRangeExceededErrorFeedbackNameEnum as bi, PathTypeDirectionConstrainedJointPTPPathDefinitionNameEnum as bl, ColliderValueOrKey as bn, JoggingDetails as bo, UpdateNovaVersionRequest as bp, CoordinateSystemData as br, LimitsOverride as bs, BusIOSnap7BusTypeEnum as bt, ProgramApiAxiosParamCreator as bu, AbbControllerKindEnum as c, GeneratedPathMotionCommandTypeEnum as ca, MotionGroupModelsApi as cc, SafetyZonePose as cd, SystemApiAxiosParamCreator as cf, ExecuteDetails as ci, PathLine as cl, CloudDisconnectionError as cn, InvalidDofErrorKindEnum as co, TrajectoryWaitForIOKindEnum as cp, ControllerInputsOutputsApi as cr, KukaControllerRsiServer as cs, BusIOModbusTCPServerNetworkTypeEnum as ct, PoseWaypointKindEnum as cu, ActionChunkRequestMessageTypeEnum as d, GetKinematicConfigurationRequest as da, MotionGroupModelsApiFp as dc, ServiceStatus as dd, TcpOffset as df, ExecuteTrajectoryRequest as di, PathTypeCartesianPTP as dl, CloudDisconnectionStatusDisconnecting as dn, InverseKinematics422Response as do, UnitreeControllerKindEnum as dp, ControllerInputsOutputsApiFp as dr, License as ds, BusIOProfinet as dt, ProfinetIOData as du, FlangePayload as ea, MotionGroupConfiguration as ec, SafetyGeometryBox as ed, StoreCollisionSetupsApiFactory as ef, ErrorMaxIterationsExceeded as ei, PathDirectionConstrainedCartesianPTP as el, ZodValidationErrorError as em, CloudConnectionErrorNatsFailed as en, InitializeMovementResponse as eo, TrajectoryPlanningApi as ep, ContainerImageSecretsInner as er, KinematicModel as es, BusIODescription as et, PlaneShapeTypeEnum as eu, ActionChunkResponse as f, GetKinematicConfigurationResponse as fa, MotionGroupReference as fc, ServiceStatusPhase as fd, TcpRequiredError as ff, ExecuteTrajectoryResponse as fi, PathTypeCartesianPTPPathDefinitionNameEnum as fl, CloudDisconnectionStatusDisconnectingStatusEnum as fn, InverseKinematicsRequest as fo, UnitreeControllerRobotTypeEnum as fp, ControllerNetworkInterface as fr, LicenseApi as fs, BusIOProfinetBusTypeEnum as ft, ProfinetIODirection as fu, ActionChunkStreamingApiFactory as g, HTTPValidationError as ga, MotionGroupStateJointLimitReached as gc, SessionApi as gd, TcpVelocityResponse as gf, ExternalJointStreamRequest as gi, PathTypeCubicSplinePathDefinitionNameEnum as gl, CloudStatusErrors as gn, JoggingApi as go, UnpauseActionChunksRequestMessageTypeEnum as gp, ConvexHull as gr, LicenseStatus as gs, BusIOProfinetSlot as gt, ProfinetSlotOffset as gu, ActionChunkStreamingApiAxiosParamCreator as h, GetTrajectoryResponse as ha, MotionGroupState as hc, ServiceStatusStatus as hd, TcpVelocityRequestMessageTypeEnum as hf, ExternalJointStreamDatapoint as hi, PathTypeCubicSpline as hl, CloudStatusChecks as hn, InverseKinematicsValidationErrorAllOfData as ho, UnpauseActionChunksRequest as hp, ConvertVendorConfiguredPoseRequestVendorConfiguredPoses as hr, LicenseApiFp as hs, BusIOProfinetNetwork as ht, ProfinetSlotDescription as hu, AbbConfdata as i, ForwardKinematicsRequest as ia, MotionGroupInfo as ic, SafetyGeometryPrism as id, StoreObjectApiFactory as if, ErrorUnsupportedOperationErrorFeedbackNameEnum as ii, PathFractionTrigger as il, operationServerMap as im, CloudConnectionErrorUnexpectedResponseCodeEnum as in, IntegerValue as io, TrajectoryRunning as ip, ControllerApiAxiosParamCreator as ir, KinematicsApiFp as is, BusIOModbusServerBusTypeEnum as it, PlaybackSpeedResponseKindEnum as iu, AtTrigger as j, IOIntegerValue as ja, NOVACloudApi as jc, Snap7IOTypeEnum as jd, TorqueExceededErrorKindEnum as jf, FeedbackDirectionConstraintNotMet as ji, PauseJoggingResponse as jl, CollisionSetupValueSourceEnum as jn, JoggingPausedOnIO as jo, VirtualControllerApiAxiosParamCreator as jp, DatasetPose as jr, MergeTrajectoriesError as js, CellApi as jt, RRTConnectAlgorithm as ju, ApplicationApiFp as k, IOFloatValue as ka, MultiSearchCollisionFreeValidationError as kc, Snap7IOData as kd, ToolValueSourceEnum as kf, FeedbackDirectionConstraintNoSolutionExists as ki, PauseJoggingRequest as kl, CollisionSetupValue as kn, JoggingPausedNearSingularity as ko, VirtualController as kp, Dataset as kr, MarkerCommandTypeEnum as ks, CartesianVelocity as kt, ProjectJointPositionDirectionConstraintValidationError as ku, AbbPose as l, GetDatasetResponse as la, MotionGroupModelsApiAxiosParamCreator as lc, SafetyZones as ld, SystemApiFactory as lf, ExecuteJoggingRequest as li, PathLinePathDefinitionNameEnum as ll, CloudDisconnectionStatusDisconnected as ln, InverseFeedbackAtIndex as lo, UnitType as lp, ControllerInputsOutputsApiAxiosParamCreator as lr, KukaPose as ls, BusIOModbusVirtual as lt, ProfinetDescription as lu, ActionChunkStreamingApi as m, GetKinematicConfigurationValidationErrorAllOfData as ma, MotionGroupSetup as mc, ServiceStatusSeverity as md, TcpVelocityRequest as mf, ExplicitPathMotionCommandTypeEnum as mi, PathTypeCirclePathDefinitionNameEnum as ml, CloudStatus as mn, InverseKinematicsValidationError as mo, UniversalrobotsControllerKindEnum as mp, ConvertVendorConfiguredPoseRequest as mr, LicenseApiFactory as ms, BusIOProfinetIpConfig as mt, ProfinetInputOutputConfig as mu, NovaConfig as n, FloatValueValueTypeEnum as na, MotionGroupFromJson as nc, SafetyGeometryLozenge as nd, StoreObjectApi as nf, ErrorMotionGroupKeyMismatch as ni, PathDirectionConstrainedJointPTP as nl, ZodValidationErrorErrorDetailsInner as nm, CloudConnectionErrorNatsFailedDetails as nn, InlinePoseReference as no, TrajectoryPlanningApiFactory as np, ContainerStorage as nr, KinematicsApiAxiosParamCreator as ns, BusIOModbusClientBusTypeEnum as nt, PlaybackSpeedRequestMessageTypeEnum as nu, AbbController as o, ForwardKinematicsValidationError as oa, MotionGroupModelCatalog as oc, SafetyStateType as od, StreamIOValuesResponse as of, ExecuteActionChunksRequest as oi, PathJointPTP as ol, CloudConnectionErrorUnexpectedResponseDetailsCloudResponse as on, InvalidDofError as oo, TrajectorySection as op, ControllerApiFp as or, KukaController as os, BusIOModbusTCPClientNetworkTypeEnum as ot, PoseRef as ou, ActionChunkResponseKindEnum as p, GetKinematicConfigurationValidationError as pa, MotionGroupReferenceTypeEnum as pc, ServiceStatusResponse as pd, TcpRequiredErrorKindEnum as pf, ExplicitPathMotionCommand as pi, PathTypeCircle as pl, CloudRegistrationSuccessResponse as pn, InverseKinematicsResponse as po, UniversalrobotsController as pp, ConvertVendorConfiguredPose422Response as pr, LicenseApiAxiosParamCreator as ps, BusIOProfinetDefaultRoute as pt, ProfinetIOTypeEnum as pu, BooleanValueValueTypeEnum as q, InitializeJoggingRequest as qa, OrientationType as qc, StorageKeySourceEnum as qd, TrajectoryExecutionApiFp as qf, FeedbackSingularity as qi, PlanTrajectoryFailedResponseErrorFeedback as ql, ConfiguredPoseInverseFailedResponse as qn, JointWaypoint as qo, WaitForTimeCommand as qp, ErrorDirectionConstraintNotNormalizedErrorFeedbackNameEnum as qr, MotionCommandBlending as qs, CloudConnectionErrorLeafnodeConnectionError as qt, RobotControllerConfiguration as qu, NovaAPIClient as r, ForwardKinematics422Response as ra, MotionGroupFromType as rc, SafetyGeometryPlane as rd, StoreObjectApiAxiosParamCreator as rf, ErrorUnsupportedOperation as ri, PathDirectionConstrainedJointPTPPathDefinitionNameEnum as rl, ZodValidationErrorErrorDetailsInnerPathInner as rm, CloudConnectionErrorUnexpectedResponse as rn, InlinePoseReferenceTypeEnum as ro, TrajectoryPlanningApiFp as rp, ControllerApi as rr, KinematicsApiFactory as rs, BusIOModbusServer as rt, PlaybackSpeedResponse as ru, AbbControllerEgmServer as s, GeneratedPathMotionCommand as sa, MotionGroupModelDescription as sc, SafetyZone as sd, SystemApi as sf, ExecuteActionChunksResponse as si, PathJointPTPPathDefinitionNameEnum as sl, CloudConnectionRequest as sn, InvalidDofErrorInvalidDof as so, TrajectoryWaitForIO as sp, ControllerDescription as sr, KukaControllerKindEnum as ss, BusIOModbusTCPServer as st, PoseWaypoint as su, Nova as t, FloatValue as ta, MotionGroupDescription as tc, SafetyGeometryCapsule as td, StoreCollisionSetupsApiFp as tf, ErrorMaxIterationsExceededErrorFeedbackNameEnum as ti, PathDirectionConstrainedCartesianPTPPathDefinitionNameEnum as tl, ZodValidationErrorErrorCodeEnum as tm, CloudConnectionErrorNatsFailedCodeEnum as tn, InitializeMovementResponseKindEnum as to, TrajectoryPlanningApiAxiosParamCreator as tp, ContainerResources as tr, KinematicsApi as ts, BusIOModbusClient as tt, PlaybackSpeedRequest as tu, ActionChunkRequest as u, GetKinematicConfiguration422Response as ua, MotionGroupModelsApiFactory as uc, ServiceGroup as ud, SystemApiFp as uf, ExecuteJoggingResponse as ui, PathType as ul, CloudDisconnectionStatusDisconnectedStatusEnum as un, InverseFeedbackAtIndexErrorFeedback as uo, UnitreeController as up, ControllerInputsOutputsApiFactory as ur, KukaStatusAndTurnBits as us, BusIOModbusVirtualBusTypeEnum as ut, ProfinetIO as uu, ActivateLicenseRequest as v, IOAllOfExpressionTypeEnum as va, MovementErrorResponse as vc, SessionApiFactory as vd, TeachingApi as vf, FanucControllerKindEnum as vi, PathTypeDirectionConstrainedCartesianPTPPathDefinitionNameEnum as vl, ColliderShape as vn, JoggingApiFactory as vo, UnpauseActionChunksResponseKindEnum as vp, CoordinateSystem as vr, LimitRange as vs, BusIOProfinetVirtualBusTypeEnum as vt, Program as vu, ApiVersion as w, IOConditionExpression as wa, MultiJointTrajectory as wc, SettableRobotSystemMode as wd, TechmanControllerRtrs as wf, FeedbackCommandsMissingErrorFeedbackNameEnum as wi, PathTypeLinePathDefinitionNameEnum as wl, CollisionError as wn, JoggingPausedByUserKindEnum as wo, ValidationErrorLocInner as wp, CubicSplineViaPoint as wr, ListTrajectoriesResponse as ws, COLLECTION_FORMATS as wt, ProgramRunState as wu, AddTrajectoryRequest as x, IOBooleanValue as xa, MultiErrorInvalidJointCount as xc, SetIO as xd, TeachingApiFp as xf, FeedbackCollision as xi, PathTypeJointPTP as xl, ColliderValueSourceEnum as xn, JoggingDetailsKindEnum as xo, User as xp, CopyMotionGroupModelRequest as xr, LinkChainValue as xs, BusIOType as xt, ProgramApiFactory as xu, AddTrajectoryError as y, IOAnyOfExpression as ya, MovementErrorResponseKindEnum as yc, SessionApiFp as yd, TeachingApiAxiosParamCreator as yf, FeedbackAxisRangeExceeded as yi, PathTypeDirectionConstrainedJointPTP as yl, ColliderValue as yn, JoggingApiFp as yo, UpdateCellVersionRequest as yp, CoordinateSystem2 as yr, LimitSet as ys, BusIOSnap7 as yt, ProgramApi as yu, Behavior as z, InconsistentTrajectorySizeError as za, NetworkDevice as zc, StaubliController as zd, TrajectoryDetails as zf, FeedbackInvalidSamplingTime as zi, PauseOnIOCommandTypeEnum as zl, ConfigurationArchiveStatusError as zn, JointPositionReference as zo, VirtualControllerInputsOutputsApiAxiosParamCreator as zp, DirectionConstraint as zr, MidpointInsertionAlgorithmAlgorithmNameEnum as zs, CloudConfigStatusNotConfiguredStatusEnum as zt, ReleaseChannel as zu };
|
|
13706
|
+
//# sourceMappingURL=Nova-CYiZje7Y.d.mts.map
|