feat: updating notifications system based on incoming request

This is making the frontend data logic a little complex
This commit is contained in:
2025-07-02 13:28:28 +01:00
parent 5cf0b66688
commit c62378c20a
3 changed files with 174 additions and 136 deletions

View File

@@ -175,7 +175,11 @@ const userProcessingImageValidator = strictObject({
ImageName: string(),
Image: null_(),
}),
Status: union([literal("not-started"), literal("in-progress")]),
Status: union([
literal("not-started"),
literal("in-progress"),
literal("complete"),
]),
});
export type UserImage = InferOutput<typeof dataTypeValidator>;