@isdk/web-fetcher 0.2.10 → 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 (65) hide show
  1. package/README.action.cn.md +81 -20
  2. package/README.action.md +81 -4
  3. package/README.cn.md +8 -6
  4. package/README.engine.cn.md +28 -8
  5. package/README.engine.md +28 -8
  6. package/README.md +8 -6
  7. package/dist/index.d.mts +408 -11
  8. package/dist/index.d.ts +408 -11
  9. package/dist/index.js +1 -1
  10. package/dist/index.mjs +1 -1
  11. package/docs/README.md +8 -6
  12. package/docs/_media/README.action.md +81 -4
  13. package/docs/_media/README.cn.md +8 -6
  14. package/docs/_media/README.engine.md +28 -8
  15. package/docs/classes/CheerioFetchEngine.md +365 -66
  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 +321 -64
  20. package/docs/classes/FetchSession.md +118 -21
  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 +350 -65
  26. package/docs/classes/SubmitAction.md +23 -23
  27. package/docs/classes/WaitForAction.md +23 -23
  28. package/docs/classes/WebFetcher.md +53 -5
  29. package/docs/enumerations/FetchActionResultStatus.md +4 -4
  30. package/docs/functions/fetchWeb.md +2 -2
  31. package/docs/interfaces/BaseFetchActionProperties.md +19 -11
  32. package/docs/interfaces/BaseFetchCollectorActionProperties.md +27 -15
  33. package/docs/interfaces/BaseFetcherProperties.md +34 -26
  34. package/docs/interfaces/DispatchedEngineAction.md +4 -4
  35. package/docs/interfaces/ExtractActionProperties.md +23 -11
  36. package/docs/interfaces/FetchActionInContext.md +32 -15
  37. package/docs/interfaces/FetchActionProperties.md +24 -12
  38. package/docs/interfaces/FetchActionResult.md +6 -6
  39. package/docs/interfaces/FetchContext.md +91 -36
  40. package/docs/interfaces/FetchEngineContext.md +62 -31
  41. package/docs/interfaces/FetchMetadata.md +5 -5
  42. package/docs/interfaces/FetchResponse.md +14 -14
  43. package/docs/interfaces/FetchReturnTypeRegistry.md +7 -7
  44. package/docs/interfaces/FetchSite.md +41 -29
  45. package/docs/interfaces/FetcherOptions.md +40 -28
  46. package/docs/interfaces/GotoActionOptions.md +6 -6
  47. package/docs/interfaces/PendingEngineRequest.md +3 -3
  48. package/docs/interfaces/StorageOptions.md +5 -5
  49. package/docs/interfaces/SubmitActionOptions.md +2 -2
  50. package/docs/interfaces/WaitForActionOptions.md +5 -5
  51. package/docs/type-aliases/BaseFetchActionOptions.md +1 -1
  52. package/docs/type-aliases/BaseFetchCollectorOptions.md +1 -1
  53. package/docs/type-aliases/BrowserEngine.md +1 -1
  54. package/docs/type-aliases/FetchActionCapabilities.md +1 -1
  55. package/docs/type-aliases/FetchActionCapabilityMode.md +1 -1
  56. package/docs/type-aliases/FetchActionOptions.md +1 -1
  57. package/docs/type-aliases/FetchEngineAction.md +1 -1
  58. package/docs/type-aliases/FetchEngineType.md +1 -1
  59. package/docs/type-aliases/FetchReturnType.md +1 -1
  60. package/docs/type-aliases/FetchReturnTypeFor.md +1 -1
  61. package/docs/type-aliases/OnFetchPauseCallback.md +1 -1
  62. package/docs/type-aliases/ResourceType.md +1 -1
  63. package/docs/variables/DefaultFetcherProperties.md +1 -1
  64. package/docs/variables/FetcherOptionKeys.md +1 -1
  65. package/package.json +7 -4
