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