e11f70b347
* refactor: optimize page loading and data fetching * fix: resolve recurring production runtime errors * feat: add MCP company and customer updates * fix: handle year-end tax adjustments * feat: harden annual report compliance * fix: expand invoice logo and font support * fix: sanitize API route error responses * fix: sanitize user-facing error messages * feat: persist onboarding and tax assessment notices * fix: reduce cloud backup audit churn * feat: refine invoice editor layout * fix: show saved tax adjustments in INK2 * fix: complete annual report API mappings * docs: record operational safeguards and decisions * fix: harden annual report review findings * fix: adjust column span for description based on VAT registration * New css class name
51 lines
1.7 KiB
TypeScript
51 lines
1.7 KiB
TypeScript
import { NextResponse } from 'next/server'
|
|
import { withRouteContext } from '@/lib/api/with-route-context'
|
|
import { evaluateMappingRules } from '@/lib/bookkeeping/mapping-engine'
|
|
import { validateBody } from '@/lib/api/validate'
|
|
import { EvaluateMappingRulesSchema } from '@/lib/api/schemas'
|
|
import type { Transaction } from '@/types'
|
|
import { getErrorMessage as getUserErrorMessage } from '@/lib/errors/get-error-message'
|
|
|
|
export const POST = withRouteContext('mapping_rules.evaluate', async (request, ctx) => {
|
|
const { supabase, companyId, log } = ctx
|
|
|
|
const validation = await validateBody(request, EvaluateMappingRulesSchema, {
|
|
log,
|
|
operation: 'mapping_rules.evaluate',
|
|
})
|
|
if (!validation.success) return validation.response
|
|
const body = validation.data
|
|
|
|
// Accept either a transaction ID or raw transaction data
|
|
let transaction: Transaction
|
|
|
|
if ('transaction_id' in body) {
|
|
const { data, error } = await supabase
|
|
.from('transactions')
|
|
.select('*')
|
|
.eq('id', body.transaction_id)
|
|
.eq('company_id', companyId)
|
|
.single()
|
|
|
|
if (error || !data) {
|
|
return NextResponse.json({ error: 'Transaction not found' }, { status: 404 })
|
|
}
|
|
|
|
transaction = data as Transaction
|
|
} else {
|
|
// Schema-validated (amount required, passthrough for optional signal
|
|
// fields) — the mapping engine only reads the fields it knows.
|
|
transaction = body as unknown as Transaction
|
|
}
|
|
|
|
try {
|
|
const result = await evaluateMappingRules(supabase, companyId, transaction)
|
|
return NextResponse.json({ data: result })
|
|
} catch (err) {
|
|
return NextResponse.json(
|
|
{ error: err instanceof Error ? getUserErrorMessage(err) : 'Evaluation failed' },
|
|
{ status: 500 }
|
|
)
|
|
}
|
|
})
|