@@ -6,7 +6,14 @@
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/c6694f50698959edc7c0cdb928907e3e0ef9bb70/src/core/context.ts#L7)
9
+ Defined in: [packages/web-fetcher/src/core/context.ts:18](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/core/context.ts#L18)
10
+
11
+ Represents the state of an action being executed within a context.
12
+
13
+ ## Remarks
14
+
15
+ Extends the basic action properties with runtime metadata like execution index,
16
+ nesting depth, and any errors encountered during execution.
10
17
 
11
18
  ## Extends
12
19
 
@@ -22,7 +29,7 @@ Defined in: [packages/web-fetcher/src/core/context.ts:7](https://github.com/isdk
22
29
 
23
30
  > `optional` **action**: `string` \| [`FetchAction`](../classes/FetchAction.md)
24
31
 
25
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:47](https://github.com/isdk/web-fetcher.js/blob/c6694f50698959edc7c0cdb928907e3e0ef9bb70/src/action/fetch-action.ts#L47)
32
+ 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
33
 
27
34
  #### Inherited from
28
35
 
@@ -34,7 +41,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:47](https://github.
34
41
 
35
42
  > `optional` **args**: `any`
36
43
 
37
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:49](https://github.com/isdk/web-fetcher.js/blob/c6694f50698959edc7c0cdb928907e3e0ef9bb70/src/action/fetch-action.ts#L49)
44
+ 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
45
 
39
46
  #### Inherited from
40
47
 
@@ -46,7 +53,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:49](https://github.
46
53
 
47
54
  > `optional` **collectors**: `_RequireAtLeastOne`\<[`BaseFetchCollectorActionProperties`](BaseFetchCollectorActionProperties.md), `"name"` \| `"id"` \| `"action"`\>[]
48
55
 
49
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:77](https://github.com/isdk/web-fetcher.js/blob/c6694f50698959edc7c0cdb928907e3e0ef9bb70/src/action/fetch-action.ts#L77)
56
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:87](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/action/fetch-action.ts#L87)
50
57
 
51
58
  #### Inherited from
52
59
 
@@ -58,7 +65,9 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:77](https://github.
58
65
 
59
66
  > `optional` **depth**: `number`
60
67
 
61
- Defined in: [packages/web-fetcher/src/core/context.ts:10](https://github.com/isdk/web-fetcher.js/blob/c6694f50698959edc7c0cdb928907e3e0ef9bb70/src/core/context.ts#L10)
68
+ Defined in: [packages/web-fetcher/src/core/context.ts:30](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/core/context.ts#L30)
69
+
70
+ The nesting depth of the action. Top-level actions (executed directly by the session) have a depth of 0.
62
71
 
63
72
  ***
64
73
 
@@ -66,7 +75,9 @@ Defined in: [packages/web-fetcher/src/core/context.ts:10](https://github.com/isd
66
75
 
67
76
  > `optional` **error**: `Error`
68
77
 
69
- Defined in: [packages/web-fetcher/src/core/context.ts:9](https://github.com/isdk/web-fetcher.js/blob/c6694f50698959edc7c0cdb928907e3e0ef9bb70/src/core/context.ts#L9)
78
+ Defined in: [packages/web-fetcher/src/core/context.ts:26](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/core/context.ts#L26)
79
+
80
+ Error encountered during action execution, if any.
70
81
 
71
82
  ***
72
83
 
@@ -74,7 +85,7 @@ Defined in: [packages/web-fetcher/src/core/context.ts:9](https://github.com/isdk
74
85
 
75
86
  > `optional` **failOnError**: `boolean`
76
87
 
77
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:54](https://github.com/isdk/web-fetcher.js/blob/c6694f50698959edc7c0cdb928907e3e0ef9bb70/src/action/fetch-action.ts#L54)
88
+ 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)
78
89
 
79
90
  #### Inherited from
80
91
 
@@ -86,7 +97,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:54](https://github.
86
97
 
87
98
  > `optional` **failOnTimeout**: `boolean`
88
99
 
89
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:56](https://github.com/isdk/web-fetcher.js/blob/c6694f50698959edc7c0cdb928907e3e0ef9bb70/src/action/fetch-action.ts#L56)
100
+ 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)
90
101
 
91
102
  #### Inherited from
92
103
 
@@ -98,7 +109,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:56](https://github.
98
109
 
99
110
  > `optional` **id**: `string`
100
111
 
101
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:45](https://github.com/isdk/web-fetcher.js/blob/c6694f50698959edc7c0cdb928907e3e0ef9bb70/src/action/fetch-action.ts#L45)
112
+ 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)
102
113
 
103
114
  #### Inherited from
104
115
 
@@ -110,7 +121,13 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:45](https://github.
110
121
 
111
122
  > `optional` **index**: `number`
112
123
 
113
- Defined in: [packages/web-fetcher/src/core/context.ts:8](https://github.com/isdk/web-fetcher.js/blob/c6694f50698959edc7c0cdb928907e3e0ef9bb70/src/core/context.ts#L8)
124
+ Defined in: [packages/web-fetcher/src/core/context.ts:22](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/core/context.ts#L22)
125
+
126
+ The 0-based index of the action in the execution sequence.
127
+
128
+ #### Overrides
129
+
130
+ [`FetchActionProperties`](FetchActionProperties.md).[`index`](FetchActionProperties.md#index)
114
131
 
115
132
  ***
116
133
 
@@ -118,7 +135,7 @@ Defined in: [packages/web-fetcher/src/core/context.ts:8](https://github.com/isdk
118
135
 
119
136
  > `optional` **maxRetries**: `number`
120
137
 
121
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:58](https://github.com/isdk/web-fetcher.js/blob/c6694f50698959edc7c0cdb928907e3e0ef9bb70/src/action/fetch-action.ts#L58)
138
+ 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)
122
139
 
123
140
  #### Inherited from
124
141
 
@@ -130,7 +147,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:58](https://github.
130
147
 
131
148
  > `optional` **name**: `string`
132
149
 
133
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:46](https://github.com/isdk/web-fetcher.js/blob/c6694f50698959edc7c0cdb928907e3e0ef9bb70/src/action/fetch-action.ts#L46)
150
+ 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)
134
151
 
135
152
  #### Inherited from
136
153
 
@@ -142,7 +159,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:46](https://github.
142
159
 
143
160
  > `optional` **params**: `any`
144
161
 
145
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:48](https://github.com/isdk/web-fetcher.js/blob/c6694f50698959edc7c0cdb928907e3e0ef9bb70/src/action/fetch-action.ts#L48)
162
+ 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)
146
163
 
147
164
  #### Inherited from
148
165
 
@@ -154,7 +171,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:48](https://github.
154
171
 
155
172
  > `optional` **storeAs**: `string`
156
173
 
157
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:51](https://github.com/isdk/web-fetcher.js/blob/c6694f50698959edc7c0cdb928907e3e0ef9bb70/src/action/fetch-action.ts#L51)
174
+ 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)
158
175
 
159
176
  #### Inherited from
160
177
 
@@ -166,7 +183,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:51](https://github.
166
183
 
167
184
  > `optional` **timeoutMs**: `number`
168
185
 
169
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:57](https://github.com/isdk/web-fetcher.js/blob/c6694f50698959edc7c0cdb928907e3e0ef9bb70/src/action/fetch-action.ts#L57)
186
+ 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)
170
187
 
171
188
  #### Inherited from
172
189
 
@@ -6,7 +6,7 @@
6
6
 
7
7
  # Interface: FetchActionProperties
8
8
 
9
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:76](https://github.com/isdk/web-fetcher.js/blob/c6694f50698959edc7c0cdb928907e3e0ef9bb70/src/action/fetch-action.ts#L76)
9
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:86](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/action/fetch-action.ts#L86)
10
10
 
11
11
  ## Extends
12
12
 
@@ -26,7 +26,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:76](https://github.
26
26
 
27
27
  > `optional` **action**: `string` \| [`FetchAction`](../classes/FetchAction.md)
28
28
 
29
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:47](https://github.com/isdk/web-fetcher.js/blob/c6694f50698959edc7c0cdb928907e3e0ef9bb70/src/action/fetch-action.ts#L47)
29
+ 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)
30
30
 
31
31
  #### Inherited from
32
32
 
@@ -38,7 +38,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:47](https://github.
38
38
 
39
39
  > `optional` **args**: `any`
40
40
 
41
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:49](https://github.com/isdk/web-fetcher.js/blob/c6694f50698959edc7c0cdb928907e3e0ef9bb70/src/action/fetch-action.ts#L49)
41
+ 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)
42
42
 
43
43
  #### Inherited from
44
44
 
@@ -50,7 +50,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:49](https://github.
50
50
 
51
51
  > `optional` **collectors**: `_RequireAtLeastOne`\<[`BaseFetchCollectorActionProperties`](BaseFetchCollectorActionProperties.md), `"name"` \| `"id"` \| `"action"`\>[]
52
52
 
53
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:77](https://github.com/isdk/web-fetcher.js/blob/c6694f50698959edc7c0cdb928907e3e0ef9bb70/src/action/fetch-action.ts#L77)
53
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:87](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/action/fetch-action.ts#L87)
54
54
 
55
55
  ***
56
56
 
@@ -58,7 +58,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:77](https://github.
58
58
 
59
59
  > `optional` **failOnError**: `boolean`
60
60
 
61
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:54](https://github.com/isdk/web-fetcher.js/blob/c6694f50698959edc7c0cdb928907e3e0ef9bb70/src/action/fetch-action.ts#L54)
61
+ 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)
62
62
 
63
63
  #### Inherited from
64
64
 
@@ -70,7 +70,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:54](https://github.
70
70
 
71
71
  > `optional` **failOnTimeout**: `boolean`
72
72
 
73
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:56](https://github.com/isdk/web-fetcher.js/blob/c6694f50698959edc7c0cdb928907e3e0ef9bb70/src/action/fetch-action.ts#L56)
73
+ 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)
74
74
 
