feat(schema): add generator blocks with env-toggleable TypeScript codegen#61
Merged
feat(schema): add generator blocks with env-toggleable TypeScript codegen#61
Conversation
…egen
Add first-class `generator` block support to .prax schemas with
env-variable toggling (generate = env("VAR")), and introduce the
prax-typegen crate for generating TypeScript interfaces and Zod
schemas from Prax models.
Made-with: Cursor
📊 Benchmark ResultsBenchmark jobs completed:
See the Actions run for detailed benchmark results. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
generatorblock in.praxschemas withgenerate = env("VAR")toggle support — generators can be enabled/disabled via environment variables (true/1/yes), literal booleans, or always-on (default)prax-typegencrate (v0.1.0) — standalone TypeScript code generator that produces interfaces, enums,CreateInput/UpdateInputtypes, and Zod schemas with lazy relation refs; installable independently viacargo install prax-typegenprax-schemaupdates —GeneratorAST type, parser integration forgenerator_defblocks,Schema::enabled_generators()APISchema Example
Test plan
prax-schemafor generator AST, toggle logic, parser integrationprax-typegenfor type mapping, interface generation, Zod generationcargo clippyclean (no new warnings)cargo fmtcleanprax-typegenagainst a sample.praxfile and verify outputMade with Cursor