import { NextResponse } from 'next/server'; import { withAuth, withPermission } from '@/lib/api/helpers'; import { parseBody } from '@/lib/api/route-helpers'; import { createNoteSchema } from '@/lib/validators/notes'; import * as notesService from '@/lib/services/notes.service'; import { errorResponse, NotFoundError } from '@/lib/errors'; export const GET = withAuth( withPermission('residential_interests', 'view', async (_req, ctx, params) => { try { const id = params.id; if (!id) throw new NotFoundError('Residential interest'); const notes = await notesService.listForEntity(ctx.portId, 'residential_interests', id); return NextResponse.json({ data: notes }); } catch (error) { return errorResponse(error); } }), ); export const POST = withAuth( withPermission('residential_interests', 'edit', async (req, ctx, params) => { try { const id = params.id; if (!id) throw new NotFoundError('Residential interest'); const body = await parseBody(req, createNoteSchema); const note = await notesService.create( ctx.portId, 'residential_interests', id, ctx.userId, body, ); return NextResponse.json({ data: note }, { status: 201 }); } catch (error) { return errorResponse(error); } }), );