From 569ffc9a82686c9d742e10c14732842a6824ef55 Mon Sep 17 00:00:00 2001 From: Artem Niehrieiev Date: Fri, 11 Sep 2026 13:04:13 +0000 Subject: [PATCH] feat: add SITENOVA_PAID_PLAN to subscription levels with detailed comments --- backend/src/enums/subscription-level.enum.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/backend/src/enums/subscription-level.enum.ts b/backend/src/enums/subscription-level.enum.ts index e87274812..ef061c127 100644 --- a/backend/src/enums/subscription-level.enum.ts +++ b/backend/src/enums/subscription-level.enum.ts @@ -4,4 +4,7 @@ export enum SubscriptionLevelEnum { ENTERPRISE_PLAN = 'ENTERPRISE_PLAN', ANNUAL_TEAM_PLAN = 'ANNUAL_TEAM_PLAN', ANNUAL_ENTERPRISE_PLAN = 'ANNUAL_ENTERPRISE_PLAN', + // SiteNova paid plan (saas plan 38): flat price + metered token overage. Reported by saas like the + // others; every `=== FREE_PLAN` check here treats it as paid. + SITENOVA_PAID_PLAN = 'SITENOVA_PAID_PLAN', }