/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v3"; import * as openEnums from "../../types/enums.js"; import { OpenEnum } from "../../types/enums.js"; export const ErrorLocation = { Query: "query", Body: "body", Path: "path", Header: "header", Unknown: "unknown", } as const; export type ErrorLocation = OpenEnum; /** @internal */ export const ErrorLocation$inboundSchema: z.ZodType< ErrorLocation, z.ZodTypeDef, unknown > = openEnums.inboundSchema(ErrorLocation);