@demind-inc/core 1.7.34 → 1.7.37

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.
@@ -8,8 +8,8 @@ export interface Routine {
8
8
  export interface RoutineActivity {
9
9
  routineActivityId: string;
10
10
  name: string;
11
- startTime?: string;
12
- endTime?: string;
11
+ startTime?: string | null;
12
+ endTime?: string | null;
13
13
  durationMin: number;
14
14
  shouldAutoSuggest?: boolean;
15
15
  suggestReason?: string;
package/dist/types.d.ts CHANGED
@@ -164,4 +164,5 @@ export interface ChatAdjustmentTask {
164
164
  completed?: boolean;
165
165
  boardId?: string;
166
166
  appFrom?: TodoAppFrom;
167
+ deleted?: boolean;
167
168
  }
@@ -10,8 +10,8 @@ export interface Routine {
10
10
  export interface RoutineActivity {
11
11
  routineActivityId: string;
12
12
  name: string;
13
- startTime?: string;
14
- endTime?: string;
13
+ startTime?: string | null;
14
+ endTime?: string | null;
15
15
  durationMin: number;
16
16
  shouldAutoSuggest?: boolean;
17
17
  suggestReason?: string;
package/lib/types.ts CHANGED
@@ -270,4 +270,5 @@ export interface ChatAdjustmentTask {
270
270
  completed?: boolean;
271
271
  boardId?: string;
272
272
  appFrom?: TodoAppFrom;
273
+ deleted?: boolean;
273
274
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@demind-inc/core",
3
- "version": "1.7.34",
3
+ "version": "1.7.37",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {