Skip to content
Compare
Choose a tag to compare
@github-actions github-actions released this 01 Apr 19:42
· 28 commits to main since this release
53c88a6

Minor Changes

  • #1896 8840ed7 Thanks @mrlubos! - feat: support read-only and write-only properties

    Read-only and write-only fields

    Starting with v0.66.0, @hey-api/typescript will generate separate types for payloads and responses if it detects any read-only or write-only fields. To preserve the previous behavior and generate a single type regardless, set readOnlyWriteOnlyBehavior to off.

    export default {
      input: 'https://get.heyapi.dev/hey-api/backend',
      output: 'src/client',
      plugins: [
        // ...other plugins
        {
          name: '@hey-api/typescript',
          readOnlyWriteOnlyBehavior: 'off', // [!code ++]
        },
      ],
    };