@redseat/api 0.1.12 → 0.2.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/dist/interfaces.d.ts +11 -2
- package/package.json +1 -1
package/dist/interfaces.d.ts
CHANGED
|
@@ -219,14 +219,22 @@ export interface IEpisode {
|
|
|
219
219
|
duration?: number;
|
|
220
220
|
type?: string;
|
|
221
221
|
alt?: string[];
|
|
222
|
+
params?: unknown;
|
|
222
223
|
imdb?: string;
|
|
223
224
|
slug?: string;
|
|
224
225
|
tmdb?: number;
|
|
225
226
|
trakt?: number;
|
|
226
227
|
tvdb?: number;
|
|
227
228
|
otherids?: string;
|
|
228
|
-
|
|
229
|
+
imdbRating?: number;
|
|
230
|
+
imdbVotes?: number;
|
|
231
|
+
traktRating?: number;
|
|
232
|
+
traktVotes?: number;
|
|
229
233
|
watched?: number;
|
|
234
|
+
progress?: number;
|
|
235
|
+
modified?: number;
|
|
236
|
+
added?: number;
|
|
237
|
+
serieName?: string;
|
|
230
238
|
images?: {
|
|
231
239
|
poster?: string;
|
|
232
240
|
background?: string;
|
|
@@ -268,9 +276,10 @@ export interface IMovie {
|
|
|
268
276
|
}
|
|
269
277
|
export interface IServer {
|
|
270
278
|
id: string;
|
|
271
|
-
name
|
|
279
|
+
name?: string;
|
|
272
280
|
url: string;
|
|
273
281
|
port?: number;
|
|
282
|
+
local?: string;
|
|
274
283
|
}
|
|
275
284
|
export interface MediaRequest {
|
|
276
285
|
sort?: string;
|