From 50144a6bd48eb70410cf9a1410ee1a0b355e00ba Mon Sep 17 00:00:00 2001 From: Peli de Halleux Date: Sat, 22 Feb 2025 07:56:20 +0000 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat:=20make=20`failed`=20property?= =?UTF-8?q?=20optional=20in=20ShellOutput?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The `failed` field in ShellOutput is now optional for flexibility. --- packages/core/src/types/prompt_template.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/types/prompt_template.d.ts b/packages/core/src/types/prompt_template.d.ts index b20dde4207..c7d19fb188 100644 --- a/packages/core/src/types/prompt_template.d.ts +++ b/packages/core/src/types/prompt_template.d.ts @@ -3845,7 +3845,7 @@ interface ShellOutput { stdout?: string stderr?: string exitCode: number - failed: boolean + failed?: boolean } interface BrowserOptions {