75
75
  #### Inherited from
76
76
 
@@ -82,7 +82,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:56](https://github.
82
82
 
83
83
  > `optional` **id**: `string`
84
84
 
85
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:45](https://github.com/isdk/web-fetcher.js/blob/c6694f50698959edc7c0cdb928907e3e0ef9bb70/src/action/fetch-action.ts#L45)
85
+ 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)
86
86
 
87
87
  #### Inherited from
88
88
 
@@ -90,11 +90,23 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:45](https://github.
90
90
 
91
91
  ***
92
92
 
93
+ ### index?
94
+
95
+ > `optional` **index**: `number`
96
+
97
+ 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)
98
+
99
+ #### Inherited from
100
+
101
+ [`BaseFetchActionProperties`](BaseFetchActionProperties.md).[`index`](BaseFetchActionProperties.md#index)
102
+
103
+ ***
104
+
93
105
  ### maxRetries?
94
106
 
95
107
  > `optional` **maxRetries**: `number`
96
108
 
97
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:58](https://github.com/isdk/web-fetcher.js/blob/c6694f50698959edc7c0cdb928907e3e0ef9bb70/src/action/fetch-action.ts#L58)
109
+ 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)
98
110
 
99
111
  #### Inherited from
100
112
 
@@ -106,7 +118,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:58](https://github.
106
118
 
107
119
  > `optional` **name**: `string`
108
120
 
109
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:46](https://github.com/isdk/web-fetcher.js/blob/c6694f50698959edc7c0cdb928907e3e0ef9bb70/src/action/fetch-action.ts#L46)
121
+ 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)
110
122
 
