ide-assi 0.693.0 → 0.694.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 +3 -3
- package/dist/bundle.esm.js +3 -3
- package/dist/components/ideAi.js +3 -3
- package/package.json +1 -1
- package/src/components/ideAi.js +3 -3
package/dist/bundle.cjs.js
CHANGED
|
@@ -203072,7 +203072,7 @@ console.log(el, href, title);
|
|
|
203072
203072
|
return returnSrc;
|
|
203073
203073
|
};
|
|
203074
203074
|
|
|
203075
|
-
#generateSource = async (userPrompt, apply, progressMessageInstance) => {
|
|
203075
|
+
#generateSource = async (what, userPrompt, apply, progressMessageInstance) => {
|
|
203076
203076
|
|
|
203077
203077
|
/**
|
|
203078
203078
|
const el = ninegrid.querySelector("nx-side-menu-item.active");
|
|
@@ -203837,7 +203837,7 @@ console.log(el, href, title);
|
|
|
203837
203837
|
if (!apply.mybatis || !apply.service || !apply.controller || !apply.javascript) ;
|
|
203838
203838
|
//await this.#createSource(userPrompt, apply);
|
|
203839
203839
|
//return await this.#modifySource(userPrompt, apply, progressMessageInstance);
|
|
203840
|
-
return await this.#generateSource(userPrompt, apply, progressMessageInstance);
|
|
203840
|
+
return await this.#generateSource(what, userPrompt, apply, progressMessageInstance);
|
|
203841
203841
|
}
|
|
203842
203842
|
else if (what === "C2") {
|
|
203843
203843
|
if (!apply.mybatis || !apply.service || !apply.controller || !apply.javascript) ;
|
|
@@ -203850,7 +203850,7 @@ console.log(el, href, title);
|
|
|
203850
203850
|
|
|
203851
203851
|
if (el) {
|
|
203852
203852
|
//return await this.#modifySource(userPrompt, apply, progressMessageInstance);
|
|
203853
|
-
return await this.#generateSource(userPrompt, apply, progressMessageInstance);
|
|
203853
|
+
return await this.#generateSource(what, userPrompt, apply, progressMessageInstance);
|
|
203854
203854
|
}
|
|
203855
203855
|
else {
|
|
203856
203856
|
return await this.#modifyDetailSource(userPrompt, apply, progressMessageInstance);
|
package/dist/bundle.esm.js
CHANGED
|
@@ -203068,7 +203068,7 @@ console.log(el, href, title);
|
|
|
203068
203068
|
return returnSrc;
|
|
203069
203069
|
};
|
|
203070
203070
|
|
|
203071
|
-
#generateSource = async (userPrompt, apply, progressMessageInstance) => {
|
|
203071
|
+
#generateSource = async (what, userPrompt, apply, progressMessageInstance) => {
|
|
203072
203072
|
|
|
203073
203073
|
/**
|
|
203074
203074
|
const el = ninegrid.querySelector("nx-side-menu-item.active");
|
|
@@ -203833,7 +203833,7 @@ console.log(el, href, title);
|
|
|
203833
203833
|
if (!apply.mybatis || !apply.service || !apply.controller || !apply.javascript) ;
|
|
203834
203834
|
//await this.#createSource(userPrompt, apply);
|
|
203835
203835
|
//return await this.#modifySource(userPrompt, apply, progressMessageInstance);
|
|
203836
|
-
return await this.#generateSource(userPrompt, apply, progressMessageInstance);
|
|
203836
|
+
return await this.#generateSource(what, userPrompt, apply, progressMessageInstance);
|
|
203837
203837
|
}
|
|
203838
203838
|
else if (what === "C2") {
|
|
203839
203839
|
if (!apply.mybatis || !apply.service || !apply.controller || !apply.javascript) ;
|
|
@@ -203846,7 +203846,7 @@ console.log(el, href, title);
|
|
|
203846
203846
|
|
|
203847
203847
|
if (el) {
|
|
203848
203848
|
//return await this.#modifySource(userPrompt, apply, progressMessageInstance);
|
|
203849
|
-
return await this.#generateSource(userPrompt, apply, progressMessageInstance);
|
|
203849
|
+
return await this.#generateSource(what, userPrompt, apply, progressMessageInstance);
|
|
203850
203850
|
}
|
|
203851
203851
|
else {
|
|
203852
203852
|
return await this.#modifyDetailSource(userPrompt, apply, progressMessageInstance);
|
package/dist/components/ideAi.js
CHANGED
|
@@ -542,7 +542,7 @@ console.log(el, href, title);
|
|
|
542
542
|
return returnSrc;
|
|
543
543
|
};
|
|
544
544
|
|
|
545
|
-
#generateSource = async (userPrompt, apply, progressMessageInstance) => {
|
|
545
|
+
#generateSource = async (what, userPrompt, apply, progressMessageInstance) => {
|
|
546
546
|
|
|
547
547
|
/**
|
|
548
548
|
const el = ninegrid.querySelector("nx-side-menu-item.active");
|
|
@@ -1309,7 +1309,7 @@ console.log(el, href, title);
|
|
|
1309
1309
|
}
|
|
1310
1310
|
//await this.#createSource(userPrompt, apply);
|
|
1311
1311
|
//return await this.#modifySource(userPrompt, apply, progressMessageInstance);
|
|
1312
|
-
return await this.#generateSource(userPrompt, apply, progressMessageInstance);
|
|
1312
|
+
return await this.#generateSource(what, userPrompt, apply, progressMessageInstance);
|
|
1313
1313
|
}
|
|
1314
1314
|
else if (what === "C2") {
|
|
1315
1315
|
if (!apply.mybatis || !apply.service || !apply.controller || !apply.javascript) {
|
|
@@ -1324,7 +1324,7 @@ console.log(el, href, title);
|
|
|
1324
1324
|
|
|
1325
1325
|
if (el) {
|
|
1326
1326
|
//return await this.#modifySource(userPrompt, apply, progressMessageInstance);
|
|
1327
|
-
return await this.#generateSource(userPrompt, apply, progressMessageInstance);
|
|
1327
|
+
return await this.#generateSource(what, userPrompt, apply, progressMessageInstance);
|
|
1328
1328
|
}
|
|
1329
1329
|
else {
|
|
1330
1330
|
return await this.#modifyDetailSource(userPrompt, apply, progressMessageInstance);
|
package/package.json
CHANGED
package/src/components/ideAi.js
CHANGED
|
@@ -542,7 +542,7 @@ console.log(el, href, title);
|
|
|
542
542
|
return returnSrc;
|
|
543
543
|
};
|
|
544
544
|
|
|
545
|
-
#generateSource = async (userPrompt, apply, progressMessageInstance) => {
|
|
545
|
+
#generateSource = async (what, userPrompt, apply, progressMessageInstance) => {
|
|
546
546
|
|
|
547
547
|
/**
|
|
548
548
|
const el = ninegrid.querySelector("nx-side-menu-item.active");
|
|
@@ -1309,7 +1309,7 @@ console.log(el, href, title);
|
|
|
1309
1309
|
}
|
|
1310
1310
|
//await this.#createSource(userPrompt, apply);
|
|
1311
1311
|
//return await this.#modifySource(userPrompt, apply, progressMessageInstance);
|
|
1312
|
-
return await this.#generateSource(userPrompt, apply, progressMessageInstance);
|
|
1312
|
+
return await this.#generateSource(what, userPrompt, apply, progressMessageInstance);
|
|
1313
1313
|
}
|
|
1314
1314
|
else if (what === "C2") {
|
|
1315
1315
|
if (!apply.mybatis || !apply.service || !apply.controller || !apply.javascript) {
|
|
@@ -1324,7 +1324,7 @@ console.log(el, href, title);
|
|
|
1324
1324
|
|
|
1325
1325
|
if (el) {
|
|
1326
1326
|
//return await this.#modifySource(userPrompt, apply, progressMessageInstance);
|
|
1327
|
-
return await this.#generateSource(userPrompt, apply, progressMessageInstance);
|
|
1327
|
+
return await this.#generateSource(what, userPrompt, apply, progressMessageInstance);
|
|
1328
1328
|
}
|
|
1329
1329
|
else {
|
|
1330
1330
|
return await this.#modifyDetailSource(userPrompt, apply, progressMessageInstance);
|