@node9/proxy 1.67.0 → 1.67.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/dist/cli.js CHANGED
@@ -4454,9 +4454,10 @@ function applyManagedCommandChecks(local, managed, locked) {
4454
4454
  const m = managed[key];
4455
4455
  if (typeof m !== "string") continue;
4456
4456
  const lockKey = `commandChecks${key[0].toUpperCase()}${key.slice(1)}`;
4457
- const resolved = resolveByOrder(
4457
+ const localValue = local[key];
4458
+ const resolved = localValue === void 0 ? m : resolveByOrder(
4458
4459
  COMMAND_CHECK_ORDER,
4459
- local[key] ?? "review",
4460
+ localValue,
4460
4461
  m,
4461
4462
  locked.includes(lockKey)
4462
4463
  );
package/dist/cli.mjs CHANGED
@@ -4458,9 +4458,10 @@ function applyManagedCommandChecks(local, managed, locked) {
4458
4458
  const m = managed[key];
4459
4459
  if (typeof m !== "string") continue;
4460
4460
  const lockKey = `commandChecks${key[0].toUpperCase()}${key.slice(1)}`;
4461
- const resolved = resolveByOrder(
4461
+ const localValue = local[key];
4462
+ const resolved = localValue === void 0 ? m : resolveByOrder(
4462
4463
  COMMAND_CHECK_ORDER,
4463
- local[key] ?? "review",
4464
+ localValue,
4464
4465
  m,
4465
4466
  locked.includes(lockKey)
4466
4467
  );
package/dist/index.js CHANGED
@@ -3749,9 +3749,10 @@ function applyManagedCommandChecks(local, managed, locked) {
3749
3749
  const m = managed[key];
3750
3750
  if (typeof m !== "string") continue;
3751
3751
  const lockKey = `commandChecks${key[0].toUpperCase()}${key.slice(1)}`;
3752
- const resolved = resolveByOrder(
3752
+ const localValue = local[key];
3753
+ const resolved = localValue === void 0 ? m : resolveByOrder(
3753
3754
  COMMAND_CHECK_ORDER,
3754
- local[key] ?? "review",
3755
+ localValue,
3755
3756
  m,
3756
3757
  locked.includes(lockKey)
3757
3758
  );
package/dist/index.mjs CHANGED
@@ -3719,9 +3719,10 @@ function applyManagedCommandChecks(local, managed, locked) {
3719
3719
  const m = managed[key];
3720
3720
  if (typeof m !== "string") continue;
3721
3721
  const lockKey = `commandChecks${key[0].toUpperCase()}${key.slice(1)}`;
3722
- const resolved = resolveByOrder(
3722
+ const localValue = local[key];
3723
+ const resolved = localValue === void 0 ? m : resolveByOrder(
3723
3724
  COMMAND_CHECK_ORDER,
3724
- local[key] ?? "review",
3725
+ localValue,
3725
3726
  m,
3726
3727
  locked.includes(lockKey)
3727
3728
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@node9/proxy",
3
- "version": "1.67.0",
3
+ "version": "1.67.1",
4
4
  "description": "The Sudo Command for AI Agents. Execution Security for Claude Code, Codex, Gemini, Cursor, Opencode, Pi, and any MCP server.",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",