57 lines
1.8 KiB
TypeScript
57 lines
1.8 KiB
TypeScript
import type { NextApiRequest } from "next";
|
|
|
|
import { defaultResponder } from "@calcom/lib/server";
|
|
|
|
import { schemaBookingEditBodyParams, schemaBookingReadPublic } from "@lib/validations/booking";
|
|
import { schemaQueryIdParseInt } from "@lib/validations/shared/queryIdTransformParseInt";
|
|
|
|
/**
|
|
* @swagger
|
|
* /bookings/{id}:
|
|
* patch:
|
|
* summary: Edit an existing booking
|
|
* operationId: editBookingById
|
|
* requestBody:
|
|
* description: Edit an existing booking related to one of your event-types
|
|
* required: true
|
|
* content:
|
|
* application/json:
|
|
* schema:
|
|
* type: object
|
|
* properties:
|
|
* title:
|
|
* type: string
|
|
* example: 15min
|
|
* startTime:
|
|
* type: string
|
|
* example: 1970-01-01T17:00:00.000Z
|
|
* endTime:
|
|
* type: string
|
|
* example: 1970-01-01T17:00:00.000Z
|
|
* parameters:
|
|
* - in: path
|
|
* name: id
|
|
* schema:
|
|
* type: integer
|
|
* required: true
|
|
* description: ID of the booking to edit
|
|
* tags:
|
|
* - bookings
|
|
* responses:
|
|
* 201:
|
|
* description: OK, booking edited successfuly
|
|
* 400:
|
|
* description: Bad request. Booking body is invalid.
|
|
* 401:
|
|
* description: Authorization information is missing or invalid.
|
|
*/
|
|
export async function patchHandler(req: NextApiRequest) {
|
|
const { prisma, query, body } = req;
|
|
const { id } = schemaQueryIdParseInt.parse(query);
|
|
const data = schemaBookingEditBodyParams.parse(body);
|
|
const booking = await prisma.booking.update({ where: { id }, data });
|
|
return { booking: schemaBookingReadPublic.parse(booking) };
|
|
}
|
|
|
|
export default defaultResponder(patchHandler);
|