MCPcopy Index your code
hub / github.com/simstudioai/sim / readExecutionEvents

Function readExecutionEvents

apps/sim/lib/execution/event-buffer.ts:655–661  ·  view source on GitHub ↗
(
  executionId: string,
  afterEventId: number
)

Source from the content-addressed store, hash-verified

653}
654
655export async function readExecutionEvents(
656 executionId: string,
657 afterEventId: number
658): Promise<ExecutionEventEntry[]> {
659 const result = await readExecutionEventsState(executionId, afterEventId)
660 return result.status === 'ok' ? result.events : []
661}
662
663export async function readExecutionEventsState(
664 executionId: string,

Callers

nothing calls this directly

Calls 1

readExecutionEventsStateFunction · 0.85

Tested by

no test coverage detected