import * as z from "zod"; export type RequestCommand = { thoughts?: string | undefined; /** * unique identifier to this step, used for step cache */ id: string; type?: "REQUEST" | undefined; url: string; method?: "GET" | undefined; headers?: { [k: string]: string; } | undefined; params?: { [k: string]: string; } | undefined; body?: string | undefined; /** * Max seconds to wait for the request to complete */ timeout?: number | undefined; }; /** @internal */ export declare const RequestCommand$inboundSchema: z.ZodType; /** @internal */ export type RequestCommand$Outbound = { thoughts?: string | undefined; id: string; type: "REQUEST"; url: string; method: "GET"; headers?: { [k: string]: string; } | undefined; params?: { [k: string]: string; } | undefined; body?: string | undefined; timeout?: number | undefined; }; /** @internal */ export declare const RequestCommand$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 RequestCommand$ { /** @deprecated use `RequestCommand$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `RequestCommand$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `RequestCommand$Outbound` instead. */ type Outbound = RequestCommand$Outbound; } //# sourceMappingURL=requestcommand.d.ts.map