Deprecate and re-export

Signed-off-by: solimant <solimant@users.noreply.github.com>
This commit is contained in:
solimant
2024-12-27 07:22:58 +00:00
parent e2fa65af59
commit d2da49c568
103 changed files with 1619 additions and 3018 deletions
+7 -2
View File
@@ -39,7 +39,8 @@ export type TaskStatus =
| 'completed'
| 'failed'
| 'open'
| 'processing';
| 'processing'
| 'skipped';
/**
* The state of a completed task.
@@ -80,7 +81,11 @@ export type SerializedTaskEvent = {
id: number;
isTaskRecoverable?: boolean;
taskId: string;
body: JsonObject;
body: {
message: string;
stepId?: string;
status?: TaskStatus;
} & JsonObject;
type: TaskEventType;
createdAt: string;
};