-
👋 I could not re-open [previous issue](https://github.com/ThomasAribart/json-schema-to-ts/issues/84), seems like [the issue](https://github.com/ThomasAribart/json-schema-to-ts/issues/84#issuecomment-1…
-
source: https://clerk.com/docs/reference/backend-api
config
```yaml
generate:
models: true
client: true
```
it failed to generate types for schemas defined in response and allOf peroper…
-
I just stumbled across _traits_, must've missed them before. My initial thought was: 'oh nice, now I can pull out the CloudEvents JSON schema from the specs and don't need all the copypasta'.
I the…
-
### Steps to reproduce
Try generating the code with the provided snippet.
### Expected results
It's expected that the types will be merged into new types with autogenerated names possibly.
### Act…
-
I'm not sure whay's up, but for some reason allof the fish look like cheese, which I believe comes from the useful food Reborn mod. Any suggestions for settings or dealing with this? It's hard to be u…
-
I don't have time to create a full PR with tests, but here's a repro and a patch if someone has the time to integrate them.
I believe this is closely related to, but still distinct from dart-lang/t…
-
Hi,
We're seeing a parse warning when trying to lint the following API spec:
Example: -- invalid allOf variant
```
---
openapi: 3.0.3
info:
title: Test
version: 3.0.0
serve…
-
In the generated doc, it would be nice that the allOf do not show up as such, but as a composed schema which is a concatenation of all the schemas in the allOf. This would hide the "allOf" from the re…
-
### Question
I'm sure there are details I'm unaware of that impact these things, so forgive me if this has been discussed before. I have a few questions/thoughts regarding `anyOf`/`allOf`/`oneOf`:
…
-
```ts
const phoneNumber = z.string().openapi('Phone')
const mySchema = z.object({
somePhone: phoneNumber.nullable(),
anotherPhone: phoneNumber,
})
```
Expected result:
```json
"…