@inkbox/cli 0.4.7 → 0.4.8

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -21,7 +21,7 @@ import { registerDomainCommands } from "./commands/domain.js";
21
21
  const program = new Command()
22
22
  .name("inkbox")
23
23
  .description("CLI for the Inkbox API — email, phone, identities, and vault for AI agents")
24
- .version("0.4.7")
24
+ .version("0.4.8")
25
25
  .option("--api-key <key>", "Inkbox API key (or set INKBOX_API_KEY)")
26
26
  .option("--vault-key <key>", "Vault key for decrypt operations (or set INKBOX_VAULT_KEY)")
27
27
  .option("--base-url <url>", "Override API base URL (or set INKBOX_BASE_URL)")
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inkbox/cli",
3
- "version": "0.4.7",
3
+ "version": "0.4.8",
4
4
  "description": "CLI for the Inkbox API",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -18,7 +18,7 @@
18
18
  "prepublishOnly": "npm run build"
19
19
  },
20
20
  "dependencies": {
21
- "@inkbox/sdk": "^0.4.7",
21
+ "@inkbox/sdk": "^0.4.8",
22
22
  "commander": "^13.0.0"
23
23
  },
24
24
  "devDependencies": {