import { NextResponse } from 'next/server'; import { withAuth, withPermission } from '@/lib/api/helpers'; import { parseBody } from '@/lib/api/route-helpers'; import { errorResponse } from '@/lib/errors'; import { clearInterestOutcome, setInterestOutcome } from '@/lib/services/interests.service'; import { clearOutcomeSchema, setOutcomeSchema } from '@/lib/validators/interests'; export const POST = withAuth( withPermission('interests', 'change_stage', async (req, ctx, params) => { try { const body = await parseBody(req, setOutcomeSchema); const result = await setInterestOutcome(params.id!, ctx.portId, body, { userId: ctx.userId, portId: ctx.portId, ipAddress: ctx.ipAddress, userAgent: ctx.userAgent, }); return NextResponse.json({ data: result }); } catch (error) { return errorResponse(error); } }), ); export const DELETE = withAuth( withPermission('interests', 'change_stage', async (req, ctx, params) => { try { const body = await parseBody(req, clearOutcomeSchema); const result = await clearInterestOutcome(params.id!, ctx.portId, body, { userId: ctx.userId, portId: ctx.portId, ipAddress: ctx.ipAddress, userAgent: ctx.userAgent, }); return NextResponse.json({ data: result }); } catch (error) { return errorResponse(error); } }), );