source: src/app/api/customers/[id]/route.ts@ 5d6f37a

main
Last change on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 848 bytes
Line 
1import { NextRequest, NextResponse } from 'next/server';
2import { customerSchema } from 'mvpmasters-shared';
3import prisma from 'src/lib/prisma';
4import { authenticateRequest } from 'src/lib/auth-middleware';
5
6export async function PATCH(request: NextRequest, { params }: { params: { id: string } }) {
7 try {
8 const userId = await authenticateRequest(request);
9 if (!userId) {
10 return NextResponse.json({ error: 'Unauthorized' }, { status: 401 });
11 }
12
13 const body = await request.json();
14 const validatedData = customerSchema.partial().parse(body);
15
16 const customer = await prisma.customer.update({
17 where: { id: params.id, userId },
18 data: validatedData,
19 });
20
21 return NextResponse.json(customer);
22 } catch (error) {
23 return NextResponse.json({ error: 'Internal Server Error' }, { status: 500 });
24 }
25}
Note: See TracBrowser for help on using the repository browser.