@fnlb-project/shared 1.5.31 → 1.5.32

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.
@@ -131,6 +131,7 @@ export interface IConnectedBot extends IBot {
131
131
  friendsCount?: number;
132
132
  party?: {
133
133
  id?: string;
134
+ playlistId?: string;
134
135
  members: IPartyMember[];
135
136
  };
136
137
  }
@@ -140,6 +141,7 @@ export interface IConnectedClientBot extends IClientBot {
140
141
  friendsCount?: number;
141
142
  party?: {
142
143
  id?: string;
144
+ playlistId?: string;
143
145
  members: IPartyMember[];
144
146
  };
145
147
  matches: number;
@@ -344,11 +346,13 @@ export interface IDBUser {
344
346
  connections?: {
345
347
  epic?: {
346
348
  id: string;
347
- username: string;
349
+ username?: string;
350
+ verified?: boolean;
348
351
  };
349
352
  discord?: {
350
353
  id: string;
351
- username: string;
354
+ username?: string;
355
+ verified?: boolean;
352
356
  };
353
357
  };
354
358
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fnlb-project/shared",
3
- "version": "1.5.31",
3
+ "version": "1.5.32",
4
4
  "description": "FNLB Shared Library",
5
5
  "files": ["dist"],
6
6
  "author": "FNLB-Project",