mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-24 07:39:41 +02:00
feat: adding the rest ofthe nutrition properties from schema.org (#4301)
This commit is contained in:
parent
3aea229f2d
commit
02c0fe993b
16 changed files with 279 additions and 57 deletions
|
@ -194,12 +194,16 @@ export interface MergeUnit {
|
|||
}
|
||||
export interface Nutrition {
|
||||
calories?: string | null;
|
||||
fatContent?: string | null;
|
||||
proteinContent?: string | null;
|
||||
carbohydrateContent?: string | null;
|
||||
cholesterolContent?: string | null;
|
||||
fatContent?: string | null;
|
||||
fiberContent?: string | null;
|
||||
proteinContent?: string | null;
|
||||
saturatedFatContent?: string | null;
|
||||
sodiumContent?: string | null;
|
||||
sugarContent?: string | null;
|
||||
transFatContent?: string | null;
|
||||
unsaturatedFatContent?: string | null;
|
||||
}
|
||||
export interface ParsedIngredient {
|
||||
input?: string | null;
|
||||
|
@ -486,7 +490,7 @@ export interface ScrapeRecipeTest {
|
|||
url: string;
|
||||
useOpenAI?: boolean;
|
||||
}
|
||||
export interface SlugResponse {}
|
||||
export interface SlugResponse { }
|
||||
export interface TagIn {
|
||||
name: string;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue