ide-assi 0.224.0 → 0.225.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 +3 -1
- package/dist/bundle.esm.js +3 -1
- package/dist/components/ideAi.js +2 -0
- package/package.json +1 -1
- package/src/components/ideAi.js +2 -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,8 @@ class IdeAi
|
|
|
193814
193814
|
});
|
|
193815
193815
|
this.#parent.addMessage("MyBatis 소스파일을 생성했습니다.");
|
|
193816
193816
|
|
|
193817
|
+
console.log(mybatisXmlSource);
|
|
193818
|
+
|
|
193817
193819
|
return;
|
|
193818
193820
|
};
|
|
193819
193821
|
|
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,8 @@ class IdeAi
|
|
|
193810
193810
|
});
|
|
193811
193811
|
this.#parent.addMessage("MyBatis 소스파일을 생성했습니다.");
|
|
193812
193812
|
|
|
193813
|
+
console.log(mybatisXmlSource);
|
|
193814
|
+
|
|
193813
193815
|
return;
|
|
193814
193816
|
};
|
|
193815
193817
|
|
package/dist/components/ideAi.js
CHANGED
package/package.json
CHANGED
package/src/components/ideAi.js
CHANGED