vaulter-cli 2.3.1 → 2.3.2
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/package.json +1 -1
- package/src/commands/help.js +1 -0
- package/src/index.js +1 -1
package/package.json
CHANGED
package/src/commands/help.js
CHANGED
|
@@ -22,6 +22,7 @@ export async function showHelp() {
|
|
|
22
22
|
{ name: 'ls', desc: 'List all API keys in your vault' },
|
|
23
23
|
{ name: 'add <name>', desc: 'Add a new API key to your vault' },
|
|
24
24
|
{ name: 'remove <name-or-id>', desc: 'Remove an API key from your vault' },
|
|
25
|
+
{ name: 'view [key_names...]', desc: 'Decrypt and display one or more API keys in your terminal' },
|
|
25
26
|
{ name: 'make [file]', desc: 'Generate a .env file from your vault keys' },
|
|
26
27
|
{ name: 'save [file]', desc: 'Upload a local .env file to your vault' },
|
|
27
28
|
{ name: 'web-app', desc: 'Open the Vaulter web app in your browser' },
|