111
123
  #### Inherited from
112
124
 
@@ -118,7 +130,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:46](https://github.
118
130
 
119
131
  > `optional` **params**: `any`
120
132
 
121
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:48](https://github.com/isdk/web-fetcher.js/blob/c6694f50698959edc7c0cdb928907e3e0ef9bb70/src/action/fetch-action.ts#L48)
133
+ 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)
122
134
 
123
135
  #### Inherited from
124
136
 
@@ -130,7 +142,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:48](https://github.
130
142
 
131
143
  > `optional` **storeAs**: `string`
132
144
 
133
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:51](https://github.com/isdk/web-fetcher.js/blob/c6694f50698959edc7c0cdb928907e3e0ef9bb70/src/action/fetch-action.ts#L51)
145
+ 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)
134
146
 
135
147
  #### Inherited from
136
148
 
@@ -142,7 +154,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:51](https://github.
142
154
 
143
155
  > `optional` **timeoutMs**: `number`
144
156
 
145
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:57](https://github.com/isdk/web-fetcher.js/blob/c6694f50698959edc7c0cdb928907e3e0ef9bb70/src/action/fetch-action.ts#L57)
157
+ 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)
146
158
 
147
159
  #### Inherited from
148
160
 
@@ -6,7 +6,7 @@
6
6
 
