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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vaulter-cli",
3
- "version": "2.3.1",
3
+ "version": "2.3.2",
4
4
  "description": "CLI tool for Vaulter - Secure API Key Manager",
5
5
  "author": "faris-sait",
6
6
  "repository": {
@@ -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' },
package/src/index.js CHANGED
@@ -21,7 +21,7 @@ const program = new Command();
21
21
  program
22
22
  .name('vaulter')
23
23
  .description('Vaulter CLI - Secure API Key Manager')
24
- .version('2.3.1')
24
+ .version('2.3.2')
25
25
  .action(async () => {
26
26
  await showHelp();
27
27
  });