// Update the tenant's company/tax details. Proxies PATCH // /tenants/:slug/billing-info (narrow — billingInfo only); platform-api // enforces tenant membership. import { getUserSession } from 'nuxt-oidc-auth/runtime/server/utils/session.js' export default defineEventHandler(async (event) => { const session = await getUserSession(event).catch(() => null) const accessToken = (session as { accessToken?: string } | null)?.accessToken if (!accessToken) { throw createError({ statusCode: 401, statusMessage: 'Not signed in' }) } const slug = getRouterParam(event, 'slug') const body = await readBody(event) const base = process.env.PLATFORM_API_INTERNAL_URL ?? 'http://platform-api:3001' return $fetch(`${base}/tenants/${slug}/billing-info`, { method: 'PATCH', headers: { Authorization: `Bearer ${accessToken}` }, body, }) })