@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.
package/models/Group/index.d.ts
CHANGED
|
@@ -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
|
}
|
package/models/Group/index.js
CHANGED
package/models/Group/types.d.ts
CHANGED
|
@@ -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;
|