arela
Version:
AI-powered CTO with multi-agent orchestration, code summarization, visual testing (web + mobile) for blazing fast development.
19 lines • 570 B
TypeScript
/**
* Detect schema drift between frontend calls and backend endpoints
*/
import { ApiCall, ApiEndpoint, DriftIssue, EndpointMatch } from './types';
/**
* Main drift detection function
*/
export declare function detectDrift(matches: EndpointMatch[], unmatchedCalls: ApiCall[], unmatchedEndpoints: ApiEndpoint[]): DriftIssue[];
/**
* Get severity counts
*/
export declare function getDriftSummary(issues: DriftIssue[]): {
total: number;
critical: number;
high: number;
medium: number;
low: number;
};
//# sourceMappingURL=drift-detector.d.ts.map