@justwicked/tmdb-client 1.0.4 → 1.0.5
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.
|
@@ -4457,6 +4457,11 @@ export type TrendingAllParams = {
|
|
|
4457
4457
|
* `ISO-639-1`-`ISO-3166-1` code
|
|
4458
4458
|
*/
|
|
4459
4459
|
language?: string;
|
|
4460
|
+
/**
|
|
4461
|
+
* Page number for pagination (default is 1)
|
|
4462
|
+
* @minimum 1
|
|
4463
|
+
*/
|
|
4464
|
+
page?: number;
|
|
4460
4465
|
};
|
|
4461
4466
|
export type TrendingAll200ResultsItem = {
|
|
4462
4467
|
adult?: boolean;
|
|
@@ -4486,6 +4491,11 @@ export type TrendingMoviesParams = {
|
|
|
4486
4491
|
* `ISO-639-1`-`ISO-3166-1` code
|
|
4487
4492
|
*/
|
|
4488
4493
|
language?: string;
|
|
4494
|
+
/**
|
|
4495
|
+
* Page number for pagination (default is 1)
|
|
4496
|
+
* @minimum 1
|
|
4497
|
+
*/
|
|
4498
|
+
page?: number;
|
|
4489
4499
|
};
|
|
4490
4500
|
export type TrendingMovies200ResultsItem = {
|
|
4491
4501
|
adult?: boolean;
|
|
@@ -4515,6 +4525,11 @@ export type TrendingPeopleParams = {
|
|
|
4515
4525
|
* `ISO-639-1`-`ISO-3166-1` code
|
|
4516
4526
|
*/
|
|
4517
4527
|
language?: string;
|
|
4528
|
+
/**
|
|
4529
|
+
* Page number for pagination (default is 1)
|
|
4530
|
+
* @minimum 1
|
|
4531
|
+
*/
|
|
4532
|
+
page?: number;
|
|
4518
4533
|
};
|
|
4519
4534
|
export type TrendingPeople200ResultsItemKnownForItem = {
|
|
4520
4535
|
adult?: boolean;
|
|
@@ -4556,6 +4571,11 @@ export type TrendingTvParams = {
|
|
|
4556
4571
|
* `ISO-639-1`-`ISO-3166-1` code
|
|
4557
4572
|
*/
|
|
4558
4573
|
language?: string;
|
|
4574
|
+
/**
|
|
4575
|
+
* Page number for pagination (default is 1)
|
|
4576
|
+
* @minimum 1
|
|
4577
|
+
*/
|
|
4578
|
+
page?: number;
|
|
4559
4579
|
};
|
|
4560
4580
|
export type TrendingTv200ResultsItem = {
|
|
4561
4581
|
adult?: boolean;
|