@glissandoo/lib 1.71.0 → 1.72.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.
@@ -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
  }
@@ -231,5 +231,8 @@ class Group extends basic_1.default {
231
231
  get onboardingMessages() {
232
232
  return this.data.onboardingMessages || [];
233
233
  }
234
+ get rollcallLink() {
235
+ return this.data.rollcallLink || null;
236
+ }
234
237
  }
235
238
  exports.default = Group;
@@ -140,6 +140,7 @@ export interface GroupData extends GroupBasicData {
140
140
  activeInvitationLink: boolean;
141
141
  invitationEmails: string[];
142
142
  invitationLink: string | null;
143
+ rollcallLink: string | null;
143
144
  shortDynamicLink: string | null;
144
145
  intercom_id: string | null;
145
146
  description: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glissandoo/lib",
3
- "version": "1.71.0",
3
+ "version": "1.72.0",
4
4
  "description": "Glissandoo library js",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",