@glissandoo/lib 1.74.3 → 1.75.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.
@@ -87,4 +87,5 @@ export default class Group extends GroupBasic<GroupData> {
87
87
  get visitedDashboardAt(): Record<string, FirebaseFirestore.Timestamp>;
88
88
  get onboardingMessages(): import("./types").GroupOnboardingMessage[];
89
89
  get rollcallLink(): string | null;
90
+ get subscriptionId(): string | null;
90
91
  }
@@ -234,5 +234,8 @@ class Group extends basic_1.default {
234
234
  get rollcallLink() {
235
235
  return this.data.rollcallLink || null;
236
236
  }
237
+ get subscriptionId() {
238
+ return this.data.subscriptionId || null;
239
+ }
237
240
  }
238
241
  exports.default = Group;
@@ -168,6 +168,7 @@ export interface GroupData extends GroupBasicData {
168
168
  trialEndAt: Timestamp | null;
169
169
  visitedDashboardAt: Record<string, Timestamp>;
170
170
  onboardingMessages: GroupOnboardingMessage[];
171
+ subscriptionId: string | null;
171
172
  readonly createdOn: GroupCreatedOn;
172
173
  readonly owner: DocumentReference;
173
174
  readonly createdAt: Timestamp;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glissandoo/lib",
3
- "version": "1.74.3",
3
+ "version": "1.75.0",
4
4
  "description": "Glissandoo library js",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",