eva4j 1.0.9 → 1.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eva4j",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.10",
|
|
4
4
|
"description": "A powerful Node.js CLI for generating Spring Boot projects with modular architecture that enables efficient monolith-first development with seamless transition to microservices",
|
|
5
5
|
"main": "bin/eva4j.js",
|
|
6
6
|
"bin": {
|
|
@@ -752,7 +752,7 @@ async function generateCrudResources(aggregate, moduleName, moduleBasePath, pack
|
|
|
752
752
|
for (const entity of secondaryEntities) {
|
|
753
753
|
console.log(`[DEBUG] Generating CreateItemDto for entity: ${entity.name}`);
|
|
754
754
|
const createFields = entity.fields.filter(f =>
|
|
755
|
-
f.name !== 'id' && f.name !== 'createdAt' && f.name !== 'updatedAt'
|
|
755
|
+
f.name !== 'id' && f.name !== 'createdAt' && f.name !== 'updatedAt' && f.name !== 'createdBy' && f.name !== 'updatedBy'
|
|
756
756
|
);
|
|
757
757
|
|
|
758
758
|
// Get nested relationships for this entity
|