rezo 1.0.8 → 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.
- package/dist/adapters/entries/curl.d.ts +99 -0
- package/dist/adapters/entries/fetch.d.ts +99 -0
- package/dist/adapters/entries/http.d.ts +99 -0
- package/dist/adapters/entries/http2.d.ts +99 -0
- package/dist/adapters/entries/react-native.d.ts +99 -0
- package/dist/adapters/entries/xhr.d.ts +99 -0
- package/dist/adapters/index.cjs +6 -6
- package/dist/cache/index.cjs +13 -13
- package/dist/core/rezo.cjs +8 -0
- package/dist/core/rezo.js +8 -0
- package/dist/crawler.d.ts +99 -0
- package/dist/entries/crawler.cjs +5 -5
- package/dist/index.cjs +24 -24
- package/dist/index.d.ts +99 -0
- package/dist/platform/browser.d.ts +99 -0
- package/dist/platform/bun.d.ts +99 -0
- package/dist/platform/deno.d.ts +99 -0
- package/dist/platform/node.d.ts +99 -0
- package/dist/platform/react-native.d.ts +99 -0
- package/dist/platform/worker.d.ts +99 -0
- 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
|
@@ -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.
|
|
@@ -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.
|
|
@@ -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.
|
|
@@ -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.
|
|
@@ -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.
|
|
@@ -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.
|
package/dist/adapters/index.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
const
|
|
2
|
-
exports.detectRuntime =
|
|
3
|
-
exports.getAdapterCapabilities =
|
|
4
|
-
exports.buildAdapterContext =
|
|
5
|
-
exports.getAvailableAdapters =
|
|
6
|
-
exports.selectAdapter =
|
|
1
|
+
const _mod_a49tp0 = require('./picker.cjs');
|
|
2
|
+
exports.detectRuntime = _mod_a49tp0.detectRuntime;
|
|
3
|
+
exports.getAdapterCapabilities = _mod_a49tp0.getAdapterCapabilities;
|
|
4
|
+
exports.buildAdapterContext = _mod_a49tp0.buildAdapterContext;
|
|
5
|
+
exports.getAvailableAdapters = _mod_a49tp0.getAvailableAdapters;
|
|
6
|
+
exports.selectAdapter = _mod_a49tp0.selectAdapter;;
|
package/dist/cache/index.cjs
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
const
|
|
2
|
-
exports.LRUCache =
|
|
3
|
-
const
|
|
4
|
-
exports.DNSCache =
|
|
5
|
-
exports.getGlobalDNSCache =
|
|
6
|
-
exports.resetGlobalDNSCache =
|
|
7
|
-
const
|
|
8
|
-
exports.ResponseCache =
|
|
9
|
-
exports.normalizeResponseCacheConfig =
|
|
10
|
-
const
|
|
11
|
-
exports.FileCacher =
|
|
12
|
-
const
|
|
13
|
-
exports.UrlStore =
|
|
1
|
+
const _mod_jyz6s4 = require('./lru-cache.cjs');
|
|
2
|
+
exports.LRUCache = _mod_jyz6s4.LRUCache;;
|
|
3
|
+
const _mod_a0ftbg = require('./dns-cache.cjs');
|
|
4
|
+
exports.DNSCache = _mod_a0ftbg.DNSCache;
|
|
5
|
+
exports.getGlobalDNSCache = _mod_a0ftbg.getGlobalDNSCache;
|
|
6
|
+
exports.resetGlobalDNSCache = _mod_a0ftbg.resetGlobalDNSCache;;
|
|
7
|
+
const _mod_knf7z5 = require('./response-cache.cjs');
|
|
8
|
+
exports.ResponseCache = _mod_knf7z5.ResponseCache;
|
|
9
|
+
exports.normalizeResponseCacheConfig = _mod_knf7z5.normalizeResponseCacheConfig;;
|
|
10
|
+
const _mod_a13exp = require('./file-cacher.cjs');
|
|
11
|
+
exports.FileCacher = _mod_a13exp.FileCacher;;
|
|
12
|
+
const _mod_6bj6sb = require('./url-store.cjs');
|
|
13
|
+
exports.UrlStore = _mod_6bj6sb.UrlStore;;
|