@openfoodfacts/openfoodfacts-nodejs
    Preparing search index...

    Type Alias ProductDataType

    ProductDataType: ProductDataSection & {
        _id: string;
        _keywords: string[];
        additives_n: number;
        additives_tags: string[];
        brands: string;
        brands_tags: string[];
        categories: string;
        categories_hierarchy: object[];
        categories_tags: string[];
        code: string;
        countries: string;
        countries_tags: string[];
        ecoscore_grade: string;
        emb_codes: string;
        emb_codes_tags: string[];
        image_front_small_url: string;
        image_front_url: string;
        image_ingredients_small_url: string;
        image_ingredients_thumb_url: string;
        image_ingredients_url: string;
        image_nutrition_small_url: string;
        image_nutrition_thumb_url: string;
        image_nutrition_url: string;
        images: Record<string, SelectedImage | RawImage>;
        ingredients: {
            id: string;
            percent: number;
            percent_estimate: number;
            percent_max: number;
            percent_min: number;
            text: string;
            vegan: string;
            vegetarian: string;
        }[];
        ingredients_text: string;
        knowledge_panels: Record<string, any>;
        labels: string;
        labels_tags: string[];
        lang: string;
        languages_codes: { [lang: string]: number };
        link: string;
        manufacturing_places: string;
        no_nutrition_data?: boolean;
        nova_group: number;
        nutriments: any;
        nutriscore_grade: string;
        origins: string;
        origins_tags: string[];
        packaging: string;
        product_name: string;
        product_type: string;
        quantity: string;
        serving_size: string;
        source: {
            fields: string[];
            id: string;
            images: object[];
            import_t: number;
            manufacturer: number | string;
            name: string;
            source_licence: string;
            source_licence_url: string;
            url?: string;
        };
        stores: string;
        stores_tags: string[];
        [lang: `product_name_${string}`]: string;
        [lang: `ingredients_text_${string}`]: string;
    }