@trii/types 2.10.603 → 2.10.605

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.
@@ -25,6 +25,7 @@ export interface IEvent {
25
25
  calendarId?: string;
26
26
  rule?: string;
27
27
  parentId?: string;
28
+ originalOccurrenceDate?: Date;
28
29
  notifications: IEventNotification[];
29
30
  createdAt: Date;
30
31
  createdBy: UserInfo;
@@ -1,3 +1,4 @@
1
+ import { IContactInfo } from "../Contacts";
1
2
  import { UserInfo } from "../Users";
2
3
  import { ICalendarItemBase } from "./Common";
3
4
  export type TaskStatus = "NEEDS_ACTION" | "IN_PROGRESS" | "COMPLETED" | "CANCELLED";
@@ -13,5 +14,5 @@ export interface ICalendarTask extends ICalendarItemBase {
13
14
  completedAt?: Date;
14
15
  completedBy?: UserInfo;
15
16
  /** Optional: support subtasks */
16
- parentTaskId?: string;
17
+ relatedContact: IContactInfo;
17
18
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trii/types",
3
- "version": "2.10.603",
3
+ "version": "2.10.605",
4
4
  "description": "Types definitions for Trii projects - ",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",