@a3s-lab/code 1.9.0 → 1.9.1
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.d.ts +2 -0
- package/package.json +7 -7
package/index.d.ts
CHANGED
|
@@ -179,6 +179,8 @@ export interface AgentEvent {
|
|
|
179
179
|
question?: string
|
|
180
180
|
/** For btw_answer event: the LLM's answer */
|
|
181
181
|
answer?: string
|
|
182
|
+
/** Extra data for events that don't map to standard fields (JSON-encoded) */
|
|
183
|
+
data?: string
|
|
182
184
|
}
|
|
183
185
|
export interface ToolResult {
|
|
184
186
|
name: string
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@a3s-lab/code",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.1",
|
|
4
4
|
"description": "A3S Code - Native AI coding agent library for Node.js",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -44,11 +44,11 @@
|
|
|
44
44
|
"test:loop": "tsx --tsconfig examples/tsconfig.json examples/test_loop_commands.ts"
|
|
45
45
|
},
|
|
46
46
|
"optionalDependencies": {
|
|
47
|
-
"@a3s-lab/code-darwin-arm64": "1.9.
|
|
48
|
-
"@a3s-lab/code-linux-x64-gnu": "1.9.
|
|
49
|
-
"@a3s-lab/code-linux-x64-musl": "1.9.
|
|
50
|
-
"@a3s-lab/code-linux-arm64-gnu": "1.9.
|
|
51
|
-
"@a3s-lab/code-linux-arm64-musl": "1.9.
|
|
52
|
-
"@a3s-lab/code-win32-x64-msvc": "1.9.
|
|
47
|
+
"@a3s-lab/code-darwin-arm64": "1.9.1",
|
|
48
|
+
"@a3s-lab/code-linux-x64-gnu": "1.9.1",
|
|
49
|
+
"@a3s-lab/code-linux-x64-musl": "1.9.1",
|
|
50
|
+
"@a3s-lab/code-linux-arm64-gnu": "1.9.1",
|
|
51
|
+
"@a3s-lab/code-linux-arm64-musl": "1.9.1",
|
|
52
|
+
"@a3s-lab/code-win32-x64-msvc": "1.9.1"
|
|
53
53
|
}
|
|
54
54
|
}
|