3.3.9
(fix): Use // ... file header ... file header instead of /** ... file header ... */.
The latter is considered a JSDoc comment and may cause issues with some tools.
The TypeScript compiler will remove // but not /** */ comments.
3.3.7
(fix): Dynamically build type for enums based on the const to reduce generated code.
Before:
After:
3.3.6
(fix): Fix basic auth password parsing to support colons in passwords.