(
runId: string,
status: WorkflowRunStatus,
at: string,
options: AppendWorkflowRunEventOptions = {}
)
| 324 | } |
| 325 | |
| 326 | async appendStatus( |
| 327 | runId: string, |
| 328 | status: WorkflowRunStatus, |
| 329 | at: string, |
| 330 | options: AppendWorkflowRunEventOptions = {} |
| 331 | ): Promise<WorkflowRunRecord> { |
| 332 | return await this.appendNextEvent(runId, { type: "status", at, status }, options); |
| 333 | } |
| 334 | |
| 335 | /** |
| 336 | * Persist the attention policy on an existing run record. Used when a foreground/default run is |
no test coverage detected