@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.
- package/dist/types/index.d.ts +6 -2
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -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
|
|
349
|
+
username?: string;
|
|
350
|
+
verified?: boolean;
|
|
348
351
|
};
|
|
349
352
|
discord?: {
|
|
350
353
|
id: string;
|
|
351
|
-
username
|
|
354
|
+
username?: string;
|
|
355
|
+
verified?: boolean;
|
|
352
356
|
};
|
|
353
357
|
};
|
|
354
358
|
}
|