Skip to content

Commit a08e475

Browse files
Release for v0.8.1
1 parent 9084c84 commit a08e475

File tree

3 files changed

+42
-42
lines changed

3 files changed

+42
-42
lines changed

README.md

Lines changed: 39 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ EXAMPLES
184184
$ swaggerhub api:create organization/api/1.0.0 --published=publish --setdefault --file api.json
185185
```
186186

187-
_See code: [src/commands/api/create.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.0/src/commands/api/create.js)_
187+
_See code: [src/commands/api/create.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.1/src/commands/api/create.js)_
188188

189189
## `swaggerhub api:delete`
190190

@@ -213,7 +213,7 @@ EXAMPLES
213213
$ swaggerhub api:delete organization/api --force
214214
```
215215

216-
_See code: [src/commands/api/delete.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.0/src/commands/api/delete.js)_
216+
_See code: [src/commands/api/delete.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.1/src/commands/api/delete.js)_
217217

218218
## `swaggerhub api:get`
219219

@@ -243,7 +243,7 @@ EXAMPLES
243243
$ swaggerhub api:get organization/api/1.0.0 --json
244244
```
245245

246-
_See code: [src/commands/api/get.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.0/src/commands/api/get.js)_
246+
_See code: [src/commands/api/get.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.1/src/commands/api/get.js)_
247247

248248
## `swaggerhub api:publish`
249249

@@ -269,7 +269,7 @@ EXAMPLES
269269
$ swaggerhub api:publish organization/api/1.0.0 --force
270270
```
271271

272-
_See code: [src/commands/api/publish.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.0/src/commands/api/publish.js)_
272+
_See code: [src/commands/api/publish.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.1/src/commands/api/publish.js)_
273273

274274
## `swaggerhub api:setdefault`
275275

@@ -292,7 +292,7 @@ EXAMPLES
292292
$ swaggerhub api:setdefault organization/api/2.0.0
293293
```
294294

295-
_See code: [src/commands/api/setdefault.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.0/src/commands/api/setdefault.js)_
295+
_See code: [src/commands/api/setdefault.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.1/src/commands/api/setdefault.js)_
296296

297297
## `swaggerhub api:unpublish`
298298

@@ -315,7 +315,7 @@ EXAMPLES
315315
$ swaggerhub api:unpublish organization/api/1.0.0
316316
```
317317

318-
_See code: [src/commands/api/unpublish.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.0/src/commands/api/unpublish.js)_
318+
_See code: [src/commands/api/unpublish.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.1/src/commands/api/unpublish.js)_
319319

320320
## `swaggerhub api:update`
321321

@@ -359,7 +359,7 @@ EXAMPLES
359359
$ swaggerhub api:update organization/api/1.0.0 --visibility=private
360360
```
361361

362-
_See code: [src/commands/api/update.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.0/src/commands/api/update.js)_
362+
_See code: [src/commands/api/update.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.1/src/commands/api/update.js)_
363363

364364
## `swaggerhub api:validate`
365365

@@ -393,7 +393,7 @@ EXAMPLES
393393
$ swaggerhub api:validate --fail-on-critical --json organization/api
394394
```
395395

396-
_See code: [src/commands/api/validate/index.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.0/src/commands/api/validate/index.js)_
396+
_See code: [src/commands/api/validate/index.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.1/src/commands/api/validate/index.js)_
397397

398398
## `swaggerhub api:validate:local`
399399

@@ -423,7 +423,7 @@ EXAMPLES
423423
$ swaggerhub api:validate:local --organization myOrg --file ./my-api/json --fail-on-critical --json
424424
```
425425

426-
_See code: [src/commands/api/validate/local.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.0/src/commands/api/validate/local.js)_
426+
_See code: [src/commands/api/validate/local.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.1/src/commands/api/validate/local.js)_
427427

428428
## `swaggerhub configure`
429429

@@ -446,7 +446,7 @@ DESCRIPTION
446446
settings.
447447
```
448448

