@demind-inc/core 1.6.74 → 1.6.76
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 +2 -1
- package/lib/models/User.ts +6 -1
- package/package.json +1 -1
package/dist/models/User.d.ts
CHANGED
|
@@ -76,6 +76,7 @@ export interface OnboardingStatus {
|
|
|
76
76
|
aiAssistantDemo?: OnboardingStatusOption;
|
|
77
77
|
allowNotification?: OnboardingStatusOption;
|
|
78
78
|
beforePaywall?: OnboardingStatusOption;
|
|
79
|
+
afterPaywall?: OnboardingStatusOption;
|
|
79
80
|
aiSchedulerPractice?: OnboardingStatusOption;
|
|
80
81
|
initialSync?: OnboardingStatusOption;
|
|
81
82
|
tutorial?: OnboardingStatusOption;
|
|
@@ -102,7 +103,7 @@ export interface Subscription {
|
|
|
102
103
|
discountId: string;
|
|
103
104
|
};
|
|
104
105
|
}
|
|
105
|
-
export type SubscriptionRecurring = "MONTHLY" | "ANNUAL" | "WEEKLY";
|
|
106
|
+
export type SubscriptionRecurring = "MONTHLY" | "ANNUAL" | "WEEKLY" | "LIFETIME";
|
|
106
107
|
export interface GrantSubscription {
|
|
107
108
|
productId: string;
|
|
108
109
|
purchaseDate?: string;
|
package/lib/models/User.ts
CHANGED
|
@@ -84,6 +84,7 @@ export interface OnboardingStatus {
|
|
|
84
84
|
aiAssistantDemo?: OnboardingStatusOption;
|
|
85
85
|
allowNotification?: OnboardingStatusOption;
|
|
86
86
|
beforePaywall?: OnboardingStatusOption;
|
|
87
|
+
afterPaywall?: OnboardingStatusOption;
|
|
87
88
|
aiSchedulerPractice?: OnboardingStatusOption; //@deprecated
|
|
88
89
|
initialSync?: OnboardingStatusOption; // @deprecated
|
|
89
90
|
tutorial?: OnboardingStatusOption; // @deprecated
|
|
@@ -113,7 +114,11 @@ export interface Subscription {
|
|
|
113
114
|
};
|
|
114
115
|
}
|
|
115
116
|
|
|
116
|
-
export type SubscriptionRecurring =
|
|
117
|
+
export type SubscriptionRecurring =
|
|
118
|
+
| "MONTHLY"
|
|
119
|
+
| "ANNUAL"
|
|
120
|
+
| "WEEKLY"
|
|
121
|
+
| "LIFETIME";
|
|
117
122
|
|
|
118
123
|
export interface GrantSubscription {
|
|
119
124
|
productId: string;
|