@demind-inc/core 1.7.1 → 1.7.3
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.
|
@@ -80,6 +80,10 @@ export interface TaskItemAdditionalParamsGithub {
|
|
|
80
80
|
export interface TaskItemAdditionalParamsTodoist {
|
|
81
81
|
v2Id: string;
|
|
82
82
|
}
|
|
83
|
+
export interface WebhookStatusSet {
|
|
84
|
+
status: WebhookStatus;
|
|
85
|
+
syncedAt: number;
|
|
86
|
+
}
|
|
83
87
|
export interface TaskItem {
|
|
84
88
|
taskId: string;
|
|
85
89
|
originalTaskId: string;
|
|
@@ -107,8 +111,8 @@ export interface TaskItem {
|
|
|
107
111
|
sortIndex?: number;
|
|
108
112
|
subTasks?: TaskItem[];
|
|
109
113
|
priority?: TaskPriority;
|
|
110
|
-
linkedCalendarWebhookStatus?:
|
|
111
|
-
taskWebhookStatus?:
|
|
114
|
+
linkedCalendarWebhookStatus?: WebhookStatusSet;
|
|
115
|
+
taskWebhookStatus?: WebhookStatusSet;
|
|
112
116
|
additionalParams?: {
|
|
113
117
|
github?: TaskItemAdditionalParamsGithub;
|
|
114
118
|
todoist?: TaskItemAdditionalParamsTodoist;
|
package/lib/models/TodoTasks.ts
CHANGED
|
@@ -91,6 +91,11 @@ export interface TaskItemAdditionalParamsTodoist {
|
|
|
91
91
|
v2Id: string;
|
|
92
92
|
}
|
|
93
93
|
|
|
94
|
+
export interface WebhookStatusSet {
|
|
95
|
+
status: WebhookStatus;
|
|
96
|
+
syncedAt: number;
|
|
97
|
+
}
|
|
98
|
+
|
|
94
99
|
export interface TaskItem {
|
|
95
100
|
taskId: string;
|
|
96
101
|
originalTaskId: string;
|
|
@@ -118,8 +123,8 @@ export interface TaskItem {
|
|
|
118
123
|
sortIndex?: number;
|
|
119
124
|
subTasks?: TaskItem[];
|
|
120
125
|
priority?: TaskPriority;
|
|
121
|
-
linkedCalendarWebhookStatus?:
|
|
122
|
-
taskWebhookStatus?:
|
|
126
|
+
linkedCalendarWebhookStatus?: WebhookStatusSet;
|
|
127
|
+
taskWebhookStatus?: WebhookStatusSet;
|
|
123
128
|
additionalParams?: {
|
|
124
129
|
github?: TaskItemAdditionalParamsGithub;
|
|
125
130
|
todoist?: TaskItemAdditionalParamsTodoist;
|