import * as z from "zod/v4"; export type IncrementCommandAttemptGlobals = { /** * Workspace name. Platform API keys already select a workspace; other authentication methods can configure it once on the SDK client. */ workspace?: string | undefined; }; export type IncrementCommandAttemptRequest = { /** * Unique identifier for the command. */ id: string; }; /** @internal */ export type IncrementCommandAttemptRequest$Outbound = { id: string; }; /** @internal */ export declare const IncrementCommandAttemptRequest$outboundSchema: z.ZodType; export declare function incrementCommandAttemptRequestToJSON(incrementCommandAttemptRequest: IncrementCommandAttemptRequest): string; //# sourceMappingURL=incrementcommandattempt.d.ts.map