@isdk/web-fetcher 0.2.12 → 0.3.1
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 +197 -155
- package/README.action.extract.cn.md +263 -0
- package/README.action.extract.md +263 -0
- package/README.action.md +202 -147
- package/README.cn.md +25 -15
- package/README.engine.cn.md +118 -14
- package/README.engine.md +115 -14
- package/README.md +19 -10
- package/dist/index.d.mts +667 -50
- package/dist/index.d.ts +667 -50
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/docs/README.md +19 -10
- package/docs/_media/README.action.md +202 -147
- package/docs/_media/README.cn.md +25 -15
- package/docs/_media/README.engine.md +115 -14
- package/docs/classes/CheerioFetchEngine.md +805 -135
- package/docs/classes/ClickAction.md +33 -33
- package/docs/classes/EvaluateAction.md +559 -0
- package/docs/classes/ExtractAction.md +33 -33
- package/docs/classes/FetchAction.md +39 -33
- package/docs/classes/FetchEngine.md +660 -122
- package/docs/classes/FetchSession.md +38 -16
- package/docs/classes/FillAction.md +33 -33
- package/docs/classes/GetContentAction.md +33 -33
- package/docs/classes/GotoAction.md +33 -33
- package/docs/classes/KeyboardPressAction.md +533 -0
- package/docs/classes/KeyboardTypeAction.md +533 -0
- package/docs/classes/MouseClickAction.md +533 -0
- package/docs/classes/MouseMoveAction.md +533 -0
- package/docs/classes/PauseAction.md +33 -33
- package/docs/classes/PlaywrightFetchEngine.md +820 -122
- package/docs/classes/SubmitAction.md +33 -33
- package/docs/classes/TrimAction.md +533 -0
- package/docs/classes/WaitForAction.md +33 -33
- package/docs/classes/WebFetcher.md +9 -9
- package/docs/enumerations/FetchActionResultStatus.md +4 -4
- package/docs/functions/fetchWeb.md +6 -6
- package/docs/globals.md +14 -0
- package/docs/interfaces/BaseFetchActionProperties.md +12 -12
- package/docs/interfaces/BaseFetchCollectorActionProperties.md +16 -16
- package/docs/interfaces/BaseFetcherProperties.md +32 -28
- package/docs/interfaces/Cookie.md +14 -14
- package/docs/interfaces/DispatchedEngineAction.md +4 -4
- package/docs/interfaces/EvaluateActionOptions.md +81 -0
- 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 +42 -38
- package/docs/interfaces/FetchEngineContext.md +37 -33
- package/docs/interfaces/FetchMetadata.md +5 -5
- package/docs/interfaces/FetchResponse.md +14 -14
- package/docs/interfaces/FetchReturnTypeRegistry.md +8 -8
- package/docs/interfaces/FetchSite.md +35 -31
- package/docs/interfaces/FetcherOptions.md +34 -30
- package/docs/interfaces/GotoActionOptions.md +14 -6
- package/docs/interfaces/KeyboardPressParams.md +25 -0
- package/docs/interfaces/KeyboardTypeParams.md +25 -0
- package/docs/interfaces/MouseClickParams.md +49 -0
- package/docs/interfaces/MouseMoveParams.md +41 -0
- package/docs/interfaces/PendingEngineRequest.md +3 -3
- package/docs/interfaces/StorageOptions.md +5 -5
- package/docs/interfaces/SubmitActionOptions.md +2 -2
- package/docs/interfaces/TrimActionOptions.md +27 -0
- 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 +13 -0
- package/docs/variables/DefaultFetcherProperties.md +1 -1
- package/docs/variables/FetcherOptionKeys.md +1 -1
- package/docs/variables/TRIM_PRESETS.md +11 -0
- package/package.json +11 -11
|
@@ -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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/types.ts#L101)
|
|
54
54
|
|
|
55
55
|
#### engine?
|
|
56
56
|
|
|
@@ -65,6 +65,10 @@ Defined in: [packages/web-fetcher/src/core/types.ts:101](https://github.com/isdk
|
|
|
65
65
|
|
|
66
66
|
> `optional` **headless**: `boolean`
|
|
67
67
|
|
|
68
|
+
#### launchOptions?
|
|
69
|
+
|
|
70
|
+
> `optional` **launchOptions**: `Record`\<`string`, `any`\>
|
|
71
|
+
|
|
68
72
|
#### waitUntil?
|
|
69
73
|
|
|
70
74
|
> `optional` **waitUntil**: `"load"` \| `"domcontentloaded"` \| `"networkidle"` \| `"commit"`
|
|
@@ -79,7 +83,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:101](https://github.com/isdk
|
|
|
79
83
|
|
|
80
84
|
> `optional` **cookies**: [`Cookie`](Cookie.md)[]
|
|
81
85
|
|
|
82
|
-
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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/types.ts#L78)
|
|
83
87
|
|
|
84
88
|
#### Inherited from
|
|
85
89
|
|
|
@@ -91,7 +95,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:78](https://github.com/isdk/
|
|
|
91
95
|
|
|
92
96
|
> `optional` **currentAction**: [`FetchActionInContext`](FetchActionInContext.md)
|
|
93
97
|
|
|
94
|
-
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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/context.ts#L114)
|
|
95
99
|
|
|
96
100
|
Metadata about the action currently being executed.
|
|
97
101
|
|
|
@@ -99,9 +103,9 @@ Metadata about the action currently being executed.
|
|
|
99
103
|
|
|
100
104
|
### debug?
|
|
101
105
|
|
|
102
|
-
> `optional` **debug**: `boolean`
|
|
106
|
+
> `optional` **debug**: `string` \| `boolean` \| `string`[]
|
|
103
107
|
|
|
104
|
-
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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/types.ts#L75)
|
|
105
109
|
|
|
106
110
|
#### Inherited from
|
|
107
111
|
|
|
@@ -113,7 +117,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:75](https://github.com/isdk/
|
|
|
113
117
|
|
|
114
118
|
> `optional` **delayBetweenRequestsMs**: `number`
|
|
115
119
|
|
|
116
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:
|
|
120
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:123](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/types.ts#L123)
|
|
117
121
|
|
|
118
122
|
#### Inherited from
|
|
119
123
|
|
|
@@ -125,7 +129,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:122](https://github.com/isdk
|
|
|
125
129
|
|
|
126
130
|
> `optional` **enableSmart**: `boolean`
|
|
127
131
|
|
|
128
|
-
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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/types.ts#L72)
|
|
129
133
|
|
|
130
134
|
#### Inherited from
|
|
131
135
|
|
|
@@ -137,7 +141,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:72](https://github.com/isdk/
|
|
|
137
141
|
|
|
138
142
|
> `optional` **engine**: `string`
|
|
139
143
|
|
|
140
|
-
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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/types.ts#L71)
|
|
141
145
|
|
|
142
146
|
抓取模式
|
|
143
147
|
|
|
@@ -155,7 +159,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:71](https://github.com/isdk/
|
|
|
155
159
|
|
|
156
160
|
> **eventBus**: `EventEmitter`
|
|
157
161
|
|
|
158
|
-
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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/context.ts#L154)
|
|
159
163
|
|
|
160
164
|
The central event bus for publishing and subscribing to session and action events.
|
|
161
165
|
|
|
@@ -165,7 +169,7 @@ The central event bus for publishing and subscribing to session and action event
|
|
|
165
169
|
|
|
166
170
|
> `optional` **finalUrl**: `string`
|
|
167
171
|
|
|
168
|
-
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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/context.ts#L85)
|
|
169
173
|
|
|
170
174
|
The final URL after all redirects have been followed.
|
|
171
175
|
|
|
@@ -179,7 +183,7 @@ The final URL after all redirects have been followed.
|
|
|
179
183
|
|
|
180
184
|
> `optional` **headers**: `Record`\<`string`, `string`\>
|
|
181
185
|
|
|
182
|
-
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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/types.ts#L77)
|
|
183
187
|
|
|
184
188
|
#### Inherited from
|
|
185
189
|
|
|
@@ -191,7 +195,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:77](https://github.com/isdk/
|
|
|
191
195
|
|
|
192
196
|
> `optional` **http**: `object`
|
|
193
197
|
|
|
194
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:
|
|
198
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:114](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/types.ts#L114)
|
|
195
199
|
|
|
196
200
|
#### body?
|
|
197
201
|
|
|
@@ -211,7 +215,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:113](https://github.com/isdk
|
|
|
211
215
|
|
|
212
216
|
> **id**: `string`
|
|
213
217
|
|
|
214
|
-
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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/context.ts#L77)
|
|
215
219
|
|
|
216
220
|
Unique identifier for the session or request batch.
|
|
217
221
|
|
|
@@ -225,7 +229,7 @@ Unique identifier for the session or request batch.
|
|
|
225
229
|
|
|
226
230
|
> `optional` **ignoreSslErrors**: `boolean`
|
|
227
231
|
|
|
228
|
-
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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/types.ts#L99)
|
|
229
233
|
|
|
230
234
|
#### Inherited from
|
|
231
235
|
|
|
@@ -237,7 +241,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:99](https://github.com/isdk/
|
|
|
237
241
|
|
|
238
242
|
> **internal**: `FetchContextInteralState`
|
|
239
243
|
|
|
240
|
-
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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/context.ts#L149)
|
|
241
245
|
|
|
242
246
|
Internal state for engine and lifecycle management.
|
|
243
247
|
|
|
@@ -251,7 +255,7 @@ Internal state for engine and lifecycle management.
|
|
|
251
255
|
|
|
252
256
|
> `optional` **lastResponse**: [`FetchResponse`](FetchResponse.md)
|
|
253
257
|
|
|
254
|
-
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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/context.ts#L90)
|
|
255
259
|
|
|
256
260
|
The standardized response object from the most recent navigation.
|
|
257
261
|
|
|
@@ -265,7 +269,7 @@ The standardized response object from the most recent navigation.
|
|
|
265
269
|
|
|
266
270
|
> `optional` **lastResult**: [`FetchActionResult`](FetchActionResult.md)\<[`FetchReturnType`](../type-aliases/FetchReturnType.md)\>
|
|
267
271
|
|
|
268
|
-
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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/context.ts#L94)
|
|
269
273
|
|
|
270
274
|
The result object from the most recent action execution.
|
|
271
275
|
|
|
@@ -279,7 +283,7 @@ The result object from the most recent action execution.
|
|
|
279
283
|
|
|
280
284
|
> `optional` **maxConcurrency**: `number`
|
|
281
285
|
|
|
282
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:
|
|
286
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:121](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/types.ts#L121)
|
|
283
287
|
|
|
284
288
|
#### Inherited from
|
|
285
289
|
|
|
@@ -291,7 +295,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:120](https://github.com/isdk
|
|
|
291
295
|
|
|
292
296
|
> `optional` **maxRequestsPerMinute**: `number`
|
|
293
297
|
|
|
294
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:
|
|
298
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:122](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/types.ts#L122)
|
|
295
299
|
|
|
296
300
|
#### Inherited from
|
|
297
301
|
|
|
@@ -303,7 +307,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:121](https://github.com/isdk
|
|
|
303
307
|
|
|
304
308
|
> `optional` **output**: `object`
|
|
305
309
|
|
|
306
|
-
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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/types.ts#L84)
|
|
307
311
|
|
|
308
312
|
#### cookies?
|
|
309
313
|
|
|
@@ -323,7 +327,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:84](https://github.com/isdk/
|
|
|
323
327
|
|
|
324
328
|
> **outputs**: `Record`\<`string`, `any`\>
|
|
325
329
|
|
|
326
|
-
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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/context.ts#L120)
|
|
327
331
|
|
|
328
332
|
A shared key-value store for storing data extracted from pages or
|
|
329
333
|
metadata generated during action execution.
|
|
@@ -334,7 +338,7 @@ metadata generated during action execution.
|
|
|
334
338
|
|
|
335
339
|
> `optional` **overrideSessionState**: `boolean`
|
|
336
340
|
|
|
337
|
-
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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/types.ts#L81)
|
|
338
342
|
|
|
339
343
|
#### Inherited from
|
|
340
344
|
|
|
@@ -346,7 +350,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:81](https://github.com/isdk/
|
|
|
346
350
|
|
|
347
351
|
> `optional` **proxy**: `string` \| `string`[]
|
|
348
352
|
|
|
349
|
-
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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/types.ts#L89)
|
|
350
354
|
|
|
351
355
|
#### Inherited from
|
|
352
356
|
|
|
@@ -358,7 +362,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:89](https://github.com/isdk/
|
|
|
358
362
|
|
|
359
363
|
> `optional` **requestHandlerTimeoutSecs**: `number`
|
|
360
364
|
|
|
361
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:
|
|
365
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:120](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/types.ts#L120)
|
|
362
366
|
|
|
363
367
|
#### Inherited from
|
|
364
368
|
|
|
@@ -370,7 +374,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:119](https://github.com/isdk
|
|
|
370
374
|
|
|
371
375
|
> `optional` **retries**: `number`
|
|
372
376
|
|
|
373
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:
|
|
377
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:124](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/types.ts#L124)
|
|
374
378
|
|
|
375
379
|
#### Inherited from
|
|
376
380
|
|
|
@@ -382,7 +386,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:123](https://github.com/isdk
|
|
|
382
386
|
|
|
383
387
|
> `optional` **sessionPoolOptions**: `SessionPoolOptions`
|
|
384
388
|
|
|
385
|
-
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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/types.ts#L80)
|
|
386
390
|
|
|
387
391
|
#### Inherited from
|
|
388
392
|
|
|
@@ -394,7 +398,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:80](https://github.com/isdk/
|
|
|
394
398
|
|
|
395
399
|
> `optional` **sessionState**: `any`
|
|
396
400
|
|
|
397
|
-
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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/types.ts#L79)
|
|
398
402
|
|
|
399
403
|
#### Inherited from
|
|
400
404
|
|
|
@@ -406,7 +410,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:79](https://github.com/isdk/
|
|
|
406
410
|
|
|
407
411
|
> `optional` **sites**: [`FetchSite`](FetchSite.md)[]
|
|
408
412
|
|
|
409
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:
|
|
413
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:126](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/types.ts#L126)
|
|
410
414
|
|
|
411
415
|
#### Inherited from
|
|
412
416
|
|
|
@@ -418,7 +422,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:125](https://github.com/isdk
|
|
|
418
422
|
|
|
419
423
|
> `optional` **storage**: [`StorageOptions`](StorageOptions.md)
|
|
420
424
|
|
|
421
|
-
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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/types.ts#L96)
|
|
422
426
|
|
|
423
427
|
Storage configuration for session isolation and persistence.
|
|
424
428
|
|
|
@@ -432,7 +436,7 @@ Storage configuration for session isolation and persistence.
|
|
|
432
436
|
|
|
433
437
|
> `optional` **throwHttpErrors**: `boolean`
|
|
434
438
|
|
|
435
|
-
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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/types.ts#L82)
|
|
436
440
|
|
|
437
441
|
#### Inherited from
|
|
438
442
|
|
|
@@ -444,7 +448,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:82](https://github.com/isdk/
|
|
|
444
448
|
|
|
445
449
|
> `optional` **timeoutMs**: `number`
|
|
446
450
|
|
|
447
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:
|
|
451
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:119](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/types.ts#L119)
|
|
448
452
|
|
|
449
453
|
#### Inherited from
|
|
450
454
|
|
|
@@ -456,7 +460,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:118](https://github.com/isdk
|
|
|
456
460
|
|
|
457
461
|
> `optional` **url**: `string`
|
|
458
462
|
|
|
459
|
-
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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/context.ts#L81)
|
|
460
464
|
|
|
461
465
|
The target URL for the next navigation, if specified.
|
|
462
466
|
|
|
@@ -470,7 +474,7 @@ The target URL for the next navigation, if specified.
|
|
|
470
474
|
|
|
471
475
|
> `optional` **useSiteRegistry**: `boolean`
|
|
472
476
|
|
|
473
|
-
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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/types.ts#L73)
|
|
474
478
|
|
|
475
479
|
#### Inherited from
|
|
476
480
|
|
|
@@ -482,7 +486,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:73](https://github.com/isdk/
|
|
|
482
486
|
|
|
483
487
|
> **action**\<`R`\>(`name`, `params?`, `options?`): `Promise`\<[`FetchActionResult`](FetchActionResult.md)\<`R`\>\>
|
|
484
488
|
|
|
485
|
-
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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/context.ts#L140)
|
|
486
490
|
|
|
487
491
|
Convenience method to execute an action by its registered name or ID.
|
|
488
492
|
|
|
@@ -524,7 +528,7 @@ A promise that resolves to the action's result.
|
|
|
524
528
|
|
|
525
529
|
> **execute**\<`R`\>(`actionOptions`): `Promise`\<[`FetchActionResult`](FetchActionResult.md)\<`R`\>\>
|
|
526
530
|
|
|
527
|
-
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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/context.ts#L128)
|
|
528
532
|
|
|
529
533
|
Executes a FetchAction within the current context.
|
|
530
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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/types.ts#L101)
|
|
57
57
|
|
|
58
58
|
#### engine?
|
|
59
59
|
|
|
@@ -68,6 +68,10 @@ Defined in: [packages/web-fetcher/src/core/types.ts:101](https://github.com/isdk
|
|
|
68
68
|
|
|
69
69
|
> `optional` **headless**: `boolean`
|
|
70
70
|
|
|
71
|
+
#### launchOptions?
|
|
72
|
+
|
|
73
|
+
> `optional` **launchOptions**: `Record`\<`string`, `any`\>
|
|
74
|
+
|
|
71
75
|
#### waitUntil?
|
|
72
76
|
|
|
73
77
|
> `optional` **waitUntil**: `"load"` \| `"domcontentloaded"` \| `"networkidle"` \| `"commit"`
|
|
@@ -82,7 +86,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:101](https://github.com/isdk
|
|
|
82
86
|
|
|
83
87
|
> `optional` **cookies**: [`Cookie`](Cookie.md)[]
|
|
84
88
|
|
|
85
|
-
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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/types.ts#L78)
|
|
86
90
|
|
|
87
91
|
#### Inherited from
|
|
88
92
|
|
|
@@ -92,9 +96,9 @@ Defined in: [packages/web-fetcher/src/core/types.ts:78](https://github.com/isdk/
|
|
|
92
96
|
|
|
93
97
|
### debug?
|
|
94
98
|
|
|
95
|
-
> `optional` **debug**: `boolean`
|
|
99
|
+
> `optional` **debug**: `string` \| `boolean` \| `string`[]
|
|
96
100
|
|
|
97
|
-
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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/types.ts#L75)
|
|
98
102
|
|
|
99
103
|
#### Inherited from
|
|
100
104
|
|
|
@@ -106,7 +110,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:75](https://github.com/isdk/
|
|
|
106
110
|
|
|
107
111
|
> `optional` **delayBetweenRequestsMs**: `number`
|
|
108
112
|
|
|
109
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:
|
|
113
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:123](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/types.ts#L123)
|
|
110
114
|
|
|
111
115
|
#### Inherited from
|
|
112
116
|
|
|
@@ -118,7 +122,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:122](https://github.com/isdk
|
|
|
118
122
|
|
|
119
123
|
> `optional` **enableSmart**: `boolean`
|
|
120
124
|
|
|
121
|
-
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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/types.ts#L72)
|
|
122
126
|
|
|
123
127
|
#### Inherited from
|
|
124
128
|
|
|
@@ -130,7 +134,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:72](https://github.com/isdk/
|
|
|
130
134
|
|
|
131
135
|
> `optional` **engine**: `string`
|
|
132
136
|
|
|
133
|
-
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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/types.ts#L71)
|
|
134
138
|
|
|
135
139
|
抓取模式
|
|
136
140
|
|
|
@@ -148,7 +152,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:71](https://github.com/isdk/
|
|
|
148
152
|
|
|
149
153
|
> `optional` **finalUrl**: `string`
|
|
150
154
|
|
|
151
|
-
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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/context.ts#L85)
|
|
152
156
|
|
|
153
157
|
The final URL after all redirects have been followed.
|
|
154
158
|
|
|
@@ -158,7 +162,7 @@ The final URL after all redirects have been followed.
|
|
|
158
162
|
|
|
159
163
|
> `optional` **headers**: `Record`\<`string`, `string`\>
|
|
160
164
|
|
|
161
|
-
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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/types.ts#L77)
|
|
162
166
|
|
|
163
167
|
#### Inherited from
|
|
164
168
|
|
|
@@ -170,7 +174,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:77](https://github.com/isdk/
|
|
|
170
174
|
|
|
171
175
|
> `optional` **http**: `object`
|
|
172
176
|
|
|
173
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:
|
|
177
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:114](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/types.ts#L114)
|
|
174
178
|
|
|
175
179
|
#### body?
|
|
176
180
|
|
|
@@ -190,7 +194,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:113](https://github.com/isdk
|
|
|
190
194
|
|
|
191
195
|
> **id**: `string`
|
|
192
196
|
|
|
193
|
-
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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/context.ts#L77)
|
|
194
198
|
|
|
195
199
|
Unique identifier for the session or request batch.
|
|
196
200
|
|
|
@@ -200,7 +204,7 @@ Unique identifier for the session or request batch.
|
|
|
200
204
|
|
|
201
205
|
> `optional` **ignoreSslErrors**: `boolean`
|
|
202
206
|
|
|
203
|
-
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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/types.ts#L99)
|
|
204
208
|
|
|
205
209
|
#### Inherited from
|
|
206
210
|
|
|
@@ -212,7 +216,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:99](https://github.com/isdk/
|
|
|
212
216
|
|
|
213
217
|
> **internal**: `BaseFetchContextInteralState`
|
|
214
218
|
|
|
215
|
-
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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/context.ts#L99)
|
|
216
220
|
|
|
217
221
|
Engine-specific internal state.
|
|
218
222
|
|
|
@@ -222,7 +226,7 @@ Engine-specific internal state.
|
|
|
222
226
|
|
|
223
227
|
> `optional` **lastResponse**: [`FetchResponse`](FetchResponse.md)
|
|
224
228
|
|
|
225
|
-
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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/context.ts#L90)
|
|
226
230
|
|
|
227
231
|
The standardized response object from the most recent navigation.
|
|
228
232
|
|
|
@@ -232,7 +236,7 @@ The standardized response object from the most recent navigation.
|
|
|
232
236
|
|
|
233
237
|
> `optional` **lastResult**: [`FetchActionResult`](FetchActionResult.md)\<[`FetchReturnType`](../type-aliases/FetchReturnType.md)\>
|
|
234
238
|
|
|
235
|
-
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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/context.ts#L94)
|
|
236
240
|
|
|
237
241
|
The result object from the most recent action execution.
|
|
238
242
|
|
|
@@ -242,7 +246,7 @@ The result object from the most recent action execution.
|
|
|
242
246
|
|
|
243
247
|
> `optional` **maxConcurrency**: `number`
|
|
244
248
|
|
|
245
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:
|
|
249
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:121](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/types.ts#L121)
|
|
246
250
|
|
|
247
251
|
#### Inherited from
|
|
248
252
|
|
|
@@ -254,7 +258,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:120](https://github.com/isdk
|
|
|
254
258
|
|
|
255
259
|
> `optional` **maxRequestsPerMinute**: `number`
|
|
256
260
|
|
|
257
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:
|
|
261
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:122](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/types.ts#L122)
|
|
258
262
|
|
|
259
263
|
#### Inherited from
|
|
260
264
|
|
|
@@ -266,7 +270,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:121](https://github.com/isdk
|
|
|
266
270
|
|
|
267
271
|
> `optional` **output**: `object`
|
|
268
272
|
|
|
269
|
-
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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/types.ts#L84)
|
|
270
274
|
|
|
271
275
|
#### cookies?
|
|
272
276
|
|
|
@@ -286,7 +290,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:84](https://github.com/isdk/
|
|
|
286
290
|
|
|
287
291
|
> `optional` **overrideSessionState**: `boolean`
|
|
288
292
|
|
|
289
|
-
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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/types.ts#L81)
|
|
290
294
|
|
|
291
295
|
#### Inherited from
|
|
292
296
|
|
|
@@ -298,7 +302,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:81](https://github.com/isdk/
|
|
|
298
302
|
|
|
299
303
|
> `optional` **proxy**: `string` \| `string`[]
|
|
300
304
|
|
|
301
|
-
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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/types.ts#L89)
|
|
302
306
|
|
|
303
307
|
#### Inherited from
|
|
304
308
|
|
|
@@ -310,7 +314,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:89](https://github.com/isdk/
|
|
|
310
314
|
|
|
311
315
|
> `optional` **requestHandlerTimeoutSecs**: `number`
|
|
312
316
|
|
|
313
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:
|
|
317
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:120](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/types.ts#L120)
|
|
314
318
|
|
|
315
319
|
#### Inherited from
|
|
316
320
|
|
|
@@ -322,7 +326,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:119](https://github.com/isdk
|
|
|
322
326
|
|
|
323
327
|
> `optional` **retries**: `number`
|
|
324
328
|
|
|
325
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:
|
|
329
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:124](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/types.ts#L124)
|
|
326
330
|
|
|
327
331
|
#### Inherited from
|
|
328
332
|
|
|
@@ -334,7 +338,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:123](https://github.com/isdk
|
|
|
334
338
|
|
|
335
339
|
> `optional` **sessionPoolOptions**: `SessionPoolOptions`
|
|
336
340
|
|
|
337
|
-
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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/types.ts#L80)
|
|
338
342
|
|
|
339
343
|
#### Inherited from
|
|
340
344
|
|
|
@@ -346,7 +350,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:80](https://github.com/isdk/
|
|
|
346
350
|
|
|
347
351
|
> `optional` **sessionState**: `any`
|
|
348
352
|
|
|
349
|
-
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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/types.ts#L79)
|
|
350
354
|
|
|
351
355
|
#### Inherited from
|
|
352
356
|
|
|
@@ -358,7 +362,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:79](https://github.com/isdk/
|
|
|
358
362
|
|
|
359
363
|
> `optional` **sites**: [`FetchSite`](FetchSite.md)[]
|
|
360
364
|
|
|
361
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:
|
|
365
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:126](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/types.ts#L126)
|
|
362
366
|
|
|
363
367
|
#### Inherited from
|
|
364
368
|
|
|
@@ -370,7 +374,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:125](https://github.com/isdk
|
|
|
370
374
|
|
|
371
375
|
> `optional` **storage**: [`StorageOptions`](StorageOptions.md)
|
|
372
376
|
|
|
373
|
-
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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/types.ts#L96)
|
|
374
378
|
|
|
375
379
|
Storage configuration for session isolation and persistence.
|
|
376
380
|
|
|
@@ -384,7 +388,7 @@ Storage configuration for session isolation and persistence.
|
|
|
384
388
|
|
|
385
389
|
> `optional` **throwHttpErrors**: `boolean`
|
|
386
390
|
|
|
387
|
-
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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/types.ts#L82)
|
|
388
392
|
|
|
389
393
|
#### Inherited from
|
|
390
394
|
|
|
@@ -396,7 +400,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:82](https://github.com/isdk/
|
|
|
396
400
|
|
|
397
401
|
> `optional` **timeoutMs**: `number`
|
|
398
402
|
|
|
399
|
-
Defined in: [packages/web-fetcher/src/core/types.ts:
|
|
403
|
+
Defined in: [packages/web-fetcher/src/core/types.ts:119](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/types.ts#L119)
|
|
400
404
|
|
|
401
405
|
#### Inherited from
|
|
402
406
|
|
|
@@ -408,7 +412,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:118](https://github.com/isdk
|
|
|
408
412
|
|
|
409
413
|
> `optional` **url**: `string`
|
|
410
414
|
|
|
411
|
-
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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/context.ts#L81)
|
|
412
416
|
|
|
413
417
|
The target URL for the next navigation, if specified.
|
|
414
418
|
|
|
@@ -422,7 +426,7 @@ The target URL for the next navigation, if specified.
|
|
|
422
426
|
|
|
423
427
|
> `optional` **useSiteRegistry**: `boolean`
|
|
424
428
|
|
|
425
|
-
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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/types.ts#L73)
|
|
426
430
|
|
|
427
431
|
#### Inherited from
|
|
428
432
|
|