// Using full nameconst result = await agent.findEmail({ full_name: 'Satya Nadella', company_domain: 'microsoft.com'});// Using first + last nameconst result = await agent.findEmail({ first_name: 'Satya', last_name: 'Nadella', company_domain: 'microsoft.com'});if (result.found) { console.log(`Email: ${result.email}`);} else { console.log('Email not found');}