Remove data health dashboard
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 45s

This commit is contained in:
Cauê Faleiros
2026-08-03 10:31:23 -03:00
parent e993bfdaf3
commit 7fcf52cf67
7 changed files with 2 additions and 240 deletions

View File

@@ -517,28 +517,6 @@ export interface ProductCompositionImportSummary {
}>;
}
export interface DataHealthIssue {
type: 'missing_product_sku' | 'component_without_stock_link' | 'suspicious_quantity' | 'raw_or_service_structure' | 'product_without_composition';
severity: 'critical' | 'attention' | 'info';
title: string;
detail: string;
productSku: string;
component: string;
}
export interface DataHealthSummary {
totals: {
products: number;
productsWithComposition: number;
productsWithStockLink: number;
materials: number;
materialsWithStock: number;
compositions: number;
components: number;
};
issues: DataHealthIssue[];
}
export interface ClientAnalyticsItem {
customerKey: string;
clientToken: string;