Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

wikiextensions-flix

Package Overview
Dependencies
Maintainers
2
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

wikiextensions-flix - npm Package Compare versions

Comparing version 1.8.6 to 1.8.7

6

dist/extractors/vidcloud.js

@@ -7,2 +7,3 @@ "use strict";

const axios_1 = __importDefault(require("axios"));
const https_1 = __importDefault(require("https"));
class VidCloud {

@@ -85,3 +86,6 @@ serverName = 'VidCloud';

//console.log(res.data.subtitle[0])
const { data } = await axios_1.default.get(res.data.source);
const axiosInstance = axios_1.default.create({
httpsAgent: new https_1.default.Agent({ rejectUnauthorized: false })
});
const { data } = await axiosInstance.get(res.data.source);
//for (const source of sources) {

@@ -88,0 +92,0 @@ //const { data } = await axios.get(source.file, options);

2

package.json
{
"name": "wikiextensions-flix",
"version": "1.8.6",
"version": "1.8.7",
"description": "Nodejs library that provides an Api for obtaining the movies information from FlixHQ website.",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

import axios from 'axios';
import https from 'https';
import cryptoJs from 'crypto-js';

@@ -92,3 +93,6 @@ import { IVideoResult } from '../types/types';

const { data } = await axios.get(res.data.source);
const axiosInstance = axios.create({
httpsAgent: new https.Agent({ rejectUnauthorized: false })
});
const { data } = await axiosInstance.get(res.data.source);

@@ -95,0 +99,0 @@

@@ -9,3 +9,3 @@ import { MOVIES } from "../src";

//console.log(search.results[0]);
const data = await FlixHQ.fetchMovieInfo('movie/watch-aquaman-and-the-lost-kingdom-104119');
const data = await FlixHQ.fetchMovieInfo('movie/watch-madame-web-105676');
//const server = await FlixHQ.fetchEpisodeServers(data.id, data.episodes[0].id);

@@ -12,0 +12,0 @@ //console.log(JSON.stringify(server));

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc