export interface IEntitySearchResult { filePath: string; entityType: 'task' | 'connection' | 'table' | 'puller' | 'pusher' | 'report' | 'schema'; entityId: string; entityName?: string; entityDescription?: string; score?: number; content?: any; override?: { filePath: string; content: any; }; }