@borealise/api 2.0.0-alpha.14 → 2.0.0-alpha.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.
package/dist/index.d.mts CHANGED
@@ -215,6 +215,22 @@ interface Room {
215
215
  population: number;
216
216
  totalPlays: number;
217
217
  isFeatured: boolean;
218
+ verified: boolean;
219
+ currentDJ?: {
220
+ id: number;
221
+ username: string;
222
+ displayName: string | null;
223
+ avatarId: string;
224
+ } | null;
225
+ currentMedia?: {
226
+ id: number;
227
+ source: 'youtube' | 'soundcloud';
228
+ sourceId: string;
229
+ title: string;
230
+ artist: string | null;
231
+ thumbnail: string | null;
232
+ duration: number;
233
+ } | null;
218
234
  createdAt: string;
219
235
  updatedAt: string;
220
236
  }
package/dist/index.d.ts CHANGED
@@ -215,6 +215,22 @@ interface Room {
215
215
  population: number;
216
216
  totalPlays: number;
217
217
  isFeatured: boolean;
218
+ verified: boolean;
219
+ currentDJ?: {
220
+ id: number;
221
+ username: string;
222
+ displayName: string | null;
223
+ avatarId: string;
224
+ } | null;
225
+ currentMedia?: {
226
+ id: number;
227
+ source: 'youtube' | 'soundcloud';
228
+ sourceId: string;
229
+ title: string;
230
+ artist: string | null;
231
+ thumbnail: string | null;
232
+ duration: number;
233
+ } | null;
218
234
  createdAt: string;
219
235
  updatedAt: string;
220
236
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@borealise/api",
3
- "version": "2.0.0-alpha.14",
3
+ "version": "2.0.0-alpha.15",
4
4
  "description": "Official API client for Borealise",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",