Hi, in my swagger.json file, I have this definition: ```json "jobStatus": { "type": "integer", "format": "int32", "description": "0: created, 1: uploading, 2: uploading failed, 3: ingesting, 4: ingestion failed, 5: successful", "enum": [ 0, 1, 2, 3, 4, 5 ] }, ``` But after I processed it by swagger-to-ts, I got something like this: ```typescript jobStatus?: "0" | "1" | "2" | "3" | "4" | "5"; ``` which is supposed to be ```typescript jobStatus?: 0 | 1 | 2 | 3 | 4 | 5; ``` Could you kindly help to fix this bug? 😊