feat: task lane persistence + sidebar cleanup #121

Merged
chihlasm merged 49 commits from feat/task-lane-persistence into main 2026-03-29 16:59:41 +00:00
Showing only changes of commit 503402386a - Show all commits

View File

@@ -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[] }
}