mirror of
https://github.com/p-stream/providers.git
synced 2026-05-10 17:10:52 +00:00
commit
e4b8c225e1
4 changed files with 4 additions and 3 deletions
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@movie-web/providers",
|
||||
"version": "1.1.4",
|
||||
"version": "1.1.5",
|
||||
"description": "Package that contains all the providers of movie-web",
|
||||
"main": "./lib/index.umd.js",
|
||||
"types": "./lib/index.d.ts",
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ export const gomoviesBase = `https://gomovies.sx`;
|
|||
export const goMoviesScraper = makeSourcerer({
|
||||
id: 'gomovies',
|
||||
name: 'GOmovies',
|
||||
rank: 200,
|
||||
rank: 110,
|
||||
flags: [flags.NO_CORS],
|
||||
async scrapeShow(ctx) {
|
||||
const search = await ctx.proxiedFetcher<string>(`/ajax/search`, {
|
||||
|
|
|
|||
|
|
@ -12,6 +12,7 @@ export const showBoxScraper = makeSourcerer({
|
|||
id: 'show_box',
|
||||
name: 'ShowBox',
|
||||
rank: 20,
|
||||
disabled: true,
|
||||
flags: [flags.NO_CORS],
|
||||
async scrapeMovie(ctx) {
|
||||
const search = await ctx.proxiedFetcher<string>('/search', {
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ import { scrapeShow } from '@/providers/sources/zoechip/scrape-show';
|
|||
export const zoechipScraper = makeSourcerer({
|
||||
id: 'zoechip',
|
||||
name: 'ZoeChip',
|
||||
rank: 110,
|
||||
rank: 200,
|
||||
flags: [flags.NO_CORS],
|
||||
scrapeMovie,
|
||||
scrapeShow,
|
||||
|
|
|
|||
Loading…
Reference in a new issue