fix: add missing underscore prefix in updateWorkingDir method name (#8743)
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -142,7 +142,10 @@ export async function updateWorkingDir(
|
|||||||
workingDir: string,
|
workingDir: string,
|
||||||
): Promise<void> {
|
): Promise<void> {
|
||||||
const client = await getClient();
|
const client = await getClient();
|
||||||
await client.extMethod("goose/working_dir/update", { sessionId, workingDir });
|
await client.extMethod("_goose/working_dir/update", {
|
||||||
|
sessionId,
|
||||||
|
workingDir,
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function updateSessionProject(
|
export async function updateSessionProject(
|
||||||
|
|||||||
Reference in New Issue
Block a user