Skip to content

Commit

Permalink
Regenrate the client schema
Browse files Browse the repository at this point in the history
  • Loading branch information
heisner-tillman committed Feb 8, 2024
1 parent 81f9e04 commit e041df7
Showing 1 changed file with 2 additions and 105 deletions.
107 changes: 2 additions & 105 deletions client/src/api/schema/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1577,7 +1577,7 @@ export interface paths {
};
"/api/tools": {
/** Execute tool with a given parameter payload */
post: operations["execute_form_api_tools_post"];
post: operations["execute_api_tools_post"];
};
"/api/tools/fetch": {
/** Upload files to Galaxy */
Expand Down Expand Up @@ -2430,42 +2430,6 @@ export interface components {
/** Name */
name?: Record<string, never>;
};
/** Body_execute_form_api_tools_post */
Body_execute_form_api_tools_post: {
/** Action */
action?: Record<string, never>;
/** Data Manager Mode */
data_manager_mode?: Record<string, never>;
/** Files */
files?: string[] | null;
/** History Id */
history_id?: Record<string, never>;
/**
* Input Format
* @default legacy
*/
input_format?: Record<string, never>;
/**
* Inputs
* @default {}
*/
inputs?: Record<string, never>;
/** Preferred Object Store Id */
preferred_object_store_id?: Record<string, never>;
/** Send Email Notification */
send_email_notification?: Record<string, never>;
/** Tool Id */
tool_id?: Record<string, never>;
/** Tool Uuid */
tool_uuid?: Record<string, never>;
/** Tool Version */
tool_version?: Record<string, never>;
/**
* Use Cached Job
* @default false
*/
use_cached_job?: Record<string, never>;
};
/** Body_fetch_form_api_tools_fetch_post */
Body_fetch_form_api_tools_fetch_post: {
/** Files */
Expand Down Expand Up @@ -4573,68 +4537,6 @@ export interface components {
*/
user_email?: string | null;
};
/** ExecuteToolPayload */
ExecuteToolPayload: {
/**
* Action
* @description The action to perform
*/
action?: string | null;
/**
* Data Manager Mode
* @description The mode of the data manager
*/
data_manager_mode?: string | null;
/**
* History ID
* @description The ID of the history
*/
history_id?: string | null;
/**
* Input Format
* @description The format of the input
* @default legacy
*/
input_format?: string | null;
/**
* Inputs
* @description The input data
* @default {}
*/
inputs?: Record<string, never>;
/**
* Preferred Object Store ID
* @description The ID of the preferred object store
*/
preferred_object_store_id?: string | null;
/**
* Send Email Notification
* @description Flag indicating whether to send email notification
*/
send_email_notification?: boolean | null;
/**
* Tool ID
* @description The ID of the tool to execute.
*/
tool_id?: Record<string, never> | null;
/**
* Tool UUID
* @description The UUID of the tool to execute.
*/
tool_uuid?: Record<string, never> | null;
/**
* Tool Version
* @description The version of the tool
*/
tool_version?: string | null;
/**
* Use Cached Job
* @description Flag indicating whether to use a cached job
* @default false
*/
use_cached_job?: boolean | null;
[key: string]: unknown | undefined;
};
/** ExportHistoryArchivePayload */
ExportHistoryArchivePayload: {
/**
Expand Down Expand Up @@ -20301,19 +20203,14 @@ export interface operations {
};
};
};
execute_form_api_tools_post: {
execute_api_tools_post: {
/** Execute tool with a given parameter payload */
parameters?: {
/** @description The user ID that will be used to effectively make this API call. Only admins and designated users can make API calls on behalf of other users. */
header?: {
"run-as"?: string | null;
};
};
requestBody?: {
content: {
"multipart/form-data": components["schemas"]["Body_execute_form_api_tools_post"];
};
};
responses: {
/** @description Successful Response */
200: {
Expand Down

0 comments on commit e041df7

Please sign in to comment.