@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.
@@ -20,7 +20,7 @@ interface IChannelInfo {
20
20
  }
21
21
  interface IChannel {
22
22
  id?: string | null;
23
- tenantId?: string | null;
23
+ spaceId?: string | null;
24
24
  name?: string | null;
25
25
  description?: string | null;
26
26
  type?: ChannelType | null;
@@ -312,12 +312,12 @@ export interface MessagePollOption {
312
312
  }
313
313
  export interface MessageContact {
314
314
  name: MessageContactName;
315
- profileUrl: string;
316
- birthday: string;
317
- org: MessageContactOrg;
318
- phones: MessageContactPhone[];
319
- emails: MessageContactEmail[];
320
- addresses: MessageContactAddress[];
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: string;
339
- lastName: string;
340
- middleName: string;
338
+ firstName?: string;
339
+ lastName?: string;
340
+ middleName?: string;
341
341
  }
342
342
  export interface MessageContactOrg {
343
343
  company: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trii/types",
3
- "version": "2.10.335",
3
+ "version": "2.10.337",
4
4
  "description": "Types definitions for Trii projects - ",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",