-
Notifications
You must be signed in to change notification settings - Fork 245
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: bump version 1.2.13-rc -> 1.3.0
- Loading branch information
Showing
46 changed files
with
1,082 additions
and
654 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
import { ANIME, BOOKS, COMICS, LIGHT_NOVELS, MANGA, MOVIES, META, NEWS } from './providers'; | ||
import { PROVIDERS_LIST } from './utils/providers-list'; | ||
import { VizCloud, AsianLoad, GogoCDN, Kwik, MixDrop, RapidCloud, BilibiliExtractor, Filemoon, StreamSB, StreamTape, VidCloud } from './extractors'; | ||
import { IProviderStats, ISearch, IAnimeEpisode, IAnimeInfo, IAnimeResult, IEpisodeServer, IVideo, LibgenBook, StreamingServers, MediaStatus, SubOrSub, IMangaResult, IMangaChapter, IMangaInfo, ILightNovelResult, ILightNovelInfo, ILightNovelChapter, ILightNovelChapterContent, GetComicsComics, ComicRes, IMangaChapterPage, TvType, IMovieEpisode, IMovieInfo, ISource, ISubtitle, IMovieResult, Intro, Genres, INewsFeed, Topics, INewsInfo, FuzzyDate, ITitle, MediaFormat, ProxyConfig } from './models'; | ||
export { ANIME, BOOKS, COMICS, MANGA, LIGHT_NOVELS, MOVIES, META, NEWS }; | ||
export { PROVIDERS_LIST }; | ||
export { Topics, Genres, SubOrSub, StreamingServers, MediaStatus, IProviderStats, IAnimeEpisode, IAnimeInfo, IAnimeResult, IEpisodeServer, IVideo, LibgenBook, IMangaResult, IMangaChapter, IMangaInfo, ILightNovelResult, ILightNovelInfo, ILightNovelChapter, ILightNovelChapterContent, GetComicsComics, ComicRes, ISearch, IMangaChapterPage, TvType, IMovieEpisode, IMovieInfo, ISource, ISubtitle, IMovieResult, Intro, INewsFeed, INewsInfo, FuzzyDate, ITitle, MediaFormat, ProxyConfig, }; | ||
export { Topics, Genres, SubOrSub, StreamingServers, MediaStatus, IProviderStats, IAnimeEpisode, IAnimeInfo, IAnimeResult, IEpisodeServer, IVideo, LibgenBook, IMangaResult, IMangaChapter, IMangaInfo, ILightNovelResult, ILightNovelInfo, ILightNovelChapter, ILightNovelChapterContent, GetComicsComics, ComicRes, ISearch, IMangaChapterPage, TvType, IMovieEpisode, IMovieInfo, ISource, ISubtitle, IMovieResult, Intro, INewsFeed, INewsInfo, FuzzyDate, ITitle, MediaFormat, ProxyConfig, GogoCDN, StreamSB, VidCloud, MixDrop, Kwik, RapidCloud, StreamTape, VizCloud, Filemoon, BilibiliExtractor, AsianLoad, }; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +0,0 @@ | ||
import { AnimeParser, ISearch, IAnimeInfo, IAnimeResult, ISource, IEpisodeServer } from '../../models'; | ||
declare class Crunchyroll extends AnimeParser { | ||
readonly name = "Crunchyroll"; | ||
protected baseUrl: string; | ||
protected logo: string; | ||
protected classPath: string; | ||
private locale; | ||
private channelId; | ||
private TOKEN; | ||
private options; | ||
private locales; | ||
private subOrder; | ||
fetch(locale?: string, token?: string, accessToken?: string): Promise<any>; | ||
/** | ||
* | ||
* @param locale Locale (default: en-US) (ar-ME, ar-SA, de-DE, en-US, es-419, es-ES, fr-FR, he-IL, it-IT, pt-BR, pl-PL, ru-RU, tr-TR) | ||
* @param token Token | ||
* @param accessToken Access Token | ||
*/ | ||
static create(locale?: string, token?: string, accessToken?: string): Promise<Crunchyroll>; | ||
/** | ||
* @param query Search query | ||
* @param limit Limit of results (default: 25) (max: 100) | ||
*/ | ||
search: (query: string, limit?: number) => Promise<ISearch<IAnimeResult>>; | ||
/** | ||
* @param id Anime id | ||
* @param mediaType Anime type (series, movie) | ||
*/ | ||
fetchAnimeInfo: (id: string, mediaType: string) => Promise<IAnimeInfo>; | ||
/** | ||
* | ||
* @param episodeId Episode id | ||
* @param format subtitle format (default: `srt`) (srt, vtt, ass) | ||
* @param type Video type (default: `adaptive_hls` (m3u8)) `adaptive_dash` (dash), `drm_adaptive_dash` (dash with drm) | ||
*/ | ||
fetchEpisodeSources: (episodeId: string, format?: string, type?: string) => Promise<ISource>; | ||
/** | ||
* | ||
* @param episodeId Episode id | ||
*/ | ||
fetchEpisodeServers: (episodeId: string) => Promise<IEpisodeServer[]>; | ||
} | ||
export default Crunchyroll; | ||
Oops, something went wrong.