openapi-typescript-fetch
openapi-typescript-fetch copied to clipboard
A typed fetch client for openapi-typescript
I have an openapi spec for authentification with few responses types: ```json "/authentication": { "post": { "tags": [ "authenticate_user" ], "operationId": "authenticate", "requestBody": { "content": { "application/json": { "schema": {...
FetchConfig is not exported from types in index
I made this package `type=module` and created the relevant exports entrypoints on `package.json` so that it works together with esm and cjs projects.
With Typescript 4.6.2 everything works as intended. When updating to Typescript 5.0.4, this error appeared for method(): `Argument type "get" is not assignable to parameter type M`  Cheers, Para
Hi, guys! After reading the README.md, it is not clear what settings can be used for configuration `openapi-typescript-fetch`. These settings are in [openapi-generator repository](https://github.com/OpenAPITools/openapi-generator/blob/master/docs/generators/typescript-fetch.md). Can I add a link to...
In cases where a non-GET request has optional query params, the `.create()` function incorrectly allow you to omit them. This runtime code _must_ be present so the library can distinguish...
Hi all, First of all, thank you for you excellent library. I wanted to let you know I found an issue while using a custom post middleware in my autogenerated...