import * as z from "zod/v4"; export type GetDeploymentInputsGlobals = { /** * 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 GetDeploymentInputsRequest = { /** * Unique identifier for the deployment. */ id: string; }; /** @internal */ export type GetDeploymentInputsRequest$Outbound = { id: string; }; /** @internal */ export declare const GetDeploymentInputsRequest$outboundSchema: z.ZodType; export declare function getDeploymentInputsRequestToJSON(getDeploymentInputsRequest: GetDeploymentInputsRequest): string; //# sourceMappingURL=getdeploymentinputs.d.ts.map