@@ -57,6 +57,9 @@ export interface Motion extends Resource {
57
57
* const moved = await motion.move(goalPoseInFrame, gripperName);
58
58
* ```
59
59
*
60
+ * For more information, see [Motion
61
+ * API](https://docs.viam.com/dev/reference/apis/services/motion/#move).
62
+ *
60
63
* @param destination - Destination to move to, which can a pose in the
61
64
* reference frame of any frame in the robot's frame system.
62
65
* @param componentName - Component on the robot to move to the specified
@@ -120,6 +123,9 @@ export interface Motion extends Resource {
120
123
* );
121
124
* ```
122
125
*
126
+ * For more information, see [Motion
127
+ * API](https://docs.viam.com/dev/reference/apis/services/motion/#moveonmap).
128
+ *
123
129
* @param destination - Specify a destination to, which can be any `Pose` with
124
130
* respect to the SLAM map's origin.
125
131
* @param componentName - Component on the robot to move to the specified
@@ -179,6 +185,9 @@ export interface Motion extends Resource {
179
185
* );
180
186
* ```
181
187
*
188
+ * For more information, see [Motion
189
+ * API](https://docs.viam.com/dev/reference/apis/services/motion/#moveonglobe).
190
+ *
182
191
* @param destination - Destination for the component to move to, represented
183
192
* as a `GeoPoint`.
184
193
* @param componentName - The name of the component to move.
@@ -221,6 +230,9 @@ export interface Motion extends Resource {
221
230
* await motion.stopPlan(baseName);
222
231
* ```
223
232
*
233
+ * For more information, see [Motion
234
+ * API](https://docs.viam.com/dev/reference/apis/services/motion/#stopplan).
235
+ *
224
236
* @param componentName - The component to stop
225
237
*/
226
238
stopPlan : ( componentName : ResourceName , extra ?: Struct ) => Promise < null > ;
@@ -254,6 +266,9 @@ export interface Motion extends Resource {
254
266
* const response = await motion.getPlan(baseName);
255
267
* ```
256
268
*
269
+ * For more information, see [Motion
270
+ * API](https://docs.viam.com/dev/reference/apis/services/motion/#getplan).
271
+ *
257
272
* @param componentName - The component to query
258
273
* @param destinationFrame - The reference frame in which the component's
259
274
* `Pose` should be provided, if unset this defaults to the "world"
@@ -287,6 +302,9 @@ export interface Motion extends Resource {
287
302
* const response = await motion.listPlanStatuses();
288
303
* ```
289
304
*
305
+ * For more information, see [Motion
306
+ * API](https://docs.viam.com/dev/reference/apis/services/motion/#listplanstatuses).
307
+ *
290
308
* @param onlyActivePlans - If true, the response will only return plans which
291
309
* are executing.
292
310
*/
@@ -318,6 +336,9 @@ export interface Motion extends Resource {
318
336
* );
319
337
* ```
320
338
*
339
+ * For more information, see [Motion
340
+ * API](https://docs.viam.com/dev/reference/apis/services/motion/#getpose).
341
+ *
321
342
* @param componentName - The component whose `Pose` is being requested.
322
343
* @param destinationFrame - The reference frame in which the component's
323
344
* `Pose` should be provided, if unset this defaults to the "world"
0 commit comments