@demind-inc/core 1.7.6 → 1.7.8

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.
@@ -118,6 +118,7 @@ export interface TaskItem {
118
118
  todoist?: TaskItemAdditionalParamsTodoist;
119
119
  [key: string]: any;
120
120
  };
121
+ completedDates?: string[];
121
122
  }
122
123
  export interface TaskCategorySet {
123
124
  id: string;
@@ -114,8 +114,8 @@ export interface ConvertedReferralCampaign {
114
114
  campaignId: string;
115
115
  rewardfulClientId?: string;
116
116
  }
117
- export type StripeLookupkey = "beta_monthly_staging" | "beta_yearly_staging" | "basic_monthly_staging" | "basic_yearly_staging" | "basic_lifetime_staging" | "basic_weekly_staging" | "beta_monthly_prod" | "beta_yearly_prod" | "basic_monthly_prod" | "basic_yearly_prod" | "basic_weekly_prod" | "basic_lifetime_prod";
118
- export declare const stripeLookupKeySet: Record<"beta" | "basic", StripeLookupkey[]>;
117
+ export type StripeLookupkey = "beta_monthly_staging" | "beta_yearly_staging" | "basic_monthly_staging" | "basic_yearly_staging" | "basic_lifetime_staging" | "basic_weekly_staging" | "beta_monthly_prod" | "beta_yearly_prod" | "basic_monthly_prod" | "basic_yearly_prod" | "basic_weekly_prod" | "basic_lifetime_prod" | "basic_monthly_price_up_202512_staging" | "basic_yearly_price_up_202512_staging" | "basic_monthly_price_up_202512_prod" | "basic_yearly_price_up_202512_prod";
118
+ export declare const stripeLookupKeySet: Record<"beta" | "basic" | "basic_price_up_202512", StripeLookupkey[]>;
119
119
  export interface SubscriptionPrice {
120
120
  currency: string;
121
121
  amount: number;
@@ -18,4 +18,12 @@ exports.stripeLookupKeySet = {
18
18
  "basic_lifetime_prod",
19
19
  //"basic_weekly_prod",
20
20
  ],
21
+ basic_price_up_202512: [
22
+ "basic_monthly_price_up_202512_staging",
23
+ "basic_yearly_price_up_202512_staging",
24
+ "basic_lifetime_staging",
25
+ "basic_monthly_price_up_202512_prod",
26
+ "basic_yearly_price_up_202512_prod",
27
+ "basic_lifetime_prod",
28
+ ],
21
29
  };
@@ -130,6 +130,7 @@ export interface TaskItem {
130
130
  todoist?: TaskItemAdditionalParamsTodoist;
131
131
  [key: string]: any;
132
132
  };
133
+ completedDates?: string[];
133
134
  }
134
135
 
135
136
  export interface TaskCategorySet {
@@ -144,9 +144,16 @@ export type StripeLookupkey =
144
144
  | "basic_monthly_prod"
145
145
  | "basic_yearly_prod"
146
146
  | "basic_weekly_prod"
147
- | "basic_lifetime_prod";
148
-
149
- export const stripeLookupKeySet: Record<"beta" | "basic", StripeLookupkey[]> = {
147
+ | "basic_lifetime_prod"
148
+ | "basic_monthly_price_up_202512_staging"
149
+ | "basic_yearly_price_up_202512_staging"
150
+ | "basic_monthly_price_up_202512_prod"
151
+ | "basic_yearly_price_up_202512_prod";
152
+
153
+ export const stripeLookupKeySet: Record<
154
+ "beta" | "basic" | "basic_price_up_202512",
155
+ StripeLookupkey[]
156
+ > = {
150
157
  beta: [
151
158
  "beta_monthly_staging",
152
159
  "beta_yearly_staging",
@@ -163,6 +170,14 @@ export const stripeLookupKeySet: Record<"beta" | "basic", StripeLookupkey[]> = {
163
170
  "basic_lifetime_prod",
164
171
  //"basic_weekly_prod",
165
172
  ],
173
+ basic_price_up_202512: [
174
+ "basic_monthly_price_up_202512_staging",
175
+ "basic_yearly_price_up_202512_staging",
176
+ "basic_lifetime_staging",
177
+ "basic_monthly_price_up_202512_prod",
178
+ "basic_yearly_price_up_202512_prod",
179
+ "basic_lifetime_prod",
180
+ ],
166
181
  };
167
182
 
168
183
  export interface SubscriptionPrice {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@demind-inc/core",
3
- "version": "1.7.6",
3
+ "version": "1.7.8",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {