Drew Powers
Drew Powers
> The first thing I would do is making a root `CONTRIBUTING`. I realized too late that they exist. Done! Good idea. > And the second thing is adding commit...
> I guess we have to remove the parallel build as `openapi-react-query` will start building when `openapi-fetch` build hasn't finished. > > In the future it would be interesting to...
Could you run your schema through Redocly’s validator, and confirm there are no schema issues? We [do have tests in place for `nullable: true`](https://github.com/openapi-ts/openapi-typescript/blob/bb0355a03039bafd9e44b1809d3a5a560d909def/packages/openapi-typescript/test/transform/schema-object/object.test.ts#L99) so if you are experiencing an...
Unfortunately `--path-params-as-types` isn’t fully-compatible with openapi-fetch, and won’t be. We’d suggest migrating away from the flag to continue using openapi-fetch. The flag may even be deprecated in future versions of...
Sorry for the delay on this. We’ve merged some other PRs that have caused this PR to fall out of line with `main`. Would love if you could rebase. It...
> What struck me was the level of repetition we all suffer from. I’m just asserting my opinion here, but I think ideally this is how Open Source works? Having...
Internally there was a change from `fetch(url, init)` to `fetch(new Request(options))` to support middleware. Since this library is still pre-1.0, and it was the first pass at middleware, it was...
Thanks for flagging! A bit of both. `ts` - The new version dropped the `ts` option. It will just output `.d.ts` regardless of settings. There’s no reason you wouldn’t want...
Yeah I’m seeing the same thing with `minItems` + `maxItems`—empty array generation. The original bug has `readonly` but I’m seeing it without that flag (not that that is likely to...
> I think it's probably possible to keep the old + new behaviors, putting the new stuff behind flags To be honest I’ve never thought of that use of feature...