@isdk/web-fetcher 0.3.0 → 0.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (83) hide show
  1. package/README.action.cn.md +53 -312
  2. package/README.action.extract.cn.md +263 -0
  3. package/README.action.extract.md +263 -0
  4. package/README.action.md +53 -311
  5. package/README.cn.md +10 -2
  6. package/README.engine.cn.md +22 -1
  7. package/README.engine.md +22 -1
  8. package/README.md +8 -1
  9. package/dist/index.d.mts +147 -1
  10. package/dist/index.d.ts +147 -1
  11. package/dist/index.js +1 -1
  12. package/dist/index.mjs +1 -1
  13. package/docs/README.md +8 -1
  14. package/docs/_media/README.action.md +53 -311
  15. package/docs/_media/README.cn.md +10 -2
  16. package/docs/_media/README.engine.md +22 -1
  17. package/docs/classes/CheerioFetchEngine.md +236 -88
  18. package/docs/classes/ClickAction.md +23 -23
  19. package/docs/classes/EvaluateAction.md +23 -23
  20. package/docs/classes/ExtractAction.md +23 -23
  21. package/docs/classes/FetchAction.md +27 -23
  22. package/docs/classes/FetchEngine.md +218 -86
  23. package/docs/classes/FetchSession.md +13 -13
  24. package/docs/classes/FillAction.md +23 -23
  25. package/docs/classes/GetContentAction.md +23 -23
  26. package/docs/classes/GotoAction.md +23 -23
  27. package/docs/classes/KeyboardPressAction.md +533 -0
  28. package/docs/classes/KeyboardTypeAction.md +533 -0
  29. package/docs/classes/MouseClickAction.md +533 -0
  30. package/docs/classes/MouseMoveAction.md +533 -0
  31. package/docs/classes/PauseAction.md +23 -23
  32. package/docs/classes/PlaywrightFetchEngine.md +337 -87
  33. package/docs/classes/SubmitAction.md +23 -23
  34. package/docs/classes/TrimAction.md +23 -23
  35. package/docs/classes/WaitForAction.md +23 -23
  36. package/docs/classes/WebFetcher.md +5 -5
  37. package/docs/enumerations/FetchActionResultStatus.md +4 -4
  38. package/docs/functions/fetchWeb.md +2 -2
  39. package/docs/globals.md +8 -0
  40. package/docs/interfaces/BaseFetchActionProperties.md +12 -12
  41. package/docs/interfaces/BaseFetchCollectorActionProperties.md +16 -16
  42. package/docs/interfaces/BaseFetcherProperties.md +31 -27
  43. package/docs/interfaces/Cookie.md +14 -14
  44. package/docs/interfaces/DispatchedEngineAction.md +4 -4
  45. package/docs/interfaces/EvaluateActionOptions.md +3 -3
  46. package/docs/interfaces/ExtractActionProperties.md +12 -12
  47. package/docs/interfaces/FetchActionInContext.md +15 -15
  48. package/docs/interfaces/FetchActionProperties.md +13 -13
  49. package/docs/interfaces/FetchActionResult.md +6 -6
  50. package/docs/interfaces/FetchContext.md +41 -37
  51. package/docs/interfaces/FetchEngineContext.md +36 -32
  52. package/docs/interfaces/FetchMetadata.md +5 -5
  53. package/docs/interfaces/FetchResponse.md +14 -14
  54. package/docs/interfaces/FetchReturnTypeRegistry.md +7 -7
  55. package/docs/interfaces/FetchSite.md +34 -30
  56. package/docs/interfaces/FetcherOptions.md +33 -29
  57. package/docs/interfaces/GotoActionOptions.md +14 -6
  58. package/docs/interfaces/KeyboardPressParams.md +25 -0
  59. package/docs/interfaces/KeyboardTypeParams.md +25 -0
  60. package/docs/interfaces/MouseClickParams.md +49 -0
  61. package/docs/interfaces/MouseMoveParams.md +41 -0
  62. package/docs/interfaces/PendingEngineRequest.md +3 -3
  63. package/docs/interfaces/StorageOptions.md +5 -5
  64. package/docs/interfaces/SubmitActionOptions.md +2 -2
  65. package/docs/interfaces/TrimActionOptions.md +3 -3
  66. package/docs/interfaces/WaitForActionOptions.md +5 -5
  67. package/docs/type-aliases/BaseFetchActionOptions.md +1 -1
  68. package/docs/type-aliases/BaseFetchCollectorOptions.md +1 -1
  69. package/docs/type-aliases/BrowserEngine.md +1 -1
  70. package/docs/type-aliases/FetchActionCapabilities.md +1 -1
  71. package/docs/type-aliases/FetchActionCapabilityMode.md +1 -1
  72. package/docs/type-aliases/FetchActionOptions.md +1 -1
  73. package/docs/type-aliases/FetchEngineAction.md +2 -2
  74. package/docs/type-aliases/FetchEngineType.md +1 -1
  75. package/docs/type-aliases/FetchReturnType.md +1 -1
  76. package/docs/type-aliases/FetchReturnTypeFor.md +1 -1
  77. package/docs/type-aliases/OnFetchPauseCallback.md +1 -1
  78. package/docs/type-aliases/ResourceType.md +1 -1
  79. package/docs/type-aliases/TrimPreset.md +1 -1
  80. package/docs/variables/DefaultFetcherProperties.md +1 -1
  81. package/docs/variables/FetcherOptionKeys.md +1 -1
  82. package/docs/variables/TRIM_PRESETS.md +1 -1
  83. package/package.json +10 -10
@@ -6,7 +6,7 @@
6
6
 
7
7
  # Interface: Cookie
8
8
 
9
- Defined in: node\_modules/.pnpm/@crawlee+types@3.15.1/node\_modules/@crawlee/types/browser.d.ts:2
9
+ Defined in: node\_modules/.pnpm/@crawlee+types@3.16.0/node\_modules/@crawlee/types/browser.d.ts:2
10
10
 
11
11
  ## Properties
12
12
 
@@ -14,7 +14,7 @@ Defined in: node\_modules/.pnpm/@crawlee+types@3.15.1/node\_modules/@crawlee/typ
14
14
 
15
15
  > `optional` **domain**: `string`
16
16
 
17
- Defined in: node\_modules/.pnpm/@crawlee+types@3.15.1/node\_modules/@crawlee/types/browser.d.ts:19
17
+ Defined in: node\_modules/.pnpm/@crawlee+types@3.16.0/node\_modules/@crawlee/types/browser.d.ts:19
18
18
 
19
19
  Cookie domain.
20
20
 
@@ -24,7 +24,7 @@ Cookie domain.
24
24
 
25
25
  > `optional` **expires**: `number`
26
26
 
27
- Defined in: node\_modules/.pnpm/@crawlee+types@3.15.1/node\_modules/@crawlee/types/browser.d.ts:39
27
+ Defined in: node\_modules/.pnpm/@crawlee+types@3.16.0/node\_modules/@crawlee/types/browser.d.ts:39
28
28
 
29
29
  Cookie expiration date, session cookie if not set
30
30
 
@@ -34,7 +34,7 @@ Cookie expiration date, session cookie if not set
34
34
 
35
35
  > `optional` **httpOnly**: `boolean`
36
36
 
37
- Defined in: node\_modules/.pnpm/@crawlee+types@3.15.1/node\_modules/@crawlee/types/browser.d.ts:31
37
+ Defined in: node\_modules/.pnpm/@crawlee+types@3.16.0/node\_modules/@crawlee/types/browser.d.ts:31
38
38
 
39
39
  True if cookie is http-only.
40
40
 
@@ -44,7 +44,7 @@ True if cookie is http-only.
44
44
 
45
45
  > **name**: `string`
46
46
 
47
- Defined in: node\_modules/.pnpm/@crawlee+types@3.15.1/node\_modules/@crawlee/types/browser.d.ts:6
47
+ Defined in: node\_modules/.pnpm/@crawlee+types@3.16.0/node\_modules/@crawlee/types/browser.d.ts:6
48
48
 
49
49
  Cookie name.
50
50
 
@@ -54,7 +54,7 @@ Cookie name.
54
54
 
55
55
  > `optional` **path**: `string`
56
56
 
57
- Defined in: node\_modules/.pnpm/@crawlee+types@3.15.1/node\_modules/@crawlee/types/browser.d.ts:23
57
+ Defined in: node\_modules/.pnpm/@crawlee+types@3.16.0/node\_modules/@crawlee/types/browser.d.ts:23
58
58
 
59
59
  Cookie path.
60
60
 
@@ -64,7 +64,7 @@ Cookie path.
64
64
 
65
65
  > `optional` **priority**: `"Low"` \| `"Medium"` \| `"High"`
66
66
 
67
- Defined in: node\_modules/.pnpm/@crawlee+types@3.15.1/node\_modules/@crawlee/types/browser.d.ts:43
67
+ Defined in: node\_modules/.pnpm/@crawlee+types@3.16.0/node\_modules/@crawlee/types/browser.d.ts:43
68
68
 
69
69
  Cookie Priority.
70
70
 
@@ -74,7 +74,7 @@ Cookie Priority.
74
74
 
75
75
  > `optional` **sameParty**: `boolean`
76
76
 
77
- Defined in: node\_modules/.pnpm/@crawlee+types@3.15.1/node\_modules/@crawlee/types/browser.d.ts:47
77
+ Defined in: node\_modules/.pnpm/@crawlee+types@3.16.0/node\_modules/@crawlee/types/browser.d.ts:47
78
78
 
79
79
  True if cookie is SameParty.
80
80
 
@@ -84,7 +84,7 @@ True if cookie is SameParty.
84
84
 
85
85
  > `optional` **sameSite**: `"Strict"` \| `"Lax"` \| `"None"`
86
86
 
87
- Defined in: node\_modules/.pnpm/@crawlee+types@3.15.1/node\_modules/@crawlee/types/browser.d.ts:35
87
+ Defined in: node\_modules/.pnpm/@crawlee+types@3.16.0/node\_modules/@crawlee/types/browser.d.ts:35
88
88
 
89
89
  Cookie SameSite type.
90
90
 
@@ -94,7 +94,7 @@ Cookie SameSite type.
94
94
 
95
95
  > `optional` **secure**: `boolean`
96
96
 
97
- Defined in: node\_modules/.pnpm/@crawlee+types@3.15.1/node\_modules/@crawlee/types/browser.d.ts:27
97
+ Defined in: node\_modules/.pnpm/@crawlee+types@3.16.0/node\_modules/@crawlee/types/browser.d.ts:27
98
98
 
99
99
  True if cookie is secure.
100
100
 
@@ -104,7 +104,7 @@ True if cookie is secure.
104
104
 
105
105
  > `optional` **sourcePort**: `number`
106
106
 
107
- Defined in: node\_modules/.pnpm/@crawlee+types@3.15.1/node\_modules/@crawlee/types/browser.d.ts:57
107
+ Defined in: node\_modules/.pnpm/@crawlee+types@3.16.0/node\_modules/@crawlee/types/browser.d.ts:57
108
108
 
109
109
  Cookie source port. Valid values are `-1` or `1-65535`, `-1` indicates an unspecified port.
110
110
  An unspecified port value allows protocol clients to emulate legacy cookie scope for the port.
@@ -116,7 +116,7 @@ This is a temporary ability and it will be removed in the future.
116
116
 
117
117
  > `optional` **sourceScheme**: `"Unset"` \| `"NonSecure"` \| `"Secure"`
118
118
 
119
- Defined in: node\_modules/.pnpm/@crawlee+types@3.15.1/node\_modules/@crawlee/types/browser.d.ts:51
119
+ Defined in: node\_modules/.pnpm/@crawlee+types@3.16.0/node\_modules/@crawlee/types/browser.d.ts:51
120
120
 
121
121
  Cookie source scheme type.
122
122
 
@@ -126,7 +126,7 @@ Cookie source scheme type.
126
126
 
127
127
  > `optional` **url**: `string`
128
128
 
129
- Defined in: node\_modules/.pnpm/@crawlee+types@3.15.1/node\_modules/@crawlee/types/browser.d.ts:15
129
+ Defined in: node\_modules/.pnpm/@crawlee+types@3.16.0/node\_modules/@crawlee/types/browser.d.ts:15
130
130
 
131
131
  The request-URI to associate with the setting of the cookie. This value can affect the
132
132
  default domain, path, source port, and source scheme values of the created cookie.
@@ -137,6 +137,6 @@ default domain, path, source port, and source scheme values of the created cooki
137
137
 
138
138
  > **value**: `string`
139
139
 
140
- Defined in: node\_modules/.pnpm/@crawlee+types@3.15.1/node\_modules/@crawlee/types/browser.d.ts:10
140
+ Defined in: node\_modules/.pnpm/@crawlee+types@3.16.0/node\_modules/@crawlee/types/browser.d.ts:10
141
141
 
142
142
  Cookie value.
@@ -6,7 +6,7 @@
6
6
 
7
7
  # Interface: DispatchedEngineAction
8
8
 
9
- Defined in: [packages/web-fetcher/src/engine/base.ts:229](https://github.com/isdk/web-fetcher.js/blob/1f80c3c783d0455bd4ff73248c57c2c39ab9f7c9/src/engine/base.ts#L229)
9
+ Defined in: [packages/web-fetcher/src/engine/base.ts:246](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/engine/base.ts#L246)
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:230](https://github.com/isdk/web-fetcher.js/blob/1f80c3c783d0455bd4ff73248c57c2c39ab9f7c9/src/engine/base.ts#L230)
24
+ Defined in: [packages/web-fetcher/src/engine/base.ts:247](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/engine/base.ts#L247)
25
25
 
26
26
  ***
27
27
 
@@ -29,7 +29,7 @@ Defined in: [packages/web-fetcher/src/engine/base.ts:230](https://github.com/isd
29
29
 
30
30
  > **reject**: (`reason?`) => `void`
31
31
 
32
- Defined in: [packages/web-fetcher/src/engine/base.ts:232](https://github.com/isdk/web-fetcher.js/blob/1f80c3c783d0455bd4ff73248c57c2c39ab9f7c9/src/engine/base.ts#L232)
32
+ Defined in: [packages/web-fetcher/src/engine/base.ts:249](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/engine/base.ts#L249)
33
33
 
34
34
  #### Parameters
35
35
 
@@ -47,7 +47,7 @@ Defined in: [packages/web-fetcher/src/engine/base.ts:232](https://github.com/isd
47
47
 
48
48
  > **resolve**: (`value?`) => `void`
49
49
 
50
- Defined in: [packages/web-fetcher/src/engine/base.ts:231](https://github.com/isdk/web-fetcher.js/blob/1f80c3c783d0455bd4ff73248c57c2c39ab9f7c9/src/engine/base.ts#L231)
50
+ Defined in: [packages/web-fetcher/src/engine/base.ts:248](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/engine/base.ts#L248)
51
51
 
52
52
  #### Parameters
53
53
 
@@ -6,7 +6,7 @@
6
6
 
7
7
  # Interface: EvaluateActionOptions
8
8
 
9
- Defined in: [packages/web-fetcher/src/engine/base.ts:178](https://github.com/isdk/web-fetcher.js/blob/1f80c3c783d0455bd4ff73248c57c2c39ab9f7c9/src/engine/base.ts#L178)
9
+ Defined in: [packages/web-fetcher/src/engine/base.ts:179](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/engine/base.ts#L179)
10
10
 
11
11
  Options for the [FetchEngine.evaluate](../classes/FetchEngine.md#evaluate) action, specifying the function to execute and its arguments.
12
12
 
@@ -51,7 +51,7 @@ automatically detect the change, trigger a navigation, and wait for the new page
51
51
 
52
52
  > `optional` **args**: `any`
53
53
 
54
- Defined in: [packages/web-fetcher/src/engine/base.ts:199](https://github.com/isdk/web-fetcher.js/blob/1f80c3c783d0455bd4ff73248c57c2c39ab9f7c9/src/engine/base.ts#L199)
54
+ Defined in: [packages/web-fetcher/src/engine/base.ts:200](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/engine/base.ts#L200)
55
55
 
56
56
  Data to pass to the function.
57
57
 
@@ -66,7 +66,7 @@ Recommended to use an array or object for multiple values.
66
66
 
67
67
  > **fn**: `string` \| (...`args`) => `any`
68
68
 
69
- Defined in: [packages/web-fetcher/src/engine/base.ts:191](https://github.com/isdk/web-fetcher.js/blob/1f80c3c783d0455bd4ff73248c57c2c39ab9f7c9/src/engine/base.ts#L191)
69
+ Defined in: [packages/web-fetcher/src/engine/base.ts:192](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/engine/base.ts#L192)
70
70
 
71
71
  The function or expression to execute.
72
72
 
@@ -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/1f80c3c783d0455bd4ff73248c57c2c39ab9f7c9/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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/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:49](https://github.com/isdk/web-fetcher.js/blob/1f80c3c783d0455bd4ff73248c57c2c39ab9f7c9/src/action/fetch-action.ts#L49)
25
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:49](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/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:49](https://github.
34
34
 
35
35
  > `optional` **args**: `any`
36
36
 
37
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:52](https://github.com/isdk/web-fetcher.js/blob/1f80c3c783d0455bd4ff73248c57c2c39ab9f7c9/src/action/fetch-action.ts#L52)
37
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:52](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/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:52](https://github.
46
46
 
47
47
  > `optional` **failOnError**: `boolean`
48
48
 
49
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:57](https://github.com/isdk/web-fetcher.js/blob/1f80c3c783d0455bd4ff73248c57c2c39ab9f7c9/src/action/fetch-action.ts#L57)
49
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:57](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/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:57](https://github.
58
58
 
59
59
  > `optional` **failOnTimeout**: `boolean`
60
60
 
61
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:59](https://github.com/isdk/web-fetcher.js/blob/1f80c3c783d0455bd4ff73248c57c2c39ab9f7c9/src/action/fetch-action.ts#L59)
61
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:59](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/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:59](https://github.
70
70
 
71
71
  > `optional` **id**: `string`
72
72
 
73
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:47](https://github.com/isdk/web-fetcher.js/blob/1f80c3c783d0455bd4ff73248c57c2c39ab9f7c9/src/action/fetch-action.ts#L47)
73
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:47](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/action/fetch-action.ts#L47)
74
74
 
75
75
  #### Inherited from
76
76
 
@@ -82,7 +82,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:47](https://github.
82
82
 
83
83
  > `optional` **index**: `number`
84
84
 
85
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:50](https://github.com/isdk/web-fetcher.js/blob/1f80c3c783d0455bd4ff73248c57c2c39ab9f7c9/src/action/fetch-action.ts#L50)
85
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:50](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/action/fetch-action.ts#L50)
86
86
 
87
87
  #### Inherited from
88
88
 
@@ -94,7 +94,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:50](https://github.
94
94
 
95
95
  > `optional` **maxRetries**: `number`
96
96
 
97
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:61](https://github.com/isdk/web-fetcher.js/blob/1f80c3c783d0455bd4ff73248c57c2c39ab9f7c9/src/action/fetch-action.ts#L61)
97
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:61](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/action/fetch-action.ts#L61)
98
98
 
99
99
  #### Inherited from
100
100
 
@@ -106,7 +106,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:61](https://github.
106
106
 
107
107
  > `optional` **name**: `string`
108
108
 
109
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:48](https://github.com/isdk/web-fetcher.js/blob/1f80c3c783d0455bd4ff73248c57c2c39ab9f7c9/src/action/fetch-action.ts#L48)
109
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:48](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/action/fetch-action.ts#L48)
110
110
 
111
111
  #### Inherited from
112
112
 
@@ -118,7 +118,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:48](https://github.
118
118
 
119
119
  > **params**: `ExtractSchema`
120
120
 
121
- Defined in: [packages/web-fetcher/src/action/definitions/extract.ts:6](https://github.com/isdk/web-fetcher.js/blob/1f80c3c783d0455bd4ff73248c57c2c39ab9f7c9/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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/action/definitions/extract.ts#L6)
122
122
 
123
123
  #### Overrides
124
124
 
@@ -130,7 +130,7 @@ Defined in: [packages/web-fetcher/src/action/definitions/extract.ts:6](https://g
130
130
 
131
131
  > `optional` **storeAs**: `string`
132
132
 
133
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:54](https://github.com/isdk/web-fetcher.js/blob/1f80c3c783d0455bd4ff73248c57c2c39ab9f7c9/src/action/fetch-action.ts#L54)
133
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:54](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/action/fetch-action.ts#L54)
134
134
 
135
135
  #### Inherited from
136
136
 
@@ -142,7 +142,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:54](https://github.
142
142
 
143
143
  > `optional` **timeoutMs**: `number`
144
144
 
145
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:60](https://github.com/isdk/web-fetcher.js/blob/1f80c3c783d0455bd4ff73248c57c2c39ab9f7c9/src/action/fetch-action.ts#L60)
145
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:60](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/action/fetch-action.ts#L60)
146
146
 
147
147
  #### Inherited from
148
148
 
@@ -6,7 +6,7 @@
6
6
 
7
7
  # Interface: FetchActionInContext
8
8
 
9
- Defined in: [packages/web-fetcher/src/core/context.ts:18](https://github.com/isdk/web-fetcher.js/blob/1f80c3c783d0455bd4ff73248c57c2c39ab9f7c9/src/core/context.ts#L18)
9
+ Defined in: [packages/web-fetcher/src/core/context.ts:18](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/context.ts#L18)
10
10
 
11
11
  Represents the state of an action being executed within a context.
12
12
 
@@ -29,7 +29,7 @@ nesting depth, and any errors encountered during execution.
29
29
 
30
30
  > `optional` **action**: `string` \| [`FetchAction`](../classes/FetchAction.md)
31
31
 
32
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:49](https://github.com/isdk/web-fetcher.js/blob/1f80c3c783d0455bd4ff73248c57c2c39ab9f7c9/src/action/fetch-action.ts#L49)
32
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:49](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/action/fetch-action.ts#L49)
33
33
 
34
34
  #### Inherited from
35
35
 
@@ -41,7 +41,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:49](https://github.
41
41
 
42
42
  > `optional` **args**: `any`
43
43
 
44
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:52](https://github.com/isdk/web-fetcher.js/blob/1f80c3c783d0455bd4ff73248c57c2c39ab9f7c9/src/action/fetch-action.ts#L52)
44
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:52](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/action/fetch-action.ts#L52)
45
45
 
46
46
  #### Inherited from
47
47
 
@@ -53,7 +53,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:52](https://github.
53
53
 
54
54
  > `optional` **collectors**: `_RequireAtLeastOne`\<[`BaseFetchCollectorActionProperties`](BaseFetchCollectorActionProperties.md), `"name"` \| `"id"` \| `"action"`\>[]
55
55
 
56
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:87](https://github.com/isdk/web-fetcher.js/blob/1f80c3c783d0455bd4ff73248c57c2c39ab9f7c9/src/action/fetch-action.ts#L87)
56
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:87](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/action/fetch-action.ts#L87)
57
57
 
58
58
  #### Inherited from
59
59
 
@@ -65,7 +65,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:87](https://github.
65
65
 
66
66
  > `optional` **depth**: `number`
67
67
 
68
- Defined in: [packages/web-fetcher/src/core/context.ts:30](https://github.com/isdk/web-fetcher.js/blob/1f80c3c783d0455bd4ff73248c57c2c39ab9f7c9/src/core/context.ts#L30)
68
+ Defined in: [packages/web-fetcher/src/core/context.ts:30](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/context.ts#L30)
69
69
 
70
70
  The nesting depth of the action. Top-level actions (executed directly by the session) have a depth of 0.
71
71
 
@@ -75,7 +75,7 @@ The nesting depth of the action. Top-level actions (executed directly by the ses
75
75
 
76
76
  > `optional` **error**: `Error`
77
77
 
78
- Defined in: [packages/web-fetcher/src/core/context.ts:26](https://github.com/isdk/web-fetcher.js/blob/1f80c3c783d0455bd4ff73248c57c2c39ab9f7c9/src/core/context.ts#L26)
78
+ Defined in: [packages/web-fetcher/src/core/context.ts:26](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/context.ts#L26)
79
79
 
80
80
  Error encountered during action execution, if any.
81
81
 
@@ -85,7 +85,7 @@ Error encountered during action execution, if any.
85
85
 
86
86
  > `optional` **failOnError**: `boolean`
87
87
 
88
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:57](https://github.com/isdk/web-fetcher.js/blob/1f80c3c783d0455bd4ff73248c57c2c39ab9f7c9/src/action/fetch-action.ts#L57)
88
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:57](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/action/fetch-action.ts#L57)
89
89
 
90
90
  #### Inherited from
91
91
 
@@ -97,7 +97,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:57](https://github.
97
97
 
98
98
  > `optional` **failOnTimeout**: `boolean`
99
99
 
100
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:59](https://github.com/isdk/web-fetcher.js/blob/1f80c3c783d0455bd4ff73248c57c2c39ab9f7c9/src/action/fetch-action.ts#L59)
100
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:59](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/action/fetch-action.ts#L59)
101
101
 
102
102
  #### Inherited from
103
103
 
@@ -109,7 +109,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:59](https://github.
109
109
 
110
110
  > `optional` **id**: `string`
111
111
 
112
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:47](https://github.com/isdk/web-fetcher.js/blob/1f80c3c783d0455bd4ff73248c57c2c39ab9f7c9/src/action/fetch-action.ts#L47)
112
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:47](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/action/fetch-action.ts#L47)
113
113
 
114
114
  #### Inherited from
115
115
 
@@ -121,7 +121,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:47](https://github.
121
121
 
122
122
  > `optional` **index**: `number`
123
123
 
124
- Defined in: [packages/web-fetcher/src/core/context.ts:22](https://github.com/isdk/web-fetcher.js/blob/1f80c3c783d0455bd4ff73248c57c2c39ab9f7c9/src/core/context.ts#L22)
124
+ Defined in: [packages/web-fetcher/src/core/context.ts:22](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/core/context.ts#L22)
125
125
 
126
126
  The 0-based index of the action in the execution sequence.
127
127
 
@@ -135,7 +135,7 @@ The 0-based index of the action in the execution sequence.
135
135
 
136
136
  > `optional` **maxRetries**: `number`
137
137
 
138
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:61](https://github.com/isdk/web-fetcher.js/blob/1f80c3c783d0455bd4ff73248c57c2c39ab9f7c9/src/action/fetch-action.ts#L61)
138
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:61](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/action/fetch-action.ts#L61)
139
139
 
140
140
  #### Inherited from
141
141
 
@@ -147,7 +147,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:61](https://github.
147
147
 
148
148
  > `optional` **name**: `string`
149
149
 
150
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:48](https://github.com/isdk/web-fetcher.js/blob/1f80c3c783d0455bd4ff73248c57c2c39ab9f7c9/src/action/fetch-action.ts#L48)
150
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:48](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/action/fetch-action.ts#L48)
151
151
 
152
152
  #### Inherited from
153
153
 
@@ -159,7 +159,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:48](https://github.
159
159
 
160
160
  > `optional` **params**: `any`
161
161
 
162
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:51](https://github.com/isdk/web-fetcher.js/blob/1f80c3c783d0455bd4ff73248c57c2c39ab9f7c9/src/action/fetch-action.ts#L51)
162
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:51](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/action/fetch-action.ts#L51)
163
163
 
164
164
  #### Inherited from
165
165
 
@@ -171,7 +171,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:51](https://github.
171
171
 
172
172
  > `optional` **storeAs**: `string`
173
173
 
174
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:54](https://github.com/isdk/web-fetcher.js/blob/1f80c3c783d0455bd4ff73248c57c2c39ab9f7c9/src/action/fetch-action.ts#L54)
174
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:54](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/action/fetch-action.ts#L54)
175
175
 
176
176
  #### Inherited from
177
177
 
@@ -183,7 +183,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:54](https://github.
183
183
 
184
184
  > `optional` **timeoutMs**: `number`
185
185
 
186
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:60](https://github.com/isdk/web-fetcher.js/blob/1f80c3c783d0455bd4ff73248c57c2c39ab9f7c9/src/action/fetch-action.ts#L60)
186
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:60](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/action/fetch-action.ts#L60)
187
187
 
188
188
  #### Inherited from
189
189
 
@@ -6,7 +6,7 @@
6
6
 
7
7
  # Interface: FetchActionProperties
8
8
 
9
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:86](https://github.com/isdk/web-fetcher.js/blob/1f80c3c783d0455bd4ff73248c57c2c39ab9f7c9/src/action/fetch-action.ts#L86)
9
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:86](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/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:86](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:49](https://github.com/isdk/web-fetcher.js/blob/1f80c3c783d0455bd4ff73248c57c2c39ab9f7c9/src/action/fetch-action.ts#L49)
29
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:49](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/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:49](https://github.
38
38
 
39
39
  > `optional` **args**: `any`
40
40
 
41
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:52](https://github.com/isdk/web-fetcher.js/blob/1f80c3c783d0455bd4ff73248c57c2c39ab9f7c9/src/action/fetch-action.ts#L52)
41
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:52](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/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:52](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:87](https://github.com/isdk/web-fetcher.js/blob/1f80c3c783d0455bd4ff73248c57c2c39ab9f7c9/src/action/fetch-action.ts#L87)
53
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:87](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/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:87](https://github.
58
58
 
59
59
  > `optional` **failOnError**: `boolean`
60
60
 
61
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:57](https://github.com/isdk/web-fetcher.js/blob/1f80c3c783d0455bd4ff73248c57c2c39ab9f7c9/src/action/fetch-action.ts#L57)
61
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:57](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/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:57](https://github.
70
70
 
71
71
  > `optional` **failOnTimeout**: `boolean`
72
72
 
73
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:59](https://github.com/isdk/web-fetcher.js/blob/1f80c3c783d0455bd4ff73248c57c2c39ab9f7c9/src/action/fetch-action.ts#L59)
73
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:59](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/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:59](https://github.
82
82
 
83
83
  > `optional` **id**: `string`
84
84
 
85
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:47](https://github.com/isdk/web-fetcher.js/blob/1f80c3c783d0455bd4ff73248c57c2c39ab9f7c9/src/action/fetch-action.ts#L47)
85
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:47](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/action/fetch-action.ts#L47)
86
86
 
87
87
  #### Inherited from
88
88
 
@@ -94,7 +94,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:47](https://github.
94
94
 
95
95
  > `optional` **index**: `number`
96
96
 
97
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:50](https://github.com/isdk/web-fetcher.js/blob/1f80c3c783d0455bd4ff73248c57c2c39ab9f7c9/src/action/fetch-action.ts#L50)
97
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:50](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/action/fetch-action.ts#L50)
98
98
 
99
99
  #### Inherited from
100
100
 
@@ -106,7 +106,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:50](https://github.
106
106
 
107
107
  > `optional` **maxRetries**: `number`
108
108
 
109
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:61](https://github.com/isdk/web-fetcher.js/blob/1f80c3c783d0455bd4ff73248c57c2c39ab9f7c9/src/action/fetch-action.ts#L61)
109
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:61](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/action/fetch-action.ts#L61)
110
110
 
111
111
  #### Inherited from
112
112
 
@@ -118,7 +118,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:61](https://github.
118
118
 
119
119
  > `optional` **name**: `string`
120
120
 
121
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:48](https://github.com/isdk/web-fetcher.js/blob/1f80c3c783d0455bd4ff73248c57c2c39ab9f7c9/src/action/fetch-action.ts#L48)
121
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:48](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/action/fetch-action.ts#L48)
122
122
 
123
123
  #### Inherited from
124
124
 
@@ -130,7 +130,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:48](https://github.
130
130
 
131
131
  > `optional` **params**: `any`
132
132
 
133
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:51](https://github.com/isdk/web-fetcher.js/blob/1f80c3c783d0455bd4ff73248c57c2c39ab9f7c9/src/action/fetch-action.ts#L51)
133
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:51](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/action/fetch-action.ts#L51)
134
134
 
135
135
  #### Inherited from
136
136
 
@@ -142,7 +142,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:51](https://github.
142
142
 
143
143
  > `optional` **storeAs**: `string`
144
144
 
145
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:54](https://github.com/isdk/web-fetcher.js/blob/1f80c3c783d0455bd4ff73248c57c2c39ab9f7c9/src/action/fetch-action.ts#L54)
145
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:54](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/action/fetch-action.ts#L54)
146
146
 
147
147
  #### Inherited from
148
148
 
@@ -154,7 +154,7 @@ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:54](https://github.
154
154
 
155
155
  > `optional` **timeoutMs**: `number`
156
156
 
157
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:60](https://github.com/isdk/web-fetcher.js/blob/1f80c3c783d0455bd4ff73248c57c2c39ab9f7c9/src/action/fetch-action.ts#L60)
157
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:60](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/action/fetch-action.ts#L60)
158
158
 
159
159
  #### Inherited from
160
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/1f80c3c783d0455bd4ff73248c57c2c39ab9f7c9/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/e691a2370f59d15979b47994c8ca14d7b7d2edd3/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:42](https://github.com/isdk/web-fetcher.js/blob/1f80c3c783d0455bd4ff73248c57c2c39ab9f7c9/src/action/fetch-action.ts#L42)
23
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:42](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/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:42](https://github.
28
28
 
29
29
  > `optional` **meta**: `FetchActionMeta`
30
30
 
31
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:43](https://github.com/isdk/web-fetcher.js/blob/1f80c3c783d0455bd4ff73248c57c2c39ab9f7c9/src/action/fetch-action.ts#L43)
31
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:43](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/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:43](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:41](https://github.com/isdk/web-fetcher.js/blob/1f80c3c783d0455bd4ff73248c57c2c39ab9f7c9/src/action/fetch-action.ts#L41)
39
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:41](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/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:41](https://github.
44
44
 
45
45
  > `optional` **returnType**: `R`
46
46
 
47
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:40](https://github.com/isdk/web-fetcher.js/blob/1f80c3c783d0455bd4ff73248c57c2c39ab9f7c9/src/action/fetch-action.ts#L40)
47
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:40](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/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:40](https://github.
52
52
 
53
53
  > **status**: [`FetchActionResultStatus`](../enumerations/FetchActionResultStatus.md)
54
54
 
55
- Defined in: [packages/web-fetcher/src/action/fetch-action.ts:39](https://github.com/isdk/web-fetcher.js/blob/1f80c3c783d0455bd4ff73248c57c2c39ab9f7c9/src/action/fetch-action.ts#L39)
55
+ Defined in: [packages/web-fetcher/src/action/fetch-action.ts:39](https://github.com/isdk/web-fetcher.js/blob/e691a2370f59d15979b47994c8ca14d7b7d2edd3/src/action/fetch-action.ts#L39)