feat: add sharing feature
This commit is contained in:
@@ -33,3 +33,13 @@ export type DailyTotalCalories = {
|
||||
day: number;
|
||||
totalCalories: number;
|
||||
};
|
||||
|
||||
export type SharedDay = {
|
||||
id?: string;
|
||||
shareId: string;
|
||||
userId: string;
|
||||
userName: string;
|
||||
date: string;
|
||||
foodEntries: string; // JSON stringified FoodStorage[]
|
||||
createdAt: string;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user