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