1
0
mirror of https://github.com/TandoorRecipes/recipes.git synced 2026-01-11 09:07:12 -05:00

basic tests with new factories

This commit is contained in:
smilerz
2021-12-08 09:01:20 -06:00
parent 68927d141e
commit b146e75daa
9 changed files with 555 additions and 287 deletions

View File

@@ -1097,6 +1097,12 @@ export interface MealPlan {
* @memberof MealPlan
*/
meal_type_name?: string;
/**
*
* @type {string}
* @memberof MealPlan
*/
shopping?: string;
}
/**
*
@@ -3024,6 +3030,18 @@ export interface UserPreference {
* @memberof UserPreference
*/
shopping_recent_days?: number;
/**
*
* @type {string}
* @memberof UserPreference
*/
csv_delim?: string;
/**
*
* @type {string}
* @memberof UserPreference
*/
csv_prefix?: string;
}
/**