import prisma from "@calcom/prisma"; import type { NextApiRequest, NextApiResponse } from "next"; import { schemaQueryIdParseInt, withValidQueryIdTransformParseInt } from "@lib/validations/shared/queryIdTransformParseInt"; type ResponseData = { message?: string; error?: unknown; }; export async function deleteBookingReference(req: NextApiRequest, res: NextApiResponse) { const { query, method } = req; const safe = await schemaQueryIdParseInt.safeParse(query); if (method === "DELETE" && safe.success && safe.data) { const bookingReference = await prisma.bookingReference .delete({ where: { id: safe.data.id } }) // We only remove the bookingReference type from the database if there's an existing resource. if (bookingReference) res.status(200).json({ message: `bookingReference with id: ${safe.data.id} deleted successfully` }); // This catches the error thrown by prisma.bookingReference.delete() if the resource is not found. else res.status(400).json({ message: `Resource with id:${safe.data.id} was not found`}); // Reject any other HTTP method than POST } else res.status(405).json({ message: "Only DELETE Method allowed" }); } export default withValidQueryIdTransformParseInt(deleteBookingReference);