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