wedance-shared 1.0.146 → 1.0.148
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/types/user.d.ts +6 -0
- package/package.json +1 -1
package/dist/types/user.d.ts
CHANGED
|
@@ -24,6 +24,7 @@ export type User = {
|
|
|
24
24
|
favoriteDance?: DanceTag;
|
|
25
25
|
language: LanguageCode;
|
|
26
26
|
fcmTokens?: string[];
|
|
27
|
+
fcmTokensOrg?: string[];
|
|
27
28
|
notificationPreferences?: NotificationPreferences;
|
|
28
29
|
appVersion?: string;
|
|
29
30
|
deviceModel?: string;
|
|
@@ -48,6 +49,11 @@ export type NotificationPreferences = {
|
|
|
48
49
|
eventUpdates: boolean;
|
|
49
50
|
eventReminders: boolean;
|
|
50
51
|
eventDiscussions: boolean;
|
|
52
|
+
/**
|
|
53
|
+
* Preferences for notifications for organizers
|
|
54
|
+
*/
|
|
55
|
+
organizerTicketingPushNotifications: boolean;
|
|
56
|
+
organizerTicketingEmailNotifications: boolean;
|
|
51
57
|
};
|
|
52
58
|
/**
|
|
53
59
|
* This is used to show who is going to the event
|
package/package.json
CHANGED