@isdk/web-fetcher 0.2.4 → 0.2.6

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 (64) hide show
  1. package/README.action.cn.md +6 -4
  2. package/README.action.md +6 -4
  3. package/README.cn.md +13 -1
  4. package/README.engine.cn.md +1 -1
  5. package/README.engine.md +1 -1
  6. package/README.md +13 -1
  7. package/dist/index.d.mts +15 -3
  8. package/dist/index.d.ts +15 -3
  9. package/dist/index.js +1 -1
  10. package/dist/index.mjs +1 -1
  11. package/docs/README.md +13 -1
  12. package/docs/_media/README.action.md +6 -4
  13. package/docs/_media/README.cn.md +13 -1
  14. package/docs/_media/README.engine.md +1 -1
  15. package/docs/classes/CheerioFetchEngine.md +76 -57
  16. package/docs/classes/ClickAction.md +23 -23
  17. package/docs/classes/ExtractAction.md +23 -23
  18. package/docs/classes/FetchAction.md +23 -23
  19. package/docs/classes/FetchEngine.md +72 -57
  20. package/docs/classes/FetchSession.md +21 -9
  21. package/docs/classes/FillAction.md +23 -23
  22. package/docs/classes/GetContentAction.md +23 -23
  23. package/docs/classes/GotoAction.md +23 -23
  24. package/docs/classes/PauseAction.md +23 -23
  25. package/docs/classes/PlaywrightFetchEngine.md +76 -57
  26. package/docs/classes/SubmitAction.md +23 -23
  27. package/docs/classes/WaitForAction.md +23 -23
  28. package/docs/classes/WebFetcher.md +5 -5
  29. package/docs/enumerations/FetchActionResultStatus.md +4 -4
  30. package/docs/functions/fetchWeb.md +2 -2
  31. package/docs/interfaces/BaseFetchActionProperties.md +25 -9
  32. package/docs/interfaces/BaseFetchCollectorActionProperties.md +37 -13
  33. package/docs/interfaces/BaseFetcherProperties.md +22 -22
  34. package/docs/interfaces/DispatchedEngineAction.md +4 -4
  35. package/docs/interfaces/ExtractActionProperties.md +33 -9
  36. package/docs/interfaces/FetchActionInContext.md +38 -14
  37. package/docs/interfaces/FetchActionProperties.md +35 -11
  38. package/docs/interfaces/FetchActionResult.md +6 -6
  39. package/docs/interfaces/FetchContext.md +33 -33
  40. package/docs/interfaces/FetchEngineContext.md +27 -27
  41. package/docs/interfaces/FetchMetadata.md +5 -5
  42. package/docs/interfaces/FetchResponse.md +13 -13
  43. package/docs/interfaces/FetchReturnTypeRegistry.md +7 -7
  44. package/docs/interfaces/FetchSite.md +25 -25
  45. package/docs/interfaces/FetcherOptions.md +25 -25
  46. package/docs/interfaces/GotoActionOptions.md +6 -6
  47. package/docs/interfaces/PendingEngineRequest.md +3 -3
  48. package/docs/interfaces/SubmitActionOptions.md +2 -2
  49. package/docs/interfaces/WaitForActionOptions.md +5 -5
  50. package/docs/type-aliases/BaseFetchActionOptions.md +2 -2
  51. package/docs/type-aliases/BaseFetchCollectorOptions.md +2 -2
  52. package/docs/type-aliases/BrowserEngine.md +1 -1
  53. package/docs/type-aliases/FetchActionCapabilities.md +1 -1
  54. package/docs/type-aliases/FetchActionCapabilityMode.md +1 -1
  55. package/docs/type-aliases/FetchActionOptions.md +2 -2
  56. package/docs/type-aliases/FetchEngineAction.md +1 -1
  57. package/docs/type-aliases/FetchEngineType.md +1 -1
  58. package/docs/type-aliases/FetchReturnType.md +1 -1
  59. package/docs/type-aliases/FetchReturnTypeFor.md +1 -1
  60. package/docs/type-aliases/OnFetchPauseCallback.md +1 -1
  61. package/docs/type-aliases/ResourceType.md +1 -1
  62. package/docs/variables/DefaultFetcherProperties.md +1 -1
  63. package/docs/variables/FetcherOptionKeys.md +1 -1
  64. package/package.json +1 -1
