@trii/types 2.10.335 → 2.10.337
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.
|
@@ -312,12 +312,12 @@ export interface MessagePollOption {
|
|
|
312
312
|
}
|
|
313
313
|
export interface MessageContact {
|
|
314
314
|
name: MessageContactName;
|
|
315
|
-
profileUrl
|
|
316
|
-
birthday
|
|
317
|
-
org
|
|
318
|
-
phones
|
|
319
|
-
emails
|
|
320
|
-
addresses
|
|
315
|
+
profileUrl?: string;
|
|
316
|
+
birthday?: string;
|
|
317
|
+
org?: MessageContactOrg;
|
|
318
|
+
phones?: MessageContactPhone[];
|
|
319
|
+
emails?: MessageContactEmail[];
|
|
320
|
+
addresses?: MessageContactAddress[];
|
|
321
321
|
}
|
|
322
322
|
export interface MessageContactAddress {
|
|
323
323
|
street: string;
|
|
@@ -335,9 +335,9 @@ export interface MessageContactEmail {
|
|
|
335
335
|
}
|
|
336
336
|
export interface MessageContactName {
|
|
337
337
|
formattedName: string;
|
|
338
|
-
firstName
|
|
339
|
-
lastName
|
|
340
|
-
middleName
|
|
338
|
+
firstName?: string;
|
|
339
|
+
lastName?: string;
|
|
340
|
+
middleName?: string;
|
|
341
341
|
}
|
|
342
342
|
export interface MessageContactOrg {
|
|
343
343
|
company: string;
|