ide-assi 0.160.0 → 0.161.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.
@@ -193544,7 +193544,8 @@ class IdeAi
193544
193544
  return IdeUtils.extractResponse(response, this.#parent.settings.server);
193545
193545
  }
193546
193546
  catch (error) {
193547
- console.error("00000000");
193547
+ //console.error("00000000");
193548
+ throw error;
193548
193549
  }
193549
193550
  }
193550
193551
 
@@ -193671,7 +193672,8 @@ class IdeAi
193671
193672
  await this.#generateRealFile(where);
193672
193673
  }
193673
193674
  catch (error) {
193674
- console.log("========================");
193675
+ throw error;
193676
+ //console.log("========================");
193675
193677
  }
193676
193678
 
193677
193679
 
@@ -193540,7 +193540,8 @@ class IdeAi
193540
193540
  return IdeUtils.extractResponse(response, this.#parent.settings.server);
193541
193541
  }
193542
193542
  catch (error) {
193543
- console.error("00000000");
193543
+ //console.error("00000000");
193544
+ throw error;
193544
193545
  }
193545
193546
  }
193546
193547
 
@@ -193667,7 +193668,8 @@ class IdeAi
193667
193668
  await this.#generateRealFile(where);
193668
193669
  }
193669
193670
  catch (error) {
193670
- console.log("========================");
193671
+ throw error;
193672
+ //console.log("========================");
193671
193673
  }
193672
193674
 
193673
193675
 
@@ -188,7 +188,8 @@ export class IdeAi
188
188
  return IdeUtils.extractResponse(response, this.#parent.settings.server);
189
189
  }
190
190
  catch (error) {
191
- console.error("00000000");
191
+ //console.error("00000000");
192
+ throw error;
192
193
  }
193
194
  }
194
195
 
@@ -329,7 +330,8 @@ export class IdeAi
329
330
  await this.#generateRealFile(where);
330
331
  }
331
332
  catch (error) {
332
- console.log("========================");
333
+ throw error;
334
+ //console.log("========================");
333
335
  }
334
336
 
335
337
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ide-assi",
3
3
  "type": "module",
4
- "version": "0.160.0",
4
+ "version": "0.161.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -188,7 +188,8 @@ export class IdeAi
188
188
  return IdeUtils.extractResponse(response, this.#parent.settings.server);
189
189
  }
190
190
  catch (error) {
191
- console.error("00000000");
191
+ //console.error("00000000");
192
+ throw error;
192
193
  }
193
194
  }
194
195
 
@@ -329,7 +330,8 @@ export class IdeAi
329
330
  await this.#generateRealFile(where);
330
331
  }
331
332
  catch (error) {
332
- console.log("========================");
333
+ throw error;
334
+ //console.log("========================");
333
335
  }
334
336
 
335
337