From cb3300c94414f48ffc3a4e1ae49408f3c2e288df Mon Sep 17 00:00:00 2001 From: heisner-tillman Date: Thu, 21 Mar 2024 22:33:54 +0100 Subject: [PATCH] Regenerate the client schema --- client/src/api/schema/schema.ts | 100 ++++++++++++++++---------------- 1 file changed, 50 insertions(+), 50 deletions(-) diff --git a/client/src/api/schema/schema.ts b/client/src/api/schema/schema.ts index 2927d3a944bc..98e219f2151b 100644 --- a/client/src/api/schema/schema.ts +++ b/client/src/api/schema/schema.ts @@ -12617,17 +12617,17 @@ export interface components { content_id?: string | null; /** * Errors - * @description Any errors associated with the step. + * @description An message indicating possible errors in the step. */ errors?: string[] | string | Record | null; /** * ID - * @description The order index of the step. + * @description The identifier of the step. It matches the index order of the step inside the workflow. */ id: number; /** * Input Connections - * @description A dictionary representing the input connections for the step. + * @description The input connections for the step. */ input_connections?: Record | null; /** @@ -12642,7 +12642,7 @@ export interface components { label?: string | null; /** * Name - * @description The name of the step. + * @description The descriptive name of the module or step. */ name?: string | null; /** @@ -12652,17 +12652,17 @@ export interface components { outputs?: Record[] | null; /** * Position - * @description The position of the step. + * @description Layout position of this step in the graph */ position?: Record | null; /** * Post Job Actions - * @description A dictionary of post-job actions for the step. + * @description Set of actions that will be run when the job finishes. */ post_job_actions?: Record | Record[] | null; /** * Tool ID - * @description The tool ID associated with the step. + * @description The unique name of the tool associated with this step. */ tool_id?: string | null; /** @@ -12687,7 +12687,7 @@ export interface components { type: string; /** * UUID - * @description The UUID of the step. + * @description Universal unique identifier of the workflow. */ uuid?: string | null; /** @@ -12697,7 +12697,7 @@ export interface components { when?: string | null; /** * Workflow Outputs - * @description A list of workflow outputs for the step. + * @description Workflow outputs associated with this step. */ workflow_outputs?: Record[] | null; }; @@ -12722,7 +12722,7 @@ export interface components { | null; /** * License - * @description The license information for the workflow. + * @description SPDX Identifier of the license associated with this workflow. */ license?: string | null; /** @@ -12742,7 +12742,7 @@ export interface components { source_metadata?: Record | null; /** * Steps - * @description A dictionary with information about all the steps of the workflow. + * @description Information about all the steps of the workflow. */ steps: { [key: string]: components["schemas"]["WorkflowDictEditorSteps"] | undefined; @@ -12756,7 +12756,7 @@ export interface components { }; /** * Version - * @description The version of the workflow. + * @description The version of the workflow represented by an incremental number. */ version: number; }; @@ -12774,12 +12774,12 @@ export interface components { content_id?: string | null; /** * Errors - * @description Any errors associated with the step. + * @description An message indicating possible errors in the step. */ errors?: string[] | string | Record | null; /** * ID - * @description The order index of the step. + * @description The identifier of the step. It matches the index order of the step inside the workflow. */ id: number; /** @@ -12806,7 +12806,7 @@ export interface components { label?: string | null; /** * Name - * @description The name of the step. + * @description The descriptive name of the module or step. */ name: string; /** @@ -12816,22 +12816,22 @@ export interface components { outputs?: Record[] | null; /** * Position - * @description The position of the step. + * @description Layout position of this step in the graph */ position?: Record | null; /** * Post Job Actions - * @description A dictionary of post-job actions for the step. + * @description Set of actions that will be run when the job finishes. */ post_job_actions?: Record | Record[] | null; /** * Sub Workflow - * @description The sub-workflow associated with the step. + * @description Full information about the subworkflow associated with this step. */ subworkflow?: Record | null; /** * Tool ID - * @description The tool ID associated with the step. + * @description The unique name of the tool associated with this step. */ tool_id?: string | null; /** @@ -12861,7 +12861,7 @@ export interface components { type: string; /** * UUID - * @description The UUID (Universally Unique Identifier) of the step. + * @description Universal unique identifier of the workflow. */ uuid: string; /** @@ -12871,7 +12871,7 @@ export interface components { when?: string | null; /** * Workflow Outputs - * @description A list of workflow outputs for the step. + * @description Workflow outputs associated with this step. */ workflow_outputs?: Record[] | null; }; @@ -12879,7 +12879,7 @@ export interface components { WorkflowDictExportSummary: { /** * A Galaxy Workflow - * @description Is a Galaxy workflow. + * @description Whether this workflow is a Galaxy Workflow. */ a_galaxy_workflow?: string | null; /** @@ -12889,7 +12889,7 @@ export interface components { annotation: string | null; /** * Comments - * @description A list of dictionaries representing comments associated with the workflow. + * @description Comments associated with the workflow. */ comments?: Record[] | null; /** @@ -12906,7 +12906,7 @@ export interface components { "format-version"?: string | null; /** * License - * @description The license information for the workflow. + * @description SPDX Identifier of the license associated with this workflow. */ license?: string | null; /** @@ -12926,7 +12926,7 @@ export interface components { source_metadata?: Record | null; /** * Steps - * @description A dictionary with information about all the steps of the workflow. + * @description Information about all the steps of the workflow. */ steps: { [key: string]: components["schemas"]["WorkflowDictExportSteps"] | undefined; @@ -12943,7 +12943,7 @@ export interface components { uuid?: string | null; /** * Version - * @description The version of the workflow. + * @description The version of the workflow represented by an incremental number. */ version: number; }; @@ -12968,7 +12968,7 @@ export interface components { doc?: string | null; /** * Inputs - * @description A dictionary representing the inputs of the workflow. + * @description The inputs of the workflow. */ inputs?: Record | null; /** @@ -12978,12 +12978,12 @@ export interface components { label?: string | null; /** * License - * @description The license information for the workflow. + * @description SPDX Identifier of the license associated with this workflow. */ license?: string | null; /** * Outputs - * @description A dictionary representing the outputs of the workflow. + * @description The outputs of the workflow. */ outputs?: Record | null; /** @@ -12998,7 +12998,7 @@ export interface components { report?: Record | null; /** * Steps - * @description A dictionary representing the steps of the workflow. + * @description Information about all the steps of the workflow. */ steps: Record; /** @@ -13034,7 +13034,7 @@ export interface components { content_id?: string | null; /** * Errors - * @description Any errors associated with the step. + * @description An message indicating possible errors in the step. */ errors?: string[] | string | Record | null; /** @@ -13059,17 +13059,17 @@ export interface components { outputs?: Record[] | null; /** * Position - * @description The position of the step. + * @description Layout position of this step in the graph */ position?: Record | null; /** * Post Job Actions - * @description A dictionary of post-job actions for the step. + * @description Set of actions that will be run when the job finishes. */ post_job_actions?: Record | Record[] | null; /** * Tool ID - * @description The tool ID associated with the step. + * @description The unique name of the tool associated with this step. */ tool_id?: string | null; /** @@ -13094,7 +13094,7 @@ export interface components { when?: string | null; /** * Workflow Outputs - * @description A list of workflow outputs for the step. + * @description Workflow outputs associated with this step. */ workflow_outputs?: Record[] | null; }; @@ -13107,12 +13107,12 @@ export interface components { name: string; /** * Steps - * @description A dictionary with information about all the steps of the workflow. + * @description Information about all the steps of the workflow. */ steps: components["schemas"]["WorkflowDictPreviewSteps"][]; /** * Version - * @description The version of the workflow. + * @description The version of the workflow represented by an incremental number. */ version: number; }; @@ -13130,7 +13130,7 @@ export interface components { content_id?: string | null; /** * Errors - * @description Any errors associated with the step. + * @description An message indicating possible errors in the step. */ errors?: string[] | string | Record | null; /** @@ -13145,7 +13145,7 @@ export interface components { messages?: string[] | null; /** * Output Connections - * @description A list of dictionaries representing the output connections of the step. + * @description The output connections of the step. */ output_connections: Record[]; /** @@ -13155,12 +13155,12 @@ export interface components { outputs?: Record[] | null; /** * Position - * @description The position of the step. + * @description Layout position of this step in the graph */ position?: Record | null; /** * Post Job Actions - * @description A dictionary of post-job actions for the step. + * @description Set of actions that will be run when the job finishes. */ post_job_actions?: Record | Record[] | null; /** @@ -13180,7 +13180,7 @@ export interface components { step_label?: string | null; /** * Step Name - * @description The name of the step's module. + * @description The descriptive name of the module or step. */ step_name: string; /** @@ -13195,7 +13195,7 @@ export interface components { step_version?: string | null; /** * Tool ID - * @description The tool ID associated with the step. + * @description The unique name of the tool associated with this step. */ tool_id?: string | null; /** @@ -13215,7 +13215,7 @@ export interface components { when?: string | null; /** * Workflow Outputs - * @description A list of workflow outputs for the step. + * @description Workflow outputs associated with this step. */ workflow_outputs?: Record[] | null; }; @@ -13223,17 +13223,17 @@ export interface components { WorkflowDictRunSummary: { /** * Has Upgrade Messages - * @description A boolean indicating whether the workflow has upgrade messages. + * @description Whether the workflow has upgrade messages. */ has_upgrade_messages?: boolean | null; /** * History ID - * @description The encoded ID of the history associated with the workflow (or None if not applicable). + * @description TODO */ history_id?: string | null; /** * ID - * @description The encoded ID of the stored workflow. + * @description TODO */ id?: string | null; /** @@ -13243,17 +13243,17 @@ export interface components { name: string; /** * Step Version Changes - * @description A list of version changes for the workflow steps. + * @description Version changes for the workflow steps. */ step_version_changes?: Record[] | null; /** * Steps - * @description A dictionary with information about all the steps of the workflow. + * @description Information about all the steps of the workflow. */ steps: components["schemas"]["WorkflowDictRunSteps"][]; /** * Version - * @description The version of the workflow. + * @description The version of the workflow represented by an incremental number. */ version: number; /**