449-
_See code: [src/commands/configure.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.0/src/commands/configure.js)_
449+
_See code: [src/commands/configure.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.1/src/commands/configure.js)_
450450

451451
## `swaggerhub domain:create`
452452

@@ -487,7 +487,7 @@ EXAMPLES
487487
$ swaggerhub domain:create organization/domain/1.0.0 --publish --setdefault --file domain.json
488488
```
489489

490-
_See code: [src/commands/domain/create.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.0/src/commands/domain/create.js)_
490+
_See code: [src/commands/domain/create.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.1/src/commands/domain/create.js)_
491491

492492
## `swaggerhub domain:delete`
493493

@@ -516,7 +516,7 @@ EXAMPLES
516516
$ swaggerhub domain:delete organization/domain --force
517517
```
518518

519-
_See code: [src/commands/domain/delete.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.0/src/commands/domain/delete.js)_
519+
_See code: [src/commands/domain/delete.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.1/src/commands/domain/delete.js)_
520520

521521
## `swaggerhub domain:get`
522522

@@ -545,7 +545,7 @@ EXAMPLES
545545
$ swaggerhub domain:get organization/domain/1.0.0 --json
546546
```
547547

548-
_See code: [src/commands/domain/get.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.0/src/commands/domain/get.js)_
548+
_See code: [src/commands/domain/get.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.1/src/commands/domain/get.js)_
549549

550550
## `swaggerhub domain:publish`
551551

@@ -568,7 +568,7 @@ EXAMPLES
568568
$ swaggerhub domain:publish organization/domain/1.0.0
569569
```
570570

571-
_See code: [src/commands/domain/publish.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.0/src/commands/domain/publish.js)_
571+
_See code: [src/commands/domain/publish.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.1/src/commands/domain/publish.js)_
572572

573573
## `swaggerhub domain:setdefault`
574574

@@ -591,7 +591,7 @@ EXAMPLES
591591
$ swaggerhub domain:setdefault organization/domain/2.0.0
592592
```
593593

594-
_See code: [src/commands/domain/setdefault.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.0/src/commands/domain/setdefault.js)_
594+
_See code: [src/commands/domain/setdefault.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.1/src/commands/domain/setdefault.js)_
595595

596596
## `swaggerhub domain:unpublish`
597597

@@ -614,7 +614,7 @@ EXAMPLES
614614
$ swaggerhub domain:unpublish organization/domain/1.0.0
615615
```
616616

617-
_See code: [src/commands/domain/unpublish.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.0/src/commands/domain/unpublish.js)_
617+
_See code: [src/commands/domain/unpublish.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.1/src/commands/domain/unpublish.js)_
618618

619619
## `swaggerhub domain:update`
620620

@@ -658,7 +658,7 @@ EXAMPLES
658658
$ swaggerhub domain:update organization/domain/1.0.0 --visibility=private
659659
```
660660

661-
_See code: [src/commands/domain/update.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.0/src/commands/domain/update.js)_
661+
_See code: [src/commands/domain/update.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.1/src/commands/domain/update.js)_
662662

663663
## `swaggerhub help`
664664

@@ -678,7 +678,7 @@ DESCRIPTION
678678
Display help for swaggerhub.
679679
```
680680

681-
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v5.2.12/src/commands/help.ts)_
681+
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v5.2.15/src/commands/help.ts)_
682682

683683
## `swaggerhub integration:create`
684684

@@ -706,7 +706,7 @@ EXAMPLES
706706
$ swaggerhub integration:create organization/api/1.0.0 --file config.json
707707
```
708708

709-
_See code: [src/commands/integration/create.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.0/src/commands/integration/create.js)_
709+
_See code: [src/commands/integration/create.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.1/src/commands/integration/create.js)_
710710

711711
## `swaggerhub integration:delete`
712712

@@ -729,7 +729,7 @@ EXAMPLES
729729
$ swaggerhub integration:delete organization/api/1.0.0/503c2db6-448a-4678-a310-f465429e9704
730730
```
731731

