heroku 10.11.0-beta.0 → 10.11.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -63,12 +63,10 @@ For other issues, [submit a support ticket](https://help.heroku.com/).
63
63
  * [`heroku pg`](docs/pg.md) - manage postgresql databases
64
64
  * [`heroku pipelines`](docs/pipelines.md) - manage pipelines
65
65
  * [`heroku plugins`](docs/plugins.md) - List installed plugins.
66
- * [`heroku prompt`](docs/prompt.md) - interactively prompt for command arguments and flags
67
66
  * [`heroku ps`](docs/ps.md) - Client tools for Heroku Exec
68
67
  * [`heroku redis`](docs/redis.md) - manage heroku redis instances
69
68
  * [`heroku regions`](docs/regions.md) - list available regions for deployment
70
69
  * [`heroku releases`](docs/releases.md) - display the releases for an app
71
- * [`heroku repl`](docs/repl.md) - enter an interactive REPL session to run Heroku CLI commands
72
70
  * [`heroku reviewapps`](docs/reviewapps.md) - manage reviewapps in pipelines
73
71
  * [`heroku run`](docs/run.md) - run a one-off process inside a Heroku dyno
74
72
  * [`heroku sessions`](docs/sessions.md) - OAuth sessions
@@ -1,6 +1,7 @@
1
1
  import { Command } from '@oclif/core';
2
2
  export default class Prompt extends Command {
3
3
  static description: string;
4
+ static hidden: boolean;
4
5
  static examples: string[];
5
6
  static strict: boolean;
6
7
  run(): Promise<void>;
@@ -8,6 +8,7 @@ class Prompt extends core_1.Command {
8
8
  }
9
9
  exports.default = Prompt;
10
10
  Prompt.description = 'interactively prompt for command arguments and flags';
11
+ Prompt.hidden = true;
11
12
  Prompt.examples = [
12
13
  '$ heroku apps:info --prompt',
13
14
  '$ heroku config:set --prompt',
@@ -1,6 +1,7 @@
1
1
  import { Command } from '@oclif/core';
2
2
  export default class Repl extends Command {
3
3
  static description: string;
4
+ static hidden: boolean;
4
5
  static examples: string[];
5
6
  run(): Promise<void>;
6
7
  }
@@ -8,6 +8,7 @@ class Repl extends core_1.Command {
8
8
  }
9
9
  exports.default = Repl;
10
10
  Repl.description = 'enter an interactive REPL session to run Heroku CLI commands';
11
+ Repl.hidden = true;
11
12
  Repl.examples = [
12
13
  '$ heroku --repl',
13
14
  ];
@@ -216,6 +216,7 @@
216
216
  ],
217
217
  "flags": {},
218
218
  "hasDynamicHelp": false,
219
+ "hidden": true,
219
220
  "hiddenAliases": [],
220
221
  "id": "prompt",
221
222
  "pluginAlias": "heroku",
@@ -343,6 +344,7 @@
343
344
  ],
344
345
  "flags": {},
345
346
  "hasDynamicHelp": false,
347
+ "hidden": true,
346
348
  "hiddenAliases": [],
347
349
  "id": "repl",
348
350
  "pluginAlias": "heroku",
@@ -15003,5 +15005,5 @@
15003
15005
  ]
15004
15006
  }
15005
15007
  },
15006
- "version": "10.11.0-beta.0"
15008
+ "version": "10.11.0"
15007
15009
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "heroku",
3
3
  "description": "CLI to interact with Heroku",
4
- "version": "10.11.0-beta.0",
4
+ "version": "10.11.0",
5
5
  "author": "Heroku",
6
6
  "bin": "./bin/run",
7
7
  "bugs": "https://github.com/heroku/cli/issues",
@@ -400,5 +400,5 @@
400
400
  "version": "oclif readme --multi && git add README.md ../../docs"
401
401
  },
402
402
  "types": "lib/index.d.ts",
403
- "gitHead": "3c76be7e4afa34df7d0b98a69ea72561359ba4d2"
403
+ "gitHead": "0580c4382727bee72879f74b8e5cf8b2d0772a8b"
404
404
  }