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

invalid TS file generated when const value contains substring "number" or "boolean" #1057

Open
harrykao opened this issue Feb 15, 2025 · 0 comments
Labels
bug Something isn't working

Comments

@harrykao
Copy link

harrykao commented Feb 15, 2025

Reproduced with version 13.0.23.

Test case:

{
  "openapi": "3.1.0",
  "components": {
    "schemas": {
      "MySchema": {
        "properties": {
          "working": {
            "type": "string",
            "enum": [
              "email_address"
            ],
            "const": "email_address"
          },
          "not_working": {
            "type": "string",
            "enum": [
              "phone_number"
            ],
            "const": "phone_number"
          }
        },
        "type": "object"
      }
    }
  }
}

Run it like this:

./node_modules/.bin/swagger-typescript-api -p <test_schema> --no-client

Output file:

export interface MySchema {
  working?: "email_address";
  not_working?: phone_number;
}

Note that "phone_number" isn't in quotes.

I think the problem is here. When the field value is a constant, getSchemaType() returns the literal value as a JS expression. In this case, the two keyTypes are "email_address" and "phone_number". The two getSchemaType() calls on lines 73 and 78 return "number" and "boolean", respectively. Then keyType.includes() returns true for "phone_number" on line 78 so we fail to treat the corresponding value as a string and we don't wrap it in quotes.

@smorimoto smorimoto added the bug Something isn't working label Mar 26, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants