/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 740c9299c1c6 */ 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 const IncrementCommandAttemptRequest$outboundSchema: z.ZodType< IncrementCommandAttemptRequest$Outbound, IncrementCommandAttemptRequest > = z.object({ id: z.string(), }); export function incrementCommandAttemptRequestToJSON( incrementCommandAttemptRequest: IncrementCommandAttemptRequest, ): string { return JSON.stringify( IncrementCommandAttemptRequest$outboundSchema.parse( incrementCommandAttemptRequest, ), ); }