@demind-inc/core 1.5.65 → 1.5.67

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.
@@ -82,7 +82,7 @@ export interface CalendarAutoScheduleFrom {
82
82
  id: string;
83
83
  chatSessionId?: string;
84
84
  predicted?: boolean;
85
- edited?: boolean;
85
+ editedManually?: boolean;
86
86
  }
87
87
  export type CalendarEventShowAs = "busy" | "available";
88
88
  export type CalendarEventVisibility = "default" | "public" | "private" | "confidential";
@@ -50,6 +50,8 @@ export interface TaskItem {
50
50
  deleted?: boolean;
51
51
  category?: TaskCategorySet;
52
52
  recurring?: boolean;
53
+ parentId?: string;
54
+ childOrder?: number;
53
55
  rawJson?: any;
54
56
  sortIndex?: number;
55
57
  }
@@ -103,7 +103,7 @@ export interface CalendarAutoScheduleFrom {
103
103
  id: string;
104
104
  chatSessionId?: string;
105
105
  predicted?: boolean;
106
- edited?: boolean;
106
+ editedManually?: boolean;
107
107
  }
108
108
 
109
109
  export type CalendarEventShowAs = "busy" | "available";
@@ -55,6 +55,8 @@ export interface TaskItem {
55
55
  deleted?: boolean;
56
56
  category?: TaskCategorySet;
57
57
  recurring?: boolean;
58
+ parentId?: string;
59
+ childOrder?: number;
58
60
  rawJson?: any;
59
61
  sortIndex?: number;
60
62
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@demind-inc/core",
3
- "version": "1.5.65",
3
+ "version": "1.5.67",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {