@@ -123,7 +123,7 @@ This section documents our most commonly used API methods. Additional APIs are d
123
123
Arguments:
124
124
125
125
* ** url** ` string | URL | UrlObject `
126
- * ** options** [ ` RequestOptions ` ] ( ./docs/api/Dispatcher.md#parameter-requestoptions )
126
+ * ** options** [ ` RequestOptions ` ] ( ./docs/docs/ api/Dispatcher.md#parameter-requestoptions )
127
127
* ** dispatcher** ` Dispatcher ` - Default: [ getGlobalDispatcher] ( #undicigetglobaldispatcher )
128
128
* ** method** ` String ` - Default: ` PUT ` if ` options.body ` , otherwise ` GET `
129
129
* ** maxRedirections** ` Integer ` - Default: ` 0 `
@@ -132,14 +132,14 @@ Returns a promise with the result of the `Dispatcher.request` method.
132
132
133
133
Calls ` options.dispatcher.request(options) ` .
134
134
135
- See [ Dispatcher.request] ( ./docs/api/Dispatcher.md#dispatcherrequestoptions-callback ) for more details, and [ request examples] ( ./examples/README.md ) for examples.
135
+ See [ Dispatcher.request] ( ./docs/docs/ api/Dispatcher.md#dispatcherrequestoptions-callback ) for more details, and [ request examples] ( ./examples/README.md ) for examples.
136
136
137
137
### ` undici.stream([url, options, ]factory): Promise `
138
138
139
139
Arguments:
140
140
141
141
* ** url** ` string | URL | UrlObject `
142
- * ** options** [ ` StreamOptions ` ] ( ./docs/api/Dispatcher.md#parameter-streamoptions )
142
+ * ** options** [ ` StreamOptions ` ] ( ./docs/docs/ api/Dispatcher.md#parameter-streamoptions )
143
143
* ** dispatcher** ` Dispatcher ` - Default: [ getGlobalDispatcher] ( #undicigetglobaldispatcher )
144
144
* ** method** ` String ` - Default: ` PUT ` if ` options.body ` , otherwise ` GET `
145
145
* ** maxRedirections** ` Integer ` - Default: ` 0 `
@@ -149,14 +149,14 @@ Returns a promise with the result of the `Dispatcher.stream` method.
149
149
150
150
Calls ` options.dispatcher.stream(options, factory) ` .
151
151
152
- See [ Dispatcher.stream] ( ./docs/api/Dispatcher.md#dispatcherstreamoptions-factory-callback ) for more details.
152
+ See [ Dispatcher.stream] ( ./docs/docs/ api/Dispatcher.md#dispatcherstreamoptions-factory-callback ) for more details.
153
153
154
154
### ` undici.pipeline([url, options, ]handler): Duplex `
155
155
156
156
Arguments:
157
157
158
158
* ** url** ` string | URL | UrlObject `
159
- * ** options** [ ` PipelineOptions ` ] ( ./docs/api/Dispatcher.md#parameter-pipelineoptions )
159
+ * ** options** [ ` PipelineOptions ` ] ( ./docs/docs/ api/Dispatcher.md#parameter-pipelineoptions )
160
160
* ** dispatcher** ` Dispatcher ` - Default: [ getGlobalDispatcher] ( #undicigetglobaldispatcher )
161
161
* ** method** ` String ` - Default: ` PUT ` if ` options.body ` , otherwise ` GET `
162
162
* ** maxRedirections** ` Integer ` - Default: ` 0 `
@@ -166,7 +166,7 @@ Returns: `stream.Duplex`
166
166
167
167
Calls ` options.dispatch.pipeline(options, handler) ` .
168
168
169
- See [ Dispatcher.pipeline] ( ./docs/api/Dispatcher.md#dispatcherpipelineoptions-handler ) for more details.
169
+ See [ Dispatcher.pipeline] ( ./docs/docs/ api/Dispatcher.md#dispatcherpipelineoptions-handler ) for more details.
170
170
171
171
### ` undici.connect([url, options]): Promise `
172
172
@@ -175,7 +175,7 @@ Starts two-way communications with the requested resource using [HTTP CONNECT](h
175
175
Arguments:
176
176
177
177
* ** url** ` string | URL | UrlObject `
178
- * ** options** [ ` ConnectOptions ` ] ( ./docs/api/Dispatcher.md#parameter-connectoptions )
178
+ * ** options** [ ` ConnectOptions ` ] ( ./docs/docs/ api/Dispatcher.md#parameter-connectoptions )
179
179
* ** dispatcher** ` Dispatcher ` - Default: [ getGlobalDispatcher] ( #undicigetglobaldispatcher )
180
180
* ** maxRedirections** ` Integer ` - Default: ` 0 `
181
181
* ** callback** ` (err: Error | null, data: ConnectData | null) => void ` (optional)
@@ -184,7 +184,7 @@ Returns a promise with the result of the `Dispatcher.connect` method.
184
184
185
185
Calls ` options.dispatch.connect(options) ` .
186
186
187
- See [ Dispatcher.connect] ( ./docs/api/Dispatcher.md#dispatcherconnectoptions-callback ) for more details.
187
+ See [ Dispatcher.connect] ( ./docs/docs/ api/Dispatcher.md#dispatcherconnectoptions-callback ) for more details.
188
188
189
189
### ` undici.fetch(input[, init]): Promise `
190
190
@@ -335,7 +335,7 @@ Upgrade to a different protocol. See [MDN - HTTP - Protocol upgrade mechanism](h
335
335
Arguments:
336
336
337
337
* ** url** ` string | URL | UrlObject `
338
- * ** options** [ ` UpgradeOptions ` ] ( ./docs/api/Dispatcher.md#parameter-upgradeoptions )
338
+ * ** options** [ ` UpgradeOptions ` ] ( ./docs/docs/ api/Dispatcher.md#parameter-upgradeoptions )
339
339
* ** dispatcher** ` Dispatcher ` - Default: [ getGlobalDispatcher] ( #undicigetglobaldispatcher )
340
340
* ** maxRedirections** ` Integer ` - Default: ` 0 `
341
341
* ** callback** ` (error: Error | null, data: UpgradeData) => void ` (optional)
@@ -344,7 +344,7 @@ Returns a promise with the result of the `Dispatcher.upgrade` method.
344
344
345
345
Calls ` options.dispatcher.upgrade(options) ` .
346
346
347
- See [ Dispatcher.upgrade] ( ./docs/api/Dispatcher.md#dispatcherupgradeoptions-callback ) for more details.
347
+ See [ Dispatcher.upgrade] ( ./docs/docs/ api/Dispatcher.md#dispatcherupgradeoptions-callback ) for more details.
348
348
349
349
### ` undici.setGlobalDispatcher(dispatcher) `
350
350
0 commit comments