switchroom 0.13.31 → 0.13.32

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.
@@ -22983,6 +22983,7 @@ function generateCompose(opts) {
22983
22983
  lines.push(` - ${homePrefix}/.switchroom/vault:/state/vault:rw`);
22984
22984
  lines.push(` - ${homePrefix}/.switchroom/vault-auto-unlock:/state/vault-auto-unlock:ro`);
22985
22985
  lines.push(` - ${homePrefix}/.switchroom/vault-audit.log:/root/.switchroom/vault-audit.log`);
22986
+ lines.push(` - ${homePrefix}/.switchroom/vault-grants.db:/root/.switchroom/vault-grants.db`);
22986
22987
  lines.push(` - /etc/machine-id:/etc/machine-id:ro`);
22987
22988
  lines.push(``);
22988
22989
  lines.push(` approval-kernel:`);
@@ -47436,8 +47437,8 @@ var {
47436
47437
  } = import__.default;
47437
47438
 
47438
47439
  // src/build-info.ts
47439
- var VERSION = "0.13.31";
47440
- var COMMIT_SHA = "061eead1";
47440
+ var VERSION = "0.13.32";
47441
+ var COMMIT_SHA = "affa1f03";
47441
47442
 
47442
47443
  // src/cli/agent.ts
47443
47444
  init_source();
@@ -74352,6 +74353,10 @@ async function ensureHostMountSources(config) {
74352
74353
  if (!existsSync67(auditLogPath)) {
74353
74354
  writeFileSync32(auditLogPath, "", { mode: 420 });
74354
74355
  }
74356
+ const grantsDbPath = join61(home2, ".switchroom", "vault-grants.db");
74357
+ if (!existsSync67(grantsDbPath)) {
74358
+ writeFileSync32(grantsDbPath, "", { mode: 384 });
74359
+ }
74355
74360
  const hostdAuditLogPath = join61(home2, ".switchroom", "host-control-audit.log");
74356
74361
  if (!existsSync67(hostdAuditLogPath)) {
74357
74362
  writeFileSync32(hostdAuditLogPath, "", { mode: 420 });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "switchroom",
3
- "version": "0.13.31",
3
+ "version": "0.13.32",
4
4
  "description": "Run Claude Code 24/7 on your Claude Pro/Max subscription over Telegram. Open-source alternative to OpenClaw and NanoClaw — no API keys.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -48504,10 +48504,10 @@ function sweepStaleTurnActiveMarker(stateDir, opts) {
48504
48504
  }
48505
48505
 
48506
48506
  // ../src/build-info.ts
48507
- var VERSION = "0.13.31";
48508
- var COMMIT_SHA = "061eead1";
48509
- var COMMIT_DATE = "2026-05-24T13:21:09Z";
48510
- var LATEST_PR = 1736;
48507
+ var VERSION = "0.13.32";
48508
+ var COMMIT_SHA = "affa1f03";
48509
+ var COMMIT_DATE = "2026-05-24T14:00:03Z";
48510
+ var LATEST_PR = 1738;
48511
48511
  var COMMITS_AHEAD_OF_TAG = 0;
48512
48512
 
48513
48513
  // gateway/boot-version.ts