@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
- org: MessageContactOrg;
319
- phones: MessageContactPhone[];
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: string;
338
- lastName: string;
339
- middleName: string;
338
+ firstName?: string;
339
+ lastName?: string;
340
+ middleName?: string;
340
341
  }
341
342
  export interface MessageContactOrg {
342
343
  company: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trii/types",
3
- "version": "2.10.334",
3
+ "version": "2.10.336",
4
4
  "description": "Types definitions for Trii projects - ",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",