@kohost/api-client 3.1.22 → 3.1.24
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:
|
|
@@ -163,10 +168,15 @@ export interface MediaSource {
|
|
|
163
168
|
| "display"
|
|
164
169
|
| "favoriteChannel"
|
|
165
170
|
| "play"
|
|
171
|
+
| "playing"
|
|
166
172
|
| "stop"
|
|
173
|
+
| "stopped"
|
|
167
174
|
| "pause"
|
|
175
|
+
| "paused"
|
|
168
176
|
| "fastForward"
|
|
177
|
+
| "fastForwarding"
|
|
169
178
|
| "rewind"
|
|
179
|
+
| "rewinding"
|
|
170
180
|
| "instantReplay"
|
|
171
181
|
| "record"
|
|
172
182
|
| "ac3"
|
|
@@ -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:
|
|
@@ -855,10 +860,15 @@ export interface MediaSource {
|
|
|
855
860
|
| "display"
|
|
856
861
|
| "favoriteChannel"
|
|
857
862
|
| "play"
|
|
863
|
+
| "playing"
|
|
858
864
|
| "stop"
|
|
865
|
+
| "stopped"
|
|
859
866
|
| "pause"
|
|
867
|
+
| "paused"
|
|
860
868
|
| "fastForward"
|
|
869
|
+
| "fastForwarding"
|
|
861
870
|
| "rewind"
|
|
871
|
+
| "rewinding"
|
|
862
872
|
| "instantReplay"
|
|
863
873
|
| "record"
|
|
864
874
|
| "ac3"
|
|
@@ -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"]
|
|
@@ -93,10 +107,15 @@
|
|
|
93
107
|
"display",
|
|
94
108
|
"favoriteChannel",
|
|
95
109
|
"play",
|
|
110
|
+
"playing",
|
|
96
111
|
"stop",
|
|
112
|
+
"stopped",
|
|
97
113
|
"pause",
|
|
114
|
+
"paused",
|
|
98
115
|
"fastForward",
|
|
116
|
+
"fastForwarding",
|
|
99
117
|
"rewind",
|
|
118
|
+
"rewinding",
|
|
100
119
|
"instantReplay",
|
|
101
120
|
"record",
|
|
102
121
|
"ac3",
|
package/dist/esm/Models.js
CHANGED
|
@@ -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"]
|
|
@@ -10241,10 +10255,15 @@ var require_mediaSource = __commonJS({
|
|
|
10241
10255
|
"display",
|
|
10242
10256
|
"favoriteChannel",
|
|
10243
10257
|
"play",
|
|
10258
|
+
"playing",
|
|
10244
10259
|
"stop",
|
|
10260
|
+
"stopped",
|
|
10245
10261
|
"pause",
|
|
10262
|
+
"paused",
|
|
10246
10263
|
"fastForward",
|
|
10264
|
+
"fastForwarding",
|
|
10247
10265
|
"rewind",
|
|
10266
|
+
"rewinding",
|
|
10248
10267
|
"instantReplay",
|
|
10249
10268
|
"record",
|
|
10250
10269
|
"ac3",
|