diff --git a/.changeset/dirty-parrots-watch.md b/.changeset/dirty-parrots-watch.md deleted file mode 100644 index e015f0dd7..000000000 --- a/.changeset/dirty-parrots-watch.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@hey-api/docs": patch ---- - -docs: add links to homepage diff --git a/.changeset/early-radios-sort.md b/.changeset/early-radios-sort.md deleted file mode 100644 index 862f2a512..000000000 --- a/.changeset/early-radios-sort.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@hey-api/openapi-ts": patch ---- - -fix: negative numbers in numeric enums diff --git a/.changeset/few-chefs-tell.md b/.changeset/few-chefs-tell.md deleted file mode 100644 index ff085662d..000000000 --- a/.changeset/few-chefs-tell.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@hey-api/openapi-ts": patch ---- - -fix: escape keys in schemas starting with digit but containing non-digit characters diff --git a/.changeset/hungry-birds-sing.md b/.changeset/hungry-birds-sing.md deleted file mode 100644 index cb390d820..000000000 --- a/.changeset/hungry-birds-sing.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@hey-api/openapi-ts": patch ---- - -fix: issue causing code to not generate (t.filter is not a function) diff --git a/.changeset/itchy-jobs-report.md b/.changeset/itchy-jobs-report.md deleted file mode 100644 index ae31739a3..000000000 --- a/.changeset/itchy-jobs-report.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@hey-api/openapi-ts": minor -"@hey-api/docs": patch ---- - -feat: remove enum postfix, use typescript enums in types when generated, export enums from types.gen.ts diff --git a/.changeset/light-ducks-cry.md b/.changeset/light-ducks-cry.md deleted file mode 100644 index 798751cc5..000000000 --- a/.changeset/light-ducks-cry.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@hey-api/openapi-ts": patch ---- - -fix: handle additional properties union diff --git a/.changeset/modern-teachers-peel.md b/.changeset/modern-teachers-peel.md deleted file mode 100644 index e4c65ce8f..000000000 --- a/.changeset/modern-teachers-peel.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@hey-api/openapi-ts": patch ---- - -fix: do not export inline enums diff --git a/.changeset/ninety-hairs-own.md b/.changeset/ninety-hairs-own.md deleted file mode 100644 index 2b588d1e1..000000000 --- a/.changeset/ninety-hairs-own.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@hey-api/docs": patch ---- - -docs: add examples diff --git a/.changeset/plenty-carpets-fold.md b/.changeset/plenty-carpets-fold.md deleted file mode 100644 index 51ffe99ec..000000000 --- a/.changeset/plenty-carpets-fold.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@hey-api/openapi-ts": patch ---- - -fix: prefix parameter type exports to avoid conflicts diff --git a/.changeset/small-wolves-train.md b/.changeset/small-wolves-train.md deleted file mode 100644 index d55ba2f74..000000000 --- a/.changeset/small-wolves-train.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@hey-api/openapi-ts": patch ---- - -fix: export operation data and response types diff --git a/.changeset/spotty-panthers-change.md b/.changeset/spotty-panthers-change.md deleted file mode 100644 index 43e7e0637..000000000 --- a/.changeset/spotty-panthers-change.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@hey-api/openapi-ts": patch ---- - -fix: handle cases where packages are installed globally diff --git a/.changeset/twenty-turkeys-reply.md b/.changeset/twenty-turkeys-reply.md deleted file mode 100644 index 8d4a3ce47..000000000 --- a/.changeset/twenty-turkeys-reply.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@hey-api/openapi-ts": patch ---- - -fix: handle cases where package.json does not exist diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 451039016..7a0231bd0 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,5 +1,15 @@ # @hey-api/docs +## 0.5.3 + +### Patch Changes + +- docs: add links to homepage ([#489](https://github.com/hey-api/openapi-ts/pull/489)) + +- feat: remove enum postfix, use typescript enums in types when generated, export enums from types.gen.ts ([#498](https://github.com/hey-api/openapi-ts/pull/498)) + +- docs: add examples ([#476](https://github.com/hey-api/openapi-ts/pull/476)) + ## 0.5.2 ### Patch Changes diff --git a/docs/package.json b/docs/package.json index 8e67eacfb..818e3865f 100644 --- a/docs/package.json +++ b/docs/package.json @@ -1,6 +1,6 @@ { "name": "@hey-api/docs", - "version": "0.5.2", + "version": "0.5.3", "description": "Documentation for OpenaAPI TypeScript.", "private": true, "type": "module", diff --git a/packages/openapi-ts/CHANGELOG.md b/packages/openapi-ts/CHANGELOG.md index 44bf6be6e..822077ed0 100644 --- a/packages/openapi-ts/CHANGELOG.md +++ b/packages/openapi-ts/CHANGELOG.md @@ -1,5 +1,31 @@ # @hey-api/openapi-ts +## 0.43.0 + +### Minor Changes + +- feat: remove enum postfix, use typescript enums in types when generated, export enums from types.gen.ts ([#498](https://github.com/hey-api/openapi-ts/pull/498)) + +### Patch Changes + +- fix: negative numbers in numeric enums ([#470](https://github.com/hey-api/openapi-ts/pull/470)) + +- fix: escape keys in schemas starting with digit but containing non-digit characters ([#502](https://github.com/hey-api/openapi-ts/pull/502)) + +- fix: issue causing code to not generate (t.filter is not a function) ([#507](https://github.com/hey-api/openapi-ts/pull/507)) + +- fix: handle additional properties union ([#499](https://github.com/hey-api/openapi-ts/pull/499)) + +- fix: do not export inline enums ([#508](https://github.com/hey-api/openapi-ts/pull/508)) + +- fix: prefix parameter type exports to avoid conflicts ([#501](https://github.com/hey-api/openapi-ts/pull/501)) + +- fix: export operation data and response types ([#500](https://github.com/hey-api/openapi-ts/pull/500)) + +- fix: handle cases where packages are installed globally ([#471](https://github.com/hey-api/openapi-ts/pull/471)) + +- fix: handle cases where package.json does not exist ([#471](https://github.com/hey-api/openapi-ts/pull/471)) + ## 0.42.1 ### Patch Changes diff --git a/packages/openapi-ts/package.json b/packages/openapi-ts/package.json index f23598d90..bff958a28 100644 --- a/packages/openapi-ts/package.json +++ b/packages/openapi-ts/package.json @@ -1,6 +1,6 @@ { "name": "@hey-api/openapi-ts", - "version": "0.42.1", + "version": "0.43.0", "type": "module", "description": "Turn your OpenAPI specification into a beautiful TypeScript client", "homepage": "https://heyapi.vercel.app/",