ide-assi 0.21.0 → 0.22.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.
@@ -193325,7 +193325,7 @@ class IdeAi
193325
193325
  })
193326
193326
  });
193327
193327
 
193328
- console.log(response);
193328
+ console.log(await response.json());
193329
193329
 
193330
193330
  const response2 = await fetch(`${this.#API_URL}/ai/generateSource`, {
193331
193331
  method: "POST",
@@ -193321,7 +193321,7 @@ class IdeAi
193321
193321
  })
193322
193322
  });
193323
193323
 
193324
- console.log(response);
193324
+ console.log(await response.json());
193325
193325
 
193326
193326
  const response2 = await fetch(`${this.#API_URL}/ai/generateSource`, {
193327
193327
  method: "POST",
@@ -68,7 +68,7 @@ export class IdeAi
68
68
  })
69
69
  });
70
70
 
71
- console.log(response);
71
+ console.log(await response.json());
72
72
 
73
73
  const response2 = await fetch(`${this.#API_URL}/ai/generateSource`, {
74
74
  method: "POST",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ide-assi",
3
3
  "type": "module",
4
- "version": "0.21.0",
4
+ "version": "0.22.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -68,7 +68,7 @@ export class IdeAi
68
68
  })
69
69
  });
70
70
 
71
- console.log(response);
71
+ console.log(await response.json());
72
72
 
73
73
  const response2 = await fetch(`${this.#API_URL}/ai/generateSource`, {
74
74
  method: "POST",