import * as z from "zod/v4"; export type SetDeploymentReleaseChannelGlobals = { /** * 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 SetDeploymentReleaseChannelRequestBody = { channel: string; }; export type SetDeploymentReleaseChannelRequest = { /** * Unique identifier for the deployment. */ id: string; requestBody?: SetDeploymentReleaseChannelRequestBody | undefined; }; /** @internal */ export type SetDeploymentReleaseChannelRequestBody$Outbound = { channel: string; }; /** @internal */ export declare const SetDeploymentReleaseChannelRequestBody$outboundSchema: z.ZodType; export declare function setDeploymentReleaseChannelRequestBodyToJSON(setDeploymentReleaseChannelRequestBody: SetDeploymentReleaseChannelRequestBody): string; /** @internal */ export type SetDeploymentReleaseChannelRequest$Outbound = { id: string; RequestBody?: SetDeploymentReleaseChannelRequestBody$Outbound | undefined; }; /** @internal */ export declare const SetDeploymentReleaseChannelRequest$outboundSchema: z.ZodType; export declare function setDeploymentReleaseChannelRequestToJSON(setDeploymentReleaseChannelRequest: SetDeploymentReleaseChannelRequest): string; //# sourceMappingURL=setdeploymentreleasechannel.d.ts.map