switchroom 0.7.11 → 0.7.13
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/agent-scheduler/index.js +1 -1
- package/dist/cli/switchroom.js +2815 -941
- package/dist/vault/approvals/kernel-server.js +1 -1
- package/dist/vault/broker/server.js +1815 -59
- package/package.json +4 -2
- package/telegram-plugin/dist/foreman/foreman.js +1534 -6
- package/telegram-plugin/dist/gateway/gateway.js +1542 -14
|
@@ -11224,7 +11224,7 @@ var init_schema = __esm(() => {
|
|
|
11224
11224
|
}).optional()
|
|
11225
11225
|
});
|
|
11226
11226
|
VaultConfigSchema = exports_external.object({
|
|
11227
|
-
path: exports_external.string().default("~/.switchroom/vault.enc").describe("Path to encrypted vault file"),
|
|
11227
|
+
path: exports_external.string().default("~/.switchroom/vault/vault.enc").describe("Path to encrypted vault file. v0.7.12+ canonical default is " + "`~/.switchroom/vault/vault.enc` (parent-dir bind-mount enables " + "atomic-rename writes from the broker container). Older installs " + "with `~/.switchroom/vault.enc` are auto-migrated on `switchroom " + "apply`; the legacy path becomes a symlink for v0.7.10/.11 CLI " + "compatibility (sunset in v0.7.14)."),
|
|
11228
11228
|
broker: exports_external.object({
|
|
11229
11229
|
socket: exports_external.string().default("~/.switchroom/vault-broker.sock").describe("Unix domain socket path for the vault-broker daemon"),
|
|
11230
11230
|
enabled: exports_external.boolean().default(true).describe("Whether to start the vault-broker daemon on agent launch"),
|