From efafe40b271603287775fcbaa642db41b34ebe64 Mon Sep 17 00:00:00 2001 From: Alessandro Magionami Date: Mon, 7 Apr 2025 17:38:40 +0200 Subject: [PATCH] chore(shared): remove history limits from pro plan --- packages/shared/src/workspaces/helpers/features.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/shared/src/workspaces/helpers/features.ts b/packages/shared/src/workspaces/helpers/features.ts index 1cf29408e..06727f38d 100644 --- a/packages/shared/src/workspaces/helpers/features.ts +++ b/packages/shared/src/workspaces/helpers/features.ts @@ -148,7 +148,7 @@ export const WorkspacePaidPlanConfigs: { limits: { projectCount: 5, modelCount: 25, - versionsHistory: { value: 1, unit: 'week' } + versionsHistory: { value: 30, unit: 'day' } } }, [PaidWorkspacePlans.TeamUnlimited]: { @@ -157,7 +157,7 @@ export const WorkspacePaidPlanConfigs: { limits: { projectCount: null, modelCount: null, - versionsHistory: { value: 1, unit: 'week' } + versionsHistory: { value: 30, unit: 'day' } } }, [PaidWorkspacePlans.Pro]: { @@ -166,7 +166,7 @@ export const WorkspacePaidPlanConfigs: { limits: { projectCount: 10, modelCount: 50, - versionsHistory: { value: 30, unit: 'day' } + versionsHistory: null } }, [PaidWorkspacePlans.ProUnlimited]: { @@ -175,7 +175,7 @@ export const WorkspacePaidPlanConfigs: { limits: { projectCount: null, modelCount: null, - versionsHistory: { value: 30, unit: 'day' } + versionsHistory: null } } }