swagger-typescript-api icon indicating copy to clipboard operation
swagger-typescript-api copied to clipboard

TypeScript API generator via Swagger scheme

Results 247 swagger-typescript-api issues
Sort by recently updated
recently updated
newest added

## Problem Currently this library seems to ignore `format` information on data types. Most formats just add some metadata, so they are fine to skip, but `format: date-time` actually has...

enhancement
next release

Hi First thanks for great generator - really like it! Great work! In release 8.0.0 there was [this commit](https://github.com/acacode/swagger-typescript-api/pull/225/commits/6427aa3463882c347d1382eb01d726d900eafa3d) which introduced feature "Allow to set global response type format through...

Knife4j(a swagger doc server) can set up a basic http authentication with username and password which swagger-typescript-api can not fetch api.json without login. Currently, i solve this problem with the...

Sometime we have data structures which can be inherited in every way except for whether or not parts of them are required. For example, if you POST a request then...

It can evaluate format type to json for some endpoints and can't tell anything for some even though both was json. So I decided to configure default format type as...

Could swagger-typescript-api generate a client that returns - `Promise` - instead of `Promise`? 99% of the time I'm only interested in the actual data and doing `.data` makes the code...

In general it makes sense to always set your formatter to JSON as most of the methods are JSON responses. The only exception that would make sense to generally skip...

Hi there. I haven't used the project yet, but it's not obvious if the generated client API supports request middleware. Is it possible to add request middleware?

Hi, Codegen in cool ^^, but i have some problem I'm trying to use next yaml ``` openapi: 3.0.2 components: schemas: Employee: type: object required: - id properties: id: type:...