import Morphik from 'morphik';
const client = new Morphik({
apiKey: process.env['MORPHIK_API_KEY'], // This is the default and can be omitted
});
const response = await client.chat.updateTitle('chat_id', { title: 'title' });
console.log(response.message);