From 5a7b4f38a44d51de048693bdf50f1da4d0d80fc0 Mon Sep 17 00:00:00 2001 From: heisner-tillman Date: Mon, 26 Feb 2024 18:20:41 +0100 Subject: [PATCH] Regenerate the client schema --- client/src/api/schema/schema.ts | 62 --------------------------------- 1 file changed, 62 deletions(-) diff --git a/client/src/api/schema/schema.ts b/client/src/api/schema/schema.ts index 24b36b3f9f78..b2a6486a3512 100644 --- a/client/src/api/schema/schema.ts +++ b/client/src/api/schema/schema.ts @@ -4594,68 +4594,6 @@ export interface components { */ src: components["schemas"]["DataItemSourceType"]; }; - /** 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: { /**