Skip to content

Commit

Permalink
Update dist
Browse files Browse the repository at this point in the history
  • Loading branch information
Raghav1729 committed Jul 6, 2023
1 parent 5f90cb9 commit adb4254
Show file tree
Hide file tree
Showing 12 changed files with 109 additions and 21 deletions.
3 changes: 2 additions & 1 deletion dist/extractors/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ import BilibiliExtractor from './bilibili';
import AsianLoad from './asianload';
import StreamLare from './streamlare';
import SmashyStream from './smashystream';
export { GogoCDN, StreamSB, VidCloud, MixDrop, Kwik, RapidCloud, StreamTape, VizCloud, Filemoon, BilibiliExtractor, AsianLoad, StreamLare, SmashyStream };
import StreamHub from './streamhub';
export { GogoCDN, StreamSB, VidCloud, MixDrop, Kwik, RapidCloud, StreamTape, VizCloud, Filemoon, BilibiliExtractor, AsianLoad, StreamHub, StreamLare, SmashyStream, };
4 changes: 3 additions & 1 deletion dist/extractors/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/extractors/index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions dist/extractors/streamhub.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { VideoExtractor, IVideo, ISubtitle } from '../models';
declare class StreamHub extends VideoExtractor {
protected serverName: string;
protected sources: IVideo[];
extract: (videoUrl: URL) => Promise<{
sources: IVideo[];
} & {
subtitles: ISubtitle[];
}>;
}
export default StreamHub;
63 changes: 63 additions & 0 deletions dist/extractors/streamhub.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/extractors/streamhub.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +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, SmashyStream } from './extractors';
import { VizCloud, AsianLoad, GogoCDN, Kwik, MixDrop, RapidCloud, BilibiliExtractor, Filemoon, StreamSB, StreamTape, VidCloud, StreamHub, SmashyStream } 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, GogoCDN, StreamSB, VidCloud, MixDrop, Kwik, RapidCloud, StreamTape, SmashyStream, VizCloud, Filemoon, BilibiliExtractor, AsianLoad, };
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, StreamHub, SmashyStream, VizCloud, Filemoon, BilibiliExtractor, AsianLoad, };
3 changes: 2 additions & 1 deletion dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions dist/providers/manga/comick.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ declare class ComicK extends MangaParser {
protected logo: string;
protected classPath: string;
private readonly apiUrl;
private _axios;
/**
* @description Fetches info about the manga
* @param mangaId Comic slug
Expand All @@ -25,9 +26,9 @@ declare class ComicK extends MangaParser {
search: (query: string, page?: number, limit?: number) => Promise<ISearch<IMangaResult>>;
private fetchAllChapters;
/**
* @description Fetches the comic ID from the slug
* @description Fetches the comic HID from the slug
* @param id Comic slug
* @returns Promise<number> -1 if not found
* @returns Promise<string> empty if not found
*/
private getComicId;
}
Expand Down
30 changes: 19 additions & 11 deletions dist/providers/manga/comick.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit adb4254

Please sign in to comment.