@andev2005/movie-glu-sdk 1.0.6 → 1.0.7
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/index.d.mts +21 -17
- package/dist/index.d.ts +21 -17
- package/package.json +1 -1
- package/src/type.ts +21 -17
package/dist/index.d.mts
CHANGED
|
@@ -216,24 +216,28 @@ type Film = {
|
|
|
216
216
|
imdb_title_id?: string;
|
|
217
217
|
film_name: string;
|
|
218
218
|
other_titles?: OtherTitles;
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
synopsis_long
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
219
|
+
version_type?: string;
|
|
220
|
+
images?: FilmImages;
|
|
221
|
+
synopsis_short?: string;
|
|
222
|
+
synopsis_long?: string;
|
|
223
|
+
distributor_id?: number;
|
|
224
|
+
distributor?: string;
|
|
225
|
+
release_dates?: ReleaseDate[];
|
|
226
|
+
age_rating?: AgeRating[];
|
|
227
|
+
duration_mins?: number;
|
|
228
|
+
review_stars?: number | string;
|
|
229
|
+
review_txt?: string;
|
|
230
|
+
trailers?: Trailers | null;
|
|
231
|
+
genres?: Genre[];
|
|
232
|
+
cast?: Cast[];
|
|
233
|
+
directors?: Director[];
|
|
234
|
+
producers?: Producer[];
|
|
235
|
+
writers?: Writer[];
|
|
236
|
+
show_dates?: ShowDate[];
|
|
237
|
+
alternate_versions?: AlternateVersion[];
|
|
238
|
+
film_trailer?: string | null;
|
|
236
239
|
};
|
|
240
|
+
type FilmComingSoon = Film;
|
|
237
241
|
type Genre = {
|
|
238
242
|
genre_id: number;
|
|
239
243
|
genre_name: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -216,24 +216,28 @@ type Film = {
|
|
|
216
216
|
imdb_title_id?: string;
|
|
217
217
|
film_name: string;
|
|
218
218
|
other_titles?: OtherTitles;
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
synopsis_long
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
219
|
+
version_type?: string;
|
|
220
|
+
images?: FilmImages;
|
|
221
|
+
synopsis_short?: string;
|
|
222
|
+
synopsis_long?: string;
|
|
223
|
+
distributor_id?: number;
|
|
224
|
+
distributor?: string;
|
|
225
|
+
release_dates?: ReleaseDate[];
|
|
226
|
+
age_rating?: AgeRating[];
|
|
227
|
+
duration_mins?: number;
|
|
228
|
+
review_stars?: number | string;
|
|
229
|
+
review_txt?: string;
|
|
230
|
+
trailers?: Trailers | null;
|
|
231
|
+
genres?: Genre[];
|
|
232
|
+
cast?: Cast[];
|
|
233
|
+
directors?: Director[];
|
|
234
|
+
producers?: Producer[];
|
|
235
|
+
writers?: Writer[];
|
|
236
|
+
show_dates?: ShowDate[];
|
|
237
|
+
alternate_versions?: AlternateVersion[];
|
|
238
|
+
film_trailer?: string | null;
|
|
236
239
|
};
|
|
240
|
+
type FilmComingSoon = Film;
|
|
237
241
|
type Genre = {
|
|
238
242
|
genre_id: number;
|
|
239
243
|
genre_name: string;
|
package/package.json
CHANGED
package/src/type.ts
CHANGED
|
@@ -252,25 +252,29 @@ export type Film = {
|
|
|
252
252
|
imdb_title_id?: string;
|
|
253
253
|
film_name: string;
|
|
254
254
|
other_titles?: OtherTitles;
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
synopsis_long
|
|
259
|
-
|
|
255
|
+
version_type?: string;
|
|
256
|
+
images?: FilmImages;
|
|
257
|
+
synopsis_short?: string;
|
|
258
|
+
synopsis_long?: string;
|
|
259
|
+
distributor_id?: number;
|
|
260
|
+
distributor?: string;
|
|
261
|
+
release_dates?: ReleaseDate[];
|
|
262
|
+
age_rating?: AgeRating[];
|
|
263
|
+
duration_mins?: number;
|
|
264
|
+
review_stars?: number | string;
|
|
265
|
+
review_txt?: string;
|
|
266
|
+
trailers?: Trailers | null;
|
|
267
|
+
genres?: Genre[];
|
|
268
|
+
cast?: Cast[];
|
|
269
|
+
directors?: Director[];
|
|
270
|
+
producers?: Producer[];
|
|
271
|
+
writers?: Writer[];
|
|
272
|
+
show_dates?: ShowDate[];
|
|
273
|
+
alternate_versions?: AlternateVersion[];
|
|
274
|
+
film_trailer?: string | null;
|
|
260
275
|
};
|
|
261
276
|
|
|
262
|
-
export type FilmComingSoon =
|
|
263
|
-
film_id: number;
|
|
264
|
-
imdb_id?: number;
|
|
265
|
-
imdb_title_id?: string;
|
|
266
|
-
film_name: string;
|
|
267
|
-
other_titles?: OtherTitles;
|
|
268
|
-
release_dates: ReleaseDate[];
|
|
269
|
-
age_rating: AgeRating[];
|
|
270
|
-
film_trailer: string | null;
|
|
271
|
-
synopsis_long: string;
|
|
272
|
-
images: FilmImages;
|
|
273
|
-
};
|
|
277
|
+
export type FilmComingSoon = Film;
|
|
274
278
|
|
|
275
279
|
export type Genre = {
|
|
276
280
|
genre_id: number;
|