@vellumai/plugin-api 0.10.3-dev.202606292229.153e9b2 → 0.10.3-dev.202606292252.adea010
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 +4 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -34,6 +34,10 @@ declare interface AcpSessionUpdate {
|
|
|
34
34
|
toolTitle?: string;
|
|
35
35
|
toolKind?: string;
|
|
36
36
|
toolStatus?: string;
|
|
37
|
+
/** Optional raw input parameters sent to the tool (ACP `rawInput`); shape is tool-specific. */
|
|
38
|
+
rawInput?: unknown;
|
|
39
|
+
/** Optional raw output returned by the tool (ACP `rawOutput`); shape is tool-specific. */
|
|
40
|
+
rawOutput?: unknown;
|
|
37
41
|
/** Files touched by this tool call (for the file-diff affordance). */
|
|
38
42
|
locations?: {
|
|
39
43
|
path: string;
|
package/package.json
CHANGED