Skip to content
New issue

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

[Bug] Enums with quotes in the value throw errors #990

Open
MattTaylorQuodd opened this issue Nov 22, 2024 · 0 comments
Open

[Bug] Enums with quotes in the value throw errors #990

MattTaylorQuodd opened this issue Nov 22, 2024 · 0 comments

Comments

@MattTaylorQuodd
Copy link

Reproduction:

npx swagger-typescript-api -p https://id.casdoor.com/swagger/swagger.json -o ./casdoor

Results:

SyntaxError: An enum member name must be followed by a ',', '=', or '}'. (661:48)
  659 |  */
  660 |   export enum ObjectSubscriptionState {
> 661 |   SubStatePendingPending = "SubStatePending = "Pending"",
      |                                                ^
  662 |   SubStateErrorError = "SubStateError = "Error"",
  663 |   SubStateSuspendedSuspended = "SubStateSuspended = "Suspended"",
  664 |   SubStateActiveActive = "SubStateActive = "Active"",

I think there is some kind of quote escaping rule that is failing here. the JSON has "SubStatePending = \"Pending\"", and I would expect to see the same thing in this output.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant