@redseat/api 0.1.12 → 0.2.0

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.
@@ -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
- modified?: number;
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@redseat/api",
3
- "version": "0.1.12",
3
+ "version": "0.2.0",
4
4
  "description": "TypeScript API client library for interacting with Redseat servers",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",