ChemPal Documentation - v0.0.13-beta.5
    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 {
    /** Canonical product URL used to derive the exclusion key. */
    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 {
        url: string;
        supplier: string;
        title?: string;
        excludedAt: number;
    }
    Index

    Properties

    url: string

    Canonical product URL used to derive the exclusion key.

    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.