/** * A single category row in /v1/products/list response. */ export type CategoryEntry = { /** * Category slug (one of 10 fixed values) */ name: string; /** * 'live' or 'coming_soon' */ status: string; /** * Total SKUs present for this category */ sku_count: number; }; //# sourceMappingURL=CategoryEntry.d.ts.map