feature/improve-tag-organization-ux #8

Merged
pkartch merged 22 commits from feature/improve-tag-organization-ux into main 2026-01-17 06:13:39 +00:00
Showing only changes of commit 0871727e57 - Show all commits

View File

@@ -15,7 +15,7 @@ export interface Recipe {
author?: string; author?: string;
cuisine?: string; cuisine?: string;
categories?: string[]; // Changed from single category to array categories?: string[]; // Changed from single category to array
tags?: string[]; tags?: (string | RecipeTag)[]; // Can be strings or RecipeTag objects from API
rating?: number; rating?: number;
createdAt: Date; createdAt: Date;
updatedAt: Date; updatedAt: Date;
@@ -98,6 +98,10 @@ export interface Tag {
name: string; name: string;
} }
export interface RecipeTag {
tag: Tag;
}
export interface Cookbook { export interface Cookbook {
id: string; id: string;
name: string; name: string;