@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.
@@ -22,6 +22,7 @@ export interface FeatureFlags {
22
22
  FF_ai_assistant_v2?: boolean;
23
23
  FF_github_integrations?: boolean;
24
24
  FF_chat_view_v2?: boolean;
25
+ FF_ai_scheduler_adjust_v2?: boolean;
25
26
  release_logs?: {
26
27
  releases: ReleaseLog[];
27
28
  };
@@ -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?: WebhookStatus;
111
- taskWebhookStatus?: WebhookStatus;
114
+ linkedCalendarWebhookStatus?: WebhookStatusSet;
115
+ taskWebhookStatus?: WebhookStatusSet;
112
116
  additionalParams?: {
113
117
  github?: TaskItemAdditionalParamsGithub;
114
118
  todoist?: TaskItemAdditionalParamsTodoist;
@@ -22,6 +22,7 @@ export interface FeatureFlags {
22
22
  FF_ai_assistant_v2?: boolean;
23
23
  FF_github_integrations?: boolean;
24
24
  FF_chat_view_v2?: boolean;
25
+ FF_ai_scheduler_adjust_v2?: boolean;
25
26
  release_logs?: {
26
27
  releases: ReleaseLog[];
27
28
  };
@@ -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?: WebhookStatus;
122
- taskWebhookStatus?: WebhookStatus;
126
+ linkedCalendarWebhookStatus?: WebhookStatusSet;
127
+ taskWebhookStatus?: WebhookStatusSet;
123
128
  additionalParams?: {
124
129
  github?: TaskItemAdditionalParamsGithub;
125
130
  todoist?: TaskItemAdditionalParamsTodoist;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@demind-inc/core",
3
- "version": "1.7.1",
3
+ "version": "1.7.3",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {