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>
This commit is contained in:
copilot-swe-agent[bot] 2026-01-16 12:45:53 +00:00
parent 8051a466f8
commit b93b36664e

View file

@ -117,6 +117,7 @@ export interface WorkspaceActions {
executeTypeTransaction: <T>(
operation: () => T,
rollback: () => void,
operationName: string
operationName: string,
documentId?: string
) => T | null;
}