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