···11----
22-'@hey-api/openapi-ts': minor
33----
44-55-**BREAKING**: Drop CommonJS (CJS) support. This package is now **ESM-only**.
66-77-### Removed CommonJS (CJS) support
88-99-`@hey-api/openapi-ts` is now ESM-only. This change simplifies the codebase, improves tree-shaking, and enables better integration with modern bundlers and TypeScript tooling.
1010-1111-CommonJS entry points (`require()`, `module.exports`) are no longer supported. If you are in a CJS environment, you can still load the package dynamically using `import()` like:
1212-1313-```js
1414-const { defineConfig } = await import('@hey-api/openapi-ts');
1515-```
1616-1717-If you have previously written:
1818-1919-```js
2020-const { defineConfig } = require('@hey-api/openapi-ts');
2121-```
2222-2323-Migrate by updating your static imports:
2424-2525-```js
2626-import { defineConfig } from '@hey-api/openapi-ts';
2727-```
2828-2929-If your environment cannot use ESM, pin to a previous version.
-5
.changeset/fluffy-islands-smoke.md
···11----
22-'@hey-api/shared': minor
33----
44-55-**feat**: initial release
-29
.changeset/spicy-garlics-raise.md
···11----
22-'@hey-api/codegen-core': minor
33----
44-55-**BREAKING**: Drop CommonJS (CJS) support. This package is now **ESM-only**.
66-77-### Removed CommonJS (CJS) support
88-99-`@hey-api/codegen-core` is now ESM-only. This change simplifies the codebase, improves tree-shaking, and enables better integration with modern bundlers and TypeScript tooling.
1010-1111-CommonJS entry points (`require()`, `module.exports`) are no longer supported. If you are in a CJS environment, you can still load the package dynamically using `import()` like:
1212-1313-```js
1414-const { Project } = await import('@hey-api/codegen-core');
1515-```
1616-1717-If you have previously written:
1818-1919-```js
2020-const { Project } = require('@hey-api/codegen-core');
2121-```
2222-2323-Migrate by updating your static imports:
2424-2525-```js
2626-import { Project } from '@hey-api/codegen-core';
2727-```
2828-2929-If your environment cannot use ESM, pin to a previous version.
-5
.changeset/twelve-roses-rest.md
···11----
22-'@hey-api/types': patch
33----
44-55-**types**: add `AnyString` utility type
+36
packages/codegen-core/CHANGELOG.md
···11# @hey-api/codegen-core
2233+## 0.6.0
44+55+### Minor Changes
66+77+- **BREAKING**: Drop CommonJS (CJS) support. This package is now **ESM-only**. ([#3251](https://github.com/hey-api/openapi-ts/pull/3251)) ([`7f19d59`](https://github.com/hey-api/openapi-ts/commit/7f19d5921dadfa96ecae84a5298b7aee1daee56d)) by [@mrlubos](https://github.com/mrlubos)
88+99+### Removed CommonJS (CJS) support
1010+1111+`@hey-api/codegen-core` is now ESM-only. This change simplifies the codebase, improves tree-shaking, and enables better integration with modern bundlers and TypeScript tooling.
1212+1313+CommonJS entry points (`require()`, `module.exports`) are no longer supported. If you are in a CJS environment, you can still load the package dynamically using `import()` like:
1414+1515+```js
1616+const { Project } = await import('@hey-api/codegen-core');
1717+```
1818+1919+If you have previously written:
2020+2121+```js
2222+const { Project } = require('@hey-api/codegen-core');
2323+```
2424+2525+Migrate by updating your static imports:
2626+2727+```js
2828+import { Project } from '@hey-api/codegen-core';
2929+```
3030+3131+If your environment cannot use ESM, pin to a previous version.
3232+3333+### Patch Changes
3434+3535+### Updated Dependencies:
3636+3737+- @hey-api/types@0.1.3
3838+339## 0.5.5
440541### Patch Changes
···11# @hey-api/openapi-ts
2233+## 0.91.0
44+55+### Minor Changes
66+77+- **BREAKING**: Drop CommonJS (CJS) support. This package is now **ESM-only**. ([#3251](https://github.com/hey-api/openapi-ts/pull/3251)) ([`7f19d59`](https://github.com/hey-api/openapi-ts/commit/7f19d5921dadfa96ecae84a5298b7aee1daee56d)) by [@mrlubos](https://github.com/mrlubos)
88+99+### Removed CommonJS (CJS) support
1010+1111+`@hey-api/openapi-ts` is now ESM-only. This change simplifies the codebase, improves tree-shaking, and enables better integration with modern bundlers and TypeScript tooling.
1212+1313+CommonJS entry points (`require()`, `module.exports`) are no longer supported. If you are in a CJS environment, you can still load the package dynamically using `import()` like:
1414+1515+```js
1616+const { defineConfig } = await import('@hey-api/openapi-ts');
1717+```
1818+1919+If you have previously written:
2020+2121+```js
2222+const { defineConfig } = require('@hey-api/openapi-ts');
2323+```
2424+2525+Migrate by updating your static imports:
2626+2727+```js
2828+import { defineConfig } from '@hey-api/openapi-ts';
2929+```
3030+3131+If your environment cannot use ESM, pin to a previous version.
3232+3333+### Patch Changes
3434+3535+### Updated Dependencies:
3636+3737+- @hey-api/shared@0.1.0
3838+- @hey-api/codegen-core@0.6.0
3939+- @hey-api/types@0.1.3
4040+341## 0.90.10
442543### Patch Changes
+1-1
packages/openapi-ts/package.json
···11{
22 "name": "@hey-api/openapi-ts",
33- "version": "0.90.10",
33+ "version": "0.91.0",
44 "description": "🌀 OpenAPI to TypeScript codegen. Production-ready SDKs, Zod schemas, TanStack Query hooks, and 20+ plugins. Used by Vercel, OpenCode, and PayPal.",
55 "homepage": "https://heyapi.dev/",
66 "repository": {