ide-assi 0.130.0 → 0.131.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 +2 -2
- package/dist/bundle.esm.js +2 -2
- package/dist/components/ideAi.js +2 -2
- package/package.json +1 -1
- package/src/components/ideAi.js +2 -2
package/dist/bundle.cjs.js
CHANGED
|
@@ -193528,12 +193528,12 @@ class IdeAi
|
|
|
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
|
@@ -193524,12 +193524,12 @@ class IdeAi
|
|
|
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
|
@@ -234,12 +234,12 @@ export class IdeAi
|
|
|
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
|
@@ -234,12 +234,12 @@ export class IdeAi
|
|
|
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;
|