Download Latest Version @hey-api_openapi-ts@0.89.0 source code.tar.gz (28.7 MB)
Email in envelope

Get an email when there's a new version of OpenAPI-TS

Home / @hey-api_openapi-ts@0.89.0
Name Modified Size InfoDownloads / Week
Parent folder
@hey-api_openapi-ts@0.89.0 source code.tar.gz 2025-12-11 28.7 MB
@hey-api_openapi-ts@0.89.0 source code.zip 2025-12-11 32.3 MB
README.md 2025-12-11 1.5 kB
Totals: 3 Items   61.0 MB 0

Minor Changes

Prefer named exports

This release changes the default for index.ts to prefer named exports. Named exports may lead to better IDE and bundler performance compared to asterisk (*) as your tooling doesn't have to inspect the underlying module to discover exports.

While this change is merely cosmetic, you can set output.preferExportAll to true if you prefer to use the asterisk.

:::js
export default {
  input: 'hey-api/backend', // sign up at app.heyapi.dev
  output: {
    path: 'src/client',
    preferExportAll: true,
  },
};

Removed symbol:setValue:* events

These events have been removed in favor of node:set:* events.

Patch Changes

Source: README.md, updated 2025-12-11