@@ -6,7 +6,7 @@
6
6
 
7
7
  # Interface: BaseFetchCollectorActionProperties
8
8
 
9
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:61](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/action/fetch-action.ts#L61)
9
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:63](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/action/fetch-action.ts#L63)
10
10
 
11
11
  ## Extends
12
12
 
@@ -18,11 +18,35 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:61](https://github.
18
18
 
19
19
  ## Properties
20
20
 
21
+ ### action?
22
+
23
+ > `optional` **action**: `string` \| [`FetchAction`](../classes/FetchAction.md)
24
+
25
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:47](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/action/fetch-action.ts#L47)
26
+
27
+ #### Inherited from
28
+
29
+ [`BaseFetchActionProperties`](BaseFetchActionProperties.md).[`action`](BaseFetchActionProperties.md#action)
30
+
31
+ ***
32
+
21
33
  ### activateOn?
22
34
 
23
35
  > `optional` **activateOn**: `string` \| `RegExp` \| (`string` \| `RegExp`)[]
24
36
 
25
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:63](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/action/fetch-action.ts#L63)
37
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:65](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/action/fetch-action.ts#L65)
38
+
39
+ ***
40
+
41
+ ### args?
42
+
43
+ > `optional` **args**: `any`
44
+
45
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:49](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/action/fetch-action.ts#L49)
46
+
47
+ #### Inherited from
48
+
49
+ [`BaseFetchActionProperties`](BaseFetchActionProperties.md).[`args`](BaseFetchActionProperties.md#args)
26
50
 
27
51
  ***
28
52
 
@@ -30,7 +54,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:63](https://github.
30
54
 
31
55
  > `optional` **background**: `boolean`
32
56
 
33
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:69](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/action/fetch-action.ts#L69)
57
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:71](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/action/fetch-action.ts#L71)
34
58
 
35
59
  ***
36
60
 
@@ -38,7 +62,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:69](https://github.
38
62
 
39
63
  > `optional` **collectOn**: `string` \| `RegExp` \| (`string` \| `RegExp`)[]
40
64
 
41
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:67](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/action/fetch-action.ts#L67)
65
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:69](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/action/fetch-action.ts#L69)
42
66
 
43
67
  ***
44
68
 
@@ -46,7 +70,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:67](https://github.
46
70
 
47
71
  > `optional` **deactivateOn**: `string` \| `RegExp` \| (`string` \| `RegExp`)[]
48
72
 
49
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:65](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/action/fetch-action.ts#L65)
73
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:67](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/action/fetch-action.ts#L67)
50
74
 
51
75
  ***
52
76
 
@@ -54,7 +78,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:65](https://github.
54
78
 
55
79
  > `optional` **failOnError**: `boolean`
56
80
 
57
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:52](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/action/fetch-action.ts#L52)
81
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:54](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/action/fetch-action.ts#L54)
58
82
 
59
83
  #### Inherited from
60
84
 
@@ -66,7 +90,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:52](https://github.
66
90
 
67
91
  > `optional` **failOnTimeout**: `boolean`
68
92
 
69
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:54](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/action/fetch-action.ts#L54)
93
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:56](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/action/fetch-action.ts#L56)
70
94
 
71
95
  #### Inherited from
72
96
 
@@ -78,7 +102,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:54](https://github.
78
102
 
79
103
  > `optional` **id**: `string`
80
104
 
81
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:45](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/action/fetch-action.ts#L45)
105
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:45](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/action/fetch-action.ts#L45)
82
106
 
83
107
  #### Inherited from
84
108
 
@@ -90,7 +114,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:45](https://github.
90
114
 
91
115
  > `optional` **maxRetries**: `number`
92
116
 
93
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:56](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/action/fetch-action.ts#L56)
117
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:58](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/action/fetch-action.ts#L58)
94
118
 
95
119
  #### Inherited from
96
120
 
@@ -102,7 +126,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:56](https://github.
102
126
 
103
127
  > `optional` **name**: `string`
104
128
 
105
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:46](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/action/fetch-action.ts#L46)
129
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:46](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/action/fetch-action.ts#L46)
106
130
 
107
131
  #### Inherited from
108
132
 
@@ -114,7 +138,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:46](https://github.
114
138
 
115
139
  > `optional` **params**: `any`
116
140
 
117
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:47](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/action/fetch-action.ts#L47)
141
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:48](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/action/fetch-action.ts#L48)
118
142
 
119
143
  #### Inherited from
120
144
 
@@ -126,7 +150,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:47](https://github.
126
150
 
127
151
  > `optional` **storeAs**: `string`
128
152
 
129
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:49](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/action/fetch-action.ts#L49)
153
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:51](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/action/fetch-action.ts#L51)
130
154
 
131
155
  #### Inherited from
132
156
 
@@ -138,7 +162,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:49](https://github.
138
162
 
139
163
  > `optional` **timeoutMs**: `number`
140
164
 
141
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:55](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/action/fetch-action.ts#L55)
165
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:57](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/action/fetch-action.ts#L57)
142
166
 
143
167
  #### Inherited from
144
168
 
@@ -6,7 +6,7 @@
6
6
 
7
7
  # Interface: BaseFetcherProperties
8
8
 
9
- Defined in: [packages/web-fetcher/src/core/types.ts:26](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/core/types.ts#L26)
9
+ Defined in: [packages/web-fetcher/src/core/types.ts:26](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/core/types.ts#L26)
10
10
 
11
11
  ## Extended by
12
12
 
@@ -20,7 +20,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:26](https://github.com/isdk/
20
20
 
21
21
  > `optional` **antibot**: `boolean`
22
22
 
23
- Defined in: [packages/web-fetcher/src/core/types.ts:37](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/core/types.ts#L37)
23
+ Defined in: [packages/web-fetcher/src/core/types.ts:37](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/core/types.ts#L37)
24
24
 
25
25
  ***
26
26
 
@@ -28,7 +28,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:37](https://github.com/isdk/
28
28
 
29
29
  > `optional` **blockResources**: `string`[]
30
30
 
31
- Defined in: [packages/web-fetcher/src/core/types.ts:46](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/core/types.ts#L46)
31
+ Defined in: [packages/web-fetcher/src/core/types.ts:46](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/core/types.ts#L46)
32
32
 
33
33
  ***
34
34
 
@@ -36,7 +36,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:46](https://github.com/isdk/
36
36
 
37
37
  > `optional` **browser**: `object`
38
38
 
39
- Defined in: [packages/web-fetcher/src/core/types.ts:52](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/core/types.ts#L52)
39
+ Defined in: [packages/web-fetcher/src/core/types.ts:52](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/core/types.ts#L52)
40
40
 
41
41
  #### engine?
42
42
 
@@ -61,7 +61,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:52](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:40](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/core/types.ts#L40)
64
+ Defined in: [packages/web-fetcher/src/core/types.ts:40](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/core/types.ts#L40)
65
65
 
66
66
  ***
67
67
 
@@ -69,7 +69,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:40](https://github.com/isdk/
69
69
 
70
70
  > `optional` **delayBetweenRequestsMs**: `number`
71
71
 
72
- Defined in: [packages/web-fetcher/src/core/types.ts:73](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/core/types.ts#L73)
72
+ Defined in: [packages/web-fetcher/src/core/types.ts:73](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/core/types.ts#L73)
73
73
 
74
74
  ***
75
75
 
@@ -77,7 +77,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:73](https://github.com/isdk/
77
77
 
78
78
  > `optional` **enableSmart**: `boolean`
79
79
 
80
- Defined in: [packages/web-fetcher/src/core/types.ts:35](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/core/types.ts#L35)
80
+ Defined in: [packages/web-fetcher/src/core/types.ts:35](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/core/types.ts#L35)
81
81
 
82
82
  ***
83
83
 
@@ -85,7 +85,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:35](https://github.com/isdk/
85
85
 
86
86
  > `optional` **engine**: `string`
87
87
 
88
- Defined in: [packages/web-fetcher/src/core/types.ts:34](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/core/types.ts#L34)
88
+ Defined in: [packages/web-fetcher/src/core/types.ts:34](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/core/types.ts#L34)
89
89
 
90
90
  抓取模式
91
91
 
@@ -99,7 +99,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:34](https://github.com/isdk/
99
99
 
100
100
  > `optional` **headers**: `Record`\<`string`, `string`\>
101
101
 
102
- Defined in: [packages/web-fetcher/src/core/types.ts:39](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/core/types.ts#L39)
102
+ Defined in: [packages/web-fetcher/src/core/types.ts:39](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/core/types.ts#L39)
103
103
 
104
104
  ***
105
105
 
@@ -107,7 +107,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:39](https://github.com/isdk/
107
107
 
108
108
  > `optional` **http**: `object`
109
109
 
110
- Defined in: [packages/web-fetcher/src/core/types.ts:64](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/core/types.ts#L64)
110
+ Defined in: [packages/web-fetcher/src/core/types.ts:64](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/core/types.ts#L64)
111
111
 
112
112
  #### body?
113
113
 
@@ -123,7 +123,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:64](https://github.com/isdk/
123
123
 
124
124
  > `optional` **ignoreSslErrors**: `boolean`
125
125
 
126
- Defined in: [packages/web-fetcher/src/core/types.ts:50](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/core/types.ts#L50)
126
+ Defined in: [packages/web-fetcher/src/core/types.ts:50](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/core/types.ts#L50)
127
127
 
128
128
  ***
129
129
 
@@ -131,7 +131,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:50](https://github.com/isdk/
131
131
 
132
132
  > `optional` **maxConcurrency**: `number`
133
133
 
134
- Defined in: [packages/web-fetcher/src/core/types.ts:71](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/core/types.ts#L71)
134
+ Defined in: [packages/web-fetcher/src/core/types.ts:71](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/core/types.ts#L71)
135
135
 
136
136
  ***
137
137
 
@@ -139,7 +139,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:71](https://github.com/isdk/
139
139
 
140
140
  > `optional` **maxRequestsPerMinute**: `number`
141
141
 
142
- Defined in: [packages/web-fetcher/src/core/types.ts:72](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/core/types.ts#L72)
142
+ Defined in: [packages/web-fetcher/src/core/types.ts:72](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/core/types.ts#L72)
143
143
 
144
144
  ***
145
145
 
@@ -147,7 +147,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:72](https://github.com/isdk/
147
147
 
148
148
  > `optional` **proxy**: `string` \| `string`[]
149
149
 
150
- Defined in: [packages/web-fetcher/src/core/types.ts:44](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/core/types.ts#L44)
150
+ Defined in: [packages/web-fetcher/src/core/types.ts:44](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/core/types.ts#L44)
151
151
 
152
152
  ***
153
153
 
@@ -155,7 +155,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:44](https://github.com/isdk/
155
155
 
156
156
  > `optional` **requestHandlerTimeoutSecs**: `number`
157
157
 
158
- Defined in: [packages/web-fetcher/src/core/types.ts:70](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/core/types.ts#L70)
158
+ Defined in: [packages/web-fetcher/src/core/types.ts:70](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/core/types.ts#L70)
159
159
 
160
160
  ***
161
161
 
@@ -163,7 +163,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:70](https://github.com/isdk/
163
163
 
164
164
  > `optional` **retries**: `number`
165
165
 
166
- Defined in: [packages/web-fetcher/src/core/types.ts:74](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/core/types.ts#L74)
166
+ Defined in: [packages/web-fetcher/src/core/types.ts:74](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/core/types.ts#L74)
167
167
 
168
168
  ***
169
169
 
@@ -171,7 +171,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:74](https://github.com/isdk/
171
171
 
172
172
  > `optional` **reuseCookies**: `boolean`
173
173
 
174
- Defined in: [packages/web-fetcher/src/core/types.ts:41](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/core/types.ts#L41)
174
+ Defined in: [packages/web-fetcher/src/core/types.ts:41](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/core/types.ts#L41)
175
175
 
176
176
  ***
177
177
 
@@ -179,7 +179,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:41](https://github.com/isdk/
179
179
 
180
180
  > `optional` **sites**: [`FetchSite`](FetchSite.md)[]
181
181
 
182
- Defined in: [packages/web-fetcher/src/core/types.ts:76](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/core/types.ts#L76)
182
+ Defined in: [packages/web-fetcher/src/core/types.ts:76](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/core/types.ts#L76)
183
183
 
184
184
  ***
185
185
 
@@ -187,7 +187,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:76](https://github.com/isdk/
187
187
 
188
188
  > `optional` **throwHttpErrors**: `boolean`
189
189
 
190
- Defined in: [packages/web-fetcher/src/core/types.ts:42](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/core/types.ts#L42)
190
+ Defined in: [packages/web-fetcher/src/core/types.ts:42](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/core/types.ts#L42)
191
191
 
192
192
  ***
193
193
 
@@ -195,7 +195,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:42](https://github.com/isdk/
195
195
 
196
196
  > `optional` **timeoutMs**: `number`
197
197
 
198
- Defined in: [packages/web-fetcher/src/core/types.ts:69](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/core/types.ts#L69)
198
+ Defined in: [packages/web-fetcher/src/core/types.ts:69](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/core/types.ts#L69)
199
199
 
200
200
  ***
201
201
 
@@ -203,7 +203,7 @@ Defined in: [packages/web-fetcher/src/core/types.ts:69](https://github.com/isdk/
203
203
 
204
204
  > `optional` **url**: `string`
205
205
 
206
- Defined in: [packages/web-fetcher/src/core/types.ts:77](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/core/types.ts#L77)
206
+ Defined in: [packages/web-fetcher/src/core/types.ts:77](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/core/types.ts#L77)
207
207
 
208
208
  ***
209
209
 
@@ -211,4 +211,4 @@ Defined in: [packages/web-fetcher/src/core/types.ts:77](https://github.com/isdk/
211
211
 
212
212
  > `optional` **useSiteRegistry**: `boolean`
213
213
 
214
- Defined in: [packages/web-fetcher/src/core/types.ts:36](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/core/types.ts#L36)
214
+ Defined in: [packages/web-fetcher/src/core/types.ts:36](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/core/types.ts#L36)
@@ -6,7 +6,7 @@
6
6
 
7
7
  # Interface: DispatchedEngineAction
8
8
 
9
- Defined in: [packages/web-fetcher/src/engine/base.ts:97](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/engine/base.ts#L97)
9
+ Defined in: [packages/web-fetcher/src/engine/base.ts:97](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/engine/base.ts#L97)
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:98](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/engine/base.ts#L98)
24
+ Defined in: [packages/web-fetcher/src/engine/base.ts:98](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/engine/base.ts#L98)
25
25
 
26
26
  ***
27
27
 
@@ -29,7 +29,7 @@ Defined in: [packages/web-fetcher/src/engine/base.ts:98](https://github.com/isdk
29
29
 
30
30
  > **reject**: (`reason?`) => `void`
31
31
 
32
- Defined in: [packages/web-fetcher/src/engine/base.ts:100](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/engine/base.ts#L100)
32
+ Defined in: [packages/web-fetcher/src/engine/base.ts:100](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/engine/base.ts#L100)
33
33
 
34
34
  #### Parameters
35
35
 
@@ -47,7 +47,7 @@ Defined in: [packages/web-fetcher/src/engine/base.ts:100](https://github.com/isd
47
47
 
48
48
  > **resolve**: (`value?`) => `void`
49
49
 
50
- Defined in: [packages/web-fetcher/src/engine/base.ts:99](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/engine/base.ts#L99)
50
+ Defined in: [packages/web-fetcher/src/engine/base.ts:99](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/engine/base.ts#L99)
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/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/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/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/action/definitions/extract.ts#L5)
10
10
 
11
11
  ## Extends
12
12
 
@@ -18,11 +18,35 @@ Defined in: [packages/web-fetcher/src/action/definitions/extract.ts:5](https://g
18
18
 
19
19
  ## Properties
20
20
 
21
+ ### action?
22
+
23
+ > `optional` **action**: `string` \| [`FetchAction`](../classes/FetchAction.md)
24
+
25
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:47](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/action/fetch-action.ts#L47)
26
+
27
+ #### Inherited from
28
+
29
+ [`BaseFetchActionProperties`](BaseFetchActionProperties.md).[`action`](BaseFetchActionProperties.md#action)
30
+
31
+ ***
32
+
33
+ ### args?
34
+
35
+ > `optional` **args**: `any`
36
+
37
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:49](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/action/fetch-action.ts#L49)
38
+
39
+ #### Inherited from
40
+
41
+ [`BaseFetchActionProperties`](BaseFetchActionProperties.md).[`args`](BaseFetchActionProperties.md#args)
42
+
43
+ ***
44
+
21
45
  ### failOnError?
22
46
 
23
47
  > `optional` **failOnError**: `boolean`
24
48
 
25
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:52](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/action/fetch-action.ts#L52)
49
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:54](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/action/fetch-action.ts#L54)
26
50
 
27
51
  #### Inherited from
28
52
 
@@ -34,7 +58,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:52](https://github.
34
58
 
35
59
  > `optional` **failOnTimeout**: `boolean`
36
60
 
37
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:54](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/action/fetch-action.ts#L54)
61
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:56](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/action/fetch-action.ts#L56)
38
62
 
39
63
  #### Inherited from
40
64
 
@@ -46,7 +70,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:54](https://github.
46
70
 
47
71
  > `optional` **id**: `string`
48
72
 
49
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:45](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/action/fetch-action.ts#L45)
73
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:45](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/action/fetch-action.ts#L45)
50
74
 
51
75
  #### Inherited from
52
76
 
@@ -58,7 +82,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:45](https://github.
58
82
 
59
83
  > `optional` **maxRetries**: `number`
60
84
 
61
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:56](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/action/fetch-action.ts#L56)
85
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:58](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/action/fetch-action.ts#L58)
62
86
 
63
87
  #### Inherited from
64
88
 
@@ -70,7 +94,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:56](https://github.
70
94
 
71
95
  > `optional` **name**: `string`
72
96
 
73
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:46](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/action/fetch-action.ts#L46)
97
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:46](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/action/fetch-action.ts#L46)
74
98
 
75
99
  #### Inherited from
76
100
 
@@ -82,7 +106,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:46](https://github.
82
106
 
83
107
  > **params**: `ExtractSchema`
84
108
 
85
- Defined in: [packages/web-fetcher/src/action/definitions/extract.ts:6](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/action/definitions/extract.ts#L6)
109
+ Defined in: [packages/web-fetcher/src/action/definitions/extract.ts:6](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/action/definitions/extract.ts#L6)
86
110
 
87
111
  #### Overrides
88
112
 
@@ -94,7 +118,7 @@ Defined in: [packages/web-fetcher/src/action/definitions/extract.ts:6](https://g
94
118
 
95
119
  > `optional` **storeAs**: `string`
96
120
 
97
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:49](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/action/fetch-action.ts#L49)
121
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:51](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/action/fetch-action.ts#L51)
98
122
 
99
123
  #### Inherited from
100
124
 
@@ -106,7 +130,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:49](https://github.
106
130
 
107
131
  > `optional` **timeoutMs**: `number`
108
132
 
109
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:55](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/action/fetch-action.ts#L55)
133
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:57](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/action/fetch-action.ts#L57)
110
134
 
111
135
  #### Inherited from
112
136
 
@@ -6,7 +6,7 @@
6
6
 
7
7
  # Interface: FetchActionInContext
8
8
 
9
- Defined in: [packages/web-fetcher/src/core/context.ts:7](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/core/context.ts#L7)
9
+ Defined in: [packages/web-fetcher/src/core/context.ts:7](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/core/context.ts#L7)
10
10
 
11
11
  ## Extends
12
12
 
@@ -18,11 +18,35 @@ Defined in: [packages/web-fetcher/src/core/context.ts:7](https://github.com/isdk
18
18
 
19
19
  ## Properties
20
20
 
21
+ ### action?
22
+
23
+ > `optional` **action**: `string` \| [`FetchAction`](../classes/FetchAction.md)
24
+
25
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:47](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/action/fetch-action.ts#L47)
26
+
27
+ #### Inherited from
28
+
29
+ [`FetchActionProperties`](FetchActionProperties.md).[`action`](FetchActionProperties.md#action)
30
+
31
+ ***
32
+
33
+ ### args?
34
+
35
+ > `optional` **args**: `any`
36
+
37
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:49](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/action/fetch-action.ts#L49)
38
+
39
+ #### Inherited from
40
+
41
+ [`FetchActionProperties`](FetchActionProperties.md).[`args`](FetchActionProperties.md#args)
42
+
43
+ ***
44
+
21
45
  ### collectors?
22
46
 
23
- > `optional` **collectors**: `_RequireAtLeastOne`\<[`BaseFetchCollectorActionProperties`](BaseFetchCollectorActionProperties.md), `"name"` \| `"id"`\>[]
47
+ > `optional` **collectors**: `_RequireAtLeastOne`\<[`BaseFetchCollectorActionProperties`](BaseFetchCollectorActionProperties.md), `"name"` \| `"id"` \| `"action"`\>[]
24
48
 
25
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:75](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/action/fetch-action.ts#L75)
49
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:77](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/action/fetch-action.ts#L77)
26
50
 
27
51
  #### Inherited from
28
52
 
@@ -34,7 +58,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:75](https://github.
34
58
 
35
59
  > `optional` **depth**: `number`
36
60
 
37
- Defined in: [packages/web-fetcher/src/core/context.ts:10](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/core/context.ts#L10)
61
+ Defined in: [packages/web-fetcher/src/core/context.ts:10](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/core/context.ts#L10)
38
62
 
39
63
  ***
40
64
 
@@ -42,7 +66,7 @@ Defined in: [packages/web-fetcher/src/core/context.ts:10](https://github.com/isd
42
66
 
43
67
  > `optional` **error**: `Error`
44
68
 
45
- Defined in: [packages/web-fetcher/src/core/context.ts:9](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/core/context.ts#L9)
69
+ Defined in: [packages/web-fetcher/src/core/context.ts:9](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/core/context.ts#L9)
46
70
 
47
71
  ***
48
72
 
@@ -50,7 +74,7 @@ Defined in: [packages/web-fetcher/src/core/context.ts:9](https://github.com/isdk
50
74
 
51
75
  > `optional` **failOnError**: `boolean`
52
76
 
53
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:52](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/action/fetch-action.ts#L52)
77
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:54](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/action/fetch-action.ts#L54)
54
78
 
55
79
  #### Inherited from
56
80
 
@@ -62,7 +86,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:52](https://github.
62
86
 
63
87
  > `optional` **failOnTimeout**: `boolean`
64
88
 
65
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:54](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/action/fetch-action.ts#L54)
89
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:56](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/action/fetch-action.ts#L56)
66
90
 
67
91
  #### Inherited from
68
92
 
@@ -74,7 +98,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:54](https://github.
74
98
 
75
99
  > `optional` **id**: `string`
76
100
 
77
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:45](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/action/fetch-action.ts#L45)
101
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:45](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/action/fetch-action.ts#L45)
78
102
 
79
103
  #### Inherited from
80
104
 
@@ -86,7 +110,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:45](https://github.
86
110
 
87
111
  > `optional` **index**: `number`
88
112
 
89
- Defined in: [packages/web-fetcher/src/core/context.ts:8](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/core/context.ts#L8)
113
+ Defined in: [packages/web-fetcher/src/core/context.ts:8](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/core/context.ts#L8)
90
114
 
91
115
  ***
92
116
 
@@ -94,7 +118,7 @@ Defined in: [packages/web-fetcher/src/core/context.ts:8](https://github.com/isdk
94
118
 
95
119
  > `optional` **maxRetries**: `number`
96
120
 
97
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:56](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/action/fetch-action.ts#L56)
121
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:58](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/action/fetch-action.ts#L58)
98
122
 
99
123
  #### Inherited from
100
124
 
@@ -106,7 +130,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:56](https://github.
106
130
 
107
131
  > `optional` **name**: `string`
108
132
 
109
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:46](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/action/fetch-action.ts#L46)
133
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:46](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/action/fetch-action.ts#L46)
110
134
 
111
135
  #### Inherited from
112
136
 
@@ -118,7 +142,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:46](https://github.
118
142
 
119
143
  > `optional` **params**: `any`
120
144
 
121
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:47](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/action/fetch-action.ts#L47)
145
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:48](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/action/fetch-action.ts#L48)
122
146
 
123
147
  #### Inherited from
124
148
 
@@ -130,7 +154,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:47](https://github.
130
154
 
131
155
  > `optional` **storeAs**: `string`
132
156
 
133
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:49](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/action/fetch-action.ts#L49)
157
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:51](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/action/fetch-action.ts#L51)
134
158
 
135
159
  #### Inherited from
136
160
 
@@ -142,7 +166,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:49](https://github.
142
166
 
143
167
  > `optional` **timeoutMs**: `number`
144
168
 
145
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:55](https://github.com/isdk/web-fetcher.js/blob/8bd7a48c89b74012f283a5397c5c3b526fdb7b09/src/action/fetch-action.ts#L55)
169
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:57](https://github.com/isdk/web-fetcher.js/blob/d7b505cc39fc821039fb79f641e2e590d2fc028d/src/action/fetch-action.ts#L57)
146
170
 
147
171
  #### Inherited from
148
172