Skip to content

Commit 6924d8c

Browse files
committed
docs: generate
1 parent ce9ff3c commit 6924d8c

File tree

4 files changed

+18
-18
lines changed

4 files changed

+18
-18
lines changed

docs/classes/client.NetworkError.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ you should supply the `Response` generic depending on your Fetch implementation.
4747

4848
| Name | Type |
4949
| :------ | :------ |
50-
| `msgOrErrOrResponse` | `string` \| `Error` \| `Response` |
50+
| `msgOrErrOrResponse` | `string` \| `Response` \| `Error` |
5151

5252
#### Overrides
5353

docs/interfaces/client.ClientOptions.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -147,12 +147,6 @@ Useful for retrying requests that failed because the service is temporarily unav
147147
Returning `false` will report the `err` argument; however, throwing a different error from
148148
the `err` argument, will report it instead.
149149

150-
**`Default`**
151-
152-
```ts
153-
'() => false'
154-
```
155-
156150
##### Parameters
157151

158152
| Name | Type |
@@ -164,6 +158,12 @@ the `err` argument, will report it instead.
164158

165159
`Promise`<`boolean`\>
166160

161+
**`Default`**
162+
163+
```ts
164+
'() => false'
165+
```
166+
167167
___
168168

169169
### url

docs/interfaces/handler.HandlerOptions.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -135,11 +135,11 @@ ___
135135

136136
### onSubscribe
137137

138-
`Optional` **onSubscribe**: (`req`: [`Request`](handler.Request.md)<`RequestRaw`, `RequestContext`\>, `params`: [`RequestParams`](common.RequestParams.md)) => `void` \| readonly `GraphQLError`[] \| `ExecutionResult`<`ObjMap`<`unknown`\>, `ObjMap`<`unknown`\>\> \| [`Response`](../modules/handler.md#response) \| [`OperationArgs`](../modules/handler.md#operationargs)<`Context`\> \| `Promise`<`void` \| readonly `GraphQLError`[] \| `ExecutionResult`<`ObjMap`<`unknown`\>, `ObjMap`<`unknown`\>\> \| [`Response`](../modules/handler.md#response) \| [`OperationArgs`](../modules/handler.md#operationargs)<`Context`\>\>
138+
`Optional` **onSubscribe**: (`req`: [`Request`](handler.Request.md)<`RequestRaw`, `RequestContext`\>, `params`: [`RequestParams`](common.RequestParams.md)) => `void` \| `ExecutionResult`<`ObjMap`<`unknown`\>, `ObjMap`<`unknown`\>\> \| [`Response`](../modules/handler.md#response) \| [`OperationArgs`](../modules/handler.md#operationargs)<`Context`\> \| readonly `GraphQLError`[] \| `Promise`<`void` \| `ExecutionResult`<`ObjMap`<`unknown`\>, `ObjMap`<`unknown`\>\> \| [`Response`](../modules/handler.md#response) \| [`OperationArgs`](../modules/handler.md#operationargs)<`Context`\> \| readonly `GraphQLError`[]\>
139139

140140
#### Type declaration
141141

142-
▸ (`req`, `params`): `void` \| readonly `GraphQLError`[] \| `ExecutionResult`<`ObjMap`<`unknown`\>, `ObjMap`<`unknown`\>\> \| [`Response`](../modules/handler.md#response) \| [`OperationArgs`](../modules/handler.md#operationargs)<`Context`\> \| `Promise`<`void` \| readonly `GraphQLError`[] \| `ExecutionResult`<`ObjMap`<`unknown`\>, `ObjMap`<`unknown`\>\> \| [`Response`](../modules/handler.md#response) \| [`OperationArgs`](../modules/handler.md#operationargs)<`Context`\>\>
142+
▸ (`req`, `params`): `void` \| `ExecutionResult`<`ObjMap`<`unknown`\>, `ObjMap`<`unknown`\>\> \| [`Response`](../modules/handler.md#response) \| [`OperationArgs`](../modules/handler.md#operationargs)<`Context`\> \| readonly `GraphQLError`[] \| `Promise`<`void` \| `ExecutionResult`<`ObjMap`<`unknown`\>, `ObjMap`<`unknown`\>\> \| [`Response`](../modules/handler.md#response) \| [`OperationArgs`](../modules/handler.md#operationargs)<`Context`\> \| readonly `GraphQLError`[]\>
143143

144144
The subscribe callback executed right after processing the request
145145
before proceeding with the GraphQL operation execution.
@@ -177,7 +177,7 @@ further execution.
177177

178178
##### Returns
179179

180-
`void` \| readonly `GraphQLError`[] \| `ExecutionResult`<`ObjMap`<`unknown`\>, `ObjMap`<`unknown`\>\> \| [`Response`](../modules/handler.md#response) \| [`OperationArgs`](../modules/handler.md#operationargs)<`Context`\> \| `Promise`<`void` \| readonly `GraphQLError`[] \| `ExecutionResult`<`ObjMap`<`unknown`\>, `ObjMap`<`unknown`\>\> \| [`Response`](../modules/handler.md#response) \| [`OperationArgs`](../modules/handler.md#operationargs)<`Context`\>\>
180+
`void` \| `ExecutionResult`<`ObjMap`<`unknown`\>, `ObjMap`<`unknown`\>\> \| [`Response`](../modules/handler.md#response) \| [`OperationArgs`](../modules/handler.md#operationargs)<`Context`\> \| readonly `GraphQLError`[] \| `Promise`<`void` \| `ExecutionResult`<`ObjMap`<`unknown`\>, `ObjMap`<`unknown`\>\> \| [`Response`](../modules/handler.md#response) \| [`OperationArgs`](../modules/handler.md#operationargs)<`Context`\> \| readonly `GraphQLError`[]\>
181181

182182
___
183183

docs/modules/use_node.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,6 @@ server.listen(4000);
5050
console.log('Listening to port 4000');
5151
```
5252

53-
**`Deprecated`**
54-
55-
Please use [http](use_http.md#createhandler) or [http2](use_http2.md#createhandler) adapters instead.
56-
5753
#### Type parameters
5854

5955
| Name | Type |
@@ -86,10 +82,6 @@ server.listen(4000);
8682
console.log('Listening to port 4000');
8783
```
8884

89-
**`Category`**
90-
91-
Server/http
92-
9385
##### Parameters
9486

9587
| Name | Type |
@@ -100,3 +92,11 @@ Server/http
10092
##### Returns
10193

10294
`Promise`<`void`\>
95+
96+
**`Category`**
97+
98+
Server/http
99+
100+
**`Deprecated`**
101+
102+
Please use [http](use_http.md#createhandler) or [http2](use_http2.md#createhandler) adapters instead.

0 commit comments

Comments
 (0)