Expose project revision timeline

This commit is contained in:
Julian Appel 2026-07-25 21:57:03 +02:00
parent 4b47bc2bcc
commit 5a0c9019af
14 changed files with 365 additions and 8 deletions

View file

@ -0,0 +1,8 @@
import { z } from "zod";
export const listProjectRevisionsQuerySchema = z
.object({
limit: z.coerce.number().int().min(1).max(100).default(25),
beforeRevision: z.coerce.number().int().positive().optional(),
})
.strict();