/**
* Generated by orval v7.17.0 🍺
* Do not edit manually.
* superglue AI API
* API for running superglue AI tools
* OpenAPI spec version: 1.0.0
*/
export type RunRequestOptions = {
/** If true, return immediately (202) and execute asynchronously. If false, wait for completion (200). */
async?: boolean;
/** Request timeout in seconds (only for synchronous execution) */
timeout?: number;
/** URL to receive completion webhook when run finishes (for both sync and async executions).
Webhook receives POST request with Run object (same schema as getRun response) in body.
Alternatively, a tool to run after - run via tool:toolId
*/
webhookUrl?: string;
/** Custom trace ID for log tracking */
traceId?: string;
};