/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * 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; };