(executionId: string)
| 644 | } |
| 645 | |
| 646 | export async function getExecutionMeta(executionId: string): Promise<ExecutionStreamMeta | null> { |
| 647 | const result = await readExecutionMetaState(executionId) |
| 648 | if (result.status === 'found') return result.meta |
| 649 | if (result.status === 'unavailable') { |
| 650 | return null |
| 651 | } |
| 652 | return null |
| 653 | } |
| 654 | |
| 655 | export async function readExecutionEvents( |
| 656 | executionId: string, |
nothing calls this directly
no test coverage detected