From cd37e96c1d902fb00d0f728d1fd8a7c73419c2ce Mon Sep 17 00:00:00 2001 From: Brian Greunke Date: Wed, 18 Jun 2025 16:35:35 -0500 Subject: [PATCH] fix: changed run id type to ULID | str to accomodate old data types --- dreadnode/api/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dreadnode/api/models.py b/dreadnode/api/models.py index 345d777e..671739b7 100644 --- a/dreadnode/api/models.py +++ b/dreadnode/api/models.py @@ -268,7 +268,7 @@ class ArtifactDir(BaseModel): class RunSummary(BaseModel): """Summary of a run, containing metadata and basic information.""" - id: ULID + id: ULID | str """Unique identifier for the run.""" name: str """Name of the run."""