Skip to content

Commit a204719

Browse files
authored
Merge pull request #2007 from hey-api/changeset-release/main
Version Packages
2 parents 204d4bd + 792732a commit a204719

File tree

5 files changed

+27
-30
lines changed

5 files changed

+27
-30
lines changed

.changeset/eighty-rivers-enjoy.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/nervous-months-brake.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/serious-bottles-buy.md

Lines changed: 0 additions & 19 deletions
This file was deleted.

packages/openapi-ts/CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11
# @hey-api/openapi-ts
22

3+
## 0.67.0
4+
5+
### Minor Changes
6+
7+
- [#2003](https://github.com/hey-api/openapi-ts/pull/2003) [`1504a06`](https://github.com/hey-api/openapi-ts/commit/1504a0642fdb4f856d1650fade2d30988b35b4ff) Thanks [@mrlubos](https://github.com/mrlubos)! - feat: respect `moduleResolution` value in `tsconfig.json`
8+
9+
### Respecting `moduleResolution` value in `tsconfig.json`
10+
11+
This release introduces functionality related to your `tsconfig.json` file. The initial feature properly respects the value of your `moduleResolution` field. If you're using `nodenext`, the relative module paths in your output will be appended with `.js`. To preserve the previous behavior where we never appended `.js` to relative module paths, set `output.tsConfigPath` to `off`.
12+
13+
```js
14+
export default {
15+
input: 'https://get.heyapi.dev/hey-api/backend',
16+
output: {
17+
path: 'src/client',
18+
tsConfigPath: 'off',
19+
},
20+
};
21+
```
22+
23+
### Patch Changes
24+
25+
- [#2006](https://github.com/hey-api/openapi-ts/pull/2006) [`aa10522`](https://github.com/hey-api/openapi-ts/commit/aa10522f2bd018a417d875e5ab12ed0a848d2e49) Thanks [@Liooo](https://github.com/Liooo)! - fix: make discriminator field required when used with `oneOf` keyword
26+
27+
- [#2009](https://github.com/hey-api/openapi-ts/pull/2009) [`f45ba8e`](https://github.com/hey-api/openapi-ts/commit/f45ba8e96872a13be71c0d07e134f8c6717458d4) Thanks [@mrlubos](https://github.com/mrlubos)! - fix: avoid including underscore for appended types (e.g. data, error, response) when preserving identifier case
28+
329
## 0.66.7
430

531
### Patch Changes

packages/openapi-ts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hey-api/openapi-ts",
3-
"version": "0.66.7",
3+
"version": "0.67.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)