- Moved hydration module back from _deprecated (needed for product_refresh) - Restored product_refresh handler for processing stored payloads - Restored geolocation service for findadispo/findagram - Stubbed system routes that depend on deprecated SyncOrchestrator - Removed crawler-sandbox route (deprecated) - Fixed all TypeScript compilation errors 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
13 lines
669 B
TypeScript
13 lines
669 B
TypeScript
/**
|
|
* System Services Index
|
|
*
|
|
* Phase 5: Full Production Sync + Monitoring
|
|
*/
|
|
|
|
// SyncOrchestrator moved to _deprecated (depends on hydration module)
|
|
export { MetricsService, ERROR_TYPES, type Metric, type MetricTimeSeries, type ErrorBucket, type ErrorType } from './metrics';
|
|
export { DLQService, type DLQPayload, type DLQStats } from './dlq';
|
|
export { AlertService, type SystemAlert, type AlertSummary, type AlertSeverity, type AlertStatus } from './alerts';
|
|
export { IntegrityService, type IntegrityCheckResult, type IntegrityRunSummary, type CheckStatus } from './integrity';
|
|
export { AutoFixService, type FixRunResult, type FixRoutineName } from './auto-fix';
|