ide-assi 0.130.0 → 0.132.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 +6 -6
- package/dist/bundle.esm.js +6 -6
- package/dist/components/ideAi.js +6 -6
- package/package.json +1 -1
- package/src/components/ideAi.js +6 -6
package/dist/bundle.cjs.js
CHANGED
|
@@ -193518,22 +193518,22 @@ class IdeAi
|
|
|
193518
193518
|
files.forEach(async (file) => {
|
|
193519
193519
|
|
|
193520
193520
|
params1.push({
|
|
193521
|
-
|
|
193522
|
-
|
|
193521
|
+
path: `/tmpl/${file}`,
|
|
193522
|
+
contents: await fetch(`/api/templates/${file}`).then(res => res.text()),
|
|
193523
193523
|
});
|
|
193524
193524
|
|
|
193525
193525
|
params.push({
|
|
193526
|
-
|
|
193527
|
-
|
|
193526
|
+
path: `aaa`,
|
|
193527
|
+
contents: "aa",
|
|
193528
193528
|
});
|
|
193529
193529
|
});
|
|
193530
193530
|
|
|
193531
|
-
console.log(JSON.stringify(params), JSON.stringify(params1));
|
|
193531
|
+
console.log(JSON.stringify({list:params}), JSON.stringify({list:params1}));
|
|
193532
193532
|
|
|
193533
193533
|
await fetch(`/api/source/generateRealFile`, {
|
|
193534
193534
|
method: "POST",
|
|
193535
193535
|
headers: { "Content-Type": "application/json" },
|
|
193536
|
-
body: JSON.stringify(params)
|
|
193536
|
+
body: JSON.stringify({list:params})
|
|
193537
193537
|
});
|
|
193538
193538
|
|
|
193539
193539
|
return;
|
package/dist/bundle.esm.js
CHANGED
|
@@ -193514,22 +193514,22 @@ class IdeAi
|
|
|
193514
193514
|
files.forEach(async (file) => {
|
|
193515
193515
|
|
|
193516
193516
|
params1.push({
|
|
193517
|
-
|
|
193518
|
-
|
|
193517
|
+
path: `/tmpl/${file}`,
|
|
193518
|
+
contents: await fetch(`/api/templates/${file}`).then(res => res.text()),
|
|
193519
193519
|
});
|
|
193520
193520
|
|
|
193521
193521
|
params.push({
|
|
193522
|
-
|
|
193523
|
-
|
|
193522
|
+
path: `aaa`,
|
|
193523
|
+
contents: "aa",
|
|
193524
193524
|
});
|
|
193525
193525
|
});
|
|
193526
193526
|
|
|
193527
|
-
console.log(JSON.stringify(params), JSON.stringify(params1));
|
|
193527
|
+
console.log(JSON.stringify({list:params}), JSON.stringify({list:params1}));
|
|
193528
193528
|
|
|
193529
193529
|
await fetch(`/api/source/generateRealFile`, {
|
|
193530
193530
|
method: "POST",
|
|
193531
193531
|
headers: { "Content-Type": "application/json" },
|
|
193532
|
-
body: JSON.stringify(params)
|
|
193532
|
+
body: JSON.stringify({list:params})
|
|
193533
193533
|
});
|
|
193534
193534
|
|
|
193535
193535
|
return;
|
package/dist/components/ideAi.js
CHANGED
|
@@ -224,22 +224,22 @@ export class IdeAi
|
|
|
224
224
|
files.forEach(async (file) => {
|
|
225
225
|
|
|
226
226
|
params1.push({
|
|
227
|
-
|
|
228
|
-
|
|
227
|
+
path: `/tmpl/${file}`,
|
|
228
|
+
contents: await fetch(`/api/templates/${file}`).then(res => res.text()),
|
|
229
229
|
});
|
|
230
230
|
|
|
231
231
|
params.push({
|
|
232
|
-
|
|
233
|
-
|
|
232
|
+
path: `aaa`,
|
|
233
|
+
contents: "aa",
|
|
234
234
|
});
|
|
235
235
|
});
|
|
236
236
|
|
|
237
|
-
console.log(JSON.stringify(params), JSON.stringify(params1));
|
|
237
|
+
console.log(JSON.stringify({list:params}), JSON.stringify({list:params1}));
|
|
238
238
|
|
|
239
239
|
await fetch(`/api/source/generateRealFile`, {
|
|
240
240
|
method: "POST",
|
|
241
241
|
headers: { "Content-Type": "application/json" },
|
|
242
|
-
body: JSON.stringify(params)
|
|
242
|
+
body: JSON.stringify({list:params})
|
|
243
243
|
});
|
|
244
244
|
|
|
245
245
|
return;
|
package/package.json
CHANGED
package/src/components/ideAi.js
CHANGED
|
@@ -224,22 +224,22 @@ export class IdeAi
|
|
|
224
224
|
files.forEach(async (file) => {
|
|
225
225
|
|
|
226
226
|
params1.push({
|
|
227
|
-
|
|
228
|
-
|
|
227
|
+
path: `/tmpl/${file}`,
|
|
228
|
+
contents: await fetch(`/api/templates/${file}`).then(res => res.text()),
|
|
229
229
|
});
|
|
230
230
|
|
|
231
231
|
params.push({
|
|
232
|
-
|
|
233
|
-
|
|
232
|
+
path: `aaa`,
|
|
233
|
+
contents: "aa",
|
|
234
234
|
});
|
|
235
235
|
});
|
|
236
236
|
|
|
237
|
-
console.log(JSON.stringify(params), JSON.stringify(params1));
|
|
237
|
+
console.log(JSON.stringify({list:params}), JSON.stringify({list:params1}));
|
|
238
238
|
|
|
239
239
|
await fetch(`/api/source/generateRealFile`, {
|
|
240
240
|
method: "POST",
|
|
241
241
|
headers: { "Content-Type": "application/json" },
|
|
242
|
-
body: JSON.stringify(params)
|
|
242
|
+
body: JSON.stringify({list:params})
|
|
243
243
|
});
|
|
244
244
|
|
|
245
245
|
return;
|