/** * One source row in /v1/products/sources response. */ export type SourcesEntry = { source_type: string; /** * Legal tier T0/T1/T2/T3 */ tier: string; auth_required: boolean; scrapeable: boolean; notes: string; /** * SKUs sourced from this authority */ sku_count: number; }; //# sourceMappingURL=SourcesEntry.d.ts.map