rezo 1.0.7 → 1.0.9

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.
Files changed (51) hide show
  1. package/dist/adapters/entries/curl.cjs +2 -1
  2. package/dist/adapters/entries/curl.d.ts +100 -1
  3. package/dist/adapters/entries/curl.js +2 -2
  4. package/dist/adapters/entries/fetch.cjs +2 -1
  5. package/dist/adapters/entries/fetch.d.ts +100 -1
  6. package/dist/adapters/entries/fetch.js +2 -2
  7. package/dist/adapters/entries/http.cjs +2 -1
  8. package/dist/adapters/entries/http.d.ts +100 -1
  9. package/dist/adapters/entries/http.js +2 -1
  10. package/dist/adapters/entries/http2.cjs +2 -1
  11. package/dist/adapters/entries/http2.d.ts +100 -1
  12. package/dist/adapters/entries/http2.js +2 -2
  13. package/dist/adapters/entries/react-native.cjs +2 -1
  14. package/dist/adapters/entries/react-native.d.ts +100 -1
  15. package/dist/adapters/entries/react-native.js +2 -2
  16. package/dist/adapters/entries/xhr.cjs +2 -1
  17. package/dist/adapters/entries/xhr.d.ts +100 -1
  18. package/dist/adapters/entries/xhr.js +2 -2
  19. package/dist/adapters/index.cjs +6 -6
  20. package/dist/cache/index.cjs +13 -13
  21. package/dist/core/rezo.cjs +8 -0
  22. package/dist/core/rezo.js +8 -0
  23. package/dist/crawler.d.ts +99 -0
  24. package/dist/entries/crawler.cjs +5 -5
  25. package/dist/index.cjs +24 -23
  26. package/dist/index.d.ts +100 -1
  27. package/dist/index.js +1 -1
  28. package/dist/platform/browser.cjs +2 -1
  29. package/dist/platform/browser.d.ts +100 -1
  30. package/dist/platform/browser.js +2 -2
  31. package/dist/platform/bun.cjs +2 -1
  32. package/dist/platform/bun.d.ts +100 -1
  33. package/dist/platform/bun.js +2 -2
  34. package/dist/platform/deno.cjs +2 -1
  35. package/dist/platform/deno.d.ts +100 -1
  36. package/dist/platform/deno.js +2 -2
  37. package/dist/platform/node.cjs +2 -1
  38. package/dist/platform/node.d.ts +100 -1
  39. package/dist/platform/node.js +2 -2
  40. package/dist/platform/react-native.cjs +2 -1
  41. package/dist/platform/react-native.d.ts +100 -1
  42. package/dist/platform/react-native.js +2 -2
  43. package/dist/platform/worker.cjs +2 -1
  44. package/dist/platform/worker.d.ts +100 -1
  45. package/dist/platform/worker.js +2 -2
  46. package/dist/plugin/index.cjs +36 -36
  47. package/dist/proxy/index.cjs +2 -2
  48. package/dist/queue/index.cjs +8 -8
  49. package/dist/utils/cookies.cjs +0 -2
  50. package/dist/utils/cookies.js +0 -2
  51. package/package.json +1 -1
@@ -156,7 +156,7 @@ export interface SerializedCookie {
156
156
  lastAccessed?: string;
157
157
  [key: string]: unknown;
158
158
  }
