@glissandoo/lib 1.71.0 → 1.73.0
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/models/Group/index.d.ts
CHANGED
|
@@ -86,4 +86,5 @@ export default class Group extends GroupBasic<GroupData> {
|
|
|
86
86
|
get instrumentsIds(): (import("../../helpers/instruments").DefaultInstrumentId | `customInstrument-${string}`)[];
|
|
87
87
|
get visitedDashboardAt(): Record<string, FirebaseFirestore.Timestamp>;
|
|
88
88
|
get onboardingMessages(): import("./types").GroupOnboardingMessage[];
|
|
89
|
+
get rollcallLink(): string | null;
|
|
89
90
|
}
|
package/models/Group/index.js
CHANGED
package/models/Group/types.d.ts
CHANGED
|
@@ -73,6 +73,7 @@ export interface GroupAlgoliaData extends Omit<GroupBasicData, 'location'> {
|
|
|
73
73
|
status: GroupStatus;
|
|
74
74
|
si: number;
|
|
75
75
|
siChange: 'up' | 'down' | 'equal';
|
|
76
|
+
createdOn: GroupCreatedOn;
|
|
76
77
|
createdAt: number;
|
|
77
78
|
memberForecast: string;
|
|
78
79
|
sites: boolean;
|
|
@@ -140,6 +141,7 @@ export interface GroupData extends GroupBasicData {
|
|
|
140
141
|
activeInvitationLink: boolean;
|
|
141
142
|
invitationEmails: string[];
|
|
142
143
|
invitationLink: string | null;
|
|
144
|
+
rollcallLink: string | null;
|
|
143
145
|
shortDynamicLink: string | null;
|
|
144
146
|
intercom_id: string | null;
|
|
145
147
|
description: string | null;
|
package/models/User/types.d.ts
CHANGED
|
@@ -19,7 +19,8 @@ export declare enum UserNotificationSettings {
|
|
|
19
19
|
InterestLost = "enabled_interest_lost"
|
|
20
20
|
}
|
|
21
21
|
export declare enum UserEmailSettings {
|
|
22
|
-
ReminderBiweeklyEvents = "enabled_reminder_biweekly_events"
|
|
22
|
+
ReminderBiweeklyEvents = "enabled_reminder_biweekly_events",
|
|
23
|
+
Newsletter = "enabled_newsletter"
|
|
23
24
|
}
|
|
24
25
|
export declare enum UserEventsFilter {
|
|
25
26
|
Month = 1,
|
package/models/User/types.js
CHANGED
|
@@ -26,6 +26,7 @@ var UserNotificationSettings;
|
|
|
26
26
|
var UserEmailSettings;
|
|
27
27
|
(function (UserEmailSettings) {
|
|
28
28
|
UserEmailSettings["ReminderBiweeklyEvents"] = "enabled_reminder_biweekly_events";
|
|
29
|
+
UserEmailSettings["Newsletter"] = "enabled_newsletter";
|
|
29
30
|
})(UserEmailSettings = exports.UserEmailSettings || (exports.UserEmailSettings = {}));
|
|
30
31
|
var UserEventsFilter;
|
|
31
32
|
(function (UserEventsFilter) {
|