import * as z from "zod/v4"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type ReleaseChannel = { /** * Unique identifier for the workspace. */ workspaceId: string; /** * Unique identifier for the project. */ projectId: string; name: string; /** * Unique identifier for the release. */ currentReleaseId: string | null; deploymentCount?: number | undefined; createdAt: Date; updatedAt: Date; }; /** @internal */ export declare const ReleaseChannel$inboundSchema: z.ZodType; export declare function releaseChannelFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=releasechannel.d.ts.map