@demind-inc/core 1.6.75 → 1.6.77
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 +1 -0
- package/dist/models/User.d.ts +1 -1
- package/lib/constants.ts +1 -0
- package/lib/models/User.ts +5 -1
- package/package.json +1 -1
package/dist/constants.js
CHANGED
package/dist/models/User.d.ts
CHANGED
|
@@ -103,7 +103,7 @@ export interface Subscription {
|
|
|
103
103
|
discountId: string;
|
|
104
104
|
};
|
|
105
105
|
}
|
|
106
|
-
export type SubscriptionRecurring = "MONTHLY" | "ANNUAL" | "WEEKLY";
|
|
106
|
+
export type SubscriptionRecurring = "MONTHLY" | "ANNUAL" | "WEEKLY" | "LIFETIME";
|
|
107
107
|
export interface GrantSubscription {
|
|
108
108
|
productId: string;
|
|
109
109
|
purchaseDate?: string;
|
package/lib/constants.ts
CHANGED
package/lib/models/User.ts
CHANGED
|
@@ -114,7 +114,11 @@ export interface Subscription {
|
|
|
114
114
|
};
|
|
115
115
|
}
|
|
116
116
|
|
|
117
|
-
export type SubscriptionRecurring =
|
|
117
|
+
export type SubscriptionRecurring =
|
|
118
|
+
| "MONTHLY"
|
|
119
|
+
| "ANNUAL"
|
|
120
|
+
| "WEEKLY"
|
|
121
|
+
| "LIFETIME";
|
|
118
122
|
|
|
119
123
|
export interface GrantSubscription {
|
|
120
124
|
productId: string;
|