diff --git a/supabase/functions/create-chat-conversation/index.ts b/supabase/functions/create-chat-conversation/index.ts index 73bf4b0..e4478cb 100644 --- a/supabase/functions/create-chat-conversation/index.ts +++ b/supabase/functions/create-chat-conversation/index.ts @@ -343,7 +343,7 @@ app.post(`${prefix}/conversations/:id/messages`, async (c) => { "append_conversacion_plan", { p_id: conversation_plan_id, - p_appended: JSON.stringify(appended), + p_append: JSON.stringify(appended), }, ); @@ -402,7 +402,7 @@ app.post(`${prefix}/conversations/:id/messages`, async (c) => { "append_conversacion_plan", { p_id: conversation_plan_id, - p_appended: JSON.stringify(appended), + p_append: JSON.stringify(appended), }, );