ide-assi 0.121.0 → 0.122.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 +1 -5
- package/dist/bundle.esm.js +1 -5
- package/dist/components/ideAi.js +1 -5
- package/package.json +1 -1
- package/src/components/ideAi.js +1 -5
package/dist/bundle.cjs.js
CHANGED
|
@@ -193520,17 +193520,13 @@ class IdeAi
|
|
|
193520
193520
|
contents: await fetch(`/api/templates/${file}`).then(res => res.text()),
|
|
193521
193521
|
});
|
|
193522
193522
|
});
|
|
193523
|
-
//const path = "/api/templates/mybatis.xml";
|
|
193524
|
-
// const template = await fetch(path).then(res => res.text());
|
|
193525
193523
|
|
|
193526
193524
|
console.log(params);
|
|
193527
193525
|
|
|
193528
193526
|
await fetch(`/api/source/generateRealFile`, {
|
|
193529
193527
|
method: "POST",
|
|
193530
193528
|
headers: { "Content-Type": "application/json" },
|
|
193531
|
-
body:
|
|
193532
|
-
list: params,
|
|
193533
|
-
})
|
|
193529
|
+
body: params
|
|
193534
193530
|
});
|
|
193535
193531
|
|
|
193536
193532
|
return;
|
package/dist/bundle.esm.js
CHANGED
|
@@ -193516,17 +193516,13 @@ class IdeAi
|
|
|
193516
193516
|
contents: await fetch(`/api/templates/${file}`).then(res => res.text()),
|
|
193517
193517
|
});
|
|
193518
193518
|
});
|
|
193519
|
-
//const path = "/api/templates/mybatis.xml";
|
|
193520
|
-
// const template = await fetch(path).then(res => res.text());
|
|
193521
193519
|
|
|
193522
193520
|
console.log(params);
|
|
193523
193521
|
|
|
193524
193522
|
await fetch(`/api/source/generateRealFile`, {
|
|
193525
193523
|
method: "POST",
|
|
193526
193524
|
headers: { "Content-Type": "application/json" },
|
|
193527
|
-
body:
|
|
193528
|
-
list: params,
|
|
193529
|
-
})
|
|
193525
|
+
body: params
|
|
193530
193526
|
});
|
|
193531
193527
|
|
|
193532
193528
|
return;
|
package/dist/components/ideAi.js
CHANGED
|
@@ -226,17 +226,13 @@ export class IdeAi
|
|
|
226
226
|
contents: await fetch(`/api/templates/${file}`).then(res => res.text()),
|
|
227
227
|
});
|
|
228
228
|
});
|
|
229
|
-
//const path = "/api/templates/mybatis.xml";
|
|
230
|
-
// const template = await fetch(path).then(res => res.text());
|
|
231
229
|
|
|
232
230
|
console.log(params);
|
|
233
231
|
|
|
234
232
|
await fetch(`/api/source/generateRealFile`, {
|
|
235
233
|
method: "POST",
|
|
236
234
|
headers: { "Content-Type": "application/json" },
|
|
237
|
-
body:
|
|
238
|
-
list: params,
|
|
239
|
-
})
|
|
235
|
+
body: params
|
|
240
236
|
});
|
|
241
237
|
|
|
242
238
|
return;
|
package/package.json
CHANGED
package/src/components/ideAi.js
CHANGED
|
@@ -226,17 +226,13 @@ export class IdeAi
|
|
|
226
226
|
contents: await fetch(`/api/templates/${file}`).then(res => res.text()),
|
|
227
227
|
});
|
|
228
228
|
});
|
|
229
|
-
//const path = "/api/templates/mybatis.xml";
|
|
230
|
-
// const template = await fetch(path).then(res => res.text());
|
|
231
229
|
|
|
232
230
|
console.log(params);
|
|
233
231
|
|
|
234
232
|
await fetch(`/api/source/generateRealFile`, {
|
|
235
233
|
method: "POST",
|
|
236
234
|
headers: { "Content-Type": "application/json" },
|
|
237
|
-
body:
|
|
238
|
-
list: params,
|
|
239
|
-
})
|
|
235
|
+
body: params
|
|
240
236
|
});
|
|
241
237
|
|
|
242
238
|
return;
|