import prisma from "@calcom/prisma"; import { User } from "@calcom/prisma/client"; import type { NextApiRequest, NextApiResponse } from "next"; import { schemaUser, withValidUser } from "@lib/validations/user"; type ResponseData = { data?: User; message?: string; error?: string; }; async function createUser(req: NextApiRequest, res: NextApiResponse) { const { body, method } = req; if (method === "POST") { const safe = schemaUser.safeParse(body); if (safe.success && safe.data) { await prisma.user .create({ data: safe.data }) .then((user) => res.status(201).json({ data: user })) .catch((error) => res.status(400).json({ message: "Could not create user type", error: error })); } } else { // Reject any other HTTP method than POST res.status(405).json({ error: "Only POST Method allowed" }); } } export default withValidUser(createUser);