-
Notifications
You must be signed in to change notification settings - Fork 226
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
1 parent
36e9665
commit 081ccc6
Showing
14 changed files
with
87 additions
and
55 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 |
---|---|---|
|
@@ -23,7 +23,7 @@ ALIASES | |
$ heroku twofactor | ||
``` | ||
|
||
_See code: [@heroku-cli/plugin-auth](https://github.com/heroku/cli/blob/v7.47.10/packages/auth/src/commands/auth/2fa/index.ts)_ | ||
_See code: [@heroku-cli/plugin-auth](https://github.com/heroku/cli/blob/v7.47.12/packages/auth/src/commands/auth/2fa/index.ts)_ | ||
|
||
## `heroku auth:2fa:disable` | ||
|
||
|
@@ -42,7 +42,7 @@ EXAMPLES | |
Disabling 2fa on [email protected]... done | ||
``` | ||
|
||
_See code: [@heroku-cli/plugin-auth](https://github.com/heroku/cli/blob/v7.47.10/packages/auth/src/commands/auth/2fa/disable.ts)_ | ||
_See code: [@heroku-cli/plugin-auth](https://github.com/heroku/cli/blob/v7.47.12/packages/auth/src/commands/auth/2fa/disable.ts)_ | ||
|
||
## `heroku auth:login` | ||
|
||
|
@@ -61,7 +61,7 @@ ALIASES | |
$ heroku login | ||
``` | ||
|
||
_See code: [@heroku-cli/plugin-auth](https://github.com/heroku/cli/blob/v7.47.10/packages/auth/src/commands/auth/login.ts)_ | ||
_See code: [@heroku-cli/plugin-auth](https://github.com/heroku/cli/blob/v7.47.12/packages/auth/src/commands/auth/login.ts)_ | ||
|
||
## `heroku auth:logout` | ||
|
||
|
@@ -75,7 +75,7 @@ ALIASES | |
$ heroku logout | ||
``` | ||
|
||
_See code: [@heroku-cli/plugin-auth](https://github.com/heroku/cli/blob/v7.47.10/packages/auth/src/commands/auth/logout.ts)_ | ||
_See code: [@heroku-cli/plugin-auth](https://github.com/heroku/cli/blob/v7.47.12/packages/auth/src/commands/auth/logout.ts)_ | ||
|
||
## `heroku auth:token` | ||
|
||
|
@@ -93,7 +93,7 @@ DESCRIPTION | |
authorizations:create | ||
``` | ||
|
||
_See code: [@heroku-cli/plugin-auth](https://github.com/heroku/cli/blob/v7.47.10/packages/auth/src/commands/auth/token.ts)_ | ||
_See code: [@heroku-cli/plugin-auth](https://github.com/heroku/cli/blob/v7.47.12/packages/auth/src/commands/auth/token.ts)_ | ||
|
||
## `heroku auth:whoami` | ||
|
||
|
@@ -107,4 +107,4 @@ ALIASES | |
$ heroku whoami | ||
``` | ||
|
||
_See code: [@heroku-cli/plugin-auth](https://github.com/heroku/cli/blob/v7.47.10/packages/auth/src/commands/auth/whoami.ts)_ | ||
_See code: [@heroku-cli/plugin-auth](https://github.com/heroku/cli/blob/v7.47.12/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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"version": "7.47.11", | ||
"version": "7.47.12", | ||
"useWorkspaces": true, | ||
"npmClient": "yarn", | ||
"command": { | ||
|
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 |
---|---|---|
|
@@ -36,7 +36,7 @@ ALIASES | |
$ heroku twofactor | ||
``` | ||
|
||
_See code: [src/commands/auth/2fa/index.ts](https://github.com/heroku/cli/blob/v7.47.10/packages/auth/src/commands/auth/2fa/index.ts)_ | ||
_See code: [src/commands/auth/2fa/index.ts](https://github.com/heroku/cli/blob/v7.47.12/packages/auth/src/commands/auth/2fa/index.ts)_ | ||
|
||
## `heroku auth:2fa:disable` | ||
|
||
|
@@ -55,7 +55,7 @@ EXAMPLES | |
Disabling 2fa on [email protected]... done | ||
``` | ||
|
||
_See code: [src/commands/auth/2fa/disable.ts](https://github.com/heroku/cli/blob/v7.47.10/packages/auth/src/commands/auth/2fa/disable.ts)_ | ||
_See code: [src/commands/auth/2fa/disable.ts](https://github.com/heroku/cli/blob/v7.47.12/packages/auth/src/commands/auth/2fa/disable.ts)_ | ||
|
||
## `heroku auth:login` | ||
|
||
|
@@ -74,7 +74,7 @@ ALIASES | |
$ heroku login | ||
``` | ||
|
||
_See code: [src/commands/auth/login.ts](https://github.com/heroku/cli/blob/v7.47.10/packages/auth/src/commands/auth/login.ts)_ | ||
_See code: [src/commands/auth/login.ts](https://github.com/heroku/cli/blob/v7.47.12/packages/auth/src/commands/auth/login.ts)_ | ||
|
||
## `heroku auth:logout` | ||
|
||
|
@@ -88,7 +88,7 @@ ALIASES | |
$ heroku logout | ||
``` | ||
|
||
_See code: [src/commands/auth/logout.ts](https://github.com/heroku/cli/blob/v7.47.10/packages/auth/src/commands/auth/logout.ts)_ | ||
_See code: [src/commands/auth/logout.ts](https://github.com/heroku/cli/blob/v7.47.12/packages/auth/src/commands/auth/logout.ts)_ | ||
|
||
## `heroku auth:token` | ||
|
||
|
@@ -106,7 +106,7 @@ DESCRIPTION | |
authorizations:create | ||
``` | ||
|
||
_See code: [src/commands/auth/token.ts](https://github.com/heroku/cli/blob/v7.47.10/packages/auth/src/commands/auth/token.ts)_ | ||
_See code: [src/commands/auth/token.ts](https://github.com/heroku/cli/blob/v7.47.12/packages/auth/src/commands/auth/token.ts)_ | ||
|
||
## `heroku auth:whoami` | ||
|
||
|
@@ -120,7 +120,7 @@ ALIASES | |
$ heroku whoami | ||
``` | ||
|
||
_See code: [src/commands/auth/whoami.ts](https://github.com/heroku/cli/blob/v7.47.10/packages/auth/src/commands/auth/whoami.ts)_ | ||
_See code: [src/commands/auth/whoami.ts](https://github.com/heroku/cli/blob/v7.47.12/packages/auth/src/commands/auth/whoami.ts)_ | ||
|
||
## `heroku labs:disable [FEATURE]` | ||
|
||
|
@@ -136,5 +136,5 @@ OPTIONS | |
--confirm=confirm | ||
``` | ||
|
||
_See code: [src/commands/labs/disable.ts](https://github.com/heroku/cli/blob/v7.47.10/packages/auth/src/commands/labs/disable.ts)_ | ||
_See code: [src/commands/labs/disable.ts](https://github.com/heroku/cli/blob/v7.47.12/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
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.