sandbox-agent 0.1.7 → 0.1.8
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/index.d.ts +3 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -94,6 +94,8 @@ interface components {
|
|
|
94
94
|
};
|
|
95
95
|
AgentInfo: {
|
|
96
96
|
capabilities: components["schemas"]["AgentCapabilities"];
|
|
97
|
+
/** @description Whether the agent's required provider credentials are available */
|
|
98
|
+
credentialsAvailable: boolean;
|
|
97
99
|
id: string;
|
|
98
100
|
installed: boolean;
|
|
99
101
|
path?: string | null;
|
|
@@ -237,7 +239,7 @@ interface components {
|
|
|
237
239
|
reply: components["schemas"]["PermissionReply"];
|
|
238
240
|
};
|
|
239
241
|
/** @enum {string} */
|
|
240
|
-
PermissionStatus: "requested" | "
|
|
242
|
+
PermissionStatus: "requested" | "accept" | "accept_for_session" | "reject";
|
|
241
243
|
ProblemDetails: {
|
|
242
244
|
detail?: string | null;
|
|
243
245
|
instance?: string | null;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sandbox-agent",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"description": "Universal API for automatic coding agents in sandboxes. Supprots Claude Code, Codex, OpenCode, and Amp.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
}
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@sandbox-agent/cli-shared": "0.1.
|
|
20
|
+
"@sandbox-agent/cli-shared": "0.1.8"
|
|
21
21
|
},
|
|
22
22
|
"files": [
|
|
23
23
|
"dist"
|