GenerAI / worldmonitor /convex /lib /entitlements.ts
amogaddy's picture
Fix build: ripristinate blog-site/tests/e2e/pro-test/convex (referenziate dagli script di build) (part 2)
97ee7cb verified
Raw
History Blame Contribute Delete
808 Bytes
/**
* Plan-to-features resolution.
*
* Features are defined in the canonical product catalog
* (convex/config/productCatalog.ts). This module re-exports the type
* and lookup function for backward compatibility.
*/
import {
type PlanFeatures,
getEntitlementFeatures,
PRODUCT_CATALOG,
} from "../config/productCatalog";
export type { PlanFeatures };
/** Free tier defaults — used as fallback for unknown plan keys. */
export const FREE_FEATURES: PlanFeatures = PRODUCT_CATALOG.free!.features;
/**
* Returns the feature set for a given plan key.
* Throws on unrecognized keys so misconfigured products fail loudly
* instead of silently downgrading paid users to free tier.
*/
export function getFeaturesForPlan(planKey: string): PlanFeatures {
return getEntitlementFeatures(planKey);
}