-
Notifications
You must be signed in to change notification settings - Fork 0
Improve models handling #41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Gaviola
wants to merge
339
commits into
master
Choose a base branch
from
improveModelsHandling
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
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
…equired and not-required fields
…instance and add utils.ts to share validateStringType function
…Type' to 'field:type'
- Updated jest.config.mjs for Jest to use ES modules. - Updated package.json scripts to specify the TypeScript project for build and watch. - Adjusted exports in index.ts to include types for Field and Model. - Modified import statements in test files to use .js extensions. - Added tsconfig.build.json for build-specific TypeScript configuration. - Enhanced tsconfig.json with additional compiler options for better type checking and module handling.
…where in the `"paths"` option. Reestablished imports in tests and index to default.
…d deserialization
[FEAT] [ISSUE #11] Text Types Implementation
[FEAT] [ISSUE #17] Date Time Types Implementation
[FEAT] [ISSUE #18] Boolean and Choice Types Implementation
… the same. I was just chaking it worked like that.
…extension Co-authored-by: sebasmoyano <5084534+sebasmoyano@users.noreply.github.com>
Co-authored-by: sebasmoyano <5084534+sebasmoyano@users.noreply.github.com>
Co-authored-by: sebasmoyano <5084534+sebasmoyano@users.noreply.github.com>
…cd-803a-aa88a8c3ea44 Synchronize CLI files with standalone repository
…86-8d78-68a6d92970a0 Synchronize missing VS Code extension files from standalone repository
…del definition and updated some commands to use this.
… structure Co-authored-by: sebasmoyano <5084534+sebasmoyano@users.noreply.github.com>
Co-authored-by: sebasmoyano <5084534+sebasmoyano@users.noreply.github.com>
…, and final validations Co-authored-by: sebasmoyano <5084534+sebasmoyano@users.noreply.github.com>
…50-a675-a174f9cf7499 Comprehensive repository review and validation: Fix build configurations, dependencies, and testing infrastructure
…ory for monorepo compatibility
…k/framework into improveModelsHandling
dgaviola
approved these changes
Sep 26, 2025
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.
This PR introduces a series of fixes and improvements to enhance the user experience and robustness of our data modeling tools.
Major Fixes and Improvements
Node Operations Without Open Files: Resolved an error where operations on a node (e.g., "Add field") would fail if the corresponding model file wasn't open.
Composition and Reference Decorator: The Composition and Reference decorators are now correctly interpreted as equivalent to Relationship({type:'composition'}), ensuring models are properly nested.
Field Name Display: Field names in the tree view are now displayed using their original names instead of being capitalized.
Model Documentation: Documentation provided for models is now correctly placed in the docs property of their respective decorators, rather than as code comments.
Automatic AI Agent Execution: When creating a new model with fields requiring AI processing, the agent is now executed automatically without requiring user confirmation.
Missing HTML Decorator: Fixed an issue where creating an HTML field would attempt to import a non-existent Html decorator.