/** * Bulk Operations for Bugs import { getErrorMessage } from './../../types/common'; * * Operations for managing multiple bugs at once */ /** * Bulk update bug statuses in Jira */ export declare function bulkUpdateBugStatuses(filePath: string, statusMap: Record): Promise<{ updated: number; failed: number; errors: string[]; }>; /** * Bulk sync all bug statuses from Jira */ export declare function bulkSyncBugStatuses(filePath: string): Promise<{ synced: number; errors: number; details: Array<{ bugId: string; jiraKey?: string; oldStatus: string; newStatus: string; }>; }>; /** * Get bugs statistics */ export declare function getBugsStatistics(filePath: string): { total: number; byStatus: Record; byCategory: Record; bySeverity: Record; withJiraKeys: number; withoutJiraKeys: number; needingTickets: number; needingStatusSync: number; }; //# sourceMappingURL=bulk-operations.d.ts.map