/** * One pairwise compatibility relation row. * * The ``related_product_id`` is the OTHER product of the pair (i.e. not the * one in the URL path). Per audit-9 P1 the table launches empty; the * endpoint surface exists so SDKs and agents can call without 404'ing * once the ETL lands. */ export type CompatibilityEntry = { /** * ID of the other product in the relation pair */ related_product_id: number; /** * One of: 'substitute', 'compatible', 'incompatible' */ relation_type: string; /** * Confidence marker if set by ETL */ confidence?: (string | null); fetched_at: string; }; //# sourceMappingURL=CompatibilityEntry.d.ts.map