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