732-
_See code: [src/commands/integration/delete.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.0/src/commands/integration/delete.js)_
732+
_See code: [src/commands/integration/delete.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.1/src/commands/integration/delete.js)_
733733

734734
## `swaggerhub integration:execute`
735735

@@ -752,7 +752,7 @@ EXAMPLES
752752
$ swaggerhub integration:execute organization/api/1.0.0/503c2db6-448a-4678-a310-f465429e9704
753753
```
754754

755-
_See code: [src/commands/integration/execute.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.0/src/commands/integration/execute.js)_
755+
_See code: [src/commands/integration/execute.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.1/src/commands/integration/execute.js)_
756756

757757
## `swaggerhub integration:get`
758758

@@ -775,7 +775,7 @@ EXAMPLES
775775
$ swaggerhub integration:get organization/api/1.0.0/503c2db6-448a-4678-a310-f465429e9704
776776
```
777777

778-
_See code: [src/commands/integration/get.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.0/src/commands/integration/get.js)_
778+
_See code: [src/commands/integration/get.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.1/src/commands/integration/get.js)_
779779

780780
## `swaggerhub integration:list`
781781

@@ -798,7 +798,7 @@ EXAMPLES
798798
$ swaggerhub integration:list organization/api/1.0.0
799799
```
800800

801-
_See code: [src/commands/integration/list.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.0/src/commands/integration/list.js)_
801+
_See code: [src/commands/integration/list.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.1/src/commands/integration/list.js)_
802802

803803
## `swaggerhub integration:update`
804804

@@ -822,7 +822,7 @@ EXAMPLES
822822
$ swaggerhub integration:update organization/api/1.0.0/503c2db6-448a-4678-abcd-0123456789abc --file config.json
823823
```
824824

825-
_See code: [src/commands/integration/update.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.0/src/commands/integration/update.js)_
825+
_See code: [src/commands/integration/update.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.1/src/commands/integration/update.js)_
826826

827827
## `swaggerhub plugins`
828828

@@ -845,7 +845,7 @@ EXAMPLES
845845
$ swaggerhub plugins
846846
```
847847

848-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v3.1.6/src/commands/plugins/index.ts)_
848+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v3.1.8/src/commands/plugins/index.ts)_
849849

850850
## `swaggerhub plugins:install`
851851

@@ -910,7 +910,7 @@ EXAMPLES
910910
$ swaggerhub plugins:inspect myplugin
911911
```
912912

913-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v3.1.6/src/commands/plugins/inspect.ts)_
913+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v3.1.8/src/commands/plugins/inspect.ts)_
914914

915915
## `swaggerhub plugins:install`
916916

@@ -950,7 +950,7 @@ EXAMPLES
950950
$ swaggerhub plugins:install someuser/someplugin
951951
```
952952

953-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v3.1.6/src/commands/plugins/install.ts)_
953+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v3.1.8/src/commands/plugins/install.ts)_
954954

955955
## `swaggerhub plugins:link`
956956

@@ -979,7 +979,7 @@ EXAMPLES
979979
$ swaggerhub plugins:link myplugin
980980
```
981981

982-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v3.1.6/src/commands/plugins/link.ts)_
982+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v3.1.8/src/commands/plugins/link.ts)_
983983

984984
## `swaggerhub plugins:uninstall`
985985

@@ -1027,7 +1027,7 @@ ALIASES
10271027
$ swaggerhub plugins:remove
10281028
```
10291029

1030-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v3.1.6/src/commands/plugins/uninstall.ts)_
1030+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v3.1.8/src/commands/plugins/uninstall.ts)_
10311031

10321032
## `swaggerhub plugins:uninstall`
10331033

@@ -1068,7 +1068,7 @@ DESCRIPTION
10681068
Update installed plugins.
10691069
```
10701070

1071-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v3.1.6/src/commands/plugins/update.ts)_
1071+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v3.1.8/src/commands/plugins/update.ts)_
10721072

10731073
## `swaggerhub project:api:add`
10741074

