ide-assi 0.290.0 → 0.292.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 +2 -1
- package/dist/bundle.esm.js +2 -1
- package/dist/components/ideAi.js +2 -1
- package/package.json +1 -1
- package/src/components/ideAi.js +2 -1
package/dist/bundle.cjs.js
CHANGED
|
@@ -193938,7 +193938,8 @@ class IdeAi
|
|
|
193938
193938
|
if (!apply.mybatis || !apply.service || !apply.controller || !apply.javascript) {
|
|
193939
193939
|
return "소스 생성하실려면 변경대상 소스를 모두 선택하세요.";
|
|
193940
193940
|
}
|
|
193941
|
-
await this.#createSource(userPrompt, apply);
|
|
193941
|
+
//await this.#createSource(userPrompt, apply);
|
|
193942
|
+
await this.#modifySource(userPrompt, apply);
|
|
193942
193943
|
}
|
|
193943
193944
|
else if (what === "2") {
|
|
193944
193945
|
await this.#modifySource(userPrompt, apply);
|
package/dist/bundle.esm.js
CHANGED
|
@@ -193934,7 +193934,8 @@ class IdeAi
|
|
|
193934
193934
|
if (!apply.mybatis || !apply.service || !apply.controller || !apply.javascript) {
|
|
193935
193935
|
return "소스 생성하실려면 변경대상 소스를 모두 선택하세요.";
|
|
193936
193936
|
}
|
|
193937
|
-
await this.#createSource(userPrompt, apply);
|
|
193937
|
+
//await this.#createSource(userPrompt, apply);
|
|
193938
|
+
await this.#modifySource(userPrompt, apply);
|
|
193938
193939
|
}
|
|
193939
193940
|
else if (what === "2") {
|
|
193940
193941
|
await this.#modifySource(userPrompt, apply);
|
package/dist/components/ideAi.js
CHANGED
|
@@ -521,7 +521,8 @@ export class IdeAi
|
|
|
521
521
|
if (!apply.mybatis || !apply.service || !apply.controller || !apply.javascript) {
|
|
522
522
|
return "소스 생성하실려면 변경대상 소스를 모두 선택하세요.";
|
|
523
523
|
}
|
|
524
|
-
await this.#createSource(userPrompt, apply);
|
|
524
|
+
//await this.#createSource(userPrompt, apply);
|
|
525
|
+
await this.#modifySource(userPrompt, apply);
|
|
525
526
|
}
|
|
526
527
|
else if (what === "2") {
|
|
527
528
|
await this.#modifySource(userPrompt, apply);
|
package/package.json
CHANGED
package/src/components/ideAi.js
CHANGED
|
@@ -521,7 +521,8 @@ export class IdeAi
|
|
|
521
521
|
if (!apply.mybatis || !apply.service || !apply.controller || !apply.javascript) {
|
|
522
522
|
return "소스 생성하실려면 변경대상 소스를 모두 선택하세요.";
|
|
523
523
|
}
|
|
524
|
-
await this.#createSource(userPrompt, apply);
|
|
524
|
+
//await this.#createSource(userPrompt, apply);
|
|
525
|
+
await this.#modifySource(userPrompt, apply);
|
|
525
526
|
}
|
|
526
527
|
else if (what === "2") {
|
|
527
528
|
await this.#modifySource(userPrompt, apply);
|