diff --git a/api/v1/testkube.yaml b/api/v1/testkube.yaml index 50079b8db7..8cc267bc08 100644 --- a/api/v1/testkube.yaml +++ b/api/v1/testkube.yaml @@ -8282,6 +8282,8 @@ components: runningContext: description: running context for the test workflow execution (Pro edition only) $ref: "#/components/schemas/TestWorkflowRunningContext" + config: + $ref: "#/components/schemas/TestWorkflowConfigValue" required: - id - name diff --git a/pkg/api/v1/testkube/model_test_workflow_execution_summary.go b/pkg/api/v1/testkube/model_test_workflow_execution_summary.go index 92f9868167..2b80e5db8c 100644 --- a/pkg/api/v1/testkube/model_test_workflow_execution_summary.go +++ b/pkg/api/v1/testkube/model_test_workflow_execution_summary.go @@ -28,4 +28,5 @@ type TestWorkflowExecutionSummary struct { Workflow *TestWorkflowSummary `json:"workflow"` Tags map[string]string `json:"tags,omitempty"` RunningContext *TestWorkflowRunningContext `json:"runningContext,omitempty"` + Config map[string]string `json:"config,omitempty"` }