fix after rebase
This commit is contained in:
@ -1081,10 +1081,10 @@ export interface MealPlan {
|
||||
created_by?: string;
|
||||
/**
|
||||
*
|
||||
* @type {Array<number>}
|
||||
* @type {Array<MealPlanShared>}
|
||||
* @memberof MealPlan
|
||||
*/
|
||||
shared?: Array<number>;
|
||||
shared?: Array<MealPlanShared> | null;
|
||||
/**
|
||||
*
|
||||
* @type {string}
|
||||
@ -1269,6 +1269,25 @@ export interface MealPlanRecipeKeywords {
|
||||
*/
|
||||
label?: string;
|
||||
}
|
||||
/**
|
||||
*
|
||||
* @export
|
||||
* @interface MealPlanShared
|
||||
*/
|
||||
export interface MealPlanShared {
|
||||
/**
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof MealPlanShared
|
||||
*/
|
||||
id?: number;
|
||||
/**
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof MealPlanShared
|
||||
*/
|
||||
username?: string;
|
||||
}
|
||||
/**
|
||||
*
|
||||
* @export
|
||||
@ -1465,10 +1484,10 @@ export interface RecipeBook {
|
||||
icon?: string | null;
|
||||
/**
|
||||
*
|
||||
* @type {Array<RecipeBookShared>}
|
||||
* @type {Array<MealPlanShared>}
|
||||
* @memberof RecipeBook
|
||||
*/
|
||||
shared: Array<RecipeBookShared>;
|
||||
shared: Array<MealPlanShared>;
|
||||
/**
|
||||
*
|
||||
* @type {string}
|
||||
@ -1513,25 +1532,6 @@ export interface RecipeBookEntry {
|
||||
*/
|
||||
recipe_content?: string;
|
||||
}
|
||||
/**
|
||||
*
|
||||
* @export
|
||||
* @interface RecipeBookShared
|
||||
*/
|
||||
export interface RecipeBookShared {
|
||||
/**
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof RecipeBookShared
|
||||
*/
|
||||
id?: number;
|
||||
/**
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof RecipeBookShared
|
||||
*/
|
||||
username?: string;
|
||||
}
|
||||
/**
|
||||
*
|
||||
* @export
|
||||
@ -2029,10 +2029,10 @@ export interface ShoppingList {
|
||||
entries: Array<ShoppingListEntries> | null;
|
||||
/**
|
||||
*
|
||||
* @type {Array<RecipeBookShared>}
|
||||
* @type {Array<MealPlanShared>}
|
||||
* @memberof ShoppingList
|
||||
*/
|
||||
shared: Array<RecipeBookShared>;
|
||||
shared: Array<MealPlanShared>;
|
||||
/**
|
||||
*
|
||||
* @type {boolean}
|
||||
@ -2960,10 +2960,10 @@ export interface UserPreference {
|
||||
show_recent?: boolean;
|
||||
/**
|
||||
*
|
||||
* @type {Array<number>}
|
||||
* @type {Array<MealPlanShared>}
|
||||
* @memberof UserPreference
|
||||
*/
|
||||
plan_share?: Array<number>;
|
||||
plan_share?: Array<MealPlanShared> | null;
|
||||
/**
|
||||
*
|
||||
* @type {number}
|
||||
|
Reference in New Issue
Block a user