import { IPriceRange } from '../../Algolia'; import { ICartItemPrices } from '../../Cart'; import ITranslation from '../../Translation'; export default interface IIndexedLastSavedProduct { readonly id: string; readonly product_id: string; readonly product_parent_slug: string; readonly product_name: ITranslation[]; readonly image: string; readonly categories: Record; readonly price_type: 'regular' | 'promo' | 'discount'; readonly regular_price: ICartItemPrices[]; readonly price_range: IPriceRange; readonly stock_level: { readonly web: number; readonly stores: any[]; readonly is_infinite_stock?: boolean | undefined; }; readonly last_save: number; }