swagger-typescript-api
swagger-typescript-api copied to clipboard
TypeScript API generator via Swagger scheme
``` /v2/products: post: consumes: - multipart/form-data description: '"Создание товара"' parameters: - in: formData name: article type: string - in: formData name: brand_id type: integer - in: formData name: code type:...
Right now when setting `httpClientType: "axios"` Inside HTTPClient class there are some type collisions when constructing headers   I assume this file is autogenerated from [here](https://github.com/acacode/swagger-typescript-api/blob/master/templates/base/http-clients/axios-http-client.eta)
Is it possible to generate camelCase keys in interfaces ?
Hi! Help me, please. How can I use access token from local storage and when it expired how can I get new token with refresh token from local storage ,...
Hello, I'm facing issues due to wrong information in Swagger of some APIs i'm using. (ex : info.termsOfService must be a URL) "swagger2openapi" offers an option to fix those errors...
```diff /** * @description for given key. * @tags Accounts * @name StorageDetail * @summary Retrieve account storage value * @request GET:/accounts/{address}/storage/{key} * @response `200` `Storage` OK * @response `400`...
Hey. In our projects build phase, swagger-typescript-api is throwing deprecation warnings in the following fashion: ``` Generating from apps/userservice/src/build/tsed.build.config.js ... (node:11412) [DEP0147] DeprecationWarning: In future versions of Node.js, fs.rmdir(path, {...
Please check out my fork: [swagger-typescript-api-nextgen](https://github.com/grandsilence/swagger-typescript-api-nextgen), maybe it will be useful for those who need a secure version with updated dependencies, as well as support for current axios and other...
Some of my API routes look like this: `/api/3/ContainerHistory/GetUserContainers` This leads to the following error when generating types: ``` SyntaxError: An identifier or keyword cannot immediately follow a numeric literal....
I've got a request the has 2 different return types: one on status 200 and another one on status 201 ``` paths: /hello: get: tags: - "Hello Api" operationId: sayHello...