import { z } from 'zod'; export const specifyRepositorySchema = z .object({ id: z.string(), name: z.string(), version: z.number(), createdAt: z.string(), updatedAt: z.string(), }) .strict(); export type SpecifyRepository = z.infer;