@@ -174,7 +174,7 @@ $ npm install -g @adobe/aio-cli
174
174
$ aio COMMAND
175
175
running command...
176
176
$ 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
178
178
$ aio --help [COMMAND]
179
179
USAGE
180
180
$ aio COMMAND
@@ -607,7 +607,7 @@ EXAMPLE
607
607
}
608
608
```
609
609
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 ) _
611
611
612
612
## ` aio auth:ctx `
613
613
@@ -647,7 +647,7 @@ ALIASES
647
647
$ aio context
648
648
```
649
649
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 ) _
651
651
652
652
## ` aio auth:login `
653
653
@@ -658,6 +658,7 @@ USAGE
658
658
$ aio auth:login
659
659
660
660
OPTIONS
661
+ -b, --bare print access token only
661
662
-c, --ctx=ctx Name of the Adobe IMS context to use. Default is the current Adobe IMS context
662
663
-d, --decode Decode and display access token data
663
664
@@ -686,9 +687,9 @@ DESCRIPTION
686
687
687
688
The currently supported Adobe IMS login plugins are:
688
689
689
- * aio-lib-core- ims-jwt for JWT token based login supporting
690
+ * aio-lib-ims-jwt for JWT token based login supporting
690
691
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
692
693
plugin will launch a Chromium browser to guide the user through the
693
694
login process. The plugin itself will *never* see the user's
694
695
password but only receive the authorization token after the
@@ -698,7 +699,7 @@ ALIASES
698
699
$ aio login
699
700
```
700
701
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 ) _
702
703
703
704
## ` aio auth:logout `
704
705
@@ -735,7 +736,7 @@ ALIASES
735
736
$ aio logout
736
737
```
737
738
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 ) _
739
740
740
741
## ` aio autocomplete [SHELL] `
741
742
@@ -769,7 +770,7 @@ USAGE
769
770
$ aio certificate
770
771
```
771
772
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 ) _
773
774
774
775
## ` aio certificate:generate `
775
776
@@ -782,20 +783,28 @@ USAGE
782
783
OPTIONS
783
784
-c, --country=country Country Name
784
785
-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
+
786
790
-o, --organization=organization Organization name
791
+
787
792
-s, --state=state State or Province
793
+
788
794
-u, --unit=unit Organizational unit or department
795
+
789
796
--days=days [default: 365] Number of days the certificate should be valid for. (Max 365)
797
+
790
798
--keyout=keyout [default: private.key] file to send the key to
799
+
791
800
--out=out [default: certificate_pub.crt] output file
792
801
793
802
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
795
804
services.
796
805
```
797
806
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 ) _
799
808
800
809
## ` aio certificate:verify FILE `
801
810
@@ -815,7 +824,7 @@ DESCRIPTION
815
824
Verifies that the certificate is valid, and/or will not expire in [--days] days from now.
816
825
```
817
826
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 ) _
819
828
820
829
## ` aio config `
821
830
@@ -1069,7 +1078,7 @@ OPTIONS
1069
1078
1070
1079
DESCRIPTION
1071
1080
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
1073
1082
existing file.
1074
1083
1075
1084
ALIASES
@@ -1119,7 +1128,7 @@ ALIASES
1119
1128
$ aio plugins:discover
1120
1129
```
1121
1130
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 ) _
1123
1132
1124
1133
## ` aio help [COMMAND] `
1125
1134
@@ -1212,15 +1221,15 @@ DESCRIPTION
1212
1221
1213
1222
Installation of a user-installed plugin will override a core plugin.
1214
1223
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
1217
1226
the CLI without the need to patch and update the whole CLI.
1218
1227
1219
1228
ALIASES
1220
1229
$ aio plugins:add
1221
1230
1222
1231
EXAMPLES
1223
- $ aio plugins:install myplugin
1232
+ $ aio plugins:install myplugin
1224
1233
$ aio plugins:install https://github.com/someuser/someplugin
1225
1234
$ aio plugins:install someuser/someplugin
1226
1235
```
@@ -1245,7 +1254,7 @@ OPTIONS
1245
1254
DESCRIPTION
1246
1255
Installation of a linked plugin will override a user-installed or core plugin.
1247
1256
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'
1249
1258
command will override the user-installed or core plugin implementation. This is useful for development work.
1250
1259
1251
1260
EXAMPLE
0 commit comments