Add Umami analytics, subscription tiers, tool-call metering
- Analytics: <Analytics /> in root layout loads umami when NEXT_PUBLIC_UMAMI_* env are set - Subscription: free/pro tiers in Postgres, daily quotas (10msg/5tool free, 1000/500 pro) - Chat route: checkAndConsume(chat_message) gate before streamText, 429 when exhausted - Tool metering: getWeather wrapped with withLimit decorator that deducts tool_call quota - Pricing page at /pricing with upgrade button - /api/billing/checkout posts to EGBE payment gateway, /api/billing/webhook verifies HMAC and upgrades user on checkout.session.completed - UsageBadge in chat header polls /api/usage every 15s - Dropped now-unused entitlements.ts
This commit is contained in:
parent
3e21c2334c
commit
22a172e92d
23 changed files with 1374 additions and 86 deletions
27
lib/subscription/config.ts
Normal file
27
lib/subscription/config.ts
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
export type Tier = "free" | "pro";
|
||||
export type LimitKey = "chat_message" | "tool_call";
|
||||
|
||||
export type TierLimits = Record<LimitKey, number>;
|
||||
|
||||
export const LIMITS: Record<Tier, TierLimits> = {
|
||||
free: {
|
||||
chat_message: 10,
|
||||
tool_call: 5,
|
||||
},
|
||||
pro: {
|
||||
chat_message: 1000,
|
||||
tool_call: 500,
|
||||
},
|
||||
};
|
||||
|
||||
export const TIER_LABELS: Record<Tier, string> = {
|
||||
free: "Free",
|
||||
pro: "Pro",
|
||||
};
|
||||
|
||||
export function todayPeriodKey(now = new Date()): string {
|
||||
const y = now.getUTCFullYear();
|
||||
const m = String(now.getUTCMonth() + 1).padStart(2, "0");
|
||||
const d = String(now.getUTCDate()).padStart(2, "0");
|
||||
return `${y}-${m}-${d}`;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue