From 60e5ea8606a6b04b24ad09ab474454febd7118c2 Mon Sep 17 00:00:00 2001 From: Ben Halling Date: Mon, 28 Jul 2025 14:40:40 +0100 Subject: [PATCH] Updates the import status messages for 8.0. --- flixpy/flix/lib/websocket.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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"