Merge pull request #27771 from solimant/23819_scaffolder_openapi

Move Scaffolder API to OpenAPI
This commit is contained in:
Ben Lambert
2025-07-29 14:36:47 +02:00
committed by GitHub
147 changed files with 7540 additions and 992 deletions
+7 -2
View File
@@ -344,7 +344,11 @@ export type SerializedTaskEvent = {
id: number;
isTaskRecoverable?: boolean;
taskId: string;
body: JsonObject;
body: {
message: string;
stepId?: string;
status?: TaskStatus;
} & JsonObject;
type: TaskEventType;
createdAt: string;
};
@@ -489,7 +493,8 @@ export type TaskStatus =
| 'completed'
| 'failed'
| 'open'
| 'processing';
| 'processing'
| 'skipped';
// @public (undocumented)
export type TemplateAction<
+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;
};