diff --git a/client/src/api/schema/schema.ts b/client/src/api/schema/schema.ts index 8a084724cfde..a8da04a80bcf 100644 --- a/client/src/api/schema/schema.ts +++ b/client/src/api/schema/schema.ts @@ -12205,6 +12205,11 @@ export interface components { * @description The inputs of the step. */ inputs?: Record[] | null; + /** + * Label + * @description The label of the step. + */ + label?: string | null; /** * Name * @description The name of the step. @@ -12225,16 +12230,6 @@ export interface components { * @description A dictionary of post-job actions for the step. */ post_job_actions?: Record | Record[] | null; - /** - * Label - * @description The label of the step. - */ - step_label?: string | null; - /** - * Type - * @description The type of the module that represents a step in the workflow. - */ - step_type: components["schemas"]["WorkflowModuleType"]; /** * Tool ID * @description The tool ID associated with the step. @@ -12255,6 +12250,11 @@ export interface components { * @description The tooltip for the step. */ tooltip?: string | null; + /** + * Type + * @description The type of the module that represents a step in the workflow. + */ + type: string; /** * UUID * @description The UUID of the step. @@ -12369,6 +12369,11 @@ export interface components { * @description The inputs of the step. */ inputs?: Record[] | null; + /** + * Label + * @description The label of the step. + */ + label?: string | null; /** * Name * @description The name of the step. @@ -12389,16 +12394,6 @@ export interface components { * @description A dictionary of post-job actions for the step. */ post_job_actions?: Record | Record[] | null; - /** - * Label - * @description The label of the step. - */ - step_label?: string | null; - /** - * Type - * @description The type of the module that represents a step in the workflow. - */ - step_type: components["schemas"]["WorkflowModuleType"]; /** * Sub Workflow * @description The sub-workflow associated with the step. @@ -12429,6 +12424,11 @@ export interface components { * @description The version of the tool associated with the step. */ tool_version?: string | null; + /** + * Type + * @description The type of the module that represents a step in the workflow. + */ + type: string; /** * UUID * @description The UUID (Universally Unique Identifier) of the step. @@ -12632,11 +12632,6 @@ export interface components { * @description A dictionary of post-job actions for the step. */ post_job_actions?: Record | Record[] | null; - /** - * Type - * @description The type of the module that represents a step in the workflow. - */ - step_type: components["schemas"]["WorkflowModuleType"]; /** * Tool ID * @description The tool ID associated with the step. @@ -12652,6 +12647,11 @@ export interface components { * @description The version of the tool associated with the step. */ tool_version?: string | null; + /** + * Type + * @description The type of the module that represents a step in the workflow. + */ + type: string; /** * When * @description The when expression for the step. @@ -12739,7 +12739,7 @@ export interface components { */ step_index: number; /** - * Label + * Step Label * @description The label of the step. */ step_label?: string | null; @@ -12749,10 +12749,10 @@ export interface components { */ step_name: string; /** - * Type - * @description The type of the module that represents a step in the workflow. + * Step Type + * @description The type of the step. */ - step_type: components["schemas"]["WorkflowModuleType"]; + step_type: string; /** * Step Version * @description The version of the step's module.