(tableId: string, rowId: string, groupId: string)
| 268 | /** Stable key for `cancelInlineRun` lookups. Stamped on every enqueue item by |
| 269 | * `buildEnqueueItems`; the cancel path computes the same key per cell. */ |
| 270 | export function cellCancelKey(tableId: string, rowId: string, groupId: string): string { |
| 271 | return `${tableId}:${rowId}:${groupId}` |
| 272 | } |
| 273 | |
| 274 | /** Trigger.dev tags stamped on every `workflow-group-cell` run so tag-based |
| 275 | * cancel (`runs.list({ tag })` + `runs.cancel(id)`) can target a specific |
no outgoing calls
no test coverage detected