Skip to content

Commit 6754df1

Browse files
committed
3.1.0
1 parent 64a1b63 commit 6754df1

File tree

3 files changed

+29
-20
lines changed

3 files changed

+29
-20
lines changed

README.md

Lines changed: 27 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ $ npm install -g @adobe/aio-cli
174174
$ aio COMMAND
175175
running command...
176176
$ aio (-v|--version|version)
177-
@adobe/aio-cli/3.0.0 darwin-x64 node-v10.16.1
177+
@adobe/aio-cli/3.1.0 darwin-x64 node-v10.18.1
178178
$ aio --help [COMMAND]
179179
USAGE
180180
$ aio COMMAND
@@ -607,7 +607,7 @@ EXAMPLE
607607
}
608608
```
609609

610-
_See code: [@adobe/aio-cli-plugin-auth](https://github.com/adobe/aio-cli-plugin-auth/blob/v1.0.6/src/commands/auth/index.js)_
610+
_See code: [@adobe/aio-cli-plugin-auth](https://github.com/adobe/aio-cli-plugin-auth/blob/v2.0.0/src/commands/auth/index.js)_
611611

612612
## `aio auth:ctx`
613613

@@ -647,7 +647,7 @@ ALIASES
647647
$ aio context
648648
```
649649

650-
_See code: [@adobe/aio-cli-plugin-auth](https://github.com/adobe/aio-cli-plugin-auth/blob/v1.0.6/src/commands/auth/ctx.js)_
650+
_See code: [@adobe/aio-cli-plugin-auth](https://github.com/adobe/aio-cli-plugin-auth/blob/v2.0.0/src/commands/auth/ctx.js)_
651651

652652
## `aio auth:login`
653653

@@ -658,6 +658,7 @@ USAGE
658658
$ aio auth:login
659659
660660
OPTIONS
661+
-b, --bare print access token only
661662
-c, --ctx=ctx Name of the Adobe IMS context to use. Default is the current Adobe IMS context
662663
-d, --decode Decode and display access token data
663664
@@ -686,9 +687,9 @@ DESCRIPTION
686687
687688
The currently supported Adobe IMS login plugins are:
688689
689-
* aio-lib-core-ims-jwt for JWT token based login supporting
690+
* aio-lib-ims-jwt for JWT token based login supporting
690691
Adobe I/O Console service integrations.
691-
* aio-lib-core-ims-oauth for browser based OAuth2 login. This
692+
* aio-lib-ims-oauth for browser based OAuth2 login. This
692693
plugin will launch a Chromium browser to guide the user through the
693694
login process. The plugin itself will *never* see the user's
694695
password but only receive the authorization token after the
@@ -698,7 +699,7 @@ ALIASES
698699
$ aio login
699700
```
700701

701-
_See code: [@adobe/aio-cli-plugin-auth](https://github.com/adobe/aio-cli-plugin-auth/blob/v1.0.6/src/commands/auth/login.js)_
702+
_See code: [@adobe/aio-cli-plugin-auth](https://github.com/adobe/aio-cli-plugin-auth/blob/v2.0.0/src/commands/auth/login.js)_
702703

703704
## `aio auth:logout`
704705

@@ -735,7 +736,7 @@ ALIASES
735736
$ aio logout
736737
```
737738

738-
_See code: [@adobe/aio-cli-plugin-auth](https://github.com/adobe/aio-cli-plugin-auth/blob/v1.0.6/src/commands/auth/logout.js)_
739+
_See code: [@adobe/aio-cli-plugin-auth](https://github.com/adobe/aio-cli-plugin-auth/blob/v2.0.0/src/commands/auth/logout.js)_
739740

740741
## `aio autocomplete [SHELL]`
741742

@@ -769,7 +770,7 @@ USAGE
769770
$ aio certificate
770771
```
771772

772-
_See code: [@adobe/aio-cli-plugin-certificate](https://github.com/adobe/aio-cli-plugin-certificate/blob/v0.1.0/src/commands/certificate/index.js)_
773+
_See code: [@adobe/aio-cli-plugin-certificate](https://github.com/adobe/aio-cli-plugin-certificate/blob/v0.1.1/src/commands/certificate/index.js)_
773774

774775
## `aio certificate:generate`
775776

@@ -782,20 +783,28 @@ USAGE
782783
OPTIONS
783784
-c, --country=country Country Name
784785
-l, --locality=locality Locality, or city name
785-
-n, --name=name Common Name: typically a host domain name, like www.mysite.com
786+
787+
-n, --name=name [default: selfsign.localhost] Common Name: typically a host domain name, like
788+
www.mysite.com
789+
786790
-o, --organization=organization Organization name
791+
787792
-s, --state=state State or Province
793+
788794
-u, --unit=unit Organizational unit or department
795+
789796
--days=days [default: 365] Number of days the certificate should be valid for. (Max 365)
797+
790798
--keyout=keyout [default: private.key] file to send the key to
799+
791800
--out=out [default: certificate_pub.crt] output file
792801
793802
DESCRIPTION
794-
Generate a self-signed certificate to enable https:// on localhost or signing jwt payloads for interacting with Adobe
803+
Generate a self-signed certificate to enable https:// on localhost or signing jwt payloads for interacting with Adobe
795804
services.
796805
```
797806

798-
_See code: [@adobe/aio-cli-plugin-certificate](https://github.com/adobe/aio-cli-plugin-certificate/blob/v0.1.0/src/commands/certificate/generate.js)_
807+
_See code: [@adobe/aio-cli-plugin-certificate](https://github.com/adobe/aio-cli-plugin-certificate/blob/v0.1.1/src/commands/certificate/generate.js)_
799808

800809
## `aio certificate:verify FILE`
801810

@@ -815,7 +824,7 @@ DESCRIPTION
815824
Verifies that the certificate is valid, and/or will not expire in [--days] days from now.
816825
```
817826

818-
_See code: [@adobe/aio-cli-plugin-certificate](https://github.com/adobe/aio-cli-plugin-certificate/blob/v0.1.0/src/commands/certificate/verify.js)_
827+
_See code: [@adobe/aio-cli-plugin-certificate](https://github.com/adobe/aio-cli-plugin-certificate/blob/v0.1.1/src/commands/certificate/verify.js)_
819828

820829
## `aio config`
821830

@@ -1069,7 +1078,7 @@ OPTIONS
10691078
10701079
DESCRIPTION
10711080
Run 'console:ls' to get a list of integrations to select from.
1072-
The .wskprops file will be written to your home folder, and you will be prompted whether you want to overwrite an
1081+
The .wskprops file will be written to your home folder, and you will be prompted whether you want to overwrite an
10731082
existing file.
10741083
10751084
ALIASES
@@ -1119,7 +1128,7 @@ ALIASES
11191128
$ aio plugins:discover
11201129
```
11211130

1122-
_See code: [src/commands/discover.js](https://github.com/adobe/aio-cli/blob/v3.0.0/src/commands/discover.js)_
1131+
_See code: [src/commands/discover.js](https://github.com/adobe/aio-cli/blob/v3.1.0/src/commands/discover.js)_
11231132

11241133
## `aio help [COMMAND]`
11251134

@@ -1212,15 +1221,15 @@ DESCRIPTION
12121221
12131222
Installation of a user-installed plugin will override a core plugin.
12141223
1215-
e.g. If you have a core plugin that has a 'hello' command, installing a user-installed plugin with a 'hello' command
1216-
will override the core plugin implementation. This is useful if a user needs to update core plugin functionality in
1224+
e.g. If you have a core plugin that has a 'hello' command, installing a user-installed plugin with a 'hello' command
1225+
will override the core plugin implementation. This is useful if a user needs to update core plugin functionality in
12171226
the CLI without the need to patch and update the whole CLI.
12181227
12191228
ALIASES
12201229
$ aio plugins:add
12211230
12221231
EXAMPLES
1223-
$ aio plugins:install myplugin
1232+
$ aio plugins:install myplugin
12241233
$ aio plugins:install https://github.com/someuser/someplugin
12251234
$ aio plugins:install someuser/someplugin
12261235
```
@@ -1245,7 +1254,7 @@ OPTIONS
12451254
DESCRIPTION
12461255
Installation of a linked plugin will override a user-installed or core plugin.
12471256
1248-
e.g. If you have a user-installed or core plugin that has a 'hello' command, installing a linked plugin with a 'hello'
1257+
e.g. If you have a user-installed or core plugin that has a 'hello' command, installing a linked plugin with a 'hello'
12491258
command will override the user-installed or core plugin implementation. This is useful for development work.
12501259
12511260
EXAMPLE

package-lock.json

Lines changed: 1 addition & 1 deletion
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": "@adobe/aio-cli",
33
"description": "Adobe I/O Extensible CLI\n\n******* *******\n****** ******\n***** *****\n**** * ****\n*** *** ***\n** ***** **\n* ** *\n",
4-
"version": "3.0.0",
4+
"version": "3.1.0",
55
"author": "Adobe Inc.",
66
"bin": {
77
"aio": "./bin/run",

0 commit comments

Comments
 (0)