import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * A partial update. Every field is optional; an omitted field is left * * @remarks * unchanged. */ export type PatchRepoRequest = { description?: string | undefined; name?: string | undefined; }; /** @internal */ export declare const PatchRepoRequest$inboundSchema: z.ZodType; /** @internal */ export type PatchRepoRequest$Outbound = { description?: string | undefined; name?: string | undefined; }; /** @internal */ export declare const PatchRepoRequest$outboundSchema: z.ZodType; export declare function patchRepoRequestToJSON(patchRepoRequest: PatchRepoRequest): string; export declare function patchRepoRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=patchreporequest.d.ts.map