@demind-inc/core 1.6.70 → 1.6.72
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/models/User.js
CHANGED
|
@@ -9,13 +9,13 @@ exports.stripeLookupKeySet = {
|
|
|
9
9
|
"beta_yearly_prod",
|
|
10
10
|
],
|
|
11
11
|
basic: [
|
|
12
|
-
|
|
12
|
+
"basic_monthly_staging",
|
|
13
13
|
"basic_yearly_staging",
|
|
14
14
|
"basic_lifetime_staging",
|
|
15
|
-
"basic_weekly_staging",
|
|
16
|
-
|
|
15
|
+
//"basic_weekly_staging", //Remove weekly plan as of 2025-11-06 https://www.notion.so/demind-inc/Paywall-Monthly-no-trial-vs-Yearly-trial-29d7c97113e680118193e3fd28acf3ab
|
|
16
|
+
"basic_monthly_prod",
|
|
17
17
|
"basic_yearly_prod",
|
|
18
18
|
"basic_lifetime_prod",
|
|
19
|
-
"basic_weekly_prod",
|
|
19
|
+
//"basic_weekly_prod",
|
|
20
20
|
],
|
|
21
21
|
};
|
package/lib/models/Preference.ts
CHANGED
package/lib/models/User.ts
CHANGED
|
@@ -148,14 +148,14 @@ export const stripeLookupKeySet: Record<"beta" | "basic", StripeLookupkey[]> = {
|
|
|
148
148
|
"beta_yearly_prod",
|
|
149
149
|
],
|
|
150
150
|
basic: [
|
|
151
|
-
|
|
151
|
+
"basic_monthly_staging",
|
|
152
152
|
"basic_yearly_staging",
|
|
153
153
|
"basic_lifetime_staging",
|
|
154
|
-
"basic_weekly_staging",
|
|
155
|
-
|
|
154
|
+
//"basic_weekly_staging", //Remove weekly plan as of 2025-11-06 https://www.notion.so/demind-inc/Paywall-Monthly-no-trial-vs-Yearly-trial-29d7c97113e680118193e3fd28acf3ab
|
|
155
|
+
"basic_monthly_prod",
|
|
156
156
|
"basic_yearly_prod",
|
|
157
157
|
"basic_lifetime_prod",
|
|
158
|
-
"basic_weekly_prod",
|
|
158
|
+
//"basic_weekly_prod",
|
|
159
159
|
],
|
|
160
160
|
};
|
|
161
161
|
|