feat: use marka api in all apis
This commit is contained in:
@@ -1,21 +1,17 @@
|
||||
export type Recipe = {
|
||||
type: "recipe";
|
||||
id: string;
|
||||
name: string;
|
||||
description?: string;
|
||||
markdown?: string;
|
||||
ingredients: (Ingredient | IngredientGroup)[];
|
||||
instructions?: string[];
|
||||
notes?: string[];
|
||||
tags: string[];
|
||||
meta?: {
|
||||
time?: string;
|
||||
link?: string;
|
||||
image?: string;
|
||||
rating?: number;
|
||||
portion?: number;
|
||||
author?: string;
|
||||
average?: string;
|
||||
thumbnail?: string;
|
||||
_type: "Recipe";
|
||||
author?: {
|
||||
_type: "Person";
|
||||
name?: string;
|
||||
};
|
||||
description?: string;
|
||||
image?: string;
|
||||
name?: string;
|
||||
recipeIngredient?: string[];
|
||||
recipeInstructions?: string[];
|
||||
datePublished?: string;
|
||||
totalTime?: string;
|
||||
recipeYield?: number;
|
||||
url?: string;
|
||||
keywords?: string[];
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user