Phase 9
This commit is contained in:
parent
e396f5088c
commit
a1801af63b
36 changed files with 4783 additions and 31 deletions
18
packages/shared/src/enums/shopping-list.enums.ts
Normal file
18
packages/shared/src/enums/shopping-list.enums.ts
Normal 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',
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue