import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Repo = { createdAt: Date; description: string; /** * Opaque, stable repository id (the canonical key; not a user label). */ id: string; /** * The repository name (URL label). */ name: string; /** * The organization URL slug the repository belongs to. */ org: string; }; /** @internal */ export declare const Repo$inboundSchema: z.ZodType; /** @internal */ export type Repo$Outbound = { created_at: string; description: string; id: string; name: string; org: string; }; /** @internal */ export declare const Repo$outboundSchema: z.ZodType; export declare function repoToJSON(repo: Repo): string; export declare function repoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=repo.d.ts.map