stentor-models 1.66.35 → 1.66.46
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.
|
@@ -11,10 +11,8 @@ export type SocialRadioAudio = SocialRadioTrack | SocialRadioSong;
|
|
|
11
11
|
* Tracks in SocialRadio are typically filler audio used
|
|
12
12
|
* for station identification.
|
|
13
13
|
*/
|
|
14
|
-
export
|
|
15
|
-
}
|
|
14
|
+
export type SocialRadioTrack = ReportableAudio;
|
|
16
15
|
/**
|
|
17
16
|
* Just a normal song
|
|
18
17
|
*/
|
|
19
|
-
export
|
|
20
|
-
}
|
|
18
|
+
export type SocialRadioSong = ReportableSong;
|
|
@@ -159,7 +159,7 @@ export declare abstract class AbstractResponseBuilder<R = any> {
|
|
|
159
159
|
* @param playlist - The playlist to be played
|
|
160
160
|
* @returns The builder instance
|
|
161
161
|
*/
|
|
162
|
-
abstract playPlaylist(playlist:
|
|
162
|
+
abstract playPlaylist(playlist: PlayableMedia[] | PlayableMedia[]): AbstractResponseBuilder<R>;
|
|
163
163
|
/**
|
|
164
164
|
* Stop the current audio
|
|
165
165
|
*
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
|
-
"version": "1.66.
|
|
7
|
+
"version": "1.66.46",
|
|
8
8
|
"description": "Models for 📣 stentor",
|
|
9
9
|
"types": "lib/index",
|
|
10
10
|
"typings": "lib/index",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"node": "^12 || ^14 || ^16 || ^18 || ^20 || ^22 || ^24.0.0"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@microsoft/api-extractor": "7.
|
|
20
|
+
"@microsoft/api-extractor": "7.55.2",
|
|
21
21
|
"@rollup/plugin-typescript": "12.3.0",
|
|
22
22
|
"@xapp/config": "0.2.3",
|
|
23
23
|
"rollup": "3.29.5",
|
|
@@ -33,5 +33,5 @@
|
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@xapp/patterns": "2.0.2"
|
|
35
35
|
},
|
|
36
|
-
"gitHead": "
|
|
36
|
+
"gitHead": "cc38e5b5b4858ef34529dc0cb828cfb869349929"
|
|
37
37
|
}
|