rezo 1.0.9 → 1.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/adapters/entries/curl.d.ts +77 -24
- package/dist/adapters/entries/fetch.d.ts +77 -24
- package/dist/adapters/entries/http.d.ts +77 -24
- package/dist/adapters/entries/http2.d.ts +77 -24
- package/dist/adapters/entries/react-native.d.ts +77 -24
- package/dist/adapters/entries/xhr.d.ts +77 -24
- package/dist/adapters/index.cjs +6 -6
- package/dist/cache/index.cjs +13 -13
- package/dist/core/rezo.cjs +3 -0
- package/dist/core/rezo.js +3 -0
- package/dist/crawler.d.ts +77 -24
- package/dist/entries/crawler.cjs +5 -5
- package/dist/index.cjs +24 -24
- package/dist/index.d.ts +77 -24
- package/dist/platform/browser.d.ts +77 -24
- package/dist/platform/bun.d.ts +77 -24
- package/dist/platform/deno.d.ts +77 -24
- package/dist/platform/node.d.ts +77 -24
- package/dist/platform/react-native.d.ts +77 -24
- package/dist/platform/worker.d.ts +77 -24
- package/dist/plugin/index.cjs +36 -36
- package/dist/proxy/index.cjs +2 -2
- package/dist/queue/index.cjs +8 -8
- package/package.json +1 -1
package/dist/plugin/index.cjs
CHANGED
|
@@ -1,36 +1,36 @@
|
|
|
1
|
-
const
|
|
2
|
-
exports.Crawler =
|
|
3
|
-
const
|
|
4
|
-
exports.CrawlerOptions =
|
|
5
|
-
const
|
|
6
|
-
exports.FileCacher =
|
|
7
|
-
const
|
|
8
|
-
exports.UrlStore =
|
|
9
|
-
const
|
|
10
|
-
exports.Oxylabs =
|
|
11
|
-
const
|
|
12
|
-
exports.OXYLABS_BROWSER_TYPES =
|
|
13
|
-
exports.OXYLABS_COMMON_LOCALES =
|
|
14
|
-
exports.OXYLABS_COMMON_GEO_LOCATIONS =
|
|
15
|
-
exports.OXYLABS_US_STATES =
|
|
16
|
-
exports.OXYLABS_EUROPEAN_COUNTRIES =
|
|
17
|
-
exports.OXYLABS_ASIAN_COUNTRIES =
|
|
18
|
-
exports.getRandomOxylabsBrowserType =
|
|
19
|
-
exports.getRandomOxylabsLocale =
|
|
20
|
-
exports.getRandomOxylabsGeoLocation =
|
|
21
|
-
const
|
|
22
|
-
exports.Decodo =
|
|
23
|
-
const
|
|
24
|
-
exports.DECODO_DEVICE_TYPES =
|
|
25
|
-
exports.DECODO_HEADLESS_MODES =
|
|
26
|
-
exports.DECODO_COMMON_LOCALES =
|
|
27
|
-
exports.DECODO_COMMON_COUNTRIES =
|
|
28
|
-
exports.DECODO_EUROPEAN_COUNTRIES =
|
|
29
|
-
exports.DECODO_ASIAN_COUNTRIES =
|
|
30
|
-
exports.DECODO_US_STATES =
|
|
31
|
-
exports.DECODO_COMMON_CITIES =
|
|
32
|
-
exports.getRandomDecodoDeviceType =
|
|
33
|
-
exports.getRandomDecodoLocale =
|
|
34
|
-
exports.getRandomDecodoCountry =
|
|
35
|
-
exports.getRandomDecodoCity =
|
|
36
|
-
exports.generateDecodoSessionId =
|
|
1
|
+
const _mod_cizrxa = require('./crawler.cjs');
|
|
2
|
+
exports.Crawler = _mod_cizrxa.Crawler;;
|
|
3
|
+
const _mod_7yd7lj = require('./crawler-options.cjs');
|
|
4
|
+
exports.CrawlerOptions = _mod_7yd7lj.CrawlerOptions;;
|
|
5
|
+
const _mod_d1skng = require('../cache/file-cacher.cjs');
|
|
6
|
+
exports.FileCacher = _mod_d1skng.FileCacher;;
|
|
7
|
+
const _mod_lxwyvt = require('../cache/url-store.cjs');
|
|
8
|
+
exports.UrlStore = _mod_lxwyvt.UrlStore;;
|
|
9
|
+
const _mod_09oe6w = require('./addon/oxylabs/index.cjs');
|
|
10
|
+
exports.Oxylabs = _mod_09oe6w.Oxylabs;;
|
|
11
|
+
const _mod_3wv0s7 = require('./addon/oxylabs/options.cjs');
|
|
12
|
+
exports.OXYLABS_BROWSER_TYPES = _mod_3wv0s7.OXYLABS_BROWSER_TYPES;
|
|
13
|
+
exports.OXYLABS_COMMON_LOCALES = _mod_3wv0s7.OXYLABS_COMMON_LOCALES;
|
|
14
|
+
exports.OXYLABS_COMMON_GEO_LOCATIONS = _mod_3wv0s7.OXYLABS_COMMON_GEO_LOCATIONS;
|
|
15
|
+
exports.OXYLABS_US_STATES = _mod_3wv0s7.OXYLABS_US_STATES;
|
|
16
|
+
exports.OXYLABS_EUROPEAN_COUNTRIES = _mod_3wv0s7.OXYLABS_EUROPEAN_COUNTRIES;
|
|
17
|
+
exports.OXYLABS_ASIAN_COUNTRIES = _mod_3wv0s7.OXYLABS_ASIAN_COUNTRIES;
|
|
18
|
+
exports.getRandomOxylabsBrowserType = _mod_3wv0s7.getRandomBrowserType;
|
|
19
|
+
exports.getRandomOxylabsLocale = _mod_3wv0s7.getRandomLocale;
|
|
20
|
+
exports.getRandomOxylabsGeoLocation = _mod_3wv0s7.getRandomGeoLocation;;
|
|
21
|
+
const _mod_vi6kgn = require('./addon/decodo/index.cjs');
|
|
22
|
+
exports.Decodo = _mod_vi6kgn.Decodo;;
|
|
23
|
+
const _mod_avxi0i = require('./addon/decodo/options.cjs');
|
|
24
|
+
exports.DECODO_DEVICE_TYPES = _mod_avxi0i.DECODO_DEVICE_TYPES;
|
|
25
|
+
exports.DECODO_HEADLESS_MODES = _mod_avxi0i.DECODO_HEADLESS_MODES;
|
|
26
|
+
exports.DECODO_COMMON_LOCALES = _mod_avxi0i.DECODO_COMMON_LOCALES;
|
|
27
|
+
exports.DECODO_COMMON_COUNTRIES = _mod_avxi0i.DECODO_COMMON_COUNTRIES;
|
|
28
|
+
exports.DECODO_EUROPEAN_COUNTRIES = _mod_avxi0i.DECODO_EUROPEAN_COUNTRIES;
|
|
29
|
+
exports.DECODO_ASIAN_COUNTRIES = _mod_avxi0i.DECODO_ASIAN_COUNTRIES;
|
|
30
|
+
exports.DECODO_US_STATES = _mod_avxi0i.DECODO_US_STATES;
|
|
31
|
+
exports.DECODO_COMMON_CITIES = _mod_avxi0i.DECODO_COMMON_CITIES;
|
|
32
|
+
exports.getRandomDecodoDeviceType = _mod_avxi0i.getRandomDeviceType;
|
|
33
|
+
exports.getRandomDecodoLocale = _mod_avxi0i.getRandomLocale;
|
|
34
|
+
exports.getRandomDecodoCountry = _mod_avxi0i.getRandomCountry;
|
|
35
|
+
exports.getRandomDecodoCity = _mod_avxi0i.getRandomCity;
|
|
36
|
+
exports.generateDecodoSessionId = _mod_avxi0i.generateSessionId;;
|
package/dist/proxy/index.cjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
const { SocksProxyAgent: RezoSocksProxy } = require("socks-proxy-agent");
|
|
2
2
|
const { HttpsProxyAgent: RezoHttpsSocks } = require("https-proxy-agent");
|
|
3
3
|
const { HttpProxyAgent: RezoHttpSocks } = require("http-proxy-agent");
|
|
4
|
-
const
|
|
5
|
-
exports.ProxyManager =
|
|
4
|
+
const _mod_l3fp62 = require('./manager.cjs');
|
|
5
|
+
exports.ProxyManager = _mod_l3fp62.ProxyManager;;
|
|
6
6
|
function createOptions(uri, opts) {
|
|
7
7
|
if (uri instanceof URL || typeof uri === "string") {
|
|
8
8
|
return {
|
package/dist/queue/index.cjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
const
|
|
2
|
-
exports.RezoQueue =
|
|
3
|
-
const
|
|
4
|
-
exports.HttpQueue =
|
|
5
|
-
exports.extractDomain =
|
|
6
|
-
const
|
|
7
|
-
exports.Priority =
|
|
8
|
-
exports.HttpMethodPriority =
|
|
1
|
+
const _mod_yii8q7 = require('./queue.cjs');
|
|
2
|
+
exports.RezoQueue = _mod_yii8q7.RezoQueue;;
|
|
3
|
+
const _mod_unk7rd = require('./http-queue.cjs');
|
|
4
|
+
exports.HttpQueue = _mod_unk7rd.HttpQueue;
|
|
5
|
+
exports.extractDomain = _mod_unk7rd.extractDomain;;
|
|
6
|
+
const _mod_6fv9eb = require('./types.cjs');
|
|
7
|
+
exports.Priority = _mod_6fv9eb.Priority;
|
|
8
|
+
exports.HttpMethodPriority = _mod_6fv9eb.HttpMethodPriority;;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rezo",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.10",
|
|
4
4
|
"description": "Lightning-fast, enterprise-grade HTTP client for modern JavaScript. Full HTTP/2 support, intelligent cookie management, multiple adapters (HTTP, Fetch, cURL, XHR), streaming, proxy support (HTTP/HTTPS/SOCKS), and cross-environment compatibility.",
|
|
5
5
|
"main": "dist/index.cjs",
|
|
6
6
|
"module": "dist/index.js",
|