@trii/types 2.10.347 → 2.10.349

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.
@@ -5,6 +5,8 @@ export interface IMessage {
5
5
  id: string;
6
6
  externalId?: string;
7
7
  shardKey?: string;
8
+ /**only for Front-End */
9
+ idLocal?: number;
8
10
  spaceId: string;
9
11
  conversationId: string;
10
12
  /**only for Front-End */
@@ -6,6 +6,9 @@ import { IContactInfo } from "../Contacts/contacts";
6
6
  import { IEnding } from "./Ending";
7
7
  export interface IConversation {
8
8
  id: string;
9
+ /**only for Front-End */
10
+ idLocal?: number;
11
+ spaceId: string;
9
12
  type: ChatType;
10
13
  ownerId: string;
11
14
  chatName: string;
@@ -37,6 +37,7 @@ export declare class UserTrii {
37
37
  sipConfigNumber: string;
38
38
  sipConfigCustom: SipExtension;
39
39
  sipExtensionConfig: SipExtension;
40
+ storageAzureSAS: StorageAzureSAS;
40
41
  /**el usuario acepto la invitacion al espacio */
41
42
  isActive: boolean;
42
43
  /** Date on which the user accepted to be a member of the space */
@@ -72,3 +73,7 @@ export declare class UserTrii {
72
73
  socialLinkedinID: string;
73
74
  socialTwitterID: string;
74
75
  }
76
+ export declare class StorageAzureSAS {
77
+ sas: string;
78
+ expireAt: Date;
79
+ }
@@ -9,3 +9,5 @@ export var UserStatus;
9
9
  })(UserStatus || (UserStatus = {}));
10
10
  export class UserTrii {
11
11
  }
12
+ export class StorageAzureSAS {
13
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trii/types",
3
- "version": "2.10.347",
3
+ "version": "2.10.349",
4
4
  "description": "Types definitions for Trii projects - ",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",