export type TSqlProcessingLogText = { hash_key: string; processing_status: string; error_message: string | null; index_name: string; is_pinecone_processed: boolean; processing_started: string | null; processing_completed: string | null; retry_count: number; created_at: string; updated_at: string; last_processed_at: string | null; source: string | null; priority: number; assigned_worker: string | null; }; export type TSqlProcessingLogTextInsert = { hash_key: string; } & Partial>; export type TSqlProcessingLogTextUpdate = { hash_key: string; } & Partial>;