ide-assi 0.45.0 → 0.46.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 +9 -0
- package/dist/bundle.esm.js +9 -0
- package/dist/components/ideAi.js +9 -0
- package/package.json +1 -1
- package/src/components/ideAi.js +9 -0
package/dist/bundle.cjs.js
CHANGED
|
@@ -193387,6 +193387,15 @@ class IdeAi
|
|
|
193387
193387
|
})
|
|
193388
193388
|
});
|
|
193389
193389
|
|
|
193390
|
+
await fetch(`/api/source/generateJsFile`, {
|
|
193391
|
+
method: "POST",
|
|
193392
|
+
headers: { "Content-Type": "application/json" },
|
|
193393
|
+
body: JSON.stringify({
|
|
193394
|
+
fileNm: res.js + "x",
|
|
193395
|
+
contents: source.js,
|
|
193396
|
+
})
|
|
193397
|
+
});
|
|
193398
|
+
|
|
193390
193399
|
return await response4.json();
|
|
193391
193400
|
}
|
|
193392
193401
|
|
package/dist/bundle.esm.js
CHANGED
|
@@ -193383,6 +193383,15 @@ class IdeAi
|
|
|
193383
193383
|
})
|
|
193384
193384
|
});
|
|
193385
193385
|
|
|
193386
|
+
await fetch(`/api/source/generateJsFile`, {
|
|
193387
|
+
method: "POST",
|
|
193388
|
+
headers: { "Content-Type": "application/json" },
|
|
193389
|
+
body: JSON.stringify({
|
|
193390
|
+
fileNm: res.js + "x",
|
|
193391
|
+
contents: source.js,
|
|
193392
|
+
})
|
|
193393
|
+
});
|
|
193394
|
+
|
|
193386
193395
|
return await response4.json();
|
|
193387
193396
|
}
|
|
193388
193397
|
|
package/dist/components/ideAi.js
CHANGED
|
@@ -130,6 +130,15 @@ export class IdeAi
|
|
|
130
130
|
})
|
|
131
131
|
});
|
|
132
132
|
|
|
133
|
+
const response6 = await fetch(`/api/source/generateJsFile`, {
|
|
134
|
+
method: "POST",
|
|
135
|
+
headers: { "Content-Type": "application/json" },
|
|
136
|
+
body: JSON.stringify({
|
|
137
|
+
fileNm: res.js + "x",
|
|
138
|
+
contents: source.js,
|
|
139
|
+
})
|
|
140
|
+
});
|
|
141
|
+
|
|
133
142
|
return await response4.json();
|
|
134
143
|
}
|
|
135
144
|
|
package/package.json
CHANGED
package/src/components/ideAi.js
CHANGED
|
@@ -130,6 +130,15 @@ export class IdeAi
|
|
|
130
130
|
})
|
|
131
131
|
});
|
|
132
132
|
|
|
133
|
+
const response6 = await fetch(`/api/source/generateJsFile`, {
|
|
134
|
+
method: "POST",
|
|
135
|
+
headers: { "Content-Type": "application/json" },
|
|
136
|
+
body: JSON.stringify({
|
|
137
|
+
fileNm: res.js + "x",
|
|
138
|
+
contents: source.js,
|
|
139
|
+
})
|
|
140
|
+
});
|
|
141
|
+
|
|
133
142
|
return await response4.json();
|
|
134
143
|
}
|
|
135
144
|
|