@uniteverses/shared 1.0.7 → 1.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -192,6 +192,13 @@ export interface OrgFoodGroup {
|
|
|
192
192
|
childGroups: number;
|
|
193
193
|
};
|
|
194
194
|
}
|
|
195
|
+
export interface OrgFoodItemType {
|
|
196
|
+
id: string;
|
|
197
|
+
orgFoodItemId: string;
|
|
198
|
+
foodItemId: string;
|
|
199
|
+
createdAt: string | Date;
|
|
200
|
+
foodItem: FoodItem;
|
|
201
|
+
}
|
|
195
202
|
export interface OrgFoodItem {
|
|
196
203
|
id: string;
|
|
197
204
|
organizationId: string;
|
|
@@ -200,6 +207,7 @@ export interface OrgFoodItem {
|
|
|
200
207
|
_count?: {
|
|
201
208
|
foodGroups: number;
|
|
202
209
|
};
|
|
210
|
+
foodItemTypes?: OrgFoodItemType[];
|
|
203
211
|
}
|
|
204
212
|
export interface OrgFoodGroupItem {
|
|
205
213
|
id: string;
|