basic tests with new factories

This commit is contained in:
smilerz
2021-12-08 09:01:20 -06:00
parent b5bf0a4584
commit 8f0c5e21ad
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;
}
/**