Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
@hey-api_openapi-ts@0.80.0 source code.tar.gz | 2025-07-23 | 13.6 MB | |
@hey-api_openapi-ts@0.80.0 source code.zip | 2025-07-23 | 15.9 MB | |
README.md | 2025-07-23 | 1.1 kB | |
Totals: 3 Items | 29.5 MB | 0 |
Minor Changes
-
#2341
9954bcf
Thanks @mrlubos! - feat(zod): add support for Zod 4 and Zod MiniAdded Zod 4 and Zod Mini
This release adds support for Zod 4 and Zod Mini. By default, the
zod
plugin will generate output for Zod 4. If you want to preserve the previous output for Zod 3 or use Zod Mini, setcompatibilityVersion
to3
ormini
.js export default { input: 'https://get.heyapi.dev/hey-api/backend', output: 'src/client', plugins: [ // ...other plugins { name: 'zod', compatibilityVersion: 3, }, ], };
js export default { input: 'https://get.heyapi.dev/hey-api/backend', output: 'src/client', plugins: [ // ...other plugins { name: 'zod', compatibilityVersion: 'mini', }, ], };