import * as z from "zod"; import { UrlSource, UrlSource$Outbound } from "./urlsource.js"; export type FileSource = UrlSource; export type FileUploadCommand = { thoughts?: string | undefined; /** * unique identifier to this step, used for step cache */ id: string; type?: "FILE_UPLOAD" | undefined; fileSource: UrlSource; filename?: string | undefined; }; /** @internal */ export declare const FileSource$inboundSchema: z.ZodType; /** @internal */ export type FileSource$Outbound = UrlSource$Outbound; /** @internal */ export declare const FileSource$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace FileSource$ { /** @deprecated use `FileSource$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `FileSource$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `FileSource$Outbound` instead. */ type Outbound = FileSource$Outbound; } /** @internal */ export declare const FileUploadCommand$inboundSchema: z.ZodType; /** @internal */ export type FileUploadCommand$Outbound = { thoughts?: string | undefined; id: string; type: "FILE_UPLOAD"; fileSource: UrlSource$Outbound; filename?: string | undefined; }; /** @internal */ export declare const FileUploadCommand$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace FileUploadCommand$ { /** @deprecated use `FileUploadCommand$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `FileUploadCommand$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `FileUploadCommand$Outbound` instead. */ type Outbound = FileUploadCommand$Outbound; } //# sourceMappingURL=fileuploadcommand.d.ts.map