/* * 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 ListResponseBody2 = { actions: Array; }; /** @internal */ export const ListResponseBody2$inboundSchema: z.ZodType< ListResponseBody2, z.ZodTypeDef, unknown > = z.object({ actions: z.array(ActionV2$inboundSchema), }); /** @internal */ export type ListResponseBody2$Outbound = { actions: Array; }; /** @internal */ export const ListResponseBody2$outboundSchema: z.ZodType< ListResponseBody2$Outbound, z.ZodTypeDef, ListResponseBody2 > = z.object({ actions: z.array(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 ListResponseBody2$ { /** @deprecated use `ListResponseBody2$inboundSchema` instead. */ export const inboundSchema = ListResponseBody2$inboundSchema; /** @deprecated use `ListResponseBody2$outboundSchema` instead. */ export const outboundSchema = ListResponseBody2$outboundSchema; /** @deprecated use `ListResponseBody2$Outbound` instead. */ export type Outbound = ListResponseBody2$Outbound; }