mass-queue-types 0.9.0 → 0.9.2
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/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "Custom Types and Interfaces for Music Assistant Queue Actions",
|
|
4
4
|
"repository": "https://github.com/droans/mass-queue-types",
|
|
5
5
|
"author": "Michael Carroll",
|
|
6
|
-
"version": "0.9.
|
|
6
|
+
"version": "0.9.2",
|
|
7
7
|
"module": "mass-queue-types.js",
|
|
8
8
|
"keywords": [
|
|
9
9
|
"home-assistant",
|
|
@@ -12,11 +12,9 @@ export interface playlistTrack {
|
|
|
12
12
|
|
|
13
13
|
export type playlistTracks = playlistTrack[];
|
|
14
14
|
|
|
15
|
-
type getPlaylistTracksPartialResponse = Record<string, playlistTracks>;
|
|
16
|
-
|
|
17
15
|
export interface getPlaylistTracksServiceResponse {
|
|
18
16
|
response: {
|
|
19
|
-
tracks:
|
|
17
|
+
tracks: playlistTracks
|
|
20
18
|
};
|
|
21
19
|
}
|
|
22
20
|
|
|
@@ -27,6 +25,6 @@ export interface getPlaylistTracksPartialSchema {
|
|
|
27
25
|
|
|
28
26
|
export interface getPlaylistTracksServiceSchema
|
|
29
27
|
extends baseMassQueueServiceWithResponseSchema {
|
|
30
|
-
service: "
|
|
28
|
+
service: "get_playlist_tracks";
|
|
31
29
|
service_data: getPlaylistTracksPartialSchema;
|
|
32
30
|
}
|