add to shopping from card context menu

This commit is contained in:
smilerz
2021-10-31 15:18:00 -05:00
parent a217db5822
commit f245aa8b4f
16 changed files with 279 additions and 250 deletions

View File

@ -2160,7 +2160,7 @@ export interface ShoppingListEntries {
* @type {string}
* @memberof ShoppingListEntries
*/
completed_at: string | null;
completed_at?: string | null;
/**
*
* @type {string}
@ -2251,7 +2251,7 @@ export interface ShoppingListEntry {
* @type {string}
* @memberof ShoppingListEntry
*/
completed_at: string | null;
completed_at?: string | null;
/**
*
* @type {string}
@ -3014,10 +3014,10 @@ export interface UserPreference {
food_ignore_default?: string;
/**
*
* @type {number}
* @type {string}
* @memberof UserPreference
*/
default_delay?: number;
default_delay?: string;
/**
*
* @type {boolean}
@ -3036,6 +3036,12 @@ export interface UserPreference {
* @memberof UserPreference
*/
shopping_share?: Array<number>;
/**
*
* @type {number}
* @memberof UserPreference
*/
shopping_recent_days?: number;
}
/**