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

In the secondary development process, each call to `generateApi` will force the target TypeScript file to be generated. Although you can remove them after getting the results, you still hope...

I generated a client library for a swagger file that suggests the API required a JWT Bearer token. I can't see to figure out how to supply this bearer token...

Hey, We commit the generated API code to follow change through our stories. It's good but the order of each interface change at each generation. First generation: ``` interface A...

bug
help wanted
good first issue
next major release

As title says, why are all the routes appended with List? e.g.: dashboard.intangibleValue**List** wouldnt it make more sense to append with the request type? E.g. Post, Get? dashboard.intangibleValue**Get** and is...

Is there a way to pass an API key as a query parameter as in this example OpenAPI snippet? ``` { "openapi": "3.0.0", "components": { "securitySchemes": { "api_key": { "type":...

The interface actually declares the data format of the response. If you can see the response data in the place where the interface is used, it should improve development efficiency....

How could I exclude come specifics template? ex: I have template A, B, C and D, but I only want the api route at B and D. How could I...

For example ``` searchUsers = ( data: UserFilter, query?: { page?: number; size?: number; sort?: string[] }, params: RequestParams = {}, ) =>... ``` These params are generated on version...

For example, if we want a list of lat, lon coordinates, this: ```yaml type: array items: type: array minItems: 2 maxItems: 2 prefixItems: - number - number ``` should generate:...

Does this library support distributed files assembling? Here is how I try to assemble it ``` // index.yml openapi: 3.0.3 info: title: azaza version: DEV-SNAPSHOT description: OpenAPI paths: /ics-contracts: get:...