import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type RetryDeploymentGlobals = { /** * 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 RetryDeploymentRequest = { /** * Unique identifier for the deployment. */ id: string; }; /** * Deployment retry enqueued successfully. */ export type RetryDeploymentResponse = { message: string; }; /** @internal */ export type RetryDeploymentRequest$Outbound = { id: string; }; /** @internal */ export declare const RetryDeploymentRequest$outboundSchema: z.ZodType; export declare function retryDeploymentRequestToJSON(retryDeploymentRequest: RetryDeploymentRequest): string; /** @internal */ export declare const RetryDeploymentResponse$inboundSchema: z.ZodType; export declare function retryDeploymentResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=retrydeployment.d.ts.map