/**
* 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
*/
/**
* Execution status:
- running: Execution in progress
- success: Completed successfully
- failed: Failed due to error
- aborted: Cancelled by user or system
*/
export type RunStatus = (typeof RunStatus)[keyof typeof RunStatus];
// eslint-disable-next-line @typescript-eslint/no-redeclare
export const RunStatus = {
running: "running",
success: "success",
failed: "failed",
aborted: "aborted",
} as const;