/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod"; export type CodeLocation = { url: string; lineNumber: number; columnNumber: number; }; /** @internal */ export const CodeLocation$inboundSchema: z.ZodType< CodeLocation, z.ZodTypeDef, unknown > = z.object({ url: z.string(), lineNumber: z.number(), columnNumber: z.number(), }); /** @internal */ export type CodeLocation$Outbound = { url: string; lineNumber: number; columnNumber: number; }; /** @internal */ export const CodeLocation$outboundSchema: z.ZodType< CodeLocation$Outbound, z.ZodTypeDef, CodeLocation > = z.object({ url: z.string(), lineNumber: z.number(), columnNumber: z.number(), }); /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export namespace CodeLocation$ { /** @deprecated use `CodeLocation$inboundSchema` instead. */ export const inboundSchema = CodeLocation$inboundSchema; /** @deprecated use `CodeLocation$outboundSchema` instead. */ export const outboundSchema = CodeLocation$outboundSchema; /** @deprecated use `CodeLocation$Outbound` instead. */ export type Outbound = CodeLocation$Outbound; }