ide-assi 0.11.0 → 0.12.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 -3
- package/dist/bundle.esm.js +2 -3
- package/dist/components/ideAi.js +2 -3
- package/package.json +1 -1
- package/src/components/ideAi.js +2 -3
package/dist/bundle.cjs.js
CHANGED
|
@@ -193283,12 +193283,11 @@ class IdeAi
|
|
|
193283
193283
|
method: "POST",
|
|
193284
193284
|
headers: { "Content-Type": "application/json" },
|
|
193285
193285
|
body: JSON.stringify({
|
|
193286
|
-
schema: "
|
|
193286
|
+
schema: "booxtory_250131",
|
|
193287
193287
|
})
|
|
193288
193288
|
});
|
|
193289
193289
|
|
|
193290
|
-
|
|
193291
|
-
console.log(await response.json());
|
|
193290
|
+
return await response.json();
|
|
193292
193291
|
};
|
|
193293
193292
|
|
|
193294
193293
|
|
package/dist/bundle.esm.js
CHANGED
|
@@ -193279,12 +193279,11 @@ class IdeAi
|
|
|
193279
193279
|
method: "POST",
|
|
193280
193280
|
headers: { "Content-Type": "application/json" },
|
|
193281
193281
|
body: JSON.stringify({
|
|
193282
|
-
schema: "
|
|
193282
|
+
schema: "booxtory_250131",
|
|
193283
193283
|
})
|
|
193284
193284
|
});
|
|
193285
193285
|
|
|
193286
|
-
|
|
193287
|
-
console.log(await response.json());
|
|
193286
|
+
return await response.json();
|
|
193288
193287
|
};
|
|
193289
193288
|
|
|
193290
193289
|
|
package/dist/components/ideAi.js
CHANGED
|
@@ -26,12 +26,11 @@ export class IdeAi
|
|
|
26
26
|
method: "POST",
|
|
27
27
|
headers: { "Content-Type": "application/json" },
|
|
28
28
|
body: JSON.stringify({
|
|
29
|
-
schema: "
|
|
29
|
+
schema: "booxtory_250131",
|
|
30
30
|
})
|
|
31
31
|
});
|
|
32
32
|
|
|
33
|
-
|
|
34
|
-
console.log(await response.json());
|
|
33
|
+
return await response.json();
|
|
35
34
|
};
|
|
36
35
|
|
|
37
36
|
|
package/package.json
CHANGED
package/src/components/ideAi.js
CHANGED
|
@@ -26,12 +26,11 @@ export class IdeAi
|
|
|
26
26
|
method: "POST",
|
|
27
27
|
headers: { "Content-Type": "application/json" },
|
|
28
28
|
body: JSON.stringify({
|
|
29
|
-
schema: "
|
|
29
|
+
schema: "booxtory_250131",
|
|
30
30
|
})
|
|
31
31
|
});
|
|
32
32
|
|
|
33
|
-
|
|
34
|
-
console.log(await response.json());
|
|
33
|
+
return await response.json();
|
|
35
34
|
};
|
|
36
35
|
|
|
37
36
|
|