Fixed uuid references in schemas.

This commit is contained in:
Mike Cao
2025-09-08 15:28:01 -07:00
parent f40e1b44f3
commit 303947fe9b
16 changed files with 36 additions and 27 deletions

View File

@@ -8,7 +8,7 @@ import { getReports, createReport } from '@/queries';
export async function GET(request: Request) {
const schema = z.object({
websiteId: z.string().uuid().optional(),
websiteId: z.uuid().optional(),
type: z.string().optional(),
...pagingParams,
});