Kevin Heye
Kevin Heye
We have the same issue. When you look into the endpoint the example and the schema is rendered correctly, but the schema on the bottom is wrong.
We could fix this problem by using typeorm-ts-node-commonjs like mentioned in the [docs](https://typeorm.io/using-cli).
The problem also occurs on Node 20.11 We could fix this problem by switching from typeorm-ts-node-esm to typeorm-ts-node-commonjs like mentioned in the [docs](https://typeorm.io/using-cli) without changing anything else. @joebrewr You can...
We could fix this problem by using typeorm-ts-node-commonjs like mentioned in the [docs](https://typeorm.io/using-cli).
I was able to "fix" this error by this hack: ``` const mediaStreamSetTorch = BrowserCodeReader.mediaStreamSetTorch; BrowserCodeReader.mediaStreamSetTorch = async (track, onOff) => { try { await mediaStreamSetTorch(track, onOff); } catch (err)...
Hi, the problem is that the OpenAPI Generator TypeScript Axios does not fully support "allOf". It seems to handle it correctly when the the allOf array only contains one element....