import prisma from "@calcom/prisma"; import { Schedule } from "@calcom/prisma/client"; import type { NextApiRequest, NextApiResponse } from "next"; import { schemaSchedule, withValidSchedule } from "@lib/validations/schedule"; import { schemaQueryIdParseInt, withValidQueryIdTransformParseInt } from "@lib/validations/shared/queryIdTransformParseInt"; type ResponseData = { data?: Schedule; message?: string; error?: unknown; }; export async function editSchedule(req: NextApiRequest, res: NextApiResponse) { const { query, body, method } = req; const safeQuery = await schemaQueryIdParseInt.safeParse(query); const safeBody = await schemaSchedule.safeParse(body); if (method === "PATCH" && safeQuery.success && safeBody.success) { const data = await prisma.schedule.update({ where: { id: safeQuery.data.id }, data: safeBody.data, }) if (data) res.status(200).json({ data }); else res.status(404).json({ message: `Event type with ID ${safeQuery.data.id} not found and wasn't updated`, error }) // Reject any other HTTP method than POST } else res.status(405).json({ message: "Only PATCH Method allowed for updating schedules" }); } export default withValidQueryIdTransformParseInt(withValidSchedule(editSchedule));