mass-queue-types 0.8.1-b1 → 0.8.1
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.8.1
|
|
6
|
+
"version": "0.8.1",
|
|
7
7
|
"module": "mass-queue-types.js",
|
|
8
8
|
"keywords": [
|
|
9
9
|
"home-assistant",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { baseMassQueueServiceWithResponseSchema } from "../../mass_queue/utils.js";
|
|
2
1
|
import { MediaItem, MediaItemOrder, MediaTypes } from "../types.js";
|
|
2
|
+
import { baseMusicAssistantServiceWithResponseSchema } from "../utils.js";
|
|
3
3
|
|
|
4
4
|
export interface getLibraryPartialServiceResponse {
|
|
5
5
|
items: MediaItem[];
|
|
@@ -24,7 +24,7 @@ export interface getLibraryPartialSchema {
|
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
export interface getLibraryServiceSchema
|
|
27
|
-
extends
|
|
27
|
+
extends baseMusicAssistantServiceWithResponseSchema {
|
|
28
28
|
service: "get_library"
|
|
29
29
|
service_data: getLibraryPartialSchema
|
|
30
30
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { baseMassQueueServiceWithResponseSchema } from "../../mass_queue/utils.js";
|
|
2
1
|
import { QueueItemSchema } from "../types.js";
|
|
2
|
+
import { baseMusicAssistantServiceWithResponseSchema } from "../utils.js";
|
|
3
3
|
|
|
4
4
|
export interface getQueuePartialServiceResponse {
|
|
5
5
|
queue_id: string;
|
|
@@ -25,7 +25,7 @@ export interface getQueuePartialSchema {
|
|
|
25
25
|
}
|
|
26
26
|
|
|
27
27
|
export interface getQueueServiceSchema
|
|
28
|
-
extends
|
|
28
|
+
extends baseMusicAssistantServiceWithResponseSchema {
|
|
29
29
|
service: "get_queue"
|
|
30
30
|
service_data: getQueuePartialSchema
|
|
31
31
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { baseMassQueueServiceWithResponseSchema } from "../../mass_queue/utils.js";
|
|
2
1
|
import { MediaItem, MediaTypes } from "../types.js";
|
|
2
|
+
import { baseMusicAssistantServiceWithResponseSchema } from "../utils.js";
|
|
3
3
|
|
|
4
4
|
export interface searchPartialServiceResponse {
|
|
5
5
|
artists: MediaItem[];
|
|
@@ -25,7 +25,7 @@ export interface searchPartialSchema {
|
|
|
25
25
|
}
|
|
26
26
|
|
|
27
27
|
export interface searchServiceSchema
|
|
28
|
-
extends
|
|
28
|
+
extends baseMusicAssistantServiceWithResponseSchema {
|
|
29
29
|
service: "search"
|
|
30
30
|
service_data: searchPartialSchema
|
|
31
31
|
}
|