ide-assi 0.575.0 → 0.577.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.
@@ -201777,7 +201777,7 @@ class IdeFetch {
201777
201777
 
201778
201778
  return fetch(url, options)
201779
201779
  .then(res => {
201780
- ninegrid.loading.hide();
201780
+ //ninegrid.loading.hide();
201781
201781
  if (!res.ok) {
201782
201782
  return res.text().then(text => {
201783
201783
  throw new Error(`API 오류 (${res.status}): ${text}`);
@@ -201786,7 +201786,7 @@ class IdeFetch {
201786
201786
  return res.json();
201787
201787
  })
201788
201788
  .catch(err => {
201789
- ninegrid.loading.hide();
201789
+ //ninegrid.loading.hide();
201790
201790
  console.error(`[fetch.${method.toLowerCase()}] ${url} 실패:`, err);
201791
201791
  throw err;
201792
201792
  });
@@ -202714,7 +202714,6 @@ class IdeAssi extends HTMLElement
202714
202714
  const tipPopup = this.shadowRoot.querySelector("ide-tip-popup");
202715
202715
  tipPopup.popup();
202716
202716
 
202717
- /**
202718
202717
  try {
202719
202718
  const changedSource = await this.#ai.generateSourceClient(userPrompt, apply);
202720
202719
  tipPopup.close();
@@ -202726,7 +202725,7 @@ class IdeAssi extends HTMLElement
202726
202725
  tipPopup.close();
202727
202726
  console.error(error);
202728
202727
  elAiChat.add("ai", String(error).replace("Error:", ""));
202729
- } */
202728
+ }
202730
202729
 
202731
202730
  this.#ing = false;
202732
202731
  }
@@ -201773,7 +201773,7 @@ class IdeFetch {
201773
201773
 
201774
201774
  return fetch(url, options)
201775
201775
  .then(res => {
201776
- ninegrid.loading.hide();
201776
+ //ninegrid.loading.hide();
201777
201777
  if (!res.ok) {
201778
201778
  return res.text().then(text => {
201779
201779
  throw new Error(`API 오류 (${res.status}): ${text}`);
@@ -201782,7 +201782,7 @@ class IdeFetch {
201782
201782
  return res.json();
201783
201783
  })
201784
201784
  .catch(err => {
201785
- ninegrid.loading.hide();
201785
+ //ninegrid.loading.hide();
201786
201786
  console.error(`[fetch.${method.toLowerCase()}] ${url} 실패:`, err);
201787
201787
  throw err;
201788
201788
  });
@@ -202710,7 +202710,6 @@ class IdeAssi extends HTMLElement
202710
202710
  const tipPopup = this.shadowRoot.querySelector("ide-tip-popup");
202711
202711
  tipPopup.popup();
202712
202712
 
202713
- /**
202714
202713
  try {
202715
202714
  const changedSource = await this.#ai.generateSourceClient(userPrompt, apply);
202716
202715
  tipPopup.close();
@@ -202722,7 +202721,7 @@ class IdeAssi extends HTMLElement
202722
202721
  tipPopup.close();
202723
202722
  console.error(error);
202724
202723
  elAiChat.add("ai", String(error).replace("Error:", ""));
202725
- } */
202724
+ }
202726
202725
 
202727
202726
  this.#ing = false;
202728
202727
  }
@@ -172,7 +172,6 @@ export class IdeAssi extends HTMLElement
172
172
  const tipPopup = this.shadowRoot.querySelector("ide-tip-popup");
173
173
  tipPopup.popup();
174
174
 
175
- /**
176
175
  try {
177
176
  const changedSource = await this.#ai.generateSourceClient(userPrompt, apply);
178
177
  tipPopup.close();
@@ -184,7 +183,7 @@ export class IdeAssi extends HTMLElement
184
183
  tipPopup.close();
185
184
  console.error(error);
186
185
  elAiChat.add("ai", String(error).replace("Error:", ""));
187
- } */
186
+ }
188
187
 
189
188
  this.#ing = false;
190
189
  }
@@ -19,7 +19,7 @@ export class IdeFetch {
19
19
 
20
20
  return fetch(url, options)
21
21
  .then(res => {
22
- ninegrid.loading.hide();
22
+ //ninegrid.loading.hide();
23
23
  if (!res.ok) {
24
24
  return res.text().then(text => {
25
25
  throw new Error(`API 오류 (${res.status}): ${text}`);
@@ -28,7 +28,7 @@ export class IdeFetch {
28
28
  return res.json();
29
29
  })
30
30
  .catch(err => {
31
- ninegrid.loading.hide();
31
+ //ninegrid.loading.hide();
32
32
  console.error(`[fetch.${method.toLowerCase()}] ${url} 실패:`, err);
33
33
  throw err;
34
34
  });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ide-assi",
3
3
  "type": "module",
4
- "version": "0.575.0",
4
+ "version": "0.577.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -172,7 +172,6 @@ export class IdeAssi extends HTMLElement
172
172
  const tipPopup = this.shadowRoot.querySelector("ide-tip-popup");
173
173
  tipPopup.popup();
174
174
 
175
- /**
176
175
  try {
177
176
  const changedSource = await this.#ai.generateSourceClient(userPrompt, apply);
178
177
  tipPopup.close();
@@ -184,7 +183,7 @@ export class IdeAssi extends HTMLElement
184
183
  tipPopup.close();
185
184
  console.error(error);
186
185
  elAiChat.add("ai", String(error).replace("Error:", ""));
187
- } */
186
+ }
188
187
 
189
188
  this.#ing = false;
190
189
  }
@@ -19,7 +19,7 @@ export class IdeFetch {
19
19
 
20
20
  return fetch(url, options)
21
21
  .then(res => {
22
- ninegrid.loading.hide();
22
+ //ninegrid.loading.hide();
23
23
  if (!res.ok) {
24
24
  return res.text().then(text => {
25
25
  throw new Error(`API 오류 (${res.status}): ${text}`);
@@ -28,7 +28,7 @@ export class IdeFetch {
28
28
  return res.json();
29
29
  })
30
30
  .catch(err => {
31
- ninegrid.loading.hide();
31
+ //ninegrid.loading.hide();
32
32
  console.error(`[fetch.${method.toLowerCase()}] ${url} 실패:`, err);
33
33
  throw err;
34
34
  });