Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(zod): Docs missing generateEachHttpStatus option #1589

Merged
merged 1 commit into from
Aug 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 23 additions & 1 deletion docs/src/pages/reference/configuration/output.md
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ Gives you the possibility to use the `example`/`examples` fields from your OpenA

Type: `Boolean`.

Gives you the possibility to generate mocks for all the HTTP statuses in the `responses` fields in your OpenAPI specification.
Gives you the possibility to generate mocks for all the HTTP statuses in the `responses` fields in your OpenAPI specification. By default only the 200 OK response is generated.

#### baseUrl

Expand Down Expand Up @@ -1165,6 +1165,28 @@ module.exports = {
};
```

##### generateEachHttpStatus

Type: `Boolean`.

Gives you the possibility to generate mocks for all the HTTP statuses in the `responses` fields in your OpenAPI specification. By default only the 200 OK response is generated.

```js
module.exports = {
petstore: {
output: {
...
override: {
zod: {
generateEachHttpStatus: true,
},
},
},
...
},
};
```

#### mock

Type: `Object`.
Expand Down