@glissandoo/lib 1.108.5 → 1.108.7

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.
@@ -62,6 +62,6 @@ export declare namespace EventoPlayerFbFunctionsTypes {
62
62
  eventId: string;
63
63
  }
64
64
  interface VerifyGeoLocResult {
65
- status: 'success' | 'outOfRange' | 'outOfTime' | 'noLocation';
65
+ status: 'success' | 'outOfRange' | 'outOfTime' | 'noLocation' | 'disabledVerify';
66
66
  }
67
67
  }
@@ -88,4 +88,5 @@ export default class User extends UserExtended<UserData> {
88
88
  get analyticsEnabled(): boolean;
89
89
  get lastBiweeklyEmailAt(): FirebaseFirestore.Timestamp | null;
90
90
  get groupInvites(): string[];
91
+ get whatsNew(): Record<string, boolean>;
91
92
  }
@@ -174,5 +174,8 @@ class User extends extended_1.default {
174
174
  get groupInvites() {
175
175
  return this.data.groupsInvite || [];
176
176
  }
177
+ get whatsNew() {
178
+ return this.data.whatsNew || {};
179
+ }
177
180
  }
178
181
  exports.default = User;
@@ -122,6 +122,7 @@ export interface UserData extends UserExtendedData {
122
122
  lastAppLoginAt: Timestamp | null;
123
123
  lastWebLoginAt: Timestamp | null;
124
124
  groupsInvite: string[];
125
+ whatsNew: Record<string, boolean>;
125
126
  }
126
127
  export interface AUserBasicData extends UserBasicData {
127
128
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glissandoo/lib",
3
- "version": "1.108.5",
3
+ "version": "1.108.7",
4
4
  "description": "Glissandoo library js",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",