@demind-inc/core 1.6.63 → 1.6.64

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.
@@ -49,8 +49,6 @@ export interface DateTimeSet {
49
49
  datetime?: string;
50
50
  date?: string;
51
51
  timezone?: string;
52
- autoSuggested?: boolean;
53
- autoSuggestedReason?: string;
54
52
  }
55
53
  export interface TaskRecurring {
56
54
  isRecurring: boolean;
@@ -105,12 +103,17 @@ export interface TaskItem {
105
103
  sortIndex?: number;
106
104
  subTasks?: TaskItem[];
107
105
  priority?: TaskPriority;
106
+ autoSuggested?: TaskItemAutoSuggested;
108
107
  additionalParams?: {
109
108
  github?: TaskItemAdditionalParamsGithub;
110
109
  todoist?: TaskItemAdditionalParamsTodoist;
111
110
  [key: string]: any;
112
111
  };
113
112
  }
113
+ export interface TaskItemAutoSuggested {
114
+ autoSuggested: boolean;
115
+ autoSuggestedReason?: string;
116
+ }
114
117
  export interface TaskCategorySet {
115
118
  id: string;
116
119
  name: string;
@@ -55,8 +55,6 @@ export interface DateTimeSet {
55
55
  datetime?: string;
56
56
  date?: string;
57
57
  timezone?: string;
58
- autoSuggested?: boolean;
59
- autoSuggestedReason?: string;
60
58
  }
61
59
 
62
60
  export interface TaskRecurring {
@@ -115,6 +113,7 @@ export interface TaskItem {
115
113
  sortIndex?: number;
116
114
  subTasks?: TaskItem[];
117
115
  priority?: TaskPriority;
116
+ autoSuggested?: TaskItemAutoSuggested;
118
117
  additionalParams?: {
119
118
  github?: TaskItemAdditionalParamsGithub;
120
119
  todoist?: TaskItemAdditionalParamsTodoist;
@@ -122,6 +121,11 @@ export interface TaskItem {
122
121
  };
123
122
  }
124
123
 
124
+ export interface TaskItemAutoSuggested {
125
+ autoSuggested: boolean;
126
+ autoSuggestedReason?: string;
127
+ }
128
+
125
129
  export interface TaskCategorySet {
126
130
  id: string;
127
131
  name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@demind-inc/core",
3
- "version": "1.6.63",
3
+ "version": "1.6.64",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {