import type { ReviewQueueItem } from '../domain/review' export const mockReviewQueue: ReviewQueueItem[] = [ { id: 'review-001', matchId: 'match-001', needId: 'need-001', propertyId: 'prop-001', matchScore: 88, priority: 'HIGH', status: 'PENDING', assignedTo: 'user-001', dueAt: '2025-06-15T17:00:00Z', organizationId: 'org-wincasa', createdAt: '2025-05-10T08:00:00Z', updatedAt: '2025-05-10T08:00:00Z', }, { id: 'review-002', matchId: 'match-002', needId: 'need-001', propertyId: 'prop-004', matchScore: 64, priority: 'MEDIUM', status: 'PENDING', dueAt: '2025-06-20T17:00:00Z', organizationId: 'org-wincasa', createdAt: '2025-05-10T08:15:00Z', updatedAt: '2025-05-10T08:15:00Z', }, { id: 'review-003', matchId: 'match-004', needId: 'need-002', propertyId: 'prop-006', matchScore: 47, priority: 'LOW', status: 'PENDING', organizationId: 'org-wincasa', createdAt: '2025-05-11T09:00:00Z', updatedAt: '2025-05-11T09:00:00Z', }, ]