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 Apr 1, 2024
1 parent 0b7752c commit 08249c0
Showing 1 changed file with 98 additions and 9 deletions.
107 changes: 98 additions & 9 deletions client/src/api/schema/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7264,6 +7264,19 @@ export interface components {
*/
uri: string;
};
/** Input */
Input: {
/**
* Description
* @description The annotation or description of the input.
*/
description: string;
/**
* Name
* @description The name of the input.
*/
name: string;
};
/** InputArguments */
InputArguments: {
/**
Expand Down Expand Up @@ -10290,6 +10303,29 @@ export interface components {
/** Top */
top: number;
};
/** PostJobAction */
PostJobAction: {
/**
* Action Arguments
* @description Any additional arguments needed by the action.
*/
action_arguments: Record<string, never>;
/**
* Action Type
* @description The type of action to run.
*/
action_type: string;
/**
* Output Name
* @description The name of the output that will be affected by the action.
*/
output_name: string;
/**
* Short String
* @description A short string representation of the action.
*/
short_str?: string | null;
};
/** PrepareStoreDownloadPayload */
PrepareStoreDownloadPayload: {
/**
Expand Down Expand Up @@ -11389,6 +11425,14 @@ export interface components {
* @enum {string}
*/
Src: "url" | "pasted" | "files" | "path" | "composite" | "ftp_import" | "server_dir";
/** StepIn */
StepIn: {
/**
* Default
* @description TODO
*/
default: Record<string, never>;
};
/** StepReferenceByLabel */
StepReferenceByLabel: {
/**
Expand Down Expand Up @@ -11814,6 +11858,29 @@ export interface components {
*/
values: string;
};
/** ToolShedRepositorySummary */
ToolShedRepositorySummary: {
/**
* Changeset Revision
* @description TODO
*/
changeset_revision: string;
/**
* Name
* @description The name of the repository.
*/
name: string;
/**
* Owner
* @description The owner of the repository.
*/
owner: string;
/**
* Tool Shed
* @description The Tool Shed base URL.
*/
tool_shed: string;
};
/** ToolStep */
ToolStep: {
/**
Expand Down Expand Up @@ -12719,7 +12786,12 @@ export interface components {
* Post Job Actions
* @description Set of actions that will be run when the job finishes.
*/
post_job_actions?: Record<string, never> | Record<string, never>[] | null;
post_job_actions?:
| components["schemas"]["PostJobAction"][]
| {
[key: string]: components["schemas"]["PostJobAction"] | undefined;
}
| null;
/**
* Tool ID
* @description The unique name of the tool associated with this step.
Expand Down Expand Up @@ -12846,7 +12918,9 @@ export interface components {
* In
* @description The input connections of the step.
*/
in?: Record<string, never> | null;
in?: {
[key: string]: components["schemas"]["StepIn"] | undefined;
} | null;
/**
* Input Connections
* @description The input connections of the step.
Expand All @@ -12860,7 +12934,7 @@ export interface components {
* Inputs
* @description The inputs of the step.
*/
inputs?: Record<string, never>[] | null;
inputs?: components["schemas"]["Input"][] | null;
/**
* Label
* @description The label of the step.
Expand All @@ -12885,7 +12959,12 @@ export interface components {
* Post Job Actions
* @description Set of actions that will be run when the job finishes.
*/
post_job_actions?: Record<string, never> | Record<string, never>[] | null;
post_job_actions?:
| components["schemas"]["PostJobAction"][]
| {
[key: string]: components["schemas"]["PostJobAction"] | undefined;
}
| null;
/**
* Sub Workflow
* @description Full information about the subworkflow associated with this step.
Expand All @@ -12905,7 +12984,7 @@ export interface components {
* Tool Shed Repository
* @description Information about the tool shed repository associated with the tool.
*/
tool_shed_repository?: Record<string, never> | null;
tool_shed_repository?: components["schemas"]["ToolShedRepositorySummary"] | null;
/**
* Tool State
* @description The state of the tool associated with the step
Expand Down Expand Up @@ -12998,7 +13077,7 @@ export interface components {
* Tags
* @description The tags associated with the workflow.
*/
tags?: string[] | null;
tags?: components["schemas"]["TagCollection"] | null;
/**
* UUID
* @description The UUID (Universally Unique Identifier) of the workflow.
Expand Down Expand Up @@ -13068,7 +13147,7 @@ export interface components {
* Tags
* @description The tags associated with the workflow.
*/
tags?: string[] | null;
tags?: components["schemas"]["TagCollection"] | null;
/**
* UUID
* @description The UUID (Universally Unique Identifier) of the workflow.
Expand Down Expand Up @@ -13129,7 +13208,12 @@ export interface components {
* Post Job Actions
* @description Set of actions that will be run when the job finishes.
*/
post_job_actions?: Record<string, never> | Record<string, never>[] | null;
post_job_actions?:
| components["schemas"]["PostJobAction"][]
| {
[key: string]: components["schemas"]["PostJobAction"] | undefined;
}
| null;
/**
* Tool ID
* @description The unique name of the tool associated with this step.
Expand Down Expand Up @@ -13225,7 +13309,12 @@ export interface components {
* Post Job Actions
* @description Set of actions that will be run when the job finishes.
*/
post_job_actions?: Record<string, never> | Record<string, never>[] | null;
post_job_actions?:
| components["schemas"]["PostJobAction"][]
| {
[key: string]: components["schemas"]["PostJobAction"] | undefined;
}
| null;
/**
* Replacement Parameters
* @description Informal replacement parameters for the step.
Expand Down

0 comments on commit 08249c0

Please sign in to comment.