@demind-inc/core 1.7.25 → 1.7.27
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
CHANGED
|
@@ -37,6 +37,7 @@ export interface User {
|
|
|
37
37
|
sharedAccessIds?: string[];
|
|
38
38
|
referree?: UserReferreeInfo;
|
|
39
39
|
referrer?: UserReferrerInfo;
|
|
40
|
+
authProvider?: AuthProvider;
|
|
40
41
|
}
|
|
41
42
|
export interface UserReferreeInfo {
|
|
42
43
|
referralCodeApplied?: string;
|
|
@@ -82,6 +83,7 @@ export interface OnboardingStatus {
|
|
|
82
83
|
tutorial?: OnboardingStatusOption;
|
|
83
84
|
}
|
|
84
85
|
export type OnboardingStatusOption = "notAnswered" | "answered" | "skipped";
|
|
86
|
+
export type AuthProvider = "google" | "apple";
|
|
85
87
|
export interface Subscription {
|
|
86
88
|
productId: string;
|
|
87
89
|
subscribedDate: string;
|
package/lib/models/Preference.ts
CHANGED
package/lib/models/User.ts
CHANGED
|
@@ -38,6 +38,7 @@ export interface User {
|
|
|
38
38
|
sharedAccessIds?: string[];
|
|
39
39
|
referree?: UserReferreeInfo; // in case a user is an invitee.
|
|
40
40
|
referrer?: UserReferrerInfo; // in case a user is an inviter.
|
|
41
|
+
authProvider?: AuthProvider;
|
|
41
42
|
}
|
|
42
43
|
|
|
43
44
|
export interface UserReferreeInfo {
|
|
@@ -91,6 +92,7 @@ export interface OnboardingStatus {
|
|
|
91
92
|
}
|
|
92
93
|
|
|
93
94
|
export type OnboardingStatusOption = "notAnswered" | "answered" | "skipped";
|
|
95
|
+
export type AuthProvider = "google" | "apple";
|
|
94
96
|
|
|
95
97
|
export interface Subscription {
|
|
96
98
|
productId: string;
|