From 503402386a3f8e70b6d709a37676527f073e35a6 Mon Sep 17 00:00:00 2001 From: chihlasm Date: Sun, 29 Mar 2026 05:49:32 +0000 Subject: [PATCH] feat: add script_body and parameters_schema to SaveToLibraryRequest type Co-Authored-By: Claude Opus 4.6 (1M context) --- frontend/src/types/script-builder.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/src/types/script-builder.ts b/frontend/src/types/script-builder.ts index cfa8165e..16d72c5e 100644 --- a/frontend/src/types/script-builder.ts +++ b/frontend/src/types/script-builder.ts @@ -1,3 +1,5 @@ +import type { ScriptParameter } from './scripts' + export interface ScriptBuilderSessionSummary { id: string language: string @@ -47,4 +49,6 @@ export interface SaveToLibraryRequest { description?: string category_id?: string share_with_team?: boolean + script_body?: string + parameters_schema?: { parameters: ScriptParameter[] } }