import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import * as models from "../index.js"; export type RedeployDeploymentGlobals = { /** * 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 RedeployDeploymentRequest = { /** * Unique identifier for the deployment. */ id: string; }; /** * Deployment redeployment triggered successfully. */ export type RedeployDeploymentResponse = { message: string; operation: models.DeploymentUpdateOperationSummary | null; }; /** @internal */ export type RedeployDeploymentRequest$Outbound = { id: string; }; /** @internal */ export declare const RedeployDeploymentRequest$outboundSchema: z.ZodType; export declare function redeployDeploymentRequestToJSON(redeployDeploymentRequest: RedeployDeploymentRequest): string; /** @internal */ export declare const RedeployDeploymentResponse$inboundSchema: z.ZodType; export declare function redeployDeploymentResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=redeploydeployment.d.ts.map