Skip to content

Commit 72ca824

Browse files
Version Packages
1 parent 0144c5f commit 72ca824

File tree

4 files changed

+25
-25
lines changed

4 files changed

+25
-25
lines changed

.changeset/eighty-rivers-enjoy.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: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
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 descriminator field required when used with `oneOf` keyword
26+
327
## 0.66.7
428

529
### 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)