@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 CHANGED
@@ -216,24 +216,28 @@ type Film = {
216
216
  imdb_title_id?: string;
217
217
  film_name: string;
218
218
  other_titles?: OtherTitles;
219
- release_dates: ReleaseDate[];
220
- age_rating: AgeRating[];
221
- film_trailer: string | null;
222
- synopsis_long: string;
223
- images: FilmImages;
224
- };
225
- type FilmComingSoon = {
226
- film_id: number;
227
- imdb_id?: number;
228
- imdb_title_id?: string;
229
- film_name: string;
230
- other_titles?: OtherTitles;
231
- release_dates: ReleaseDate[];
232
- age_rating: AgeRating[];
233
- film_trailer: string | null;
234
- synopsis_long: string;
235
- images: FilmImages;
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
- release_dates: ReleaseDate[];
220
- age_rating: AgeRating[];
221
- film_trailer: string | null;
222
- synopsis_long: string;
223
- images: FilmImages;
224
- };
225
- type FilmComingSoon = {
226
- film_id: number;
227
- imdb_id?: number;
228
- imdb_title_id?: string;
229
- film_name: string;
230
- other_titles?: OtherTitles;
231
- release_dates: ReleaseDate[];
232
- age_rating: AgeRating[];
233
- film_trailer: string | null;
234
- synopsis_long: string;
235
- images: FilmImages;
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@andev2005/movie-glu-sdk",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
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
- release_dates: ReleaseDate[];
256
- age_rating: AgeRating[];
257
- film_trailer: string | null;
258
- synopsis_long: string;
259
- images: FilmImages;
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;