From b93b36664e146360031ca7c42f90e5981bd045b4 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 16 Jan 2026 12:45:53 +0000 Subject: [PATCH] Fix executeTypeTransaction type definition to include documentId parameter The type definition in workspace/types.ts was missing the optional documentId parameter that was added to the implementation. Co-authored-by: jhbruhn <1036566+jhbruhn@users.noreply.github.com> --- src/stores/workspace/types.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/stores/workspace/types.ts b/src/stores/workspace/types.ts index f03f674..f9485cb 100644 --- a/src/stores/workspace/types.ts +++ b/src/stores/workspace/types.ts @@ -117,6 +117,7 @@ export interface WorkspaceActions { executeTypeTransaction: ( operation: () => T, rollback: () => void, - operationName: string + operationName: string, + documentId?: string ) => T | null; }