* Tracks the relationship between chat task IDs and trigger execution IDs. * This allows us to update execution status when a chat task completes.
| 52 | * This allows us to update execution status when a chat task completes. |
| 53 | */ |
| 54 | interface ExecutionMapping { |
| 55 | /** The chat task ID (from chatStore) */ |
| 56 | chatTaskId: string; |
| 57 | /** The trigger execution ID (from backend) */ |
| 58 | executionId: string; |
| 59 | /** The trigger task ID */ |
| 60 | triggerTaskId: string; |
| 61 | /** Project ID where the task is running */ |
| 62 | projectId: string; |
| 63 | /** Whether the status has been reported */ |
| 64 | reported: boolean; |
| 65 | } |
| 66 | |
| 67 | /** |
| 68 | * Formats the task message with context from webhook or schedule |
nothing calls this directly
no outgoing calls
no test coverage detected