The static shipping metadata every supplier class exposes as static fields,
readable without instantiating (e.g. SupplierCarolina.shipping). Consumed by
SupplierBase.shipsToCountryStatic and SupplierFactory.
Source
exportinterfaceSupplierStaticMeta { /** The supplier's coarse shipping scope. */ readonlyshipping:ShippingRange; /** The supplier's home country (ISO 3166-1 alpha-2). */ readonlycountry:CountryCode; /** Optional explicit destination allowlist; overrides {@linkshipping} when set. */ readonlyshipsTo?:CountryCode[]; }
The static shipping metadata every supplier class exposes as
staticfields, readable without instantiating (e.g.SupplierCarolina.shipping). Consumed by SupplierBase.shipsToCountryStatic andSupplierFactory.Source