feat: kitchen screen, scan dedup, gemini-3.5-flash-lite, seed grapes/beetroot/pea shoots

This commit is contained in:
Sven (AAMOS AI)
2026-08-16 20:13:49 +07:00
parent d098bf705e
commit c0a15bb1b5
20 changed files with 295 additions and 48 deletions
+6 -5
View File
@@ -24,7 +24,8 @@ export interface PlanDefinition {
googleProductId: string;
}
export const TRIAL_DAYS = 7;
export const TRIAL_DAYS = 14;
export const TRIAL_SCANS = 25;
export const PLAN_DEFINITIONS: Record<SubscriptionPlan, PlanDefinition> = {
free: {
@@ -33,7 +34,7 @@ export const PLAN_DEFINITIONS: Record<SubscriptionPlan, PlanDefinition> = {
priceMinorPerMonth: 0,
currency: "SEK",
maxHouseholdMembers: 1,
aiScansPerMonth: 10,
aiScansPerMonth: 5,
weekPlanning: false,
advancedNutrition: false,
communityPublish: false,
@@ -46,7 +47,7 @@ export const PLAN_DEFINITIONS: Record<SubscriptionPlan, PlanDefinition> = {
priceMinorPerMonth: 7900,
currency: "SEK",
maxHouseholdMembers: 3,
aiScansPerMonth: 300,
aiScansPerMonth: 100,
weekPlanning: true,
advancedNutrition: true,
communityPublish: true,
@@ -59,7 +60,7 @@ export const PLAN_DEFINITIONS: Record<SubscriptionPlan, PlanDefinition> = {
priceMinorPerMonth: 12900,
currency: "SEK",
maxHouseholdMembers: 6,
aiScansPerMonth: 600,
aiScansPerMonth: 200,
weekPlanning: true,
advancedNutrition: true,
communityPublish: true,
@@ -72,7 +73,7 @@ export const PLAN_DEFINITIONS: Record<SubscriptionPlan, PlanDefinition> = {
priceMinorPerMonth: 16900,
currency: "SEK",
maxHouseholdMembers: 12,
aiScansPerMonth: 1000,
aiScansPerMonth: 400,
weekPlanning: true,
advancedNutrition: true,
communityPublish: true,