// All contacts
const contats = await WPP.contact.list();
// Only my contacts
const contacts = await WPP.contact.list({onlyMyContacts: true});
// Only with label Text
const contacts = await WPP.contact.list({withLabels: ['Test']});
// Only with label id
const contacts = await WPP.contact.list({withLabels: ['1']});
// Only with label with one of text or id
const contacts = await WPP.contact.list({withLabels: ['Alfa','5']});
Return a list of contacts