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 Feb 26, 2024
1 parent a6a2850 commit 5a7b4f3
Showing 1 changed file with 0 additions and 62 deletions.
62 changes: 0 additions & 62 deletions client/src/api/schema/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<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

0 comments on commit 5a7b4f3

Please sign in to comment.