We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74bd5f3 commit 771d0beCopy full SHA for 771d0be
lib/contact.ts
@@ -75,6 +75,7 @@ export default class Contact {
75
id,
76
role,
77
externalId,
78
+ email,
79
phone,
80
name,
81
avatar,
@@ -87,6 +88,7 @@ export default class Contact {
87
88
const data: UpdateContactRequest = {
89
90
external_id: externalId,
91
92
93
94
@@ -232,6 +234,7 @@ type UpdateContactData = {
232
234
id: string;
233
235
role?: UpdateContactRequest['role'];
236
externalId?: UpdateContactRequest['external_id'];
237
+ email?: UpdateContactRequest['email'];
238
phone?: UpdateContactRequest['phone'];
239
name?: UpdateContactRequest['name'];
240
avatar?: UpdateContactRequest['avatar'];
0 commit comments