diff --git a/client/src/api/schema/schema.ts b/client/src/api/schema/schema.ts index 2f41a56da3b0..6f7aac5f9e88 100644 --- a/client/src/api/schema/schema.ts +++ b/client/src/api/schema/schema.ts @@ -6938,7 +6938,7 @@ export interface components { * Type * @constant */ - type: "parameter"; + type: "parameter_input"; /** When */ when: string | null; }; diff --git a/lib/galaxy/schema/schema.py b/lib/galaxy/schema/schema.py index ab2e22909ca6..40e076fd778c 100644 --- a/lib/galaxy/schema/schema.py +++ b/lib/galaxy/schema/schema.py @@ -2236,7 +2236,7 @@ class InputDataCollectionStep(WorkflowStepBase): class InputParameterStep(WorkflowStepBase): - type: Literal["parameter"] + type: Literal["parameter_input"] class PauseStep(WorkflowStepBase):