@tutkli/jikan-ts 2.0.1 → 2.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.d.ts +2 -1
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -222,7 +222,7 @@ interface Anime {
222
222
  approved: boolean;
223
223
  titles: JikanResourceTitle[];
224
224
  title: string;
225
- title_english: string;
225
+ title_english?: string;
226
226
  title_japanese: string;
227
227
  title_synonyms: string[];
228
228
  type: AnimeType;
@@ -316,6 +316,7 @@ interface Manga {
316
316
  approved: boolean;
317
317
  titles: JikanResourceTitle[];
318
318
  title: string;
319
+ title_english?: string;
319
320
  title_japanese: string;
320
321
  title_synonyms?: string[];
321
322
  type: MangaType;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tutkli/jikan-ts",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
4
4
  "description": "Node.js wrapper for the Jikan API with built-in typings.",
5
5
  "source": "src/index.ts",
6
6
  "main": "dist/index.js",