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 14, 2024
1 parent c3f18df commit 5816361
Showing 1 changed file with 139 additions and 53 deletions.
192 changes: 139 additions & 53 deletions client/src/api/schema/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12146,14 +12146,14 @@ export interface components {
config_form?: Record<string, never> | null;
/**
* Content ID
* @description The identifier for the content of the step.
* @description The content ID of the step.
*/
content_id?: string | null;
/**
* Errors
* @description Any errors associated with the step.
*/
errors?: string[] | null;
errors?: string[] | string | null;
/**
* ID
* @description The order index of the step.
Expand All @@ -12169,11 +12169,6 @@ export interface components {
* @description The inputs of the step.
*/
inputs?: Record<string, never>[] | null;
/**
* Label
* @description The label of the step.
*/
label?: string | null;
/**
* Name
* @description The name of the step.
Expand All @@ -12193,27 +12188,37 @@ export interface components {
* Post Job Actions
* @description A dictionary of post-job actions for the step.
*/
post_job_actions?: Record<string, never> | null;
post_job_actions?: Record<string, never> | Record<string, never>[] | 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.
*/
tool_id?: string | null;
/**
* Tool State
* @description The state of the step's tool.
* @description The state of the tool associated with the step
*/
tool_state?: Record<string, never> | null;
tool_state?: Record<string, never> | string | null;
/**
* Tool Version
* @description The version of the step's tool.
* @description The version of the tool associated with the step.
*/
tool_version?: string | null;
/**
* Tooltip
* @description The tooltip for the step.
*/
tooltip?: string | null;
/**
* Type
* @description The type of workflow module.
*/
type: components["schemas"]["WorkflowModuleType"];
/**
* UUID
* @description The UUID of the step.
Expand Down Expand Up @@ -12244,9 +12249,11 @@ export interface components {
comments: Record<string, never>[];
/**
* Creator
* @description Metadata about the creator of the workflow.
* @description Additional information about the creator (or multiple creators) of this workflow.
*/
creator?: Record<string, never> | null;
creator?:
| (components["schemas"]["Person"] | components["schemas"]["galaxy__schema__schema__Organization"])[]
| null;
/**
* License
* @description The license information for the workflow.
Expand Down Expand Up @@ -12291,7 +12298,7 @@ export interface components {
WorkflowDictExportSteps: {
/**
* Annotation
* @description The annotation associated with the step.
* @description An annotation to provide details or to help understand the purpose and usage of this item.
*/
annotation?: string | null;
/**
Expand All @@ -12303,7 +12310,7 @@ export interface components {
* Errors
* @description Any errors associated with the step.
*/
errors?: string | null;
errors?: string[] | string | null;
/**
* ID
* @description The order index of the step.
Expand All @@ -12326,11 +12333,6 @@ export interface components {
* @description The inputs of the step.
*/
inputs?: Record<string, never>[] | null;
/**
* Label
* @description The label of the step (optional).
*/
label?: string | null;
/**
* Name
* @description The name of the step.
Expand All @@ -12348,17 +12350,27 @@ export interface components {
position?: Record<string, never> | null;
/**
* Post Job Actions
* @description A dictionary containing post-job actions associated with the step.
* @description A dictionary of post-job actions for the step.
*/
post_job_actions?: Record<string, never> | null;
post_job_actions?: Record<string, never> | Record<string, never>[] | 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.
*/
subworkflow?: Record<string, never> | null;
/**
* Tool ID
* @description The tool ID associated with the step (applicable only if the step type is 'tool').
* @description The tool ID associated with the step.
*/
tool_id?: string | null;
/**
Expand All @@ -12373,27 +12385,22 @@ export interface components {
tool_shed_repository?: Record<string, never> | null;
/**
* Tool State
* @description The serialized state of the tool associated with the step.
* @description The state of the tool associated with the step
*/
tool_state?: string | null;
tool_state?: Record<string, never> | string | null;
/**
* Tool Version
* @description The version of the tool associated with the step.
*/
tool_version?: string | null;
/**
* Type
* @description The type of the step.
*/
type: components["schemas"]["WorkflowModuleType"];
/**
* UUID
* @description The UUID (Universally Unique Identifier) of the step.
*/
uuid: string;
/**
* When
* @description The when expression of the step.
* @description The when expression for the step.
*/
when?: string | null;
/**
Expand Down Expand Up @@ -12421,14 +12428,16 @@ export interface components {
comments?: Record<string, never>[] | null;
/**
* Creator
* @description Metadata about the creator of the workflow.
* @description Additional information about the creator (or multiple creators) of this workflow.
*/
creator?: Record<string, never> | null;
creator?:
| (components["schemas"]["Person"] | components["schemas"]["galaxy__schema__schema__Organization"])[]
| null;
/**
* Format Version
* @description The version of the workflow format being used.
*/
format_version?: string | null;
"format-version"?: string | null;
/**
* License
* @description The license information for the workflow.
Expand Down Expand Up @@ -12481,9 +12490,11 @@ export interface components {
class: string;
/**
* Creator
* @description Metadata about the creator of the workflow.
* @description Additional information about the creator (or multiple creators) of this workflow.
*/
creator?: Record<string, never> | null;
creator?:
| (components["schemas"]["Person"] | components["schemas"]["galaxy__schema__schema__Organization"])[]
| null;
/**
* Inputs
* @description A dictionary representing the inputs of the workflow.
Expand Down Expand Up @@ -12545,11 +12556,16 @@ export interface components {
* @description An annotation to provide details or to help understand the purpose and usage of this item.
*/
annotation?: string | null;
/**
* Content ID
* @description The content ID of the step.
*/
content_id?: string | null;
/**
* Errors
* @description Any errors associated with the subworkflow.
* @description Any errors associated with the step.
*/
errors?: string[] | null;
errors?: string[] | string | null;
/**
* Inputs
* @description The inputs of the step.
Expand All @@ -12565,21 +12581,51 @@ export interface components {
* @description The order index of the step.
*/
order_index: number;
/**
* Outputs
* @description The outputs of the step.
*/
outputs?: Record<string, never>[] | null;
/**
* Position
* @description The position of the step.
*/
position?: Record<string, never> | null;
/**
* Post Job Actions
* @description A dictionary of post-job actions for the step.
*/
post_job_actions?: Record<string, never> | Record<string, never>[] | null;
/**
* Type
* @description The type of the module that represents a step in the workflow.
*/
step_type: components["schemas"]["WorkflowModuleType"];
/**
* Tool ID
* @description The unique name of the tool associated with this step.
* @description The tool ID associated with the step.
*/
tool_id?: string | null;
/**
* Tool State
* @description The state of the tool associated with the step
*/
tool_state?: Record<string, never> | string | null;
/**
* Tool Version
* @description The version of the tool associated with this step.
* @description The version of the tool associated with the step.
*/
tool_version?: string | null;
/**
* Type
* @description The type of workflow module.
* When
* @description The when expression for the step.
*/
type: components["schemas"]["WorkflowModuleType"];
when?: string | null;
/**
* Workflow Outputs
* @description A list of workflow outputs for the step.
*/
workflow_outputs?: Record<string, never>[] | null;
};
/** WorkflowDictPreviewSummary */
WorkflowDictPreviewSummary: {
Expand All @@ -12606,6 +12652,16 @@ export interface components {
* @description An annotation to provide details or to help understand the purpose and usage of this item.
*/
annotation?: string | null;
/**
* Content ID
* @description The content ID of the step.
*/
content_id?: string | null;
/**
* Errors
* @description Any errors associated with the step.
*/
errors?: string[] | string | null;
/**
* Inputs
* @description The inputs of the step.
Expand All @@ -12621,11 +12677,21 @@ export interface components {
* @description A list of dictionaries representing the output connections of the step.
*/
output_connections: Record<string, never>[];
/**
* Outputs
* @description The outputs of the step.
*/
outputs?: Record<string, never>[] | null;
/**
* Position
* @description The position of the step.
*/
position?: Record<string, never> | null;
/**
* Post Job Actions
* @description A list of dictionaries representing the post-job actions for the step.
* @description A dictionary of post-job actions for the step.
*/
post_job_actions?: Record<string, never>[] | null;
post_job_actions?: Record<string, never> | Record<string, never>[] | null;
/**
* Replacement Parameters
* @description Informal replacement parameters for the step.
Expand All @@ -12637,7 +12703,7 @@ export interface components {
*/
step_index: number;
/**
* Step Label
* Label
* @description The label of the step.
*/
step_label?: string | null;
Expand All @@ -12647,20 +12713,40 @@ export interface components {
*/
step_name: string;
/**
* Step Type
* @description The type of the step.
* Type
* @description The type of the module that represents a step in the workflow.
*/
step_type: components["schemas"]["WorkflowModuleType"];
/**
* Step Version
* @description The version of the step's module.
*/
step_version?: string | null;
/**
* Tool ID
* @description The tool ID associated with the step.
*/
tool_id?: string | null;
/**
* Tool State
* @description The state of the tool associated with the step
*/
tool_state?: Record<string, never> | string | null;
/**
* Tool Version
* @description The version of the tool associated with the step.
*/
tool_version?: string | null;
/**
* When
* @description The when expression for the step.
*/
when?: string | null;
/**
* Workflow Outputs
* @description A list of workflow outputs for the step.
*/
workflow_outputs?: Record<string, never>[] | null;
};
/** WorkflowDictRunSummary */
WorkflowDictRunSummary: {
Expand Down

0 comments on commit 5816361

Please sign in to comment.