Skip to content

Commit

Permalink
feat(web): update billing plans (#6652)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChmaraX authored Oct 8, 2024
1 parent 644c6f6 commit 76726a0
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .source
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { IsDefined, IsEnum, IsOptional, IsString } from 'class-validator';

import { JobTitleEnum, ProductUseCases } from '@novu/shared';
import { JobTitleEnum } from '@novu/shared';

import { AuthenticatedCommand } from '../../../shared/commands/authenticated.command';

Expand Down
12 changes: 6 additions & 6 deletions apps/web/src/ee/billing/components/billingV2/Features.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,9 @@ const features: Feature[] = [
label: 'Activity retention',
isContrast: false,
values: {
[SupportedPlansEnum.FREE]: { value: <Badge label="Coming soon" /> },
[SupportedPlansEnum.BUSINESS]: { value: <Badge label="Coming soon" /> },
[SupportedPlansEnum.ENTERPRISE]: { value: <Badge label="Coming soon" /> },
[SupportedPlansEnum.FREE]: { value: '30 days' },
[SupportedPlansEnum.BUSINESS]: { value: '90 days' },
[SupportedPlansEnum.ENTERPRISE]: { value: 'Unlimited' },
},
},
{
Expand Down Expand Up @@ -219,9 +219,9 @@ const features: Feature[] = [
label: 'Team members',
isContrast: true,
values: {
[SupportedPlansEnum.FREE]: { value: <Badge label="Coming soon" /> },
[SupportedPlansEnum.BUSINESS]: { value: <Badge label="Coming soon" /> },
[SupportedPlansEnum.ENTERPRISE]: { value: <Badge label="Coming soon" /> },
[SupportedPlansEnum.FREE]: { value: '3' },
[SupportedPlansEnum.BUSINESS]: { value: '50' },
[SupportedPlansEnum.ENTERPRISE]: { value: 'Unlimited' },
},
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,19 +27,18 @@ type PlanHighlights = {
const highlights: PlanHighlights = {
[ApiServiceLevelEnum.FREE]: [
{ text: 'Up to 30,000 events per month' },
{ text: '3 teammates' },
{ text: '7 days activity feed' },
{ text: '3 teammates', badgeLabel: 'Coming soon' },
],
[ApiServiceLevelEnum.BUSINESS]: [
{ text: 'Up to 250,000 events per month' },
{ text: '90 days activity feed', badgeLabel: 'Coming soon' },
{ text: '50 teammates', badgeLabel: 'Coming soon' },
{ text: '50 teammates' },
{ text: '90 days activity feed' },
{ text: 'RBAC', badgeLabel: 'Coming soon' },
],
[ApiServiceLevelEnum.ENTERPRISE]: [
{ text: 'Up to 5,000,000 events per month' },
{ text: 'Custom time activity feed', badgeLabel: 'Coming soon' },
{ text: 'Unlimited teammates', badgeLabel: 'Coming soon' },
{ text: 'Unlimited teammates' },
{ text: 'SAML SSO' },
{ text: 'RBAC', badgeLabel: 'Coming soon' },
],
Expand Down

0 comments on commit 76726a0

Please sign in to comment.