import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type PatchRepoRequest = { /** * The organization URL slug. */ org: string; /** * The repository name (URL label). */ name: string; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; patchRepoRequest: components.PatchRepoRequest; }; /** @internal */ export declare const PatchRepoRequest$inboundSchema: z.ZodType; /** @internal */ export type PatchRepoRequest$Outbound = { org: string; name: string; "X-On-Behalf-Of"?: string | undefined; PatchRepoRequest: components.PatchRepoRequest$Outbound; }; /** @internal */ export declare const PatchRepoRequest$outboundSchema: z.ZodType; export declare function patchRepoRequestToJSON(patchRepoRequest: PatchRepoRequest): string; export declare function patchRepoRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=patchrepo.d.ts.map