-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.d.ts
113 lines (104 loc) · 2.59 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
/**
* Retrieves a list of movies.
*
* @param params - Optional query parameters for pagination, sorting, and filtering.
* @returns A promise that resolves to an array of movies.
*/
export declare function getMovies(
params?: QueryParams
): Promise<APIResponse<Movie>>;
/**
* Retrieves a movie by its ID.
*
* @param id - The ID of the movie.
* @returns A promise that resolves to the movie object, or null if the movie is not found.
*/
export declare function getMovieById(
id: string
): Promise<APIResponse<Movie> | null>;
/**
* Retrieves quotes for a specific movie.
*
* @param id - The ID of the movie.
* @param params - Optional query parameters for pagination, sorting, and filtering.
* @returns A promise that resolves to the API response object containing the quotes.
*/
export declare function getMovieQuotes(
id: string,
params?: QueryParams
): Promise<APIResponse<Movie>>;
/**
* Retrieves a list of quotes.
*
* @param params - Optional query parameters for pagination, sorting, and filtering.
* @returns A promise that resolves to the API response object containing the quotes.
*/
export declare function getQuotes(
params?: QueryParams
): Promise<APIResponse<Quote>>;
/**
* Retrieves a quote by its ID.
*
* @param id - The ID of the quote.
* @returns A promise that resolves to the quote object, or null if the quote is not found.
*/
export declare function getQuoteById(
id: string
): Promise<APIResponse<Quote> | null>;
/**
* Query parameters for pagination, sorting, and filtering.
*/
export interface QueryParams {
page?: number;
limit?: number;
offset?: number;
sort?: string;
filters?: Filters;
}
/**
* Filtering criteria for the API.
*/
export interface Filters {
match?: Record<string | number, string | number>;
negateMatch?: Record<string | number, string | number>;
include?: Record<string, string[]>;
exclude?: Record<string, string[]>;
exists?: string[];
doesNotExist?: string[];
regex?: Record<string, string>;
lessThan?: Record<string, number>;
greaterThanOrEqual?: Record<string, number>;
}
/**
* API response object.
*/
export interface APIResponse<T> {
docs: T[];
total: number;
limit: number;
offset: number;
page: number;
pages: number;
}
/**
* Movie object.
*/
export interface Movie {
_id: string;
name: string;
runtimeInMinutes: number;
budgetInMillions: number;
boxOfficeRevenueInMillions: number;
academyAwardNominations: number;
academyAwardWins: number;
rottenTomatoesScore: number;
}
/**
* Quote object.
*/
export interface Quote {
_id: string;
dialog: string;
movie: string;
character: string;
}