From 2d55b92bddf08afa9b9ba2d118a02b7f49f3715b Mon Sep 17 00:00:00 2001 From: Adam Chmara Date: Fri, 13 Dec 2024 14:37:39 +0100 Subject: [PATCH 1/4] feat(web,dashbaord): set member limit for business tier to 50 --- .source | 2 +- apps/dashboard/src/components/billing/features.tsx | 4 ++-- apps/dashboard/src/components/billing/plans-row.tsx | 4 ++-- apps/web/src/ee/billing/components/Features.tsx | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.source b/.source index 1eaf99c1369..46689410f44 160000 --- a/.source +++ b/.source @@ -1 +1 @@ -Subproject commit 1eaf99c1369b3d2fe6eeaa062462ff6027435992 +Subproject commit 46689410f44ab7c46e601d06ec5b0e7ac2f76693 diff --git a/apps/dashboard/src/components/billing/features.tsx b/apps/dashboard/src/components/billing/features.tsx index 6baa84667fd..9413e9d4405 100644 --- a/apps/dashboard/src/components/billing/features.tsx +++ b/apps/dashboard/src/components/billing/features.tsx @@ -1,5 +1,5 @@ -import { Check } from 'lucide-react'; import { ApiServiceLevelEnum } from '@novu/shared'; +import { Check } from 'lucide-react'; import { cn } from '../../utils/ui'; enum SupportedPlansEnum { @@ -159,7 +159,7 @@ const features: Feature[] = [ label: 'Team members', values: { [SupportedPlansEnum.FREE]: { value: '3' }, - [SupportedPlansEnum.BUSINESS]: { value: '10' }, + [SupportedPlansEnum.BUSINESS]: { value: '50' }, [SupportedPlansEnum.ENTERPRISE]: { value: 'Unlimited' }, }, }, diff --git a/apps/dashboard/src/components/billing/plans-row.tsx b/apps/dashboard/src/components/billing/plans-row.tsx index d5b2d1a397d..c039962ac47 100644 --- a/apps/dashboard/src/components/billing/plans-row.tsx +++ b/apps/dashboard/src/components/billing/plans-row.tsx @@ -1,8 +1,8 @@ import { Badge } from '@/components/primitives/badge'; import { Card } from '@/components/primitives/card'; import { Check } from 'lucide-react'; -import { PlanActionButton } from './plan-action-button'; import { ContactSalesButton } from './contact-sales-button'; +import { PlanActionButton } from './plan-action-button'; interface PlansRowProps { selectedBillingInterval: 'month' | 'year'; @@ -87,7 +87,7 @@ export function PlansRow({ selectedBillingInterval, currentPlan, trial }: PlansR
  • - Up to 10 team members + Up to 50 team members
  • diff --git a/apps/web/src/ee/billing/components/Features.tsx b/apps/web/src/ee/billing/components/Features.tsx index d5c45b3f471..ba210d44059 100644 --- a/apps/web/src/ee/billing/components/Features.tsx +++ b/apps/web/src/ee/billing/components/Features.tsx @@ -194,7 +194,7 @@ const features: Feature[] = [ label: 'Team members', values: { [SupportedPlansEnum.FREE]: { value: '3' }, - [SupportedPlansEnum.BUSINESS]: { value: '10' }, + [SupportedPlansEnum.BUSINESS]: { value: '50' }, [SupportedPlansEnum.ENTERPRISE]: { value: 'Unlimited' }, }, }, From 6a13b965d6c8675d9a6e66ea67a4eef3f3e33eb9 Mon Sep 17 00:00:00 2001 From: Adam Chmara Date: Mon, 16 Dec 2024 10:32:50 +0100 Subject: [PATCH 2/4] chore: submodule --- .source | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.source b/.source index 46689410f44..14591b3e482 160000 --- a/.source +++ b/.source @@ -1 +1 @@ -Subproject commit 46689410f44ab7c46e601d06ec5b0e7ac2f76693 +Subproject commit 14591b3e48225e5291405b3f8eee7156c2ec30b2 From 6d658567a2a30149b4fb5aa9e859f538e1291cff Mon Sep 17 00:00:00 2001 From: Adam Chmara Date: Mon, 16 Dec 2024 15:05:31 +0100 Subject: [PATCH 3/4] feat(dashboard,web): set member limit to unlimited --- .source | 2 +- apps/dashboard/src/components/billing/features.tsx | 2 +- apps/dashboard/src/components/billing/highlights-row.tsx | 2 +- apps/dashboard/src/components/billing/plans-row.tsx | 2 +- apps/web/src/ee/billing/components/Features.tsx | 2 +- apps/web/src/ee/billing/components/HighlightsRow.tsx | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.source b/.source index 14591b3e482..48fd9d68670 160000 --- a/.source +++ b/.source @@ -1 +1 @@ -Subproject commit 14591b3e48225e5291405b3f8eee7156c2ec30b2 +Subproject commit 48fd9d686709e862b8577feb5ca864ca5aa26bdb diff --git a/apps/dashboard/src/components/billing/features.tsx b/apps/dashboard/src/components/billing/features.tsx index 9413e9d4405..610391e412d 100644 --- a/apps/dashboard/src/components/billing/features.tsx +++ b/apps/dashboard/src/components/billing/features.tsx @@ -159,7 +159,7 @@ const features: Feature[] = [ label: 'Team members', values: { [SupportedPlansEnum.FREE]: { value: '3' }, - [SupportedPlansEnum.BUSINESS]: { value: '50' }, + [SupportedPlansEnum.BUSINESS]: { value: 'Unlimited' }, [SupportedPlansEnum.ENTERPRISE]: { value: 'Unlimited' }, }, }, diff --git a/apps/dashboard/src/components/billing/highlights-row.tsx b/apps/dashboard/src/components/billing/highlights-row.tsx index 331673493a2..a2678384e3f 100644 --- a/apps/dashboard/src/components/billing/highlights-row.tsx +++ b/apps/dashboard/src/components/billing/highlights-row.tsx @@ -19,7 +19,7 @@ const highlights: PlanHighlights = { ], [ApiServiceLevelEnum.BUSINESS]: [ { text: 'Up to 250,000 events per month' }, - { text: '50 teammates' }, + { text: 'Unlimited teammates' }, { text: '90 days Activity Feed retention' }, ], [ApiServiceLevelEnum.ENTERPRISE]: [ diff --git a/apps/dashboard/src/components/billing/plans-row.tsx b/apps/dashboard/src/components/billing/plans-row.tsx index c039962ac47..70255b6e2d2 100644 --- a/apps/dashboard/src/components/billing/plans-row.tsx +++ b/apps/dashboard/src/components/billing/plans-row.tsx @@ -87,7 +87,7 @@ export function PlansRow({ selectedBillingInterval, currentPlan, trial }: PlansR
  • - Up to 50 team members + Unlimited team members
  • diff --git a/apps/web/src/ee/billing/components/Features.tsx b/apps/web/src/ee/billing/components/Features.tsx index ba210d44059..1acd4212608 100644 --- a/apps/web/src/ee/billing/components/Features.tsx +++ b/apps/web/src/ee/billing/components/Features.tsx @@ -194,7 +194,7 @@ const features: Feature[] = [ label: 'Team members', values: { [SupportedPlansEnum.FREE]: { value: '3' }, - [SupportedPlansEnum.BUSINESS]: { value: '50' }, + [SupportedPlansEnum.BUSINESS]: { value: 'Unlimited' }, [SupportedPlansEnum.ENTERPRISE]: { value: 'Unlimited' }, }, }, diff --git a/apps/web/src/ee/billing/components/HighlightsRow.tsx b/apps/web/src/ee/billing/components/HighlightsRow.tsx index 156aafcb721..874873f6b56 100644 --- a/apps/web/src/ee/billing/components/HighlightsRow.tsx +++ b/apps/web/src/ee/billing/components/HighlightsRow.tsx @@ -32,7 +32,7 @@ const highlights: PlanHighlights = { ], [ApiServiceLevelEnum.BUSINESS]: [ { text: 'Up to 250,000 events per month' }, - { text: '50 teammates' }, + { text: 'Unlimited teammates' }, { text: '90 days Activity Feed retention' }, ], [ApiServiceLevelEnum.ENTERPRISE]: [ From b48e3c17961495bc5a2f6825b69da967c46f9efb Mon Sep 17 00:00:00 2001 From: Adam Chmara Date: Mon, 16 Dec 2024 17:29:04 +0100 Subject: [PATCH 4/4] chore: submodule --- .source | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.source b/.source index 48fd9d68670..dfa9f193b6a 160000 --- a/.source +++ b/.source @@ -1 +1 @@ -Subproject commit 48fd9d686709e862b8577feb5ca864ca5aa26bdb +Subproject commit dfa9f193b6a312a84cc562f68080a526d401bc21