Eric Arbour
Eric Arbour
I was on node v14 and was getting esm build errors. I was able to get the app and the tests to run with the following: SQLite 3.28.0 Node Version...
@mrtnlrsn I ran the two provided schemas through the version `10.1.4` cli and received the following for both. ```typescript /* tslint:disable */ /** * This file was automatically generated by...
@joshuaavalon Hi there, I'm new to this library and json-schema but thought I'd take a crack at looking into this issue. I think the posted version 10 output is correct...
I investigated this a bit it appears there's two things responsible for this behavior. The first is that `json-schema-to-typescript` uses `json-schema-ref-parser` to dereference referenced definitions: https://github.com/bcherny/json-schema-to-typescript/blob/8ea10a61f0d4b24749ae033a37f9aa3fb9a94417/src/resolver.ts#L11 From `json-schema-ref-parser`'s [docs](https://apitools.dev/json-schema-ref-parser/docs/ref-parser.html#dereferenceschema-options-callback): "The...
@fabb's manual controlling of the input worked for me as well, with the minor correction that `setInputValue` should be `setValue` for future readers.
Another use case for something like this would be a column that is set via a database trigger that should not be written to directly. I like the idea of...