-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpricing-plans.js
More file actions
263 lines (260 loc) · 6.37 KB
/
pricing-plans.js
File metadata and controls
263 lines (260 loc) · 6.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
const PLANS = {
// FREE TIER
free: {
title: 'Free',
linkText: 'Start Building',
linkUrl: 'https://dashboard.novu.co/auth/sign-up?utm_campaign=ws_pricing_table_free',
linkTarget: '_blank',
common: {},
platform: {
monthlyCost: 'Free',
annualCost: 'Free',
events: '10k',
additionalEvents: false,
environments: false,
channels: true,
subscribers: 'Unlimited',
subscriberManagement: true,
topicManagement: true,
workflows: '20',
feedRetention: '24 hours',
delay: '24 hours',
digest: '24 hours',
stepControl: true,
blockEmailEditor: true,
layouts: true,
branding: false,
translations: false,
},
inbox: {
snoozeMaxDuration: 'Up to 24 hours',
inboxComponent: true,
preferencesComponent: true,
inboxFeedRetention: '30 days',
},
account: {
teamMembers: '3',
rbac: false,
standardSAML: true,
customSAML: false,
local: true,
mfa: true,
},
compliance: {
gdpr: true,
soc2: false,
hipaa: false,
customSOC: false,
dpa: 'Standard',
dataResidency: true,
},
},
// PRO TIER
pro: {
title: 'Pro',
linkText: 'Try Now',
linkUrl: 'https://dashboard.novu.co/auth/sign-up?utm_campaign=ws_pricing_table_pro',
linkTarget: '_blank',
common: {},
platform: {
monthlyCost: 'From $30',
annualCost: 'From $330',
events: '30k',
additionalEvents: '$1.20 per 1,000',
environments: false,
channels: true,
subscribers: 'Unlimited',
subscriberManagement: true,
topicManagement: true,
workflows: '20',
feedRetention: '7 days',
delay: '7 days',
digest: '7 days',
stepControl: true,
blockEmailEditor: true,
layouts: true,
branding: true,
translations: false,
},
inbox: {
snoozeMaxDuration: 'Up to 90 days',
inboxComponent: true,
preferencesComponent: true,
inboxFeedRetention: '90 days',
},
account: {
teamMembers: '3',
rbac: false,
standardSAML: true,
customSAML: false,
local: true,
mfa: true,
},
compliance: {
gdpr: true,
soc2: false,
hipaa: false,
customSOC: false,
dpa: 'Standard',
dataResidency: true,
},
},
// Team TIER
team: {
title: 'Team',
linkText: 'Get Started',
linkUrl: 'https://dashboard.novu.co/auth/sign-up?utm_campaign=ws_pricing_table_team',
linkTarget: '_blank',
common: {},
platform: {
monthlyCost: 'From $250',
annualCost: 'From $2,700',
events: '250k',
additionalEvents: '$1.20 per 1,000',
environments: true,
channels: true,
subscribers: 'Unlimited',
subscriberManagement: true,
topicManagement: true,
workflows: 'Unlimited',
feedRetention: '90 days',
delay: '90 days',
digest: '90 days',
blockEmailEditor: true,
layouts: true,
branding: true,
translations: true,
},
inbox: {
snoozeMaxDuration: 'Up to 90 days',
inboxComponent: true,
preferencesComponent: true,
inboxFeedRetention: '90 days',
},
account: {
teamMembers: 'Unlimited',
rbac: true,
standardSAML: true,
customSAML: false,
local: true,
mfa: true,
},
compliance: {
gdpr: true,
soc2: true,
hipaa: false,
customSOC: false,
dpa: 'Standard',
dataResidency: true,
},
},
// ENTERPRISE TIER
enterprise: {
title: 'Enterprise',
linkText: 'Contact Us',
linkUrl: 'https://novu.co/contact-us/?utm_campaign=ws_pricing_table_enterprise',
linkTarget: '_blank',
common: {},
platform: {
monthlyCost: 'Contact Us',
annualCost: 'Contact Us',
events: '5 million',
additionalEvents: 'Custom',
environments: true,
channels: true,
subscribers: 'Unlimited',
subscriberManagement: true,
topicManagement: true,
workflows: 'Unlimited',
feedRetention: 'Custom',
delay: 'Custom',
digest: 'Custom',
blockEmailEditor: true,
layouts: true,
branding: true,
translations: true,
},
inbox: {
snoozeMaxDuration: 'Custom',
inboxComponent: true,
preferencesComponent: true,
inboxFeedRetention: 'Custom',
},
account: {
teamMembers: 'Unlimited',
rbac: true,
standardSAML: true,
customSAML: true,
local: true,
mfa: true,
},
compliance: {
gdpr: true,
soc2: true,
hipaa: true,
customSOC: true,
dpa: 'Custom',
dataResidency: true,
},
},
};
const LABELS = [
{
title: '',
items: {},
},
{
title: 'Platform',
items: {
monthlyCost: 'Monthly Cost',
annualCost: 'Annual Cost',
events: 'Included monthly events',
additionalEvents: 'Additional events',
environments: 'Custom Environments',
channels: 'Multiple delivery channels',
subscribers: 'Notification Subscribers',
subscriberManagement: 'Subscriber management',
topicManagement: 'Topic management',
workflows: 'Maximum Workflows',
feedRetention: 'Activity Feed retention',
delay: 'Maximum Delay Window',
digest: 'Maximum Digest Window',
blockEmailEditor: 'Block-based email editor',
layouts: 'Email layouts',
branding: 'Remove Novu branding',
translations: 'Translations',
},
},
{
title: 'Inbox',
items: {
snoozeMaxDuration: 'Snooze max duration',
inboxComponent: 'Inbox component',
preferencesComponent: 'User preferences component',
inboxFeedRetention: 'Inbox feed retention',
},
},
{
title: 'Administration & Security',
items: {
teamMembers: 'Maximum team members',
rbac: 'Role-Based Access Control (RBAC)',
standardSAML: 'Standard SAML authentication (Google, GitHub)',
customSAML: 'Custom SAML SSO, OIDC enterprise providers',
local: 'Built-In authentication',
mfa: 'Multi-Factor Authentication (MFA)',
},
},
{
title: 'Compliance',
items: {
gdpr: 'GDPR',
soc2: 'SOC 2 / ISO 27001 Report',
hipaa: 'HIPAA BAA',
customSOC: 'Custom security reviews',
dpa: 'Data Processing Agreements (DPA)',
dataResidency: 'EU or US Data-residency',
},
},
];
export { LABELS, PLANS };