import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CreateRepoRequest = { description?: string | undefined; /** * The repository name. Must start with an alphanumeric character and * * @remarks * be ≤100 characters of `[A-Za-z0-9._-]`. */ name: string; }; /** @internal */ export declare const CreateRepoRequest$inboundSchema: z.ZodType; /** @internal */ export type CreateRepoRequest$Outbound = { description?: string | undefined; name: string; }; /** @internal */ export declare const CreateRepoRequest$outboundSchema: z.ZodType; export declare function createRepoRequestToJSON(createRepoRequest: CreateRepoRequest): string; export declare function createRepoRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createreporequest.d.ts.map