Fix API report

Signed-off-by: solimant <solimant@users.noreply.github.com>
This commit is contained in:
solimant
2024-12-30 22:28:21 +00:00
parent bd7ae8559d
commit 68eca7b9a0
9 changed files with 483 additions and 351 deletions
+7 -2
View File
@@ -340,7 +340,11 @@ export type SerializedTaskEvent = {
id: number;
isTaskRecoverable?: boolean;
taskId: string;
body: JsonObject;
body: {
message: string;
stepId?: string;
status?: TaskStatus;
} & JsonObject;
type: TaskEventType;
createdAt: string;
};
@@ -485,7 +489,8 @@ export type TaskStatus =
| 'completed'
| 'failed'
| 'open'
| 'processing';
| 'processing'
| 'skipped';
// @public (undocumented)
export type TemplateAction<