@trii/types 2.10.334 → 2.10.336
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -311,12 +311,13 @@ export interface MessagePollOption {
|
|
|
311
311
|
localId: string;
|
|
312
312
|
}
|
|
313
313
|
export interface MessageContact {
|
|
314
|
-
addresses: MessageContactAddress[];
|
|
315
|
-
birthday: string;
|
|
316
|
-
emails: MessageContactEmail[];
|
|
317
314
|
name: MessageContactName;
|
|
318
|
-
|
|
319
|
-
|
|
315
|
+
profileUrl?: string;
|
|
316
|
+
birthday?: string;
|
|
317
|
+
org?: MessageContactOrg;
|
|
318
|
+
phones?: MessageContactPhone[];
|
|
319
|
+
emails?: MessageContactEmail[];
|
|
320
|
+
addresses?: MessageContactAddress[];
|
|
320
321
|
}
|
|
321
322
|
export interface MessageContactAddress {
|
|
322
323
|
street: string;
|
|
@@ -334,9 +335,9 @@ export interface MessageContactEmail {
|
|
|
334
335
|
}
|
|
335
336
|
export interface MessageContactName {
|
|
336
337
|
formattedName: string;
|
|
337
|
-
firstName
|
|
338
|
-
lastName
|
|
339
|
-
middleName
|
|
338
|
+
firstName?: string;
|
|
339
|
+
lastName?: string;
|
|
340
|
+
middleName?: string;
|
|
340
341
|
}
|
|
341
342
|
export interface MessageContactOrg {
|
|
342
343
|
company: string;
|