@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.
|
@@ -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;
|
package/dist/Users/UserTrii.d.ts
CHANGED
|
@@ -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
|
+
}
|
package/dist/Users/UserTrii.js
CHANGED