@@ -1092,7 +1092,7 @@ EXAMPLES
10921092
$ swaggerhub project:api:add organization/project_name my_api
10931093
```
10941094

1095-
_See code: [src/commands/project/api/add.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.0/src/commands/project/api/add.js)_
1095+
_See code: [src/commands/project/api/add.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.1/src/commands/project/api/add.js)_
10961096

10971097
## `swaggerhub project:api:remove`
10981098

@@ -1116,7 +1116,7 @@ EXAMPLES
11161116
$ swaggerhub project:api:remove organization/project_name my_api
11171117
```
11181118

1119-
_See code: [src/commands/project/api/remove.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.0/src/commands/project/api/remove.js)_
1119+
_See code: [src/commands/project/api/remove.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.1/src/commands/project/api/remove.js)_
11201120

11211121
## `swaggerhub project:create`
11221122

@@ -1152,7 +1152,7 @@ EXAMPLES
11521152
$ swaggerhub project:create organization/new_project_name -a "testapi1" -d "testdomain3" --description "description"
11531153
```
11541154

1155-
_See code: [src/commands/project/create.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.0/src/commands/project/create.js)_
1155+
_See code: [src/commands/project/create.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.1/src/commands/project/create.js)_
11561156

11571157
## `swaggerhub project:delete`
11581158

@@ -1175,7 +1175,7 @@ EXAMPLES
11751175
$ swaggerhub project:delete organization/project_name
11761176
```
11771177

1178-
_See code: [src/commands/project/delete.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.0/src/commands/project/delete.js)_
1178+
_See code: [src/commands/project/delete.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.1/src/commands/project/delete.js)_
11791179

11801180
## `swaggerhub project:domain:add`
11811181

@@ -1199,7 +1199,7 @@ EXAMPLES
11991199
$ swaggerhub project:domain:add organization/project_name my_domain
12001200
```
12011201

1202-
_See code: [src/commands/project/domain/add.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.0/src/commands/project/domain/add.js)_
1202+
_See code: [src/commands/project/domain/add.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.1/src/commands/project/domain/add.js)_
12031203

12041204
## `swaggerhub project:domain:remove`
12051205

@@ -1223,7 +1223,7 @@ EXAMPLES
12231223
$ swaggerhub project:domain:remove organization/project_name my_domain
12241224
```
12251225

1226-
_See code: [src/commands/project/domain/remove.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.0/src/commands/project/domain/remove.js)_
1226+
_See code: [src/commands/project/domain/remove.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.1/src/commands/project/domain/remove.js)_
12271227

12281228
## `swaggerhub project:get`
12291229

@@ -1246,7 +1246,7 @@ EXAMPLES
12461246
$ swaggerhub project:get organization/project_name
12471247
```
12481248

1249-
_See code: [src/commands/project/get.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.0/src/commands/project/get.js)_
1249+
_See code: [src/commands/project/get.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.1/src/commands/project/get.js)_
12501250

12511251
## `swaggerhub project:list`
12521252

@@ -1271,7 +1271,7 @@ EXAMPLES
12711271
$ swaggerhub project:list organization
12721272
```
12731273

1274-
_See code: [src/commands/project/list.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.0/src/commands/project/list.js)_
1274+
_See code: [src/commands/project/list.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.1/src/commands/project/list.js)_
12751275

12761276
## `swaggerhub project:member:list`
12771277

@@ -1294,7 +1294,7 @@ EXAMPLES
12941294
$ swaggerhub project:member:list organisation/project_name
12951295
```
12961296

1297-
_See code: [src/commands/project/member/list.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.0/src/commands/project/member/list.js)_
1297+
_See code: [src/commands/project/member/list.js](https://github.com/SmartBear/swaggerhub-cli/blob/v0.8.1/src/commands/project/member/list.js)_
12981298
<!-- commandsstop -->
12991299

13001300
# Plugins

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "swaggerhub-cli",
33
"description": "SwaggerHub CLI",
4-
"version": "0.8.0",
4+
"version": "0.8.1",
55
"author": "SmartBear",
66
"bin": {
77
"swaggerhub": "./bin/run"

0 commit comments

Comments
 (0)