@isdk/web-fetcher 0.2.11 → 0.2.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (61) hide show
  1. package/README.action.cn.md +81 -20
  2. package/README.action.md +81 -4
  3. package/README.engine.cn.md +28 -8
  4. package/README.engine.md +28 -8
  5. package/dist/index.d.mts +405 -10
  6. package/dist/index.d.ts +405 -10
  7. package/dist/index.js +1 -1
  8. package/dist/index.mjs +1 -1
  9. package/docs/_media/README.action.md +81 -4
  10. package/docs/_media/README.engine.md +28 -8
  11. package/docs/classes/CheerioFetchEngine.md +354 -67
  12. package/docs/classes/ClickAction.md +23 -23
  13. package/docs/classes/ExtractAction.md +23 -23
  14. package/docs/classes/FetchAction.md +23 -23
  15. package/docs/classes/FetchEngine.md +314 -65
  16. package/docs/classes/FetchSession.md +118 -21
  17. package/docs/classes/FillAction.md +23 -23
  18. package/docs/classes/GetContentAction.md +23 -23
  19. package/docs/classes/GotoAction.md +23 -23
  20. package/docs/classes/PauseAction.md +23 -23
  21. package/docs/classes/PlaywrightFetchEngine.md +339 -66
  22. package/docs/classes/SubmitAction.md +23 -23
  23. package/docs/classes/WaitForAction.md +23 -23
  24. package/docs/classes/WebFetcher.md +53 -5
  25. package/docs/enumerations/FetchActionResultStatus.md +4 -4
  26. package/docs/functions/fetchWeb.md +2 -2
  27. package/docs/interfaces/BaseFetchActionProperties.md +19 -11
  28. package/docs/interfaces/BaseFetchCollectorActionProperties.md +27 -15
  29. package/docs/interfaces/BaseFetcherProperties.md +27 -27
  30. package/docs/interfaces/DispatchedEngineAction.md +4 -4
  31. package/docs/interfaces/ExtractActionProperties.md +23 -11
  32. package/docs/interfaces/FetchActionInContext.md +32 -15
  33. package/docs/interfaces/FetchActionProperties.md +24 -12
  34. package/docs/interfaces/FetchActionResult.md +6 -6
  35. package/docs/interfaces/FetchContext.md +80 -37
  36. package/docs/interfaces/FetchEngineContext.md +51 -32
  37. package/docs/interfaces/FetchMetadata.md +5 -5
  38. package/docs/interfaces/FetchResponse.md +14 -14
  39. package/docs/interfaces/FetchReturnTypeRegistry.md +7 -7
  40. package/docs/interfaces/FetchSite.md +30 -30
  41. package/docs/interfaces/FetcherOptions.md +29 -29
  42. package/docs/interfaces/GotoActionOptions.md +6 -6
  43. package/docs/interfaces/PendingEngineRequest.md +3 -3
  44. package/docs/interfaces/StorageOptions.md +5 -5
  45. package/docs/interfaces/SubmitActionOptions.md +2 -2
  46. package/docs/interfaces/WaitForActionOptions.md +5 -5
  47. package/docs/type-aliases/BaseFetchActionOptions.md +1 -1
  48. package/docs/type-aliases/BaseFetchCollectorOptions.md +1 -1
  49. package/docs/type-aliases/BrowserEngine.md +1 -1
  50. package/docs/type-aliases/FetchActionCapabilities.md +1 -1
  51. package/docs/type-aliases/FetchActionCapabilityMode.md +1 -1
  52. package/docs/type-aliases/FetchActionOptions.md +1 -1
  53. package/docs/type-aliases/FetchEngineAction.md +1 -1
  54. package/docs/type-aliases/FetchEngineType.md +1 -1
  55. package/docs/type-aliases/FetchReturnType.md +1 -1
  56. package/docs/type-aliases/FetchReturnTypeFor.md +1 -1
  57. package/docs/type-aliases/OnFetchPauseCallback.md +1 -1
  58. package/docs/type-aliases/ResourceType.md +1 -1
  59. package/docs/variables/DefaultFetcherProperties.md +1 -1
  60. package/docs/variables/FetcherOptionKeys.md +1 -1
  61. package/package.json +7 -4
