@hasna/sandboxes 0.1.28 → 0.1.30
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/README.md +10 -5
- package/dist/cli/index.js +5494 -9379
- package/dist/cli/storage.d.ts +2 -0
- package/dist/db/database.d.ts +1 -0
- package/dist/db/pg-migrate.d.ts +7 -0
- package/dist/db/pg-migrations.d.ts +1 -1
- package/dist/db/remote-storage.d.ts +11 -0
- package/dist/db/storage-config.d.ts +26 -0
- package/dist/db/storage-sync.d.ts +35 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +5662 -9769
- package/dist/lib/secrets.d.ts +1 -1
- package/dist/mcp/index.js +2025 -6786
- package/dist/mcp/storage-tools.d.ts +2 -0
- package/dist/server/index.js +2595 -7386
- package/dist/storage.d.ts +6 -0
- package/dist/storage.js +5654 -0
- package/package.json +9 -4
package/dist/lib/secrets.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ export type SecretResolver = (key: string) => Promise<string>;
|
|
|
6
6
|
export interface SecretMapping {
|
|
7
7
|
/** Environment variable name to expose inside the sandbox (e.g. ANTHROPIC_API_KEY). */
|
|
8
8
|
env: string;
|
|
9
|
-
/** Vault key to read (e.g.
|
|
9
|
+
/** Vault key to read (e.g. example/anthropic/test/api_key). */
|
|
10
10
|
key: string;
|
|
11
11
|
}
|
|
12
12
|
/** Parse an `ENV_NAME=vault/key` spec into a {@link SecretMapping}. */
|