Skip to content

Releases: noelrohi/simkl-node

v0.2.3

Choose a tag to compare

@github-actions github-actions released this 02 May 14:10
508a15f

Patch Changes

  • 4db44ec: Added Episodes method

    Usage

    import { Anime } from "simkl-node/anime";
    
    const anime = new ANIME("YOUR_CLIENT_ID");
    
    // Get the episodes of an anime
    const episodes = await anime.episodes("simkl_anime_id");

v0.2.2

Choose a tag to compare

@github-actions github-actions released this 28 Apr 02:30
3137c21

Patch Changes

  • 7679d68: - Fixes import from simkl/anime

    Before

    import Anime from "simkl-node/anime";

    After

    import { Anime } from "simkl-node/anime";

v0.2.1

Choose a tag to compare

@github-actions github-actions released this 27 Apr 16:54
625f821

Patch Changes

v0.2.0

Choose a tag to compare

@github-actions github-actions released this 27 Apr 15:05
a9ca500

Minor Changes

  • bed4888: Moved simkl-node/simkl to simkl-node

v0.1.1

Choose a tag to compare

@github-actions github-actions released this 27 Apr 14:12
68e03d0

Patch Changes

v0.1.0

Choose a tag to compare

@github-actions github-actions released this 27 Apr 13:54

Minor Changes

  • 8ecd543: Separated anime, simkl, types

    • Anime class is now in src/anime/index.ts
    • Simkl class is now in src/simkl/index.ts
    • types is now in src/types/index.ts

    Instead of importing them all in simkl-node, you can now import them individually.

    Before

    import { Anime, Simkl, types } from "simkl-node";

    After

    import { Anime } from "simkl-node/anime";
    import { Simkl } from "simkl-node/simkl";