/** * Response after executing a flow against a context instance. */ export interface SolveContextFlowResponse { /** Whether the flow executed successfully. */ status?: SolveContextFlowResponse.Status | undefined; /** Combined identifier in format 'contextSlug:instanceId'. */ context?: string | undefined; /** The slug of the flow that was executed. */ flow?: string | undefined; /** The flow execution output. */ result?: Record | undefined; /** Resource usage information for the flow execution. */ usage?: Record | undefined; } export declare namespace SolveContextFlowResponse { /** Whether the flow executed successfully. */ const Status: { readonly Solved: "solved"; readonly Error: "error"; }; type Status = (typeof Status)[keyof typeof Status]; }