@isdk/web-fetcher 0.3.1 → 0.3.2
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/README.action.cn.md +28 -4
- package/README.action.md +27 -4
- package/README.cn.md +2 -0
- package/README.engine.cn.md +1 -1
- package/README.engine.md +1 -1
- package/README.md +2 -0
- package/dist/index.d.mts +100 -2
- package/dist/index.d.ts +100 -2
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/docs/README.md +2 -0
- package/docs/_media/README.action.md +27 -4
- package/docs/_media/README.cn.md +2 -0
- package/docs/_media/README.engine.md +1 -1
- package/docs/classes/CheerioFetchEngine.md +168 -92
- package/docs/classes/ClickAction.md +23 -23
- package/docs/classes/EvaluateAction.md +23 -23
- package/docs/classes/ExtractAction.md +23 -23
- package/docs/classes/FetchAction.md +25 -23
- package/docs/classes/FetchEngine.md +158 -90
- package/docs/classes/FetchSession.md +13 -13
- package/docs/classes/FillAction.md +23 -23
- package/docs/classes/GetContentAction.md +23 -23
- package/docs/classes/GotoAction.md +23 -23
- package/docs/classes/KeyboardPressAction.md +23 -23
- package/docs/classes/KeyboardTypeAction.md +23 -23
- package/docs/classes/MouseClickAction.md +23 -23
- package/docs/classes/MouseMoveAction.md +23 -23
- package/docs/classes/MouseWheelAction.md +533 -0
- package/docs/classes/PauseAction.md +23 -23
- package/docs/classes/PlaywrightFetchEngine.md +251 -117
- package/docs/classes/ScrollIntoViewAction.md +533 -0
- package/docs/classes/SubmitAction.md +23 -23
- package/docs/classes/TrimAction.md +23 -23
- package/docs/classes/WaitForAction.md +23 -23
- package/docs/classes/WebFetcher.md +5 -5
- package/docs/enumerations/FetchActionResultStatus.md +4 -4
- package/docs/functions/fetchWeb.md +2 -2
- package/docs/functions/getRandomDelay.md +25 -0
- package/docs/globals.md +5 -0
- package/docs/interfaces/BaseFetchActionProperties.md +12 -12
- package/docs/interfaces/BaseFetchCollectorActionProperties.md +16 -16
- package/docs/interfaces/BaseFetcherProperties.md +27 -27
- package/docs/interfaces/DispatchedEngineAction.md +4 -4
- package/docs/interfaces/EvaluateActionOptions.md +3 -3
- package/docs/interfaces/ExtractActionProperties.md +12 -12
- package/docs/interfaces/FetchActionInContext.md +15 -15
- package/docs/interfaces/FetchActionProperties.md +13 -13
- package/docs/interfaces/FetchActionResult.md +6 -6
- package/docs/interfaces/FetchContext.md +37 -37
- package/docs/interfaces/FetchEngineContext.md +32 -32
- package/docs/interfaces/FetchMetadata.md +5 -5
- package/docs/interfaces/FetchResponse.md +14 -14
- package/docs/interfaces/FetchReturnTypeRegistry.md +7 -7
- package/docs/interfaces/FetchSite.md +30 -30
- package/docs/interfaces/FetcherOptions.md +29 -29
- package/docs/interfaces/GotoActionOptions.md +7 -7
- package/docs/interfaces/KeyboardPressParams.md +3 -3
- package/docs/interfaces/KeyboardTypeParams.md +3 -3
- package/docs/interfaces/MouseClickParams.md +6 -6
- package/docs/interfaces/MouseMoveParams.md +5 -5
- package/docs/interfaces/MouseWheelParams.md +69 -0
- package/docs/interfaces/PendingEngineRequest.md +3 -3
- package/docs/interfaces/ScrollIntoViewParams.md +17 -0
- package/docs/interfaces/StorageOptions.md +5 -5
- package/docs/interfaces/SubmitActionOptions.md +2 -2
- package/docs/interfaces/TrimActionOptions.md +3 -3
- package/docs/interfaces/WaitForActionOptions.md +5 -5
- package/docs/type-aliases/BaseFetchActionOptions.md +1 -1
- package/docs/type-aliases/BaseFetchCollectorOptions.md +1 -1
- package/docs/type-aliases/BrowserEngine.md +1 -1
- package/docs/type-aliases/FetchActionCapabilities.md +1 -1
- package/docs/type-aliases/FetchActionCapabilityMode.md +1 -1
- package/docs/type-aliases/FetchActionOptions.md +1 -1
- package/docs/type-aliases/FetchEngineAction.md +2 -2
- package/docs/type-aliases/FetchEngineType.md +1 -1
- package/docs/type-aliases/FetchReturnType.md +1 -1
- package/docs/type-aliases/FetchReturnTypeFor.md +1 -1
- package/docs/type-aliases/OnFetchPauseCallback.md +1 -1
- package/docs/type-aliases/ResourceType.md +1 -1
- package/docs/type-aliases/TrimPreset.md +1 -1
- package/docs/variables/DefaultFetcherProperties.md +1 -1
- package/docs/variables/FetcherOptionKeys.md +1 -1
- package/docs/variables/TRIM_PRESETS.md +1 -1
- package/package.json +7 -7
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
# Interface: FetchContext
|
|
8
8
|
|
|
9
|
-
Defined in: [packages/web-fetcher/src/core/context.ts:110](https://github.com/isdk/web-fetcher.js/blob/
|
|
9
|
+
Defined in: [packages/web-fetcher/src/core/context.ts:110](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/context.ts#L110)
|
|
10
10
|
|
|
11
11
|
The full execution context for a Web Fetcher session or action batch.
|
|
12
12
|
|
|
@@ -26,7 +26,7 @@ It is passed to every action during execution.
|
|
|
26
26
|
|
|
27
27
|
> `optional` **antibot**: `boolean`
|
|
28
28
|
|
|
29
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:74](https://github.com/isdk/web-fetcher.js/blob/
|
|
29
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:74](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/types.ts#L74)
|
|
30
30
|
|
|
31
31
|
#### Inherited from
|
|
32
32
|
|
|
@@ -38,7 +38,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:74](https://github.com/isdk/
|
|
|
38
38
|
|
|
39
39
|
> `optional` **blockResources**: `string`[]
|
|
40
40
|
|
|
41
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:91](https://github.com/isdk/web-fetcher.js/blob/
|
|
41
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:91](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/types.ts#L91)
|
|
42
42
|
|
|
43
43
|
#### Inherited from
|
|
44
44
|
|
|
@@ -50,7 +50,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:91](https://github.com/isdk/
|
|
|
50
50
|
|
|
51
51
|
> `optional` **browser**: `object`
|
|
52
52
|
|
|
53
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:101](https://github.com/isdk/web-fetcher.js/blob/
|
|
53
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:101](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/types.ts#L101)
|
|
54
54
|
|
|
55
55
|
#### engine?
|
|
56
56
|
|
|
@@ -83,7 +83,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:101](https://github.com/isdk
|
|
|
83
83
|
|
|
84
84
|
> `optional` **cookies**: [`Cookie`](Cookie.md)[]
|
|
85
85
|
|
|
86
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:78](https://github.com/isdk/web-fetcher.js/blob/
|
|
86
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:78](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/types.ts#L78)
|
|
87
87
|
|
|
88
88
|
#### Inherited from
|
|
89
89
|
|
|
@@ -95,7 +95,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:78](https://github.com/isdk/
|
|
|
95
95
|
|
|
96
96
|
> `optional` **currentAction**: [`FetchActionInContext`](FetchActionInContext.md)
|
|
97
97
|
|
|
98
|
-
Defined in: [packages/web-fetcher/src/core/context.ts:114](https://github.com/isdk/web-fetcher.js/blob/
|
|
98
|
+
Defined in: [packages/web-fetcher/src/core/context.ts:114](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/context.ts#L114)
|
|
99
99
|
|
|
100
100
|
Metadata about the action currently being executed.
|
|
101
101
|
|
|
@@ -105,7 +105,7 @@ Metadata about the action currently being executed.
|
|
|
105
105
|
|
|
106
106
|
> `optional` **debug**: `string` \| `boolean` \| `string`[]
|
|
107
107
|
|
|
108
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:75](https://github.com/isdk/web-fetcher.js/blob/
|
|
108
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:75](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/types.ts#L75)
|
|
109
109
|
|
|
110
110
|
#### Inherited from
|
|
111
111
|
|
|
@@ -117,7 +117,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:75](https://github.com/isdk/
|
|
|
117
117
|
|
|
118
118
|
> `optional` **delayBetweenRequestsMs**: `number`
|
|
119
119
|
|
|
120
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:123](https://github.com/isdk/web-fetcher.js/blob/
|
|
120
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:123](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/types.ts#L123)
|
|
121
121
|
|
|
122
122
|
#### Inherited from
|
|
123
123
|
|
|
@@ -129,7 +129,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:123](https://github.com/isdk
|
|
|
129
129
|
|
|
130
130
|
> `optional` **enableSmart**: `boolean`
|
|
131
131
|
|
|
132
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:72](https://github.com/isdk/web-fetcher.js/blob/
|
|
132
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:72](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/types.ts#L72)
|
|
133
133
|
|
|
134
134
|
#### Inherited from
|
|
135
135
|
|
|
@@ -141,7 +141,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:72](https://github.com/isdk/
|
|
|
141
141
|
|
|
142
142
|
> `optional` **engine**: `string`
|
|
143
143
|
|
|
144
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:71](https://github.com/isdk/web-fetcher.js/blob/
|
|
144
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:71](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/types.ts#L71)
|
|
145
145
|
|
|
146
146
|
抓取模式
|
|
147
147
|
|
|
@@ -159,7 +159,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:71](https://github.com/isdk/
|
|
|
159
159
|
|
|
160
160
|
> **eventBus**: `EventEmitter`
|
|
161
161
|
|
|
162
|
-
Defined in: [packages/web-fetcher/src/core/context.ts:154](https://github.com/isdk/web-fetcher.js/blob/
|
|
162
|
+
Defined in: [packages/web-fetcher/src/core/context.ts:154](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/context.ts#L154)
|
|
163
163
|
|
|
164
164
|
The central event bus for publishing and subscribing to session and action events.
|
|
165
165
|
|
|
@@ -169,7 +169,7 @@ The central event bus for publishing and subscribing to session and action event
|
|
|
169
169
|
|
|
170
170
|
> `optional` **finalUrl**: `string`
|
|
171
171
|
|
|
172
|
-
Defined in: [packages/web-fetcher/src/core/context.ts:85](https://github.com/isdk/web-fetcher.js/blob/
|
|
172
|
+
Defined in: [packages/web-fetcher/src/core/context.ts:85](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/context.ts#L85)
|
|
173
173
|
|
|
174
174
|
The final URL after all redirects have been followed.
|
|
175
175
|
|
|
@@ -183,7 +183,7 @@ The final URL after all redirects have been followed.
|
|
|
183
183
|
|
|
184
184
|
> `optional` **headers**: `Record`\<`string`, `string`\>
|
|
185
185
|
|
|
186
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:77](https://github.com/isdk/web-fetcher.js/blob/
|
|
186
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:77](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/types.ts#L77)
|
|
187
187
|
|
|
188
188
|
#### Inherited from
|
|
189
189
|
|
|
@@ -195,7 +195,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:77](https://github.com/isdk/
|
|
|
195
195
|
|
|
196
196
|
> `optional` **http**: `object`
|
|
197
197
|
|
|
198
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:114](https://github.com/isdk/web-fetcher.js/blob/
|
|
198
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:114](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/types.ts#L114)
|
|
199
199
|
|
|
200
200
|
#### body?
|
|
201
201
|
|
|
@@ -215,7 +215,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:114](https://github.com/isdk
|
|
|
215
215
|
|
|
216
216
|
> **id**: `string`
|
|
217
217
|
|
|
218
|
-
Defined in: [packages/web-fetcher/src/core/context.ts:77](https://github.com/isdk/web-fetcher.js/blob/
|
|
218
|
+
Defined in: [packages/web-fetcher/src/core/context.ts:77](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/context.ts#L77)
|
|
219
219
|
|
|
220
220
|
Unique identifier for the session or request batch.
|
|
221
221
|
|
|
@@ -229,7 +229,7 @@ Unique identifier for the session or request batch.
|
|
|
229
229
|
|
|
230
230
|
> `optional` **ignoreSslErrors**: `boolean`
|
|
231
231
|
|
|
232
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:99](https://github.com/isdk/web-fetcher.js/blob/
|
|
232
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:99](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/types.ts#L99)
|
|
233
233
|
|
|
234
234
|
#### Inherited from
|
|
235
235
|
|
|
@@ -241,7 +241,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:99](https://github.com/isdk/
|
|
|
241
241
|
|
|
242
242
|
> **internal**: `FetchContextInteralState`
|
|
243
243
|
|
|
244
|
-
Defined in: [packages/web-fetcher/src/core/context.ts:149](https://github.com/isdk/web-fetcher.js/blob/
|
|
244
|
+
Defined in: [packages/web-fetcher/src/core/context.ts:149](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/context.ts#L149)
|
|
245
245
|
|
|
246
246
|
Internal state for engine and lifecycle management.
|
|
247
247
|
|
|
@@ -255,7 +255,7 @@ Internal state for engine and lifecycle management.
|
|
|
255
255
|
|
|
256
256
|
> `optional` **lastResponse**: [`FetchResponse`](FetchResponse.md)
|
|
257
257
|
|
|
258
|
-
Defined in: [packages/web-fetcher/src/core/context.ts:90](https://github.com/isdk/web-fetcher.js/blob/
|
|
258
|
+
Defined in: [packages/web-fetcher/src/core/context.ts:90](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/context.ts#L90)
|
|
259
259
|
|
|
260
260
|
The standardized response object from the most recent navigation.
|
|
261
261
|
|
|
@@ -269,7 +269,7 @@ The standardized response object from the most recent navigation.
|
|
|
269
269
|
|
|
270
270
|
> `optional` **lastResult**: [`FetchActionResult`](FetchActionResult.md)\<[`FetchReturnType`](../type-aliases/FetchReturnType.md)\>
|
|
271
271
|
|
|
272
|
-
Defined in: [packages/web-fetcher/src/core/context.ts:94](https://github.com/isdk/web-fetcher.js/blob/
|
|
272
|
+
Defined in: [packages/web-fetcher/src/core/context.ts:94](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/context.ts#L94)
|
|
273
273
|
|
|
274
274
|
The result object from the most recent action execution.
|
|
275
275
|
|
|
@@ -283,7 +283,7 @@ The result object from the most recent action execution.
|
|
|
283
283
|
|
|
284
284
|
> `optional` **maxConcurrency**: `number`
|
|
285
285
|
|
|
286
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:121](https://github.com/isdk/web-fetcher.js/blob/
|
|
286
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:121](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/types.ts#L121)
|
|
287
287
|
|
|
288
288
|
#### Inherited from
|
|
289
289
|
|
|
@@ -295,7 +295,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:121](https://github.com/isdk
|
|
|
295
295
|
|
|
296
296
|
> `optional` **maxRequestsPerMinute**: `number`
|
|
297
297
|
|
|
298
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:122](https://github.com/isdk/web-fetcher.js/blob/
|
|
298
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:122](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/types.ts#L122)
|
|
299
299
|
|
|
300
300
|
#### Inherited from
|
|
301
301
|
|
|
@@ -307,7 +307,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:122](https://github.com/isdk
|
|
|
307
307
|
|
|
308
308
|
> `optional` **output**: `object`
|
|
309
309
|
|
|
310
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:84](https://github.com/isdk/web-fetcher.js/blob/
|
|
310
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:84](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/types.ts#L84)
|
|
311
311
|
|
|
312
312
|
#### cookies?
|
|
313
313
|
|
|
@@ -327,7 +327,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:84](https://github.com/isdk/
|
|
|
327
327
|
|
|
328
328
|
> **outputs**: `Record`\<`string`, `any`\>
|
|
329
329
|
|
|
330
|
-
Defined in: [packages/web-fetcher/src/core/context.ts:120](https://github.com/isdk/web-fetcher.js/blob/
|
|
330
|
+
Defined in: [packages/web-fetcher/src/core/context.ts:120](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/context.ts#L120)
|
|
331
331
|
|
|
332
332
|
A shared key-value store for storing data extracted from pages or
|
|
333
333
|
metadata generated during action execution.
|
|
@@ -338,7 +338,7 @@ metadata generated during action execution.
|
|
|
338
338
|
|
|
339
339
|
> `optional` **overrideSessionState**: `boolean`
|
|
340
340
|
|
|
341
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:81](https://github.com/isdk/web-fetcher.js/blob/
|
|
341
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:81](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/types.ts#L81)
|
|
342
342
|
|
|
343
343
|
#### Inherited from
|
|
344
344
|
|
|
@@ -350,7 +350,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:81](https://github.com/isdk/
|
|
|
350
350
|
|
|
351
351
|
> `optional` **proxy**: `string` \| `string`[]
|
|
352
352
|
|
|
353
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:89](https://github.com/isdk/web-fetcher.js/blob/
|
|
353
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:89](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/types.ts#L89)
|
|
354
354
|
|
|
355
355
|
#### Inherited from
|
|
356
356
|
|
|
@@ -362,7 +362,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:89](https://github.com/isdk/
|
|
|
362
362
|
|
|
363
363
|
> `optional` **requestHandlerTimeoutSecs**: `number`
|
|
364
364
|
|
|
365
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:120](https://github.com/isdk/web-fetcher.js/blob/
|
|
365
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:120](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/types.ts#L120)
|
|
366
366
|
|
|
367
367
|
#### Inherited from
|
|
368
368
|
|
|
@@ -374,7 +374,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:120](https://github.com/isdk
|
|
|
374
374
|
|
|
375
375
|
> `optional` **retries**: `number`
|
|
376
376
|
|
|
377
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:124](https://github.com/isdk/web-fetcher.js/blob/
|
|
377
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:124](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/types.ts#L124)
|
|
378
378
|
|
|
379
379
|
#### Inherited from
|
|
380
380
|
|
|
@@ -386,7 +386,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:124](https://github.com/isdk
|
|
|
386
386
|
|
|
387
387
|
> `optional` **sessionPoolOptions**: `SessionPoolOptions`
|
|
388
388
|
|
|
389
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:80](https://github.com/isdk/web-fetcher.js/blob/
|
|
389
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:80](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/types.ts#L80)
|
|
390
390
|
|
|
391
391
|
#### Inherited from
|
|
392
392
|
|
|
@@ -398,7 +398,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:80](https://github.com/isdk/
|
|
|
398
398
|
|
|
399
399
|
> `optional` **sessionState**: `any`
|
|
400
400
|
|
|
401
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:79](https://github.com/isdk/web-fetcher.js/blob/
|
|
401
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:79](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/types.ts#L79)
|
|
402
402
|
|
|
403
403
|
#### Inherited from
|
|
404
404
|
|
|
@@ -410,7 +410,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:79](https://github.com/isdk/
|
|
|
410
410
|
|
|
411
411
|
> `optional` **sites**: [`FetchSite`](FetchSite.md)[]
|
|
412
412
|
|
|
413
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:126](https://github.com/isdk/web-fetcher.js/blob/
|
|
413
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:126](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/types.ts#L126)
|
|
414
414
|
|
|
415
415
|
#### Inherited from
|
|
416
416
|
|
|
@@ -422,7 +422,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:126](https://github.com/isdk
|
|
|
422
422
|
|
|
423
423
|
> `optional` **storage**: [`StorageOptions`](StorageOptions.md)
|
|
424
424
|
|
|
425
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:96](https://github.com/isdk/web-fetcher.js/blob/
|
|
425
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:96](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/types.ts#L96)
|
|
426
426
|
|
|
427
427
|
Storage configuration for session isolation and persistence.
|
|
428
428
|
|
|
@@ -436,7 +436,7 @@ Storage configuration for session isolation and persistence.
|
|
|
436
436
|
|
|
437
437
|
> `optional` **throwHttpErrors**: `boolean`
|
|
438
438
|
|
|
439
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:82](https://github.com/isdk/web-fetcher.js/blob/
|
|
439
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:82](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/types.ts#L82)
|
|
440
440
|
|
|
441
441
|
#### Inherited from
|
|
442
442
|
|
|
@@ -448,7 +448,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:82](https://github.com/isdk/
|
|
|
448
448
|
|
|
449
449
|
> `optional` **timeoutMs**: `number`
|
|
450
450
|
|
|
451
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:119](https://github.com/isdk/web-fetcher.js/blob/
|
|
451
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:119](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/types.ts#L119)
|
|
452
452
|
|
|
453
453
|
#### Inherited from
|
|
454
454
|
|
|
@@ -460,7 +460,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:119](https://github.com/isdk
|
|
|
460
460
|
|
|
461
461
|
> `optional` **url**: `string`
|
|
462
462
|
|
|
463
|
-
Defined in: [packages/web-fetcher/src/core/context.ts:81](https://github.com/isdk/web-fetcher.js/blob/
|
|
463
|
+
Defined in: [packages/web-fetcher/src/core/context.ts:81](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/context.ts#L81)
|
|
464
464
|
|
|
465
465
|
The target URL for the next navigation, if specified.
|
|
466
466
|
|
|
@@ -474,7 +474,7 @@ The target URL for the next navigation, if specified.
|
|
|
474
474
|
|
|
475
475
|
> `optional` **useSiteRegistry**: `boolean`
|
|
476
476
|
|
|
477
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:73](https://github.com/isdk/web-fetcher.js/blob/
|
|
477
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:73](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/types.ts#L73)
|
|
478
478
|
|
|
479
479
|
#### Inherited from
|
|
480
480
|
|
|
@@ -486,7 +486,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:73](https://github.com/isdk/
|
|
|
486
486
|
|
|
487
487
|
> **action**\<`R`\>(`name`, `params?`, `options?`): `Promise`\<[`FetchActionResult`](FetchActionResult.md)\<`R`\>\>
|
|
488
488
|
|
|
489
|
-
Defined in: [packages/web-fetcher/src/core/context.ts:140](https://github.com/isdk/web-fetcher.js/blob/
|
|
489
|
+
Defined in: [packages/web-fetcher/src/core/context.ts:140](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/context.ts#L140)
|
|
490
490
|
|
|
491
491
|
Convenience method to execute an action by its registered name or ID.
|
|
492
492
|
|
|
@@ -528,7 +528,7 @@ A promise that resolves to the action's result.
|
|
|
528
528
|
|
|
529
529
|
> **execute**\<`R`\>(`actionOptions`): `Promise`\<[`FetchActionResult`](FetchActionResult.md)\<`R`\>\>
|
|
530
530
|
|
|
531
|
-
Defined in: [packages/web-fetcher/src/core/context.ts:128](https://github.com/isdk/web-fetcher.js/blob/
|
|
531
|
+
Defined in: [packages/web-fetcher/src/core/context.ts:128](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/context.ts#L128)
|
|
532
532
|
|
|
533
533
|
Executes a FetchAction within the current context.
|
|
534
534
|
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
# Interface: FetchEngineContext
|
|
8
8
|
|
|
9
|
-
Defined in: [packages/web-fetcher/src/core/context.ts:73](https://github.com/isdk/web-fetcher.js/blob/
|
|
9
|
+
Defined in: [packages/web-fetcher/src/core/context.ts:73](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/context.ts#L73)
|
|
10
10
|
|
|
11
11
|
Context provided to the Fetch Engine during navigation and request handling.
|
|
12
12
|
|
|
@@ -29,7 +29,7 @@ to perform a fetch operation and build a response.
|
|
|
29
29
|
|
|
30
30
|
> `optional` **antibot**: `boolean`
|
|
31
31
|
|
|
32
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:74](https://github.com/isdk/web-fetcher.js/blob/
|
|
32
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:74](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/types.ts#L74)
|
|
33
33
|
|
|
34
34
|
#### Inherited from
|
|
35
35
|
|
|
@@ -41,7 +41,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:74](https://github.com/isdk/
|
|
|
41
41
|
|
|
42
42
|
> `optional` **blockResources**: `string`[]
|
|
43
43
|
|
|
44
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:91](https://github.com/isdk/web-fetcher.js/blob/
|
|
44
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:91](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/types.ts#L91)
|
|
45
45
|
|
|
46
46
|
#### Inherited from
|
|
47
47
|
|
|
@@ -53,7 +53,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:91](https://github.com/isdk/
|
|
|
53
53
|
|
|
54
54
|
> `optional` **browser**: `object`
|
|
55
55
|
|
|
56
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:101](https://github.com/isdk/web-fetcher.js/blob/
|
|
56
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:101](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/types.ts#L101)
|
|
57
57
|
|
|
58
58
|
#### engine?
|
|
59
59
|
|
|
@@ -86,7 +86,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:101](https://github.com/isdk
|
|
|
86
86
|
|
|
87
87
|
> `optional` **cookies**: [`Cookie`](Cookie.md)[]
|
|
88
88
|
|
|
89
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:78](https://github.com/isdk/web-fetcher.js/blob/
|
|
89
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:78](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/types.ts#L78)
|
|
90
90
|
|
|
91
91
|
#### Inherited from
|
|
92
92
|
|
|
@@ -98,7 +98,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:78](https://github.com/isdk/
|
|
|
98
98
|
|
|
99
99
|
> `optional` **debug**: `string` \| `boolean` \| `string`[]
|
|
100
100
|
|
|
101
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:75](https://github.com/isdk/web-fetcher.js/blob/
|
|
101
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:75](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/types.ts#L75)
|
|
102
102
|
|
|
103
103
|
#### Inherited from
|
|
104
104
|
|
|
@@ -110,7 +110,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:75](https://github.com/isdk/
|
|
|
110
110
|
|
|
111
111
|
> `optional` **delayBetweenRequestsMs**: `number`
|
|
112
112
|
|
|
113
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:123](https://github.com/isdk/web-fetcher.js/blob/
|
|
113
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:123](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/types.ts#L123)
|
|
114
114
|
|
|
115
115
|
#### Inherited from
|
|
116
116
|
|
|
@@ -122,7 +122,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:123](https://github.com/isdk
|
|
|
122
122
|
|
|
123
123
|
> `optional` **enableSmart**: `boolean`
|
|
124
124
|
|
|
125
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:72](https://github.com/isdk/web-fetcher.js/blob/
|
|
125
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:72](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/types.ts#L72)
|
|
126
126
|
|
|
127
127
|
#### Inherited from
|
|
128
128
|
|
|
@@ -134,7 +134,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:72](https://github.com/isdk/
|
|
|
134
134
|
|
|
135
135
|
> `optional` **engine**: `string`
|
|
136
136
|
|
|
137
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:71](https://github.com/isdk/web-fetcher.js/blob/
|
|
137
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:71](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/types.ts#L71)
|
|
138
138
|
|
|
139
139
|
抓取模式
|
|
140
140
|
|
|
@@ -152,7 +152,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:71](https://github.com/isdk/
|
|
|
152
152
|
|
|
153
153
|
> `optional` **finalUrl**: `string`
|
|
154
154
|
|
|
155
|
-
Defined in: [packages/web-fetcher/src/core/context.ts:85](https://github.com/isdk/web-fetcher.js/blob/
|
|
155
|
+
Defined in: [packages/web-fetcher/src/core/context.ts:85](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/context.ts#L85)
|
|
156
156
|
|
|
157
157
|
The final URL after all redirects have been followed.
|
|
158
158
|
|
|
@@ -162,7 +162,7 @@ The final URL after all redirects have been followed.
|
|
|
162
162
|
|
|
163
163
|
> `optional` **headers**: `Record`\<`string`, `string`\>
|
|
164
164
|
|
|
165
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:77](https://github.com/isdk/web-fetcher.js/blob/
|
|
165
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:77](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/types.ts#L77)
|
|
166
166
|
|
|
167
167
|
#### Inherited from
|
|
168
168
|
|
|
@@ -174,7 +174,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:77](https://github.com/isdk/
|
|
|
174
174
|
|
|
175
175
|
> `optional` **http**: `object`
|
|
176
176
|
|
|
177
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:114](https://github.com/isdk/web-fetcher.js/blob/
|
|
177
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:114](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/types.ts#L114)
|
|
178
178
|
|
|
179
179
|
#### body?
|
|
180
180
|
|
|
@@ -194,7 +194,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:114](https://github.com/isdk
|
|
|
194
194
|
|
|
195
195
|
> **id**: `string`
|
|
196
196
|
|
|
197
|
-
Defined in: [packages/web-fetcher/src/core/context.ts:77](https://github.com/isdk/web-fetcher.js/blob/
|
|
197
|
+
Defined in: [packages/web-fetcher/src/core/context.ts:77](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/context.ts#L77)
|
|
198
198
|
|
|
199
199
|
Unique identifier for the session or request batch.
|
|
200
200
|
|
|
@@ -204,7 +204,7 @@ Unique identifier for the session or request batch.
|
|
|
204
204
|
|
|
205
205
|
> `optional` **ignoreSslErrors**: `boolean`
|
|
206
206
|
|
|
207
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:99](https://github.com/isdk/web-fetcher.js/blob/
|
|
207
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:99](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/types.ts#L99)
|
|
208
208
|
|
|
209
209
|
#### Inherited from
|
|
210
210
|
|
|
@@ -216,7 +216,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:99](https://github.com/isdk/
|
|
|
216
216
|
|
|
217
217
|
> **internal**: `BaseFetchContextInteralState`
|
|
218
218
|
|
|
219
|
-
Defined in: [packages/web-fetcher/src/core/context.ts:99](https://github.com/isdk/web-fetcher.js/blob/
|
|
219
|
+
Defined in: [packages/web-fetcher/src/core/context.ts:99](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/context.ts#L99)
|
|
220
220
|
|
|
221
221
|
Engine-specific internal state.
|
|
222
222
|
|
|
@@ -226,7 +226,7 @@ Engine-specific internal state.
|
|
|
226
226
|
|
|
227
227
|
> `optional` **lastResponse**: [`FetchResponse`](FetchResponse.md)
|
|
228
228
|
|
|
229
|
-
Defined in: [packages/web-fetcher/src/core/context.ts:90](https://github.com/isdk/web-fetcher.js/blob/
|
|
229
|
+
Defined in: [packages/web-fetcher/src/core/context.ts:90](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/context.ts#L90)
|
|
230
230
|
|
|
231
231
|
The standardized response object from the most recent navigation.
|
|
232
232
|
|
|
@@ -236,7 +236,7 @@ The standardized response object from the most recent navigation.
|
|
|
236
236
|
|
|
237
237
|
> `optional` **lastResult**: [`FetchActionResult`](FetchActionResult.md)\<[`FetchReturnType`](../type-aliases/FetchReturnType.md)\>
|
|
238
238
|
|
|
239
|
-
Defined in: [packages/web-fetcher/src/core/context.ts:94](https://github.com/isdk/web-fetcher.js/blob/
|
|
239
|
+
Defined in: [packages/web-fetcher/src/core/context.ts:94](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/context.ts#L94)
|
|
240
240
|
|
|
241
241
|
The result object from the most recent action execution.
|
|
242
242
|
|
|
@@ -246,7 +246,7 @@ The result object from the most recent action execution.
|
|
|
246
246
|
|
|
247
247
|
> `optional` **maxConcurrency**: `number`
|
|
248
248
|
|
|
249
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:121](https://github.com/isdk/web-fetcher.js/blob/
|
|
249
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:121](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/types.ts#L121)
|
|
250
250
|
|
|
251
251
|
#### Inherited from
|
|
252
252
|
|
|
@@ -258,7 +258,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:121](https://github.com/isdk
|
|
|
258
258
|
|
|
259
259
|
> `optional` **maxRequestsPerMinute**: `number`
|
|
260
260
|
|
|
261
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:122](https://github.com/isdk/web-fetcher.js/blob/
|
|
261
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:122](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/types.ts#L122)
|
|
262
262
|
|
|
263
263
|
#### Inherited from
|
|
264
264
|
|
|
@@ -270,7 +270,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:122](https://github.com/isdk
|
|
|
270
270
|
|
|
271
271
|
> `optional` **output**: `object`
|
|
272
272
|
|
|
273
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:84](https://github.com/isdk/web-fetcher.js/blob/
|
|
273
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:84](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/types.ts#L84)
|
|
274
274
|
|
|
275
275
|
#### cookies?
|
|
276
276
|
|
|
@@ -290,7 +290,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:84](https://github.com/isdk/
|
|
|
290
290
|
|
|
291
291
|
> `optional` **overrideSessionState**: `boolean`
|
|
292
292
|
|
|
293
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:81](https://github.com/isdk/web-fetcher.js/blob/
|
|
293
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:81](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/types.ts#L81)
|
|
294
294
|
|
|
295
295
|
#### Inherited from
|
|
296
296
|
|
|
@@ -302,7 +302,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:81](https://github.com/isdk/
|
|
|
302
302
|
|
|
303
303
|
> `optional` **proxy**: `string` \| `string`[]
|
|
304
304
|
|
|
305
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:89](https://github.com/isdk/web-fetcher.js/blob/
|
|
305
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:89](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/types.ts#L89)
|
|
306
306
|
|
|
307
307
|
#### Inherited from
|
|
308
308
|
|
|
@@ -314,7 +314,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:89](https://github.com/isdk/
|
|
|
314
314
|
|
|
315
315
|
> `optional` **requestHandlerTimeoutSecs**: `number`
|
|
316
316
|
|
|
317
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:120](https://github.com/isdk/web-fetcher.js/blob/
|
|
317
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:120](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/types.ts#L120)
|
|
318
318
|
|
|
319
319
|
#### Inherited from
|
|
320
320
|
|
|
@@ -326,7 +326,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:120](https://github.com/isdk
|
|
|
326
326
|
|
|
327
327
|
> `optional` **retries**: `number`
|
|
328
328
|
|
|
329
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:124](https://github.com/isdk/web-fetcher.js/blob/
|
|
329
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:124](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/types.ts#L124)
|
|
330
330
|
|
|
331
331
|
#### Inherited from
|
|
332
332
|
|
|
@@ -338,7 +338,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:124](https://github.com/isdk
|
|
|
338
338
|
|
|
339
339
|
> `optional` **sessionPoolOptions**: `SessionPoolOptions`
|
|
340
340
|
|
|
341
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:80](https://github.com/isdk/web-fetcher.js/blob/
|
|
341
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:80](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/types.ts#L80)
|
|
342
342
|
|
|
343
343
|
#### Inherited from
|
|
344
344
|
|
|
@@ -350,7 +350,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:80](https://github.com/isdk/
|
|
|
350
350
|
|
|
351
351
|
> `optional` **sessionState**: `any`
|
|
352
352
|
|
|
353
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:79](https://github.com/isdk/web-fetcher.js/blob/
|
|
353
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:79](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/types.ts#L79)
|
|
354
354
|
|
|
355
355
|
#### Inherited from
|
|
356
356
|
|
|
@@ -362,7 +362,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:79](https://github.com/isdk/
|
|
|
362
362
|
|
|
363
363
|
> `optional` **sites**: [`FetchSite`](FetchSite.md)[]
|
|
364
364
|
|
|
365
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:126](https://github.com/isdk/web-fetcher.js/blob/
|
|
365
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:126](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/types.ts#L126)
|
|
366
366
|
|
|
367
367
|
#### Inherited from
|
|
368
368
|
|
|
@@ -374,7 +374,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:126](https://github.com/isdk
|
|
|
374
374
|
|
|
375
375
|
> `optional` **storage**: [`StorageOptions`](StorageOptions.md)
|
|
376
376
|
|
|
377
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:96](https://github.com/isdk/web-fetcher.js/blob/
|
|
377
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:96](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/types.ts#L96)
|
|
378
378
|
|
|
379
379
|
Storage configuration for session isolation and persistence.
|
|
380
380
|
|
|
@@ -388,7 +388,7 @@ Storage configuration for session isolation and persistence.
|
|
|
388
388
|
|
|
389
389
|
> `optional` **throwHttpErrors**: `boolean`
|
|
390
390
|
|
|
391
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:82](https://github.com/isdk/web-fetcher.js/blob/
|
|
391
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:82](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/types.ts#L82)
|
|
392
392
|
|
|
393
393
|
#### Inherited from
|
|
394
394
|
|
|
@@ -400,7 +400,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:82](https://github.com/isdk/
|
|
|
400
400
|
|
|
401
401
|
> `optional` **timeoutMs**: `number`
|
|
402
402
|
|
|
403
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:119](https://github.com/isdk/web-fetcher.js/blob/
|
|
403
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:119](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/types.ts#L119)
|
|
404
404
|
|
|
405
405
|
#### Inherited from
|
|
406
406
|
|
|
@@ -412,7 +412,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:119](https://github.com/isdk
|
|
|
412
412
|
|
|
413
413
|
> `optional` **url**: `string`
|
|
414
414
|
|
|
415
|
-
Defined in: [packages/web-fetcher/src/core/context.ts:81](https://github.com/isdk/web-fetcher.js/blob/
|
|
415
|
+
Defined in: [packages/web-fetcher/src/core/context.ts:81](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/context.ts#L81)
|
|
416
416
|
|
|
417
417
|
The target URL for the next navigation, if specified.
|
|
418
418
|
|
|
@@ -426,7 +426,7 @@ The target URL for the next navigation, if specified.
|
|
|
426
426
|
|
|
427
427
|
> `optional` **useSiteRegistry**: `boolean`
|
|
428
428
|
|
|
429
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:73](https://github.com/isdk/web-fetcher.js/blob/
|
|
429
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:73](https://github.com/isdk/web-fetcher.js/blob/ff2bf8a6938cad6b2dc7c85fb1380de226cb3724/src/core/types.ts#L73)
|
|
430
430
|
|
|
431
431
|
#### Inherited from
|
|
432
432
|
|