@@ -6,7 +6,7 @@
6
6
 
7
7
  # Interface: BaseFetchActionProperties
8
8
 
9
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:44](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/action/fetch-action.ts#L44)
9
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:46](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/action/fetch-action.ts#L46)
10
10
 
11
11
  ## Extended by
12
12
 
@@ -24,7 +24,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:44](https://github.
24
24
 
25
25
  > `optional` **action**: `string` \| [`FetchAction`](../classes/FetchAction.md)
26
26
 
27
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:47](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/action/fetch-action.ts#L47)
27
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:49](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/action/fetch-action.ts#L49)
28
28
 
29
29
  ***
30
30
 
@@ -32,7 +32,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:47](https://github.
32
32
 
33
33
  > `optional` **args**: `any`
34
34
 
35
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:49](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/action/fetch-action.ts#L49)
35
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:52](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/action/fetch-action.ts#L52)
36
36
 
37
37
  ***
38
38
 
@@ -40,7 +40,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:49](https://github.
40
40
 
41
41
  > `optional` **failOnError**: `boolean`
42
42
 
43
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:54](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/action/fetch-action.ts#L54)
43
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:57](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/action/fetch-action.ts#L57)
44
44
 
45
45
  ***
46
46
 
@@ -48,7 +48,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:54](https://github.
48
48
 
49
49
  > `optional` **failOnTimeout**: `boolean`
50
50
 
51
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:56](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/action/fetch-action.ts#L56)
51
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:59](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/action/fetch-action.ts#L59)
52
52
 
53
53
  ***
54
54
 
@@ -56,7 +56,15 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:56](https://github.
56
56
 
57
57
  > `optional` **id**: `string`
58
58
 
59
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:45](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/action/fetch-action.ts#L45)
59
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:47](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/action/fetch-action.ts#L47)
60
+
61
+ ***
62
+
63
+ ### index?
64
+
65
+ > `optional` **index**: `number`
66
+
67
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:50](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/action/fetch-action.ts#L50)
60
68
 
61
69
  ***
62
70
 
@@ -64,7 +72,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:45](https://github.
64
72
 
65
73
  > `optional` **maxRetries**: `number`
66
74
 
67
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:58](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/action/fetch-action.ts#L58)
75
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:61](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/action/fetch-action.ts#L61)
68
76
 
69
77
  ***
70
78
 
@@ -72,7 +80,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:58](https://github.
72
80
 
73
81
  > `optional` **name**: `string`
74
82
 
75
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:46](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/action/fetch-action.ts#L46)
83
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:48](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/action/fetch-action.ts#L48)
76
84
 
77
85
  ***
78
86
 
@@ -80,7 +88,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:46](https://github.
80
88
 
81
89
  > `optional` **params**: `any`
82
90
 
83
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:48](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/action/fetch-action.ts#L48)
91
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:51](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/action/fetch-action.ts#L51)
84
92
 
85
93
  ***
86
94
 
@@ -88,7 +96,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:48](https://github.
88
96
 
89
97
  > `optional` **storeAs**: `string`
90
98
 
91
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:51](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/action/fetch-action.ts#L51)
99
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:54](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/action/fetch-action.ts#L54)
92
100
 
93
101
  ***
94
102
 
@@ -96,4 +104,4 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:51](https://github.
96
104
 
97
105
  > `optional` **timeoutMs**: `number`
98
106
 
99
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:57](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/action/fetch-action.ts#L57)
107
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:60](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/action/fetch-action.ts#L60)
@@ -6,7 +6,7 @@
6
6
 
7
7
  # Interface: BaseFetchCollectorActionProperties
8
8
 
9
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:63](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/action/fetch-action.ts#L63)
9
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:69](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/action/fetch-action.ts#L69)
10
10
 
11
11
  ## Extends
12
12
 
@@ -22,7 +22,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:63](https://github.
22
22
 
23
23
  > `optional` **action**: `string` \| [`FetchAction`](../classes/FetchAction.md)
24
24
 
25
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:47](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/action/fetch-action.ts#L47)
25
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:49](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/action/fetch-action.ts#L49)
26
26
 
27
27
  #### Inherited from
28
28
 
@@ -34,7 +34,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:47](https://github.
34
34
 
35
35
  > `optional` **activateOn**: `string` \| `RegExp` \| (`string` \| `RegExp`)[]
36
36
 
37
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:65](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/action/fetch-action.ts#L65)
37
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:72](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/action/fetch-action.ts#L72)
38
38
 
39
39
  ***
40
40
 
@@ -42,7 +42,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:65](https://github.
42
42
 
43
43
  > `optional` **args**: `any`
44
44
 
45
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:49](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/action/fetch-action.ts#L49)
45
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:52](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/action/fetch-action.ts#L52)
46
46
 
47
47
  #### Inherited from
48
48
 
@@ -54,7 +54,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:49](https://github.
54
54
 
55
55
  > `optional` **background**: `boolean`
56
56
 
57
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:71](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/action/fetch-action.ts#L71)
57
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:78](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/action/fetch-action.ts#L78)
58
58
 
59
59
  ***
60
60
 
@@ -62,7 +62,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:71](https://github.
62
62
 
63
63
  > `optional` **collectOn**: `string` \| `RegExp` \| (`string` \| `RegExp`)[]
64
64
 
65
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:69](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/action/fetch-action.ts#L69)
65
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:76](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/action/fetch-action.ts#L76)
66
66
 
67
67
  ***
68
68
 
@@ -70,7 +70,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:69](https://github.
70
70
 
71
71
  > `optional` **deactivateOn**: `string` \| `RegExp` \| (`string` \| `RegExp`)[]
72
72
 
73
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:67](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/action/fetch-action.ts#L67)
73
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:74](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/action/fetch-action.ts#L74)
74
74
 
75
75
  ***
76
76
 
@@ -78,7 +78,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:67](https://github.
78
78
 
79
79
  > `optional` **failOnError**: `boolean`
80
80
 
81
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:54](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/action/fetch-action.ts#L54)
81
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:57](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/action/fetch-action.ts#L57)
82
82
 
83
83
  #### Inherited from
84
84
 
@@ -90,7 +90,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:54](https://github.
90
90
 
91
91
  > `optional` **failOnTimeout**: `boolean`
92
92
 
93
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:56](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/action/fetch-action.ts#L56)
93
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:59](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/action/fetch-action.ts#L59)
94
94
 
95
95
  #### Inherited from
96
96
 
@@ -102,7 +102,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:56](https://github.
102
102
 
103
103
  > `optional` **id**: `string`
104
104
 
105
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:45](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/action/fetch-action.ts#L45)
105
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:47](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/action/fetch-action.ts#L47)
106
106
 
107
107
  #### Inherited from
108
108
 
@@ -110,11 +110,23 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:45](https://github.
110
110
 
111
111
  ***
112
112
 
113
+ ### index?
114
+
115
+ > `optional` **index**: `number`
116
+
117
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:50](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/action/fetch-action.ts#L50)
118
+
119
+ #### Inherited from
120
+
121
+ [`BaseFetchActionProperties`](BaseFetchActionProperties.md).[`index`](BaseFetchActionProperties.md#index)
122
+
123
+ ***
124
+
113
125
  ### maxRetries?
114
126
 
115
127
  > `optional` **maxRetries**: `number`
116
128
 
117
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:58](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/action/fetch-action.ts#L58)
129
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:61](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/action/fetch-action.ts#L61)
118
130
 
119
131
  #### Inherited from
120
132
 
@@ -126,7 +138,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:58](https://github.
126
138
 
127
139
  > `optional` **name**: `string`
128
140
 
129
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:46](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/action/fetch-action.ts#L46)
141
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:48](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/action/fetch-action.ts#L48)
130
142
 
131
143
  #### Inherited from
132
144
 
@@ -138,7 +150,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:46](https://github.
138
150
 
139
151
  > `optional` **params**: `any`
140
152
 
141
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:48](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/action/fetch-action.ts#L48)
153
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:51](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/action/fetch-action.ts#L51)
142
154
 
143
155
  #### Inherited from
144
156
 
@@ -150,7 +162,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:48](https://github.
150
162
 
151
163
  > `optional` **storeAs**: `string`
152
164
 
153
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:51](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/action/fetch-action.ts#L51)
165
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:54](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/action/fetch-action.ts#L54)
154
166
 
155
167
  #### Inherited from
156
168
 
@@ -162,7 +174,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:51](https://github.
162
174
 
163
175
  > `optional` **timeoutMs**: `number`
164
176
 
165
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:57](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/action/fetch-action.ts#L57)
177
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:60](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/action/fetch-action.ts#L60)
166
178
 
167
179
  #### Inherited from
168
180
 
@@ -6,7 +6,7 @@
6
6
 
7
7
  # Interface: BaseFetcherProperties
8
8
 
9
- Defined in: [packages/web-fetcher/src/core/types.ts:57](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/core/types.ts#L57)
9
+ Defined in: [packages/web-fetcher/src/core/types.ts:63](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/core/types.ts#L63)
10
10
 
11
11
  ## Extended by
12
12
 
@@ -20,7 +20,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:57](https://github.com/isdk/
20
20
 
21
21
  > `optional` **antibot**: `boolean`
22
22
 
23
- Defined in: [packages/web-fetcher/src/core/types.ts:68](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/core/types.ts#L68)
23
+ Defined in: [packages/web-fetcher/src/core/types.ts:74](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/core/types.ts#L74)
24
24
 
25
25
  ***
26
26
 
@@ -28,7 +28,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:68](https://github.com/isdk/
28
28
 
29
29
  > `optional` **blockResources**: `string`[]
30
30
 
31
- Defined in: [packages/web-fetcher/src/core/types.ts:85](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/core/types.ts#L85)
31
+ Defined in: [packages/web-fetcher/src/core/types.ts:91](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/core/types.ts#L91)
32
32
 
33
33
  ***
34
34
 
@@ -36,7 +36,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:85](https://github.com/isdk/
36
36
 
37
37
  > `optional` **browser**: `object`
38
38
 
39
- Defined in: [packages/web-fetcher/src/core/types.ts:95](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/core/types.ts#L95)
39
+ Defined in: [packages/web-fetcher/src/core/types.ts:101](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/core/types.ts#L101)
40
40
 
41
41
  #### engine?
42
42
 
@@ -61,7 +61,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:95](https://github.com/isdk/
61
61
 
62
62
  > `optional` **cookies**: [`Cookie`](Cookie.md)[]
63
63
 
64
- Defined in: [packages/web-fetcher/src/core/types.ts:72](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/core/types.ts#L72)
64
+ Defined in: [packages/web-fetcher/src/core/types.ts:78](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/core/types.ts#L78)
65
65
 
66
66
  ***
67
67
 
@@ -69,7 +69,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:72](https://github.com/isdk/
69
69
 
70
70
  > `optional` **debug**: `boolean`
71
71
 
72
- Defined in: [packages/web-fetcher/src/core/types.ts:69](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/core/types.ts#L69)
72
+ Defined in: [packages/web-fetcher/src/core/types.ts:75](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/core/types.ts#L75)
73
73
 
74
74
  ***
75
75
 
@@ -77,7 +77,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:69](https://github.com/isdk/
77
77
 
78
78
  > `optional` **delayBetweenRequestsMs**: `number`
79
79
 
80
- Defined in: [packages/web-fetcher/src/core/types.ts:116](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/core/types.ts#L116)
80
+ Defined in: [packages/web-fetcher/src/core/types.ts:122](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/core/types.ts#L122)
81
81
 
82
82
  ***
83
83
 
@@ -85,7 +85,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:116](https://github.com/isdk
85
85
 
86
86
  > `optional` **enableSmart**: `boolean`
87
87
 
88
- Defined in: [packages/web-fetcher/src/core/types.ts:66](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/core/types.ts#L66)
88
+ Defined in: [packages/web-fetcher/src/core/types.ts:72](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/core/types.ts#L72)
89
89
 
90
90
  ***
91
91
 
@@ -93,7 +93,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:66](https://github.com/isdk/
93
93
 
94
94
  > `optional` **engine**: `string`
95
95
 
96
- Defined in: [packages/web-fetcher/src/core/types.ts:65](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/core/types.ts#L65)
96
+ Defined in: [packages/web-fetcher/src/core/types.ts:71](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/core/types.ts#L71)
97
97
 
98
98
  抓取模式
99
99
 
@@ -107,7 +107,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:65](https://github.com/isdk/
107
107
 
108
108
  > `optional` **headers**: `Record`\<`string`, `string`\>
109
109
 
110
- Defined in: [packages/web-fetcher/src/core/types.ts:71](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/core/types.ts#L71)
110
+ Defined in: [packages/web-fetcher/src/core/types.ts:77](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/core/types.ts#L77)
111
111
 
112
112
  ***
113
113
 
@@ -115,7 +115,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:71](https://github.com/isdk/
115
115
 
116
116
  > `optional` **http**: `object`
117
117
 
118
- Defined in: [packages/web-fetcher/src/core/types.ts:107](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/core/types.ts#L107)
118
+ Defined in: [packages/web-fetcher/src/core/types.ts:113](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/core/types.ts#L113)
119
119
 
120
120
  #### body?
121
121
 
@@ -131,7 +131,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:107](https://github.com/isdk
131
131
 
132
132
  > `optional` **ignoreSslErrors**: `boolean`
133
133
 
134
- Defined in: [packages/web-fetcher/src/core/types.ts:93](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/core/types.ts#L93)
134
+ Defined in: [packages/web-fetcher/src/core/types.ts:99](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/core/types.ts#L99)
135
135
 
136
136
  ***
137
137
 
@@ -139,7 +139,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:93](https://github.com/isdk/
139
139
 
140
140
  > `optional` **maxConcurrency**: `number`
141
141
 
142
- Defined in: [packages/web-fetcher/src/core/types.ts:114](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/core/types.ts#L114)
142
+ Defined in: [packages/web-fetcher/src/core/types.ts:120](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/core/types.ts#L120)
143
143
 
144
144
  ***
145
145
 
@@ -147,7 +147,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:114](https://github.com/isdk
147
147
 
148
148
  > `optional` **maxRequestsPerMinute**: `number`
149
149
 
150
- Defined in: [packages/web-fetcher/src/core/types.ts:115](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/core/types.ts#L115)
150
+ Defined in: [packages/web-fetcher/src/core/types.ts:121](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/core/types.ts#L121)
151
151
 
152
152
  ***
153
153
 
@@ -155,7 +155,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:115](https://github.com/isdk
155
155
 
156
156
  > `optional` **output**: `object`
157
157
 
158
- Defined in: [packages/web-fetcher/src/core/types.ts:78](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/core/types.ts#L78)
158
+ Defined in: [packages/web-fetcher/src/core/types.ts:84](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/core/types.ts#L84)
159
159
 
160
160
  #### cookies?
161
161
 
@@ -171,7 +171,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:78](https://github.com/isdk/
171
171
 
172
172
  > `optional` **overrideSessionState**: `boolean`
173
173
 
174
- Defined in: [packages/web-fetcher/src/core/types.ts:75](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/core/types.ts#L75)
174
+ Defined in: [packages/web-fetcher/src/core/types.ts:81](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/core/types.ts#L81)
175
175
 
176
176
  ***
177
177
 
@@ -179,7 +179,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:75](https://github.com/isdk/
179
179
 
180
180
  > `optional` **proxy**: `string` \| `string`[]
181
181
 
182
- Defined in: [packages/web-fetcher/src/core/types.ts:83](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/core/types.ts#L83)
182
+ Defined in: [packages/web-fetcher/src/core/types.ts:89](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/core/types.ts#L89)
183
183
 
184
184
  ***
185
185
 
@@ -187,7 +187,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:83](https://github.com/isdk/
187
187
 
188
188
  > `optional` **requestHandlerTimeoutSecs**: `number`
189
189
 
190
- Defined in: [packages/web-fetcher/src/core/types.ts:113](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/core/types.ts#L113)
190
+ Defined in: [packages/web-fetcher/src/core/types.ts:119](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/core/types.ts#L119)
191
191
 
192
192
  ***
193
193
 
@@ -195,7 +195,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:113](https://github.com/isdk
195
195
 
196
196
  > `optional` **retries**: `number`
197
197
 
198
- Defined in: [packages/web-fetcher/src/core/types.ts:117](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/core/types.ts#L117)
198
+ Defined in: [packages/web-fetcher/src/core/types.ts:123](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/core/types.ts#L123)
199
199
 
200
200
  ***
201
201
 
@@ -203,7 +203,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:117](https://github.com/isdk
203
203
 
204
204
  > `optional` **sessionPoolOptions**: `SessionPoolOptions`
205
205
 
206
- Defined in: [packages/web-fetcher/src/core/types.ts:74](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/core/types.ts#L74)
206
+ Defined in: [packages/web-fetcher/src/core/types.ts:80](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/core/types.ts#L80)
207
207
 
208
208
  ***
209
209
 
@@ -211,7 +211,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:74](https://github.com/isdk/
211
211
 
212
212
  > `optional` **sessionState**: `any`
213
213
 
214
- Defined in: [packages/web-fetcher/src/core/types.ts:73](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/core/types.ts#L73)
214
+ Defined in: [packages/web-fetcher/src/core/types.ts:79](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/core/types.ts#L79)
215
215
 
216
216
  ***
217
217
 
@@ -219,7 +219,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:73](https://github.com/isdk/
219
219
 
220
220
  > `optional` **sites**: [`FetchSite`](FetchSite.md)[]
221
221
 
222
- Defined in: [packages/web-fetcher/src/core/types.ts:119](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/core/types.ts#L119)
222
+ Defined in: [packages/web-fetcher/src/core/types.ts:125](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/core/types.ts#L125)
223
223
 
224
224
  ***
225
225
 
@@ -227,7 +227,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:119](https://github.com/isdk
227
227
 
228
228
  > `optional` **storage**: [`StorageOptions`](StorageOptions.md)
229
229
 
230
- Defined in: [packages/web-fetcher/src/core/types.ts:90](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/core/types.ts#L90)
230
+ Defined in: [packages/web-fetcher/src/core/types.ts:96](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/core/types.ts#L96)
231
231
 
232
232
  Storage configuration for session isolation and persistence.
233
233
 
@@ -237,7 +237,7 @@ Storage configuration for session isolation and persistence.
237
237
 
238
238
  > `optional` **throwHttpErrors**: `boolean`
239
239
 
240
- Defined in: [packages/web-fetcher/src/core/types.ts:76](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/core/types.ts#L76)
240
+ Defined in: [packages/web-fetcher/src/core/types.ts:82](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/core/types.ts#L82)
241
241
 
242
242
  ***
243
243
 
@@ -245,7 +245,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:76](https://github.com/isdk/
245
245
 
246
246
  > `optional` **timeoutMs**: `number`
247
247
 
248
- Defined in: [packages/web-fetcher/src/core/types.ts:112](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/core/types.ts#L112)
248
+ Defined in: [packages/web-fetcher/src/core/types.ts:118](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/core/types.ts#L118)
249
249
 
250
250
  ***
251
251
 
@@ -253,7 +253,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:112](https://github.com/isdk
253
253
 
254
254
  > `optional` **url**: `string`
255
255
 
256
- Defined in: [packages/web-fetcher/src/core/types.ts:120](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/core/types.ts#L120)
256
+ Defined in: [packages/web-fetcher/src/core/types.ts:126](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/core/types.ts#L126)
257
257
 
258
258
  ***
259
259
 
@@ -261,4 +261,4 @@ Defined in: [packages/web-fetcher/src/core/types.ts:120](https://github.com/isdk
261
261
 
262
262
  > `optional` **useSiteRegistry**: `boolean`
263
263
 
264
- Defined in: [packages/web-fetcher/src/core/types.ts:67](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/core/types.ts#L67)
264
+ Defined in: [packages/web-fetcher/src/core/types.ts:73](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/core/types.ts#L73)
@@ -6,7 +6,7 @@
6
6
 
7
7
  # Interface: DispatchedEngineAction
8
8
 
9
- Defined in: [packages/web-fetcher/src/engine/base.ts:101](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/engine/base.ts#L101)
9
+ Defined in: [packages/web-fetcher/src/engine/base.ts:129](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/engine/base.ts#L129)
10
10
 
11
11
  Represents an action that has been dispatched and is awaiting execution in the active page context.
12
12
 
@@ -21,7 +21,7 @@ to handle promises while maintaining the page context validity window.
21
21
 
22
22
  > **action**: [`FetchEngineAction`](../type-aliases/FetchEngineAction.md)
23
23
 
24
- Defined in: [packages/web-fetcher/src/engine/base.ts:102](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/engine/base.ts#L102)
24
+ Defined in: [packages/web-fetcher/src/engine/base.ts:130](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/engine/base.ts#L130)
25
25
 
26
26
  ***
27
27
 
@@ -29,7 +29,7 @@ Defined in: [packages/web-fetcher/src/engine/base.ts:102](https://github.com/isd
29
29
 
30
30
  > **reject**: (`reason?`) => `void`
31
31
 
32
- Defined in: [packages/web-fetcher/src/engine/base.ts:104](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/engine/base.ts#L104)
32
+ Defined in: [packages/web-fetcher/src/engine/base.ts:132](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/engine/base.ts#L132)
33
33
 
34
34
  #### Parameters
35
35
 
@@ -47,7 +47,7 @@ Defined in: [packages/web-fetcher/src/engine/base.ts:104](https://github.com/isd
47
47
 
48
48
  > **resolve**: (`value?`) => `void`
49
49
 
50
- Defined in: [packages/web-fetcher/src/engine/base.ts:103](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/engine/base.ts#L103)
50
+ Defined in: [packages/web-fetcher/src/engine/base.ts:131](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/engine/base.ts#L131)
51
51
 
52
52
  #### Parameters
53
53
 
@@ -6,7 +6,7 @@
6
6
 
7
7
  # Interface: ExtractActionProperties
8
8
 
9
- Defined in: [packages/web-fetcher/src/action/definitions/extract.ts:5](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/action/definitions/extract.ts#L5)
9
+ Defined in: [packages/web-fetcher/src/action/definitions/extract.ts:5](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/action/definitions/extract.ts#L5)
10
10
 
11
11
  ## Extends
12
12
 
@@ -22,7 +22,7 @@ Defined in: [packages/web-fetcher/src/action/definitions/extract.ts:5](https://g
22
22
 
23
23
  > `optional` **action**: `string` \| [`FetchAction`](../classes/FetchAction.md)
24
24
 
25
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:47](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/action/fetch-action.ts#L47)
25
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:49](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/action/fetch-action.ts#L49)
26
26
 
27
27
  #### Inherited from
28
28
 
@@ -34,7 +34,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:47](https://github.
34
34
 
35
35
  > `optional` **args**: `any`
36
36
 
37
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:49](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/action/fetch-action.ts#L49)
37
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:52](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/action/fetch-action.ts#L52)
38
38
 
39
39
  #### Inherited from
40
40
 
@@ -46,7 +46,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:49](https://github.
46
46
 
47
47
  > `optional` **failOnError**: `boolean`
48
48
 
49
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:54](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/action/fetch-action.ts#L54)
49
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:57](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/action/fetch-action.ts#L57)
50
50
 
51
51
  #### Inherited from
52
52
 
@@ -58,7 +58,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:54](https://github.
58
58
 
59
59
  > `optional` **failOnTimeout**: `boolean`
60
60
 
61
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:56](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/action/fetch-action.ts#L56)
61
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:59](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/action/fetch-action.ts#L59)
62
62
 
63
63
  #### Inherited from
64
64
 
@@ -70,7 +70,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:56](https://github.
70
70
 
71
71
  > `optional` **id**: `string`
72
72
 
73
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:45](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/action/fetch-action.ts#L45)
73
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:47](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/action/fetch-action.ts#L47)
74
74
 
75
75
  #### Inherited from
76
76
 
@@ -78,11 +78,23 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:45](https://github.
78
78
 
79
79
  ***
80
80
 
81
+ ### index?
82
+
83
+ > `optional` **index**: `number`
84
+
85
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:50](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/action/fetch-action.ts#L50)
86
+
87
+ #### Inherited from
88
+
89
+ [`BaseFetchActionProperties`](BaseFetchActionProperties.md).[`index`](BaseFetchActionProperties.md#index)
90
+
91
+ ***
92
+
81
93
  ### maxRetries?
82
94
 
83
95
  > `optional` **maxRetries**: `number`
84
96
 
85
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:58](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/action/fetch-action.ts#L58)
97
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:61](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/action/fetch-action.ts#L61)
86
98
 
87
99
  #### Inherited from
88
100
 
@@ -94,7 +106,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:58](https://github.
94
106
 
95
107
  > `optional` **name**: `string`
96
108
 
97
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:46](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/action/fetch-action.ts#L46)
109
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:48](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/action/fetch-action.ts#L48)
98
110
 
99
111
  #### Inherited from
100
112
 
@@ -106,7 +118,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:46](https://github.
106
118
 
107
119
  > **params**: `ExtractSchema`
108
120
 
109
- Defined in: [packages/web-fetcher/src/action/definitions/extract.ts:6](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/action/definitions/extract.ts#L6)
121
+ Defined in: [packages/web-fetcher/src/action/definitions/extract.ts:6](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/action/definitions/extract.ts#L6)
110
122
 
111
123
  #### Overrides
112
124
 
@@ -118,7 +130,7 @@ Defined in: [packages/web-fetcher/src/action/definitions/extract.ts:6](https://g
118
130
 
119
131
  > `optional` **storeAs**: `string`
120
132
 
121
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:51](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/action/fetch-action.ts#L51)
133
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:54](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/action/fetch-action.ts#L54)
122
134
 
123
135
  #### Inherited from
124
136
 
@@ -130,7 +142,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:51](https://github.
130
142
 
131
143
  > `optional` **timeoutMs**: `number`
132
144
 
133
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:57](https://github.com/isdk/web-fetcher.js/blob/1f3a81cc4fe8a2cf40fe3f3e8030d14a75c9d27c/src/action/fetch-action.ts#L57)
145
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:60](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/action/fetch-action.ts#L60)
134
146
 
135
147
  #### Inherited from
136
148