@trii/types 2.10.344 → 2.10.346

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.
@@ -224,4 +224,12 @@ export interface IList {
224
224
  count: number;
225
225
  createdAt: Date;
226
226
  }
227
+ export interface IContactChangeLog {
228
+ timeStamp: Date;
229
+ type: string;
230
+ action: ContactLogAction;
231
+ details: string;
232
+ uid: string;
233
+ }
234
+ export declare type ContactLogAction = 'update' | 'create' | 'import' | 'join' | 'delete';
227
235
  export {};
@@ -16,6 +16,7 @@ export interface Post {
16
16
  participants: UserInfo[];
17
17
  archived: boolean;
18
18
  createdAt: Date;
19
+ updatedAt: Date;
19
20
  }
20
21
  export interface PostStats {
21
22
  likes: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trii/types",
3
- "version": "2.10.344",
3
+ "version": "2.10.346",
4
4
  "description": "Types definitions for Trii projects - ",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",