159
- declare class Cookie extends TouchCookie {
159
+ export declare class Cookie extends TouchCookie {
160
160
  constructor(options?: CreateCookieOptions);
161
161
  /**
162
162
  * Fixes date fields that may have become strings during JSON deserialization.
@@ -4162,6 +4162,105 @@ export declare class Rezo {
4162
4162
  * ```
4163
4163
  */
4164
4164
  upload(url: string | URL, data: Buffer | FormData | RezoFormData | string | Record<string, any>, options?: RezoHttpRequest): RezoUploadResponse;
4165
+ /**
4166
+ * Set cookies in the cookie jar from various input formats.
4167
+ *
4168
+ * This method accepts multiple input formats for maximum flexibility:
4169
+ * - **Netscape cookie file content** (string): Full cookie file content in Netscape format
4170
+ * - **Set-Cookie header array** (string[]): Array of Set-Cookie header values
4171
+ * - **Serialized cookie objects** (SerializedCookie[]): Array of plain objects with cookie properties
4172
+ * - **Cookie instances** (Cookie[]): Array of Cookie class instances
4173
+ *
4174
+ * @param cookies - Cookies to set in one of the supported formats
4175
+ * @param url - Optional URL context for the cookies (used for domain/path inference)
4176
+ * @param startNew - If true, clears all existing cookies before setting new ones (default: false)
4177
+ *
4178
+ * @example
4179
+ * ```typescript
4180
+ * // From Netscape cookie file content
4181
+ * const netscapeContent = `# Netscape HTTP Cookie File
4182
+ * .example.com\tTRUE\t/\tFALSE\t0\tsession\tabc123`;
4183
+ * rezo.setCookies(netscapeContent);
4184
+ *
4185
+ * // From Set-Cookie header array
4186
+ * rezo.setCookies([
4187
+ * 'session=abc123; Domain=example.com; Path=/; HttpOnly',
4188
+ * 'user=john; Domain=example.com; Path=/; Max-Age=3600'
4189
+ * ], 'https://example.com');
4190
+ *
4191
+ * // From serialized cookie objects
4192
+ * rezo.setCookies([
4193
+ * { key: 'session', value: 'abc123', domain: 'example.com', path: '/' },
4194
+ * { key: 'user', value: 'john', domain: 'example.com', path: '/', maxAge: 3600 }
4195
+ * ]);
4196
+ *
4197
+ * // From Cookie instances
4198
+ * import { Cookie } from 'rezo';
4199
+ * const cookie = new Cookie({ key: 'token', value: 'xyz789', domain: 'api.example.com' });
4200
+ * rezo.setCookies([cookie]);
4201
+ *
4202
+ * // Replace all cookies (startNew = true)
4203
+ * rezo.setCookies([{ key: 'new', value: 'cookie' }], undefined, true);
4204
+ * ```
4205
+ *
4206
+ * @see {@link getCookies} - Retrieve cookies from the jar
4207
+ * @see {@link RezoCookieJar} - The underlying cookie jar class
4208
+ */
4209
+ setCookies(stringCookies: string): void;
4210
+ setCookies(stringCookies: string, url: string, startNew?: boolean): void;
4211
+ setCookies(serializedStringCookiesCookies: string, url: string | undefined, startNew: boolean): void;
4212
+ setCookies(serializedCookies: SerializedCookie[]): void;
4213
+ setCookies(serializedCookies: SerializedCookie[], url: string, startNew?: boolean): void;
4214
+ setCookies(serializedCookies: SerializedCookie[], url: string | undefined, startNew: boolean): void;
4215
+ setCookies(cookies: Cookie[]): void;
4216
+ setCookies(cookies: Cookie[], url: string, startNew?: boolean): void;
4217
+ setCookies(cookies: Cookie[], url: string | undefined, startNew: boolean): void;
4218
+ setCookies(setCookieArray: string[]): void;
4219
+ setCookies(setCookieArray: string[], url: string, startNew?: boolean): void;
4220
+ setCookies(setCookieArray: string[], url: string | undefined, startNew: boolean): void;
4221
+ /**
4222
+ * Get all cookies from the cookie jar.
4223
+ *
4224
+ * Returns a `Cookies` object where keys are domain names and values are
4225
+ * arrays of Cookie objects for that domain. This provides easy access to
4226
+ * all stored cookies for inspection, serialization, or manual manipulation.
4227
+ *
4228
+ * @returns A Cookies object mapping domains to their Cookie arrays
4229
+ *
4230
+ * @example
4231
+ * ```typescript
4232
+ * // Get all cookies
4233
+ * const cookies = rezo.getCookies();
4234
+ *
4235
+ * // Access cookies for a specific domain
4236
+ * const exampleCookies = cookies['example.com'];
4237
+ * if (exampleCookies) {
4238
+ * for (const cookie of exampleCookies) {
4239
+ * console.log(`${cookie.key}=${cookie.value}`);
4240
+ * }
4241
+ * }
4242
+ *
4243
+ * // List all domains with cookies
4244
+ * const domains = Object.keys(cookies);
4245
+ * console.log('Cookies stored for:', domains);
4246
+ *
4247
+ * // Count total cookies
4248
+ * const totalCookies = Object.values(cookies)
4249
+ * .reduce((sum, arr) => sum + arr.length, 0);
4250
+ * console.log(`Total cookies: ${totalCookies}`);
4251
+ *
4252
+ * // Serialize all cookies to JSON
4253
+ * const serialized = JSON.stringify(cookies);
4254
+ *
4255
+ * // Check if a specific cookie exists
4256
+ * const hasSession = cookies['example.com']
4257
+ * ?.some(c => c.key === 'session');
4258
+ * ```
4259
+ *
4260
+ * @see {@link setCookies} - Set cookies in the jar
4261
+ * @see {@link cookieJar} - Access the underlying RezoCookieJar for more methods
4262
+ */
4263
+ getCookies(): Cookies;
4165
4264
  }
4166
4265
  /**
4167
4266
  * Extended Rezo instance with Axios-compatible static helpers.
@@ -3,7 +3,7 @@ import { setGlobalAdapter, createRezoInstance, Rezo } from '../core/rezo.js';
3
3
  import { RezoError, RezoErrorCode } from '../errors/rezo-error.js';
4
4
  import { RezoHeaders } from '../utils/headers.js';
5
5
  import { RezoFormData } from '../utils/form-data.js';
6
- import { RezoCookieJar } from '../utils/cookies.js';
6
+ import { RezoCookieJar, Cookie } from '../utils/cookies.js';
7
7
  import { createDefaultHooks, mergeHooks } from '../core/hooks.js';
8
8
  import packageJson from "../../package.json" with { type: 'json' };
9
9
 
@@ -12,7 +12,7 @@ export { RezoError };
12
12
  export { RezoErrorCode };
13
13
  export { RezoHeaders };
14
14
  export { RezoFormData };
15
- export { RezoCookieJar };
15
+ export { RezoCookieJar, Cookie };
16
16
  export { createDefaultHooks };
17
17
  export { mergeHooks };
18
18
  export const isRezoError = RezoError.isRezoError;
@@ -3,7 +3,7 @@ const { setGlobalAdapter, createRezoInstance, Rezo } = require('../core/rezo.cjs
3
3
  const { RezoError, RezoErrorCode } = require('../errors/rezo-error.cjs');
4
4
  const { RezoHeaders } = require('../utils/headers.cjs');
5
5
  const { RezoFormData } = require('../utils/form-data.cjs');
6
- const { RezoCookieJar } = require('../utils/cookies.cjs');
6
+ const { RezoCookieJar, Cookie } = require('../utils/cookies.cjs');
7
7
  const { createDefaultHooks, mergeHooks } = require('../core/hooks.cjs');
8
8
  const packageJson = require("../../package.json");
9
9
 
@@ -13,6 +13,7 @@ exports.RezoErrorCode = RezoErrorCode;
13
13
  exports.RezoHeaders = RezoHeaders;
14
14
  exports.RezoFormData = RezoFormData;
15
15
  exports.RezoCookieJar = RezoCookieJar;
16
+ exports.Cookie = Cookie;
16
17
  exports.createDefaultHooks = createDefaultHooks;
17
18
  exports.mergeHooks = mergeHooks;
18
19
  const isRezoError = exports.isRezoError = RezoError.isRezoError;
@@ -156,7 +156,7 @@ export interface SerializedCookie {
156
156
  lastAccessed?: string;
157
157
  [key: string]: unknown;
158
158
  }
159
- declare class Cookie extends TouchCookie {
159
+ export declare class Cookie extends TouchCookie {
160
160
  constructor(options?: CreateCookieOptions);
161
161
  /**
162
162
  * Fixes date fields that may have become strings during JSON deserialization.
@@ -4162,6 +4162,105 @@ export declare class Rezo {
4162
4162
  * ```
4163
4163
  */
4164
4164
  upload(url: string | URL, data: Buffer | FormData | RezoFormData | string | Record<string, any>, options?: RezoHttpRequest): RezoUploadResponse;
4165
+ /**
4166
+ * Set cookies in the cookie jar from various input formats.
4167
+ *
4168
+ * This method accepts multiple input formats for maximum flexibility:
4169
+ * - **Netscape cookie file content** (string): Full cookie file content in Netscape format
4170
+ * - **Set-Cookie header array** (string[]): Array of Set-Cookie header values
4171
+ * - **Serialized cookie objects** (SerializedCookie[]): Array of plain objects with cookie properties
4172
+ * - **Cookie instances** (Cookie[]): Array of Cookie class instances
4173
+ *
4174
+ * @param cookies - Cookies to set in one of the supported formats
4175
+ * @param url - Optional URL context for the cookies (used for domain/path inference)
4176
+ * @param startNew - If true, clears all existing cookies before setting new ones (default: false)
4177
+ *
4178
+ * @example
4179
+ * ```typescript
4180
+ * // From Netscape cookie file content
4181
+ * const netscapeContent = `# Netscape HTTP Cookie File
4182
+ * .example.com\tTRUE\t/\tFALSE\t0\tsession\tabc123`;
4183
+ * rezo.setCookies(netscapeContent);
4184
+ *
4185
+ * // From Set-Cookie header array
4186
+ * rezo.setCookies([
4187
+ * 'session=abc123; Domain=example.com; Path=/; HttpOnly',
4188
+ * 'user=john; Domain=example.com; Path=/; Max-Age=3600'
4189
+ * ], 'https://example.com');
4190
+ *
4191
+ * // From serialized cookie objects
4192
+ * rezo.setCookies([
4193
+ * { key: 'session', value: 'abc123', domain: 'example.com', path: '/' },
4194
+ * { key: 'user', value: 'john', domain: 'example.com', path: '/', maxAge: 3600 }
4195
+ * ]);
4196
+ *
4197
+ * // From Cookie instances
4198
+ * import { Cookie } from 'rezo';
4199
+ * const cookie = new Cookie({ key: 'token', value: 'xyz789', domain: 'api.example.com' });
4200
+ * rezo.setCookies([cookie]);
4201
+ *
4202
+ * // Replace all cookies (startNew = true)
4203
+ * rezo.setCookies([{ key: 'new', value: 'cookie' }], undefined, true);
4204
+ * ```
4205
+ *
4206
+ * @see {@link getCookies} - Retrieve cookies from the jar
4207
+ * @see {@link RezoCookieJar} - The underlying cookie jar class
4208
+ */
4209
+ setCookies(stringCookies: string): void;
4210
+ setCookies(stringCookies: string, url: string, startNew?: boolean): void;
4211
+ setCookies(serializedStringCookiesCookies: string, url: string | undefined, startNew: boolean): void;
4212
+ setCookies(serializedCookies: SerializedCookie[]): void;
4213
+ setCookies(serializedCookies: SerializedCookie[], url: string, startNew?: boolean): void;
4214
+ setCookies(serializedCookies: SerializedCookie[], url: string | undefined, startNew: boolean): void;
4215
+ setCookies(cookies: Cookie[]): void;
4216
+ setCookies(cookies: Cookie[], url: string, startNew?: boolean): void;
4217
+ setCookies(cookies: Cookie[], url: string | undefined, startNew: boolean): void;
4218
+ setCookies(setCookieArray: string[]): void;
4219
+ setCookies(setCookieArray: string[], url: string, startNew?: boolean): void;
4220
+ setCookies(setCookieArray: string[], url: string | undefined, startNew: boolean): void;
4221
+ /**
4222
+ * Get all cookies from the cookie jar.
4223
+ *
4224
+ * Returns a `Cookies` object where keys are domain names and values are
4225
+ * arrays of Cookie objects for that domain. This provides easy access to
4226
+ * all stored cookies for inspection, serialization, or manual manipulation.
4227
+ *
4228
+ * @returns A Cookies object mapping domains to their Cookie arrays
4229
+ *
4230
+ * @example
4231
+ * ```typescript
4232
+ * // Get all cookies
4233
+ * const cookies = rezo.getCookies();
4234
+ *
4235
+ * // Access cookies for a specific domain
4236
+ * const exampleCookies = cookies['example.com'];
4237
+ * if (exampleCookies) {
4238
+ * for (const cookie of exampleCookies) {
4239
+ * console.log(`${cookie.key}=${cookie.value}`);
4240
+ * }
4241
+ * }
4242
+ *
4243
+ * // List all domains with cookies
4244
+ * const domains = Object.keys(cookies);
4245
+ * console.log('Cookies stored for:', domains);
4246
+ *
4247
+ * // Count total cookies
4248
+ * const totalCookies = Object.values(cookies)
4249
+ * .reduce((sum, arr) => sum + arr.length, 0);
4250
+ * console.log(`Total cookies: ${totalCookies}`);
4251
+ *
4252
+ * // Serialize all cookies to JSON
4253
+ * const serialized = JSON.stringify(cookies);
4254
+ *
4255
+ * // Check if a specific cookie exists
4256
+ * const hasSession = cookies['example.com']
4257
+ * ?.some(c => c.key === 'session');
4258
+ * ```
4259
+ *
4260
+ * @see {@link setCookies} - Set cookies in the jar
4261
+ * @see {@link cookieJar} - Access the underlying RezoCookieJar for more methods
4262
+ */
4263
+ getCookies(): Cookies;
4165
4264
  }
