ide-assi 0.20.0 → 0.21.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.
@@ -193315,7 +193315,7 @@ class IdeAi
193315
193315
  console.log(menus);
193316
193316
  console.log(tables);
193317
193317
 
193318
- await fetch(`${this.#API_URL}/ai/inferSourceMeta`, {
193318
+ const response = await fetch(`${this.#API_URL}/ai/inferSourceMeta`, {
193319
193319
  method: "POST",
193320
193320
  headers: { "Content-Type": "application/json" },
193321
193321
  body: JSON.stringify({
@@ -193325,6 +193325,8 @@ class IdeAi
193325
193325
  })
193326
193326
  });
193327
193327
 
193328
+ console.log(response);
193329
+
193328
193330
  const response2 = await fetch(`${this.#API_URL}/ai/generateSource`, {
193329
193331
  method: "POST",
193330
193332
  headers: { "Content-Type": "application/json" },
@@ -193311,7 +193311,7 @@ class IdeAi
193311
193311
  console.log(menus);
193312
193312
  console.log(tables);
193313
193313
 
193314
- await fetch(`${this.#API_URL}/ai/inferSourceMeta`, {
193314
+ const response = await fetch(`${this.#API_URL}/ai/inferSourceMeta`, {
193315
193315
  method: "POST",
193316
193316
  headers: { "Content-Type": "application/json" },
193317
193317
  body: JSON.stringify({
@@ -193321,6 +193321,8 @@ class IdeAi
193321
193321
  })
193322
193322
  });
193323
193323
 
193324
+ console.log(response);
193325
+
193324
193326
  const response2 = await fetch(`${this.#API_URL}/ai/generateSource`, {
193325
193327
  method: "POST",
193326
193328
  headers: { "Content-Type": "application/json" },
@@ -68,6 +68,8 @@ export class IdeAi
68
68
  })
69
69
  });
70
70
 
71
+ console.log(response);
72
+
71
73
  const response2 = await fetch(`${this.#API_URL}/ai/generateSource`, {
72
74
  method: "POST",
73
75
  headers: { "Content-Type": "application/json" },
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ide-assi",
3
3
  "type": "module",
4
- "version": "0.20.0",
4
+ "version": "0.21.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -68,6 +68,8 @@ export class IdeAi
68
68
  })
69
69
  });
70
70
 
71
+ console.log(response);
72
+
71
73
  const response2 = await fetch(`${this.#API_URL}/ai/generateSource`, {
72
74
  method: "POST",
73
75
  headers: { "Content-Type": "application/json" },