From e041df72ac795772a16118b6fa015a2fd32597ed Mon Sep 17 00:00:00 2001 From: heisner-tillman Date: Thu, 8 Feb 2024 11:19:32 +0100 Subject: [PATCH] Regenrate the client schema --- client/src/api/schema/schema.ts | 107 +------------------------------- 1 file changed, 2 insertions(+), 105 deletions(-) diff --git a/client/src/api/schema/schema.ts b/client/src/api/schema/schema.ts index bab8523d0652..e5e4357f55d0 100644 --- a/client/src/api/schema/schema.ts +++ b/client/src/api/schema/schema.ts @@ -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 */ @@ -2430,42 +2430,6 @@ export interface components { /** Name */ name?: Record; }; - /** Body_execute_form_api_tools_post */ - Body_execute_form_api_tools_post: { - /** Action */ - action?: Record; - /** Data Manager Mode */ - data_manager_mode?: Record; - /** Files */ - files?: string[] | null; - /** History Id */ - history_id?: Record; - /** - * Input Format - * @default legacy - */ - input_format?: Record; - /** - * Inputs - * @default {} - */ - inputs?: Record; - /** Preferred Object Store Id */ - preferred_object_store_id?: Record; - /** Send Email Notification */ - send_email_notification?: Record; - /** Tool Id */ - tool_id?: Record; - /** Tool Uuid */ - tool_uuid?: Record; - /** Tool Version */ - tool_version?: Record; - /** - * Use Cached Job - * @default false - */ - use_cached_job?: Record; - }; /** Body_fetch_form_api_tools_fetch_post */ Body_fetch_form_api_tools_fetch_post: { /** Files */ @@ -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; - /** - * 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 | null; - /** - * Tool UUID - * @description The UUID of the tool to execute. - */ - tool_uuid?: Record | 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: { /** @@ -20301,7 +20203,7 @@ 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. */ @@ -20309,11 +20211,6 @@ export interface operations { "run-as"?: string | null; }; }; - requestBody?: { - content: { - "multipart/form-data": components["schemas"]["Body_execute_form_api_tools_post"]; - }; - }; responses: { /** @description Successful Response */ 200: {