@trii/types 2.10.611 → 2.10.613

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.
@@ -4,9 +4,15 @@ export interface ICalendar {
4
4
  userId: string;
5
5
  title: string;
6
6
  color: string;
7
+ googleCalendar?: GoogleCalendar;
7
8
  createdAt: Date;
8
9
  updatedAt?: Date;
9
10
  deletedAt?: Date;
10
11
  /** List of user IDs (userId) with whom the calendar is shared */
11
12
  sharedWith?: string[];
12
13
  }
14
+ export interface GoogleCalendar {
15
+ id: string;
16
+ name: string;
17
+ account: string;
18
+ }
@@ -1,3 +1,4 @@
1
+ import { Contacts } from "..";
1
2
  export interface ITask {
2
3
  id: string;
3
4
  spaceId: string;
@@ -7,4 +8,5 @@ export interface ITask {
7
8
  startAt?: Date;
8
9
  isCompleted: boolean;
9
10
  contactId: string;
11
+ relatedContact?: Contacts.IContactInfo;
10
12
  }
@@ -21,7 +21,6 @@ declare class UserProfile_Datasync {
21
21
  }
22
22
  declare class UserProfile_Signature {
23
23
  enabled: boolean;
24
- editConfig: boolean;
25
24
  }
26
25
  declare class UserProfile_Agent {
27
26
  inactivityCheck: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trii/types",
3
- "version": "2.10.611",
3
+ "version": "2.10.613",
4
4
  "description": "Types definitions for Trii projects - ",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",