Closed github-actions[bot] closed 3 days ago
The latest updates on your projects. Learn more about Vercel for Git ↗︎
Name | Status | Preview | Comments | Updated (UTC) |
---|---|---|---|---|
hey-api-docs | ✅ Ready (Inspect) | Visit Preview | 💬 Add feedback | Nov 22, 2024 11:17am |
Run & review this pull request in StackBlitz Codeflow.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@hey-api/openapi-ts@0.57.0
Minor Changes
#1324
4e62378
Thanks @mrlubos! - feat: rename Hey API pluginsRenamed
@hey-api/services
pluginThis plugin has been renamed to
@hey-api/sdk
.Changed
sdk.output
valueTo align with the updated name, the
@hey-api/sdk
plugin will generate ansdk.gen.ts
file. This will result in a breaking change if you're importing fromservices.gen.ts
. Please update your imports to reflect this change.Renamed
@hey-api/types
pluginThis plugin has been renamed to
@hey-api/typescript
.#1327
62e37d5
Thanks @mrlubos! - feat: add typescript.exportInlineEnums optionAdded
typescript.exportInlineEnums
optionBy default, inline enums (enums not defined as reusable components in the input file) will be generated only as inlined union types. You can set
exportInlineEnums
totrue
to treat inline enums as reusable components. Whentrue
, the exported enums will follow the style defined inenums
.This is a breaking change since in the previous versions, inline enums were always treated as reusable components. To preserve your current output, set
exportInlineEnums
totrue
. This feature works only with the experimental parser.Patch Changes
01c3d69
Thanks @mrlubos! - fix: improve generated enum keys in experimental parser