@kohost/api-client 3.1.22 → 3.1.23

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.
@@ -98,6 +98,11 @@ export interface MediaSource {
98
98
  id: string;
99
99
  type: string;
100
100
  discriminator: "tv" | "dvr" | "appleTv" | "discPlayer" | "mediaPlayer" | "paSystem" | "uncontrolledDevice";
101
+ playlists?: {
102
+ id?: string;
103
+ name?: string;
104
+ [k: string]: unknown;
105
+ }[];
101
106
  remote?: "MR22GA" | "XRT260" | "XRT270";
102
107
  name?: string;
103
108
  driver:
@@ -790,6 +790,11 @@ export interface MediaSource {
790
790
  id: string;
791
791
  type: string;
792
792
  discriminator: "tv" | "dvr" | "appleTv" | "discPlayer" | "mediaPlayer" | "paSystem" | "uncontrolledDevice";
793
+ playlists?: {
794
+ id?: string;
795
+ name?: string;
796
+ [k: string]: unknown;
797
+ }[];
793
798
  remote?: "MR22GA" | "XRT260" | "XRT270";
794
799
  name?: string;
795
800
  driver:
@@ -25,6 +25,20 @@
25
25
  "uncontrolledDevice"
26
26
  ]
27
27
  },
28
+ "playlists": {
29
+ "type": "array",
30
+ "items": {
31
+ "type": "object",
32
+ "properties": {
33
+ "id": {
34
+ "$ref": "definitions.json#/definitions/id"
35
+ },
36
+ "name": {
37
+ "$ref": "definitions.json#/definitions/name"
38
+ }
39
+ }
40
+ }
41
+ },
28
42
  "remote": {
29
43
  "type": "string",
30
44
  "enum": ["MR22GA", "XRT260", "XRT270"]
@@ -10173,6 +10173,20 @@ var require_mediaSource = __commonJS({
10173
10173
  "uncontrolledDevice"
10174
10174
  ]
10175
10175
  },
10176
+ playlists: {
10177
+ type: "array",
10178
+ items: {
10179
+ type: "object",
10180
+ properties: {
10181
+ id: {
10182
+ $ref: "definitions.json#/definitions/id"
10183
+ },
10184
+ name: {
10185
+ $ref: "definitions.json#/definitions/name"
10186
+ }
10187
+ }
10188
+ }
10189
+ },
10176
10190
  remote: {
10177
10191
  type: "string",
10178
10192
  enum: ["MR22GA", "XRT260", "XRT270"]