openapi-generator-plus-generators
openapi-generator-plus-generators copied to clipboard
When an object is extended and that objected has a discriminator, the field that acts as the discriminator is removed from the object. To illustrate: ``` components: schemas: ObjectWithDiscriminator: oneOf:...
Currently the `plain-documentation-generator` supports excluding operation paths from generation. It would be nice if this functionality was expanded to all generators. This method of exclusion also only works on operations/endpoints....
If we have a lot of query parameters, we getting code like this: ``` sportApiFetch( CompetitionsApiFp({ authorization: `Bearer ${token}`, }).getV2Competitions( undefined, undefined, areaId, undefined, undefined, undefined, undefined, undefined, undefined, undefined,...
Bumps [@babel/traverse](https://github.com/babel/babel/tree/HEAD/packages/babel-traverse) from 7.21.2 to 7.23.2. Release notes Sourced from @babel/traverse's releases. v7.23.2 (2023-10-11) NOTE: This release also re-publishes @babel/core, even if it does not appear in the linked release...
Changes needed to support properties like 'some:property' widely used in API design. See [HAL format](https://stateless.group/hal_specification.html) for example.
The `@javax.validation.constraints.Size` annotation on the following code: ```java @io.swagger.v3.oas.annotations.media.Schema(name = "band1Email") @com.fasterxml.jackson.annotation.JsonProperty(value = "band1Email") @javax.validation.constraints.Size(min = 1, max = 16777215, payload = javax.validation.valueextraction.Unwrapping.Unwrap.class, groups = { web.api.validation.Request.class, web.api.validation.Response.class }) public...
I am unable to successfully generate the jax-rs client from the @openapi-generator-plus/java-jaxrs-client-generator 2.1.4 I am using PetStore yaml file as reference 1) config.yml inputPath: api.yml outputPath: dist generator: "@openapi-generator-plus/java-jaxrs-client-generator" 2)...
Hello, i have following openapi specification and trying to generate api using @openapi-generator-plus/typescript-fetch-client-generator": "^1.4.0" : ``` "requestBody": { "content": { "multipart/form-data": { "schema": { "type": "object", "required": ["file"], "properties": {...
I have method that describe DELETE operation. Responses array of swagger may look like ``` responses: '200': description: Removed response with body content: application/json: schema: type: object '204': description: Removed...
Related #32 Using the same the petstore swagger.json, the generated TypeScript includes the following code: ```ts loginUser(__params: UserApi.LoginUserRequest, options?: RequestInit): (fetch?: FetchAPI, basePath?: string) => Promise { const localVarFetchArgs =...