diff --git a/flixpy/flix/lib/websocket.py b/flixpy/flix/lib/websocket.py index a126af0..cd6d757 100644 --- a/flixpy/flix/lib/websocket.py +++ b/flixpy/flix/lib/websocket.py @@ -183,9 +183,13 @@ class Model(TypedDict): error: str class Status(enum.Enum): + RELINK = "relink" + VERSIONUP = "versionUp" + NEWPANEL = "newPanel" + ARTWORK_REUSED = "newPanelArtworkReuse" + DUPLICATED = "newPanelDuplicated" PENDING = "pending" IN_PROGRESS = "inProgress" - COMPLETE = "complete" UNSUPPORTED = "unsupported" ERRORED = "errored"