update const enums

This commit is contained in:
Blake Joynes
2024-03-30 15:49:47 -04:00
parent 3d3ec34fc5
commit e723b2f8fa
2 changed files with 7 additions and 7 deletions

View File

@@ -1,6 +1,6 @@
{ {
"name": "tmdb-ts", "name": "tmdb-ts",
"version": "1.7.1", "version": "1.8.0",
"description": "TMDB v3 library wrapper", "description": "TMDB v3 library wrapper",
"main": "dist/index.js", "main": "dist/index.js",
"types": "dist/index.d.ts", "types": "dist/index.d.ts",

View File

@@ -13,7 +13,7 @@ export interface Configuration {
change_keys: ChangeKeys[]; change_keys: ChangeKeys[];
} }
export const enum BackdropSizes { export enum BackdropSizes {
W300 = 'w300', W300 = 'w300',
W500 = 'w500', W500 = 'w500',
W780 = 'w780', W780 = 'w780',
@@ -21,7 +21,7 @@ export const enum BackdropSizes {
ORIGINAL = 'original', ORIGINAL = 'original',
} }
export const enum LogoSizes { export enum LogoSizes {
W45 = 'w45', W45 = 'w45',
W92 = 'w92', W92 = 'w92',
W154 = 'w154', W154 = 'w154',
@@ -31,7 +31,7 @@ export const enum LogoSizes {
ORIGINAL = 'original', ORIGINAL = 'original',
} }
export const enum PosterSizes { export enum PosterSizes {
W92 = 'w92', W92 = 'w92',
W154 = 'w154', W154 = 'w154',
W185 = 'w185', W185 = 'w185',
@@ -41,21 +41,21 @@ export const enum PosterSizes {
ORIGINAL = 'original', ORIGINAL = 'original',
} }
export const enum ProfileSizes { export enum ProfileSizes {
W45 = 'w45', W45 = 'w45',
W185 = 'w185', W185 = 'w185',
W632 = 'w632', W632 = 'w632',
ORIGINAL = 'original', ORIGINAL = 'original',
} }
export const enum StillSizes { export enum StillSizes {
W92 = 'w92', W92 = 'w92',
W185 = 'w185', W185 = 'w185',
W300 = 'w300', W300 = 'w300',
ORIGINAL = 'original', ORIGINAL = 'original',
} }
export const enum ChangeKeys { export enum ChangeKeys {
ADULT = 'adult', ADULT = 'adult',
AIR_DATE = 'air_date', AIR_DATE = 'air_date',
ALSO_KNOWN_AS = 'also_known_as', ALSO_KNOWN_AS = 'also_known_as',