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

    Interface SupplierTotals

    The per-supplier counters the classifier reads.

    export interface SupplierTotals {
    success: number;
    failure: number;
    /**
    * Non-cached product detail fetches. Carried for display only — deliberately
    * *not* used to grade parser health, since a supplier serving cached results
    * reports zero here while parsing fine.
    */
    products: number;
    parseErrors: number;
    }
    interface SupplierTotals {
        success: number;
        failure: number;
        products: number;
        parseErrors: number;
    }
    Index

    Properties

    success: number
    failure: number
    products: number

    Non-cached product detail fetches. Carried for display only — deliberately not used to grade parser health, since a supplier serving cached results reports zero here while parsing fine.

    parseErrors: number