@lumiastream/lumia-types 3.6.6 → 3.6.9
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.
|
@@ -74,4 +74,5 @@ export var SongRequestPlaybackTarget;
|
|
|
74
74
|
SongRequestPlaybackTarget["SPOTIFY"] = "spotify";
|
|
75
75
|
/** Streamer's YouTube Music player via YT Music queue. */
|
|
76
76
|
SongRequestPlaybackTarget["YOUTUBE_MUSIC"] = "youtubeMusic";
|
|
77
|
+
SongRequestPlaybackTarget["VLC"] = "vlc";
|
|
77
78
|
})(SongRequestPlaybackTarget || (SongRequestPlaybackTarget = {}));
|
|
@@ -43,7 +43,8 @@ export declare enum SongRequestPlaybackTarget {
|
|
|
43
43
|
/** Streamer's Spotify Premium player via Spotify Web API queue. */
|
|
44
44
|
SPOTIFY = "spotify",
|
|
45
45
|
/** Streamer's YouTube Music player via YT Music queue. */
|
|
46
|
-
YOUTUBE_MUSIC = "youtubeMusic"
|
|
46
|
+
YOUTUBE_MUSIC = "youtubeMusic",
|
|
47
|
+
VLC = "vlc"
|
|
47
48
|
}
|
|
48
49
|
/** A single request item — one row in the queue / pending tray / history. */
|
|
49
50
|
export interface SongRequestItem {
|
|
@@ -99,12 +100,7 @@ export interface SongRequestConfig {
|
|
|
99
100
|
allowFreeTextSearch: boolean;
|
|
100
101
|
/** Required for free-text → YouTube Data API v3 search. */
|
|
101
102
|
youtubeApiKey?: string;
|
|
102
|
-
|
|
103
|
-
* Where approved songs play. `'auto'` = use the streamer's connected music
|
|
104
|
-
* service (Spotify Premium > YT Music) when available, otherwise the overlay
|
|
105
|
-
* iframe. The other values force a single target regardless of connections.
|
|
106
|
-
*/
|
|
107
|
-
preferredPlaybackTarget: 'auto' | SongRequestPlaybackTarget;
|
|
103
|
+
preferredPlaybackTarget: SongRequestPlaybackTarget;
|
|
108
104
|
announceInChat: boolean;
|
|
109
105
|
chatTemplateAdded: string;
|
|
110
106
|
chatTemplateNowPlaying: string;
|
|
@@ -77,4 +77,5 @@ var SongRequestPlaybackTarget;
|
|
|
77
77
|
SongRequestPlaybackTarget["SPOTIFY"] = "spotify";
|
|
78
78
|
/** Streamer's YouTube Music player via YT Music queue. */
|
|
79
79
|
SongRequestPlaybackTarget["YOUTUBE_MUSIC"] = "youtubeMusic";
|
|
80
|
+
SongRequestPlaybackTarget["VLC"] = "vlc";
|
|
80
81
|
})(SongRequestPlaybackTarget || (exports.SongRequestPlaybackTarget = SongRequestPlaybackTarget = {}));
|