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.
@@ -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
 
@@ -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
 
@@ -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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ide-assi",
3
3
  "type": "module",
4
- "version": "0.224.0",
4
+ "version": "0.226.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -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", {