feat: enhance bottle metadata with distillation/bottling dates and batch info

This commit is contained in:
2025-12-18 13:24:41 +01:00
parent 61a7966579
commit acf02a78dd
7 changed files with 81 additions and 8 deletions

View File

@@ -9,6 +9,9 @@ export const BottleMetadataSchema = z.object({
vintage: z.string().nullable(),
bottleCode: z.string().nullable(),
whiskybaseId: z.string().nullable(),
distilled_at: z.string().nullable(),
bottled_at: z.string().nullable(),
batch_info: z.string().nullable(),
is_whisky: z.boolean().default(true),
confidence: z.number().min(0).max(100).default(100),
});