Open Issues Need Help
View All on GitHubAI Summary: The task requires debugging a Prisma migration issue in a Node.js WhatsApp API project. The migration fails due to null values in the `externalAttributes` column of the `Instance` table. The solution involves analyzing the migration script (20250203191011_rm_tb_typebot), understanding why it's failing due to null values, and potentially altering the migration to handle existing null values or updating the database to populate those values before applying the migration. This might involve data manipulation or schema changes.
CodeChat - WhatsApp Api
AI Summary: The task is to debug a WhatsApp API (built using Baileys and Node.js) that fails to send messages to contacts with '@lid' in their JID. The error message indicates that the JID doesn't exist, suggesting a problem with contact resolution or the way the API handles these specific JIDs. The solution likely involves investigating the contact lookup mechanism within the API, potentially requiring examination of the database schema and the code responsible for message sending.
CodeChat - WhatsApp Api