* Bump state for a workspace to trigger React re-renders. * Used by addEphemeralMessage for frontend-only messages.
(workspaceId: string)
| 2365 | * Used by addEphemeralMessage for frontend-only messages. |
| 2366 | */ |
| 2367 | bumpState(workspaceId: string): void { |
| 2368 | this.states.bump(workspaceId); |
| 2369 | } |
| 2370 | |
| 2371 | getWorkflowToolLiveRun(workspaceId: string, toolCallId: string): WorkflowToolLiveRunState | null { |
| 2372 | return this.chatTransientState.get(workspaceId)?.liveWorkflowRuns.get(toolCallId) ?? null; |
no test coverage detected