We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
openapi: '3.0.0' info: version: 1.0.0 title: Swagger ÆrligØnskeÅpen license: name: MIT paths: /ærligØnskeÅpen: get: summary: List all ærlig-ønske-åpen operationId: listÆrligØnskeÅpen responses: '200': description: A paged array of ærlig-ønske-åpen content: application/json: schema: $ref: '#/components/schemas/ÆrligØnskeåpen' components: schemas: ÆrligØnskeåpen: type: object required: - ærlig - ønske - åpen properties: ærlig: type: string ønske: type: string åpen: type: string
It generates the file rligNskePen.ts:
rligNskePen.ts
export interface RligNskePen { ærlig: string; åpen: string; ønske: string; }
It should generate the file ærligØnskeåpen.ts:
ærligØnskeåpen.ts
export interface ÆrligØnskeåpen { ærlig: string; åpen: string; ønske: string; }
Nope.
I've been testing with different versions of Orval, and the issue starts with 6.18.0.
Operating System: MacOs 13.6.3 Package Version: 6.23.0 Browser Version: Chrome 119.0.6045.123
The text was updated successfully, but these errors were encountered:
My gut feeling is this is the ticket that broke it: #909
Sorry, something went wrong.
I have a PR comming where I belive I've fixed the issues. My testing found that #951 was probably the cause.
orhels
Successfully merging a pull request may close this issue.
What are the steps to reproduce this issue?
What happens?
It generates the file
rligNskePen.ts
:What were you expecting to happen?
It should generate the file
ærligØnskeåpen.ts
:Any logs, error output, etc?
Nope.
Any other comments?
I've been testing with different versions of Orval, and the issue starts with 6.18.0.
What versions are you using?
Operating System: MacOs 13.6.3
Package Version: 6.23.0
Browser Version: Chrome 119.0.6045.123
The text was updated successfully, but these errors were encountered: