forked from heroku/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
37 changed files
with
172 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,7 +24,7 @@ ALIASES | |
$ heroku twofactor | ||
``` | ||
|
||
_See code: [@heroku-cli/plugin-auth](https://github.com/heroku/cli/blob/v7.19.0/packages/auth/src/commands/auth/2fa/index.ts)_ | ||
_See code: [@heroku-cli/plugin-auth](https://github.com/heroku/cli/blob/v7.19.1/packages/auth/src/commands/auth/2fa/index.ts)_ | ||
|
||
## `heroku auth:2fa:disable` | ||
|
||
|
@@ -43,7 +43,7 @@ EXAMPLES | |
Disabling 2fa on [email protected]... done | ||
``` | ||
|
||
_See code: [@heroku-cli/plugin-auth](https://github.com/heroku/cli/blob/v7.19.0/packages/auth/src/commands/auth/2fa/disable.ts)_ | ||
_See code: [@heroku-cli/plugin-auth](https://github.com/heroku/cli/blob/v7.19.1/packages/auth/src/commands/auth/2fa/disable.ts)_ | ||
|
||
## `heroku auth:2fa:generate-recovery-codes` | ||
|
||
|
@@ -82,7 +82,7 @@ EXAMPLES | |
f82e7c2a50737494 | ||
``` | ||
|
||
_See code: [@heroku-cli/plugin-auth](https://github.com/heroku/cli/blob/v7.19.0/packages/auth/src/commands/auth/2fa/generate-recovery-codes.ts)_ | ||
_See code: [@heroku-cli/plugin-auth](https://github.com/heroku/cli/blob/v7.19.1/packages/auth/src/commands/auth/2fa/generate-recovery-codes.ts)_ | ||
|
||
## `heroku auth:login` | ||
|
||
|
@@ -101,7 +101,7 @@ ALIASES | |
$ heroku login | ||
``` | ||
|
||
_See code: [@heroku-cli/plugin-auth](https://github.com/heroku/cli/blob/v7.19.0/packages/auth/src/commands/auth/login.ts)_ | ||
_See code: [@heroku-cli/plugin-auth](https://github.com/heroku/cli/blob/v7.19.1/packages/auth/src/commands/auth/login.ts)_ | ||
|
||
## `heroku auth:logout` | ||
|
||
|
@@ -115,7 +115,7 @@ ALIASES | |
$ heroku logout | ||
``` | ||
|
||
_See code: [@heroku-cli/plugin-auth](https://github.com/heroku/cli/blob/v7.19.0/packages/auth/src/commands/auth/logout.ts)_ | ||
_See code: [@heroku-cli/plugin-auth](https://github.com/heroku/cli/blob/v7.19.1/packages/auth/src/commands/auth/logout.ts)_ | ||
|
||
## `heroku auth:token` | ||
|
||
|
@@ -133,7 +133,7 @@ DESCRIPTION | |
authorizations:create | ||
``` | ||
|
||
_See code: [@heroku-cli/plugin-auth](https://github.com/heroku/cli/blob/v7.19.0/packages/auth/src/commands/auth/token.ts)_ | ||
_See code: [@heroku-cli/plugin-auth](https://github.com/heroku/cli/blob/v7.19.1/packages/auth/src/commands/auth/token.ts)_ | ||
|
||
## `heroku auth:whoami` | ||
|
||
|
@@ -147,4 +147,4 @@ ALIASES | |
$ heroku whoami | ||
``` | ||
|
||
_See code: [@heroku-cli/plugin-auth](https://github.com/heroku/cli/blob/v7.19.0/packages/auth/src/commands/auth/whoami.ts)_ | ||
_See code: [@heroku-cli/plugin-auth](https://github.com/heroku/cli/blob/v7.19.1/packages/auth/src/commands/auth/whoami.ts)_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"version": "7.19.0", | ||
"version": "7.19.1", | ||
"lerna": "2.11.0", | ||
"useWorkspaces": true, | ||
"npmClient": "yarn", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,7 +37,7 @@ ALIASES | |
$ heroku twofactor | ||
``` | ||
|
||
_See code: [src/commands/auth/2fa/index.ts](https://github.com/heroku/cli/blob/v7.19.0/packages/auth/src/commands/auth/2fa/index.ts)_ | ||
_See code: [src/commands/auth/2fa/index.ts](https://github.com/heroku/cli/blob/v7.19.1/packages/auth/src/commands/auth/2fa/index.ts)_ | ||
|
||
## `heroku auth:2fa:disable` | ||
|
||
|
@@ -56,7 +56,7 @@ EXAMPLES | |
Disabling 2fa on [email protected]... done | ||
``` | ||
|
||
_See code: [src/commands/auth/2fa/disable.ts](https://github.com/heroku/cli/blob/v7.19.0/packages/auth/src/commands/auth/2fa/disable.ts)_ | ||
_See code: [src/commands/auth/2fa/disable.ts](https://github.com/heroku/cli/blob/v7.19.1/packages/auth/src/commands/auth/2fa/disable.ts)_ | ||
|
||
## `heroku auth:2fa:generate-recovery-codes` | ||
|
||
|
@@ -95,7 +95,7 @@ EXAMPLES | |
f82e7c2a50737494 | ||
``` | ||
|
||
_See code: [src/commands/auth/2fa/generate-recovery-codes.ts](https://github.com/heroku/cli/blob/v7.19.0/packages/auth/src/commands/auth/2fa/generate-recovery-codes.ts)_ | ||
_See code: [src/commands/auth/2fa/generate-recovery-codes.ts](https://github.com/heroku/cli/blob/v7.19.1/packages/auth/src/commands/auth/2fa/generate-recovery-codes.ts)_ | ||
|
||
## `heroku auth:login` | ||
|
||
|
@@ -114,7 +114,7 @@ ALIASES | |
$ heroku login | ||
``` | ||
|
||
_See code: [src/commands/auth/login.ts](https://github.com/heroku/cli/blob/v7.19.0/packages/auth/src/commands/auth/login.ts)_ | ||
_See code: [src/commands/auth/login.ts](https://github.com/heroku/cli/blob/v7.19.1/packages/auth/src/commands/auth/login.ts)_ | ||
|
||
## `heroku auth:logout` | ||
|
||
|
@@ -128,7 +128,7 @@ ALIASES | |
$ heroku logout | ||
``` | ||
|
||
_See code: [src/commands/auth/logout.ts](https://github.com/heroku/cli/blob/v7.19.0/packages/auth/src/commands/auth/logout.ts)_ | ||
_See code: [src/commands/auth/logout.ts](https://github.com/heroku/cli/blob/v7.19.1/packages/auth/src/commands/auth/logout.ts)_ | ||
|
||
## `heroku auth:token` | ||
|
||
|
@@ -146,7 +146,7 @@ DESCRIPTION | |
authorizations:create | ||
``` | ||
|
||
_See code: [src/commands/auth/token.ts](https://github.com/heroku/cli/blob/v7.19.0/packages/auth/src/commands/auth/token.ts)_ | ||
_See code: [src/commands/auth/token.ts](https://github.com/heroku/cli/blob/v7.19.1/packages/auth/src/commands/auth/token.ts)_ | ||
|
||
## `heroku auth:whoami` | ||
|
||
|
@@ -160,7 +160,7 @@ ALIASES | |
$ heroku whoami | ||
``` | ||
|
||
_See code: [src/commands/auth/whoami.ts](https://github.com/heroku/cli/blob/v7.19.0/packages/auth/src/commands/auth/whoami.ts)_ | ||
_See code: [src/commands/auth/whoami.ts](https://github.com/heroku/cli/blob/v7.19.1/packages/auth/src/commands/auth/whoami.ts)_ | ||
|
||
## `heroku labs:disable [FEATURE]` | ||
|
||
|
@@ -176,5 +176,5 @@ OPTIONS | |
--confirm=confirm | ||
``` | ||
|
||
_See code: [src/commands/labs/disable.ts](https://github.com/heroku/cli/blob/v7.19.0/packages/auth/src/commands/labs/disable.ts)_ | ||
_See code: [src/commands/labs/disable.ts](https://github.com/heroku/cli/blob/v7.19.1/packages/auth/src/commands/labs/disable.ts)_ | ||
<!-- commandsstop --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.