@glissandoo/lib 1.108.14 → 1.108.15

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.
@@ -14,4 +14,5 @@ export default class UserGroup extends GroupBasic<UserGroupData> {
14
14
  get isAdmin(): boolean;
15
15
  get joinedAt(): FirebaseFirestore.Timestamp;
16
16
  get order(): number;
17
+ get partnershipId(): string | null;
17
18
  }
@@ -39,5 +39,8 @@ class UserGroup extends basic_1.default {
39
39
  get order() {
40
40
  return this.data.order || 0;
41
41
  }
42
+ get partnershipId() {
43
+ return this.data.partnershipId || null;
44
+ }
42
45
  }
43
46
  exports.default = UserGroup;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glissandoo/lib",
3
- "version": "1.108.14",
3
+ "version": "1.108.15",
4
4
  "description": "Glissandoo library js",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",