ChemPal Documentation - v1.7.0
    Preparing search index...

    Interface ExcludedProductEntry

    Minimal metadata stored for each excluded product so the user can review (and eventually un-exclude) their ignore list from settings.

    export interface ExcludedProductEntry {
    /**
    * Supplier's stable product identity (`SupplierBase.getUniqueProductKey`),
    * used with the supplier name to derive the exclusion key.
    */
    identity?: string;
    /** Canonical product URL, kept for display. */
    url?: string;
    /** Supplier name used to derive the exclusion key. */
    supplier: string;
    /** Last-known product title, purely for display. */
    title?: string;
    /** Epoch ms at which the product was excluded. */
    excludedAt: number;
    }
    interface ExcludedProductEntry {
        identity?: string;
        url?: string;
        supplier: string;
        title?: string;
        excludedAt: number;
    }
    Index

    Properties

    identity?: string

    Supplier's stable product identity (SupplierBase.getUniqueProductKey), used with the supplier name to derive the exclusion key.

    url?: string

    Canonical product URL, kept for display.

    supplier: string

    Supplier name used to derive the exclusion key.

    title?: string

    Last-known product title, purely for display.

    excludedAt: number

    Epoch ms at which the product was excluded.