@demind-inc/core 1.7.17 → 1.7.18

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.
@@ -20,6 +20,7 @@ export declare const DB_COLLECTION: {
20
20
  TODO_INTEGRATIONS: string;
21
21
  TODO_TASKS: string;
22
22
  TASK_ITEMS: string;
23
+ RECURRING_TASKS: string;
23
24
  TASK_LABELS_GROUP: string;
24
25
  TASK_LABELS: string;
25
26
  PREFERENCES: string;
package/dist/constants.js CHANGED
@@ -21,6 +21,7 @@ exports.DB_COLLECTION = {
21
21
  TODO_INTEGRATIONS: "todoIntegrations",
22
22
  TODO_TASKS: "todoTasks",
23
23
  TASK_ITEMS: "taskItems",
24
+ RECURRING_TASKS: "recurringTasks",
24
25
  TASK_LABELS_GROUP: "taskLabelsGroup",
25
26
  TASK_LABELS: "taskLabels",
26
27
  PREFERENCES: "preferences",
@@ -113,6 +113,7 @@ export interface TaskItem {
113
113
  rawJson?: any;
114
114
  sortIndex?: number;
115
115
  subTasks?: TaskItem[];
116
+ recurringInstances?: TaskRecurringInstance[];
116
117
  isRecurringChild?: boolean;
117
118
  parentTaskId?: string;
118
119
  priority?: TaskPriority;
package/lib/constants.ts CHANGED
@@ -21,6 +21,7 @@ export const DB_COLLECTION = {
21
21
  TODO_INTEGRATIONS: "todoIntegrations",
22
22
  TODO_TASKS: "todoTasks",
23
23
  TASK_ITEMS: "taskItems",
24
+ RECURRING_TASKS: "recurringTasks",
24
25
  TASK_LABELS_GROUP: "taskLabelsGroup",
25
26
  TASK_LABELS: "taskLabels",
26
27
  PREFERENCES: "preferences",
@@ -125,6 +125,7 @@ export interface TaskItem {
125
125
  rawJson?: any;
126
126
  sortIndex?: number;
127
127
  subTasks?: TaskItem[];
128
+ recurringInstances?: TaskRecurringInstance[];
128
129
  isRecurringChild?: boolean;
129
130
  parentTaskId?: string;
130
131
  priority?: TaskPriority;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@demind-inc/core",
3
- "version": "1.7.17",
3
+ "version": "1.7.18",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {