added some cooklog stuff

This commit is contained in:
vabene1111
2024-02-24 13:44:20 +01:00
parent 1e349214fe
commit 3c7fd0fa35
11 changed files with 217 additions and 56 deletions

View File

@@ -61,13 +61,7 @@ export interface RecipeStepsInner {
* @type {string}
* @memberof RecipeStepsInner
*/
readonly ingredientsMarkdown?: string;
/**
*
* @type {string}
* @memberof RecipeStepsInner
*/
readonly ingredientsVue?: string;
readonly instructionsMarkdown?: string;
/**
*
* @type {number}
@@ -142,8 +136,7 @@ export function RecipeStepsInnerFromJSONTyped(json: any, ignoreDiscriminator: bo
'name': !exists(json, 'name') ? undefined : json['name'],
'instruction': !exists(json, 'instruction') ? undefined : json['instruction'],
'ingredients': ((json['ingredients'] as Array<any>).map(RecipeStepsInnerIngredientsInnerFromJSON)),
'ingredientsMarkdown': !exists(json, 'ingredients_markdown') ? undefined : json['ingredients_markdown'],
'ingredientsVue': !exists(json, 'ingredients_vue') ? undefined : json['ingredients_vue'],
'instructionsMarkdown': !exists(json, 'instructions_markdown') ? undefined : json['instructions_markdown'],
'time': !exists(json, 'time') ? undefined : json['time'],
'order': !exists(json, 'order') ? undefined : json['order'],
'showAsHeader': !exists(json, 'show_as_header') ? undefined : json['show_as_header'],