export enum PageSource { GOOGLE_SHOPPING = 'GOOGLE_SHOPPING', } export enum ProductSource { GOOGLE_SHOPPING = 'GOOGLE_SHOPPING', } export type AlgoliaPage = { objectID: string; name?: string; price?: number; retailer?: string; url?: string; urlQuery?: string; availability?: boolean; product_id?: string; featured?: boolean; productScore: number; img?: string; featuredImage?: string; discoverable: boolean; ['lowest_price.price']?: number; savingRatio: number; lastmodified: number; };