@seekrit/cli 0.17.0 → 0.17.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.
Files changed (2) hide show
  1. package/dist/index.js +2 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1576,7 +1576,7 @@ function isServiceToken(value) {
1576
1576
  }
1577
1577
  //#endregion
1578
1578
  //#region package.json
1579
- var version = "0.17.0";
1579
+ var version = "0.17.1";
1580
1580
  //#endregion
1581
1581
  //#region ../../packages/api-client/src/index.ts
1582
1582
  var SeekritApiError = class extends Error {
@@ -2586,7 +2586,7 @@ function registerKmsCommands(program) {
2586
2586
  });
2587
2587
  console.error(`rotated ${rotated.name} to v${rotated.currentVersion} (${grants.length} grantees)`);
2588
2588
  });
2589
- kms.command("disable").description("disable a key (blocks new grants/rotations; existing data still decrypts)").requiredOption("--key <name>", "key name or id").option("--org <slug>").action(async (options) => {
2589
+ kms.command("disable").description("disable a key (blocks all use: encrypt/decrypt/sign and new grants/rotations)").requiredOption("--key <name>", "key name or id").option("--org <slug>").action(async (options) => {
2590
2590
  const ctx = buildContext();
2591
2591
  const org = await resolveOrg(ctx, options.org);
2592
2592
  const key = await kmsResolveKey(ctx, org.id, options.key);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seekrit/cli",
3
- "version": "0.17.0",
3
+ "version": "0.17.1",
4
4
  "description": "End-to-end encrypted secrets manager CLI — inject decrypted secrets into any command.",
5
5
  "type": "module",
6
6
  "publishConfig": {