Replace entire repo content with code from /root/shahikitchen-google/

This commit is contained in:
root
2026-07-03 02:51:15 +00:00
parent c8b7dc95e4
commit 8ccf033329
79 changed files with 7611 additions and 439 deletions
+28
View File
@@ -0,0 +1,28 @@
import type { MenuCategory } from './entities';
export type MenuVersionTrigger = 'auto' | 'manual' | 'restore';
export interface MenuVersionMeta {
id: string;
label: string;
createdAt: string;
trigger: MenuVersionTrigger;
categoryCount: number;
dishCount: number;
isBaseline: boolean;
}
export interface MenuVersionSnapshot {
id: string;
label: string;
createdAt: string;
trigger: MenuVersionTrigger;
categories: MenuCategory[];
isBaseline: boolean;
}
export interface MenuVersionListItem extends MenuVersionMeta {
matchesLive: boolean;
}
export const MENU_BASELINE_VERSION_ID = 'baseline' as const;