/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod"; export type GoForwardCommand = { thoughts?: string | undefined; /** * unique identifier to this step, used for step cache */ id: string; type?: "GO_FORWARD" | undefined; }; /** @internal */ export const GoForwardCommand$inboundSchema: z.ZodType< GoForwardCommand, z.ZodTypeDef, unknown > = z.object({ thoughts: z.string().optional(), id: z.string(), type: z.literal("GO_FORWARD").optional(), }); /** @internal */ export type GoForwardCommand$Outbound = { thoughts?: string | undefined; id: string; type: "GO_FORWARD"; }; /** @internal */ export const GoForwardCommand$outboundSchema: z.ZodType< GoForwardCommand$Outbound, z.ZodTypeDef, GoForwardCommand > = z.object({ thoughts: z.string().optional(), id: z.string(), type: z.literal("GO_FORWARD").default("GO_FORWARD" as const), }); /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export namespace GoForwardCommand$ { /** @deprecated use `GoForwardCommand$inboundSchema` instead. */ export const inboundSchema = GoForwardCommand$inboundSchema; /** @deprecated use `GoForwardCommand$outboundSchema` instead. */ export const outboundSchema = GoForwardCommand$outboundSchema; /** @deprecated use `GoForwardCommand$Outbound` instead. */ export type Outbound = GoForwardCommand$Outbound; }