import * as z from "zod/v4"; export type GetProjectActiveReleaseGlobals = { /** * 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 GetProjectActiveReleaseRequest = { /** * Project ID or name. */ idOrName: string; /** * Optional deployment ID to check for pinned release */ deploymentId?: string | undefined; }; /** @internal */ export type GetProjectActiveReleaseRequest$Outbound = { idOrName: string; deploymentId?: string | undefined; }; /** @internal */ export declare const GetProjectActiveReleaseRequest$outboundSchema: z.ZodType; export declare function getProjectActiveReleaseRequestToJSON(getProjectActiveReleaseRequest: GetProjectActiveReleaseRequest): string; //# sourceMappingURL=getprojectactiverelease.d.ts.map