@@ -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 ,
@@ -67,6 +68,7 @@ export const starterV1Plan: PlanDefinition = {
6768 trial_expired : null ,
6869 has_webhooks_script : false ,
6970 has_webhooks_forward : false ,
71+ has_rbac : false ,
7072 can_override_docs_connect_url : false ,
7173 can_customize_connect_ui_theme : false ,
7274 can_disable_connect_ui_watermark : false
@@ -105,6 +107,7 @@ export const growthV1Plan: PlanDefinition = {
105107 trial_expired : null ,
106108 has_webhooks_script : true ,
107109 has_webhooks_forward : true ,
110+ has_rbac : true ,
108111 can_override_docs_connect_url : false ,
109112 can_customize_connect_ui_theme : true ,
110113 can_disable_connect_ui_watermark : true
@@ -170,6 +173,7 @@ export const enterprisePlan: PlanDefinition = {
170173 trial_expired : null ,
171174 has_webhooks_script : true ,
172175 has_webhooks_forward : true ,
176+ has_rbac : true ,
173177 can_override_docs_connect_url : false ,
174178 can_customize_connect_ui_theme : true ,
175179 can_disable_connect_ui_watermark : true
@@ -208,6 +212,7 @@ export const starterLegacyPlan: PlanDefinition = {
208212 trial_expired : null ,
209213 has_webhooks_script : true ,
210214 has_webhooks_forward : true ,
215+ has_rbac : false ,
211216 can_override_docs_connect_url : false ,
212217 can_customize_connect_ui_theme : false ,
213218 can_disable_connect_ui_watermark : false
@@ -245,6 +250,7 @@ export const scaleLegacyPlan: PlanDefinition = {
245250 trial_expired : null ,
246251 has_webhooks_script : true ,
247252 has_webhooks_forward : true ,
253+ has_rbac : false ,
248254 can_override_docs_connect_url : false ,
249255 can_customize_connect_ui_theme : false ,
250256 can_disable_connect_ui_watermark : false
@@ -282,6 +288,7 @@ export const growthLegacyPlan: PlanDefinition = {
282288 trial_expired : null ,
283289 has_webhooks_script : true ,
284290 has_webhooks_forward : true ,
291+ has_rbac : false ,
285292 can_override_docs_connect_url : false ,
286293 can_customize_connect_ui_theme : true ,
287294 can_disable_connect_ui_watermark : true
0 commit comments