ide-assi 0.224.0 → 0.226.0
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/bundle.cjs.js +5 -1
- package/dist/bundle.esm.js +5 -1
- package/dist/components/ideAi.js +4 -0
- package/package.json +1 -1
- package/src/components/ideAi.js +4 -0
package/dist/bundle.cjs.js
CHANGED
|
@@ -193805,7 +193805,7 @@ class IdeAi
|
|
|
193805
193805
|
|
|
193806
193806
|
const columnInfo = await this.#getColumnInfo(where.table);
|
|
193807
193807
|
|
|
193808
|
-
await this.#generateTmplFile("/prompts/meta/U.BuildMyBatisMapper.txt", "mybatis.xml", {
|
|
193808
|
+
const mybatisXmlSource = await this.#generateTmplFile("/prompts/meta/U.BuildMyBatisMapper.txt", "mybatis.xml", {
|
|
193809
193809
|
userPrompt: userPrompt,
|
|
193810
193810
|
originSrc: src.mybatis,
|
|
193811
193811
|
resultType: srcPath.resultType,
|
|
@@ -193814,6 +193814,10 @@ class IdeAi
|
|
|
193814
193814
|
});
|
|
193815
193815
|
this.#parent.addMessage("MyBatis 소스파일을 생성했습니다.");
|
|
193816
193816
|
|
|
193817
|
+
console.log(src.mybatis);
|
|
193818
|
+
console.log("======================");
|
|
193819
|
+
console.log(mybatisXmlSource);
|
|
193820
|
+
|
|
193817
193821
|
return;
|
|
193818
193822
|
};
|
|
193819
193823
|
|
package/dist/bundle.esm.js
CHANGED
|
@@ -193801,7 +193801,7 @@ class IdeAi
|
|
|
193801
193801
|
|
|
193802
193802
|
const columnInfo = await this.#getColumnInfo(where.table);
|
|
193803
193803
|
|
|
193804
|
-
await this.#generateTmplFile("/prompts/meta/U.BuildMyBatisMapper.txt", "mybatis.xml", {
|
|
193804
|
+
const mybatisXmlSource = await this.#generateTmplFile("/prompts/meta/U.BuildMyBatisMapper.txt", "mybatis.xml", {
|
|
193805
193805
|
userPrompt: userPrompt,
|
|
193806
193806
|
originSrc: src.mybatis,
|
|
193807
193807
|
resultType: srcPath.resultType,
|
|
@@ -193810,6 +193810,10 @@ class IdeAi
|
|
|
193810
193810
|
});
|
|
193811
193811
|
this.#parent.addMessage("MyBatis 소스파일을 생성했습니다.");
|
|
193812
193812
|
|
|
193813
|
+
console.log(src.mybatis);
|
|
193814
|
+
console.log("======================");
|
|
193815
|
+
console.log(mybatisXmlSource);
|
|
193816
|
+
|
|
193813
193817
|
return;
|
|
193814
193818
|
};
|
|
193815
193819
|
|
package/dist/components/ideAi.js
CHANGED
|
@@ -398,6 +398,10 @@ export class IdeAi
|
|
|
398
398
|
});
|
|
399
399
|
this.#parent.addMessage("MyBatis 소스파일을 생성했습니다.");
|
|
400
400
|
|
|
401
|
+
console.log(src.mybatis);
|
|
402
|
+
console.log("======================");
|
|
403
|
+
console.log(mybatisXmlSource);
|
|
404
|
+
|
|
401
405
|
return;
|
|
402
406
|
|
|
403
407
|
const serviceSrc = await this.#generateTmplFile("/prompts/meta/BuildService.txt", "service.java", {
|
package/package.json
CHANGED
package/src/components/ideAi.js
CHANGED
|
@@ -398,6 +398,10 @@ export class IdeAi
|
|
|
398
398
|
});
|
|
399
399
|
this.#parent.addMessage("MyBatis 소스파일을 생성했습니다.");
|
|
400
400
|
|
|
401
|
+
console.log(src.mybatis);
|
|
402
|
+
console.log("======================");
|
|
403
|
+
console.log(mybatisXmlSource);
|
|
404
|
+
|
|
401
405
|
return;
|
|
402
406
|
|
|
403
407
|
const serviceSrc = await this.#generateTmplFile("/prompts/meta/BuildService.txt", "service.java", {
|