/**
* 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
*/
import type { RunStepResultsItemData } from "./runStepResultsItemData";
export type RunStepResultsItem = {
/** ID of the step that was executed */
stepId: string;
/** Whether the step completed successfully */
success: boolean;
/** Step execution result data */
data?: RunStepResultsItemData;
/** Error message if step failed */
error?: string;
};