@trii/types 2.10.346 → 2.10.348
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.
|
@@ -229,7 +229,7 @@ export interface IContactChangeLog {
|
|
|
229
229
|
type: string;
|
|
230
230
|
action: ContactLogAction;
|
|
231
231
|
details: string;
|
|
232
|
-
|
|
232
|
+
userId: string;
|
|
233
233
|
}
|
|
234
234
|
export declare type ContactLogAction = 'update' | 'create' | 'import' | 'join' | 'delete';
|
|
235
235
|
export {};
|
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