themoviedb-ts-api
Advanced tools
Comparing version 0.0.7 to 0.0.8
import { TheMovieDbHttpGet } from '.'; | ||
interface TvSeasonsDetails { | ||
export declare type GetTvSeasonsDetailsApiQuery = Partial<{ | ||
language: string; | ||
append_to_response: string; | ||
}>; | ||
export interface TvSeasonsDetails { | ||
_id: string; | ||
@@ -39,3 +43,8 @@ air_date: string; | ||
} | ||
interface TvSeasonsChanges { | ||
export declare type GetTvSeasonsChangesApiQuery = Partial<{ | ||
start_date: string; | ||
end_date: string; | ||
page: number; | ||
}>; | ||
export interface TvSeasonsChanges { | ||
changes: { | ||
@@ -59,3 +68,3 @@ key: string; | ||
}>; | ||
interface TvSeasonsCredits { | ||
export interface TvSeasonsCredits { | ||
cast: { | ||
@@ -84,3 +93,3 @@ character: string; | ||
}>; | ||
interface TvSeasonsExternalIds { | ||
export interface TvSeasonsExternalIds { | ||
freebase_mid: string | null; | ||
@@ -95,3 +104,3 @@ freebase_id: string | null; | ||
}>; | ||
interface TvSeasonsImages { | ||
export interface TvSeasonsImages { | ||
id: number; | ||
@@ -113,3 +122,3 @@ posters: { | ||
export declare type TvSeasonsVideoType = 'Trailer' | 'Teaser' | 'Clip' | 'Featurette' | 'Opening Credits' | 'Behind the Scenes' | 'Bloopers' | 'Recap'; | ||
interface TvSeasonsVideos { | ||
export interface TvSeasonsVideos { | ||
id: number; | ||
@@ -116,0 +125,0 @@ results: { |
{ | ||
"name": "themoviedb-ts-api", | ||
"version": "0.0.7", | ||
"version": "0.0.8", | ||
"description": "A TypeScript Library to interact with the API of TheMovieDB", | ||
@@ -5,0 +5,0 @@ "keywords": ["api", "themoviedb"], |
83436
1611