@g1cloud/entity-modeler-next 5.0.0-beta.20 → 5.0.0-beta.24
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/dist/core/scaffoldJava.d.ts +30 -1
- package/dist/entity-modeler.js +8112 -8038
- package/dist/entity-modeler.umd.cjs +26 -24
- package/dist/i18n/ko.d.ts +2 -0
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/i18n/ko.d.ts
CHANGED
|
@@ -367,6 +367,7 @@ export declare const ko: {
|
|
|
367
367
|
readonly 'em.check.name6Column': "컬럼 물리명이 SQL 예약어입니다: \"{name}\"";
|
|
368
368
|
readonly 'em.check.name6Table': "테이블 물리명이 SQL 예약어입니다: \"{name}\"";
|
|
369
369
|
readonly 'em.check.name6Index': "인덱스 이름이 SQL 예약어입니다: \"{name}\"";
|
|
370
|
+
readonly 'em.check.name7': "관계/임베드 속성({attrType})의 이름이 비어 있습니다 — 이름이 곧 JPA 필드명이라 코드 생성 시 이 관계가 통째로 누락됩니다. 속성명을 채우세요";
|
|
370
371
|
readonly 'em.check.jpa1': "JPA 엔티티에 식별자(PK) 속성이 없습니다";
|
|
371
372
|
readonly 'em.check.jpa2': "임베더블 타입은 식별자 속성을 가질 수 없습니다: \"{name}\"";
|
|
372
373
|
readonly 'em.check.jpa4': "식별 관계 사이클입니다 (PK 무한 의존): {path}";
|
|
@@ -385,6 +386,7 @@ export declare const ko: {
|
|
|
385
386
|
readonly 'em.check.jpa16': "자연키(@NaturalId) 속성은 transient(@Transient)일 수 없습니다: \"{name}\"";
|
|
386
387
|
readonly 'em.check.jpa17': "자연키(@NaturalId) 속성은 not null이 권장됩니다(비즈니스 키는 non-null이 원칙): \"{name}\"";
|
|
387
388
|
readonly 'em.check.jpa18': "cascade가 관계 양쪽(부모·자식)에 모두 설정되어 양방향 전파됩니다 — 의도치 않은 연쇄 저장/삭제·전파 사이클 위험. 보통 cascade는 한쪽에만 둡니다";
|
|
389
|
+
readonly 'em.check.jpa19': "부모에 컬렉션/참조 필드가 있으나 자식({child})에 대응 관계 속성이 없어 JPA 매핑(mappedBy)을 만들 수 없습니다 — 코드젠이 이 관계를 방출하지 못합니다. 자식에 FK 속성을 만들거나 관계를 단방향으로 정리하세요";
|
|
388
390
|
readonly 'em.check.type1': "타겟 DB가 지원하지 않는 컬럼 타입입니다: \"{dataType}\"";
|
|
389
391
|
readonly 'em.check.type2': "{dataType} 타입에 length가 지정되지 않았습니다";
|
|
390
392
|
readonly 'em.check.type3': "공유 대상 컬럼의 타입({targetType})이 {metaName} 정의({metaType})와 다릅니다";
|
package/dist/index.d.ts
CHANGED
|
@@ -13,7 +13,7 @@ export * from './core/validation';
|
|
|
13
13
|
export * from './core/quickFix';
|
|
14
14
|
export * from './core/sharedColumn';
|
|
15
15
|
export { JAVA_TYPES, SELECTABLE_JAVA_TYPES, javaTypeLabel, CUSTOM_TYPE_VALUE, GROUP_CODE_ENUM_VALUE, DEFAULT_JAVA_TYPE, type JavaTypeDef, } from './core/javaTypes';
|
|
16
|
-
export { scaffoldEntityJava, type ScaffoldOptions, type ScaffoldedEntity, } from './core/scaffoldJava';
|
|
16
|
+
export { scaffoldEntityJava, isGeneratable, type ScaffoldOptions, type ScaffoldedEntity, } from './core/scaffoldJava';
|
|
17
17
|
export { migrateLegacyMoney } from './core/migrateLegacyMoney';
|
|
18
18
|
export { multiplicityLabel } from './core/associationNav';
|
|
19
19
|
export { stereotypeLabel } from './core/stereotype';
|