4166
4265
  /**
4167
4266
  * Extended Rezo instance with Axios-compatible static helpers.
@@ -3,7 +3,7 @@ import { setGlobalAdapter, createRezoInstance, Rezo } from '../core/rezo.js';
3
3
  import { RezoError, RezoErrorCode } from '../errors/rezo-error.js';
4
4
  import { RezoHeaders } from '../utils/headers.js';
5
5
  import { RezoFormData } from '../utils/form-data.js';
6
- import { RezoCookieJar } from '../utils/cookies.js';
6
+ import { RezoCookieJar, Cookie } from '../utils/cookies.js';
7
7
  import { createDefaultHooks, mergeHooks } from '../core/hooks.js';
8
8
  import packageJson from "../../package.json" with { type: 'json' };
9
9
 
@@ -12,7 +12,7 @@ export { RezoError };
12
12
  export { RezoErrorCode };
13
13
  export { RezoHeaders };
14
14
  export { RezoFormData };
15
- export { RezoCookieJar };
15
+ export { RezoCookieJar, Cookie };
16
16
  export { createDefaultHooks };
17
17
  export { mergeHooks };
18
18
  export const isRezoError = RezoError.isRezoError;
@@ -1,36 +1,36 @@
1
- const _mod_gtcptp = require('./crawler.cjs');
2
- exports.Crawler = _mod_gtcptp.Crawler;;
3
- const _mod_3p3u6d = require('./crawler-options.cjs');
4
- exports.CrawlerOptions = _mod_3p3u6d.CrawlerOptions;;
5
- const _mod_umel97 = require('../cache/file-cacher.cjs');
6
- exports.FileCacher = _mod_umel97.FileCacher;;
7
- const _mod_kjgxkr = require('../cache/url-store.cjs');
8
- exports.UrlStore = _mod_kjgxkr.UrlStore;;
9
- const _mod_u41p6l = require('./addon/oxylabs/index.cjs');
10
- exports.Oxylabs = _mod_u41p6l.Oxylabs;;
11
- const _mod_6hmgeg = require('./addon/oxylabs/options.cjs');
12
- exports.OXYLABS_BROWSER_TYPES = _mod_6hmgeg.OXYLABS_BROWSER_TYPES;
13
- exports.OXYLABS_COMMON_LOCALES = _mod_6hmgeg.OXYLABS_COMMON_LOCALES;
14
- exports.OXYLABS_COMMON_GEO_LOCATIONS = _mod_6hmgeg.OXYLABS_COMMON_GEO_LOCATIONS;
15
- exports.OXYLABS_US_STATES = _mod_6hmgeg.OXYLABS_US_STATES;
16
- exports.OXYLABS_EUROPEAN_COUNTRIES = _mod_6hmgeg.OXYLABS_EUROPEAN_COUNTRIES;
17
- exports.OXYLABS_ASIAN_COUNTRIES = _mod_6hmgeg.OXYLABS_ASIAN_COUNTRIES;
18
- exports.getRandomOxylabsBrowserType = _mod_6hmgeg.getRandomBrowserType;
19
- exports.getRandomOxylabsLocale = _mod_6hmgeg.getRandomLocale;
20
- exports.getRandomOxylabsGeoLocation = _mod_6hmgeg.getRandomGeoLocation;;
21
- const _mod_7v9zq0 = require('./addon/decodo/index.cjs');
22
- exports.Decodo = _mod_7v9zq0.Decodo;;
23
- const _mod_i0yci3 = require('./addon/decodo/options.cjs');
24
- exports.DECODO_DEVICE_TYPES = _mod_i0yci3.DECODO_DEVICE_TYPES;
25
- exports.DECODO_HEADLESS_MODES = _mod_i0yci3.DECODO_HEADLESS_MODES;
26
- exports.DECODO_COMMON_LOCALES = _mod_i0yci3.DECODO_COMMON_LOCALES;
27
- exports.DECODO_COMMON_COUNTRIES = _mod_i0yci3.DECODO_COMMON_COUNTRIES;
28
- exports.DECODO_EUROPEAN_COUNTRIES = _mod_i0yci3.DECODO_EUROPEAN_COUNTRIES;
29
- exports.DECODO_ASIAN_COUNTRIES = _mod_i0yci3.DECODO_ASIAN_COUNTRIES;
30
- exports.DECODO_US_STATES = _mod_i0yci3.DECODO_US_STATES;
31
- exports.DECODO_COMMON_CITIES = _mod_i0yci3.DECODO_COMMON_CITIES;
32
- exports.getRandomDecodoDeviceType = _mod_i0yci3.getRandomDeviceType;
33
- exports.getRandomDecodoLocale = _mod_i0yci3.getRandomLocale;
34
- exports.getRandomDecodoCountry = _mod_i0yci3.getRandomCountry;
35
- exports.getRandomDecodoCity = _mod_i0yci3.getRandomCity;
36
- exports.generateDecodoSessionId = _mod_i0yci3.generateSessionId;;
1
+ const _mod_79f4xa = require('./crawler.cjs');
2
+ exports.Crawler = _mod_79f4xa.Crawler;;
3
+ const _mod_yfdsv8 = require('./crawler-options.cjs');
4
+ exports.CrawlerOptions = _mod_yfdsv8.CrawlerOptions;;
5
+ const _mod_53b336 = require('../cache/file-cacher.cjs');
6
+ exports.FileCacher = _mod_53b336.FileCacher;;
7
+ const _mod_kb46wp = require('../cache/url-store.cjs');
8
+ exports.UrlStore = _mod_kb46wp.UrlStore;;
9
+ const _mod_4x7iom = require('./addon/oxylabs/index.cjs');
10
+ exports.Oxylabs = _mod_4x7iom.Oxylabs;;
11
+ const _mod_mgrqmg = require('./addon/oxylabs/options.cjs');
12
+ exports.OXYLABS_BROWSER_TYPES = _mod_mgrqmg.OXYLABS_BROWSER_TYPES;
13
+ exports.OXYLABS_COMMON_LOCALES = _mod_mgrqmg.OXYLABS_COMMON_LOCALES;
14
+ exports.OXYLABS_COMMON_GEO_LOCATIONS = _mod_mgrqmg.OXYLABS_COMMON_GEO_LOCATIONS;
15
+ exports.OXYLABS_US_STATES = _mod_mgrqmg.OXYLABS_US_STATES;
16
+ exports.OXYLABS_EUROPEAN_COUNTRIES = _mod_mgrqmg.OXYLABS_EUROPEAN_COUNTRIES;
17
+ exports.OXYLABS_ASIAN_COUNTRIES = _mod_mgrqmg.OXYLABS_ASIAN_COUNTRIES;
18
+ exports.getRandomOxylabsBrowserType = _mod_mgrqmg.getRandomBrowserType;
19
+ exports.getRandomOxylabsLocale = _mod_mgrqmg.getRandomLocale;
20
+ exports.getRandomOxylabsGeoLocation = _mod_mgrqmg.getRandomGeoLocation;;
21
+ const _mod_gdccy8 = require('./addon/decodo/index.cjs');
22
+ exports.Decodo = _mod_gdccy8.Decodo;;
23
+ const _mod_g0kkdi = require('./addon/decodo/options.cjs');
24
+ exports.DECODO_DEVICE_TYPES = _mod_g0kkdi.DECODO_DEVICE_TYPES;
25
+ exports.DECODO_HEADLESS_MODES = _mod_g0kkdi.DECODO_HEADLESS_MODES;
26
+ exports.DECODO_COMMON_LOCALES = _mod_g0kkdi.DECODO_COMMON_LOCALES;
27
+ exports.DECODO_COMMON_COUNTRIES = _mod_g0kkdi.DECODO_COMMON_COUNTRIES;
28
+ exports.DECODO_EUROPEAN_COUNTRIES = _mod_g0kkdi.DECODO_EUROPEAN_COUNTRIES;
29
+ exports.DECODO_ASIAN_COUNTRIES = _mod_g0kkdi.DECODO_ASIAN_COUNTRIES;
30
+ exports.DECODO_US_STATES = _mod_g0kkdi.DECODO_US_STATES;
31
+ exports.DECODO_COMMON_CITIES = _mod_g0kkdi.DECODO_COMMON_CITIES;
32
+ exports.getRandomDecodoDeviceType = _mod_g0kkdi.getRandomDeviceType;
33
+ exports.getRandomDecodoLocale = _mod_g0kkdi.getRandomLocale;
34
+ exports.getRandomDecodoCountry = _mod_g0kkdi.getRandomCountry;
35
+ exports.getRandomDecodoCity = _mod_g0kkdi.getRandomCity;
36
+ exports.generateDecodoSessionId = _mod_g0kkdi.generateSessionId;;
@@ -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 _mod_0g3tce = require('./manager.cjs');
5
- exports.ProxyManager = _mod_0g3tce.ProxyManager;;
4
+ const _mod_gjdnh6 = require('./manager.cjs');
5
+ exports.ProxyManager = _mod_gjdnh6.ProxyManager;;
6
6
  function createOptions(uri, opts) {
7
7
  if (uri instanceof URL || typeof uri === "string") {
8
8
  return {
@@ -1,8 +1,8 @@
1
- const _mod_1hdvgg = require('./queue.cjs');
2
- exports.RezoQueue = _mod_1hdvgg.RezoQueue;;
3
- const _mod_89rege = require('./http-queue.cjs');
4
- exports.HttpQueue = _mod_89rege.HttpQueue;
5
- exports.extractDomain = _mod_89rege.extractDomain;;
6
- const _mod_bw5pkd = require('./types.cjs');
7
- exports.Priority = _mod_bw5pkd.Priority;
8
- exports.HttpMethodPriority = _mod_bw5pkd.HttpMethodPriority;;
1
+ const _mod_q5mvy7 = require('./queue.cjs');
2
+ exports.RezoQueue = _mod_q5mvy7.RezoQueue;;
3
+ const _mod_3j82w3 = require('./http-queue.cjs');
4
+ exports.HttpQueue = _mod_3j82w3.HttpQueue;
5
+ exports.extractDomain = _mod_3j82w3.extractDomain;;
6
+ const _mod_vq2bps = require('./types.cjs');
7
+ exports.Priority = _mod_vq2bps.Priority;
8
+ exports.HttpMethodPriority = _mod_vq2bps.HttpMethodPriority;;
@@ -508,7 +508,5 @@ class RezoCookieJar extends TouchCookieJar {
508
508
  }
509
509
  const CookieJar = exports.CookieJar = RezoCookieJar;
510
510
 
511
- exports.TouchCookieJar = TouchCookieJar;
512
- exports.TouchCookie = TouchCookie;
513
511
  exports.Cookie = Cookie;
514
512
  exports.RezoCookieJar = RezoCookieJar;
@@ -507,5 +507,3 @@ export class RezoCookieJar extends TouchCookieJar {
507
507
  }
508
508
  }
509
509
  export const CookieJar = RezoCookieJar;
510
-
511
- export { TouchCookieJar, TouchCookie };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rezo",
3
- "version": "1.0.7",
3
+ "version": "1.0.9",
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",