open-movie-database-api
Advanced tools
Comparing version 1.1.1 to 1.1.2
@@ -19,2 +19,6 @@ export declare enum OmdbResultType { | ||
} | ||
export interface OmdbRating { | ||
Source: string; | ||
Value: string; | ||
} | ||
export interface OmdbGetResult { | ||
@@ -35,6 +39,3 @@ Title: string; | ||
Poster: string; | ||
Ratings: { | ||
Source: string; | ||
Value: string; | ||
}[]; | ||
Ratings: OmdbRating[]; | ||
Metascore: string; | ||
@@ -51,10 +52,11 @@ imdbRating: string; | ||
} | ||
export interface OmdbSearchResultItem { | ||
Title: string; | ||
Year: string; | ||
imdbID: string; | ||
Type: string; | ||
Poster: string; | ||
} | ||
export interface OmdbSearchResult { | ||
Search: { | ||
Title: string; | ||
Year: string; | ||
imdbID: string; | ||
Type: string; | ||
Poster: string; | ||
}[]; | ||
Search: OmdbSearchResultItem[]; | ||
totalResults: string; | ||
@@ -61,0 +63,0 @@ Response: string; |
{ | ||
"name": "open-movie-database-api", | ||
"version": "1.1.1", | ||
"version": "1.1.2", | ||
"description": "OMDb API client for node.js", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
217
35828