File tree 3 files changed +6
-6
lines changed
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
- import type { TmdbClientAuthentication , TmdbClientSettings } from '~/models/tmdb/tmdb-client.model' ;
1
+ import type { TmdbClientAuthentication , TmdbClientOptions } from '~/models/tmdb/tmdb-client.model' ;
2
2
3
3
import { tmdbApi } from '~/services/tmdb-client/api/tmdb-api.endpoint' ;
4
4
import { BaseTmdbClient } from '~/services/tmdb-client/clients/base-tmdb-client' ;
@@ -17,7 +17,7 @@ export class TmdbClient extends BaseTmdbClient {
17
17
* @param settings - The settings for the client.
18
18
* @param authentication - The authentication for the client.
19
19
*/
20
- constructor ( settings : TmdbClientSettings , authentication : TmdbClientAuthentication = { } ) {
20
+ constructor ( settings : TmdbClientOptions , authentication : TmdbClientAuthentication = { } ) {
21
21
super ( settings , authentication , tmdbApi ) ;
22
22
}
23
23
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import type {
10
10
TraktClientAuthentication ,
11
11
TraktDeviceAuthentication ,
12
12
} from '~/models/trakt/trakt-authentication.model' ;
13
- import type { TraktApiInit , TraktApiResponse , TraktClientSettings } from '~/models/trakt/trakt-client.model' ;
13
+ import type { TraktApiInit , TraktApiResponse , TraktClientOptions } from '~/models/trakt/trakt-client.model' ;
14
14
15
15
import { TraktApiHeaders } from '~/models/trakt/trakt-client.model' ;
16
16
import { traktApi } from '~/services/trakt-client/api/trakt-api.endpoints' ;
@@ -55,7 +55,7 @@ export class TraktClient extends BaseTraktClient {
55
55
* @param settings - The settings for the client.
56
56
* @param authentication - The authentication for the client.
57
57
*/
58
- constructor ( settings : TraktClientSettings , authentication : TraktClientAuthentication = { } ) {
58
+ constructor ( settings : TraktClientOptions , authentication : TraktClientAuthentication = { } ) {
59
59
super ( settings , authentication , traktApi ) ;
60
60
}
61
61
Original file line number Diff line number Diff line change 1
- import type { TvdbClientAuthentication , TvdbClientSettings } from '~/models/tvdb/tvdb-client.model' ;
1
+ import type { TvdbClientAuthentication , TvdbClientOptions } from '~/models/tvdb/tvdb-client.model' ;
2
2
3
3
import { tvdbApi } from '~/services/tvdb-client/api/tvdb-api.endpoint' ;
4
4
import { BaseTvdbClient } from '~/services/tvdb-client/clients/base-tvdb-client' ;
@@ -16,7 +16,7 @@ export class TvdbClient extends BaseTvdbClient {
16
16
* @param settings - The settings for the client.
17
17
* @param authentication - The authentication for the client.
18
18
*/
19
- constructor ( settings : TvdbClientSettings , authentication : TvdbClientAuthentication = { } ) {
19
+ constructor ( settings : TvdbClientOptions , authentication : TvdbClientAuthentication = { } ) {
20
20
super ( settings , authentication , tvdbApi ) ;
21
21
}
22
22
You can’t perform that action at this time.
0 commit comments