Explorar el Código

Add missing TIMED_OUT literal to schema

Robert Clarke hace 2 meses
padre
commit
51940f39ce
Se han modificado 1 ficheros con 1 adiciones y 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")