import * as z from "zod/v4"; import * as models from "../index.js"; export type UpdateCommandGlobals = { /** * 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 UpdateCommandRequest = { /** * Unique identifier for the command. */ id: string; updateCommandRequest?: models.UpdateCommandRequest | undefined; }; /** @internal */ export type UpdateCommandRequest$Outbound = { id: string; UpdateCommandRequest?: models.UpdateCommandRequest$Outbound | undefined; }; /** @internal */ export declare const UpdateCommandRequest$outboundSchema: z.ZodType; export declare function updateCommandRequestToJSON(updateCommandRequest: UpdateCommandRequest): string; //# sourceMappingURL=updatecommand.d.ts.map