-
-
Notifications
You must be signed in to change notification settings - Fork 7.4k
Closed
Description
UPDATE: I just realized that #5427 is quite recent, and was not included in v4.2.3. I'd expect v4.2.4 will already resolve this bug.
Bug Report Checklist
- Have you provided a full/minimal spec to reproduce the issue?
- Have you validated the input using an OpenAPI validator (example)?
- What's the version of OpenAPI Generator used?
- Have you search for related issues/PRs?
- What's the actual output vs expected output?
- [Optional] Bounty to sponsor the fix (example)
Description
modelPropertyNaming generator config default should be original, not camelCase: (see #5427, https://github.com/OpenAPITools/openapi-generator/blob/master/docs/generators/typescript-axios.md)
openapi-generator config-help -g typescript-axios
CONFIG OPTIONS
allowUnicodeIdentifiers
boolean, toggles whether unicode identifiers are allowed in names or not, default is false (Default: false)
ensureUniqueParams
Whether to ensure parameter names are unique in an operation (rename parameters that are not). (Default: true)
enumPropertyNaming
Naming convention for enum properties: 'camelCase', 'PascalCase', 'snake_case', 'UPPERCASE', and 'original' (Default: PascalCase)
modelPropertyNaming
Naming convention for the property: 'camelCase', 'PascalCase', 'snake_case' and 'original', which keeps the original name (Default: camelCase)
...
openapi-generator version
4.2.3
OpenAPI declaration file content or url
any
Command line used for generation
see Description
Steps to reproduce
see Description
Related issues/PRs
Suggest a fix
change the default in typescript-axios generator, modelPropertyNaming to original, as properly documented: https://github.com/OpenAPITools/openapi-generator/blob/master/docs/generators/typescript-axios.md
Reactions are currently unavailable