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

Version Packages

authored by

Lubos and committed by
GitHub
912d4ebe 8d90264b

+51 -47
-6
.changeset/calm-lemons-flash.md
··· 1 - --- 2 - '@hey-api/client-axios': patch 3 - '@hey-api/client-fetch': patch 4 - --- 5 - 6 - fix: infer response shape based on throwOnError option value
-5
.changeset/eight-shoes-laugh.md
··· 1 - --- 2 - '@hey-api/openapi-ts': patch 3 - --- 4 - 5 - fix: define multiple errors type as union instead of intersection
-5
.changeset/mean-houses-explode.md
··· 1 - --- 2 - '@hey-api/client-fetch': patch 3 - --- 4 - 5 - fix: process application types except for application/json as blobs
-6
.changeset/perfect-mayflies-confess.md
··· 1 - --- 2 - '@hey-api/client-axios': patch 3 - '@hey-api/client-fetch': patch 4 - --- 5 - 6 - fix: export RequestOptionsBase interface
-5
.changeset/rare-insects-return.md
··· 1 - --- 2 - '@hey-api/openapi-ts': patch 3 - --- 4 - 5 - fix: remove Content-Type header with multipart/form-data content type
-5
.changeset/twelve-chicken-heal.md
··· 1 - --- 2 - '@hey-api/client-fetch': patch 3 - --- 4 - 5 - fix: cast query params dates into ISO strings
-5
.changeset/unlucky-lobsters-brake.md
··· 1 - --- 2 - '@hey-api/openapi-ts': patch 3 - --- 4 - 5 - fix: Additional properties key
-5
.changeset/wicked-lizards-admire.md
··· 1 - --- 2 - '@hey-api/openapi-ts': patch 3 - --- 4 - 5 - fix: add conditionnal generation for service related types
+7
examples/openapi-ts-axios/CHANGELOG.md
··· 1 1 # @example/openapi-ts-axios 2 2 3 + ## 0.0.5 4 + 5 + ### Patch Changes 6 + 7 + - Updated dependencies [[`ec6bfc8`](https://github.com/hey-api/openapi-ts/commit/ec6bfc8292cce7663dfc6e0fcd89b44c56f08bb4), [`a73da1c`](https://github.com/hey-api/openapi-ts/commit/a73da1c854503246b6c58f1abea5dd77727eedca)]: 8 + - @hey-api/client-axios@0.2.1 9 + 3 10 ## 0.0.4 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.4", 4 + "version": "0.0.5", 5 5 "type": "module", 6 6 "scripts": { 7 7 "build": "tsc && vite build",
+7
examples/openapi-ts-fetch/CHANGELOG.md
··· 1 1 # @example/openapi-ts-fetch 2 2 3 + ## 0.0.18 4 + 5 + ### Patch Changes 6 + 7 + - Updated dependencies [[`ec6bfc8`](https://github.com/hey-api/openapi-ts/commit/ec6bfc8292cce7663dfc6e0fcd89b44c56f08bb4), [`93e2d11`](https://github.com/hey-api/openapi-ts/commit/93e2d11d2a8ddd1f78dde46eceeb5543cae07e36), [`a73da1c`](https://github.com/hey-api/openapi-ts/commit/a73da1c854503246b6c58f1abea5dd77727eedca), [`da92c53`](https://github.com/hey-api/openapi-ts/commit/da92c535c14e3217d565472fe65c687243bc0dd8)]: 8 + - @hey-api/client-fetch@0.2.1 9 + 3 10 ## 0.0.17 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.17", 4 + "version": "0.0.18", 5 5 "type": "module", 6 6 "scripts": { 7 7 "build": "tsc && vite build",
+8
packages/client-axios/CHANGELOG.md
··· 1 1 # @hey-api/client-axios 2 2 3 + ## 0.2.1 4 + 5 + ### Patch Changes 6 + 7 + - [#864](https://github.com/hey-api/openapi-ts/pull/864) [`ec6bfc8`](https://github.com/hey-api/openapi-ts/commit/ec6bfc8292cce7663dfc6e0fcd89b44c56f08bb4) Thanks [@mrlubos](https://github.com/mrlubos)! - fix: infer response shape based on throwOnError option value 8 + 9 + - [#873](https://github.com/hey-api/openapi-ts/pull/873) [`a73da1c`](https://github.com/hey-api/openapi-ts/commit/a73da1c854503246b6c58f1abea5dd77727eedca) Thanks [@mrlubos](https://github.com/mrlubos)! - fix: export RequestOptionsBase interface 10 + 3 11 ## 0.2.0 4 12 5 13 ### Minor Changes
+1 -1
packages/client-axios/package.json
··· 1 1 { 2 2 "name": "@hey-api/client-axios", 3 - "version": "0.2.0", 3 + "version": "0.2.1", 4 4 "type": "module", 5 5 "description": "Typesafe Axios client for your @hey-api/openapi-ts types", 6 6 "homepage": "https://heyapi.vercel.app/",
+12
packages/client-fetch/CHANGELOG.md
··· 1 1 # @hey-api/client-fetch 2 2 3 + ## 0.2.1 4 + 5 + ### Patch Changes 6 + 7 + - [#864](https://github.com/hey-api/openapi-ts/pull/864) [`ec6bfc8`](https://github.com/hey-api/openapi-ts/commit/ec6bfc8292cce7663dfc6e0fcd89b44c56f08bb4) Thanks [@mrlubos](https://github.com/mrlubos)! - fix: infer response shape based on throwOnError option value 8 + 9 + - [#852](https://github.com/hey-api/openapi-ts/pull/852) [`93e2d11`](https://github.com/hey-api/openapi-ts/commit/93e2d11d2a8ddd1f78dde46eceeb5543cae07e36) Thanks [@mrlubos](https://github.com/mrlubos)! - fix: process application types except for application/json as blobs 10 + 11 + - [#873](https://github.com/hey-api/openapi-ts/pull/873) [`a73da1c`](https://github.com/hey-api/openapi-ts/commit/a73da1c854503246b6c58f1abea5dd77727eedca) Thanks [@mrlubos](https://github.com/mrlubos)! - fix: export RequestOptionsBase interface 12 + 13 + - [#863](https://github.com/hey-api/openapi-ts/pull/863) [`da92c53`](https://github.com/hey-api/openapi-ts/commit/da92c535c14e3217d565472fe65c687243bc0dd8) Thanks [@mrlubos](https://github.com/mrlubos)! - fix: cast query params dates into ISO strings 14 + 3 15 ## 0.2.0 4 16 5 17 ### Minor Changes
+1 -1
packages/client-fetch/package.json
··· 1 1 { 2 2 "name": "@hey-api/client-fetch", 3 - "version": "0.2.0", 3 + "version": "0.2.1", 4 4 "type": "module", 5 5 "description": "Typesafe Fetch API client for your @hey-api/openapi-ts types", 6 6 "homepage": "https://heyapi.vercel.app/",
+12
packages/openapi-ts/CHANGELOG.md
··· 1 1 # @hey-api/openapi-ts 2 2 3 + ## 0.52.1 4 + 5 + ### Patch Changes 6 + 7 + - [#855](https://github.com/hey-api/openapi-ts/pull/855) [`7ac6274`](https://github.com/hey-api/openapi-ts/commit/7ac627463a15fa6be2c9d103b25200355df6b166) Thanks [@mrlubos](https://github.com/mrlubos)! - fix: define multiple errors type as union instead of intersection 8 + 9 + - [#853](https://github.com/hey-api/openapi-ts/pull/853) [`6ab387d`](https://github.com/hey-api/openapi-ts/commit/6ab387d3440ec5ec524e7f198aedfa6734431d76) Thanks [@mrlubos](https://github.com/mrlubos)! - fix: remove Content-Type header with multipart/form-data content type 10 + 11 + - [#861](https://github.com/hey-api/openapi-ts/pull/861) [`21ccf90`](https://github.com/hey-api/openapi-ts/commit/21ccf90b864590c211fbfa3de5c687dd3c48f897) Thanks [@qqilihq](https://github.com/qqilihq)! - fix: Additional properties key 12 + 13 + - [#869](https://github.com/hey-api/openapi-ts/pull/869) [`42d8a41`](https://github.com/hey-api/openapi-ts/commit/42d8a4151bace7b70af60a1abe46b7550ddad686) Thanks [@SamuelGuillemet](https://github.com/SamuelGuillemet)! - fix: add conditionnal generation for service related types 14 + 3 15 ## 0.52.0 4 16 5 17 ### Minor Changes
+1 -1
packages/openapi-ts/package.json
··· 1 1 { 2 2 "name": "@hey-api/openapi-ts", 3 - "version": "0.52.0", 3 + "version": "0.52.1", 4 4 "type": "module", 5 5 "description": "Turn your OpenAPI specification into a beautiful TypeScript client", 6 6 "homepage": "https://heyapi.vercel.app/",