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.

Merge pull request #3321 from hey-api/ci/fix-publish

ci: revert some changes

authored by

Lubos and committed by
GitHub
f28b4817 5516b700

+42 -47
-5
.changeset/blue-loops-fix.md
··· 1 - --- 2 - "@hey-api/openapi-ts": patch 3 - --- 4 - 5 - **config**: rename `exportFromIndex` option to `includeInEntry`
-9
.changeset/cold-ties-return.md
··· 1 - --- 2 - "@hey-api/openapi-ts": minor 3 - --- 4 - 5 - **BREAKING:** **symbol**: replace `exportFrom` array with `getExportFromFilePath()` function 6 - 7 - ### Updated Symbol interface 8 - 9 - The `exportFrom` property has been replaced with the `getExportFromFilePath()` function. This allows you to dynamically determine export paths based on symbol properties. This is a low-level feature, so you're most likely unaffected.
-5
.changeset/deep-buttons-repeat.md
··· 1 - --- 2 - "@hey-api/openapi-ts": patch 3 - --- 4 - 5 - **config**: `includeInEntry` accepts function in addition to primitive value
-5
.changeset/forty-shoes-fetch.md
··· 1 - --- 2 - "@hey-api/openapi-ts": patch 3 - --- 4 - 5 - **parser**: add `getExportFromFilePath()` hook
-5
.changeset/itchy-walls-type.md
··· 1 - --- 2 - "@hey-api/openapi-ts": patch 3 - --- 4 - 5 - **plugin**: add `comments` option to all plugins
-5
.changeset/slick-olives-doubt.md
··· 1 - --- 2 - "@hey-api/openapi-ts": patch 3 - --- 4 - 5 - **types**: improve `defineConfig()` types
-5
.changeset/swift-rooms-see.md
··· 1 - --- 2 - "@hey-api/openapi-ts": patch 3 - --- 4 - 5 - **config**: rename `output.indexFile` to `output.entryFile`
-5
.changeset/tired-rats-watch.md
··· 1 - --- 2 - "@hey-api/openapi-ts": patch 3 - --- 4 - 5 - **fix**: improve dev mode detection causing builds to fail
-1
.github/workflows/release.yml
··· 55 55 env: 56 56 GITHUB_TOKEN: ${{ steps.app-token.outputs.token }} 57 57 NPM_CONFIG_PROVENANCE: true 58 - NPM_TOKEN: ${{ secrets.NPM_TOKEN }} 59 58 60 59 - name: Get current branch 61 60 run: echo "CURRENT_BRANCH=$(git branch --show-current)" >> $GITHUB_ENV
+9
packages/openapi-python/CHANGELOG.md
··· 1 1 # @hey-api/openapi-python 2 2 3 + ## 0.0.5 4 + 5 + ### Patch Changes 6 + 7 + ### Updated Dependencies: 8 + 9 + - @hey-api/shared@0.1.2 10 + - @hey-api/codegen-core@0.7.0 11 + 3 12 ## 0.0.4 4 13 5 14 ### Patch Changes
+1 -1
packages/openapi-python/package.json
··· 1 1 { 2 2 "name": "@hey-api/openapi-python", 3 - "version": "0.0.4", 3 + "version": "0.0.5", 4 4 "private": true, 5 5 "description": "🐍 OpenAPI to Python codegen.", 6 6 "keywords": [
+31
packages/openapi-ts/CHANGELOG.md
··· 1 1 # @hey-api/openapi-ts 2 2 3 + ## 0.92.0 4 + 5 + ### Minor Changes 6 + 7 + - **BREAKING:** **symbol**: replace `exportFrom` array with `getExportFromFilePath()` function ([#3318](https://github.com/hey-api/openapi-ts/pull/3318)) ([`fefa70e`](https://github.com/hey-api/openapi-ts/commit/fefa70e6810a539607441535289e98c69a604c0d)) by [@mrlubos](https://github.com/mrlubos) 8 + 9 + ### Updated Symbol interface 10 + 11 + The `exportFrom` property has been replaced with the `getExportFromFilePath()` function. This allows you to dynamically determine export paths based on symbol properties. This is a low-level feature, so you're most likely unaffected. 12 + 13 + ### Patch Changes 14 + 15 + - **config**: rename `exportFromIndex` option to `includeInEntry` ([#3318](https://github.com/hey-api/openapi-ts/pull/3318)) ([`fefa70e`](https://github.com/hey-api/openapi-ts/commit/fefa70e6810a539607441535289e98c69a604c0d)) by [@mrlubos](https://github.com/mrlubos) 16 + 17 + - **config**: `includeInEntry` accepts function in addition to primitive value ([#3318](https://github.com/hey-api/openapi-ts/pull/3318)) ([`fefa70e`](https://github.com/hey-api/openapi-ts/commit/fefa70e6810a539607441535289e98c69a604c0d)) by [@mrlubos](https://github.com/mrlubos) 18 + 19 + - **parser**: add `getExportFromFilePath()` hook ([#3318](https://github.com/hey-api/openapi-ts/pull/3318)) ([`fefa70e`](https://github.com/hey-api/openapi-ts/commit/fefa70e6810a539607441535289e98c69a604c0d)) by [@mrlubos](https://github.com/mrlubos) 20 + 21 + - **plugin**: add `comments` option to all plugins ([#3318](https://github.com/hey-api/openapi-ts/pull/3318)) ([`fefa70e`](https://github.com/hey-api/openapi-ts/commit/fefa70e6810a539607441535289e98c69a604c0d)) by [@mrlubos](https://github.com/mrlubos) 22 + 23 + - **types**: improve `defineConfig()` types ([#3318](https://github.com/hey-api/openapi-ts/pull/3318)) ([`fefa70e`](https://github.com/hey-api/openapi-ts/commit/fefa70e6810a539607441535289e98c69a604c0d)) by [@mrlubos](https://github.com/mrlubos) 24 + 25 + - **config**: rename `output.indexFile` to `output.entryFile` ([#3318](https://github.com/hey-api/openapi-ts/pull/3318)) ([`fefa70e`](https://github.com/hey-api/openapi-ts/commit/fefa70e6810a539607441535289e98c69a604c0d)) by [@mrlubos](https://github.com/mrlubos) 26 + 27 + - **fix**: improve dev mode detection causing builds to fail ([#3318](https://github.com/hey-api/openapi-ts/pull/3318)) ([`fefa70e`](https://github.com/hey-api/openapi-ts/commit/fefa70e6810a539607441535289e98c69a604c0d)) by [@mrlubos](https://github.com/mrlubos) 28 + 29 + ### Updated Dependencies: 30 + 31 + - @hey-api/shared@0.1.2 32 + - @hey-api/codegen-core@0.7.0 33 + 3 34 ## 0.91.1 4 35 5 36 ### Patch Changes
+1 -1
packages/openapi-ts/package.json
··· 1 1 { 2 2 "name": "@hey-api/openapi-ts", 3 - "version": "0.91.1", 3 + "version": "0.92.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 "keywords": [ 6 6 "angular",