ide-assi 0.198.0 → 0.199.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 -3
- package/dist/bundle.esm.js +5 -3
- package/dist/components/ideAi.js +5 -3
- package/package.json +1 -1
- package/src/components/ideAi.js +5 -3
package/dist/bundle.cjs.js
CHANGED
|
@@ -193697,6 +193697,7 @@ class IdeAi
|
|
|
193697
193697
|
return {
|
|
193698
193698
|
package: packageName,
|
|
193699
193699
|
namespace: namespace,
|
|
193700
|
+
resultType: this.#parent.config.basePackage.split(".").slice(0, -1).join(".") + ".core.CamelCaseMap",
|
|
193700
193701
|
controller: `${packageName.replaceAll(".", "/")}/controller/${fileName}Controller.java`,
|
|
193701
193702
|
service: `${packageName.replaceAll(".", "/")}/service/${fileName}Service.java`,
|
|
193702
193703
|
mybatis: `${path.split("/").slice(0, -1).join("/").toLowerCase()}/${fileName}Mapper.xml`,
|
|
@@ -193742,9 +193743,10 @@ class IdeAi
|
|
|
193742
193743
|
|
|
193743
193744
|
//const mybatisXmlSource = await this.#generateMyBatis(userPrompt, where.package, columnInfo);
|
|
193744
193745
|
const mybatisXmlSource = await this.#generateTmplFile("/prompts/meta/BuildMyBatisMapper.txt", "mybatis.xml", {
|
|
193745
|
-
|
|
193746
|
-
|
|
193747
|
-
|
|
193746
|
+
resultType: srcPath.resultType,
|
|
193747
|
+
userPrompt: userPrompt,
|
|
193748
|
+
namespace: srcPath.namespace,
|
|
193749
|
+
tableDefinitions: columnInfo
|
|
193748
193750
|
});
|
|
193749
193751
|
this.#parent.addMessage("MyBatis 소스파일을 생성했습니다.");
|
|
193750
193752
|
|
package/dist/bundle.esm.js
CHANGED
|
@@ -193693,6 +193693,7 @@ class IdeAi
|
|
|
193693
193693
|
return {
|
|
193694
193694
|
package: packageName,
|
|
193695
193695
|
namespace: namespace,
|
|
193696
|
+
resultType: this.#parent.config.basePackage.split(".").slice(0, -1).join(".") + ".core.CamelCaseMap",
|
|
193696
193697
|
controller: `${packageName.replaceAll(".", "/")}/controller/${fileName}Controller.java`,
|
|
193697
193698
|
service: `${packageName.replaceAll(".", "/")}/service/${fileName}Service.java`,
|
|
193698
193699
|
mybatis: `${path.split("/").slice(0, -1).join("/").toLowerCase()}/${fileName}Mapper.xml`,
|
|
@@ -193738,9 +193739,10 @@ class IdeAi
|
|
|
193738
193739
|
|
|
193739
193740
|
//const mybatisXmlSource = await this.#generateMyBatis(userPrompt, where.package, columnInfo);
|
|
193740
193741
|
const mybatisXmlSource = await this.#generateTmplFile("/prompts/meta/BuildMyBatisMapper.txt", "mybatis.xml", {
|
|
193741
|
-
|
|
193742
|
-
|
|
193743
|
-
|
|
193742
|
+
resultType: srcPath.resultType,
|
|
193743
|
+
userPrompt: userPrompt,
|
|
193744
|
+
namespace: srcPath.namespace,
|
|
193745
|
+
tableDefinitions: columnInfo
|
|
193744
193746
|
});
|
|
193745
193747
|
this.#parent.addMessage("MyBatis 소스파일을 생성했습니다.");
|
|
193746
193748
|
|
package/dist/components/ideAi.js
CHANGED
|
@@ -295,6 +295,7 @@ export class IdeAi
|
|
|
295
295
|
return {
|
|
296
296
|
package: packageName,
|
|
297
297
|
namespace: namespace,
|
|
298
|
+
resultType: this.#parent.config.basePackage.split(".").slice(0, -1).join(".") + ".core.CamelCaseMap",
|
|
298
299
|
controller: `${packageName.replaceAll(".", "/")}/controller/${fileName}Controller.java`,
|
|
299
300
|
service: `${packageName.replaceAll(".", "/")}/service/${fileName}Service.java`,
|
|
300
301
|
mybatis: `${path.split("/").slice(0, -1).join("/").toLowerCase()}/${fileName}Mapper.xml`,
|
|
@@ -340,9 +341,10 @@ export class IdeAi
|
|
|
340
341
|
|
|
341
342
|
//const mybatisXmlSource = await this.#generateMyBatis(userPrompt, where.package, columnInfo);
|
|
342
343
|
const mybatisXmlSource = await this.#generateTmplFile("/prompts/meta/BuildMyBatisMapper.txt", "mybatis.xml", {
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
344
|
+
resultType: srcPath.resultType,
|
|
345
|
+
userPrompt: userPrompt,
|
|
346
|
+
namespace: srcPath.namespace,
|
|
347
|
+
tableDefinitions: columnInfo
|
|
346
348
|
});
|
|
347
349
|
this.#parent.addMessage("MyBatis 소스파일을 생성했습니다.");
|
|
348
350
|
|
package/package.json
CHANGED
package/src/components/ideAi.js
CHANGED
|
@@ -295,6 +295,7 @@ export class IdeAi
|
|
|
295
295
|
return {
|
|
296
296
|
package: packageName,
|
|
297
297
|
namespace: namespace,
|
|
298
|
+
resultType: this.#parent.config.basePackage.split(".").slice(0, -1).join(".") + ".core.CamelCaseMap",
|
|
298
299
|
controller: `${packageName.replaceAll(".", "/")}/controller/${fileName}Controller.java`,
|
|
299
300
|
service: `${packageName.replaceAll(".", "/")}/service/${fileName}Service.java`,
|
|
300
301
|
mybatis: `${path.split("/").slice(0, -1).join("/").toLowerCase()}/${fileName}Mapper.xml`,
|
|
@@ -340,9 +341,10 @@ export class IdeAi
|
|
|
340
341
|
|
|
341
342
|
//const mybatisXmlSource = await this.#generateMyBatis(userPrompt, where.package, columnInfo);
|
|
342
343
|
const mybatisXmlSource = await this.#generateTmplFile("/prompts/meta/BuildMyBatisMapper.txt", "mybatis.xml", {
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
344
|
+
resultType: srcPath.resultType,
|
|
345
|
+
userPrompt: userPrompt,
|
|
346
|
+
namespace: srcPath.namespace,
|
|
347
|
+
tableDefinitions: columnInfo
|
|
346
348
|
});
|
|
347
349
|
this.#parent.addMessage("MyBatis 소스파일을 생성했습니다.");
|
|
348
350
|
|