Skip to content

Commit 53c88a6

Browse files
authored
Merge pull request #1898 from hey-api/changeset-release/main
2 parents 12bc295 + 3129b50 commit 53c88a6

File tree

3 files changed

+25
-24
lines changed

3 files changed

+25
-24
lines changed

.changeset/lemon-spies-hammer.md

-23
This file was deleted.

packages/openapi-ts/CHANGELOG.md

+24
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
11
# @hey-api/openapi-ts
22

3+
## 0.66.0
4+
5+
### Minor Changes
6+
7+
- [#1896](https://github.com/hey-api/openapi-ts/pull/1896) [`8840ed7`](https://github.com/hey-api/openapi-ts/commit/8840ed73df5ee718e803aa6e27b66e0c82ec3651) Thanks [@mrlubos](https://github.com/mrlubos)! - feat: support read-only and write-only properties
8+
9+
### Read-only and write-only fields
10+
11+
Starting with v0.66.0, `@hey-api/typescript` will generate separate types for payloads and responses if it detects any read-only or write-only fields. To preserve the previous behavior and generate a single type regardless, set `readOnlyWriteOnlyBehavior` to `off`.
12+
13+
```js
14+
export default {
15+
input: 'https://get.heyapi.dev/hey-api/backend',
16+
output: 'src/client',
17+
plugins: [
18+
// ...other plugins
19+
{
20+
name: '@hey-api/typescript',
21+
readOnlyWriteOnlyBehavior: 'off', // [!code ++]
22+
},
23+
],
24+
};
25+
```
26+
327
## 0.65.0
428

529
### Minor Changes

packages/openapi-ts/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hey-api/openapi-ts",
3-
"version": "0.65.0",
3+
"version": "0.66.0",
44
"description": "🚀 The OpenAPI to TypeScript codegen. Generate clients, SDKs, validators, and more.",
55
"homepage": "https://heyapi.dev/",
66
"repository": {

0 commit comments

Comments
 (0)