unbound-cli 0.3.0 → 0.3.1

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": "unbound-cli",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "CLI tool for Unbound - AI Gateway management",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -455,7 +455,7 @@ Examples:
455
455
  console.log('');
456
456
 
457
457
  const mdmArgs = (tool) => {
458
- let args = `--api_key ${shellEscape(opts.adminApiKey)}`;
458
+ let args = `--api-key ${shellEscape(opts.adminApiKey)}`;
459
459
  if (opts.url) args += ` --url ${shellEscape(opts.url)}`;
460
460
  if (opts.clear) args += ' --clear';
461
461
  return args;