ttfm-socket 0.2.5 → 0.2.6
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.
|
@@ -103,6 +103,8 @@ export declare namespace UserRoles {
|
|
|
103
103
|
}
|
|
104
104
|
}
|
|
105
105
|
export declare type RoomDto = {
|
|
106
|
+
song?: MinimalCrateSongResDTO | null;
|
|
107
|
+
unlisted?: boolean;
|
|
106
108
|
id?: number;
|
|
107
109
|
name: string;
|
|
108
110
|
description: string;
|
|
@@ -120,23 +122,14 @@ export declare type RoomDto = {
|
|
|
120
122
|
password?: string;
|
|
121
123
|
guestPassword?: string;
|
|
122
124
|
type: RoomDto.type;
|
|
123
|
-
domain: string;
|
|
124
|
-
socketDomain: string;
|
|
125
|
-
socketPath: string;
|
|
126
|
-
provisionedRoomProductId?: string;
|
|
127
125
|
createdAt: string;
|
|
128
126
|
updatedAt: string;
|
|
129
127
|
isPasswordProtected: boolean;
|
|
130
128
|
numberOfUsersInRoom?: number;
|
|
131
129
|
numberOfActiveDjs?: number;
|
|
132
|
-
song?: any;
|
|
133
|
-
debugCommunication: boolean;
|
|
134
130
|
promoted: boolean;
|
|
135
|
-
neverSuspended: boolean;
|
|
136
|
-
roomServerId?: string;
|
|
137
131
|
roomRoles?: Array<UserRoles>;
|
|
138
132
|
pinnedMessages?: Array<any>;
|
|
139
|
-
lastTimeSuspended?: string;
|
|
140
133
|
design: RoomDto.design;
|
|
141
134
|
isLive: boolean;
|
|
142
135
|
liveAudio: boolean;
|