import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import * as models from "../index.js"; export type ListReleaseChannelsGlobals = { /** * 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 ListReleaseChannelsRequest = { /** * Filter by project ID or name. */ project: string; }; /** * Project release channels. */ export type ListReleaseChannelsResponse = { items: Array; }; /** @internal */ export type ListReleaseChannelsRequest$Outbound = { project: string; }; /** @internal */ export declare const ListReleaseChannelsRequest$outboundSchema: z.ZodType; export declare function listReleaseChannelsRequestToJSON(listReleaseChannelsRequest: ListReleaseChannelsRequest): string; /** @internal */ export declare const ListReleaseChannelsResponse$inboundSchema: z.ZodType; export declare function listReleaseChannelsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listreleasechannels.d.ts.map