@justwicked/tmdb-client 1.0.2 → 1.0.3
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/client/tmdb-client.d.ts +14 -14
- package/dist/client/tmdb-client.js +28 -28
- package/package.json +1 -1
|
@@ -24,24 +24,24 @@ export declare class TmdbClient {
|
|
|
24
24
|
readonly defaultOptions: CustomRequestInit;
|
|
25
25
|
account: AccountService;
|
|
26
26
|
authentication: AuthenticationService;
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
27
|
+
certifications: CertificationService;
|
|
28
|
+
collections: CollectionService;
|
|
29
|
+
companies: CompanyService;
|
|
30
|
+
configurations: ConfigurationService;
|
|
31
|
+
credits: CreditService;
|
|
32
32
|
discover: DiscoverService;
|
|
33
33
|
find: FindService;
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
34
|
+
genres: GenreService;
|
|
35
|
+
guestSessions: GuestSessionService;
|
|
36
|
+
keywords: KeywordService;
|
|
37
|
+
lists: ListService;
|
|
38
|
+
movies: MovieService;
|
|
39
|
+
networks: NetworkService;
|
|
40
|
+
persons: PersonService;
|
|
41
|
+
reviews: ReviewService;
|
|
42
42
|
search: SearchService;
|
|
43
43
|
trending: TrendingService;
|
|
44
|
-
|
|
44
|
+
tvShows: TVService;
|
|
45
45
|
watch: WatchService;
|
|
46
46
|
constructor(defaultOptions: CustomRequestInit);
|
|
47
47
|
}
|
|
@@ -23,47 +23,47 @@ export class TmdbClient {
|
|
|
23
23
|
defaultOptions;
|
|
24
24
|
account;
|
|
25
25
|
authentication;
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
26
|
+
certifications;
|
|
27
|
+
collections;
|
|
28
|
+
companies;
|
|
29
|
+
configurations;
|
|
30
|
+
credits;
|
|
31
31
|
discover;
|
|
32
32
|
find;
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
33
|
+
genres;
|
|
34
|
+
guestSessions;
|
|
35
|
+
keywords;
|
|
36
|
+
lists;
|
|
37
|
+
movies;
|
|
38
|
+
networks;
|
|
39
|
+
persons;
|
|
40
|
+
reviews;
|
|
41
41
|
search;
|
|
42
42
|
trending;
|
|
43
|
-
|
|
43
|
+
tvShows;
|
|
44
44
|
watch;
|
|
45
45
|
constructor(defaultOptions) {
|
|
46
46
|
this.defaultOptions = defaultOptions;
|
|
47
47
|
this.account = new AccountService(defaultOptions);
|
|
48
48
|
this.authentication = new AuthenticationService(defaultOptions);
|
|
49
|
-
this.
|
|
50
|
-
this.
|
|
51
|
-
this.
|
|
52
|
-
this.
|
|
53
|
-
this.
|
|
49
|
+
this.certifications = new CertificationService(defaultOptions);
|
|
50
|
+
this.collections = new CollectionService(defaultOptions);
|
|
51
|
+
this.companies = new CompanyService(defaultOptions);
|
|
52
|
+
this.configurations = new ConfigurationService(defaultOptions);
|
|
53
|
+
this.credits = new CreditService(defaultOptions);
|
|
54
54
|
this.discover = new DiscoverService(defaultOptions);
|
|
55
55
|
this.find = new FindService(defaultOptions);
|
|
56
|
-
this.
|
|
57
|
-
this.
|
|
58
|
-
this.
|
|
59
|
-
this.
|
|
60
|
-
this.
|
|
61
|
-
this.
|
|
62
|
-
this.
|
|
63
|
-
this.
|
|
56
|
+
this.genres = new GenreService(defaultOptions);
|
|
57
|
+
this.guestSessions = new GuestSessionService(defaultOptions);
|
|
58
|
+
this.keywords = new KeywordService(defaultOptions);
|
|
59
|
+
this.lists = new ListService(defaultOptions);
|
|
60
|
+
this.movies = new MovieService(defaultOptions);
|
|
61
|
+
this.networks = new NetworkService(defaultOptions);
|
|
62
|
+
this.persons = new PersonService(defaultOptions);
|
|
63
|
+
this.reviews = new ReviewService(defaultOptions);
|
|
64
64
|
this.search = new SearchService(defaultOptions);
|
|
65
65
|
this.trending = new TrendingService(defaultOptions);
|
|
66
|
-
this.
|
|
66
|
+
this.tvShows = new TVService(defaultOptions);
|
|
67
67
|
this.watch = new WatchService(defaultOptions);
|
|
68
68
|
}
|
|
69
69
|
}
|