Skip to content

Commit

Permalink
Regenerate the client schema
Browse files Browse the repository at this point in the history
  • Loading branch information
heisner-tillman committed Mar 21, 2024
1 parent 8220798 commit cb3300c
Showing 1 changed file with 50 additions and 50 deletions.
100 changes: 50 additions & 50 deletions client/src/api/schema/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<string, never> | 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<string, never> | null;
/**
Expand All @@ -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;
/**
Expand All @@ -12652,17 +12652,17 @@ export interface components {
outputs?: Record<string, never>[] | null;
/**
* Position
* @description The position of the step.
* @description Layout position of this step in the graph
*/
position?: Record<string, never> | 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<string, never> | Record<string, never>[] | 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;
/**
Expand All @@ -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;
/**
Expand All @@ -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<string, never>[] | null;
};
Expand All @@ -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;
/**
Expand All @@ -12742,7 +12742,7 @@ export interface components {
source_metadata?: Record<string, never> | 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;
Expand All @@ -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;
};
Expand All @@ -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<string, never> | 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;
/**
Expand All @@ -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;
/**
Expand All @@ -12816,22 +12816,22 @@ export interface components {
outputs?: Record<string, never>[] | null;
/**
* Position
* @description The position of the step.
* @description Layout position of this step in the graph
*/
position?: Record<string, never> | 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<string, never> | Record<string, never>[] | null;
/**
* Sub Workflow
* @description The sub-workflow associated with the step.
* @description Full information about the subworkflow associated with this step.
*/
subworkflow?: Record<string, never> | 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;
/**
Expand Down Expand Up @@ -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;
/**
Expand All @@ -12871,15 +12871,15 @@ 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<string, never>[] | null;
};
/** WorkflowDictExportSummary */
WorkflowDictExportSummary: {
/**
* A Galaxy Workflow
* @description Is a Galaxy workflow.
* @description Whether this workflow is a Galaxy Workflow.
*/
a_galaxy_workflow?: string | null;
/**
Expand All @@ -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<string, never>[] | null;
/**
Expand All @@ -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;
/**
Expand All @@ -12926,7 +12926,7 @@ export interface components {
source_metadata?: Record<string, never> | 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;
Expand All @@ -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;
};
Expand All @@ -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<string, never> | null;
/**
Expand All @@ -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<string, never> | null;
/**
Expand All @@ -12998,7 +12998,7 @@ export interface components {
report?: Record<string, never> | null;
/**
* Steps
* @description A dictionary representing the steps of the workflow.
* @description Information about all the steps of the workflow.
*/
steps: Record<string, never>;
/**
Expand Down Expand Up @@ -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<string, never> | null;
/**
Expand All @@ -13059,17 +13059,17 @@ export interface components {
outputs?: Record<string, never>[] | null;
/**
* Position
* @description The position of the step.
* @description Layout position of this step in the graph
*/
position?: Record<string, never> | 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<string, never> | Record<string, never>[] | 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;
/**
Expand All @@ -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<string, never>[] | null;
};
Expand All @@ -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;
};
Expand All @@ -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<string, never> | null;
/**
Expand All @@ -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<string, never>[];
/**
Expand All @@ -13155,12 +13155,12 @@ export interface components {
outputs?: Record<string, never>[] | null;
/**
* Position
* @description The position of the step.
* @description Layout position of this step in the graph
*/
position?: Record<string, never> | 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<string, never> | Record<string, never>[] | null;
/**
Expand All @@ -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;
/**
Expand All @@ -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;
/**
Expand All @@ -13215,25 +13215,25 @@ 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<string, never>[] | null;
};
/** WorkflowDictRunSummary */
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;
/**
Expand All @@ -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<string, never>[] | 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;
/**
Expand Down

0 comments on commit cb3300c

Please sign in to comment.