Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
@hey-api_openapi-ts@0.82.0 source code.tar.gz | 2025-08-28 | 17.6 MB | |
@hey-api_openapi-ts@0.82.0 source code.zip | 2025-08-28 | 20.6 MB | |
README.md | 2025-08-28 | 3.2 kB | |
Totals: 3 Items | 38.3 MB | 0 |
Minor Changes
-
#2505
97c57f6
Thanks @SebastiaanWouters! - feat(parser): add Hooks APIAdded Hooks API
This release adds the Hooks API, giving you granular control over which operations generate queries and mutations. As a result, we tightened the previous behavior and POST operations no longer generate queries by default. To preserve the old behavior, add a custom matcher.
js export default { input: 'hey-api/backend', // sign up at app.heyapi.dev output: 'src/client', parser: { hooks: { operations: { isQuery: (op) => (op.method === 'post' ? true : undefined), }, }, }, };
Patch Changes
-
#2542
c12f7c7
Thanks @mrlubos! - fix(client): pass fetch option to sse client -
#2505
80dc015
Thanks @SebastiaanWouters! - feat(plugin): add@pinia/colada
plugin -
#2535
efdeedc
Thanks @alexedme! - feat(client): added angular, axios, fetch, next & nuxt client type export for external typing purposes. -
#2544
d4cd30e
Thanks @carson2222! - fix(parser): improve handling multiple references to shared external variable -
#2519
95f00fa
Thanks @volesen! - fix(client): improve empty response body handling -
#1680
9e4cc3d
Thanks @josh-hemphill! - feat(plugin): add@pinia/colada
plugin -
#2530
8d1cfc4
Thanks @carson2222! - fix(parser): improvereadWrite
transformer splitting logic -
#2523
7f6de44
Thanks @carson2222! - fix(parser): handlepatternProperties
in OpenAPI 3.1