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 ListReleaseAuthorsGlobals = { /** * 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 ListReleaseAuthorsRequest = { /** * Filter by project ID or name. */ project?: string | null | undefined; /** * Search authors by login or name (case-insensitive contains) */ search?: string | null | undefined; /** * Maximum number of authors to return */ limit?: number | undefined; }; /** * Retrieved distinct authors. */ export type ListReleaseAuthorsResponse = { items: Array; }; /** @internal */ export type ListReleaseAuthorsRequest$Outbound = { project?: string | null | undefined; search?: string | null | undefined; limit: number; }; /** @internal */ export declare const ListReleaseAuthorsRequest$outboundSchema: z.ZodType; export declare function listReleaseAuthorsRequestToJSON(listReleaseAuthorsRequest: ListReleaseAuthorsRequest): string; /** @internal */ export declare const ListReleaseAuthorsResponse$inboundSchema: z.ZodType; export declare function listReleaseAuthorsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listreleaseauthors.d.ts.map