update pricing plan credits and topup

This commit is contained in:
Tanmay Deep Sharma
2025-11-06 19:39:15 +05:30
parent d51cea9d6b
commit 051eeae8ec
2 changed files with 6 additions and 6 deletions
@@ -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'
}
@@ -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