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