@demind-inc/core 1.7.23 → 1.7.25

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.
package/dist/constants.js CHANGED
@@ -67,6 +67,7 @@ exports.AVAILABLE_TODO_INTEGRATIONS_TYPE = [
67
67
  "todoist",
68
68
  "ticktick",
69
69
  "github",
70
+ "notion",
70
71
  ];
71
72
  exports.ALL_TODO_INTEGRATIONS_TYPE = [
72
73
  "trello",
@@ -98,6 +98,7 @@ export interface CalendarEventRecurrence {
98
98
  }
99
99
  export interface CalendarRoutineFrom {
100
100
  routineActivityId: string;
101
+ completed?: boolean;
101
102
  }
102
103
  export type CalendarScheduleFrom = "todo" | "activity" | "calendar" | "energyBoost" | "aiScheduler" | "sleep" | "meal" | "routine";
103
104
  export type CalendarEventType = "default" | "outOfOffice" | "focusTime" | "workingLocation" | "other";
@@ -10,6 +10,7 @@ export interface Token {
10
10
  google_calendars?: CalendarTokenInfo[];
11
11
  calendly?: TokenInfo;
12
12
  outlook_calendars?: CalendarTokenInfo[];
13
+ notion?: TokenInfo;
13
14
  }
14
15
  export interface TokenInfo {
15
16
  refresh?: string;
package/lib/constants.ts CHANGED
@@ -75,6 +75,7 @@ export const AVAILABLE_TODO_INTEGRATIONS_TYPE: TodoIntegrationType[] = [
75
75
  "todoist",
76
76
  "ticktick",
77
77
  "github",
78
+ "notion",
78
79
  ];
79
80
  export const ALL_TODO_INTEGRATIONS_TYPE: TodoIntegrationType[] = [
80
81
  "trello",
@@ -106,6 +106,7 @@ export interface CalendarEventRecurrence {
106
106
 
107
107
  export interface CalendarRoutineFrom {
108
108
  routineActivityId: string;
109
+ completed?: boolean;
109
110
  }
110
111
 
111
112
  export type CalendarScheduleFrom =
@@ -10,6 +10,7 @@ export interface Token {
10
10
  google_calendars?: CalendarTokenInfo[];
11
11
  calendly?: TokenInfo;
12
12
  outlook_calendars?: CalendarTokenInfo[];
13
+ notion?: TokenInfo;
13
14
  }
14
15
 
15
16
  export interface TokenInfo {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@demind-inc/core",
3
- "version": "1.7.23",
3
+ "version": "1.7.25",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {