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