···11----
22-'@hey-api/openapi-ts': patch
33----
44-55-fix(plugin): every plugin extends Plugin.Hooks interface
-9
.changeset/eleven-beans-sort.md
···11----
22-'@hey-api/openapi-ts': patch
33----
44-55-fix(renderer): group and sort imported modules
66-77-### TypeScript renderer
88-99-We ship a dedicated TypeScript renderer for `.ts` files. This release improves the renderer's ability to group and sort imported modules, resulting in a more polished output.
-5
.changeset/fix-zod-union-deduplication.md
···11----
22-"@hey-api/openapi-ts": patch
33----
44-55-fix(parser): expand schema deduplication by including validation constraints in type ID
-5
.changeset/gorgeous-spiders-build.md
···11----
22-'@hey-api/openapi-ts': patch
33----
44-55-fix(parser): bump support for OpenAPI 3.1.2
-33
.changeset/healthy-experts-grow.md
···11----
22-'@hey-api/openapi-ts': patch
33----
44-55-fix(config): add `output.fileName` option
66-77-## File Name
88-99-You can customize the naming and casing pattern for files using the `fileName` option.
1010-1111-```js
1212-export default {
1313- input: 'hey-api/backend', // sign up at app.heyapi.dev
1414- output: {
1515- fileName: '{{name}}',
1616- path: 'src/client',
1717- },
1818-};
1919-```
2020-2121-By default, we append every file name with a `.gen` suffix to highlight it's automatically generated. You can customize or disable this suffix using the `fileName.suffix` option.
2222-2323-```js
2424-export default {
2525- input: 'hey-api/backend', // sign up at app.heyapi.dev
2626- output: {
2727- fileName: {
2828- suffix: '.gen',
2929- },
3030- path: 'src/client',
3131- },
3232-};
3333-```
-5
.changeset/rare-kangaroos-try.md
···11----
22-"@hey-api/openapi-ts": patch
33----
44-55-fix(axios): remove duplicate `baseURL` when using relative values
-5
.changeset/selfish-hornets-beg.md
···11----
22-'@hey-api/codegen-core': minor
33----
44-55-feat: Symbol API
-15
.changeset/two-buses-dance.md
···11----
22-'@hey-api/openapi-ts': minor
33----
44-55-feat: Symbol API
66-77-### Symbol API
88-99-This release improves the Symbol API, which adds the capability to place symbols in arbitrary files. We preserved the previous output structure for all plugins except Angular.
1010-1111-You can preserve the previous Angular output by writing your own [placement function](https://heyapi.dev/openapi-ts/configuration/parser#hooks-symbols).
1212-1313-### Removed `output` plugin option
1414-1515-Due to the Symbol API release, this option has been removed from the Plugin API.
+6
packages/codegen-core/CHANGELOG.md
···11# @hey-api/codegen-core
2233+## 0.2.0
44+55+### Minor Changes
66+77+- feat: Symbol API ([#2664](https://github.com/hey-api/openapi-ts/pull/2664)) ([`e1ede9c`](https://github.com/hey-api/openapi-ts/commit/e1ede9cabf52b5bbcb9195570deff58db8f43dbb)) by [@mrlubos](https://github.com/mrlubos)
88+39## 0.1.0
410511### Minor Changes
···11# @hey-api/openapi-ts
2233+## 0.84.0
44+55+### Minor Changes
66+77+- feat: Symbol API
88+99+### Symbol API
1010+1111+This release improves the Symbol API, which adds the capability to place symbols in arbitrary files. We preserved the previous output structure for all plugins except Angular.
1212+1313+You can preserve the previous Angular output by writing your own [placement function](https://heyapi.dev/openapi-ts/configuration/parser#hooks-symbols).
1414+1515+### Removed `output` plugin option
1616+1717+Due to the Symbol API release, this option has been removed from the Plugin API. ([#2664](https://github.com/hey-api/openapi-ts/pull/2664)) ([`e1ede9c`](https://github.com/hey-api/openapi-ts/commit/e1ede9cabf52b5bbcb9195570deff58db8f43dbb)) by [@mrlubos](https://github.com/mrlubos)
1818+1919+### Patch Changes
2020+2121+- fix(plugin): every plugin extends Plugin.Hooks interface ([#2664](https://github.com/hey-api/openapi-ts/pull/2664)) ([`e1ede9c`](https://github.com/hey-api/openapi-ts/commit/e1ede9cabf52b5bbcb9195570deff58db8f43dbb)) by [@mrlubos](https://github.com/mrlubos)
2222+2323+- fix(renderer): group and sort imported modules
2424+2525+### TypeScript renderer
2626+2727+We ship a dedicated TypeScript renderer for `.ts` files. This release improves the renderer's ability to group and sort imported modules, resulting in a more polished output. ([#2664](https://github.com/hey-api/openapi-ts/pull/2664)) ([`e1ede9c`](https://github.com/hey-api/openapi-ts/commit/e1ede9cabf52b5bbcb9195570deff58db8f43dbb)) by [@mrlubos](https://github.com/mrlubos)
2828+2929+- fix(parser): expand schema deduplication by including validation constraints in type ID ([#2650](https://github.com/hey-api/openapi-ts/pull/2650)) ([`31b3933`](https://github.com/hey-api/openapi-ts/commit/31b3933b2caa1085dbead1ef94695bca4b83d6ac)) by [@copilot-swe-agent](https://github.com/apps/copilot-swe-agent)
3030+3131+- fix(parser): bump support for OpenAPI 3.1.2 ([#2667](https://github.com/hey-api/openapi-ts/pull/2667)) ([`3511fb8`](https://github.com/hey-api/openapi-ts/commit/3511fb88cbe6b767b631af16336cb6c0722c3ff8)) by [@mrlubos](https://github.com/mrlubos)
3232+3333+- fix(config): add `output.fileName` option
3434+3535+## File Name
3636+3737+You can customize the naming and casing pattern for files using the `fileName` option.
3838+3939+```js
4040+export default {
4141+ input: 'hey-api/backend', // sign up at app.heyapi.dev
4242+ output: {
4343+ fileName: '{{name}}',
4444+ path: 'src/client',
4545+ },
4646+};
4747+```
4848+4949+By default, we append every file name with a `.gen` suffix to highlight it's automatically generated. You can customize or disable this suffix using the `fileName.suffix` option.
5050+5151+````js
5252+export default {
5353+ input: 'hey-api/backend', // sign up at app.heyapi.dev
5454+ output: {
5555+ fileName: {
5656+ suffix: '.gen',
5757+ },
5858+ path: 'src/client',
5959+ },
6060+};
6161+``` ([#2664](https://github.com/hey-api/openapi-ts/pull/2664)) ([`e1ede9c`](https://github.com/hey-api/openapi-ts/commit/e1ede9cabf52b5bbcb9195570deff58db8f43dbb)) by [@mrlubos](https://github.com/mrlubos)
6262+6363+- fix(axios): remove duplicate `baseURL` when using relative values ([#2624](https://github.com/hey-api/openapi-ts/pull/2624)) ([`8ffceec`](https://github.com/hey-api/openapi-ts/commit/8ffceec89fe471d4e14df17a172f3d5a254eb819)) by [@Ben-Pfirsich](https://github.com/Ben-Pfirsich)
6464+### Updated Dependencies:
6565+ - @hey-api/codegen-core@0.2.0
6666+367## 0.83.1
468569### Patch Changes
···104168 },
105169 },
106170 };
107107- ```
171171+````
108172109173### Patch Changes
110174