export const ReviewPriority = { HIGH: 'HIGH', MEDIUM: 'MEDIUM', LOW: 'LOW', } as const export type ReviewPriority = typeof ReviewPriority[keyof typeof ReviewPriority] export const ReviewQueueStatus = { PENDING: 'PENDING', IN_REVIEW: 'IN_REVIEW', COMPLETED: 'COMPLETED', } as const export type ReviewQueueStatus = typeof ReviewQueueStatus[keyof typeof ReviewQueueStatus] export interface ReviewQueueItem { id: string matchId: string needId: string propertyId: string matchScore: number priority: ReviewPriority status: ReviewQueueStatus assignedTo?: string notes?: string dueAt?: string organizationId?: string createdAt: string updatedAt: string }