Add run lifecycle timestamps - improvments (#2601)
Some checks are pending
Run tests and pre-commit / Run tests and pre-commit hooks (push) Waiting to run
Run tests and pre-commit / Frontend Lint and Build (push) Waiting to run
Publish Fern Docs / run (push) Waiting to run

Co-authored-by: Shuchang Zheng <wintonzheng0325@gmail.com>
This commit is contained in:
Prakash Maheshwaran 2025-06-11 23:36:49 -04:00 committed by GitHub
parent 90feb96b0f
commit b5bf9d291f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
15 changed files with 138 additions and 1 deletions

View file

@ -116,6 +116,9 @@ class WorkflowRun(BaseModel):
parent_workflow_run_id: str | None = None
workflow_title: str | None = None
queued_at: datetime | None = None
started_at: datetime | None = None
finished_at: datetime | None = None
created_at: datetime
modified_at: datetime
@ -143,6 +146,9 @@ class WorkflowRunResponseBase(BaseModel):
webhook_callback_url: str | None = None
totp_verification_url: str | None = None
totp_identifier: str | None = None
queued_at: datetime | None = None
started_at: datetime | None = None
finished_at: datetime | None = None
created_at: datetime
modified_at: datetime
parameters: dict[str, Any]