ide-assi 0.25.0 → 0.26.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 +4 -2
- package/dist/bundle.esm.js +4 -2
- package/dist/components/ideAi.js +3 -1
- package/package.json +1 -1
- package/src/components/ideAi.js +3 -1
package/dist/bundle.cjs.js
CHANGED
|
@@ -193340,7 +193340,7 @@ class IdeAi
|
|
|
193340
193340
|
|
|
193341
193341
|
const source = await response2.json();
|
|
193342
193342
|
|
|
193343
|
-
await fetch(`/api/files/generateMybatisFile`, {
|
|
193343
|
+
const response3 = await fetch(`/api/files/generateMybatisFile`, {
|
|
193344
193344
|
method: "POST",
|
|
193345
193345
|
headers: { "Content-Type": "application/json" },
|
|
193346
193346
|
body: JSON.stringify({
|
|
@@ -193348,8 +193348,10 @@ class IdeAi
|
|
|
193348
193348
|
contents: source.mybatis,
|
|
193349
193349
|
})
|
|
193350
193350
|
});
|
|
193351
|
+
console.log(response3);
|
|
193352
|
+
console.log(await response3.json());
|
|
193351
193353
|
|
|
193352
|
-
return await
|
|
193354
|
+
return await response3.json();
|
|
193353
193355
|
}
|
|
193354
193356
|
|
|
193355
193357
|
return null;
|
package/dist/bundle.esm.js
CHANGED
|
@@ -193336,7 +193336,7 @@ class IdeAi
|
|
|
193336
193336
|
|
|
193337
193337
|
const source = await response2.json();
|
|
193338
193338
|
|
|
193339
|
-
await fetch(`/api/files/generateMybatisFile`, {
|
|
193339
|
+
const response3 = await fetch(`/api/files/generateMybatisFile`, {
|
|
193340
193340
|
method: "POST",
|
|
193341
193341
|
headers: { "Content-Type": "application/json" },
|
|
193342
193342
|
body: JSON.stringify({
|
|
@@ -193344,8 +193344,10 @@ class IdeAi
|
|
|
193344
193344
|
contents: source.mybatis,
|
|
193345
193345
|
})
|
|
193346
193346
|
});
|
|
193347
|
+
console.log(response3);
|
|
193348
|
+
console.log(await response3.json());
|
|
193347
193349
|
|
|
193348
|
-
return await
|
|
193350
|
+
return await response3.json();
|
|
193349
193351
|
}
|
|
193350
193352
|
|
|
193351
193353
|
return null;
|
package/dist/components/ideAi.js
CHANGED
package/package.json
CHANGED
package/src/components/ideAi.js
CHANGED