chore: remove unused cache files (#5700)

This commit is contained in:
Matti Nannt
2025-05-07 15:26:13 +02:00
committed by GitHub
parent 07e9a7c007
commit b338c6d28d
5 changed files with 0 additions and 173 deletions
-12
View File
@@ -1,12 +0,0 @@
import { type Insight } from "@prisma/client";
import { z } from "zod";
export const ZInsight = z.object({
id: z.string().cuid2(),
createdAt: z.date(),
updatedAt: z.date(),
environmentId: z.string().cuid2(),
title: z.string(),
description: z.string(),
category: z.enum(["featureRequest", "complaint", "praise", "other"]),
}) satisfies z.ZodType<Insight>;