@a3s-lab/code 1.9.0 → 1.9.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.
Files changed (2) hide show
  1. package/index.d.ts +2 -0
  2. 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.0",
3
+ "version": "1.9.2",
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.0",
48
- "@a3s-lab/code-linux-x64-gnu": "1.9.0",
49
- "@a3s-lab/code-linux-x64-musl": "1.9.0",
50
- "@a3s-lab/code-linux-arm64-gnu": "1.9.0",
51
- "@a3s-lab/code-linux-arm64-musl": "1.9.0",
52
- "@a3s-lab/code-win32-x64-msvc": "1.9.0"
47
+ "@a3s-lab/code-darwin-arm64": "1.9.2",
48
+ "@a3s-lab/code-linux-x64-gnu": "1.9.2",
49
+ "@a3s-lab/code-linux-x64-musl": "1.9.2",
50
+ "@a3s-lab/code-linux-arm64-gnu": "1.9.2",
51
+ "@a3s-lab/code-linux-arm64-musl": "1.9.2",
52
+ "@a3s-lab/code-win32-x64-msvc": "1.9.2"
53
53
  }
54
54
  }