Skip to content

v2.0.1

Choose a tag to compare

@pmcelhaney pmcelhaney released this 02 Mar 18:20
· 2289 commits to main since this release
dbea0a4

Patch Changes

  • 3a7046b: Sanitize operationId values before using them as TypeScript identifiers in generated code.

    Previously, any operationId from an OpenAPI spec was used verbatim, which could produce invalid TypeScript when the value contained hyphens, dots, spaces, or other characters not permitted in identifiers. The value is now converted to camelCase (e.g. get-user-profilegetUserProfile) and any remaining invalid characters are stripped.