@@ -25,6 +25,7 @@ export const freePlan: PlanDefinition = {
2525 monthly_active_records_max : 5000 ,
2626 has_webhooks_script : true ,
2727 has_webhooks_forward : true ,
28+ has_rbac : false ,
2829 can_override_docs_connect_url : false ,
2930 can_customize_connect_ui_theme : false ,
3031 can_disable_connect_ui_watermark : false ,
@@ -66,6 +67,7 @@ export const starterV1Plan: PlanDefinition = {
6667 trial_expired : null ,
6768 has_webhooks_script : false ,
6869 has_webhooks_forward : false ,
70+ has_rbac : false ,
6971 can_override_docs_connect_url : false ,
7072 can_customize_connect_ui_theme : false ,
7173 can_disable_connect_ui_watermark : false
@@ -104,6 +106,7 @@ export const growthV1Plan: PlanDefinition = {
104106 trial_expired : null ,
105107 has_webhooks_script : true ,
106108 has_webhooks_forward : true ,
109+ has_rbac : true ,
107110 can_override_docs_connect_url : false ,
108111 can_customize_connect_ui_theme : true ,
109112 can_disable_connect_ui_watermark : true
@@ -169,6 +172,7 @@ export const enterprisePlan: PlanDefinition = {
169172 trial_expired : null ,
170173 has_webhooks_script : true ,
171174 has_webhooks_forward : true ,
175+ has_rbac : true ,
172176 can_override_docs_connect_url : false ,
173177 can_customize_connect_ui_theme : true ,
174178 can_disable_connect_ui_watermark : true
@@ -207,6 +211,7 @@ export const starterLegacyPlan: PlanDefinition = {
207211 trial_expired : null ,
208212 has_webhooks_script : true ,
209213 has_webhooks_forward : true ,
214+ has_rbac : false ,
210215 can_override_docs_connect_url : false ,
211216 can_customize_connect_ui_theme : false ,
212217 can_disable_connect_ui_watermark : false
@@ -244,6 +249,7 @@ export const scaleLegacyPlan: PlanDefinition = {
244249 trial_expired : null ,
245250 has_webhooks_script : true ,
246251 has_webhooks_forward : true ,
252+ has_rbac : true ,
247253 can_override_docs_connect_url : false ,
248254 can_customize_connect_ui_theme : false ,
249255 can_disable_connect_ui_watermark : false
@@ -281,6 +287,7 @@ export const growthLegacyPlan: PlanDefinition = {
281287 trial_expired : null ,
282288 has_webhooks_script : true ,
283289 has_webhooks_forward : true ,
290+ has_rbac : true ,
284291 can_override_docs_connect_url : false ,
285292 can_customize_connect_ui_theme : true ,
286293 can_disable_connect_ui_watermark : true
0 commit comments