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 #2095 from hey-api/changeset-release/main

Version Packages

authored by

Lubos and committed by
GitHub
ed7ec25c 79c0c832

+118 -49
-9
.changeset/loud-beers-carry.md
··· 1 - --- 2 - '@hey-api/client-axios': minor 3 - '@hey-api/client-fetch': minor 4 - '@hey-api/client-next': minor 5 - --- 6 - 7 - feat: accept responses/errors map instead of union 8 - 9 - **BREAKING**: Update `@hey-api/openapi-ts` to the latest version.
-7
.changeset/perfect-seals-agree.md
··· 1 - --- 2 - '@hey-api/openapi-ts': minor 3 - --- 4 - 5 - feat(sdk): use responses/errors map instead of union 6 - 7 - **BREAKING**: Update your client to the latest version.
-5
.changeset/pretty-sloths-yawn.md
··· 1 - --- 2 - '@hey-api/openapi-ts': patch 3 - --- 4 - 5 - feat(validators): generate schemas for request parameters
-5
.changeset/quiet-pigs-knock.md
··· 1 - --- 2 - '@hey-api/openapi-ts': patch 3 - --- 4 - 5 - feat(validators): generate schemas for request bodies
-5
.changeset/smooth-crabs-cover.md
··· 1 - --- 2 - '@hey-api/openapi-ts': patch 3 - --- 4 - 5 - fix(sdk): skip spreading required headers when there are conflicting Content-Type headers
-5
.changeset/sour-berries-hang.md
··· 1 - --- 2 - '@hey-api/openapi-ts': patch 3 - --- 4 - 5 - fix(pagination): improved schema resolver for parameters
+7
examples/openapi-ts-axios/CHANGELOG.md
··· 1 1 # @example/openapi-ts-axios 2 2 3 + ## 0.0.33 4 + 5 + ### Patch Changes 6 + 7 + - Updated dependencies [[`8152aaf`](https://github.com/hey-api/openapi-ts/commit/8152aaf4892c48b79fd3dc486eb3c0ea333dc3e6)]: 8 + - @hey-api/client-axios@0.8.0 9 + 3 10 ## 0.0.32 4 11 5 12 ### Patch Changes
+1 -1
examples/openapi-ts-axios/package.json
··· 1 1 { 2 2 "name": "@example/openapi-ts-axios", 3 3 "private": true, 4 - "version": "0.0.32", 4 + "version": "0.0.33", 5 5 "type": "module", 6 6 "scripts": { 7 7 "build": "tsc && vite build",
+7
examples/openapi-ts-fastify/CHANGELOG.md
··· 1 1 # @example/openapi-ts-fastify 2 2 3 + ## 0.1.13 4 + 5 + ### Patch Changes 6 + 7 + - Updated dependencies [[`8152aaf`](https://github.com/hey-api/openapi-ts/commit/8152aaf4892c48b79fd3dc486eb3c0ea333dc3e6)]: 8 + - @hey-api/client-fetch@0.11.0 9 + 3 10 ## 0.1.12 4 11 5 12 ### Patch Changes
+1 -1
examples/openapi-ts-fastify/package.json
··· 1 1 { 2 2 "name": "@example/openapi-ts-fastify", 3 3 "private": true, 4 - "version": "0.1.12", 4 + "version": "0.1.13", 5 5 "type": "module", 6 6 "scripts": { 7 7 "openapi-ts": "openapi-ts",
+7
examples/openapi-ts-fetch/CHANGELOG.md
··· 1 1 # @example/openapi-ts-fetch 2 2 3 + ## 0.0.54 4 + 5 + ### Patch Changes 6 + 7 + - Updated dependencies [[`8152aaf`](https://github.com/hey-api/openapi-ts/commit/8152aaf4892c48b79fd3dc486eb3c0ea333dc3e6)]: 8 + - @hey-api/client-fetch@0.11.0 9 + 3 10 ## 0.0.53 4 11 5 12 ### Patch Changes
+1 -1
examples/openapi-ts-fetch/package.json
··· 1 1 { 2 2 "name": "@example/openapi-ts-fetch", 3 3 "private": true, 4 - "version": "0.0.53", 4 + "version": "0.0.54", 5 5 "type": "module", 6 6 "scripts": { 7 7 "build": "tsc && vite build",
+7
examples/openapi-ts-next/CHANGELOG.md
··· 1 1 # @example/openapi-ts-next 2 2 3 + ## 0.1.11 4 + 5 + ### Patch Changes 6 + 7 + - Updated dependencies [[`8152aaf`](https://github.com/hey-api/openapi-ts/commit/8152aaf4892c48b79fd3dc486eb3c0ea333dc3e6)]: 8 + - @hey-api/client-next@0.4.0 9 + 3 10 ## 0.1.10 4 11 5 12 ### Patch Changes
+1 -1
examples/openapi-ts-next/package.json
··· 1 1 { 2 2 "name": "@example/openapi-ts-next", 3 3 "private": true, 4 - "version": "0.1.10", 4 + "version": "0.1.11", 5 5 "scripts": { 6 6 "build": "next build", 7 7 "dev": "next dev",
+7
examples/openapi-ts-sample/CHANGELOG.md
··· 1 1 # @example/openapi-ts-sample 2 2 3 + ## 0.0.14 4 + 5 + ### Patch Changes 6 + 7 + - Updated dependencies [[`8152aaf`](https://github.com/hey-api/openapi-ts/commit/8152aaf4892c48b79fd3dc486eb3c0ea333dc3e6)]: 8 + - @hey-api/client-fetch@0.11.0 9 + 3 10 ## 0.0.13 4 11 5 12 ### Patch Changes
+1 -1
examples/openapi-ts-sample/package.json
··· 1 1 { 2 2 "name": "@example/openapi-ts-sample", 3 3 "private": true, 4 - "version": "0.0.13", 4 + "version": "0.0.14", 5 5 "type": "module", 6 6 "scripts": { 7 7 "build": "tsc && vite build",
+7
examples/openapi-ts-tanstack-angular-query-experimental/CHANGELOG.md
··· 1 1 # @example/openapi-ts-tanstack-angular-query-experimental 2 2 3 + ## 0.0.25 4 + 5 + ### Patch Changes 6 + 7 + - Updated dependencies [[`8152aaf`](https://github.com/hey-api/openapi-ts/commit/8152aaf4892c48b79fd3dc486eb3c0ea333dc3e6)]: 8 + - @hey-api/client-fetch@0.11.0 9 + 3 10 ## 0.0.24 4 11 5 12 ### Patch Changes
+1 -1
examples/openapi-ts-tanstack-angular-query-experimental/package.json
··· 1 1 { 2 2 "name": "@example/openapi-ts-tanstack-angular-query-experimental", 3 - "version": "0.0.24", 3 + "version": "0.0.25", 4 4 "scripts": { 5 5 "ng": "ng", 6 6 "start": "ng serve",
+7
examples/openapi-ts-tanstack-react-query/CHANGELOG.md
··· 1 1 # @example/openapi-ts-tanstack-react-query 2 2 3 + ## 0.0.36 4 + 5 + ### Patch Changes 6 + 7 + - Updated dependencies [[`8152aaf`](https://github.com/hey-api/openapi-ts/commit/8152aaf4892c48b79fd3dc486eb3c0ea333dc3e6)]: 8 + - @hey-api/client-fetch@0.11.0 9 + 3 10 ## 0.0.35 4 11 5 12 ### Patch Changes
+1 -1
examples/openapi-ts-tanstack-react-query/package.json
··· 1 1 { 2 2 "name": "@example/openapi-ts-tanstack-react-query", 3 3 "private": true, 4 - "version": "0.0.35", 4 + "version": "0.0.36", 5 5 "type": "module", 6 6 "scripts": { 7 7 "build": "tsc && vite build",
+7
examples/openapi-ts-tanstack-svelte-query/CHANGELOG.md
··· 1 1 # @example/openapi-ts-tanstack-svelte-query 2 2 3 + ## 0.0.36 4 + 5 + ### Patch Changes 6 + 7 + - Updated dependencies [[`8152aaf`](https://github.com/hey-api/openapi-ts/commit/8152aaf4892c48b79fd3dc486eb3c0ea333dc3e6)]: 8 + - @hey-api/client-fetch@0.11.0 9 + 3 10 ## 0.0.35 4 11 5 12 ### Patch Changes
+1 -1
examples/openapi-ts-tanstack-svelte-query/package.json
··· 1 1 { 2 2 "name": "@example/openapi-ts-tanstack-svelte-query", 3 3 "private": true, 4 - "version": "0.0.35", 4 + "version": "0.0.36", 5 5 "type": "module", 6 6 "scripts": { 7 7 "build": "vite build",
+7
examples/openapi-ts-tanstack-vue-query/CHANGELOG.md
··· 1 1 # @example/openapi-ts-tanstack-vue-query 2 2 3 + ## 0.0.36 4 + 5 + ### Patch Changes 6 + 7 + - Updated dependencies [[`8152aaf`](https://github.com/hey-api/openapi-ts/commit/8152aaf4892c48b79fd3dc486eb3c0ea333dc3e6)]: 8 + - @hey-api/client-fetch@0.11.0 9 + 3 10 ## 0.0.35 4 11 5 12 ### Patch Changes
+1 -1
examples/openapi-ts-tanstack-vue-query/package.json
··· 1 1 { 2 2 "name": "@example/openapi-ts-tanstack-vue-query", 3 3 "private": true, 4 - "version": "0.0.35", 4 + "version": "0.0.36", 5 5 "type": "module", 6 6 "scripts": { 7 7 "build-only": "vite build",
+8
packages/client-axios/CHANGELOG.md
··· 1 1 # @hey-api/client-axios 2 2 3 + ## 0.8.0 4 + 5 + ### Minor Changes 6 + 7 + - [#2094](https://github.com/hey-api/openapi-ts/pull/2094) [`8152aaf`](https://github.com/hey-api/openapi-ts/commit/8152aaf4892c48b79fd3dc486eb3c0ea333dc3e6) Thanks [@mrlubos](https://github.com/mrlubos)! - feat: accept responses/errors map instead of union 8 + 9 + **BREAKING**: Update `@hey-api/openapi-ts` to the latest version. 10 + 3 11 ## 0.7.1 4 12 5 13 ### Patch Changes
+1 -1
packages/client-axios/package.json
··· 1 1 { 2 2 "name": "@hey-api/client-axios", 3 - "version": "0.7.1", 3 + "version": "0.8.0", 4 4 "description": "🚀 Axios client for `@hey-api/openapi-ts` codegen.", 5 5 "homepage": "https://heyapi.dev/", 6 6 "repository": {
+8
packages/client-fetch/CHANGELOG.md
··· 1 1 # @hey-api/client-fetch 2 2 3 + ## 0.11.0 4 + 5 + ### Minor Changes 6 + 7 + - [#2094](https://github.com/hey-api/openapi-ts/pull/2094) [`8152aaf`](https://github.com/hey-api/openapi-ts/commit/8152aaf4892c48b79fd3dc486eb3c0ea333dc3e6) Thanks [@mrlubos](https://github.com/mrlubos)! - feat: accept responses/errors map instead of union 8 + 9 + **BREAKING**: Update `@hey-api/openapi-ts` to the latest version. 10 + 3 11 ## 0.10.2 4 12 5 13 ### Patch Changes
+1 -1
packages/client-fetch/package.json
··· 1 1 { 2 2 "name": "@hey-api/client-fetch", 3 - "version": "0.10.2", 3 + "version": "0.11.0", 4 4 "description": "🚀 Fetch API client for `@hey-api/openapi-ts` codegen.", 5 5 "homepage": "https://heyapi.dev/", 6 6 "repository": {
+8
packages/client-next/CHANGELOG.md
··· 1 1 # @hey-api/client-next 2 2 3 + ## 0.4.0 4 + 5 + ### Minor Changes 6 + 7 + - [#2094](https://github.com/hey-api/openapi-ts/pull/2094) [`8152aaf`](https://github.com/hey-api/openapi-ts/commit/8152aaf4892c48b79fd3dc486eb3c0ea333dc3e6) Thanks [@mrlubos](https://github.com/mrlubos)! - feat: accept responses/errors map instead of union 8 + 9 + **BREAKING**: Update `@hey-api/openapi-ts` to the latest version. 10 + 3 11 ## 0.3.2 4 12 5 13 ### Patch Changes
+1 -1
packages/client-next/package.json
··· 1 1 { 2 2 "name": "@hey-api/client-next", 3 - "version": "0.3.2", 3 + "version": "0.4.0", 4 4 "description": "🚀 Next.js client for `@hey-api/openapi-ts` codegen.", 5 5 "homepage": "https://heyapi.dev/", 6 6 "repository": {
+18
packages/openapi-ts/CHANGELOG.md
··· 1 1 # @hey-api/openapi-ts 2 2 3 + ## 0.69.0 4 + 5 + ### Minor Changes 6 + 7 + - [#2094](https://github.com/hey-api/openapi-ts/pull/2094) [`8152aaf`](https://github.com/hey-api/openapi-ts/commit/8152aaf4892c48b79fd3dc486eb3c0ea333dc3e6) Thanks [@mrlubos](https://github.com/mrlubos)! - feat(sdk): use responses/errors map instead of union 8 + 9 + **BREAKING**: Update your client to the latest version. 10 + 11 + ### Patch Changes 12 + 13 + - [#2100](https://github.com/hey-api/openapi-ts/pull/2100) [`54757a2`](https://github.com/hey-api/openapi-ts/commit/54757a2cf266a0ee49277baaa6765e078c95f2a3) Thanks [@mrlubos](https://github.com/mrlubos)! - feat(validators): generate schemas for request parameters 14 + 15 + - [#2099](https://github.com/hey-api/openapi-ts/pull/2099) [`a9484e0`](https://github.com/hey-api/openapi-ts/commit/a9484e0792dded8ccba280f0f4b55b72d22b3d83) Thanks [@mrlubos](https://github.com/mrlubos)! - feat(validators): generate schemas for request bodies 16 + 17 + - [#2097](https://github.com/hey-api/openapi-ts/pull/2097) [`d95802f`](https://github.com/hey-api/openapi-ts/commit/d95802f92e504f19130bd2e18a4355ce51e38ce0) Thanks [@mrlubos](https://github.com/mrlubos)! - fix(sdk): skip spreading required headers when there are conflicting Content-Type headers 18 + 19 + - [#2096](https://github.com/hey-api/openapi-ts/pull/2096) [`22e0b3b`](https://github.com/hey-api/openapi-ts/commit/22e0b3bccf94b49fd82665e96074ab76eb241109) Thanks [@mrlubos](https://github.com/mrlubos)! - fix(pagination): improved schema resolver for parameters 20 + 3 21 ## 0.68.1 4 22 5 23 ### Patch Changes
+1 -1
packages/openapi-ts/package.json
··· 1 1 { 2 2 "name": "@hey-api/openapi-ts", 3 - "version": "0.68.1", 3 + "version": "0.69.0", 4 4 "description": "🚀 The OpenAPI to TypeScript codegen. Generate clients, SDKs, validators, and more.", 5 5 "homepage": "https://heyapi.dev/", 6 6 "repository": {