Explorar o código

Add missing TIMED_OUT literal to schema

Robert Clarke hai 2 meses
pai
achega
51940f39ce
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      web/schemas/builds.py

+ 1 - 1
web/schemas/builds.py

@@ -11,7 +11,7 @@ class BuildProgress(BaseModel):
         ..., ge=0, le=100, description="Build completion percentage"
     )
     state: Literal[
-        "PENDING", "RUNNING", "SUCCESS", "FAILURE", "ERROR"
+        "PENDING", "RUNNING", "SUCCESS", "FAILURE", "ERROR", "TIMED_OUT"
     ] = Field(..., description="Current build state")