(executionId: string)
| 165 | } |
| 166 | |
| 167 | function getMetaKey(executionId: string) { |
| 168 | return `${REDIS_PREFIX}${executionId}:meta` |
| 169 | } |
| 170 | |
| 171 | export type ExecutionStreamStatus = 'active' | 'complete' | 'error' | 'cancelled' |
| 172 |
no outgoing calls
no test coverage detected