(event: WorkflowRunAttachedEvent)
| 654 | } |
| 655 | |
| 656 | private getWorkflowRunAttachment(event: WorkflowRunAttachedEvent): WorkflowRunToolAttachment { |
| 657 | return { |
| 658 | runId: event.runId, |
| 659 | ...(event.run != null ? { run: event.run } : {}), |
| 660 | timestamp: event.timestamp, |
| 661 | }; |
| 662 | } |
| 663 | |
| 664 | private takePendingWorkflowRunAttachment( |
| 665 | streamInfo: WorkspaceStreamInfo, |
no outgoing calls
no test coverage detected