@agenshield/sandbox 0.7.1 → 0.7.2
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/index.js +2 -1
- package/package.json +2 -2
package/index.js
CHANGED
|
@@ -2755,7 +2755,8 @@ var VaultContentsSchema = z7.object({
|
|
|
2755
2755
|
agenco: AgenCoSecretsSchema.optional(),
|
|
2756
2756
|
envSecrets: z7.record(z7.string(), z7.string()),
|
|
2757
2757
|
sensitivePatterns: z7.array(z7.string()),
|
|
2758
|
-
passcode: PasscodeDataSchema.optional()
|
|
2758
|
+
passcode: PasscodeDataSchema.optional(),
|
|
2759
|
+
installationKey: z7.string().optional()
|
|
2759
2760
|
});
|
|
2760
2761
|
var COMMAND_CATALOG = {
|
|
2761
2762
|
// ── Network ────────────────────────────────────────────────
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agenshield/sandbox",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "User isolation and sandboxing utilities for AgenShield",
|
|
6
6
|
"main": "./index.js",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
},
|
|
16
16
|
"license": "MIT",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@agenshield/skills": "0.7.
|
|
18
|
+
"@agenshield/skills": "0.7.2",
|
|
19
19
|
"yaml": "^2.7.1"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|