/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 1c95851f35bd */ import * as z from "zod/v3"; import * as openEnums from "../../types/enums.js"; import { OpenEnum } from "../../types/enums.js"; /** * The status of the run. One of 'error', 'success'. */ export const AgentExecutionStatus = { Error: "error", Success: "success", } as const; /** * The status of the run. One of 'error', 'success'. */ export type AgentExecutionStatus = OpenEnum; /** @internal */ export const AgentExecutionStatus$inboundSchema: z.ZodType< AgentExecutionStatus, z.ZodTypeDef, unknown > = openEnums.inboundSchema(AgentExecutionStatus);