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