Martin Paucot
Martin Paucot
## Describe the enhancement you'd like to see Currently when mocking a path returning a schema with properties that have `examples` it only uses the `example`. When returning an array...
## A bit of context My APIs use Swagger (in my case @nestjs/swagger) to expose their documentation. I use the generated specification to automatically generate the `openapi.yaml` file. ```typescript export...
### Community Note * Please vote on this issue by adding a 👍 [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to the original issue to help the community and maintainers prioritize this request * Please do...
### Current Terraform Version ``` Terraform v0.12.16 ``` ### Use-cases Let's say we have in our Terraform configuration : - `terraform-aws-modules/terraform-aws-vpc` used to create a VPC with private and public...
Hi, I am trying to run the example using Expo but I get the error `Invariant Violation: requireNativeComponent: "RNSScreenStackHeaderConfig" was not found in the UIManager.`. ## Steps to reproduce -...
## Related issues - #342 ## Why ? I have to work with badly written Openapi specifications that does not contain all the available properties available. So when generating the...
## Changes This Pull-request brings a new package `openapi-tanstack-query` that combines the power of `openapi-fetch` and `@tanstack/react-query` together. Here is a simple example: ```tsx import createClient from 'openapi-fetch'; import createQueryClient...
## Proposal Adding a utility type for discriminated unions to select specific types using discriminator value. Example: ```typescript export type DiscriminateUnion = T extends Record ? T : never export...
# Introduction This Pull request brings two new libraries: ### `openapi-decorators` A utility library to automatically generate OpenAPI schemas by leveraging Typescript decorators and metadata. ### `openapi-adonis` A library to...
**Description** Currently, `openapi-fetch` uses the method as the function name (ex: `client.GET()`) and there is no way to use the method as an argument. When building around `openapi-fetch` it requires...