Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(web): update billing plans #6652

Merged
merged 6 commits into from
Oct 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading