···11----
22-'@hey-api/openapi-ts': patch
33----
44-55-feat(client): added angular, axios, fetch, next & nuxt client type export for external typing purposes.
-23
.changeset/olive-pots-rest.md
···11----
22-'@hey-api/openapi-ts': minor
33----
44-55-feat(parser): add Hooks API
66-77-### Added Hooks API
88-99-This release adds the [Hooks API](https://heyapi.dev/openapi-ts/configuration/parser#hooks), 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.
1010-1111-```js
1212-export default {
1313- input: 'hey-api/backend', // sign up at app.heyapi.dev
1414- output: 'src/client',
1515- parser: {
1616- hooks: {
1717- operations: {
1818- isQuery: (op) => (op.method === 'post' ? true : undefined),
1919- },
2020- },
2121- },
2222-};
2323-```