@demind-inc/core 1.6.64 → 1.6.66

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;
@@ -9,11 +9,11 @@ exports.stripeLookupKeySet = {
9
9
  "beta_yearly_prod",
10
10
  ],
11
11
  basic: [
12
- "basic_monthly_staging",
12
+ // "basic_monthly_staging", //Remove monthly plan as of 2025-10-27 https://www.notion.so/demind-inc/Paywall-weekly-vs-yearly-28c7c97113e68019adfeea16e6b21432
13
13
  "basic_yearly_staging",
14
14
  "basic_lifetime_staging",
15
15
  "basic_weekly_staging",
16
- "basic_monthly_prod",
16
+ // "basic_monthly_prod",
17
17
  "basic_yearly_prod",
18
18
  "basic_lifetime_prod",
19
19
  "basic_weekly_prod",
@@ -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;
@@ -148,11 +148,11 @@ export const stripeLookupKeySet: Record<"beta" | "basic", StripeLookupkey[]> = {
148
148
  "beta_yearly_prod",
149
149
  ],
150
150
  basic: [
151
- "basic_monthly_staging",
151
+ // "basic_monthly_staging", //Remove monthly plan as of 2025-10-27 https://www.notion.so/demind-inc/Paywall-weekly-vs-yearly-28c7c97113e68019adfeea16e6b21432
152
152
  "basic_yearly_staging",
153
153
  "basic_lifetime_staging",
154
154
  "basic_weekly_staging",
155
- "basic_monthly_prod",
155
+ // "basic_monthly_prod",
156
156
  "basic_yearly_prod",
157
157
  "basic_lifetime_prod",
158
158
  "basic_weekly_prod",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@demind-inc/core",
3
- "version": "1.6.64",
3
+ "version": "1.6.66",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {