Chris Lott
Chris Lott
I like the "Download File" idea while in the desktop app. I think this should still be separate from the export URL though. The export URL is helpful for sharing...
  In the desktop App, you can configure what port Prism runs on. Would this solve the issue?
Sorry for the delay! We've just disabled local file mode in the latest version while we fix some outstanding issues like this one.
By comment, do you mean the model's description?
A Trait is basically just a group of shared parameters/responses that you can edit in the same view and add via one key. When you create a trait, under the...
If you're using nextjs, try adding prisma to the `serverComponentsExternalPackages` in your config: ```js // next.config.js const nextConfig = { experimental: { appDir: true, serverComponentsExternalPackages: ['@prisma/client'], }, }; ``` https://beta.nextjs.org/docs/api-reference/next.config.js#servercomponentsexternalpackages
@mxdvl have you tried using the [experiemental-dts](https://tsup.egoist.dev/#generate-declaration-file) option? I was able to build successfully with it enabled, though it seems pretty unstable (experimental). ```ts import { defineConfig } from 'tsup';...
@karol-maciaszek @XVincentX yeah quicktype is **massive** for our needs lol https://bundlephobia.com/[email protected] How much work to fix [that issue](https://github.com/krg7880/json-schema-generator/issues/30) in [our fork of json-schema-generator](https://github.com/stoplightio/json-schema-generator)? I don't think json-schema-generator is being maintained...
Might be good to chat with @marcelltoth too since he's working on integrating json-schema-generator into Studio, so maybe it makes sense to integrate our fork instead? https://github.com/stoplightio/platform-internal/pull/4273