import * as z from "zod/v4"; import { ClosedEnum } from "../../types/enums.js"; export type GetReleaseGlobals = { /** * Workspace name. Platform API keys already select a workspace; other authentication methods can configure it once on the SDK client. */ workspace?: string | undefined; }; export declare const GetReleaseInclude: { readonly Project: "project"; readonly Rollout: "rollout"; readonly CreatedBy: "createdBy"; }; export type GetReleaseInclude = ClosedEnum; export type GetReleaseRequest = { /** * Unique identifier for the release. */ id: string; /** * Optional fields to include: project, rollout */ include?: Array | undefined; }; /** @internal */ export declare const GetReleaseInclude$outboundSchema: z.ZodEnum; /** @internal */ export type GetReleaseRequest$Outbound = { id: string; include?: Array | undefined; }; /** @internal */ export declare const GetReleaseRequest$outboundSchema: z.ZodType; export declare function getReleaseRequestToJSON(getReleaseRequest: GetReleaseRequest): string; //# sourceMappingURL=getrelease.d.ts.map