Files
Epicure/apps/web/app/api/v1/admin/tiers/[tier]/route.ts
T
Arnaud c8f4b50ef3 rename: "Team" billing tier to "Family"
All literal "team" tier-value references renamed to "family" across
API routes, admin UI, OpenAPI schemas, and lib/tiers.ts. The DB enum
value itself is renamed in place via ALTER TYPE ... RENAME VALUE
(migration 0044) rather than drizzle-kit's auto-generated
drop-and-recreate-the-enum migration, which would have failed against
any existing row still holding 'team' — RENAME VALUE preserves
existing data with no cast/backfill needed.

Also adds STRIPE_PLAN.md — a full Stripe billing integration plan
(Checkout+Portal, tier→Price mapping, admin billing dashboard, and a
multi-user Family-group design since Family is meant to cover several
accounts under one subscription, not one payer). Planning only, no
Stripe code yet.

v0.47.0
2026-07-18 00:25:51 +02:00

57 lines
1.8 KiB
TypeScript

import { NextRequest, NextResponse } from "next/server";
import { requireAdmin } from "@/lib/api-auth";
import { db, tierDefinitions, auditLogs, eq } from "@epicure/db";
import { randomUUID } from "crypto";
import { UNLIMITED } from "@/lib/tiers";
interface RouteContext {
params: Promise<{ tier: string }>;
}
const NUMERIC_FIELDS = ["maxRecipes", "aiCallsPerMonth", "storageMb", "maxPublicRecipes"] as const;
type NumericField = (typeof NUMERIC_FIELDS)[number];
export async function PATCH(req: NextRequest, { params }: RouteContext) {
const { session, response } = await requireAdmin();
if (response) return response;
const { tier } = await params;
if (tier !== "free" && tier !== "pro" && tier !== "family") {
return NextResponse.json({ error: "Invalid tier" }, { status: 400 });
}
const body = (await req.json()) as Partial<Record<NumericField, number>>;
const updateData: Partial<Record<NumericField, number>> = {};
for (const field of NUMERIC_FIELDS) {
const value = body[field];
if (value === undefined) continue;
if (!Number.isInteger(value) || (value < 0 && value !== UNLIMITED)) {
return NextResponse.json({ error: `Invalid value for ${field}` }, { status: 400 });
}
updateData[field] = value;
}
const [updated] = await db
.update(tierDefinitions)
.set(updateData)
.where(eq(tierDefinitions.tier, tier))
.returning();
if (!updated) {
return NextResponse.json({ error: "Tier not found" }, { status: 404 });
}
await db.insert(auditLogs).values({
id: randomUUID(),
userId: session!.user.id,
action: "admin.tier.update",
targetType: "tier_definition",
targetId: tier,
metadata: JSON.stringify(updateData),
createdAt: new Date(),
});
return NextResponse.json({ tierDefinition: updated });
}