7
7
  # Interface: FetchActionResult\<R\>
8
8
 
9
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:36](https://github.com/isdk/web-fetcher.js/blob/c6694f50698959edc7c0cdb928907e3e0ef9bb70/src/action/fetch-action.ts#L36)
9
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:36](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/action/fetch-action.ts#L36)
10
10
 
11
11
  ## Type Parameters
12
12
 
@@ -20,7 +20,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:36](https://github.
20
20
 
21
21
  > `optional` **error**: `Error`
22
22
 
23
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:40](https://github.com/isdk/web-fetcher.js/blob/c6694f50698959edc7c0cdb928907e3e0ef9bb70/src/action/fetch-action.ts#L40)
23
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:42](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/action/fetch-action.ts#L42)
24
24
 
25
25
  ***
26
26
 
@@ -28,7 +28,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:40](https://github.
28
28
 
29
29
  > `optional` **meta**: `FetchActionMeta`
30
30
 
31
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:41](https://github.com/isdk/web-fetcher.js/blob/c6694f50698959edc7c0cdb928907e3e0ef9bb70/src/action/fetch-action.ts#L41)
31
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:43](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/action/fetch-action.ts#L43)
32
32
 
33
33
  ***
34
34
 
@@ -36,7 +36,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:41](https://github.
36
36
 
37
37
  > `optional` **result**: [`FetchReturnTypeFor`](../type-aliases/FetchReturnTypeFor.md)\<`R`\>
38
38
 
39
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:39](https://github.com/isdk/web-fetcher.js/blob/c6694f50698959edc7c0cdb928907e3e0ef9bb70/src/action/fetch-action.ts#L39)
39
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:41](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/action/fetch-action.ts#L41)
40
40
 
41
41
  ***
42
42
 
@@ -44,7 +44,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:39](https://github.
44
44
 
45
45
  > `optional` **returnType**: `R`
46
46
 
47
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:38](https://github.com/isdk/web-fetcher.js/blob/c6694f50698959edc7c0cdb928907e3e0ef9bb70/src/action/fetch-action.ts#L38)
47
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:40](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/action/fetch-action.ts#L40)
48
48
 
49
49
  ***
50
50
 
@@ -52,4 +52,4 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:38](https://github.
52
52
 
53
53
  > **status**: [`FetchActionResultStatus`](../enumerations/FetchActionResultStatus.md)
54
54
 
55
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:37](https://github.com/isdk/web-fetcher.js/blob/c6694f50698959edc7c0cdb928907e3e0ef9bb70/src/action/fetch-action.ts#L37)
55
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:39](https://github.com/isdk/web-fetcher.js/blob/61e40bab9fc20e6de9e2060909d088d8c6cc7b99/src/action/fetch-action.ts#L39)