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

    Interface ShippingMeta

    The shipping fields a supplier exposes — either as static class members (SupplierStaticMeta) or as an entry in SUPPLIER_META. Accepts a readonly shipsTo so both shapes satisfy it.

    export interface ShippingMeta {
    /** The supplier's coarse shipping scope. */
    readonly shipping: ShippingRange;
    /** The supplier's home country (ISO 3166-1 alpha-2). */
    readonly country: CountryCode;
    /** Optional explicit destination allowlist; overrides {@link ShippingMeta.shipping} when set. */
    readonly shipsTo?: readonly CountryCode[];
    }
    interface ShippingMeta {
        shipping: ShippingRange;
        country: valueof;
        shipsTo?: readonly valueof<any>[];
    }
    Index

    Properties

    shipping: ShippingRange

    The supplier's coarse shipping scope.

    country: valueof

    The supplier's home country (ISO 3166-1 alpha-2).

    shipsTo?: readonly valueof<any>[]

    Optional explicit destination allowlist; overrides ShippingMeta.shipping when set.