recipes as part of recipes/steps

This commit is contained in:
vabene1111
2021-07-13 16:47:39 +02:00
parent f8c1411e4d
commit 0c28e7e1b4
6 changed files with 148 additions and 11 deletions

View File

@ -1085,6 +1085,18 @@ export interface RecipeSteps {
* @memberof RecipeSteps
*/
file?: StepFile | null;
/**
*
* @type {number}
* @memberof RecipeSteps
*/
step_recipe?: number | null;
/**
*
* @type {string}
* @memberof RecipeSteps
*/
step_recipe_data?: string;
}
/**
@ -1094,7 +1106,8 @@ export interface RecipeSteps {
export enum RecipeStepsTypeEnum {
Text = 'TEXT',
Time = 'TIME',
File = 'FILE'
File = 'FILE',
Recipe = 'RECIPE'
}
/**
@ -1490,6 +1503,18 @@ export interface Step {
* @memberof Step
*/
file?: StepFile | null;
/**
*
* @type {number}
* @memberof Step
*/
step_recipe?: number | null;
/**
*
* @type {string}
* @memberof Step
*/
step_recipe_data?: string;
}
/**
@ -1499,7 +1524,8 @@ export interface Step {
export enum StepTypeEnum {
Text = 'TEXT',
Time = 'TIME',
File = 'FILE'
File = 'FILE',
Recipe = 'RECIPE'
}
/**