Hi, HN! I wrote a native TypeScript utility to generate typed HTTP client from OpenAPI schema. The existing solution didn't work for me for various reasons.<p>Please take a look, maybe it will be useful/convenient for someone else too.<p>The main idea is to generate a typed client in one file with normal function names (abstraction over bare paths), to be able to understand what broke on the frontend when changing APIs, without extra dependencies on the frontend.<p>My main usecase of this library is with React / NestJS backends. So the generation of api call names is well adapted to its swagger plugin.<p>Issues welcome if something doesn't work well with your backend framework.