i want to update contact data, but when i updated the data, the contact name has been missing. this is my code
` $contact->name = 'Test';
$contact->phoneNumber = '081234567890';
$contact->email = 'test@example.com';
$contactAfterUpdate = rapidweb\googlecontacts\factories\ContactFactory::submitUpdates($contact);
var_dump($contactAfterUpdate);`
i want to update contact data, but when i updated the data, the contact name has been missing. this is my code
` $contact->name = 'Test';
$contact->phoneNumber = '081234567890';
$contact->email = 'test@example.com';