/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: e062c4f7f877 */ import * as z from "zod"; import { ClosedEnum } from "../types/enums.js"; /** * The result of the deletion operation. */ export const ComponentsDestroyResponseResult = { Ok: "ok", NotFound: "not found", } as const; /** * The result of the deletion operation. */ export type ComponentsDestroyResponseResult = ClosedEnum< typeof ComponentsDestroyResponseResult >; export const ComponentsDestroyResponseResult$zodSchema = z.enum([ "ok", "not found", ]).describe("The result of the deletion operation."); export type ComponentsDestroyResponse = { result: ComponentsDestroyResponseResult; }; export const ComponentsDestroyResponse$zodSchema: z.ZodType< ComponentsDestroyResponse > = z.object({ result: ComponentsDestroyResponseResult$zodSchema.describe( "The result of the deletion operation.", ), });