···11----
22-"@hey-api/codegen-core": patch
33----
44-55-**planner**: fix duplicate import when same symbol is imported as both type and value
+9-3
packages/codegen-core/CHANGELOG.md
···11# @hey-api/codegen-core
2233+## 0.6.1
44+55+### Patch Changes
66+77+- **planner**: fix duplicate import when same symbol is imported as both type and value ([#3291](https://github.com/hey-api/openapi-ts/pull/3291)) ([`3c08e38`](https://github.com/hey-api/openapi-ts/commit/3c08e38b4daa5c1f4829bdfb7f088d73b0e0f1f1)) by [@copilot-swe-agent](https://github.com/apps/copilot-swe-agent)
88+39## 0.6.0
410511### Minor Changes
···1319CommonJS 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:
14201521```js
1616-const { Project } = await import('@hey-api/codegen-core');
2222+const { Project } = await import("@hey-api/codegen-core");
1723```
18241925If you have previously written:
20262127```js
2222-const { Project } = require('@hey-api/codegen-core');
2828+const { Project } = require("@hey-api/codegen-core");
2329```
24302531Migrate by updating your static imports:
26322733```js
2828-import { Project } from '@hey-api/codegen-core';
3434+import { Project } from "@hey-api/codegen-core";
2935```
30363137If your environment cannot use ESM, pin to a previous version.