@@ -25,7 +25,22 @@ export type TTaskStatus =
| "requested_restart"
| "closed"
| "canceled"
- | "expired";
+ | "expired"
+ | "queue"
+ | "stop";
+export const StatusButtons = [
+ "pending",
+ "published",
+ "running",
+ "done",
+ "restarted",
+ "requested_restart",
+ "closed",
+ "canceled",
+ "expired",
+ "queue",
+ "stop",
+];
export type TTaskType = "instance" | "workflow" | "group";
export interface IProject {