ttfm-socket 1.7.1 → 1.7.3

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.
@@ -113,6 +113,7 @@ export declare type RoomDto = {
113
113
  unlisted?: boolean;
114
114
  varietyStyleMusic?: boolean;
115
115
  explicit: boolean;
116
+ allowGeneratedTracks: boolean;
116
117
  id?: number;
117
118
  name: string;
118
119
  description: string;
@@ -4,6 +4,8 @@ export type ServerDj = {
4
4
  userUuid: string;
5
5
  /** The key where the song was saved in the Actionhero cache. */
6
6
  nextSongId: string | null;
7
+ /** Whether the next song is AI-generated */
8
+ nextSongIsGenerated?: boolean;
7
9
  };
8
10
  export type ClientDj = ClientRoomUser & {
9
11
  nextSong: MinimalCrateSongResDTO | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ttfm-socket",
3
- "version": "1.7.1",
3
+ "version": "1.7.3",
4
4
  "main": "./dist-client/client/index.js",
5
5
  "typings": "./dist-client/client/index.d.ts",
6
6
  "devDependencies": {