···11----
22-'@hey-api/openapi-ts': minor
33----
44-55-feat: upgraded input filters
66-77-### Upgraded input filters
88-99-Input filters now avoid generating invalid output without requiring you to specify every missing schema as in the previous releases. As part of this release, we changed the way filters are configured and removed the support for regular expressions. Let us know if regular expressions are still useful for you and want to bring them back!
1010-1111-```js
1212-export default {
1313- input: {
1414- // match only the schema named `foo` and `GET` operation for the `/api/v1/foo` path
1515- filters: {
1616- operations: {
1717- include: ['GET /api/v1/foo'], // [!code ++]
1818- },
1919- schemas: {
2020- include: ['foo'], // [!code ++]
2121- },
2222- },
2323- include: '^(#/components/schemas/foo|#/paths/api/v1/foo/get)$', // [!code --]
2424- path: 'https://get.heyapi.dev/hey-api/backend',
2525- },
2626- output: 'src/client',
2727- plugins: ['@hey-api/client-fetch'],
2828-};
2929-```