chore: reduce token limits for Professional and Enterprise plans

- Professional plan: reduced from 10M to 5M tokens per month
- Enterprise plan: reduced from 50M to 20M tokens per month
- Hobby (50k) and Starter (100k) remain unchanged

These limits align with the updated pricing structure from shopify-ai.
This commit is contained in:
southseact-3d
2026-02-08 13:33:32 +00:00
parent 0f631dc99a
commit 42be1781e0

View File

@@ -424,8 +424,8 @@ const PLAN_APP_LIMITS = {
const PLAN_TOKEN_LIMITS = { const PLAN_TOKEN_LIMITS = {
hobby: 50_000, hobby: 50_000,
starter: 100_000, starter: 100_000,
professional: 10_000_000, professional: 5_000_000,
enterprise: 50_000_000, enterprise: 20_000_000,
}; };
// Default token rates (price per 1M tokens in minor units/cents) // Default token rates (price per 1M tokens in minor units/cents)