import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Public operation request. It deliberately has no credential or path field. */ export type GitHubReadCloneRequest = { assignmentGeneration: number; repositoryId: number; owner: string; repository: string; baseSha: string; }; /** @internal */ export declare const GitHubReadCloneRequest$inboundSchema: z.ZodType; /** @internal */ export type GitHubReadCloneRequest$Outbound = { assignment_generation: number; repository_id: number; owner: string; repository: string; base_sha: string; }; /** @internal */ export declare const GitHubReadCloneRequest$outboundSchema: z.ZodType; export declare function gitHubReadCloneRequestToJSON(gitHubReadCloneRequest: GitHubReadCloneRequest): string; export declare function gitHubReadCloneRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=githubreadclonerequest.d.ts.map