Comparing version 0.1.7 to 0.1.8
@@ -1,2 +0,2 @@ | ||
import { Movie } from "."; | ||
import { Movie } from '.'; | ||
export interface Collection { | ||
@@ -3,0 +3,0 @@ id: number; |
@@ -1,2 +0,2 @@ | ||
import { Movie, TV } from "."; | ||
import { Movie, TV } from '.'; | ||
export type SortOption = 'popularity.asc' | 'popularity.desc' | 'release_date.asc' | 'release_date.desc' | 'revenue.asc' | 'revenue.desc' | 'primary_release_date.asc' | 'primary_release_date.desc' | 'original_title.asc' | 'original_title.desc' | 'vote_average.asc' | 'vote_average.desc' | 'vote_count.asc' | 'vote_count.desc'; | ||
@@ -3,0 +3,0 @@ export interface MovieDiscoverResult { |
@@ -1,2 +0,2 @@ | ||
import { Movie, Person, TV } from "."; | ||
import { Movie, Person, TV } from '.'; | ||
interface Cast { | ||
@@ -3,0 +3,0 @@ character: string; |
{ | ||
"name": "tmdb-ts", | ||
"version": "0.1.7", | ||
"version": "0.1.8", | ||
"description": "TMDB v3 library wrapper", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
@@ -24,3 +24,3 @@ # tmdb-ts | ||
const movies = await tmdb.search.movies({ query: 'American Pie' }); | ||
console.log(movies); | ||
console.log(movies); | ||
} catch(err) { | ||
@@ -27,0 +27,0 @@ // handle error |
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
98846