Skip to content

Commit 3730819

Browse files
fix tag issues in commands url
1 parent b42da19 commit 3730819

File tree

2 files changed

+27
-27
lines changed

2 files changed

+27
-27
lines changed

README.md

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ OPTIONS
8787
-s, --schema=schema (required) [default: templates] schema path
8888
```
8989

90-
_See code: [src/commands/autopilot/create.js](https://github.com/tingiris/twilio-cli-autopilot-plugin/blob/v1.0.0-beta.12/src/commands/autopilot/create.js)_
90+
_See code: [src/commands/autopilot/create.js](https://github.com/tingiris/twilio-cli-autopilot-plugin/blob/v1.0.0-beta.14/src/commands/autopilot/create.js)_
9191

9292
## `twilio autopilot:delete`
9393

@@ -105,7 +105,7 @@ OPTIONS
105105
--uniqueName=uniqueName assistant uniqueName
106106
```
107107

108-
_See code: [src/commands/autopilot/delete.js](https://github.com/tingiris/twilio-cli-autopilot-plugin/blob/v1.0.0-beta.12/src/commands/autopilot/delete.js)_
108+
_See code: [src/commands/autopilot/delete.js](https://github.com/tingiris/twilio-cli-autopilot-plugin/blob/v1.0.0-beta.14/src/commands/autopilot/delete.js)_
109109

110110
## `twilio autopilot:deploy`
111111

@@ -131,7 +131,7 @@ OPTIONS
131131
--auth-token=auth-token Use a specific auth token for deployment. Uses fields from .env otherwise
132132
```
133133

134-
_See code: [src/commands/autopilot/deploy.js](https://github.com/tingiris/twilio-cli-autopilot-plugin/blob/v1.0.0-beta.12/src/commands/autopilot/deploy.js)_
134+
_See code: [src/commands/autopilot/deploy.js](https://github.com/tingiris/twilio-cli-autopilot-plugin/blob/v1.0.0-beta.14/src/commands/autopilot/deploy.js)_
135135

136136
## `twilio autopilot:export`
137137

@@ -149,7 +149,7 @@ OPTIONS
149149
--uniqueName=uniqueName assistant uniqueName
150150
```
151151

152-
_See code: [src/commands/autopilot/export.js](https://github.com/tingiris/twilio-cli-autopilot-plugin/blob/v1.0.0-beta.12/src/commands/autopilot/export.js)_
152+
_See code: [src/commands/autopilot/export.js](https://github.com/tingiris/twilio-cli-autopilot-plugin/blob/v1.0.0-beta.14/src/commands/autopilot/export.js)_
153153

154154
## `twilio autopilot:fields:create`
155155

@@ -174,7 +174,7 @@ OPTIONS
174174
--uniqueName=uniqueName (required) field unique name
175175
```
176176

177-
_See code: [src/commands/autopilot/fields/create.js](https://github.com/tingiris/twilio-cli-autopilot-plugin/blob/v1.0.0-beta.12/src/commands/autopilot/fields/create.js)_
177+
_See code: [src/commands/autopilot/fields/create.js](https://github.com/tingiris/twilio-cli-autopilot-plugin/blob/v1.0.0-beta.14/src/commands/autopilot/fields/create.js)_
178178

179179
## `twilio autopilot:fields:delete`
180180

@@ -197,7 +197,7 @@ OPTIONS
197197
--taskSid=taskSid task sid
198198
```
199199

200-
_See code: [src/commands/autopilot/fields/delete.js](https://github.com/tingiris/twilio-cli-autopilot-plugin/blob/v1.0.0-beta.12/src/commands/autopilot/fields/delete.js)_
200+
_See code: [src/commands/autopilot/fields/delete.js](https://github.com/tingiris/twilio-cli-autopilot-plugin/blob/v1.0.0-beta.14/src/commands/autopilot/fields/delete.js)_
201201

202202
## `twilio autopilot:fields:list`
203203

@@ -216,7 +216,7 @@ OPTIONS
216216
--taskSid=taskSid task sid
217217
```
218218

219-
_See code: [src/commands/autopilot/fields/list.js](https://github.com/tingiris/twilio-cli-autopilot-plugin/blob/v1.0.0-beta.12/src/commands/autopilot/fields/list.js)_
219+
_See code: [src/commands/autopilot/fields/list.js](https://github.com/tingiris/twilio-cli-autopilot-plugin/blob/v1.0.0-beta.14/src/commands/autopilot/fields/list.js)_
220220

221221
## `twilio autopilot:fieldtypes:create`
222222

@@ -235,7 +235,7 @@ OPTIONS
235235
--uniqueName=uniqueName (required) unique name for the field type
236236
```
237237

238-
_See code: [src/commands/autopilot/fieldtypes/create.js](https://github.com/tingiris/twilio-cli-autopilot-plugin/blob/v1.0.0-beta.12/src/commands/autopilot/fieldtypes/create.js)_
238+
_See code: [src/commands/autopilot/fieldtypes/create.js](https://github.com/tingiris/twilio-cli-autopilot-plugin/blob/v1.0.0-beta.14/src/commands/autopilot/fieldtypes/create.js)_
239239

240240
## `twilio autopilot:fieldtypes:list`
241241

@@ -253,7 +253,7 @@ OPTIONS
253253
--properties=properties [default: sid, uniqueName] The Autopilot Assistant FieldType List.
254254
```
255255

256-
_See code: [src/commands/autopilot/fieldtypes/list.js](https://github.com/tingiris/twilio-cli-autopilot-plugin/blob/v1.0.0-beta.12/src/commands/autopilot/fieldtypes/list.js)_
256+
_See code: [src/commands/autopilot/fieldtypes/list.js](https://github.com/tingiris/twilio-cli-autopilot-plugin/blob/v1.0.0-beta.14/src/commands/autopilot/fieldtypes/list.js)_
257257

258258
## `twilio autopilot:fieldtypes:update`
259259

@@ -273,7 +273,7 @@ OPTIONS
273273
--uniqueName=uniqueName field type unique name to update
274274
```
275275

276-
_See code: [src/commands/autopilot/fieldtypes/update.js](https://github.com/tingiris/twilio-cli-autopilot-plugin/blob/v1.0.0-beta.12/src/commands/autopilot/fieldtypes/update.js)_
276+
_See code: [src/commands/autopilot/fieldtypes/update.js](https://github.com/tingiris/twilio-cli-autopilot-plugin/blob/v1.0.0-beta.14/src/commands/autopilot/fieldtypes/update.js)_
277277

278278
## `twilio autopilot:fieldvalues:upload`
279279

@@ -292,7 +292,7 @@ OPTIONS
292292
--fileName=fileName (required) a CSV file of field values (one on each row with synonyms in columns)
293293
```
294294

295-
_See code: [src/commands/autopilot/fieldvalues/upload.js](https://github.com/tingiris/twilio-cli-autopilot-plugin/blob/v1.0.0-beta.12/src/commands/autopilot/fieldvalues/upload.js)_
295+
_See code: [src/commands/autopilot/fieldvalues/upload.js](https://github.com/tingiris/twilio-cli-autopilot-plugin/blob/v1.0.0-beta.14/src/commands/autopilot/fieldvalues/upload.js)_
296296

297297
## `twilio autopilot:import [TYPE]`
298298

@@ -321,7 +321,7 @@ DESCRIPTION
321321
-> twilio autopilot:import alexa --model <alexa-interaction-model-file> [--redirectURL <alexa-back-end-hanlder-url>]
322322
```
323323

324-
_See code: [src/commands/autopilot/import.js](https://github.com/tingiris/twilio-cli-autopilot-plugin/blob/v1.0.0-beta.12/src/commands/autopilot/import.js)_
324+
_See code: [src/commands/autopilot/import.js](https://github.com/tingiris/twilio-cli-autopilot-plugin/blob/v1.0.0-beta.14/src/commands/autopilot/import.js)_
325325

326326
## `twilio autopilot:list`
327327

@@ -338,7 +338,7 @@ OPTIONS
338338
--properties=properties [default: sid, uniqueName, friendlyName] The Autopilot Assistant List.
339339
```
340340

341-
_See code: [src/commands/autopilot/list.js](https://github.com/tingiris/twilio-cli-autopilot-plugin/blob/v1.0.0-beta.12/src/commands/autopilot/list.js)_
341+
_See code: [src/commands/autopilot/list.js](https://github.com/tingiris/twilio-cli-autopilot-plugin/blob/v1.0.0-beta.14/src/commands/autopilot/list.js)_
342342

343343
## `twilio autopilot:modelbuilds:create`
344344

@@ -356,7 +356,7 @@ OPTIONS
356356
-u, --callbackURL=callbackURL URL to get notified of model build status
357357
```
358358

359-
_See code: [src/commands/autopilot/modelbuilds/create.js](https://github.com/tingiris/twilio-cli-autopilot-plugin/blob/v1.0.0-beta.12/src/commands/autopilot/modelbuilds/create.js)_
359+
_See code: [src/commands/autopilot/modelbuilds/create.js](https://github.com/tingiris/twilio-cli-autopilot-plugin/blob/v1.0.0-beta.14/src/commands/autopilot/modelbuilds/create.js)_
360360

361361
## `twilio autopilot:queries:export`
362362

@@ -374,7 +374,7 @@ OPTIONS
374374
-s, --assistantSid=assistantSid (required) assistant that owns the task
375375
```
376376

377-
_See code: [src/commands/autopilot/queries/export.js](https://github.com/tingiris/twilio-cli-autopilot-plugin/blob/v1.0.0-beta.12/src/commands/autopilot/queries/export.js)_
377+
_See code: [src/commands/autopilot/queries/export.js](https://github.com/tingiris/twilio-cli-autopilot-plugin/blob/v1.0.0-beta.14/src/commands/autopilot/queries/export.js)_
378378

379379
## `twilio autopilot:samples:upload`
380380

@@ -393,7 +393,7 @@ OPTIONS
393393
--taskSid=taskSid task sid
394394
```
395395

396-
_See code: [src/commands/autopilot/samples/upload.js](https://github.com/tingiris/twilio-cli-autopilot-plugin/blob/v1.0.0-beta.12/src/commands/autopilot/samples/upload.js)_
396+
_See code: [src/commands/autopilot/samples/upload.js](https://github.com/tingiris/twilio-cli-autopilot-plugin/blob/v1.0.0-beta.14/src/commands/autopilot/samples/upload.js)_
397397

398398
## `twilio autopilot:simulate`
399399

@@ -411,7 +411,7 @@ OPTIONS
411411
-t, --text=text (required) User text input
412412
```
413413

414-
_See code: [src/commands/autopilot/simulate.js](https://github.com/tingiris/twilio-cli-autopilot-plugin/blob/v1.0.0-beta.12/src/commands/autopilot/simulate.js)_
414+
_See code: [src/commands/autopilot/simulate.js](https://github.com/tingiris/twilio-cli-autopilot-plugin/blob/v1.0.0-beta.14/src/commands/autopilot/simulate.js)_
415415

416416
## `twilio autopilot:tasks:create`
417417

@@ -430,7 +430,7 @@ OPTIONS
430430
--uniqueName=uniqueName (required) unique name for task
431431
```
432432

433-
_See code: [src/commands/autopilot/tasks/create.js](https://github.com/tingiris/twilio-cli-autopilot-plugin/blob/v1.0.0-beta.12/src/commands/autopilot/tasks/create.js)_
433+
_See code: [src/commands/autopilot/tasks/create.js](https://github.com/tingiris/twilio-cli-autopilot-plugin/blob/v1.0.0-beta.14/src/commands/autopilot/tasks/create.js)_
434434

435435
## `twilio autopilot:tasks:delete`
436436

@@ -448,7 +448,7 @@ OPTIONS
448448
--taskSid=taskSid task sid
449449
```
450450

451-
_See code: [src/commands/autopilot/tasks/delete.js](https://github.com/tingiris/twilio-cli-autopilot-plugin/blob/v1.0.0-beta.12/src/commands/autopilot/tasks/delete.js)_
451+
_See code: [src/commands/autopilot/tasks/delete.js](https://github.com/tingiris/twilio-cli-autopilot-plugin/blob/v1.0.0-beta.14/src/commands/autopilot/tasks/delete.js)_
452452

453453
## `twilio autopilot:tasks:list`
454454

@@ -466,7 +466,7 @@ OPTIONS
466466
--properties=properties [default: sid, uniqueName, friendlyName] The Autopilot Assistant Task List.
467467
```
468468

469-
_See code: [src/commands/autopilot/tasks/list.js](https://github.com/tingiris/twilio-cli-autopilot-plugin/blob/v1.0.0-beta.12/src/commands/autopilot/tasks/list.js)_
469+
_See code: [src/commands/autopilot/tasks/list.js](https://github.com/tingiris/twilio-cli-autopilot-plugin/blob/v1.0.0-beta.14/src/commands/autopilot/tasks/list.js)_
470470

471471
## `twilio autopilot:tasks:update`
472472

@@ -486,7 +486,7 @@ OPTIONS
486486
--uniqueName=uniqueName task unique name to update
487487
```
488488

489-
_See code: [src/commands/autopilot/tasks/update.js](https://github.com/tingiris/twilio-cli-autopilot-plugin/blob/v1.0.0-beta.12/src/commands/autopilot/tasks/update.js)_
489+
_See code: [src/commands/autopilot/tasks/update.js](https://github.com/tingiris/twilio-cli-autopilot-plugin/blob/v1.0.0-beta.14/src/commands/autopilot/tasks/update.js)_
490490

491491
## `twilio autopilot:update`
492492

@@ -504,7 +504,7 @@ OPTIONS
504504
--uniqueName=uniqueName assistant uniqueName
505505
```
506506

507-
_See code: [src/commands/autopilot/update.js](https://github.com/tingiris/twilio-cli-autopilot-plugin/blob/v1.0.0-beta.12/src/commands/autopilot/update.js)_
507+
_See code: [src/commands/autopilot/update.js](https://github.com/tingiris/twilio-cli-autopilot-plugin/blob/v1.0.0-beta.14/src/commands/autopilot/update.js)_
508508

509509
## `twilio autopilot:webhooks:create`
510510

@@ -525,7 +525,7 @@ OPTIONS
525525
-w, --webhookUniqueName=webhookUniqueName (required) unique name for webhook
526526
```
527527

528-
_See code: [src/commands/autopilot/webhooks/create.js](https://github.com/tingiris/twilio-cli-autopilot-plugin/blob/v1.0.0-beta.12/src/commands/autopilot/webhooks/create.js)_
528+
_See code: [src/commands/autopilot/webhooks/create.js](https://github.com/tingiris/twilio-cli-autopilot-plugin/blob/v1.0.0-beta.14/src/commands/autopilot/webhooks/create.js)_
529529

530530
## `twilio autopilot:webhooks:delete`
531531

@@ -543,7 +543,7 @@ OPTIONS
543543
--webhookSid=webhookSid SID of the webhook to delete
544544
```
545545

546-
_See code: [src/commands/autopilot/webhooks/delete.js](https://github.com/tingiris/twilio-cli-autopilot-plugin/blob/v1.0.0-beta.12/src/commands/autopilot/webhooks/delete.js)_
546+
_See code: [src/commands/autopilot/webhooks/delete.js](https://github.com/tingiris/twilio-cli-autopilot-plugin/blob/v1.0.0-beta.14/src/commands/autopilot/webhooks/delete.js)_
547547

548548
## `twilio autopilot:webhooks:list`
549549

@@ -563,7 +563,7 @@ OPTIONS
563563
webhookMethod] The Autopilot Assistant Webhooks List.
564564
```
565565

566-
_See code: [src/commands/autopilot/webhooks/list.js](https://github.com/tingiris/twilio-cli-autopilot-plugin/blob/v1.0.0-beta.12/src/commands/autopilot/webhooks/list.js)_
566+
_See code: [src/commands/autopilot/webhooks/list.js](https://github.com/tingiris/twilio-cli-autopilot-plugin/blob/v1.0.0-beta.14/src/commands/autopilot/webhooks/list.js)_
567567

568568
## `twilio autopilot:webhooks:update`
569569

@@ -585,7 +585,7 @@ OPTIONS
585585
--webhookSid=webhookSid SID of the webhook to update
586586
```
587587

588-
_See code: [src/commands/autopilot/webhooks/update.js](https://github.com/tingiris/twilio-cli-autopilot-plugin/blob/v1.0.0-beta.12/src/commands/autopilot/webhooks/update.js)_
588+
_See code: [src/commands/autopilot/webhooks/update.js](https://github.com/tingiris/twilio-cli-autopilot-plugin/blob/v1.0.0-beta.14/src/commands/autopilot/webhooks/update.js)_
589589

590590
## `twilio help [COMMAND]`
591591

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@dabblelab/plugin-autopilot",
33
"description": "Create, Update, Delete, List, Simulate, Import and Export Twilio Autopilot Assistant",
4-
"version": "1.0.0-beta.13",
4+
"version": "1.0.0-beta.14",
55
"author": "Steve Tingiris",
66
"bugs": "https://github.com/tingiris/twilio-cli-autopilot-plugin/issues",
77
"dependencies": {

0 commit comments

Comments
 (0)