ide-assi 0.594.0 → 0.596.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 +18 -3
- package/dist/bundle.esm.js +18 -3
- 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
|
@@ -202658,11 +202658,16 @@ console.log(el, href, title);
|
|
|
202658
202658
|
//this.#parent.addMessage("명령을 이해했습니다.");
|
|
202659
202659
|
progressMessageInstance.updateProgress('prepare1', 'completed');
|
|
202660
202660
|
|
|
202661
|
+
/**
|
|
202661
202662
|
//active가 상세면
|
|
202662
|
-
if (!apply.javascript)
|
|
202663
|
+
if (!apply.javascript) {
|
|
202664
|
+
//return "소스 생성하실려면 변경대상 소스를 모두 선택하세요.";
|
|
202665
|
+
}
|
|
202663
202666
|
if (what === "1") {
|
|
202664
|
-
if (!apply.mybatis || !apply.service || !apply.controller || !apply.javascript)
|
|
202665
|
-
|
|
202667
|
+
if (!apply.mybatis || !apply.service || !apply.controller || !apply.javascript) {
|
|
202668
|
+
//return "소스 생성하실려면 변경대상 소스를 모두 선택하세요.";
|
|
202669
|
+
}
|
|
202670
|
+
console.log("111111111")
|
|
202666
202671
|
//await this.#createSource(userPrompt, apply);
|
|
202667
202672
|
return await this.#generateDetailSource(userPrompt, apply, progressMessageInstance);
|
|
202668
202673
|
}
|
|
@@ -202671,6 +202676,16 @@ console.log(el, href, title);
|
|
|
202671
202676
|
}
|
|
202672
202677
|
|
|
202673
202678
|
return;
|
|
202679
|
+
*/
|
|
202680
|
+
|
|
202681
|
+
if (what === "1") {
|
|
202682
|
+
if (!apply.mybatis || !apply.service || !apply.controller || !apply.javascript) ;
|
|
202683
|
+
//await this.#createSource(userPrompt, apply);
|
|
202684
|
+
return await this.#modifySource(userPrompt, apply, progressMessageInstance);
|
|
202685
|
+
}
|
|
202686
|
+
else if (what === "2") {
|
|
202687
|
+
return await this.#modifySource(userPrompt, apply, progressMessageInstance);
|
|
202688
|
+
}
|
|
202674
202689
|
}
|
|
202675
202690
|
|
|
202676
202691
|
|
package/dist/bundle.esm.js
CHANGED
|
@@ -202654,11 +202654,16 @@ console.log(el, href, title);
|
|
|
202654
202654
|
//this.#parent.addMessage("명령을 이해했습니다.");
|
|
202655
202655
|
progressMessageInstance.updateProgress('prepare1', 'completed');
|
|
202656
202656
|
|
|
202657
|
+
/**
|
|
202657
202658
|
//active가 상세면
|
|
202658
|
-
if (!apply.javascript)
|
|
202659
|
+
if (!apply.javascript) {
|
|
202660
|
+
//return "소스 생성하실려면 변경대상 소스를 모두 선택하세요.";
|
|
202661
|
+
}
|
|
202659
202662
|
if (what === "1") {
|
|
202660
|
-
if (!apply.mybatis || !apply.service || !apply.controller || !apply.javascript)
|
|
202661
|
-
|
|
202663
|
+
if (!apply.mybatis || !apply.service || !apply.controller || !apply.javascript) {
|
|
202664
|
+
//return "소스 생성하실려면 변경대상 소스를 모두 선택하세요.";
|
|
202665
|
+
}
|
|
202666
|
+
console.log("111111111")
|
|
202662
202667
|
//await this.#createSource(userPrompt, apply);
|
|
202663
202668
|
return await this.#generateDetailSource(userPrompt, apply, progressMessageInstance);
|
|
202664
202669
|
}
|
|
@@ -202667,6 +202672,16 @@ console.log(el, href, title);
|
|
|
202667
202672
|
}
|
|
202668
202673
|
|
|
202669
202674
|
return;
|
|
202675
|
+
*/
|
|
202676
|
+
|
|
202677
|
+
if (what === "1") {
|
|
202678
|
+
if (!apply.mybatis || !apply.service || !apply.controller || !apply.javascript) ;
|
|
202679
|
+
//await this.#createSource(userPrompt, apply);
|
|
202680
|
+
return await this.#modifySource(userPrompt, apply, progressMessageInstance);
|
|
202681
|
+
}
|
|
202682
|
+
else if (what === "2") {
|
|
202683
|
+
return await this.#modifySource(userPrompt, apply, progressMessageInstance);
|
|
202684
|
+
}
|
|
202670
202685
|
}
|
|
202671
202686
|
|
|
202672
202687
|
|
package/dist/components/ideAi.js
CHANGED
|
@@ -788,6 +788,7 @@ console.log(el, href, title);
|
|
|
788
788
|
//this.#parent.addMessage("명령을 이해했습니다.");
|
|
789
789
|
progressMessageInstance.updateProgress('prepare1', 'completed');
|
|
790
790
|
|
|
791
|
+
/**
|
|
791
792
|
//active가 상세면
|
|
792
793
|
if (!apply.javascript) {
|
|
793
794
|
//return "소스 생성하실려면 변경대상 소스를 모두 선택하세요.";
|
|
@@ -805,6 +806,7 @@ console.log(el, href, title);
|
|
|
805
806
|
}
|
|
806
807
|
|
|
807
808
|
return;
|
|
809
|
+
*/
|
|
808
810
|
|
|
809
811
|
if (what === "1") {
|
|
810
812
|
if (!apply.mybatis || !apply.service || !apply.controller || !apply.javascript) {
|
package/package.json
CHANGED
package/src/components/ideAi.js
CHANGED
|
@@ -788,6 +788,7 @@ console.log(el, href, title);
|
|
|
788
788
|
//this.#parent.addMessage("명령을 이해했습니다.");
|
|
789
789
|
progressMessageInstance.updateProgress('prepare1', 'completed');
|
|
790
790
|
|
|
791
|
+
/**
|
|
791
792
|
//active가 상세면
|
|
792
793
|
if (!apply.javascript) {
|
|
793
794
|
//return "소스 생성하실려면 변경대상 소스를 모두 선택하세요.";
|
|
@@ -805,6 +806,7 @@ console.log(el, href, title);
|
|
|
805
806
|
}
|
|
806
807
|
|
|
807
808
|
return;
|
|
809
|
+
*/
|
|
808
810
|
|
|
809
811
|
if (what === "1") {
|
|
810
812
|
if (!apply.mybatis || !apply.service || !apply.controller || !apply.javascript) {
|