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