fork of hey-api/openapi-ts because I need some additional things
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ci: release

+109 -73
-29
.changeset/clear-facts-accept.md
··· 1 - --- 2 - '@hey-api/openapi-ts': minor 3 - --- 4 - 5 - **BREAKING**: Drop CommonJS (CJS) support. This package is now **ESM-only**. 6 - 7 - ### Removed CommonJS (CJS) support 8 - 9 - `@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. 10 - 11 - 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: 12 - 13 - ```js 14 - const { defineConfig } = await import('@hey-api/openapi-ts'); 15 - ``` 16 - 17 - If you have previously written: 18 - 19 - ```js 20 - const { defineConfig } = require('@hey-api/openapi-ts'); 21 - ``` 22 - 23 - Migrate by updating your static imports: 24 - 25 - ```js 26 - import { defineConfig } from '@hey-api/openapi-ts'; 27 - ``` 28 - 29 - If your environment cannot use ESM, pin to a previous version.
-5
.changeset/fluffy-islands-smoke.md
··· 1 - --- 2 - '@hey-api/shared': minor 3 - --- 4 - 5 - **feat**: initial release
-29
.changeset/spicy-garlics-raise.md
··· 1 - --- 2 - '@hey-api/codegen-core': minor 3 - --- 4 - 5 - **BREAKING**: Drop CommonJS (CJS) support. This package is now **ESM-only**. 6 - 7 - ### Removed CommonJS (CJS) support 8 - 9 - `@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. 10 - 11 - 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: 12 - 13 - ```js 14 - const { Project } = await import('@hey-api/codegen-core'); 15 - ``` 16 - 17 - If you have previously written: 18 - 19 - ```js 20 - const { Project } = require('@hey-api/codegen-core'); 21 - ``` 22 - 23 - Migrate by updating your static imports: 24 - 25 - ```js 26 - import { Project } from '@hey-api/codegen-core'; 27 - ``` 28 - 29 - If your environment cannot use ESM, pin to a previous version.
-5
.changeset/twelve-roses-rest.md
··· 1 - --- 2 - '@hey-api/types': patch 3 - --- 4 - 5 - **types**: add `AnyString` utility type
+36
packages/codegen-core/CHANGELOG.md
··· 1 1 # @hey-api/codegen-core 2 2 3 + ## 0.6.0 4 + 5 + ### Minor Changes 6 + 7 + - **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) 8 + 9 + ### Removed CommonJS (CJS) support 10 + 11 + `@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. 12 + 13 + 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: 14 + 15 + ```js 16 + const { Project } = await import('@hey-api/codegen-core'); 17 + ``` 18 + 19 + If you have previously written: 20 + 21 + ```js 22 + const { Project } = require('@hey-api/codegen-core'); 23 + ``` 24 + 25 + Migrate by updating your static imports: 26 + 27 + ```js 28 + import { Project } from '@hey-api/codegen-core'; 29 + ``` 30 + 31 + If your environment cannot use ESM, pin to a previous version. 32 + 33 + ### Patch Changes 34 + 35 + ### Updated Dependencies: 36 + 37 + - @hey-api/types@0.1.3 38 + 3 39 ## 0.5.5 4 40 5 41 ### Patch Changes
+1 -1
packages/codegen-core/package.json
··· 1 1 { 2 2 "name": "@hey-api/codegen-core", 3 - "version": "0.5.5", 3 + "version": "0.6.0", 4 4 "description": "🧱 TypeScript framework for generating files.", 5 5 "homepage": "https://heyapi.dev/", 6 6 "repository": {
+10
packages/openapi-python/CHANGELOG.md
··· 1 1 # @hey-api/openapi-python 2 2 3 + ## 0.0.3 4 + 5 + ### Patch Changes 6 + 7 + ### Updated Dependencies: 8 + 9 + - @hey-api/shared@0.1.0 10 + - @hey-api/codegen-core@0.6.0 11 + - @hey-api/types@0.1.3 12 + 3 13 ## 0.0.2 4 14 5 15 ### Patch Changes
+1 -1
packages/openapi-python/package.json
··· 1 1 { 2 2 "name": "@hey-api/openapi-python", 3 - "version": "0.0.2", 3 + "version": "0.0.3", 4 4 "private": true, 5 5 "description": "🐍 OpenAPI to Python codegen.", 6 6 "homepage": "https://heyapi.dev/",
+38
packages/openapi-ts/CHANGELOG.md
··· 1 1 # @hey-api/openapi-ts 2 2 3 + ## 0.91.0 4 + 5 + ### Minor Changes 6 + 7 + - **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) 8 + 9 + ### Removed CommonJS (CJS) support 10 + 11 + `@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. 12 + 13 + 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: 14 + 15 + ```js 16 + const { defineConfig } = await import('@hey-api/openapi-ts'); 17 + ``` 18 + 19 + If you have previously written: 20 + 21 + ```js 22 + const { defineConfig } = require('@hey-api/openapi-ts'); 23 + ``` 24 + 25 + Migrate by updating your static imports: 26 + 27 + ```js 28 + import { defineConfig } from '@hey-api/openapi-ts'; 29 + ``` 30 + 31 + If your environment cannot use ESM, pin to a previous version. 32 + 33 + ### Patch Changes 34 + 35 + ### Updated Dependencies: 36 + 37 + - @hey-api/shared@0.1.0 38 + - @hey-api/codegen-core@0.6.0 39 + - @hey-api/types@0.1.3 40 + 3 41 ## 0.90.10 4 42 5 43 ### Patch Changes
+1 -1
packages/openapi-ts/package.json
··· 1 1 { 2 2 "name": "@hey-api/openapi-ts", 3 - "version": "0.90.10", 3 + "version": "0.91.0", 4 4 "description": "🌀 OpenAPI to TypeScript codegen. Production-ready SDKs, Zod schemas, TanStack Query hooks, and 20+ plugins. Used by Vercel, OpenCode, and PayPal.", 5 5 "homepage": "https://heyapi.dev/", 6 6 "repository": {
+14
packages/shared/CHANGELOG.md
··· 1 + # @hey-api/shared 2 + 3 + ## 0.1.0 4 + 5 + ### Minor Changes 6 + 7 + - **feat**: initial release ([#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) 8 + 9 + ### Patch Changes 10 + 11 + ### Updated Dependencies: 12 + 13 + - @hey-api/codegen-core@0.6.0 14 + - @hey-api/types@0.1.3
+1 -1
packages/shared/package.json
··· 1 1 { 2 2 "name": "@hey-api/shared", 3 - "version": "0.0.1", 3 + "version": "0.1.0", 4 4 "description": "Temporary home for cross-package utilities. Contents will migrate to proper packages as architecture stabilizes.", 5 5 "homepage": "https://heyapi.dev/", 6 6 "repository": {
+6
packages/types/CHANGELOG.md
··· 1 1 # @hey-api/types 2 2 3 + ## 0.1.3 4 + 5 + ### Patch Changes 6 + 7 + - **types**: add `AnyString` utility type ([#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) 8 + 3 9 ## 0.1.2 4 10 5 11 ### Patch Changes
+1 -1
packages/types/package.json
··· 1 1 { 2 2 "name": "@hey-api/types", 3 - "version": "0.1.2", 3 + "version": "0.1.3", 4 4 "description": "Shared utility types.", 5 5 "type": "module", 6 6 "types": "./dist/index.d.ts",