From 1b608c006dffa60b5a9aad05c2ead1aa1eaf7896 Mon Sep 17 00:00:00 2001 From: mykonos-ibiza <222371740+mykonos-ibiza@users.noreply.github.com> Date: Thu, 31 Jul 2025 16:09:33 +0530 Subject: [PATCH] Update Stripe yearly commitment pricing IDs in configuration - Modified the configuration file to update the Stripe pricing IDs for yearly commitment plans in the production environment. - Ensured consistency with the latest pricing structure for subscription tiers. --- backend/utils/config.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/backend/utils/config.py b/backend/utils/config.py index 4cfc6d38..dba99947 100644 --- a/backend/utils/config.py +++ b/backend/utils/config.py @@ -59,10 +59,10 @@ class Configuration: STRIPE_TIER_200_1000_YEARLY_ID_PROD: str = 'price_1ReH8qG6l1KZGqIrK1akY90q' # Yearly commitment prices - Production (15% discount, monthly payments with 12-month commitment via schedules) - STRIPE_TIER_2_17_YEARLY_COMMITMENT_ID_PROD: str = 'price_1RqYGaG6l1KZGqIrIzcdPzeQ' # $17/month - STRIPE_TIER_6_42_YEARLY_COMMITMENT_ID_PROD: str = 'price_1RqYH1G6l1KZGqIrWDKh8xIU' # $42.50/month - STRIPE_TIER_25_170_YEARLY_COMMITMENT_ID_PROD: str = 'price_1RqYHbG6l1KZGqIrAUVf8KpG' # $170/month - + STRIPE_TIER_2_17_YEARLY_COMMITMENT_ID_PROD: str = 'price_1RqtqiG6l1KZGqIrhjVPtE1s' # $17/month + STRIPE_TIER_6_42_YEARLY_COMMITMENT_ID_PROD: str = 'price_1Rqtr8G6l1KZGqIrQ0ql0qHi' # $42.50/month + STRIPE_TIER_25_170_YEARLY_COMMITMENT_ID_PROD: str = 'price_1RqtrUG6l1KZGqIrEb8hLsk3' # $170/month + # Subscription tier IDs - Staging STRIPE_FREE_TIER_ID_STAGING: str = 'price_1RIGvuG6l1KZGqIrw14abxeL' STRIPE_TIER_2_20_ID_STAGING: str = 'price_1RIGvuG6l1KZGqIrCRu0E4Gi'