feat(ui): add routed operator workflows

This commit is contained in:
2026-07-31 17:19:08 +02:00
parent 22567c5fb1
commit 9023963bf1
14 changed files with 2846 additions and 275 deletions
+161
View File
@@ -416,6 +416,84 @@
"title": "JobList",
"type": "object"
},
"JobPatch": {
"properties": {
"allow_empty": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"title": "Allow Empty"
},
"enabled": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"title": "Enabled"
},
"exclusions": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"title": "Exclusions"
},
"name": {
"anyOf": [
{
"maxLength": 255,
"minLength": 1,
"type": "string"
},
{
"type": "null"
}
],
"title": "Name"
},
"requested_mode": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Requested Mode"
},
"retention": {
"anyOf": [
{
"additionalProperties": true,
"type": "object"
},
{
"type": "null"
}
],
"title": "Retention"
}
},
"title": "JobPatch",
"type": "object"
},
"JobSummary": {
"properties": {
"enabled": {
@@ -2835,6 +2913,89 @@
"summary": "Create Job"
}
},
"/api/v2/jobs/{job_id}": {
"patch": {
"operationId": "patch_job_api_v2_jobs__job_id__patch",
"parameters": [
{
"in": "path",
"name": "job_id",
"required": true,
"schema": {
"title": "Job Id",
"type": "string"
}
},
{
"in": "header",
"name": "authorization",
"required": false,
"schema": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Authorization"
}
},
{
"in": "header",
"name": "X-CSRF-Token",
"required": false,
"schema": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "X-Csrf-Token"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/JobPatch"
}
}
},
"required": true
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"title": "Response Patch Job Api V2 Jobs Job Id Patch",
"type": "object"
}
}
},
"description": "Successful Response"
},
"422": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
},
"description": "Validation Error"
}
},
"summary": "Patch Job"
}
},
"/api/v2/jobs/{job_id}/executions": {
"post": {
"operationId": "enqueue_execution_api_v2_jobs__job_id__executions_post",