/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod"; export type AuthSaveCommand = { thoughts?: string | undefined; /** * unique identifier to this step, used for step cache */ id: string; type?: "AUTH_SAVE" | undefined; }; /** @internal */ export const AuthSaveCommand$inboundSchema: z.ZodType< AuthSaveCommand, z.ZodTypeDef, unknown > = z.object({ thoughts: z.string().optional(), id: z.string(), type: z.literal("AUTH_SAVE").optional(), }); /** @internal */ export type AuthSaveCommand$Outbound = { thoughts?: string | undefined; id: string; type: "AUTH_SAVE"; }; /** @internal */ export const AuthSaveCommand$outboundSchema: z.ZodType< AuthSaveCommand$Outbound, z.ZodTypeDef, AuthSaveCommand > = z.object({ thoughts: z.string().optional(), id: z.string(), type: z.literal("AUTH_SAVE").default("AUTH_SAVE" 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 AuthSaveCommand$ { /** @deprecated use `AuthSaveCommand$inboundSchema` instead. */ export const inboundSchema = AuthSaveCommand$inboundSchema; /** @deprecated use `AuthSaveCommand$outboundSchema` instead. */ export const outboundSchema = AuthSaveCommand$outboundSchema; /** @deprecated use `AuthSaveCommand$Outbound` instead. */ export type Outbound = AuthSaveCommand$Outbound; }