import type { CompatibilityEntry } from './CompatibilityEntry'; /** * GET /v1/products/{id}/substitutes or /compatibility response. */ export type CompatibilityOut = { /** * ID of the product in the URL path */ product_id: number; /** * Filter applied to relation_type ('substitute' or 'compatible') */ relation_filter: string; rows?: Array; /** * Total matching rows across all pages */ total: number; /** * Page size. */ limit: number; /** * Skip-count. */ offset: number; }; //# sourceMappingURL=CompatibilityOut.d.ts.map