@tmdb-graphql-api/resolvers 0.0.17 → 0.0.19
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/cjs/index.cjs +1 -1
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/esm/index.mjs +1 -1
- package/dist/esm/index.mjs.map +1 -1
- package/dist/production.analysis.txt +85 -85
- package/dist/types/cjs/main.d.cts +1 -1
- package/dist/types/cjs/main.d.cts.map +1 -1
- package/dist/types/cjs/queries/collection.d.cts +4 -4
- package/dist/types/cjs/queries/credit.d.cts +4 -4
- package/dist/types/cjs/queries/find.d.cts +3 -3
- package/dist/types/cjs/queries/movie.d.cts +5 -5
- package/dist/types/cjs/queries/movieRecommendations.d.cts +3 -3
- package/dist/types/cjs/queries/movieReleaseDates.d.cts +1 -1
- package/dist/types/cjs/queries/movieReviews.d.cts +3 -3
- package/dist/types/cjs/queries/movieSimilarMovies.d.cts +3 -3
- package/dist/types/cjs/queries/tv.d.cts +10 -10
- package/dist/types/cjs/queries/tvRecommendations.d.cts +6 -6
- package/dist/types/cjs/queries/tvReviews.d.cts +6 -6
- package/dist/types/cjs/queries/tvSimilarTvShows.d.cts +6 -6
- package/dist/types/esm/main.d.ts +1 -1
- package/dist/types/esm/main.d.ts.map +1 -1
- package/dist/types/esm/queries/collection.d.ts +4 -4
- package/dist/types/esm/queries/credit.d.ts +4 -4
- package/dist/types/esm/queries/find.d.ts +3 -3
- package/dist/types/esm/queries/movie.d.ts +5 -5
- package/dist/types/esm/queries/movieRecommendations.d.ts +3 -3
- package/dist/types/esm/queries/movieReleaseDates.d.ts +1 -1
- package/dist/types/esm/queries/movieReviews.d.ts +3 -3
- package/dist/types/esm/queries/movieSimilarMovies.d.ts +3 -3
- package/dist/types/esm/queries/tv.d.ts +10 -10
- package/dist/types/esm/queries/tvRecommendations.d.ts +6 -6
- package/dist/types/esm/queries/tvReviews.d.ts +6 -6
- package/dist/types/esm/queries/tvSimilarTvShows.d.ts +6 -6
- package/dist/types/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/src/main.ts +42 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"main.d.cts","sourceRoot":"","sources":["../../../src/main.cts"],"names":[],"mappings":"AA4EA,OAAO,EACL,KAAK,aAAa,EAKnB,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"main.d.cts","sourceRoot":"","sources":["../../../src/main.cts"],"names":[],"mappings":"AA4EA,OAAO,EACL,KAAK,aAAa,EAKnB,MAAM,YAAY,CAAC;AAuCpB,eAAO,MAAM,SAAS,EAAE,MAAM,CAAC,MAAM,EAAE,aAAa,GAAG,MAAM,CAAC,MAAM,EAAE,aAAa,CAAC,CA4InF,CAAC"}
|
|
@@ -219,7 +219,7 @@ export declare const resolveCollection: (obj: RawCollection | undefined, args: Q
|
|
|
219
219
|
iso_639_1: string;
|
|
220
220
|
note: string;
|
|
221
221
|
release_date: string;
|
|
222
|
-
type:
|
|
222
|
+
type: import("@tmdb-graphql-api/schema/types").MovieReleaseType;
|
|
223
223
|
} | null)[];
|
|
224
224
|
} | null)[] | null | undefined;
|
|
225
225
|
revenue: number;
|
|
@@ -298,7 +298,7 @@ export declare const resolveCollection: (obj: RawCollection | undefined, args: Q
|
|
|
298
298
|
iso_639_1: string;
|
|
299
299
|
name?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
300
300
|
} | null)[];
|
|
301
|
-
status:
|
|
301
|
+
status: import("@tmdb-graphql-api/schema/types").MovieStatus;
|
|
302
302
|
tagline?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
303
303
|
title: string;
|
|
304
304
|
translations?: ({
|
|
@@ -1915,7 +1915,7 @@ export declare const resolveCollection: (obj: RawCollection | undefined, args: Q
|
|
|
1915
1915
|
iso_639_1: string;
|
|
1916
1916
|
note: string;
|
|
1917
1917
|
release_date: string;
|
|
1918
|
-
type:
|
|
1918
|
+
type: import("@tmdb-graphql-api/schema/types").MovieReleaseType;
|
|
1919
1919
|
} | null)[];
|
|
1920
1920
|
} | null)[] | null | undefined;
|
|
1921
1921
|
revenue: number;
|
|
@@ -1994,7 +1994,7 @@ export declare const resolveCollection: (obj: RawCollection | undefined, args: Q
|
|
|
1994
1994
|
iso_639_1: string;
|
|
1995
1995
|
name?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
1996
1996
|
} | null)[];
|
|
1997
|
-
status:
|
|
1997
|
+
status: import("@tmdb-graphql-api/schema/types").MovieStatus;
|
|
1998
1998
|
tagline?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
1999
1999
|
title: string;
|
|
2000
2000
|
translations?: ({
|
|
@@ -219,7 +219,7 @@ export declare const resolveCredit: (_obj: undefined, { id }: QueryCreditArgs, {
|
|
|
219
219
|
iso_639_1: string;
|
|
220
220
|
note: string;
|
|
221
221
|
release_date: string;
|
|
222
|
-
type:
|
|
222
|
+
type: import("@tmdb-graphql-api/schema/types").MovieReleaseType;
|
|
223
223
|
} | null)[];
|
|
224
224
|
} | null)[] | null | undefined;
|
|
225
225
|
revenue: number;
|
|
@@ -298,7 +298,7 @@ export declare const resolveCredit: (_obj: undefined, { id }: QueryCreditArgs, {
|
|
|
298
298
|
iso_639_1: string;
|
|
299
299
|
name?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
300
300
|
} | null)[];
|
|
301
|
-
status:
|
|
301
|
+
status: import("@tmdb-graphql-api/schema/types").MovieStatus;
|
|
302
302
|
tagline?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
303
303
|
title: string;
|
|
304
304
|
translations?: ({
|
|
@@ -2595,7 +2595,7 @@ export declare const resolveCredit: (_obj: undefined, { id }: QueryCreditArgs, {
|
|
|
2595
2595
|
nodes?: (any | null)[] | null | undefined;
|
|
2596
2596
|
total_count: number;
|
|
2597
2597
|
} | null | undefined;
|
|
2598
|
-
status:
|
|
2598
|
+
status: import("@tmdb-graphql-api/schema/types").TvStatus;
|
|
2599
2599
|
tagline?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
2600
2600
|
translations?: ({
|
|
2601
2601
|
__typename?: "Translation" | undefined;
|
|
@@ -2612,7 +2612,7 @@ export declare const resolveCredit: (_obj: undefined, { id }: QueryCreditArgs, {
|
|
|
2612
2612
|
iso_3166_1: string;
|
|
2613
2613
|
name: string;
|
|
2614
2614
|
} | null)[] | null | undefined;
|
|
2615
|
-
type:
|
|
2615
|
+
type: import("@tmdb-graphql-api/schema/types").TvType;
|
|
2616
2616
|
videos?: ({
|
|
2617
2617
|
id: string | number;
|
|
2618
2618
|
__typename?: "Video" | undefined;
|
|
@@ -220,7 +220,7 @@ export declare const resolveFind: (_obj: undefined, { id, source }: QueryFindArg
|
|
|
220
220
|
iso_639_1: string;
|
|
221
221
|
note: string;
|
|
222
222
|
release_date: string;
|
|
223
|
-
type:
|
|
223
|
+
type: import("@tmdb-graphql-api/schema/types").MovieReleaseType;
|
|
224
224
|
} | null)[];
|
|
225
225
|
} | null)[] | null | undefined;
|
|
226
226
|
revenue: number;
|
|
@@ -299,7 +299,7 @@ export declare const resolveFind: (_obj: undefined, { id, source }: QueryFindArg
|
|
|
299
299
|
iso_639_1: string;
|
|
300
300
|
name?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
301
301
|
} | null)[];
|
|
302
|
-
status:
|
|
302
|
+
status: import("@tmdb-graphql-api/schema/types").MovieStatus;
|
|
303
303
|
tagline?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
304
304
|
title: string;
|
|
305
305
|
translations?: ({
|
|
@@ -1776,7 +1776,7 @@ export declare const resolveFind: (_obj: undefined, { id, source }: QueryFindArg
|
|
|
1776
1776
|
iso_639_1: string;
|
|
1777
1777
|
name?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
1778
1778
|
} | null)[];
|
|
1779
|
-
status:
|
|
1779
|
+
status: import("@tmdb-graphql-api/schema/types").MovieStatus;
|
|
1780
1780
|
tagline?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
1781
1781
|
}[] | undefined;
|
|
1782
1782
|
people: {
|
|
@@ -209,7 +209,7 @@ export declare const resolveMovie: (obj: RawMovie | undefined, args: QueryMovieA
|
|
|
209
209
|
iso_639_1: string;
|
|
210
210
|
note: string;
|
|
211
211
|
release_date: string;
|
|
212
|
-
type:
|
|
212
|
+
type: import("@tmdb-graphql-api/schema/types").MovieReleaseType;
|
|
213
213
|
} | null)[];
|
|
214
214
|
} | null)[] | null | undefined;
|
|
215
215
|
revenue: number;
|
|
@@ -288,7 +288,7 @@ export declare const resolveMovie: (obj: RawMovie | undefined, args: QueryMovieA
|
|
|
288
288
|
iso_639_1: string;
|
|
289
289
|
name?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
290
290
|
} | null)[];
|
|
291
|
-
status:
|
|
291
|
+
status: import("@tmdb-graphql-api/schema/types").MovieStatus;
|
|
292
292
|
tagline?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
293
293
|
title: string;
|
|
294
294
|
translations?: ({
|
|
@@ -1965,7 +1965,7 @@ export declare const resolveMovie: (obj: RawMovie | undefined, args: QueryMovieA
|
|
|
1965
1965
|
iso_639_1: string;
|
|
1966
1966
|
note: string;
|
|
1967
1967
|
release_date: string;
|
|
1968
|
-
type:
|
|
1968
|
+
type: import("@tmdb-graphql-api/schema/types").MovieReleaseType;
|
|
1969
1969
|
} | null)[];
|
|
1970
1970
|
} | null)[] | null | undefined;
|
|
1971
1971
|
revenue: number;
|
|
@@ -2044,7 +2044,7 @@ export declare const resolveMovie: (obj: RawMovie | undefined, args: QueryMovieA
|
|
|
2044
2044
|
iso_639_1: string;
|
|
2045
2045
|
name?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
2046
2046
|
} | null)[];
|
|
2047
|
-
status:
|
|
2047
|
+
status: import("@tmdb-graphql-api/schema/types").MovieStatus;
|
|
2048
2048
|
tagline?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
2049
2049
|
title: string;
|
|
2050
2050
|
translations?: ({
|
|
@@ -3521,7 +3521,7 @@ export declare const resolveMovie: (obj: RawMovie | undefined, args: QueryMovieA
|
|
|
3521
3521
|
iso_639_1: string;
|
|
3522
3522
|
name?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
3523
3523
|
} | null)[] | undefined;
|
|
3524
|
-
status?:
|
|
3524
|
+
status?: import("@tmdb-graphql-api/schema/types").MovieStatus | undefined;
|
|
3525
3525
|
tagline?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
3526
3526
|
alternative_titles?: Omit<import("../types.cts").RawMovieAlternativeTitles, "id"> | undefined;
|
|
3527
3527
|
credits?: Omit<{
|
|
@@ -231,7 +231,7 @@ export declare const resolveMovieRecommendations: (source: {
|
|
|
231
231
|
iso_639_1: string;
|
|
232
232
|
note: string;
|
|
233
233
|
release_date: string;
|
|
234
|
-
type:
|
|
234
|
+
type: import("@tmdb-graphql-api/schema/types").MovieReleaseType;
|
|
235
235
|
} | null)[];
|
|
236
236
|
} | null)[] | null | undefined;
|
|
237
237
|
revenue: number;
|
|
@@ -310,7 +310,7 @@ export declare const resolveMovieRecommendations: (source: {
|
|
|
310
310
|
iso_639_1: string;
|
|
311
311
|
name?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
312
312
|
} | null)[];
|
|
313
|
-
status:
|
|
313
|
+
status: import("@tmdb-graphql-api/schema/types").MovieStatus;
|
|
314
314
|
tagline?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
315
315
|
title: string;
|
|
316
316
|
translations?: ({
|
|
@@ -1787,7 +1787,7 @@ export declare const resolveMovieRecommendations: (source: {
|
|
|
1787
1787
|
iso_639_1: string;
|
|
1788
1788
|
name?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
1789
1789
|
} | null)[];
|
|
1790
|
-
status:
|
|
1790
|
+
status: import("@tmdb-graphql-api/schema/types").MovieStatus;
|
|
1791
1791
|
tagline?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
1792
1792
|
} & {
|
|
1793
1793
|
alternative_titles: Omit<import("../types.cts").RawMovieAlternativeTitles, "id">;
|
|
@@ -8,6 +8,6 @@ export declare const resolveMovieReleaseDates: (obj: RawMovieWithAppendToRespons
|
|
|
8
8
|
iso_639_1: string;
|
|
9
9
|
note: string;
|
|
10
10
|
release_date: string;
|
|
11
|
-
type:
|
|
11
|
+
type: import("@tmdb-graphql-api/schema/types").MovieReleaseType;
|
|
12
12
|
}[]>;
|
|
13
13
|
//# sourceMappingURL=movieReleaseDates.d.cts.map
|
|
@@ -231,7 +231,7 @@ export declare const resolveMovieReviews: (source: {
|
|
|
231
231
|
iso_639_1: string;
|
|
232
232
|
note: string;
|
|
233
233
|
release_date: string;
|
|
234
|
-
type:
|
|
234
|
+
type: import("@tmdb-graphql-api/schema/types").MovieReleaseType;
|
|
235
235
|
} | null)[];
|
|
236
236
|
} | null)[] | null | undefined;
|
|
237
237
|
revenue: number;
|
|
@@ -310,7 +310,7 @@ export declare const resolveMovieReviews: (source: {
|
|
|
310
310
|
iso_639_1: string;
|
|
311
311
|
name?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
312
312
|
} | null)[];
|
|
313
|
-
status:
|
|
313
|
+
status: import("@tmdb-graphql-api/schema/types").MovieStatus;
|
|
314
314
|
tagline?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
315
315
|
title: string;
|
|
316
316
|
translations?: ({
|
|
@@ -1787,7 +1787,7 @@ export declare const resolveMovieReviews: (source: {
|
|
|
1787
1787
|
iso_639_1: string;
|
|
1788
1788
|
name?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
1789
1789
|
} | null)[];
|
|
1790
|
-
status:
|
|
1790
|
+
status: import("@tmdb-graphql-api/schema/types").MovieStatus;
|
|
1791
1791
|
tagline?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
1792
1792
|
} & {
|
|
1793
1793
|
alternative_titles: Omit<import("../types.cts").RawMovieAlternativeTitles, "id">;
|
|
@@ -231,7 +231,7 @@ export declare const resolveMovieSimilarMovies: (source: {
|
|
|
231
231
|
iso_639_1: string;
|
|
232
232
|
note: string;
|
|
233
233
|
release_date: string;
|
|
234
|
-
type:
|
|
234
|
+
type: import("@tmdb-graphql-api/schema/types").MovieReleaseType;
|
|
235
235
|
} | null)[];
|
|
236
236
|
} | null)[] | null | undefined;
|
|
237
237
|
revenue: number;
|
|
@@ -310,7 +310,7 @@ export declare const resolveMovieSimilarMovies: (source: {
|
|
|
310
310
|
iso_639_1: string;
|
|
311
311
|
name?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
312
312
|
} | null)[];
|
|
313
|
-
status:
|
|
313
|
+
status: import("@tmdb-graphql-api/schema/types").MovieStatus;
|
|
314
314
|
tagline?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
315
315
|
title: string;
|
|
316
316
|
translations?: ({
|
|
@@ -1787,7 +1787,7 @@ export declare const resolveMovieSimilarMovies: (source: {
|
|
|
1787
1787
|
iso_639_1: string;
|
|
1788
1788
|
name?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
1789
1789
|
} | null)[];
|
|
1790
|
-
status:
|
|
1790
|
+
status: import("@tmdb-graphql-api/schema/types").MovieStatus;
|
|
1791
1791
|
tagline?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
1792
1792
|
} & {
|
|
1793
1793
|
alternative_titles: Omit<import("../types.cts").RawMovieAlternativeTitles, "id">;
|
|
@@ -1111,7 +1111,7 @@ export declare const resolveTv: (obj: RawTv | undefined, args: QueryTvArgs, { fr
|
|
|
1111
1111
|
} | null)[] | null | undefined;
|
|
1112
1112
|
} | null)[];
|
|
1113
1113
|
similar_tv_shows?: any | null | undefined;
|
|
1114
|
-
status:
|
|
1114
|
+
status: import("@tmdb-graphql-api/schema/types").TvStatus;
|
|
1115
1115
|
tagline?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
1116
1116
|
translations?: ({
|
|
1117
1117
|
__typename?: "Translation" | undefined;
|
|
@@ -1128,7 +1128,7 @@ export declare const resolveTv: (obj: RawTv | undefined, args: QueryTvArgs, { fr
|
|
|
1128
1128
|
iso_3166_1: string;
|
|
1129
1129
|
name: string;
|
|
1130
1130
|
} | null)[] | null | undefined;
|
|
1131
|
-
type:
|
|
1131
|
+
type: import("@tmdb-graphql-api/schema/types").TvType;
|
|
1132
1132
|
videos?: ({
|
|
1133
1133
|
id: string | number;
|
|
1134
1134
|
__typename?: "Video" | undefined;
|
|
@@ -3377,7 +3377,7 @@ export declare const resolveTv: (obj: RawTv | undefined, args: QueryTvArgs, { fr
|
|
|
3377
3377
|
} | null)[] | null | undefined;
|
|
3378
3378
|
} | null)[];
|
|
3379
3379
|
similar_tv_shows?: any | null | undefined;
|
|
3380
|
-
status:
|
|
3380
|
+
status: import("@tmdb-graphql-api/schema/types").TvStatus;
|
|
3381
3381
|
tagline?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
3382
3382
|
translations?: ({
|
|
3383
3383
|
__typename?: "Translation" | undefined;
|
|
@@ -3394,7 +3394,7 @@ export declare const resolveTv: (obj: RawTv | undefined, args: QueryTvArgs, { fr
|
|
|
3394
3394
|
iso_3166_1: string;
|
|
3395
3395
|
name: string;
|
|
3396
3396
|
} | null)[] | null | undefined;
|
|
3397
|
-
type:
|
|
3397
|
+
type: import("@tmdb-graphql-api/schema/types").TvType;
|
|
3398
3398
|
videos?: ({
|
|
3399
3399
|
id: string | number;
|
|
3400
3400
|
__typename?: "Video" | undefined;
|
|
@@ -5998,7 +5998,7 @@ export declare const resolveTv: (obj: RawTv | undefined, args: QueryTvArgs, { fr
|
|
|
5998
5998
|
} | null)[] | null | undefined;
|
|
5999
5999
|
} | null)[];
|
|
6000
6000
|
similar_tv_shows?: any | null | undefined;
|
|
6001
|
-
status:
|
|
6001
|
+
status: import("@tmdb-graphql-api/schema/types").TvStatus;
|
|
6002
6002
|
tagline?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
6003
6003
|
translations?: ({
|
|
6004
6004
|
__typename?: "Translation" | undefined;
|
|
@@ -6015,7 +6015,7 @@ export declare const resolveTv: (obj: RawTv | undefined, args: QueryTvArgs, { fr
|
|
|
6015
6015
|
iso_3166_1: string;
|
|
6016
6016
|
name: string;
|
|
6017
6017
|
} | null)[] | null | undefined;
|
|
6018
|
-
type:
|
|
6018
|
+
type: import("@tmdb-graphql-api/schema/types").TvType;
|
|
6019
6019
|
videos?: ({
|
|
6020
6020
|
id: string | number;
|
|
6021
6021
|
__typename?: "Video" | undefined;
|
|
@@ -8264,7 +8264,7 @@ export declare const resolveTv: (obj: RawTv | undefined, args: QueryTvArgs, { fr
|
|
|
8264
8264
|
} | null)[] | null | undefined;
|
|
8265
8265
|
} | null)[];
|
|
8266
8266
|
similar_tv_shows?: any | null | undefined;
|
|
8267
|
-
status:
|
|
8267
|
+
status: import("@tmdb-graphql-api/schema/types").TvStatus;
|
|
8268
8268
|
tagline?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
8269
8269
|
translations?: ({
|
|
8270
8270
|
__typename?: "Translation" | undefined;
|
|
@@ -8281,7 +8281,7 @@ export declare const resolveTv: (obj: RawTv | undefined, args: QueryTvArgs, { fr
|
|
|
8281
8281
|
iso_3166_1: string;
|
|
8282
8282
|
name: string;
|
|
8283
8283
|
} | null)[] | null | undefined;
|
|
8284
|
-
type:
|
|
8284
|
+
type: import("@tmdb-graphql-api/schema/types").TvType;
|
|
8285
8285
|
videos?: ({
|
|
8286
8286
|
id: string | number;
|
|
8287
8287
|
__typename?: "Video" | undefined;
|
|
@@ -9671,7 +9671,7 @@ export declare const resolveTv: (obj: RawTv | undefined, args: QueryTvArgs, { fr
|
|
|
9671
9671
|
} | null | undefined;
|
|
9672
9672
|
__typename?: "Tv" | undefined;
|
|
9673
9673
|
name: string;
|
|
9674
|
-
type:
|
|
9674
|
+
type: import("@tmdb-graphql-api/schema/types").TvType;
|
|
9675
9675
|
id: string | number;
|
|
9676
9676
|
backdrop_path?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
9677
9677
|
overview: string;
|
|
@@ -9714,7 +9714,7 @@ export declare const resolveTv: (obj: RawTv | undefined, args: QueryTvArgs, { fr
|
|
|
9714
9714
|
origin_country?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
9715
9715
|
parent_company?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
9716
9716
|
} | null)[];
|
|
9717
|
-
status:
|
|
9717
|
+
status: import("@tmdb-graphql-api/schema/types").TvStatus;
|
|
9718
9718
|
tagline?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
9719
9719
|
created_by?: {
|
|
9720
9720
|
id: string | number;
|
|
@@ -906,7 +906,7 @@ export declare const resolveTvRecommendations: (source: {
|
|
|
906
906
|
} | null)[] | null | undefined;
|
|
907
907
|
} | null)[];
|
|
908
908
|
similar_tv_shows?: any | null | undefined;
|
|
909
|
-
status:
|
|
909
|
+
status: import("@tmdb-graphql-api/schema/types").TvStatus;
|
|
910
910
|
tagline?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
911
911
|
translations?: ({
|
|
912
912
|
__typename?: "Translation" | undefined;
|
|
@@ -923,7 +923,7 @@ export declare const resolveTvRecommendations: (source: {
|
|
|
923
923
|
iso_3166_1: string;
|
|
924
924
|
name: string;
|
|
925
925
|
} | null)[] | null | undefined;
|
|
926
|
-
type:
|
|
926
|
+
type: import("@tmdb-graphql-api/schema/types").TvType;
|
|
927
927
|
videos?: ({
|
|
928
928
|
id: string | number;
|
|
929
929
|
__typename?: "Video" | undefined;
|
|
@@ -3172,7 +3172,7 @@ export declare const resolveTvRecommendations: (source: {
|
|
|
3172
3172
|
} | null)[] | null | undefined;
|
|
3173
3173
|
} | null)[];
|
|
3174
3174
|
similar_tv_shows?: any | null | undefined;
|
|
3175
|
-
status:
|
|
3175
|
+
status: import("@tmdb-graphql-api/schema/types").TvStatus;
|
|
3176
3176
|
tagline?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
3177
3177
|
translations?: ({
|
|
3178
3178
|
__typename?: "Translation" | undefined;
|
|
@@ -3189,7 +3189,7 @@ export declare const resolveTvRecommendations: (source: {
|
|
|
3189
3189
|
iso_3166_1: string;
|
|
3190
3190
|
name: string;
|
|
3191
3191
|
} | null)[] | null | undefined;
|
|
3192
|
-
type:
|
|
3192
|
+
type: import("@tmdb-graphql-api/schema/types").TvType;
|
|
3193
3193
|
videos?: ({
|
|
3194
3194
|
id: string | number;
|
|
3195
3195
|
__typename?: "Video" | undefined;
|
|
@@ -4579,7 +4579,7 @@ export declare const resolveTvRecommendations: (source: {
|
|
|
4579
4579
|
} | null | undefined;
|
|
4580
4580
|
__typename?: "Tv" | undefined;
|
|
4581
4581
|
name: string;
|
|
4582
|
-
type:
|
|
4582
|
+
type: import("@tmdb-graphql-api/schema/types").TvType;
|
|
4583
4583
|
id: string | number;
|
|
4584
4584
|
backdrop_path?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
4585
4585
|
overview: string;
|
|
@@ -4622,7 +4622,7 @@ export declare const resolveTvRecommendations: (source: {
|
|
|
4622
4622
|
origin_country?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
4623
4623
|
parent_company?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
4624
4624
|
} | null)[];
|
|
4625
|
-
status:
|
|
4625
|
+
status: import("@tmdb-graphql-api/schema/types").TvStatus;
|
|
4626
4626
|
tagline?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
4627
4627
|
created_by?: {
|
|
4628
4628
|
id: string | number;
|
|
@@ -906,7 +906,7 @@ export declare const resolveTvReviews: (source: {
|
|
|
906
906
|
} | null)[] | null | undefined;
|
|
907
907
|
} | null)[];
|
|
908
908
|
similar_tv_shows?: any | null | undefined;
|
|
909
|
-
status:
|
|
909
|
+
status: import("@tmdb-graphql-api/schema/types").TvStatus;
|
|
910
910
|
tagline?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
911
911
|
translations?: ({
|
|
912
912
|
__typename?: "Translation" | undefined;
|
|
@@ -923,7 +923,7 @@ export declare const resolveTvReviews: (source: {
|
|
|
923
923
|
iso_3166_1: string;
|
|
924
924
|
name: string;
|
|
925
925
|
} | null)[] | null | undefined;
|
|
926
|
-
type:
|
|
926
|
+
type: import("@tmdb-graphql-api/schema/types").TvType;
|
|
927
927
|
videos?: ({
|
|
928
928
|
id: string | number;
|
|
929
929
|
__typename?: "Video" | undefined;
|
|
@@ -3172,7 +3172,7 @@ export declare const resolveTvReviews: (source: {
|
|
|
3172
3172
|
} | null)[] | null | undefined;
|
|
3173
3173
|
} | null)[];
|
|
3174
3174
|
similar_tv_shows?: any | null | undefined;
|
|
3175
|
-
status:
|
|
3175
|
+
status: import("@tmdb-graphql-api/schema/types").TvStatus;
|
|
3176
3176
|
tagline?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
3177
3177
|
translations?: ({
|
|
3178
3178
|
__typename?: "Translation" | undefined;
|
|
@@ -3189,7 +3189,7 @@ export declare const resolveTvReviews: (source: {
|
|
|
3189
3189
|
iso_3166_1: string;
|
|
3190
3190
|
name: string;
|
|
3191
3191
|
} | null)[] | null | undefined;
|
|
3192
|
-
type:
|
|
3192
|
+
type: import("@tmdb-graphql-api/schema/types").TvType;
|
|
3193
3193
|
videos?: ({
|
|
3194
3194
|
id: string | number;
|
|
3195
3195
|
__typename?: "Video" | undefined;
|
|
@@ -4579,7 +4579,7 @@ export declare const resolveTvReviews: (source: {
|
|
|
4579
4579
|
} | null | undefined;
|
|
4580
4580
|
__typename?: "Tv" | undefined;
|
|
4581
4581
|
name: string;
|
|
4582
|
-
type:
|
|
4582
|
+
type: import("@tmdb-graphql-api/schema/types").TvType;
|
|
4583
4583
|
id: string | number;
|
|
4584
4584
|
backdrop_path?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
4585
4585
|
overview: string;
|
|
@@ -4622,7 +4622,7 @@ export declare const resolveTvReviews: (source: {
|
|
|
4622
4622
|
origin_country?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
4623
4623
|
parent_company?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
4624
4624
|
} | null)[];
|
|
4625
|
-
status:
|
|
4625
|
+
status: import("@tmdb-graphql-api/schema/types").TvStatus;
|
|
4626
4626
|
tagline?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
4627
4627
|
created_by?: {
|
|
4628
4628
|
id: string | number;
|
|
@@ -906,7 +906,7 @@ export declare const resolveTvSimilarTvShows: (source: {
|
|
|
906
906
|
} | null)[] | null | undefined;
|
|
907
907
|
} | null)[];
|
|
908
908
|
similar_tv_shows?: any | null | undefined;
|
|
909
|
-
status:
|
|
909
|
+
status: import("@tmdb-graphql-api/schema/types").TvStatus;
|
|
910
910
|
tagline?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
911
911
|
translations?: ({
|
|
912
912
|
__typename?: "Translation" | undefined;
|
|
@@ -923,7 +923,7 @@ export declare const resolveTvSimilarTvShows: (source: {
|
|
|
923
923
|
iso_3166_1: string;
|
|
924
924
|
name: string;
|
|
925
925
|
} | null)[] | null | undefined;
|
|
926
|
-
type:
|
|
926
|
+
type: import("@tmdb-graphql-api/schema/types").TvType;
|
|
927
927
|
videos?: ({
|
|
928
928
|
id: string | number;
|
|
929
929
|
__typename?: "Video" | undefined;
|
|
@@ -3172,7 +3172,7 @@ export declare const resolveTvSimilarTvShows: (source: {
|
|
|
3172
3172
|
} | null)[] | null | undefined;
|
|
3173
3173
|
} | null)[];
|
|
3174
3174
|
similar_tv_shows?: any | null | undefined;
|
|
3175
|
-
status:
|
|
3175
|
+
status: import("@tmdb-graphql-api/schema/types").TvStatus;
|
|
3176
3176
|
tagline?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
3177
3177
|
translations?: ({
|
|
3178
3178
|
__typename?: "Translation" | undefined;
|
|
@@ -3189,7 +3189,7 @@ export declare const resolveTvSimilarTvShows: (source: {
|
|
|
3189
3189
|
iso_3166_1: string;
|
|
3190
3190
|
name: string;
|
|
3191
3191
|
} | null)[] | null | undefined;
|
|
3192
|
-
type:
|
|
3192
|
+
type: import("@tmdb-graphql-api/schema/types").TvType;
|
|
3193
3193
|
videos?: ({
|
|
3194
3194
|
id: string | number;
|
|
3195
3195
|
__typename?: "Video" | undefined;
|
|
@@ -4579,7 +4579,7 @@ export declare const resolveTvSimilarTvShows: (source: {
|
|
|
4579
4579
|
} | null | undefined;
|
|
4580
4580
|
__typename?: "Tv" | undefined;
|
|
4581
4581
|
name: string;
|
|
4582
|
-
type:
|
|
4582
|
+
type: import("@tmdb-graphql-api/schema/types").TvType;
|
|
4583
4583
|
id: string | number;
|
|
4584
4584
|
backdrop_path?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
4585
4585
|
overview: string;
|
|
@@ -4622,7 +4622,7 @@ export declare const resolveTvSimilarTvShows: (source: {
|
|
|
4622
4622
|
origin_country?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
4623
4623
|
parent_company?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
4624
4624
|
} | null)[];
|
|
4625
|
-
status:
|
|
4625
|
+
status: import("@tmdb-graphql-api/schema/types").TvStatus;
|
|
4626
4626
|
tagline?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
4627
4627
|
created_by?: {
|
|
4628
4628
|
id: string | number;
|
package/dist/types/esm/main.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../../../src/main.ts"],"names":[],"mappings":"AA4EA,OAAO,EACL,KAAK,aAAa,EAKnB,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../../../src/main.ts"],"names":[],"mappings":"AA4EA,OAAO,EACL,KAAK,aAAa,EAKnB,MAAM,YAAY,CAAC;AAuCpB,eAAO,MAAM,SAAS,EAAE,MAAM,CAAC,MAAM,EAAE,aAAa,GAAG,MAAM,CAAC,MAAM,EAAE,aAAa,CAAC,CA4InF,CAAC"}
|
|
@@ -219,7 +219,7 @@ export declare const resolveCollection: (obj: RawCollection | undefined, args: Q
|
|
|
219
219
|
iso_639_1: string;
|
|
220
220
|
note: string;
|
|
221
221
|
release_date: string;
|
|
222
|
-
type:
|
|
222
|
+
type: import("@tmdb-graphql-api/schema/types").MovieReleaseType;
|
|
223
223
|
} | null)[];
|
|
224
224
|
} | null)[] | null | undefined;
|
|
225
225
|
revenue: number;
|
|
@@ -298,7 +298,7 @@ export declare const resolveCollection: (obj: RawCollection | undefined, args: Q
|
|
|
298
298
|
iso_639_1: string;
|
|
299
299
|
name?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
300
300
|
} | null)[];
|
|
301
|
-
status:
|
|
301
|
+
status: import("@tmdb-graphql-api/schema/types").MovieStatus;
|
|
302
302
|
tagline?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
303
303
|
title: string;
|
|
304
304
|
translations?: ({
|
|
@@ -1915,7 +1915,7 @@ export declare const resolveCollection: (obj: RawCollection | undefined, args: Q
|
|
|
1915
1915
|
iso_639_1: string;
|
|
1916
1916
|
note: string;
|
|
1917
1917
|
release_date: string;
|
|
1918
|
-
type:
|
|
1918
|
+
type: import("@tmdb-graphql-api/schema/types").MovieReleaseType;
|
|
1919
1919
|
} | null)[];
|
|
1920
1920
|
} | null)[] | null | undefined;
|
|
1921
1921
|
revenue: number;
|
|
@@ -1994,7 +1994,7 @@ export declare const resolveCollection: (obj: RawCollection | undefined, args: Q
|
|
|
1994
1994
|
iso_639_1: string;
|
|
1995
1995
|
name?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
1996
1996
|
} | null)[];
|
|
1997
|
-
status:
|
|
1997
|
+
status: import("@tmdb-graphql-api/schema/types").MovieStatus;
|
|
1998
1998
|
tagline?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
1999
1999
|
title: string;
|
|
2000
2000
|
translations?: ({
|
|
@@ -219,7 +219,7 @@ export declare const resolveCredit: (_obj: undefined, { id }: QueryCreditArgs, {
|
|
|
219
219
|
iso_639_1: string;
|
|
220
220
|
note: string;
|
|
221
221
|
release_date: string;
|
|
222
|
-
type:
|
|
222
|
+
type: import("@tmdb-graphql-api/schema/types").MovieReleaseType;
|
|
223
223
|
} | null)[];
|
|
224
224
|
} | null)[] | null | undefined;
|
|
225
225
|
revenue: number;
|
|
@@ -298,7 +298,7 @@ export declare const resolveCredit: (_obj: undefined, { id }: QueryCreditArgs, {
|
|
|
298
298
|
iso_639_1: string;
|
|
299
299
|
name?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
300
300
|
} | null)[];
|
|
301
|
-
status:
|
|
301
|
+
status: import("@tmdb-graphql-api/schema/types").MovieStatus;
|
|
302
302
|
tagline?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
303
303
|
title: string;
|
|
304
304
|
translations?: ({
|
|
@@ -2595,7 +2595,7 @@ export declare const resolveCredit: (_obj: undefined, { id }: QueryCreditArgs, {
|
|
|
2595
2595
|
nodes?: (any | null)[] | null | undefined;
|
|
2596
2596
|
total_count: number;
|
|
2597
2597
|
} | null | undefined;
|
|
2598
|
-
status:
|
|
2598
|
+
status: import("@tmdb-graphql-api/schema/types").TvStatus;
|
|
2599
2599
|
tagline?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
2600
2600
|
translations?: ({
|
|
2601
2601
|
__typename?: "Translation" | undefined;
|
|
@@ -2612,7 +2612,7 @@ export declare const resolveCredit: (_obj: undefined, { id }: QueryCreditArgs, {
|
|
|
2612
2612
|
iso_3166_1: string;
|
|
2613
2613
|
name: string;
|
|
2614
2614
|
} | null)[] | null | undefined;
|
|
2615
|
-
type:
|
|
2615
|
+
type: import("@tmdb-graphql-api/schema/types").TvType;
|
|
2616
2616
|
videos?: ({
|
|
2617
2617
|
id: string | number;
|
|
2618
2618
|
__typename?: "Video" | undefined;
|
|
@@ -220,7 +220,7 @@ export declare const resolveFind: (_obj: undefined, { id, source }: QueryFindArg
|
|
|
220
220
|
iso_639_1: string;
|
|
221
221
|
note: string;
|
|
222
222
|
release_date: string;
|
|
223
|
-
type:
|
|
223
|
+
type: import("@tmdb-graphql-api/schema/types").MovieReleaseType;
|
|
224
224
|
} | null)[];
|
|
225
225
|
} | null)[] | null | undefined;
|
|
226
226
|
revenue: number;
|
|
@@ -299,7 +299,7 @@ export declare const resolveFind: (_obj: undefined, { id, source }: QueryFindArg
|
|
|
299
299
|
iso_639_1: string;
|
|
300
300
|
name?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
301
301
|
} | null)[];
|
|
302
|
-
status:
|
|
302
|
+
status: import("@tmdb-graphql-api/schema/types").MovieStatus;
|
|
303
303
|
tagline?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
304
304
|
title: string;
|
|
305
305
|
translations?: ({
|
|
@@ -1776,7 +1776,7 @@ export declare const resolveFind: (_obj: undefined, { id, source }: QueryFindArg
|
|
|
1776
1776
|
iso_639_1: string;
|
|
1777
1777
|
name?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
1778
1778
|
} | null)[];
|
|
1779
|
-
status:
|
|
1779
|
+
status: import("@tmdb-graphql-api/schema/types").MovieStatus;
|
|
1780
1780
|
tagline?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
1781
1781
|
}[] | undefined;
|
|
1782
1782
|
people: {
|
|
@@ -209,7 +209,7 @@ export declare const resolveMovie: (obj: RawMovie | undefined, args: QueryMovieA
|
|
|
209
209
|
iso_639_1: string;
|
|
210
210
|
note: string;
|
|
211
211
|
release_date: string;
|
|
212
|
-
type:
|
|
212
|
+
type: import("@tmdb-graphql-api/schema/types").MovieReleaseType;
|
|
213
213
|
} | null)[];
|
|
214
214
|
} | null)[] | null | undefined;
|
|
215
215
|
revenue: number;
|
|
@@ -288,7 +288,7 @@ export declare const resolveMovie: (obj: RawMovie | undefined, args: QueryMovieA
|
|
|
288
288
|
iso_639_1: string;
|
|
289
289
|
name?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
290
290
|
} | null)[];
|
|
291
|
-
status:
|
|
291
|
+
status: import("@tmdb-graphql-api/schema/types").MovieStatus;
|
|
292
292
|
tagline?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
293
293
|
title: string;
|
|
294
294
|
translations?: ({
|
|
@@ -1965,7 +1965,7 @@ export declare const resolveMovie: (obj: RawMovie | undefined, args: QueryMovieA
|
|
|
1965
1965
|
iso_639_1: string;
|
|
1966
1966
|
note: string;
|
|
1967
1967
|
release_date: string;
|
|
1968
|
-
type:
|
|
1968
|
+
type: import("@tmdb-graphql-api/schema/types").MovieReleaseType;
|
|
1969
1969
|
} | null)[];
|
|
1970
1970
|
} | null)[] | null | undefined;
|
|
1971
1971
|
revenue: number;
|
|
@@ -2044,7 +2044,7 @@ export declare const resolveMovie: (obj: RawMovie | undefined, args: QueryMovieA
|
|
|
2044
2044
|
iso_639_1: string;
|
|
2045
2045
|
name?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
2046
2046
|
} | null)[];
|
|
2047
|
-
status:
|
|
2047
|
+
status: import("@tmdb-graphql-api/schema/types").MovieStatus;
|
|
2048
2048
|
tagline?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
2049
2049
|
title: string;
|
|
2050
2050
|
translations?: ({
|
|
@@ -3521,7 +3521,7 @@ export declare const resolveMovie: (obj: RawMovie | undefined, args: QueryMovieA
|
|
|
3521
3521
|
iso_639_1: string;
|
|
3522
3522
|
name?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
3523
3523
|
} | null)[] | undefined;
|
|
3524
|
-
status?:
|
|
3524
|
+
status?: import("@tmdb-graphql-api/schema/types").MovieStatus | undefined;
|
|
3525
3525
|
tagline?: import("@tmdb-graphql-api/schema/types").Maybe<string> | undefined;
|
|
3526
3526
|
alternative_titles?: Omit<import("../types.ts").RawMovieAlternativeTitles, "id"> | undefined;
|
|
3527
3527
|
credits?: Omit<{
|