Ellis Whitehead
Ellis Whitehead
@abenhamdine Is your company still planning on moving forward with this? This repo is so getting so outdated, it'll be great to see a maintained version.
Just as a general comment, I've been using `json-schema-to-typescript` for a few months without any complaints so far, except that sometimes I don't understand how it chooses the interface names...
We're facing the same issue. We compose parts of specs together from different places to assemble the full spec. To achieve this, we used imports like this: ```ts import {...
I doubt that type guards would work well for the use case described here of building up the specs piecemeal. Perhaps you could export the types under a path like...
I made the following patch to get it to work for my purposes. It's not a good general solution, though. ``` diff --git a/build/src/types-unstable.d.ts b/build/src/types-unstable.d.ts new file mode 100644 index...
I'm very excited to say that I found a workaround that allowed me to upgrade to the latest version by getting rid of the ambient module stuff. Here are the...
Trying to use `@testcontainers/postgresql` also leads to the `node_module_register` error
@colinhacks Similar to the @anatine/zod-openapi team, I also depend on zod introspect to generate my own schemas, so the idea of replacing `z.discriminatedUnion` with `z.switch` is alarming. If the API...
This patch would solve a big issue in my code base.
> Anyone found a solution for this? I've used several different approaches. Here's one really ugly workaround I'm using in one case. After running `turbo prune --docker ...`, I run...