Fas 3 steg 3b: minimala efterfrågor + hushållsantagandeprofiler per ingrediens

This commit is contained in:
Sven (AAMOS AI)
2026-08-07 03:56:41 +07:00
parent 44f6385dce
commit e46281b9b5
24 changed files with 10130 additions and 5 deletions
+3
View File
@@ -152,5 +152,8 @@ export const cookingSessionCompleteInputSchema = cookRecipeInputSchema.partial()
)
.default([]),
mealType: z.enum(MEAL_TYPES).optional(),
actualPortionsEaten: z.number().int().min(0).max(24).optional(),
leftoverEstimatePortions: z.number().int().min(0).max(24).optional(),
leftoverNote: z.string().max(200).optional(),
});
export type CookingSessionCompleteInput = z.infer<typeof cookingSessionCompleteInputSchema>;