chore(shared): remove history limits from pro plan

This commit is contained in:
Alessandro Magionami
2025-04-07 17:38:40 +02:00
parent 729b2ba5f5
commit efafe40b27
@@ -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
}
}
}