From 051eeae8ec166317a6552da9ed77847e2db255b2 Mon Sep 17 00:00:00 2001 From: Tanmay Deep Sharma Date: Thu, 6 Nov 2025 19:39:15 +0530 Subject: [PATCH] update pricing plan credits and topup --- .../app/services/enterprise/billing/v2/plan_catalog.rb | 6 +++--- .../app/services/enterprise/billing/v2/topup_catalog.rb | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/enterprise/app/services/enterprise/billing/v2/plan_catalog.rb b/enterprise/app/services/enterprise/billing/v2/plan_catalog.rb index 50f38d4a0..c0d9583df 100644 --- a/enterprise/app/services/enterprise/billing/v2/plan_catalog.rb +++ b/enterprise/app/services/enterprise/billing/v2/plan_catalog.rb @@ -15,7 +15,7 @@ module Enterprise::Billing::V2::PlanCatalog key: :startup, display_name: 'Chatwoot Startup', base_fee: 19.0, - monthly_credits: 10_000, + monthly_credits: 300, config_key: 'STRIPE_STARTUP_PLAN_ID', licensed_item_lookup_key: 'chatwoot_startup_license_fee_v2' }, @@ -23,7 +23,7 @@ module Enterprise::Billing::V2::PlanCatalog key: :business, display_name: 'Chatwoot Business', base_fee: 39.0, - monthly_credits: 50_000, + monthly_credits: 500, config_key: 'STRIPE_BUSINESS_PLAN_ID', licensed_item_lookup_key: 'chatwoot_business_license_fee_v2' }, @@ -31,7 +31,7 @@ module Enterprise::Billing::V2::PlanCatalog key: :enterprise, display_name: 'Chatwoot Enterprise', base_fee: 99.0, - monthly_credits: 200_000, + monthly_credits: 800, config_key: 'STRIPE_ENTERPRISE_PLAN_ID', licensed_item_lookup_key: 'chatwoot_enterprise_license_fee_v2' } diff --git a/enterprise/app/services/enterprise/billing/v2/topup_catalog.rb b/enterprise/app/services/enterprise/billing/v2/topup_catalog.rb index c840fb1af..1106a15ed 100644 --- a/enterprise/app/services/enterprise/billing/v2/topup_catalog.rb +++ b/enterprise/app/services/enterprise/billing/v2/topup_catalog.rb @@ -1,9 +1,9 @@ module Enterprise::Billing::V2::TopupCatalog DEFAULT_TOPUPS = [ - { credits: 100, amount: 5.0 }, - { credits: 400, amount: 10.0 }, { credits: 1000, amount: 20.0 }, - { credits: 5000, amount: 50.0 } + { credits: 2000, amount: 40.0 }, + { credits: 3000, amount: 60.0 }, + { credits: 4000, amount: 80.0 } ].freeze module_function