This commit is contained in:
Aerilyn Weber 2026-05-14 18:57:57 +09:00
parent e396f5088c
commit a1801af63b
36 changed files with 4783 additions and 31 deletions

View file

@ -0,0 +1,18 @@
/**
* State progression for grocery shopping lists
*/
export enum ShoppingListStatus {
ACTIVE = 'active',
SHOPPING = 'shopping',
COMPLETED = 'completed',
ARCHIVED = 'archived',
}
/**
* Identifies the genesis of a generated shopping list
*/
export enum ShoppingListSourceType {
MEAL_PLAN = 'meal_plan',
MANUAL = 'manual',
PANTRY_RESTOCK = 'pantry_restock',
}