@demind-inc/core 1.5.61 → 1.5.62
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.d.ts +1 -1
- package/dist/models/User.js +2 -0
- package/lib/models/User.ts +5 -1
- package/package.json +1 -1
package/dist/models/User.d.ts
CHANGED
|
@@ -91,7 +91,7 @@ export interface ConvertedReferralCampaign {
|
|
|
91
91
|
campaignId: string;
|
|
92
92
|
rewardfulClientId?: string;
|
|
93
93
|
}
|
|
94
|
-
export type StripeLookupkey = "beta_monthly_staging" | "beta_yearly_staging" | "basic_monthly_staging" | "basic_yearly_staging" | "beta_monthly_prod" | "beta_yearly_prod" | "basic_monthly_prod" | "basic_yearly_prod";
|
|
94
|
+
export type StripeLookupkey = "beta_monthly_staging" | "beta_yearly_staging" | "basic_monthly_staging" | "basic_yearly_staging" | "basic_lifetime_staging" | "beta_monthly_prod" | "beta_yearly_prod" | "basic_monthly_prod" | "basic_yearly_prod" | "basic_lifetime_prod";
|
|
95
95
|
export declare const stripeLookupKeySet: Record<"beta" | "basic", StripeLookupkey[]>;
|
|
96
96
|
export interface SubscriptionPrice {
|
|
97
97
|
currency: string;
|
package/dist/models/User.js
CHANGED
package/lib/models/User.ts
CHANGED
|
@@ -106,10 +106,12 @@ export type StripeLookupkey =
|
|
|
106
106
|
| "beta_yearly_staging"
|
|
107
107
|
| "basic_monthly_staging"
|
|
108
108
|
| "basic_yearly_staging"
|
|
109
|
+
| "basic_lifetime_staging"
|
|
109
110
|
| "beta_monthly_prod"
|
|
110
111
|
| "beta_yearly_prod"
|
|
111
112
|
| "basic_monthly_prod"
|
|
112
|
-
| "basic_yearly_prod"
|
|
113
|
+
| "basic_yearly_prod"
|
|
114
|
+
| "basic_lifetime_prod";
|
|
113
115
|
|
|
114
116
|
export const stripeLookupKeySet: Record<"beta" | "basic", StripeLookupkey[]> = {
|
|
115
117
|
beta: [
|
|
@@ -121,8 +123,10 @@ export const stripeLookupKeySet: Record<"beta" | "basic", StripeLookupkey[]> = {
|
|
|
121
123
|
basic: [
|
|
122
124
|
"basic_monthly_staging",
|
|
123
125
|
"basic_yearly_staging",
|
|
126
|
+
"basic_lifetime_staging",
|
|
124
127
|
"basic_monthly_prod",
|
|
125
128
|
"basic_yearly_prod",
|
|
129
|
+
"basic_lifetime_prod",
|
|
126
130
|
],
|
|
127
131
|
};
|
|
128
132
|
|